@charset "utf-8";
/* CSS Document */
/*
 * 华商网 CSS Library 2.0.0
 * Copyright(c)  2014, 华商网 CSS
 * @url http://www.hsw.cn
 * @desc 部分CSS样式使用CSS3
 * 2014-5-21
 */

/*
 * 将具有默认 html 取消浏览器字号限制
 * @overlay *
 * @desc 在手持设备或webkit中不会解析12px以下字体
 */
html {
	-ms-text-size-adjust: 100%; 
    -webkit-text-size-adjust: 100%; 
}
/*
 * 修正IE5.x和IE6的斜体溢出bug 及 震动
 * @bugfix
 * @css-for    IE 5.x/Win, IE6
 * @desc IE6 背景图片震动
 */
* html body{
	overflow: visible;
	background-image:url(about:blank);
	background-attachment:fixed;
}
* html iframe, * html frame{
	overflow: auto;
}
* html frameset{
	overflow: hidden;
}
iframe {
	width:100%;
	height:100%;
}

/* @Global 常用标签_@Start */

/*
 * 基本标签默认样式取消
 * @overlay HTML标签
 * @desc 取消基本标签默认样式,防止不同浏览器显示效果不同
 * @Prop text-align:center; 解决不同浏览器剧中问题
 */
body,div,span,dl,dd,h1,h2,h3,h4,h5,h6,p,form,ul,ol,input{
	margin:0 auto;
	padding:0;
}
body{
	color:#444;
	background:#fff;
	font: 14px "Microsoft YaHei","微软雅黑","Hiragino Sans GB","SimSun","宋体",sans-serif;
	SCROLLBAR-FACE-COLOR: #f0f0f0;
	SCROLLBAR-HIGHLIGHT-COLOR: #f5f5f5;
	SCROLLBAR-SHADOW-COLOR: #8b8c8c;
	SCROLLBAR-3DLIGHT-COLOR: #fff;
	SCROLLBAR-ARROW-COLOR: #240024;
	SCROLLBAR-TRACK-COLOR: #fcfcfc;
	SCROLLBAR-DARKSHADOW-COLOR: #ccc;
	SCROLLBAR-BASE-COLOR: #f4f4f4;
	/*text-shadow: 0 1px rgba(6, 29, 47, 0.9);*/
}
/*
 *	SCROLLBAR-FACE-COLOR: 滚动条凸出部分的颜色 
 *	SCROLLBAR-HIGHLIGHT-COLOR: 滚动条空白部分的颜色 
 *	SCROLLBAR-SHADOW-COLOR: 立体滚动条阴影的颜色 
 *	SCROLLBAR-3DLIGHT-COLOR: 滚动条亮边的颜色 
 *	SCROLLBAR-ARROW-COLOR: 上下按钮上三角箭头的颜色 
 *	SCROLLBAR-TRACK-COLOR: 滚动条的背景颜色 
 *	SCROLLBAR-DARKSHADOW-COLOR: 滚动条强阴影的颜色 
 *	SCROLLBAR-BASE-COLOR: 滚动条的基本颜色 
 */

/*
 * 标签属性
 * @overlay select
 * @desc 默认设置select效果
 */
select{
	font-size:12px;
	outline:none;
	border:1px solid #ccc;
	color:#444;
	background:#fff;
	box-shadow:none;
}
/*
 * 标签属性
 * @overlay textarea
 * @desc 默认设置textarea效果
 */
textarea{
	word-wrap:break-word;
	word-break:break-all;
	overflow:auto;
	border:none;
	color:#444;
	font-size:12px;
}
/*
 * 标签属性
 * @overlay input
 * @desc 默认设置input效果
 */
input{
	font-size:14px;
	word-wrap:break-word;
	word-break:break-all;
	border:none;
	outline:none;
    tap-highlight-color: rgba(0,0,0,0);
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    -o-tap-highlight-color: rgba(0,0,0,0);
    -moz-tap-highlight-color: rgba(0,0,0,0);
}
/*
 * 标签属性
 * @overlay input
 * @desc 去掉IE10文本框上的清除按钮
 */
input::-ms-clear{display:none;}
input[type='text']{
	color:#999;
	border:1px solid #ccc;
}
/*
 * 标签属性
 * @overlay table td th
 * @desc 强制输入时内容超出时换行
 */
table {
	width:100%;
	border-collapse:collapse;
}
td,th{font-size:12px;}

/*
 * 清除列表标记的样式
 * @overlay  ul,ol,li
 * @desc ul,ol,li列表更多的用在不需要列表前置符号的样式里
 */
ul,ol{list-style-type:none;}
/*
 * 定义图片边框
 * @overlay img
 * @desc 去除边框及图片底产无缘无故多出3px
 */
img{
	border:none;
	vertical-align: top;
	-ms-interpolation-mode: bicubic;
    tap-highlight-color: rgba(0,0,0,0);
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    -o-tap-highlight-color: rgba(0,0,0,0);
    -moz-tap-highlight-color: rgba(0,0,0,0);
	max-width: 100%;
}	
/*
 * 定义默认的链接样式
 * @overlay a
 * @desc	仅仅是作为默认样式提供，可以在各自的实例中覆盖掉
 * a标签不换行   white-space: nowrap;  word-break: break-all;
 */
a {
	color: #444;
	text-decoration:none;
	outline: none;
    tap-highlight-color: rgba(0,0,0,0);
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    -o-tap-highlight-color: rgba(0,0,0,0);
    -moz-tap-highlight-color: rgba(0,0,0,0);
}
a:hover{
	text-decoration:none;
}
a:active,a:focus {
	outline: none;
}
/* 去掉链接的虚线框*/

/*
 * 定义H系列标签
 * @overlay HN
 * @desc  覆盖H系列标签默认属性
 */
h1{
	font-size:48px;
    font-weight: normal;
}
h2{
	font-size:32px;
    font-weight: normal;
}
h3{
	font-size:24px;
    font-weight: normal;
}
h4,h5,h6{
	font-weight:normal;
	font-size:12px;
}
/*
 * 定义其他标签
 * @overlay em,i,b,strong
 * @desc
 */
dfn,em,i,b,strong {
	font-style:normal;
	font-weight:normal;
}
.line {
	display: block;
	width: 100%;
	font-size: 0;
	height: 0px;
	line-height: 0px;
	border-top: 1px solid #DDDDDD;
	border-bottom: 1px solid #FFFFFF;
}
/* @Global 常用标签_@end */


/* @group 通用属性定义_@Start */

/*  鼠标样式 */
.pointer{cursor:pointer;}
/* 取消边框 */
.NoBorder{border:none;}
/*  文本对齐方式  */
.textLeft{text-align:left;}
.textCenter{text-align:center;}
.textRight{text-align:right;}

/*
 * 字母和单词换行设置
 * @class Break 强制内容换行
 * @class Nobreak 强制内容不换行
 */
.Break{word-break:break-all;word-wrap:break-word;}
.Nobreak{word-break:keep-all;word-wrap:normal;}

/*
 * 浮动定义
 */
.FL{float:left;}
.FR{float:right;}

/*
 * 定义文本下划线
 */
.UnLine{text-decoration:underline;}
.DisunLine{text-decoration:none;}

/*
 * 定位关系
 */
.absolute{position:absolute;}
.relative{position:relative;}
.fixed {position:fixed;}
	
/* @group 通用属性定义_@end */



/* @group 隐藏元素_@Start */
/* 通用容器 */
.wrapper{
	clear: both;
	overflow: hidden;
}

/*
 * 隐藏元素
 * @class o-hidden
 * @desc 当元素内容内容超出元素height 或 width 时，隐藏之
 */
.o-hidden{overflow:hidden;}
/*
 * 隐藏元素
 * @class invisible
 * @desc	visibility可以隐藏元素，但是还是会在布局中占位
 */
.invisible{visibility:hidden;}

/*
 * 从页面布局上隐藏元素
 * @class hidden
 * @desc	从布局上隐藏元素
 */
.hidden{display: none;}
.block {display:block;}

/* @group 隐藏元素_@end */

/*
 * 清理元素
 * @class clear
 * @desc	清理浮动元素,当浮动换行时后面元素不希望浮动，添加此属性，防止IE BUG
 */
.clear{
	clear:both;
	height:0px;
	width:100%;
	font-size:1px;
	line-height:0px;
	visibility:hidden;
	overflow:hidden;
}
  
/*   常用样式定义_@Start  */
	
