﻿/*
    text-overflow: ellipsis;
    white-space: nowrap;
    
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;

    -webkit-background-clip: content;
    -moz-background-clip: content;
    background-clip: content;
    
    box-shadow: 0px 0px 5px rgba(153,153,153,0.5);  
	
    word-break: break-all;
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
    overflow: hidden;  
	
	//四边
    content: " ";
    width: 200%;
    height: 200%;
    position: absolute;
    top: 0;
    left: 0;
    border: 1px solid #e6e6e6;
    box-sizing: border-box;
    -webkit-transform: scale(.5);
    transform: scale(.5);
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
	
*/
/* 全局  */
@charset "UTF-8";
body, h1, h2, h3, h4, h5, h6, hr, p, blockquote, dl, dt, dd, ul, ol, li, pre, form, fieldset, legend, button, input, textarea, th, td, img {
	border: medium none;
	margin: 0;
	padding: 0;
}
*{margin: 0;padding: 0;list-style: none;word-wrap:break-word; }
html{overflow-x: hidden;font-size:20px;}
body{font-family:Helvetica;background:#fff;font-size:1.2rem;color:#666; overflow:hidden;}

body,button, input, select, textarea{
    font-family: "Helvetica Neue", Helvetica, STHeiTi,\5FAE\8F6F\96C5\9ED1;
}
video {max-width: 100%;}

input, textarea{-webkit-tap-highlight-color: rgba(255,255,255,0);}
i{font-style:normal;}
a{outline: none;-webkit-appearance: none;-webkit-tap-highlight-color: rgba(255,255,255,0);font-family: "microsoft yahei";text-decoration: none;color: #666;}
input[type="button"], input[type="submit"], input[type="reset"]{-webkit-appearance: none;}
ul, ol{list-style: none;vertical-align: middle;}
img{border: 0px;vertical-align:middle}
.fl{float: left;display: inline;}
.fr{float: right;display: inline;}
.clear{ clear:both; overflow:hidden; height:0;}
.h5{ overflow:hidden;clear:both;height:0.25rem;}
.h10{ overflow:hidden;clear:both;height:0.5rem;}
.h15{ overflow:hidden;clear:both;height:0.75rem;}
.h20{ overflow:hidden;clear:both;height:1rem;}
.h25{ overflow:hidden;clear:both;height:1.25rem;}
.h30{ overflow:hidden;clear:both;height:1.5rem;}

.bc_fff{
	background:#fff;
	overflow:hidden;
}
.wbox{
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
}
.wbox-flex{
	-webkit-flex:1!important;
	-webkit-box-flex:1
}	
/*动态设置字体大小*/
/*iphone 6*/
html{
    font-size: calc(100vw/320*20);
}
/*iphone 6 plus*/


/*浏览器滚动条*/
::-webkit-scrollbar {opacity:0;width:0px;background-color:#fff;}
::-webkit-scrollbar-button {}
::-webkit-scrollbar-track {}
::-webkit-scrollbar-track-piece {}
::-webkit-scrollbar-thumb {border:solid 0px #5d5d5d;width:0px;background-color:#fff;}
::-webkit-scrollbar-corner {background-color:#5d5d5d;}
::-webkit-resizer {}
::-webkit-scrollbar:horizontal{height:9px;}

.clamp1{
    word-break: break-all;
    display: -webkit-box !important;
    -webkit-line-clamp: 1 !important;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.clamp2{
    word-break: break-all;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.clamp3{
    word-break: break-all;
    display: -webkit-box !important;
    -webkit-line-clamp: 3 !important;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.clamp4{
    word-break: break-all;
    display: -webkit-box !important;
    -webkit-line-clamp: 4 !important;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.clamp5{
    word-break: break-all;
    display: -webkit-box !important;
    -webkit-line-clamp: 5 !important;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.clamp6{
    word-break: break-all;
    display: -webkit-box !important;
    -webkit-line-clamp: 6 !important;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/*
* 内容垂直居中
*/
.tableCont{
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: absolute;
    left: 0px;
    top:0px;
    z-index: 5;
}
.table{
    width: 100%;
    height: 100%;
    overflow: hidden;
    display: table;
}
.tableCell{
    display: table-cell;
    overflow: hidden;
    vertical-align: middle;
}

/*
* 边框公共部分
*/
.bd_b:after{
    display: block;
    content: "";
    overflow: hidden;
    width: 100%;
    height: 1px;
    background: #ddd;
    position: absolute;
    left: 0px;
    bottom:0px;
    -webkit-transform: scaleY(0.5);
    -ms-transform: scaleY(0.5);
    -o-transform: scaleY(0.5);
    transform: scaleY(0.5);
    z-index: 2;
}
.bd_t:before{
    display: block;
    content: "";
    overflow: hidden;
    width: 100%;
    height: 1px;
    background: #ddd;
    position: absolute;
    left: 0px;
    top:0px;
    -webkit-transform: scaleY(0.5);
    -ms-transform: scaleY(0.5);
    -o-transform: scaleY(0.5);
    transform: scaleY(0.5);
    z-index: 2;
}
.bd_l:before{
    display: block;
    content: "";
    overflow: hidden;
    width: 1px;
    height: 100%;
    background: #ddd;
    position: absolute;
    left: 0px;
    top:0px;
    -webkit-transform: scaleX(0.5);
    -ms-transform: scaleX(0.5);
    -o-transform: scaleX(0.5);
    transform: scaleX(0.5);
    z-index: 2;
}
.bd_r:after{
    display: block;
    content: "";
    overflow: hidden;
    width: 1px;
    height: 100%;
    background: #ddd;
    position: absolute;
    right: 0px;
    top:0px;
    -webkit-transform: scaleX(0.5);
    -ms-transform: scaleX(0.5);
    -o-transform: scaleX(0.5);
    transform: scaleX(0.5);
    z-index: 2;
}
.bd_a:after{
    display: block;
    content: "";
    overflow: hidden;
    width: 200%;
    height: 200%;
    border: 1px solid #ddd;
    position: absolute;
    left: 0px;
    top:0px;
    -webkit-border-radius: 0.3rem;
    -moz-border-radius: 0.3rem;
    -ms-border-radius: 0.3rem;
    -o-border-radius: 0.3rem;
    border-radius: 0.3rem;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transform-origin: 0px 0px;
    -moz-transform-origin: 0px 0px;
    -ms-transform-origin: 0px 0px;
    -o-transform-origin: 0px 0px;
    transform-origin: 0px 0px;
    -webkit-transform: scale(0.5);
    -ms-transform: scale(0.5);
    -o-transform: scale(0.5);
    transform: scale(0.5);
    z-index: 2;
}

/*
* 列表共用部分
*/
.list_a{
    display: block;
    overflow: hidden;
    position: relative;
}
.flex .list_a{
    display: flex;
}
.imgDiv{
    width: 100%;
    overflow: hidden;
    position: relative;
    padding-top: 66.6666667%;
}
.imgDiv img{
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0px;
    top: 0px;
    z-index: 1;
}
.listName{
    overflow: hidden;
    font-size: 0.6rem;
    color:#454545;
}
.flex .listName{
    flex: 1;
}
.flex .listDeta .listName{
    flex: none;
}
.listTime{
    font-size: 0.6rem;
    color:#999;
    overflow: hidden;
}
.listDeta{
    overflow: hidden;
}
.flex .listDeta{
    flex: 1;
}
.listIntr{
    overflow: hidden;
    max-height: 2.75rem;
    font-size: 0.6rem;
    color:#999;
    line-height: 0.9rem;
}
/**
 * 框架部分 begin
 * @author 杨朝杰
 * @return
 */	
#mobileWrap{
	margin:0 auto;
}
#mobileTop{clear:both; position:fixed;z-index:5;width:100%;
-webkit-box-shadow: 0px 0px 3px rgba(0,0,0,0.2);
box-shadow: 0px 0px 3px rgba(0,0,0,0.2);
}
#mobileCon{overflow:hidden;overflow-y:auto;clear:both; background:#eee; position:relative;z-index:4;}
#mobileFooter{clear:both; position:fixed; bottom:0; width:100%; z-index:4;}
#mobileMenu{height:100%;display:block;position:fixed; top:0;width:11rem;z-index:9999;background:#fff;right:-11rem; overflow:hidden;overflow-y:auto;}
#mobileBg{width:100%; height:100%;position:fixed;background:rgba(0,0,0,0.3);z-index:50;left:0;top:0px; z-index:6; display:none;}
#mobileConH{overflow:hidden;}

#mobileTop.hide,#mobileCon.hide,#mobileFooter.hide,#mobileMenu.hide{
	-webkit-transform: translateX(-11rem);
	transition: all 770ms cubic-bezier(0.51, 0.04, 0.12, 0.99);
	}/*导航展开*/
#mobileTop.show,#mobileCon.show,#mobileFooter.show,#mobileMenu.show{
	-webkit-transform:translateX(0);
	transition: all 770ms cubic-bezier(0.51, 0.04, 0.12, 0.99);
	}/*导航关闭*/
#mobileBg.hide{
	-webkit-transform: translateX(-11rem);
	transition: all 770ms cubic-bezier(0.51, 0.04, 0.12, 0.99);
	}
#mobileBg.show{transition: all 770ms cubic-bezier(0.51, 0.04, 0.12, 0.99);}

/**
 * 手机顶部
 * @author 杨朝杰
 * @return
 */	
#toolbarnav{display: flex;height:2.25rem;width:100%;max-width:100%;position: relative;color:#fff;background:#4fb9eb;}
#toolbarnav.bc_fff{
    background: #fff;
}
#toolbarnav h1{font-weight: normal;flex:1;text-align: center;display: block;text-align: center;line-height:2.25rem; font-size:0.9rem;overflow: auto;}
#toolbarnav h1 a{
    display: block;
    overflow: hidden;
    padding: 0.35rem 0px;
    padding-left: 10px;
}
#toolbarnav h1 a img{
    display: block;
    height: 1.5rem;
}
.searchIcon{
    display: block;
    width: 0.8rem;
    overflow: hidden;
    position: relative;
    background: url(../images/search.png) no-repeat 10px center;
    background-size: auto 0.9rem;
    padding: 0px 10px;
}
.searchIcon:after{
    display: block;
    content: "";
    overflow: hidden;
    position: absolute;
    right: 0px;
    top: 50%;
    width: 1px;
    height: 1.0rem;
    background: #e5e5e5;
    -webkit-transform: scaleX(0.5) translateY(-50%);
    -ms-transform: scaleX(0.5) translateY(-50%);
    -o-transform: scaleX(0.5) translateY(-50%);
    transform: scaleX(0.5) translateY(-50%);
}
#go-back{
	width:2rem;
	height:2.25rem;
	display:block;
	font-size:1.1rem;
	opacity:0.7;
	}
#go-back span{color:#666;font-size:1.4rem;display:block;height:2.25rem;margin-left:10px;line-height: 2.25rem;}

.menuBt{
    display: block;
    width:1.25rem;
	height:2.25rem;
	overflow:hidden;
    z-index: 200;
    padding:0 10px;
	}
.menuBt span{
    display: inline-block;
    position: relative;
    width:100%;
    height:2px;
    background-color:white;
    transition:0.3s;
}
.menuBt span:before,
.menuBt span:after {
  content: '';
  display: block;
  width:100%;
  height:3px;
  position: absolute;
  background: white;
  transition:0.3s;
}
.menuBt span:before {margin-top: -7px;}
.menuBt span:after {margin-top: 7px;}

.menuBt.close span {background: rgba(0, 0, 0, 0);}
.menuBt.close span:before {
	margin-top: 0;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}
.menuBt.close span:after {
	margin-top: 0;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

#sub-btn{display: block;width:2.25rem;height:2.25rem;position: absolute;right: 0;top: 0;}
#sub-btn span{font-size:1rem;color: #fff;margin:12px 0 0 16px;display: block;}

#articleTool{
	position:relative;
	display: block;height:45px;width: 100%;max-width:100%;position: relative;color:#333;background:#f9fafb;
	}
#articleTool:after {
    content: " ";
    width: 200%;
    height: 200%;
    position: absolute;
    top: 0;
    left: 0;
    border: 1px solid #e6e6e6;
    box-sizing: border-box;
    -webkit-transform: scale(.5);
    transform: scale(.5);
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
	display:none;
}
#articleTool h1{
	overflow:hidden;
	text-align: center;
	display: block;
	text-align: center;
	line-height:2.2rem;
	color:#333;
	font-size:0.8rem;
	margin:0 40px;
	text-overflow: ellipsis;
	white-space: nowrap;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-background-clip: content;
	-moz-background-clip: content;
	background-clip: content;
	}