/*
 * 颜色功能定义
 * @Pro 由小写C开头,表示color
 * @desc 常用样式可更具一个项目的样式使用频率重新定义,扩展
 */
.cRed{color: #F00;}
.cWhite{color: #FFF;}
.cGreen{color:#0F0;}
.cGray{color: #666;}
.cBlue{ color: #00F;}
.cblack{ color:#000;}


.bRed {background:red;}
.bBlack {background:black;}
.bYellow {background:Yellow;}
.bBlue {background:Blue;}
.bGreen {background:Green;}
.bWhite {background:#fff;}
/*
 * 定义字体样式
 * @Pro 由大写字母F开头,表示FONT
 * @desc 常用样式可更具一个项目的样式使用频率重新定义,扩展
 */

/*
 *字体样式
 */
.FB{font-weight:bold;}
.FN{ font-weight:normal;}
.FI{font-style:italic;}

/*   常用样式定义_@end   */


/*
 *  备注
 */

/*  在终极页面中调用该通用样式时,应该注意显示效果的不同,因为后台上传信息时编辑器里面样式并没有调用本默认样式表.
 *
 *  所以在编辑器中标签会有默认的属性,用户在添加信息时,这些信息都是附带默认样式的.
 *  如果用我们在终极页面也调用本默认CSS文件的话,许多标签如:p,td,li......标签默认样式都被取消,因此显示效不同.
 *
 *  解决办法:
 *	在终极页面显示内容区域还原这些标签的默认属性.
 *
 */
 
/*
 *  Copyright：本文件最终解释权归华商网所有；
 */
@charset "utf-8";
/* CSS Document */
html{font-size: 62.5%;overflow-x: hidden;height: 100%;}
body{overflow: hidden;max-width: 640px;background: #FFFFFF;}
.header {
    overflow: hidden;
    height: 280px;
    max-width: 640px;
    background: #424458;
    position: relative;
}
.header_top {
    height: 90px;
    max-width: 640px;
    overflow: hidden;
}
.header_top img {width: 100%;}
.header_phone {
    position: absolute;
    top: 50px;
    left: 50%;
    margin: 0 0 0 -40px;
}
.header_phone a {
    display: block;
    overflow: hidden;
    text-align: center;
    width: 80px;
}
.header_phone i {
    display: block;
    overflow: hidden;
    height: 80px;
    width: 80px;
    border-radius: 40px;
}
.header_phone em i {width: 100%;}
.header_phone span{
    display: block;
    text-align: center;
    color: #fff;
    font-size: 1.2rem;
    padding: 2px 0;
}
.header_phone em {
    display: block;
    text-align: center;
    color: #fff;
    font-size: 1.2rem;
    color: #babcc6;
}
.header_cont {
    height: 100px;
    overflow: hidden;
    color: #fff;
    padding-top: 90px;
}
.header_cont span {
    float: left;
    color: #fff;
    text-align: center;
    width: 33.33%;
    border-right: 1px solid #595b6c;
    box-sizing: border-box;
}
.header_cont span:last-child {
    border-right:none;
}
.header_cont span b {
    display: block;
    color: #babcc6;
    font-size: 1.2rem;
}
.header_cont span em {
    display: block;
    font-size: 1.8rem;
}
.header_cont p {
    clear: both;
    padding-top: 14px;
}
.header_cont p a {
    display: block;
    background: #a10f0f;
    width: 62%;
    border-radius: 3px;
    color: #fff;
    margin: 0 auto;
    padding: 4px;
    font-size: 1.8rem;
    text-align: center;
}
.header_cont p a:active {background:#3caab8; }
.main {
    overflow: hidden;
    max-width: 640px;
    background: #383a4c;
}
.main_list {
    border-bottom:1px dashed #4c4e5e ;
    height: 48px;
    line-height: 48px;
}
.main_list h4 {float: left;color: #babcc6;padding:0 10px;font-size: 1.6rem;}
.main_list h4.on{color: #fff;border-bottom: 2px solid #64a0d7;margin-bottom: -1px;}
.main_cont {
    overflow: hidden;
    clear: both;
}
.main_cont a {
    display: block;
    overflow: hidden;
    color: #fff;
    font-size: 1.6rem;
}
.morebtn a {
    cursor: pointer;
}

#morebtn a {
    cursor: pointer;
}
.cont_list {
    overflow: hidden;
    position: relative;
}
.cont_list dt {
    position: absolute;
    top: 10px;
    left: 10px;
    height: 50px;
    width: 50px;
    border-radius: 25px;
    overflow: hidden;
}
.cont_list dt img {width: 100%;}
.cont_list dd {
    margin-left: 60px;
    border-bottom:1px dashed #4c4e5e ;
    padding: 10px;
}
.cont_list dd p {
    color: #babcc6;
}
.cont_list dd em {display: block;padding-top: 10px;}
.cont_list dd em i {
    color: #606170;
    padding-right:10px;
}
.cont_list dd em i b{
    color: #fff;
}
.nav {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    max-width: 640px;
    margin: 0 auto;
    display: none;
}
.sidebar{
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 200px;
    height: auto;
    overflow: auto;
    background: #383a4c;
    margin: 0;
}
.side_top {
    overflow: hidden;
    height: 100px;
    background: #424458;
    padding: 20px;
    color: #fff;
    text-align: center;
}
.side_top i {
    display: block;
    width: 80px;
    height: 80px;
    border-radius: 40px;
    overflow: hidden;
    margin: 0 auto;
}
.side_cont {
    overflow: hidden;
    padding: 20px;
}
.side_cont p a {
    display: block;
    background: #a10f0f;
    padding:6px;
    border-radius: 3px;
    color: #fff;
    font-size: 1.6rem;
    text-align: center;
}
.side_cont p a:active {background: #3caab8;}
.side_cont dl {
    overflow: hidden;
    padding: 10px 0;
}
.side_cont dl dt {
    color: #8285a0;
    font-size: 1.6rem;
}
.side_cont dl dd a{
    display: block;
    color: #fff;
    padding: 10px 0;
    font-size: 1.6rem;
    border-bottom:1px dashed #4c4e5e ;
    position: relative;
}
.side_cont dl dd a:active{background:#424458;border-radius: 5px; }
.side_cont dl dd a b {
    display: block;
    position: absolute;
    top: 10px;
    right: 0;
    background: #ea5b4b;
    border-radius: 5px;
    color: #fff;
    height: 22px;
    line-height: 22px;
    text-align: center;
    font-size: 1.4rem;
    padding: 0 4px;
}
.side_cont dl i {
    display: block;
    background: url(../images/icon_add.png) center 0 no-repeat;
    height: 40px;
    width: 30px;
    margin: 0 auto;
    margin-top: 40px;
}
.slideright {
    transition: transform 0.4s;
    -moz-transition: -moz-transform 0.4s;
    -webkit-transition: -webkit-transform 0.4s;
    -o-transition: -o-transform 0.4s;
}
.menu {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    height: 40px;
    line-height: 40px;
    background: #a10f0f;
    max-width: 640px;
    z-index: 10;
    transition: transform 0.4s;
    -moz-transition: -moz-transform 0.4s;
    -webkit-transition: -webkit-transform 0.4s;
    -o-transition: -o-transform 0.4s;
}
.menu1 {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    height: 60px;
    /*line-height: 40px;*/
    background: #fff;
    max-width: 640px;
    z-index: 10;
    transition: transform 0.4s;
    -moz-transition: -moz-transform 0.4s;
    -webkit-transition: -webkit-transform 0.4s;
    -o-transition: -o-transform 0.4s;
}
.menu1.details_menu{
    background: #a55a32;
}
.user_menu {position:absolute;background: none;}

.menu span {
    position: absolute;
    left: 0px;
    top: 3px;
    height: 38px;
}

.menu em {
    position: absolute;
    right: 0px;
    top: 3px;
    height: 40px;
}

.menu em b {
    display: none;
    position: fixed;
    top: 48px;
    right: 32px;
}
.menu em b strong {
    color: #333;
    font-size: 2rem;
    float: left;
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 20px;
    text-align: center;
    background: #fff;
    border: 1px solid #ddd;
    margin: 0 2px;
}
.menu em b strong:first-child{
    font-size: 1.6rem;
}
.menu em b strong:last-child{
    font-size: 2.4rem;
}
.menu span i, .menu em i {
    display: inline-block;
    color: #fff;
    font-size: 2.2rem;
    padding: 0 10px;
}
.menu em i {
    transition: transform 2s;;
    -moz-transition: transform 2s;;
    -webkit-transition: transform 2s;;
    -o-transition: transform 2s;;
}
.listrotate{
    transform: rotate(540deg);
    -moz-transform: rotate(540deg);		/* Firefox */
    -webkit-transform: rotate(540deg);	/* Safari and Chrome */
    -o-transform: rotate(540deg);		/* Opera */
}
.menu p {
    overflow: hidden;
    padding: 0 46px;
    text-align: center;
}
.menu p img {
    width: 80px;
    padding: 5px;
}
.menu p a {
    display: inline-block;
    color: #fff;
    font-size: 1.8rem;
    width: 20%;
    text-align: center;
}

.menu p a.current {
    color: #82f0ff;
}


.menu1 span {
    position: absolute;
    left: 0px;
    top: 3px;
    height: 38px;
}

.menu1 em {
    position: absolute;
    right: 0px;
    top: 3px;
    height: 40px;
}

.menu1 em b {
    display: none;
    position: fixed;
    top: 48px;
    right: 32px;
}
.menu1 em b strong {
    color: #333;
    font-size: 2rem;
    float: left;
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 20px;
    text-align: center;
    background: #fff;
    border: 1px solid #ddd;
    margin: 0 2px;
}
.menu1 em b strong:first-child{
    font-size: 1.6rem;
}
.menu1 em b strong:last-child{
    font-size: 2.4rem;
}
.menu1 span i, .menu1 em i {
    display: inline-block;
    color: #fff;
    font-size: 2.2rem;
    padding: 0 10px;
}
.menu1 em i {
    transition: transform 2s;;
    -moz-transition: transform 2s;;
    -webkit-transition: transform 2s;;
    -o-transition: transform 2s;;
    margin: 6px 0 0;
}

.menu1 p {
    overflow: hidden;
    padding: 0 46px;
    text-align: center;
}
.menu1 p img {
    width: 272px;
    padding: 0px;
}
.menu1 p a {
    display: inline-block;
    color: #fff;
    font-size: 1.8rem;
    width: 20%;
    text-align: center;
}

.menu1 p a.current {
    color: #82f0ff;
}
.menu_list {
    position: fixed;
    top: 46px;
    left: 0;
    right: 0;
    overflow: hidden;
    background: #fff;
    max-width: 640px;
    z-index: 10;
    display: none;
    transition: transform 0.4s;
    -moz-transition: -moz-transform 0.4s;
    -webkit-transition: -webkit-transform 0.4s;
    -o-transition: -o-transform 0.4s;
}
.menu_list a {
    float: left;
    font-size: 1.6rem;
    text-align: center;
    width: 20%;
    height: 36px;
    line-height: 36px;
    border:1px dashed #f1f1f1;
    border-left: none;
    margin-right: -1px;
    margin-top: -1px;
}
/*.details_menu p {
    padding-right: 66px;
    text-align: center;
}
.details_menu p img {
    width: 100px;
    padding: 5px;
}*/

.con-menu {
    height:44px;
    line-height: 44px;
    border-bottom: solid 1px #333;
}

.con-menu a{
    width: 88px;
    height: 44px;
    display: block;
    float: left;
}

/* 焦点图 banner*/
.banner{
    position: relative;
    background-color: #ffffff;
    border-radius: 3px;
    text-align: center;
    max-width: 640px;
    margin:0 auto;
    margin-top: 73px;
    transition: transform 0.4s;
    -moz-transition: -moz-transform 0.4s;
    -webkit-transition: -webkit-transform 0.4s;
    -o-transition: -o-transform 0.4s;
}
.slide {
    position: relative;
    overflow: hidden;
	height:300px;
}
.caption {
    padding: 6px 14px;
    position: absolute;
    left: 0px;
    right: 0px;
    bottom: 0px;
    background:url(http://css.myhsw.cn/index/images/bg_caption.png);
    text-align: left;
}
.caption p {
    height:18px;
    line-height: 18px;
    text-overflow:ellipsis;
    overflow:hidden;
    white-space:nowrap;
    font-size: 1.5rem;
    color: #fff;
    text-shadow: 0px -1px #000000;
    color: #ffffff;
    font-weight: bold;
    padding: 4px 30px 4px 0;
}
.flex-direction-nav {
    display:none;
}
.flex-direction-nav a {
    width: 25px;
    height: 25px;
    margin-top: -27px;
    display: block;
    position: absolute;
    top: 50%;
    background-repeat: no-repeat;
    text-indent: -9000px;
}
.flex-direction-nav a.flex-prev {
    left: 6px;
    background-position: left top;
}
.flex-direction-nav a.flex-prev:hover {
    background-position: left bottom;
}
.flex-direction-nav a.flex-next {
    right: 6px;
    background-position: right top;
}
.flex-direction-nav a.flex-next:hover {
    background-position: right bottom;
}
.flex-control-paging {
    position: absolute;
    right: 10px;
    bottom: 14px;
}
.flex-control-paging li {
    margin: 2px;
    float: left;
    overflow: hidden;
}
.flex-control-paging li a {
    background:#fff;
    cursor: pointer;
    display: block;
    float: left;
    height: 6px;
    width: 6px;
    border-radius: 3px;
    text-indent: -1000px;
}
.flex-control-paging li a.flex-active {
    background: #128DD1;
}
.block_home_post_feature {
    width: 300px;
}
.block_home_post_feature p {
    padding-bottom: 0px;
}
.banner .slides > li {
    display: none;
} /* Hide the slides before the JS is loaded. Avoids image jumping */
.banner .slides img {
    width: 100%;
    display: block;
}
.flex-pauseplay span {
    text-transform: capitalize;
}
.content {
    position: relative;
    overflow: hidden;
    max-width: 640px;
    background: #fff;
    transition: transform 0.4s;
    -moz-transition: -moz-transform 0.4s;
    -webkit-transition: -webkit-transform 0.4s;
    -o-transition: -o-transform 0.4s;
}
.detail_cont {
    margin-bottom: 52px;
}
.content .list ul li a {
    display: block;
    border-bottom: 1px dashed #dfdfdf;
    padding: 10px;
    min-height: 88px;
}
.content .list ul li a:active, .morebtn a:active {background: #f3f3f3;}
.content .list ul li a img {
    width: 132px;
    height: 88px;
    float: left;
    margin-right: 10px;
}
.content .list ul li a span {
    display: block;
}
.content .list ul li a span p {
    color: #383a4c;
    font-size: 1.6rem;
    max-height: 42px;
    overflow: hidden;
}
.content .list ul li a span em {
    display: block;
    color: #999;
    padding-top: 27px;
}
.morebtn {
    overflow: hidden;
    background: #fff;
    text-align: center;
}
.morebtn a {
    display: block;
    padding: 10px;
    cursor: pointer;
}

.morebtnm {
    overflow: hidden;
    background: #fff;
    text-align: center;
}
.morebtnm a {
    display: block;
    padding: 10px;
    cursor: pointer;
}
.translateX {
    transform: translateX(200px);
    -webkit-transform: translateX(200px);
    -o-transform: translateX(200px);
    -moz-transform: translateX(200px);
}
.layout {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.15);
    max-width: 640px;
    display: none;
    z-index: 10;
    -webkit-transform: translateX(200px);
    -o-transform: translateX(200px);
    -moz-transform: translateX(200px);
}
.layout_file {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.5);
    max-width: 640px;
    display: none;
    z-index: 20;
}
.content_list {
    overflow: hidden;
    margin:20px 10px;
    border-radius: 5px;
    background: #fff;
}
.first_list {margin-top: 66px;}
.content_list a {
    display: block;
    overflow: hidden;
}
.content_list a:active {background: #f3f3f3;}
.content_list a em {
    display: block;
    max-width: 640px;
    position: relative;
    color: #fff;
}
.content_list a em img {width: 100%;}
.content_list a span {
    display: block;
    overflow: hidden;
    padding:0 10px;
}
.content_list a em i.fa-star {
    display: block;
    position: absolute;
    left: 10px;
    bottom: 5px;
    font-size: 2rem;
}
.content_list a em i.fa-clock-o {
    display: block;
    position: absolute;
    right: 10px;
    bottom: 5px;
    font-size: 2rem;
}
.content_list a em i.fa-clock-o b {font-size: 1.4rem;padding: 3px;}
.content_list a em b:last-child {
    float: right;
}
.content_list a span h4 {
    font-size: 2rem;
    font-weight: bold;
    color: #333;
    padding: 10px 0;
}
.content_list a span p {
    overflow: hidden;
    font-size: 1.6rem;
    color: #999;
    padding-bottom: 10px;
}
.content_list a strong {
    overflow: hidden;
    display: block;
    background: #f3f3f3;
}
.content_list a strong i {
    float: left;
    height: 42px;
    line-height: 42px;
    color: #888888;
    box-sizing: border-box;
    padding-left: 10px;
    font-size: 1.8rem;
}
.content_list a strong i.fa-eye{
    width: 40%;
    border-right: 1px solid #e4e4e4;
    border-top: 1px solid #e4e4e4;
}
.content_list a strong i.fa-comments{
    width: 30%;
    border-top: 1px solid #e4e4e4;
}
.content_list a strong i.fa-heart{
    width: 30%;
    color: #fff;
    border-top: 1px solid #dc6263;
    background: #dc6263;
}
.content_list a strong i b {font-size: 1.4rem;padding: 6px;}
.share {
    overflow: hidden;
    position: fixed;
    right: 10px;
    bottom: 10px;
    left: 10px;
    max-width: 620px;
    background: #f8f8f8;
    display: none;
    z-index: 50;
}
.share h4{
    border-bottom: 1px solid #dfdfdf;
    text-align: center;
    height: 40px;
    line-height: 40px;
    font-size: 1.6rem;
}
.share p {
    overflow: hidden;
    display: table;
    width: 100%;
    border-top: 1px solid #fff;
}
.share p b {
    display: table-row;
}
.share p a {
    display: table-cell;
    text-align: center;
    vertical-align: middle;
    padding: 12px;
}
.share p a em {
    display: block;
    padding: 4px 0;
}
.share p a i {
    line-height: 46px;
    color: #fff;
    width: 46px;
    height: 46px;
    border-radius:23px ;
}
.share p a i.share_weibo {
    background: #ea1328;
}
.share p a i.share_QQ {
    background: #009cda;
}
.share p a i.share_star {
    background: #ffc028;
}
.share p a i.share_tencent {
    background: #23ccfe;
}
.share p a i.share_weixin {
    background: #44b549;
}.share p a i.share_renren {
     background: #105ba3;
 }

.share span:before {
    content: " ";
    display: block;
    height: 10px;
    background: rgba(0, 0, 0, 0.5);
}
.share span {
    display: block;
    height: 52px;
    line-height: 52px;
    text-align: center;
}
.share span a {
    display: block;
    font-size: 1.6rem;
    line-height: 42px;
}
.details {
    overflow: hidden;
    padding: 0 10px 10px;
    background: #fff;
    margin-top: 40px;
}
.details h2 {
    font-size: 2rem;
    font-weight: bold;
    padding: 10px 0;
}
.details h5 {
    color: #a10f0f;
}
.details img {display:block;width: 100%;padding: 10px 0;}

.details p {
    overflow: hidden;
    line-height: 24px ;
    font-size: 1.6rem;
    text-align: justify;
}
.details p strong { /**/font-weight: bold;padding-bottom: 10px;}

.detail_comment {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 52px;
    line-height: 52px;
    background: #f8f8f8;
    max-width: 620px;
    padding: 0 10px;
}
.comment_fl {
    position: absolute;
    right: 126px;
    left: 10px;
    top: 6px;
}
.comment_fl em {
    display: block;
    overflow: hidden;
    position: relative;
    width: 100%;
    font-size: 1.6rem;
    border: 1px solid #eeeeee;
    border-radius: 3px;
    background: #fff;
    height: 37px;
}
.comment_fl em img {
    position: absolute;
    right: 0;
    top: 6px;
}
.comment_fl em i {
    position: absolute;
    left: 10px;
    top: 11px;
    color: #bfbfbf;
}
.comment_fr {
    position: absolute;
    right: 10px;
}
.comment_fr b {
    position: absolute;
    right: 60px;
    text-align: right;
}
.comment_fr i {
    padding: 15px 10px;
    cursor: pointer;
    font-size: 2.2rem;
}
.comment_fr i.fa-comment-o {
    position: absolute;
    top:-6px;
    right: 40px;
    font-size: 12px;
}
.comment_fr i.fa-heart {
    color: #dc6263;
}
.comment {
    max-width: 620px;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 30;
    display:none;
    background: #f9f8f9;
    padding:0 10px;
}
.comment h3 {
    position: relative;
    text-align: center;
    font-size: 1.8rem;
    height: 24px;
    line-height: 24px;
    padding:8px;
}
.comment h3 i {
    position: absolute;
    left: 6px;
}
.comment h3 button {
    position: absolute;
    top: 3px;
    right: 2px;
    font-size: 1.8rem;
    border: none;
    background: #a10f0f;
    color: #fff;
    padding: 4px 6px;
}
.comment em {
    display: block;
    position: relative;
    border: 1px solid #a10f0f;
    padding: 8px;
    border-radius: 3px;
    background: #fff;
    box-sizing: border-box;
}
.comment em textarea {
    display: block;
    width: 100%;
    color: #333;
    font-size: 1.6rem;
    outline:0;
    height: 58px;
    background: none;
    border: none;
    overflow-x: visible;
}
.menu_custom {
    position: absolute;
    top: 40px;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: auto;
    background: #fff;
    display: none;
    z-index: 20;
}
.ui-sortable {
    overflow: hidden;
}
.menu_custom a {
    float: left;
    width: 17%;
    text-align: center;
    margin: 10px 4%;
    border: 1px solid #ccc;
    box-sizing: border-box;
    padding: 4px 0;
    font-size: 1.6rem;
    position: relative;
}
.menu_custom a i {
    color: #67a54b;
    font-size: 1.8rem;
    position: absolute;
    right: -7px;
    top: -7px;
}
.menu_custom button {
    display: block;
    background: #a10f0f;
    padding: 6px;
    border-radius: 3px;
    color: #fff;
    font-size: 1.6rem;
    text-align: center;
    border: none;
    width: 100%;
    margin: 20px auto;
}

.share_code {
    overflow: hidden;
    position: fixed;
    right: 10px;
    bottom: 10px;
    left: 10px;
    max-width: 620px;
    background: #f8f8f8;
    z-index: 50;
    display: none;
}
.code_main {
    background: #f8f8f8;
    text-align: center;
    padding: 10px;
}
.share_code span:before {
    content: " ";
    display: block;
    height: 10px;
    background: rgba(0, 0, 0, 0.5);
}
.share_code span {
    display: block;
    height: 52px;
    line-height: 52px;
    text-align: center;
}
.share_code span a {
    display: block;
    font-size: 1.6rem;
    line-height: 42px;
}
.paged {
    max-width: 640px;
    text-align: center;
    margin: 20px auto 10px;
}
.paged a {
    border: 1px solid #ddd;
    border-radius: 25px;
    display: inline-block;
    height: 32px;
    line-height: 32px;
    width: 32px;
}
.paged a:active{
    background: #a10f0f;
    color: #fff;
}
.paged span {
    background: #a10f0f none repeat scroll 0 0;
    border-radius: 16px;
    color: white;
    display: inline-block;
    height: 32px;
    line-height: 32px;
    width: 32px;
}
.fontlvl2 p{
    font-size: 20px;
    line-height: 30px;
}
.fontlvl3 p{
    font-size: 24px;
    line-height: 32px;
}
/*-----------首页临时添加_temporary-------------*/
.temporary {
    overflow: hidden;
    background: #fff;
    padding: 4px;
}
.temporary span {
    float: left;
    width: 31.3%;
    padding:1%;
}
.temporary span img {width: 100%;}
@media only screen and (min-width : 480px){
    .temporary span {
        width: 14.3%;
    }
}
.backpc {
    overflow: hidden;
    height: 46px;
    line-height: 46px;
    background: grey;
    text-align: center;
}
.backpc a {color:#fff;}


.menunew_list {
    position: fixed;
    top: 40px;
    left: 0;
    right: 0;
    overflow: hidden;
    background: #fff;
    max-width: 640px;
    z-index: 10;
    display: none;
    box-shadow: 2px 3px 5px #999;
}
.menunew_list a {
    border:none;
    height: 30px;
    line-height: 30px;
    margin: 8px 0;
    border-radius: 5px;
}
.menunew_list a.on {
    background: #a10f0f;
    color: #fff;
}

.comment_fr {
    position: absolute;
    right: 10px;
}

.details_menu span strong {
    display: inline-block;
    width: 24px;
    height: 40px;
    overflow: hidden;
    position: absolute;
    left: 40px;
}
.details_menu span strong b:first-child {
    display: inline-block;
    height: 46px;
    width: 1px;
    border-right: 1px solid #f9f9f9;
    transform: rotate(150deg);
    -webkit-transform: rotate(150deg);
    position: absolute;
    top: -6px;
    left: 22px;
}
.details_menu span strong b:last-child {
    display: inline-block;
    height: 46px;
    width: 1px;
    border-left: 1px solid #f9f9f9;
    transform: rotate(30deg);
    -webkit-transform: rotate(30deg);
    position: absolute;
    bottom: -6px;
    left: 22px;
}


.top_menu_bar {
    background: rgba(255,255,255,.95);
    height: 33px;
    box-sizing: border-box;
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    z-index: 10;
    max-width: 640px;
}
.top_menu_more {
    float: right;
    position: relative;
}
.top_menu::-webkit-scrollbar {
    display: none;
}
.top_menu_more .list_shadow {
    position: absolute;
    width: 10px;
    height: 33px;
    left: -10px;
    background: url(http://css.myhsw.cn/index/images/icon1.png) no-repeat center right;
    background-size: contain;
}
.top_menu_more .more_btn {
    color: #a10f0f;
    font-size: 3rem;
    display: block;
    width: 45px;
    height: 33px;
    line-height: 16px;
    background-size: 20px;
    text-align: center;
}
.top_menu {
    overflow: hidden;
    overflow-x: scroll;
    -webkit-overflow-scrolling: touch;
    background: #a55a32;
}
#app, form, .btn, .control, .top_bar .btn, .list_action, .list_content .swipe_bg, .list_img_holder img, .top_menu_list, .top_menu, .closeBtn, .top_menu_more .more_btn {
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    -webkit-user-select: none;
    text-decoration: none;
}
.top_menu_list {
    white-space: nowrap;
}
.top_menu_list .btn {
    white-space: nowrap;
    display: inline-block;
    padding: 0 6px;
    color: #fbebd4;
    text-decoration: none;
    font-size: 18px;
    line-height: 23px;
    height: 23px;
    margin: 5px 0 5px 5px;
    -webkit-tap-highlight-color: rgba(0,0,0,.3);
}
.top_menu_list .btn.cur {
    color: #fff;
    font-size: 18px;
}
.iphone .top_menu_list .btn.cur {
    font-weight: 700;
}


.menunew_list p{
    padding: 10px;
    overflow: hidden;
    border-bottom: 1px dashed #ccc;
}
.menu_list.menunew_list strong {
    float: left;
    padding: 9px 10px;
}
.menunew_list strong em {
    color: #333;
    font-size: 2rem;
    float: left;
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 20px;
    text-align: center;
    background: #fff;
    border: 1px solid #a55a32!important;
    margin: 0 10px;
}
.menunew_list strong em:first-child {
    font-size: 1.6rem;
}
.menunew_list strong em:last-child {
    font-size: 2.4rem;
}
.menunew_list strong em:active, .menunew_list strong em.on {
    background: #a55a32!important;
    color: #fff;
    border: 1px solid #a55a32!important;
}
.menunew_list span{
    float: right;
    padding: 3px 20px;
    overflow: hidden;
    position: relative;
}
.menunew_list span i {color: #a55a32!important}

.menunew_list span em {
    position: absolute;
    top: 19px;
    right: 31px;
    font-size: 1.7rem;
    display: none;
}
.menunew_list span b {
    position: absolute;
    top: 19px;
    left: 31px;
    font-size: 1.7rem;
    display: inline;
}
.menunew_list .fa-toggle-on { display: none;}
.menunew_list .fa-toggle-off { display: inline;}/*!
 *  Font Awesome 4.3.0 by @davegandy - http://fontawesome.io - @fontawesome
 *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
 */@font-face{font-family:'FontAwesome';src:url('fonts/fontawesome-webfont.eot?v=4.3.0');src:url('fonts/fontawesome-webfont.eot?#iefix&v=4.3.0') format('embedded-opentype'),url('fonts/fontawesome-webfont.woff2?v=4.3.0') format('woff2'),url('fonts/fontawesome-webfont.woff?v=4.3.0') format('woff'),url('fonts/fontawesome-webfont.ttf?v=4.3.0') format('truetype'),url('fonts/fontawesome-webfont.svg?v=4.3.0#fontawesomeregular') format('svg');font-weight:normal;font-style:normal}.fa{display:inline-block;font:normal normal normal 14px/1 FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;transform:translate(0, 0)}.fa-lg{font-size:1.33333333em;line-height:.75em;vertical-align:-15%}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-fw{width:1.28571429em;text-align:center}.fa-ul{padding-left:0;margin-left:2.14285714em;list-style-type:none}.fa-ul>li{position:relative}.fa-li{position:absolute;left:-2.14285714em;width:2.14285714em;top:.14285714em;text-align:center}.fa-li.fa-lg{left:-1.85714286em}.fa-border{padding:.2em .25em .15em;border:solid .08em #eee;border-radius:.1em}.pull-right{float:right}.pull-left{float:left}.fa.pull-left{margin-right:.3em}.fa.pull-right{margin-left:.3em}.fa-spin{-webkit-animation:fa-spin 2s infinite linear;animation:fa-spin 2s infinite linear}.fa-pulse{-webkit-animation:fa-spin 1s infinite steps(8);animation:fa-spin 1s infinite steps(8)}@-webkit-keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}.fa-rotate-90{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=1);-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=2);-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=3);-webkit-transform:rotate(270deg);-ms-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1);-webkit-transform:scale(-1, 1);-ms-transform:scale(-1, 1);transform:scale(-1, 1)}.fa-flip-vertical{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1);-webkit-transform:scale(1, -1);-ms-transform:scale(1, -1);transform:scale(1, -1)}:root .fa-rotate-90,:root .fa-rotate-180,:root .fa-rotate-270,:root .fa-flip-horizontal,:root .fa-flip-vertical{filter:none}.fa-stack{position:relative;display:inline-block;width:2em;height:2em;line-height:2em;vertical-align:middle}.fa-stack-1x,.fa-stack-2x{position:absolute;left:0;width:100%;text-align:center}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}.fa-glass:before{content:"\f000"}.fa-music:before{content:"\f001"}.fa-search:before{content:"\f002"}.fa-envelope-o:before{content:"\f003"}.fa-heart:before{content:"\f004"}.fa-star:before{content:"\f005"}.fa-star-o:before{content:"\f006"}.fa-user:before{content:"\f007"}.fa-film:before{content:"\f008"}.fa-th-large:before{content:"\f009"}.fa-th:before{content:"\f00a"}.fa-th-list:before{content:"\f00b"}.fa-check:before{content:"\f00c"}.fa-remove:before,.fa-close:before,.fa-times:before{content:"\f00d"}.fa-search-plus:before{content:"\f00e"}.fa-search-minus:before{content:"\f010"}.fa-power-off:before{content:"\f011"}.fa-signal:before{content:"\f012"}.fa-gear:before,.fa-cog:before{content:"\f013"}.fa-trash-o:before{content:"\f014"}.fa-home:before{content:"\f015"}.fa-file-o:before{content:"\f016"}.fa-clock-o:before{content:"\f017"}.fa-road:before{content:"\f018"}.fa-download:before{content:"\f019"}.fa-arrow-circle-o-down:before{content:"\f01a"}.fa-arrow-circle-o-up:before{content:"\f01b"}.fa-inbox:before{content:"\f01c"}.fa-play-circle-o:before{content:"\f01d"}.fa-rotate-right:before,.fa-repeat:before{content:"\f01e"}.fa-refresh:before{content:"\f021"}.fa-list-alt:before{content:"\f022"}.fa-lock:before{content:"\f023"}.fa-flag:before{content:"\f024"}.fa-headphones:before{content:"\f025"}.fa-volume-off:before{content:"\f026"}.fa-volume-down:before{content:"\f027"}.fa-volume-up:before{content:"\f028"}.fa-qrcode:before{content:"\f029"}.fa-barcode:before{content:"\f02a"}.fa-tag:before{content:"\f02b"}.fa-tags:before{content:"\f02c"}.fa-book:before{content:"\f02d"}.fa-bookmark:before{content:"\f02e"}.fa-print:before{content:"\f02f"}.fa-camera:before{content:"\f030"}.fa-font:before{content:"\f031"}.fa-bold:before{content:"\f032"}.fa-italic:before{content:"\f033"}.fa-text-height:before{content:"\f034"}.fa-text-width:before{content:"\f035"}.fa-align-left:before{content:"\f036"}.fa-align-center:before{content:"\f037"}.fa-align-right:before{content:"\f038"}.fa-align-justify:before{content:"\f039"}.fa-list:before{content:"\f03a"}.fa-dedent:before,.fa-outdent:before{content:"\f03b"}.fa-indent:before{content:"\f03c"}.fa-video-camera:before{content:"\f03d"}.fa-photo:before,.fa-image:before,.fa-picture-o:before{content:"\f03e"}.fa-pencil:before{content:"\f040"}.fa-map-marker:before{content:"\f041"}.fa-adjust:before{content:"\f042"}.fa-tint:before{content:"\f043"}.fa-edit:before,.fa-pencil-square-o:before{content:"\f044"}.fa-share-square-o:before{content:"\f045"}.fa-check-square-o:before{content:"\f046"}.fa-arrows:before{content:"\f047"}.fa-step-backward:before{content:"\f048"}.fa-fast-backward:before{content:"\f049"}.fa-backward:before{content:"\f04a"}.fa-play:before{content:"\f04b"}.fa-pause:before{content:"\f04c"}.fa-stop:before{content:"\f04d"}.fa-forward:before{content:"\f04e"}.fa-fast-forward:before{content:"\f050"}.fa-step-forward:before{content:"\f051"}.fa-eject:before{content:"\f052"}.fa-chevron-left:before{content:"\f053"}.fa-chevron-right:before{content:"\f054"}.fa-plus-circle:before{content:"\f055"}.fa-minus-circle:before{content:"\f056"}.fa-times-circle:before{content:"\f057"}.fa-check-circle:before{content:"\f058"}.fa-question-circle:before{content:"\f059"}.fa-info-circle:before{content:"\f05a"}.fa-crosshairs:before{content:"\f05b"}.fa-times-circle-o:before{content:"\f05c"}.fa-check-circle-o:before{content:"\f05d"}.fa-ban:before{content:"\f05e"}.fa-arrow-left:before{content:"\f060"}.fa-arrow-right:before{content:"\f061"}.fa-arrow-up:before{content:"\f062"}.fa-arrow-down:before{content:"\f063"}.fa-mail-forward:before,.fa-share:before{content:"\f064"}.fa-expand:before{content:"\f065"}.fa-compress:before{content:"\f066"}.fa-plus:before{content:"\f067"}.fa-minus:before{content:"\f068"}.fa-asterisk:before{content:"\f069"}.fa-exclamation-circle:before{content:"\f06a"}.fa-gift:before{content:"\f06b"}.fa-leaf:before{content:"\f06c"}.fa-fire:before{content:"\f06d"}.fa-eye:before{content:"\f06e"}.fa-eye-slash:before{content:"\f070"}.fa-warning:before,.fa-exclamation-triangle:before{content:"\f071"}.fa-plane:before{content:"\f072"}.fa-calendar:before{content:"\f073"}.fa-random:before{content:"\f074"}.fa-comment:before{content:"\f075"}.fa-magnet:before{content:"\f076"}.fa-chevron-up:before{content:"\f077"}.fa-chevron-down:before{content:"\f078"}.fa-retweet:before{content:"\f079"}.fa-shopping-cart:before{content:"\f07a"}.fa-folder:before{content:"\f07b"}.fa-folder-open:before{content:"\f07c"}.fa-arrows-v:before{content:"\f07d"}.fa-arrows-h:before{content:"\f07e"}.fa-bar-chart-o:before,.fa-bar-chart:before{content:"\f080"}.fa-twitter-square:before{content:"\f081"}.fa-facebook-square:before{content:"\f082"}.fa-camera-retro:before{content:"\f083"}.fa-key:before{content:"\f084"}.fa-gears:before,.fa-cogs:before{content:"\f085"}.fa-comments:before{content:"\f086"}.fa-thumbs-o-up:before{content:"\f087"}.fa-thumbs-o-down:before{content:"\f088"}.fa-star-half:before{content:"\f089"}.fa-heart-o:before{content:"\f08a"}.fa-sign-out:before{content:"\f08b"}.fa-linkedin-square:before{content:"\f08c"}.fa-thumb-tack:before{content:"\f08d"}.fa-external-link:before{content:"\f08e"}.fa-sign-in:before{content:"\f090"}.fa-trophy:before{content:"\f091"}.fa-github-square:before{content:"\f092"}.fa-upload:before{content:"\f093"}.fa-lemon-o:before{content:"\f094"}.fa-phone:before{content:"\f095"}.fa-square-o:before{content:"\f096"}.fa-bookmark-o:before{content:"\f097"}.fa-phone-square:before{content:"\f098"}.fa-twitter:before{content:"\f099"}.fa-facebook-f:before,.fa-facebook:before{content:"\f09a"}.fa-github:before{content:"\f09b"}.fa-unlock:before{content:"\f09c"}.fa-credit-card:before{content:"\f09d"}.fa-rss:before{content:"\f09e"}.fa-hdd-o:before{content:"\f0a0"}.fa-bullhorn:before{content:"\f0a1"}.fa-bell:before{content:"\f0f3"}.fa-certificate:before{content:"\f0a3"}.fa-hand-o-right:before{content:"\f0a4"}.fa-hand-o-left:before{content:"\f0a5"}.fa-hand-o-up:before{content:"\f0a6"}.fa-hand-o-down:before{content:"\f0a7"}.fa-arrow-circle-left:before{content:"\f0a8"}.fa-arrow-circle-right:before{content:"\f0a9"}.fa-arrow-circle-up:before{content:"\f0aa"}.fa-arrow-circle-down:before{content:"\f0ab"}.fa-globe:before{content:"\f0ac"}.fa-wrench:before{content:"\f0ad"}.fa-tasks:before{content:"\f0ae"}.fa-filter:before{content:"\f0b0"}.fa-briefcase:before{content:"\f0b1"}.fa-arrows-alt:before{content:"\f0b2"}.fa-group:before,.fa-users:before{content:"\f0c0"}.fa-chain:before,.fa-link:before{content:"\f0c1"}.fa-cloud:before{content:"\f0c2"}.fa-flask:before{content:"\f0c3"}.fa-cut:before,.fa-scissors:before{content:"\f0c4"}.fa-copy:before,.fa-files-o:before{content:"\f0c5"}.fa-paperclip:before{content:"\f0c6"}.fa-save:before,.fa-floppy-o:before{content:"\f0c7"}.fa-square:before{content:"\f0c8"}.fa-navicon:before,.fa-reorder:before,.fa-bars:before{content:"\f0c9"}.fa-list-ul:before{content:"\f0ca"}.fa-list-ol:before{content:"\f0cb"}.fa-strikethrough:before{content:"\f0cc"}.fa-underline:before{content:"\f0cd"}.fa-table:before{content:"\f0ce"}.fa-magic:before{content:"\f0d0"}.fa-truck:before{content:"\f0d1"}.fa-pinterest:before{content:"\f0d2"}.fa-pinterest-square:before{content:"\f0d3"}.fa-google-plus-square:before{content:"\f0d4"}.fa-google-plus:before{content:"\f0d5"}.fa-money:before{content:"\f0d6"}.fa-caret-down:before{content:"\f0d7"}.fa-caret-up:before{content:"\f0d8"}.fa-caret-left:before{content:"\f0d9"}.fa-caret-right:before{content:"\f0da"}.fa-columns:before{content:"\f0db"}.fa-unsorted:before,.fa-sort:before{content:"\f0dc"}.fa-sort-down:before,.fa-sort-desc:before{content:"\f0dd"}.fa-sort-up:before,.fa-sort-asc:before{content:"\f0de"}.fa-envelope:before{content:"\f0e0"}.fa-linkedin:before{content:"\f0e1"}.fa-rotate-left:before,.fa-undo:before{content:"\f0e2"}.fa-legal:before,.fa-gavel:before{content:"\f0e3"}.fa-dashboard:before,.fa-tachometer:before{content:"\f0e4"}.fa-comment-o:before{content:"\f0e5"}.fa-comments-o:before{content:"\f0e6"}.fa-flash:before,.fa-bolt:before{content:"\f0e7"}.fa-sitemap:before{content:"\f0e8"}.fa-umbrella:before{content:"\f0e9"}.fa-paste:before,.fa-clipboard:before{content:"\f0ea"}.fa-lightbulb-o:before{content:"\f0eb"}.fa-exchange:before{content:"\f0ec"}.fa-cloud-download:before{content:"\f0ed"}.fa-cloud-upload:before{content:"\f0ee"}.fa-user-md:before{content:"\f0f0"}.fa-stethoscope:before{content:"\f0f1"}.fa-suitcase:before{content:"\f0f2"}.fa-bell-o:before{content:"\f0a2"}.fa-coffee:before{content:"\f0f4"}.fa-cutlery:before{content:"\f0f5"}.fa-file-text-o:before{content:"\f0f6"}.fa-building-o:before{content:"\f0f7"}.fa-hospital-o:before{content:"\f0f8"}.fa-ambulance:before{content:"\f0f9"}.fa-medkit:before{content:"\f0fa"}.fa-fighter-jet:before{content:"\f0fb"}.fa-beer:before{content:"\f0fc"}.fa-h-square:before{content:"\f0fd"}.fa-plus-square:before{content:"\f0fe"}.fa-angle-double-left:before{content:"\f100"}.fa-angle-double-right:before{content:"\f101"}.fa-angle-double-up:before{content:"\f102"}.fa-angle-double-down:before{content:"\f103"}.fa-angle-left:before{content:"\f104"}.fa-angle-right:before{content:"\f105"}.fa-angle-up:before{content:"\f106"}.fa-angle-down:before{content:"\f107"}.fa-desktop:before{content:"\f108"}.fa-laptop:before{content:"\f109"}.fa-tablet:before{content:"\f10a"}.fa-mobile-phone:before,.fa-mobile:before{content:"\f10b"}.fa-circle-o:before{content:"\f10c"}.fa-quote-left:before{content:"\f10d"}.fa-quote-right:before{content:"\f10e"}.fa-spinner:before{content:"\f110"}.fa-circle:before{content:"\f111"}.fa-mail-reply:before,.fa-reply:before{content:"\f112"}.fa-github-alt:before{content:"\f113"}.fa-folder-o:before{content:"\f114"}.fa-folder-open-o:before{content:"\f115"}.fa-smile-o:before{content:"\f118"}.fa-frown-o:before{content:"\f119"}.fa-meh-o:before{content:"\f11a"}.fa-gamepad:before{content:"\f11b"}.fa-keyboard-o:before{content:"\f11c"}.fa-flag-o:before{content:"\f11d"}.fa-flag-checkered:before{content:"\f11e"}.fa-terminal:before{content:"\f120"}.fa-code:before{content:"\f121"}.fa-mail-reply-all:before,.fa-reply-all:before{content:"\f122"}.fa-star-half-empty:before,.fa-star-half-full:before,.fa-star-half-o:before{content:"\f123"}.fa-location-arrow:before{content:"\f124"}.fa-crop:before{content:"\f125"}.fa-code-fork:before{content:"\f126"}.fa-unlink:before,.fa-chain-broken:before{content:"\f127"}.fa-question:before{content:"\f128"}.fa-info:before{content:"\f129"}.fa-exclamation:before{content:"\f12a"}.fa-superscript:before{content:"\f12b"}.fa-subscript:before{content:"\f12c"}.fa-eraser:before{content:"\f12d"}.fa-puzzle-piece:before{content:"\f12e"}.fa-microphone:before{content:"\f130"}.fa-microphone-slash:before{content:"\f131"}.fa-shield:before{content:"\f132"}.fa-calendar-o:before{content:"\f133"}.fa-fire-extinguisher:before{content:"\f134"}.fa-rocket:before{content:"\f135"}.fa-maxcdn:before{content:"\f136"}.fa-chevron-circle-left:before{content:"\f137"}.fa-chevron-circle-right:before{content:"\f138"}.fa-chevron-circle-up:before{content:"\f139"}.fa-chevron-circle-down:before{content:"\f13a"}.fa-html5:before{content:"\f13b"}.fa-css3:before{content:"\f13c"}.fa-anchor:before{content:"\f13d"}.fa-unlock-alt:before{content:"\f13e"}.fa-bullseye:before{content:"\f140"}.fa-ellipsis-h:before{content:"\f141"}.fa-ellipsis-v:before{content:"\f142"}.fa-rss-square:before{content:"\f143"}.fa-play-circle:before{content:"\f144"}.fa-ticket:before{content:"\f145"}.fa-minus-square:before{content:"\f146"}.fa-minus-square-o:before{content:"\f147"}.fa-level-up:before{content:"\f148"}.fa-level-down:before{content:"\f149"}.fa-check-square:before{content:"\f14a"}.fa-pencil-square:before{content:"\f14b"}.fa-external-link-square:before{content:"\f14c"}.fa-share-square:before{content:"\f14d"}.fa-compass:before{content:"\f14e"}.fa-toggle-down:before,.fa-caret-square-o-down:before{content:"\f150"}.fa-toggle-up:before,.fa-caret-square-o-up:before{content:"\f151"}.fa-toggle-right:before,.fa-caret-square-o-right:before{content:"\f152"}.fa-euro:before,.fa-eur:before{content:"\f153"}.fa-gbp:before{content:"\f154"}.fa-dollar:before,.fa-usd:before{content:"\f155"}.fa-rupee:before,.fa-inr:before{content:"\f156"}.fa-cny:before,.fa-rmb:before,.fa-yen:before,.fa-jpy:before{content:"\f157"}.fa-ruble:before,.fa-rouble:before,.fa-rub:before{content:"\f158"}.fa-won:before,.fa-krw:before{content:"\f159"}.fa-bitcoin:before,.fa-btc:before{content:"\f15a"}.fa-file:before{content:"\f15b"}.fa-file-text:before{content:"\f15c"}.fa-sort-alpha-asc:before{content:"\f15d"}.fa-sort-alpha-desc:before{content:"\f15e"}.fa-sort-amount-asc:before{content:"\f160"}.fa-sort-amount-desc:before{content:"\f161"}.fa-sort-numeric-asc:before{content:"\f162"}.fa-sort-numeric-desc:before{content:"\f163"}.fa-thumbs-up:before{content:"\f164"}.fa-thumbs-down:before{content:"\f165"}.fa-youtube-square:before{content:"\f166"}.fa-youtube:before{content:"\f167"}.fa-xing:before{content:"\f168"}.fa-xing-square:before{content:"\f169"}.fa-youtube-play:before{content:"\f16a"}.fa-dropbox:before{content:"\f16b"}.fa-stack-overflow:before{content:"\f16c"}.fa-instagram:before{content:"\f16d"}.fa-flickr:before{content:"\f16e"}.fa-adn:before{content:"\f170"}.fa-bitbucket:before{content:"\f171"}.fa-bitbucket-square:before{content:"\f172"}.fa-tumblr:before{content:"\f173"}.fa-tumblr-square:before{content:"\f174"}.fa-long-arrow-down:before{content:"\f175"}.fa-long-arrow-up:before{content:"\f176"}.fa-long-arrow-left:before{content:"\f177"}.fa-long-arrow-right:before{content:"\f178"}.fa-apple:before{content:"\f179"}.fa-windows:before{content:"\f17a"}.fa-android:before{content:"\f17b"}.fa-linux:before{content:"\f17c"}.fa-dribbble:before{content:"\f17d"}.fa-skype:before{content:"\f17e"}.fa-foursquare:before{content:"\f180"}.fa-trello:before{content:"\f181"}.fa-female:before{content:"\f182"}.fa-male:before{content:"\f183"}.fa-gittip:before,.fa-gratipay:before{content:"\f184"}.fa-sun-o:before{content:"\f185"}.fa-moon-o:before{content:"\f186"}.fa-archive:before{content:"\f187"}.fa-bug:before{content:"\f188"}.fa-vk:before{content:"\f189"}.fa-weibo:before{content:"\f18a"}.fa-renren:before{content:"\f18b"}.fa-pagelines:before{content:"\f18c"}.fa-stack-exchange:before{content:"\f18d"}.fa-arrow-circle-o-right:before{content:"\f18e"}.fa-arrow-circle-o-left:before{content:"\f190"}.fa-toggle-left:before,.fa-caret-square-o-left:before{content:"\f191"}.fa-dot-circle-o:before{content:"\f192"}.fa-wheelchair:before{content:"\f193"}.fa-vimeo-square:before{content:"\f194"}.fa-turkish-lira:before,.fa-try:before{content:"\f195"}.fa-plus-square-o:before{content:"\f196"}.fa-space-shuttle:before{content:"\f197"}.fa-slack:before{content:"\f198"}.fa-envelope-square:before{content:"\f199"}.fa-wordpress:before{content:"\f19a"}.fa-openid:before{content:"\f19b"}.fa-institution:before,.fa-bank:before,.fa-university:before{content:"\f19c"}.fa-mortar-board:before,.fa-graduation-cap:before{content:"\f19d"}.fa-yahoo:before{content:"\f19e"}.fa-google:before{content:"\f1a0"}.fa-reddit:before{content:"\f1a1"}.fa-reddit-square:before{content:"\f1a2"}.fa-stumbleupon-circle:before{content:"\f1a3"}.fa-stumbleupon:before{content:"\f1a4"}.fa-delicious:before{content:"\f1a5"}.fa-digg:before{content:"\f1a6"}.fa-pied-piper:before{content:"\f1a7"}.fa-pied-piper-alt:before{content:"\f1a8"}.fa-drupal:before{content:"\f1a9"}.fa-joomla:before{content:"\f1aa"}.fa-language:before{content:"\f1ab"}.fa-fax:before{content:"\f1ac"}.fa-building:before{content:"\f1ad"}.fa-child:before{content:"\f1ae"}.fa-paw:before{content:"\f1b0"}.fa-spoon:before{content:"\f1b1"}.fa-cube:before{content:"\f1b2"}.fa-cubes:before{content:"\f1b3"}.fa-behance:before{content:"\f1b4"}.fa-behance-square:before{content:"\f1b5"}.fa-steam:before{content:"\f1b6"}.fa-steam-square:before{content:"\f1b7"}.fa-recycle:before{content:"\f1b8"}.fa-automobile:before,.fa-car:before{content:"\f1b9"}.fa-cab:before,.fa-taxi:before{content:"\f1ba"}.fa-tree:before{content:"\f1bb"}.fa-spotify:before{content:"\f1bc"}.fa-deviantart:before{content:"\f1bd"}.fa-soundcloud:before{content:"\f1be"}.fa-database:before{content:"\f1c0"}.fa-file-pdf-o:before{content:"\f1c1"}.fa-file-word-o:before{content:"\f1c2"}.fa-file-excel-o:before{content:"\f1c3"}.fa-file-powerpoint-o:before{content:"\f1c4"}.fa-file-photo-o:before,.fa-file-picture-o:before,.fa-file-image-o:before{content:"\f1c5"}.fa-file-zip-o:before,.fa-file-archive-o:before{content:"\f1c6"}.fa-file-sound-o:before,.fa-file-audio-o:before{content:"\f1c7"}.fa-file-movie-o:before,.fa-file-video-o:before{content:"\f1c8"}.fa-file-code-o:before{content:"\f1c9"}.fa-vine:before{content:"\f1ca"}.fa-codepen:before{content:"\f1cb"}.fa-jsfiddle:before{content:"\f1cc"}.fa-life-bouy:before,.fa-life-buoy:before,.fa-life-saver:before,.fa-support:before,.fa-life-ring:before{content:"\f1cd"}.fa-circle-o-notch:before{content:"\f1ce"}.fa-ra:before,.fa-rebel:before{content:"\f1d0"}.fa-ge:before,.fa-empire:before{content:"\f1d1"}.fa-git-square:before{content:"\f1d2"}.fa-git:before{content:"\f1d3"}.fa-hacker-news:before{content:"\f1d4"}.fa-tencent-weibo:before{content:"\f1d5"}.fa-qq:before{content:"\f1d6"}.fa-wechat:before,.fa-weixin:before{content:"\f1d7"}.fa-send:before,.fa-paper-plane:before{content:"\f1d8"}.fa-send-o:before,.fa-paper-plane-o:before{content:"\f1d9"}.fa-history:before{content:"\f1da"}.fa-genderless:before,.fa-circle-thin:before{content:"\f1db"}.fa-header:before{content:"\f1dc"}.fa-paragraph:before{content:"\f1dd"}.fa-sliders:before{content:"\f1de"}.fa-share-alt:before{content:"\f1e0"}.fa-share-alt-square:before{content:"\f1e1"}.fa-bomb:before{content:"\f1e2"}.fa-soccer-ball-o:before,.fa-futbol-o:before{content:"\f1e3"}.fa-tty:before{content:"\f1e4"}.fa-binoculars:before{content:"\f1e5"}.fa-plug:before{content:"\f1e6"}.fa-slideshare:before{content:"\f1e7"}.fa-twitch:before{content:"\f1e8"}.fa-yelp:before{content:"\f1e9"}.fa-newspaper-o:before{content:"\f1ea"}.fa-wifi:before{content:"\f1eb"}.fa-calculator:before{content:"\f1ec"}.fa-paypal:before{content:"\f1ed"}.fa-google-wallet:before{content:"\f1ee"}.fa-cc-visa:before{content:"\f1f0"}.fa-cc-mastercard:before{content:"\f1f1"}.fa-cc-discover:before{content:"\f1f2"}.fa-cc-amex:before{content:"\f1f3"}.fa-cc-paypal:before{content:"\f1f4"}.fa-cc-stripe:before{content:"\f1f5"}.fa-bell-slash:before{content:"\f1f6"}.fa-bell-slash-o:before{content:"\f1f7"}.fa-trash:before{content:"\f1f8"}.fa-copyright:before{content:"\f1f9"}.fa-at:before{content:"\f1fa"}.fa-eyedropper:before{content:"\f1fb"}.fa-paint-brush:before{content:"\f1fc"}.fa-birthday-cake:before{content:"\f1fd"}.fa-area-chart:before{content:"\f1fe"}.fa-pie-chart:before{content:"\f200"}.fa-line-chart:before{content:"\f201"}.fa-lastfm:before{content:"\f202"}.fa-lastfm-square:before{content:"\f203"}.fa-toggle-off:before{content:"\f204"}.fa-toggle-on:before{content:"\f205"}.fa-bicycle:before{content:"\f206"}.fa-bus:before{content:"\f207"}.fa-ioxhost:before{content:"\f208"}.fa-angellist:before{content:"\f209"}.fa-cc:before{content:"\f20a"}.fa-shekel:before,.fa-sheqel:before,.fa-ils:before{content:"\f20b"}.fa-meanpath:before{content:"\f20c"}.fa-buysellads:before{content:"\f20d"}.fa-connectdevelop:before{content:"\f20e"}.fa-dashcube:before{content:"\f210"}.fa-forumbee:before{content:"\f211"}.fa-leanpub:before{content:"\f212"}.fa-sellsy:before{content:"\f213"}.fa-shirtsinbulk:before{content:"\f214"}.fa-simplybuilt:before{content:"\f215"}.fa-skyatlas:before{content:"\f216"}.fa-cart-plus:before{content:"\f217"}.fa-cart-arrow-down:before{content:"\f218"}.fa-diamond:before{content:"\f219"}.fa-ship:before{content:"\f21a"}.fa-user-secret:before{content:"\f21b"}.fa-motorcycle:before{content:"\f21c"}.fa-street-view:before{content:"\f21d"}.fa-heartbeat:before{content:"\f21e"}.fa-venus:before{content:"\f221"}.fa-mars:before{content:"\f222"}.fa-mercury:before{content:"\f223"}.fa-transgender:before{content:"\f224"}.fa-transgender-alt:before{content:"\f225"}.fa-venus-double:before{content:"\f226"}.fa-mars-double:before{content:"\f227"}.fa-venus-mars:before{content:"\f228"}.fa-mars-stroke:before{content:"\f229"}.fa-mars-stroke-v:before{content:"\f22a"}.fa-mars-stroke-h:before{content:"\f22b"}.fa-neuter:before{content:"\f22c"}.fa-facebook-official:before{content:"\f230"}.fa-pinterest-p:before{content:"\f231"}.fa-whatsapp:before{content:"\f232"}.fa-server:before{content:"\f233"}.fa-user-plus:before{content:"\f234"}.fa-user-times:before{content:"\f235"}.fa-hotel:before,.fa-bed:before{content:"\f236"}.fa-viacoin:before{content:"\f237"}.fa-train:before{content:"\f238"}.fa-subway:before{content:"\f239"}.fa-medium:before{content:"\f23a"}