#articleTool #go-back span{ color:#333;}

/**
 * 一级导航
 * @author 杨朝杰
 * @return
 */
/*#mobileMenu:after{
    display: block;
    content: "";
    overflow: hidden;
    width: 1px;
    height: 100%;
    position: absolute;
    left: -1px;
    top: 0px;
    z-index: 3;
    -webkit-box-shadow: 0px 0px 15px rgba(0,0,0,1);
    box-shadow: 0px 0px 15px rgba(0,0,0,1);
}*/
#mobileMenu header{position:relative;display:block;background:url(../images/cloud_bg2.png) no-repeat center bottom; background-size:cover;height:2.25rem;position:relative;}
#mobileMenu header h1{text-align: center;padding: 0.25rem 0px;color:#fff;font-size:16px; position:relative;}
#mobileMenu header h1 img{ height:1.75rem;}
/*#mobileMenu header:after {
    content: " ";
    position: absolute;
    left: 0;
    bottom:0px;
    width: 100%;
    height: -1px;
    border-bottom: 1px solid #d3e8f9;
    -webkit-transform-origin: scaleY(0.3);
    transform-origin: scaleY(0.3);
    -webkit-transform: scaleY(0.3);
    transform: scaleY(0.3);
	display:none;
}*/
#mobileMenu ul{
    width:100%;
	overflow:hidden;
    overflow-y: auto;
    height: 100%;
    -webkit-backface-visibility: hidden;
    -webkit-transform-style: preserve-3d;
}
#mobileMenu ul li{
    display: block;
    overflow:hidden;
    position: relative;
}
#mobileMenu ul li:after{
    content: "";
    position: absolute;
    left:0;
    bottom:0px;
    width:100%;
    height: 1px;
    background: #dadada;
    -webkit-transform-origin: scaleY(0.5);
    transform-origin: scaleY(0.5);
    -webkit-transform: scaleY(0.5);
    transform: scaleY(0.5);
}
.menu_a{
	font-size:0.7rem;
	height:2rem;
	display: flex;
	color:#666;
	text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
	position:relative;
    padding: 0px 0.5rem;
    position: relative;
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
}
.menu_a span{
    color:#666;
    font-size:0.7rem;
    display: block;
    flex:1;
    line-height:2rem;
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
    padding-left: 1.0rem;
}
.menu_a i{
    display: none;
    font-size: 0.9rem;
    color:#666;
    line-height: 2rem;
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
}
#mobileMenu ul li.hover .menu_a span,
#mobileMenu ul li.hover .menu_a i,
#mobileMenu ul li.hover .menu_a:after{
    color:#fff;
}
.menu_ul li:nth-child(1) .menu_a span{
    background: url(../images/menuIcon1.png) no-repeat left center;
    background-size: auto 0.7rem;
}
.menu_ul li:nth-child(1).hover .menu_a span{
    background: url(../images/menuIcon1_h.png) no-repeat left center;
    background-size: auto 0.7rem;
}
.menu_ul li:nth-child(2) .menu_a span{
    background: url(../images/menuIcon2.png) no-repeat left center;
    background-size: auto 0.7rem;
}
.menu_ul li:nth-child(2).hover .menu_a span{
    background: url(../images/menuIcon2_h.png) no-repeat left center;
    background-size: auto 0.7rem;
}
.menu_ul li:nth-child(3) .menu_a span{
    background: url(../images/menuIcon3.png) no-repeat left center;
    background-size: auto 0.6rem;
}
.menu_ul li:nth-child(3).hover .menu_a span{
    background: url(../images/menuIcon3_h.png) no-repeat left center;
    background-size: auto 0.6rem;
}
.menu_ul li:nth-child(4) .menu_a span{
    background: url(../images/menuIcon4.png) no-repeat left center;
    background-size: auto 0.6rem;
}
.menu_ul li:nth-child(4).hover .menu_a span{
    background: url(../images/menuIcon4_h.png) no-repeat left center;
    background-size: auto 0.6rem;
}
.menu_ul li:nth-child(5) .menu_a span{
    background: url(../images/menuIcon5.png) no-repeat left center;
    background-size: auto 0.7rem;
}
.menu_ul li:nth-child(5).hover .menu_a span{
    background: url(../images/menuIcon5_h.png) no-repeat left center;
    background-size: auto 0.7rem;
}
.menu_ul li:nth-child(6) .menu_a span{
    background: url(../images/menuIcon6.png) no-repeat left center;
    background-size: auto 0.9rem;
}
.menu_ul li:nth-child(6).hover .menu_a span{
    background: url(../images/menuIcon6_h.png) no-repeat left center;
    background-size: auto 0.9rem;
}
.menu_ul li:nth-child(7) .menu_a span{
    background: url(../images/menuIcon7.png) no-repeat left center;
    background-size: auto 0.7rem;
}
.menu_ul li:nth-child(7).hover .menu_a span{
    background: url(../images/menuIcon7_h.png) no-repeat left center;
    background-size: auto 0.7rem;
}
.menu_ul li:nth-child(8) .menu_a span{
    background: url(../images/menuIcon8.png) no-repeat left center;
    background-size: auto 0.7rem;
}
.menu_ul li:nth-child(8).hover .menu_a span{
    background: url(../images/menuIcon8_h.png) no-repeat left center;
    background-size: auto 0.7rem;
}
.menu_ul li:nth-child(9) .menu_a span{
    background: url(../images/menuIcon9.png) no-repeat left center;
    background-size: auto 0.7rem;
}
.menu_ul li:nth-child(9).hover .menu_a span{
    background: url(../images/menuIcon9_h.png) no-repeat left center;
    background-size: auto 0.7rem;
}
.menu_ul li:nth-child(10) .menu_a span{
    background: url(../images/menuIcon10.png) no-repeat left center;
    background-size: auto 0.7rem;
}
.menu_ul li:nth-child(10).hover .menu_a span{
    background: url(../images/menuIcon10_h.png) no-repeat left center;
    background-size: auto 0.7rem;
}
.menu_ul li:nth-child(11) .menu_a span{
    background: url(../images/menuIcon11.png) no-repeat left center;
    background-size: auto 0.6rem;
}
.menu_ul li:nth-child(11).hover .menu_a span{
    background: url(../images/menuIcon11_h.png) no-repeat left center;
    background-size: auto 0.6rem;
}
/*#mobileMenu ul li.hover a:after {
    content: " ";
    position: absolute;
    left:0;
    bottom:0px;
    width:100%;
    height: -1px;
    border-bottom: 1px solid #4fb9eb;
    -webkit-transform-origin: scaleY(0.3);
    transform-origin: scaleY(0.3);
    -webkit-transform: scaleY(0.3);
    transform: scaleY(0.3);
}*/
#mobileMenu ul li.hover .menu_a{background:#cc141e;}
#mobileMenu ul li.hover .menu_a i{
    transform: rotate(90deg);
}
#mobileMenu ul li.hover.active .menu_a i{
    transform: rotate(0deg);
}
.menu_dl dd.hover .subMenu_a{
    color:#cc141e;
}
.menuDiv{
    display: none;
    overflow: hidden;
    padding-left: 1rem;
    background: #f9f9f9;
}
.menu_dl{
    overflow: hidden;
    padding: 0.25rem 0px;
}
.menu_dl dd{
    overflow: hidden;
    height: 1.75rem;
    line-height: 1.75rem;
}
.subMenu_a{
    display: block;
    overflow: hidden;
    font-size: 0.6rem;
    color:#666;
    position: relative;
    padding-left: 0.4rem;
}
.subMenu_a i{
    font-size: 0.8rem;
    padding-right: 0.25rem;
}
/*.subMenu_a:before{
    display: block;
    content: "";
    overflow: hidden;
    width: 0.15rem;
    height: 0.15rem;
    position: absolute;
    left: 0px;
    top: 50%;
    background: #666;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    -ms-border-radius: 100%;
    -o-border-radius: 100%;
    border-radius: 100%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}*/
.menu_dl dd.hover .subMenu_a:before{
    background: #cc141e;
}
/**
 * 二级导航
 */	
#mobileSubNav{height:2rem;position:relative;z-index:9;margin:0 auto;}
#mobileSubNav:after{
    display: block;
    content: "";
    overflow: hidden;
    width: 100%;
    height: 1px;
    background:#ddd;
    position: absolute;
    left: 0px;
    bottom: 1px;
}
#mobileSubNav.navNum1{display:none;}
#mobileSubNav.navNum2 .SubNav_open{display:none;}
#mobileSubNav.navNum2 .mobileSubNav_title ul{padding:0}
#mobileSubNav.navNum2 .mobileSubNav_title ul li{ width:50%;}
#mobileSubNav.navNum2 .mobileSubNav_title ul li:last-child:after{ display:none;}

#mobileSubNav.navNum3 .SubNav_open{display:none;}
#mobileSubNav.navNum3 .mobileSubNav_title ul{padding:0}
#mobileSubNav.navNum3 .mobileSubNav_title ul li:last-child:after{ display:none;}

.mobileSubNav_title{overflow:hidden;display: flex;height:2rem;background:#fff;position:relative;z-index:9; width:100%;font-size: 0px;}
/*.mobileSubNav_title:before{
    content: " ";
    width: 200%;
    height: 200%;
    position: absolute;
    top: 0;
    left: 0;
    border: 1px solid #e6e6e6;
    box-sizing: border-box;
    -webkit-transform: scale(.5);
    transform: scale(.5);
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
}*/
span.SubNav_open{
	width:15px;
	height:2rem;
	display: block;
	color:#999;
	z-index:9;
    background: #f2f2f2;
    font-size: 0.9rem !important;
    text-align: center;
    line-height: 2rem !important;
    opacity: 0;
}
.subNav_dl{
    flex: 1;
    overflow-x: auto;
	overflow-y:hidden;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing:border-box;
    padding-left: 5px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    white-space:nowrap;
    height: calc(2rem + 15px);
}
.subNav_dl dd{
	display:inline-block;
	height:2rem;
    line-height: 2rem;
	font-size:0.7rem;
	position:relative;
    padding: 0px 5px;
}
.subNav_dl dd a{
    display: block;
    overflow: hidden;
    position: relative;
    padding: 0px 2px;
}
.subNav_dl dd a:after{
    display: none;
    content: "";
    overflow: hidden;
    width: 100%;
    height: 1px;
    position: absolute;
    left: 0px;
    bottom: 0px;
    background: #cc141e;
}
.subNav_dl dd.hover a{
    color:#cc141e;
}
.subNav_dl dd.hover a:after{
    display: block;
}
/**
 * 固定的底部
 * @author 杨朝杰
 * @return
 */	
.footerBar{
	font-size:0.65rem;
	overflow: hidden;
	color: #fff;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-background-clip: content;
	-moz-background-clip: content;
	background-clip: content;
	width: 100%;
	background:#fff;
    box-shadow: 1px 0 4px #d9d8d8;
}
.foot_dl{
    height:2.25rem;
    overflow: hidden;
    display: flex;
}
.foot_dl dd{
    flex: 1;
    overflow: hidden;
}
.foot_a{
    display: block;
    overflow: hidden;
    padding-top: 0.2rem;
}
.foot_a span{
    display: block;
    overflow: hidden;
    height: 0.9rem;
}
.foot_dl dd:nth-child(1) .foot_a span{
    background: url(../images/home.png) no-repeat center center;
    background-size: auto 0.8rem;
}
.foot_dl dd:nth-child(1).hover .foot_a span{
    background: url(../images/home_h.png) no-repeat center center;
    background-size: auto 0.8rem;
}
.foot_dl dd:nth-child(2) .foot_a span{
    background: url(../images/location.png) no-repeat center center;
    background-size: auto 0.9rem;
}
.foot_dl dd:nth-child(2).hover .foot_a span{
    background: url(../images/location_h.png) no-repeat center center;
    background-size: auto 0.9rem;
}
.foot_dl dd:nth-child(3) .foot_a span{
    background: url(../images/tel.png) no-repeat center center;
    background-size: auto 0.9rem;
}
.foot_dl dd:nth-child(3).hover .foot_a span{
    background: url(../images/tel_h.png) no-repeat center center;
    background-size: auto 0.9rem;
}
.foot_a i{
    display: block;
    overflow: hidden;
    text-align: center;
    font-size: 0.6rem;
    color:#666;
    padding-top: 0.1rem;
}
.foot_dl dd.hover .foot_a i{
    color:#4fb9eb;
}
/**
 * 返回顶部
 * @author 杨朝杰
 * @return
 */	
#scrollTop{
	width:35px;
	height:35px;
	line-height:35px;
	text-align:center;
	border-radius:100%;
	background:rgba(255,255,255,0.9);
	position: fixed;
	right:10px;
	bottom:60px;
	z-index:5;
	display:none;
	-webkit-box-shadow:0px 0px 5px rgba(153,153,153,0.5);	
	-moz-box-shadow:0px 0px 5px rgba(153,153,153,0.5);	 
	box-shadow:0px 0px 5px rgba(153,153,153,0.5);	   
	}
#scrollTop em{font-size:26px;color:#666;padding:3px 0 0 0;}

/**
 * page
 * @author 杨朝杰
 * @return
 */
.ajaxLoad{color:#666;height:2rem;line-height:2rem;text-align:center;clear:both;position:relative;background:#fff;margin:5px 0 0 0; font-size:0.7rem;}
.ajaxLoad i{font-size:0.8rem;margin:0 5px 0 0;color:#fc8b1c;}

/**
 * 文章阅读页
 * @author 杨朝杰
 * @return
 */	
.articleBox{line-height:1.5rem;color:#454545;padding:10px;font-size:0.75rem;background:#fff;}
.articleBox img{max-width:100%;}
.articleTitle{
	font-size: 0.9rem;
    color: #333333;
    text-align: center;
    font-weight: bold;
    padding:10px 50px 0 50px;
    line-height: 1.5rem;
	}
.articleTime{display: block;clear: both;text-align: center;color: #999;font-size:0.6rem;padding:0 0 5px 0;}

.articleTop{
	overflow:hidden;
	background:#f9fafb;
	padding:10px 0;
	}
.articleTop .articleTitle{
	font-size:18px;
	color:#333333;
	text-align:center;
	font-weight:bold;
	padding:0 50px;
	line-height:30px;
	}
.articleTop .articleTime{
	text-align:center;
	padding:10px 0 0 0;
	}

.articleHand{
    clear:both;
    font-size:0.75rem;
    padding:0 0px 20px 0;
    overflow: hidden;
    }
.articleHand a{
    display:block;
    line-height:1.6rem;
    padding:0 20px 0 10px;
    float:left;
    clear: both;
}
.articleHand a i{
	padding:0 5px 0  0;
	}
.articleHand a.word{color:#37a6ff !important; }
.articleHand a.ppt{color:#ff7735 !important;}
.articleHand a.excel{color:#15bf44 !important; }
.articleHand a.pdf{color:#1369c0 !important; }
.articleHand a.zip{color:#ff9779 !important; }

.videoCon{
	position:absolute;
	top:205px;
	bottom:0;
	overflow-y:auto;
	}
.videoCon .articleTitle{
	font-size:18px;
	color:#333333;
	text-align:left;
	font-weight:bold;
	padding:5px 10px 0 10px;
	line-height:30px;
	}
.videoCon .articleTime{
	text-align:left;
	padding:0 0 0 10px;
	}
	
.audiojs{
	width:40px;
	height:40px;
	border-radius:100%;
	background:url(../audiojs/play.png) no-repeat center center;
	background-size:cover; 
	margin:2px 10px 0 0;
	position:relative;
	z-index:9;
	}
.audiojs.playing{
	width:40px;
	height:40px;
	border-radius:100%;
	background:url(../audiojs/play2.png) no-repeat center center;
	background-size:cover;
	}
.audiojs .scrubber{ display:none;}
.audiojs .time{ display:none;}
.audiojs .play-pause {
	width: 25px;
	height: 40px;
	padding:0 6px;
	margin: 0px;
	float: left;
	overflow: hidden;
}
.articelImgSlide{
    padding: 10px;
    overflow: hidden;
}
#articelImgSlide img{
    display: block;
    max-width: 100%;
}
#articelImgSlide{
    /*padding-bottom: 30px;*/
}
#articelImgSlide .swiper-pagination{
    bottom: 5px;
}
.articelImgSlide .swiper-button-prev{
    left: 0px;
    background: url(../images/aboutPrev3.png) no-repeat center center;
    background-size: auto 30px;
}
.articelImgSlide .swiper-button-next{
    right: 0px;
    background: url(../images/aboutNext3.png) no-repeat center center;
    background-size: auto 30px;
}
.articelImgSlide .swiper-pagination-bullet{background: #eee;opacity: 1;}
.articelImgSlide .swiper-pagination-bullet-active{background: #007aff;}
/**
 * 分享
 * @author 杨朝杰
 * @return
 */
.shareBt{display: inline-block;width:20px;position: relative;}
.shareClose{line-height:2rem;text-align:center;padding:3px 0 0 0;font-size:0.8rem;}
.shareBt:after{display: block;content: "";overflow: hidden;width: 100%;padding-top: 100%;background: url(../images/share/share.png) no-repeat center center;background-size: 100% 100%;position: absolute;left: 50%;bottom:-4px;}
.shareBox{width:100%;overflow: hidden;background: #fff;position: fixed;left: 0px;bottom:-100%;z-index: 10000;-webkit-transition: bottom 0.8s;-o-transition: bottom 0.8s;transition: bottom 0.8s;padding:0;-webkit-box-sizing: border-box;-moz-box-sizing: border-box;box-sizing: border-box;}
.shareBox.show{bottom:0px;}
.shareCont{overflow: hidden;padding:0.5rem 0px 0.25rem;}
.bdsharebuttonbox p{display: block;width:20%;overflow: hidden;float: left;-webkit-box-sizing: border-box;-moz-box-sizing: border-box;box-sizing: border-box;padding:0.25rem;}
.bdsharebuttonbox a{display: block;width: 100%;overflow: hidden;-webkit-box-sizing: border-box;-moz-box-sizing: border-box;box-sizing: border-box;margin:0px !important;padding:0 0.5rem !important;background: none !important;height: auto !important;}
.bdsharebuttonbox span{display: block;width: 100%;overflow: hidden;padding: 0px 0.75rem;-webkit-box-sizing: border-box;-moz-box-sizing: border-box;box-sizing: border-box;}
.bdsharebuttonbox i{clear:both;display: block;font-size:0.6rem;color:#666;text-align: center;overflow: hidden;margin:5px 0px;}
.boxShadow{position: fixed;left: 0px;top:0px;width: 100%;height: 100%;overflow: hidden;background: rgba(0,0,0,0.6);z-index: 999;display: none;}
.bdsharebuttonbox a:before{display: block;content: "";overflow: hidden;width: 100%;padding-top: 100%;}

/*.bdsharebuttonbox a.bds_weChat{
    display: none;
}*/
.bdsharebuttonbox a.bds_weChat:before{background: url(../images/share/shareBt5.png) no-repeat center center;background-size:100%;}
.bdsharebuttonbox a.bds_tsina:before{background: url(../images/share/shareBt1.png) no-repeat center center;background-size:100%;}
.bdsharebuttonbox a.bds_tqq:before{background: url(../images/share/shareBt2.png) no-repeat center center;background-size:100%;}
.bdsharebuttonbox a.bds_qzone:before{background: url(../images/share/shareBt3.png) no-repeat center center;background-size:100%;}
.bdsharebuttonbox a.bds_douban:before{background: url(../images/share/shareBt4.png) no-repeat center center;background-size:100%;}
.bdsharebuttonbox a.bds_sqq:before{background: url(../images/share/shareBt6.png) no-repeat center center;background-size:100%;}
.weChatShareTip{
    display: none;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: rgba(0,0,0,0.5) url(../images/share/weChatShare.png) no-repeat calc(100% - 30px) 10px;
    background-size: 90% auto;
    position: fixed;
    left: 0px;
    top: 0px;
    z-index: 9999999;
}
/**
 * 音乐播放器
 * @author 杨朝杰
 * @return
 */
.audio{margin:0 50px;padding:10px 0 10px 0;}
.audio-tips{margin-top:10px; color: #b1b1b1; text-align: center; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center;}
.audio-detail{padding:5px 10px; display: -webkit-box; display: -ms-flexbox; display: flex; background:#f8f8f8;position:relative;}
.audio-detail:after{content: " "; width: 200%; height: 200%; position: absolute; top: 0; left: 0; border: 1px solid #e6e6e6; box-sizing: border-box; -webkit-transform: scale(.5); transform: scale(.5); -webkit-transform-origin: 0 0; transform-origin: 0 0;z-index:1;}
.audio .info{-webkit-box-flex: 1; -ms-flex: 1 0; flex: 1 0; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; overflow: hidden;line-height:45px;}
.audio .info p{margin: 0; font-size: 15px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; color: #666; text-indent: 0;}
.audio .info .audio-title{-webkit-box-flex: 1.5; -ms-flex: 1.5; flex: 1.5; line-height: 24px;font-size:14px;}
.audio .info .audio-desc{-webkit-box-flex: 1; -ms-flex: 1; flex: 1; line-height: 16px;color:#999 !important;font-size:12px !important;}
.audio .info .audio-desc span{padding:0 15px 0 0;color:#ff000;}

/**
 * 固定的底部2
 * @author 杨朝杰
 * @return
 */ 
.footerBar2{
    font-size:12px;
    overflow: hidden;
    color: #fff;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-background-clip: content;
    -moz-background-clip: content;
    background-clip: content;
    width: 100%;
    height:45px;
    background:#fff;
    position:relative;
}
.footerBar2:after{
    content: " ";
    width: 200%;
    height: 200%;
    position: absolute;
    top: 0;
    left: 0;
    border-top:1px solid #ededed;
    box-sizing: border-box;
    -webkit-transform: scale(.5);
    transform: scale(.5);
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
    z-index:1;
    }
.footerBar2 .shareBt:after{ display:none;}

.footerBar2 div{
    overflow:hidden;
    position:relative;
    z-index:2;
    }
.phoneBt{
    width:30%;
    float:right;
    }
.phoneBt a {
    width: 100%;
    display: block;
    line-height: 45px;
    background: #ff7800;
    color: #fff !important;
    text-align: center;
}
.goBack2{
    width:16%;
    float:left;
    }
.goBack2 a{
    display: block;
    height:45px;
    background: url(../images/jt6.png) no-repeat 10px center;
    background-size: 26px;
    color: #666 !important;
    text-align: center;
    }
.marker, .shareDiv{
    float:right;
    line-height:45px;
    font-size:14px;
    padding:0 15px 0 0;
    }

.shareDiv .shareBt{ width:100%;}

.marker span, .shareDiv span{padding:0 0 0 6px;}
.marker em, .shareDiv em{color:#999;}


/**+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++以上为模板框架部分（尽量少改）+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++/

/*
* 全文
*/
.newsListBox{
    padding: 0px 10px;
    overflow: hidden;
}
.list_dl1{
    overflow: hidden;
    padding: 5px 10px;
    background: #fff;
}
.list_dl1 dd{
    height: 2.0rem;
    overflow: hidden;
    position: relative;
    line-height: 2.0rem;
}
.list_dl1 dd:after{
    display: block;
    content: "";
    overflow: hidden;
    width: 100%;
    height: 0px;
    border-bottom: 1px dashed #ddd;
    position: absolute;
    left: 0px;
    bottom: 0px;
    -webkit-transform: scaleY(0.5);
    -ms-transform: scaleY(0.5);
    -o-transform: scaleY(0.5);
    transform: scaleY(0.5);
}
.list_dl1 dd .listName{
    margin-right: 0.5rem;
}
/*
* 图文
*/
.textImg_dl{
    overflow: hidden;
    background: #fff;
    padding: 0px 10px;
}
.textImg_dl dd{
    padding: 10px 0px;
    overflow: hidden;
    position: relative;
}
.textImg_dl dd:after{
    display: block;
    content: "";
    overflow: hidden;
    width: 100%;
    height: 1px;
    background: #ddd;
    position: absolute;
    left: 0px;
    bottom: 0px;
    -webkit-transform: scaleY(0.5);
    -ms-transform: scaleY(0.5);
    -o-transform: scaleY(0.5);
    transform: scaleY(0.5);
}
.listLImg{
    width: 6.0rem;
    overflow: hidden;
    margin-right: 0.5rem;
}

/*
* 全图
*/
.imgList_dl{
    overflow: hidden;
    padding: 0.25rem 0px;
}
.imgList_dl dd{
    overflow: hidden;
    padding: 0.25rem 0px;
}
.imgList_dl dd .list_a{
    background: #fff;
    padding: 10px;
}
.imgList_dl .listName{
    font-size: 0.7rem;
    text-align: center;
}
/**+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 首页 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++/
/*
* banner
*/
.banner{
    overflow: hidden;
    position: relative;
    padding-top: 58.59375%;
}
.bannerCont{
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: absolute;
    left: 0px;
    top: 0px;
}
.bannerSwiper{
    height: 100%;
}
.banner_a{
    display: block;
    height: 100%;
    width: 100%;
}
.bannerSwiper .swiper-pagination span{
    background: #fff;
    opacity: 1;
}
.bannerSwiper .swiper-pagination .swiper-pagination-bullet-active{
    background: #cc141e;
}

/*
* 通知公告 begin
*/

.notice{
    overflow: hidden;
    padding: 0px 10px;
    background: #fff;
}
.noticeL{
    height: 2.0rem;
    overflow: hidden;
    line-height: 2.0rem;
    font-size: 0.7rem;
    color:#cc141e;
}
.noticeL span{
    padding-right: 5px;
}
.noticeSwiper{
    height: 1.5rem;
    overflow: hidden;
    margin: 0.25rem 0px;
}
.notice_a{
    display: flex;
    overflow: hidden;
    height: 1.5rem;
    line-height: 1.5rem;
}
.notice_a span{
    display: block;
    flex: 1;
    font-size: 0.6rem;
    color:#454545;
}
.notice_a i{
    display: block;
    overflow: hidden;
    font-size: 0.6rem;
    color:#999;
    padding-left: 5px;
}

/*
* tab选项卡
*/
.titBox{
    overflow: hidden;
    position: relative;
    display: flex;
}
.titBox.bd_b:after{
    background: #ddd;
}
.tit_dl{
    overflow: hidden;
    position: relative;
    z-index: 3;
    flex: 1;
}
.tit_dl dd{
    float: left;
    overflow: hidden;
    margin-right: 5px;
}
.tit_dl dd.hover .tit_a{
    background: #cc141e;
    color:#fff;
}
.tit_a{
    display: block;
    height: 1.5rem;
    overflow: hidden;
    padding: 0px 0.5rem;
    line-height: 1.5rem;
    font-size: 0.7rem;
    color:#474747;
    position: relative;
    background: #f0f0f0;
}
.tit_a:after{
    display: none;
    content: "";
    overflow: hidden;
    width: 0.75rem;
    height: 0.75rem;
    position: absolute;
    right: 0px;
    top: 0px;
    background: url(../images/trangle.png) no-repeat left bottom;
    background-size: 0.7rem auto;
}
.tit_a:before{
    display: none;
    content: "";
    overflow: hidden;
    width: 100%;
    height: 1px;
    position: absolute;
    left: 0px;
    bottom: 0px;
    background: #cc141e;
}
/*.tit_dl dd.hover .tit_a:before,*/
.tit_dl dd.active .tit_a:before{
    display: block;
}
/*.tit_dl dd.hover .tit_a,*/
.tit_dl dd.active .tit_a{
    background: none;
    padding: 0px;
    /*color:#cc141e;*/
}
.tit_dl dd.hover .tit_a:after{
    display: block;
}
.titMore{
    display: block;
    overflow: hidden;
    height: 1rem;
    /*padding: 0px 10px;*/
    /*background: #f0f0f0;*/
    line-height: 1rem;
    -webkit-border-radius: 1.25rem;
    -moz-border-radius: 1.25rem;
    -ms-border-radius: 1.25rem;
    -o-border-radius: 1.25rem;
    border-radius: 1.25rem;
    font-size: 0.6rem;
    color:#cc141e;
    margin: 0.25rem 0px;
}
.tabCont{
    overflow: hidden;
    padding: 0.25rem 0px 0px;
    height: 6rem;
}
.list_dl{
    overflow: hidden;
}
.list_dl dd{
    height: 1.5rem;
    overflow: hidden;
    line-height: 1.5rem;
}
.list_dl dd .listName{
    padding:0px 0.5rem 0px 0.35rem;
}
.list_dl dd .listName em{
    display: block;
    width: 0.15rem;
    height: 0.15rem;
    overflow: hidden;
    background: #b8b8b8;
    position: absolute;
    left: 0px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}
/*
* 第一通栏
*/
.box{
    padding: 10px;
    overflow: hidden;
    background: #fff;
}

/*
* 第二通栏
*/
.add_a{
    display: block;
    overflow: hidden;
}
.add_a img{
    display: block;
    max-width: 100%;
}
/*
* 第五通栏
*/
.ind5th_dl{
    margin: 0px -5px;
    overflow: hidden;
}
.ind5th_dl dd{
    width: 50%;
    overflow: hidden;
    float: left;
    padding-top: 10px;
}
.ind5th_a{
    display: block;
    overflow: hidden;
    margin: 0px 5px;
    padding: 0.4rem 0rem 0.4rem 0.4rem;
}
.group1 .ind5th_a,
.group2 .ind5th_a{
    display: flex;
}
.ind5th_a span{
    display: block;
    overflow: hidden;
    margin-right: 5px;
}
.ind5th_a span img{
    display: block;
    width: 1.5rem;
    height: 1.5rem;
}
.ind5th_a i{
    display: block;
    flex: 1;
    height: 1.5rem;
    line-height: 1.5rem;
    font-size: 0.6rem;
    color:#fff;
    padding-left: 5px;
    position: relative;
}
.ind5th_a i:after{
    display: block;
    content: "";
    width: 1px;
    height: 0.75rem;
    overflow: hidden;
    position: absolute;
    left: 0px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    background: rgba(255,255,255,0.2);
}
.group1 dd:nth-child(1) .ind5th_a{
    background: #42c7a2;
}
.group1 dd:nth-child(2) .ind5th_a{
    background: #5caedd;
}
.group2 dd:nth-child(1) .ind5th_a{
    background: #e45a74;
}
.group2 dd:nth-child(2) .ind5th_a{
    background: #ba5c9c;
}
.group2 dd:nth-child(3) .ind5th_a{
    background: #efa524;
}
.group2 dd:nth-child(4) .ind5th_a{
    background: #f28858;
}
.ind5thC_dl{
    overflow: hidden;
    position: relative;
    padding-bottom: 5px;
}
.ind5thC_dl dt{
    font-size: 0.7rem;
    color:#454545;
    overflow: hidden;
    font-weight: bold;
    height: 1.25rem;
    line-height: 1.25rem;
}
.ind5thC_dl dd{
    overflow: hidden;
    line-height: 1.25rem;
    display: flex;
}
.ind5thC_dl dd span{
    display: block;
    overflow: hidden;
    font-size: 0.6rem;
    color:#454545;
}
.ind5thC_dl dd i{
    display: block;
    flex: 1;
    overflow: hidden;
    font-size: 0.6rem;
    color:#666;
}
/*
* 第十五通栏
*/
.ind15th_dl{
    overflow: hidden;
    background: #f0f0f0;
}
.ind15th_dl dd{
    height: 1.5rem;
    overflow: hidden;
    line-height: 1.5rem;
    float: left;
    display: inline;
}
.ind15th_dl dd .list_a{
    display: block;
    overflow: hidden;
    border-right: 1px solid #fff;
    padding: 0px 10px;
    font-size: 0.6rem;
    color:#454545;
}
.ind15th_dl dd.hover .list_a{
    background: #cc141e;
    color:#fff;
}

/*
* 第十四通栏
*/
.ind14th_dl{
    overflow: hidden;
    background: #f0f0f0;
}
.ind14th_dl dd{
    height: 1.5rem;
    overflow: hidden;
    line-height: 1.5rem;
    float: left;
    display: inline;
}
.ind14th_dl dd .list_a{
    display: block;
    overflow: hidden;
    border-right: 1px solid #fff;
    padding: 0px 10px;
    font-size: 0.6rem;
    color:#454545;
}
.ind14th_dl dd.hover .list_a{
    background: #cc141e;
    color:#fff;
}

/*
* 第十三通栏
*/
.ind13th_dl{
    overflow: hidden;
    background: #f0f0f0;
}
.ind13th_dl dd{
    height: 1.5rem;
    overflow: hidden;
    line-height: 1.5rem;
    float: left;
    display: inline;
}
.ind13th_dl dd .list_a{
    display: block;
    overflow: hidden;
    border-right: 1px solid #fff;
    padding: 0px 10px;
    font-size: 0.6rem;
    color:#454545;
}
.ind13th_dl dd.hover .list_a{
    background: #cc141e;
    color:#fff;
}
.group3 .ind5th_a{
    text-align: center;
    font-size: 0px;
}
.group3 dd:nth-child(1) .ind5th_a{
    background: #f4b44e;
}
.group3 dd:nth-child(2) .ind5th_a{
    background: #58a7d4;
}
.ind5th_dl dd em{
    display: inline-block;
    height: 1.5rem;
    line-height: 1.5rem;
    padding-left: 1.25rem;
    overflow: hidden;
    font-size: 0.7rem;
    color: #fff;
    font-style: normal;
}
.group3 dd:nth-child(1) .ind5th_a em{
    background: url(../images/letter.png) no-repeat left center;
    background-size: auto 0.75rem;
}
.group3 dd:nth-child(2) .ind5th_a em{
    background: url(../images/email.png) no-repeat left center;
    background-size: auto 0.75rem;
}

/*
* 第十四通栏
*/
.ind14thBox{
    position: relative;
    padding-top: 66.6666667%;
}
.ind14thCont{
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: absolute;
    left: 0px;
    top: 0px;
}
.ind14thSwiper{
    height: 100%;
}
.ind14thSwiper .swiper-pagination-bullet{
    background: #ccc;
    opacity: 1;
}
.ind14thSwiper .swiper-pagination-bullet-active{
    background: #cc141e;
}
.ind14thName{
    overflow: hidden;
    text-align: center;
    font-size: 0.7rem;
    color:#454545;
    padding-top: 10px;
}
.ind14thSwiper .swiper-pagination{
    bottom: 0px !important;
}

/*
* 公共底部
*/
#mobileConH{
    overflow: hidden;
    position: relative;
    padding-bottom: 5rem;
}
.copyFoot{
    overflow: hidden;
    position: absolute;
    left: 0px;
    bottom: 0px;
    background: #fff;
    width: 100%;
    padding: 0.5rem;
    font-size: 0.6rem;
    color:#666;
    line-height: 1.0rem;
    text-align: center;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    background: #fff;
}

/*
* 来信列表
*/
.letter_dl{
    overflow: hidden;
    background: #fff;
    padding-top: 0.25rem;
}
.letter_dl dd{
    height: 1.75rem;
    overflow: hidden;
    line-height: 1.75rem;
    padding: 0px 0.5rem;
}
.letterTit{
    width: 100%;
    height: 1.75rem;
    overflow: hidden;
    line-height: 1.75rem;
    background: #f5f5f5;
    display: flex;
    padding: 0px 0.5rem;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.letterTit .listName{
    flex: 1;
}
.letterTit .listName,
.letterTit .listTime{
    color:#444;
}
.letterTit .listTime,
.letter_dl .listTime{
    width: 3.5rem;
    text-align: center;
}
.listTime.c_21a410{
    color:#21a410;
}

/*
* 来信详情
*/
.letterView{
    overflow: hidden;
    padding: 10px;
    background: #fff;
}
.letView_dl{
    overflow: hidden;
    position: relative;
}
.letView_dl dd{
    overflow: hidden;
    position: relative;
    display: flex;
    z-index: 3;
}
.letView_dl dd:after{
    display: block;
    content: "";
    overflow: hidden;
    width: 100%;
    height: 1px;
    position: absolute;
    left: 0px;
    bottom: 0px;
    background: #ddd;
    -webkit-transform: scaleY(0.5);
    -ms-transform: scaleY(0.5);
    -o-transform: scaleY(0.5);
    transform: scaleY(0.5);
}
.letSpan{
    width: 3.75rem;
    display: block;
    overflow: hidden;
    padding: 0.25rem;
    font-size: 0.6rem;
    color:#666;
    line-height: 1.25rem;
    text-align: right;
    position: relative;
}
.letViewTxt{
    flex: 1;
    overflow: hidden;
    padding: 0.25rem;
    font-size: 0.6rem;
    color:#666;
    line-height: 1.25rem;
}
/*
* 来信表单
*/
.letForm .letSpan{
    line-height: 1.5rem;
}
.formDiv{
    position: relative;
    padding: 0px 0.25rem;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.formInp{
    display: block;
    width: 100%;
    height: 1.5rem;
    overflow: hidden;
    border:none;
    outline: none;;
    line-height: 1.5rem;
    font-size: 0.6rem;
    color:#666;
    position: relative;
    z-index: 3;
    background: none;
}
.formArea{
    display: block;
    width: 100%;
    height: 5rem;
    overflow-x: hidden;
    overflow-y: auto;
    border:none;
    outline: none;
    line-height: 1rem;
    font-size: 0.6rem;
    color:#666;
    position: relative;
    z-index: 3;
    background: none;
    resize: none;
    padding: 0.25rem;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.letFormLabel{
    height: 1.5rem;
    line-height: 1.5rem;
    display: block;
    overflow: hidden;
    margin-right: 0.5rem;
    padding-left: 15px;
    position: relative;
}
.formRadio{
    display: block;
    overflow: hidden;
    position: absolute;
    left: 0px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}
.letFormLabel i{
    display: block;
    float: left;
}
.letSpan i{
    color:#cc141e;
}
.code{
    display: block;
    position: relative;
    margin: 0.25rem 0.25rem 0.25rem 0px;
}
.code img{
    display: block;
    height: 1.5rem;
}
.formBt{
    overflow: hidden;
    display: flex;
    margin: 0px -0.25rem;
}
.formBt a{
    display: block;
    flex: 1;
    overflow: hidden;
    height: 1.75rem;
    text-align: center;
    line-height: 1.75rem;
    font-size: 0.7rem;
    color:#fff;
    background: #d1d1d1;
    margin: 0.25rem;
    -webkit-border-radius: 0.15rem;
    -moz-border-radius: 0.15rem;
    -ms-border-radius: 0.15rem;
    -o-border-radius: 0.15rem;
    border-radius: 0.15rem;
}
.formBt a.hover{
    background: #cc141e;
}
.surveyTit{
    font-size: 0.7rem;
    overflow: hidden;
    color:#cc141e;
    text-align: center;
}
.c_cc141e{
    color:#cc141e;
}
.formIntr{
    overflow: hidden;
    font-size: 0.6rem;
    color:#333;
    line-height: 1rem;
    position: relative;
    padding: 0.5rem;
}
.survey_dl{
    overflow: hidden;
}
.survey_dl dt{
    padding-bottom: 0.25rem;
    font-size: 0.6rem;
    color:#333;
    overflow: hidden;
    line-height: 1.0rem;
    position: relative;
    margin-bottom: 0.25rem;
}
.survey_dl dd{
    padding: 0.25rem;
    overflow: hidden;
}
.surveySel{
    font-size: 0.6rem;
    color:#666;
    overflow: hidden;
    line-height: 1rem;
    display: flex;
}
.radio .surveySel,
.check .surveySel{
    padding-left: 0.75rem;
}
.check .surveySel{
    background: url(../images/check.png) no-repeat left 0.2rem;
    background-size: auto 0.6rem;
}
.check dd.hover .surveySel{
    background: url(../images/check_h.png) no-repeat left 0.2rem;
    background-size: auto 0.6rem;
}
.radio .surveySel{
    background: url(../images/radio.png) no-repeat left 0.2rem;
    background-size: auto 0.6rem;
}
.radio dd.hover .surveySel{
    background: url(../images/radio_h.png) no-repeat left 0.2rem;
    background-size: auto 0.6rem;
}
.surveySel span{
    display: block;
    overflow: hidden;
    margin-right: 0.5rem;
}
.surveySel p{
    flex: 1;
    display: block;
    position: relative;
}
.surveySel p input{
    width: 100%;
    display: block;
    line-height: 1rem;
    border: none;
    background: none;
    outline: none;
    font-size: 0.6rem;
    color:#666;
}
.surveyDeta{
    position: relative;
    padding: 0.25rem;
    display: flex;
    background: #fafafa;
}
.surveyDeta:before{
    display: block;
    width: 0.5rem;
    height: 0.5rem;
    overflow: hidden;
    position: absolute;
    left: 0.5rem;
    top: -0.5rem;
    content: "";
    background: url(../images/trangleUp.png) no-repeat center bottom;
    background-size: 0.5rem auto;
}
.surveyDetaTit{
    display: block;
    height: 1rem;
    line-height: 1rem;
    font-size: 0.6rem;
    color:#666;
    margin-right: 0.5rem;
}
.surveyDetaTit i{
    color:#333;
}
.surveyPoint{
    flex: 1;
    overflow: hidden;
    position: relative;
    height: 0.75rem;
    margin: 0.125rem 0px;
    background: #fff;
}
.surveyPoint em{
    display: block;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: #cc141e;
    position: absolute;
    left: 0px;
    top: 0px;
    z-index: 3;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
    border-radius: 3px;
}