﻿/*江晓东 18.08.08*/

/*
    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: 0px;
	padding: 0px;
}
html {
	overflow-x: hidden;
	height: 100%;
}
body {
	font-family: Helvetica;
	background: #fff;
	font-size: 12px;
	color: #666;
	height: 100%;
}
input,textarea {
	-webkit-tap-highlight-color: rgba(255, 255, 255, 0);
    font-family: Helvetica;
}
i,em{
	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;
}
.shadow{
	box-shadow:0 2px 2px #dddddd;
}
input[type="button"],
input[type="submit"],
input[type="reset"] {
	-webkit-appearance: none;
}
a:visited {
	color: #666;
	outline: none;
}
a:hover {
	color: #fc8b1c;
	outline: none;
}
a:active {
	color: #666;
	outline: 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 {height: 0.25rem;}
.h10 {height: 0.5rem;}
.h15 {height: 0.75rem;}
.h20 {height: 1rem;}
.h25 {height: 1.25rem;}
.h30 {height: 1.5rem;}

.whiteBg {
	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
}
/*
* css截取字数串
*/
.clamp1{
    white-space: nowrap;
    text-overflow: ellipsis;
    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;
}
/*
* 细线边框
*/
.xLineT{
    position: relative;
}
.xLineT:after{
    content: " ";
    width: 200%;
    height: 1px;
    position: absolute;
    top: 0;
    left: 0;
    border-bottom: 1px solid #e6e6e6;
    box-sizing: border-box;
    -webkit-transform: scale(.5);
    transform: scale(.5);
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
}
.xLineD{
    position: relative;
}
.xLineD:after{
    content: " ";
    width: 200%;
    height: 1px;
    position: absolute;
    bottom: 0;
    left: 0;
    border-bottom: 1px solid #e6e6e6;
    box-sizing: border-box;
    -webkit-transform: scale(.5);
    transform: scale(.5);
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
}
.xLineBox{
    position: relative;
}
.xLineBox: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;
}
/*浏览器滚动条*/
::-webkit-scrollbar {
	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;
}
/**
 * 框架部分 begin
 * @return
 */
#mobileTop {
    clear: both;
    position: fixed;
    z-index: 5;
    width: 100%;
    left: 0;
    top: 0;
    transform: translateX(0px);
    transition:all 0.3s linear;
}
#mobileCon {
    overflow: hidden;
    overflow-y: auto;
    clear: both;
    background: #fff;
    position: relative;
    z-index: 4;
    left: 0;
    transform: translateX(0px);
    transition:all 0.3s linear;
}
#mobileFooter {
    clear: both;
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 4;
    left: 0;
    transform: translateX(0px);
    transition:all 0.3s linear;
}
#mobileMenu{
    height:100%;
    position:fixed; 
    top:0px;
    width:200px;
    z-index:999999;
    background:#333;
    right: 0px;
    overflow:hidden;
    -webkit-transform: translateX(200px);
    -ms-transform: translateX(200px);
    -o-transform: translateX(200px);
    transform: translateX(200px);
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
}
#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;
}
#mobileMenu.show{
    -webkit-transform: translateX(0px);
    -ms-transform: translateX(0px);
    -o-transform: translateX(0px);
    transform: translateX(0px);
}
/*导航展开*/
@-webkit-keyframes menu{
    0%  {transform: scale(1.2);}
    100%{transform: scale(1);}
}
@-moz-keyframes menu{
    0%  {transform: scale(1.2);}
    100%{transform: scale(1);}
}
@-o-keyframes menu{
    0%  {transform: scale(1.2);}
    100%{transform: scale(1);}
}
@keyframes menu{
    0%  {transform: scale(1.2);}
    100%{transform: scale(1);}
}

#mobileMenu.show{}/*导航关闭*/
#mobileBg.hide{-webkit-transition: all 0.6s;-webkit-transform: translateX(0px);}
#mobileBg.show{-webkit-transition: all 0.6s;-webkit-transform: translateX(0px);}


/*导航关闭*/

#mobileBg.hide {
    -webkit-transition: all 0.6s;
    -webkit-transform: translateX(-250px);
}

#mobileBg.show {
    -webkit-transition: all 0.6s;
}
/**
 * 手机顶部
 * @author 杨朝杰
 * @return
 */

#toolbarnav {
    display: block;
    height: 2.25rem;
    width: 100%;
    max-width: 100%;
    position: relative;
    color: #fff;
    background: #11608d;
}
.logo{
    padding: 0.2rem 0 0 0.2rem;
}
.logo a{
    display: block;
}
.logo img{
    height: 1.8rem;
}
#toolbarnav h1 {
    text-align: center;
    display: block;
    text-align: center;
    line-height: 2.25rem;
    color: #333;
    font-size: 0.8rem;
    padding: 0 0.5rem 0 0;
}

#go-back {
    position: absolute;
    top: 0;
    width: 2.0rem;
    height: 2.25rem;
    display: block;
    left: 0;
    font-size: 1.0rem;
    opacity: 0.7;
}

#go-back span {
    color: #666;
    font-size: 1.2rem;
    display: block;
    margin: 0.5rem 0 0 0.6rem;
}

#menu-btn {
    display: block;
    width: 2.0rem;
    height: 2.25rem;
    position: absolute;
    right: 0;
    top: 0;
    text-align: center;
    background: #fff;
}
#menu-btn span {
    font-size: 1.0rem;
    color: #666666;
    opacity: 0.7;
    height: 2.25rem;
    line-height: 2.25rem;
    text-align: center;
}

#menu-btn em {
    font-size: 1.0rem;
    color: #fff;
    opacity: 0.7;
    display: none;
    height: 2.25rem;
    line-height: 2.25rem;
    text-align: center;
}

#sub-btn {
    display: block;
    width: 2.5rem;
    height: 2.25rem;
    position: absolute;
    right: 0;
    top: 0;
}
#sub-btn span {
    font-size: 1.0rem;
    color: #fff;
    margin: 0.6rem 0 0 0.8rem;
    display: block;
}
#articleTool {
    position: relative;
    display: block;
    height: 2.25rem;
    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.25rem;
    color: #333;
    font-size: 0.8rem;
    margin: 0 2.0rem;
    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
 */
.toEn{
    overflow: hidden;
    width: 100%;
    height: 2.25rem;
    line-height: 2.25rem;
    background: #38821f;
}
.toEn a{
    display: block;
    overflow: hidden;
    padding:0 10px;
    height: 100%;
    color: #fff;
    font-size: 16px;
}
.toEn a span{
    float: right;
    margin-top: 0.5rem;
    font-size: 25px;
}
.menuClose{
    height: 2rem;
}
.menuClose i{
    width: 2rem;
    background: url(../images/menuClose.png) center bottom no-repeat;
    background-size: 0.8rem;
    display: block;
    height: 2rem;
    float: right;
}
.mobileMenuBox{
    overflow-x: hidden;
    overflow-y: auto;
    height: calc(100% - 62px);
}
.menu_dl{
    overflow: hidden;
    
}
.menu_dl dd{
    overflow: hidden;
    position: relative;
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    -o-transform: translateX(100%);
    transform: translateX(100%);
    -webkit-transition: all 0.5s linear;
    -o-transition: all 0.5s linear;
    transition: all 0.5s linear;
    opacity: 0;
}
#mobileMenu.show .menu_dl dd{
    opacity: 1;
    -webkit-transform: translateX(0px);
    -ms-transform: translateX(0px);
    -o-transform: translateX(0px);
    transform: translateX(0px);
}
#mobileMenu.show .menu_dl dd:nth-child(1){
    -webkit-transition-delay: 0.2s;
    -o-transition-delay: 0.2s;
    transition-delay: 0.2s;
}
#mobileMenu.show .menu_dl dd:nth-child(2){
    -webkit-transition-delay: 0.4s;
    -o-transition-delay: 0.4s;
    transition-delay: 0.4s;
}
#mobileMenu.show .menu_dl dd:nth-child(3){
    -webkit-transition-delay: 0.6s;
    -o-transition-delay: 0.6s;
    transition-delay: 0.6s;
}
#mobileMenu.show .menu_dl dd:nth-child(4){
    -webkit-transition-delay: 0.8s;
    -o-transition-delay: 0.8s;
    transition-delay: 0.8s;
}
#mobileMenu.show .menu_dl dd:nth-child(5){
    -webkit-transition-delay: 1s;
    -o-transition-delay: 1s;
    transition-delay: 1s;
}
#mobileMenu.show .menu_dl dd:nth-child(6){
    -webkit-transition-delay: 1.2s;
    -o-transition-delay: 1.2s;
    transition-delay: 1.2s;
}
#mobileMenu.show .menu_dl dd:nth-child(7){
    -webkit-transition-delay: 1.4s;
    -o-transition-delay: 1.4s;
    transition-delay: 1.4s;
}
#mobileMenu.show .menu_dl dd:nth-child(8){
    -webkit-transition-delay: 1.6s;
    -o-transition-delay: 1.6s;
    transition-delay: 1.6s;
}
#mobileMenu.show .menu_dl dd:nth-child(9){
    -webkit-transition-delay: 1.8s;
    -o-transition-delay: 1.8s;
    transition-delay: 1.8s;
}
#mobileMenu.show .menu_dl dd:nth-child(10){
    -webkit-transition-delay: 2s;
    -o-transition-delay: 2s;
    transition-delay: 2s;
}
#mobileMenu.show .menu_dl dd:nth-child(11){
    -webkit-transition-delay: 2.2s;
    -o-transition-delay: 2.2s;
    transition-delay: 2.2s;
}
.menu_dl dd:last-child:after{
    display: none;
}
.menu_a{
    display: flex;
    height: 40px;
    overflow: hidden;
    line-height: 40px;
    text-align: center;
}
.menu_a i{
    display: block;
    flex: 1;
    overflow: hidden;
    font-size: 14px;
    color:#333;
}
.menu_dl dd.hover .menu_a{background: #db0000;}
.menu_dl dd.hover .menu_a i{
    color:#fff;
    font-weight: bold;
}
.menu_a span{
    width: 16px;
    height: 16px;
    color:#fff;
    display: block;
    font-size: 0;
    line-height: 14px;
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    border-radius: 20px;
    text-align: center;
    margin: 12px 0px;
}

.menu_dl dd.hover .menu_a span{
    color:#ff7e00;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    transform: rotate(90deg);
}
.menu_dl dd.active .menu_a span{
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
}
.menuDiv{
    overflow: hidden;
    display: none;
}
.menu_ul{
    overflow: hidden;
    padding: 5px 20px;
}
.menu_ul li{
    height: 35px;
    line-height: 35px;
    overflow: hidden;
}
.menu_ul li a{
    display: block;
    overflow: hidden;
    font-size: 12px;
    color:#666;
    padding-left: 50px;
}
.menu_ul li a span{
    display: block;
    position: relative;
    padding-left: 10px;
}
.menu_ul li a span:after{
    display: block;
    content: "";
    overflow: hidden;
    width: 4px;
    height: 7px;
    overflow: hidden;
    background: url(../images/triangle.png) left center no-repeat;
    background-size: 4px;
    margin-top: -3px;
    position: absolute;
    left: 0px;
    top: 50%;
}
.menu_ul li.hover a span{
    color:#ff7e00;
}
.menu_ul li.hover a span:after{
    background: #ff7e00;
}
/**
 * 二级导航
 */

#mobileSubNav {
	height: 2.0rem;
	position: relative;
	z-index: 999999999999999;
	margin: 0 auto;
	background: #f2f2f2;
}
.mobileSubNav_title {
	height: 2.0rem;
	position: relative;
	z-index: 999999999999999999;
	margin-bottom: 0.5rem;
	width: calc(100% - 2rem);
}
.mobileSubNav_title .swiper-container{
	width: 100%;
	height: 100%;
	position: relative;
}
.mobileSubNav_title  .swiper-slide {
      text-align: center;
      font-size: 0.7rem;
      float: left;
      /* Center slide text vertically */
      display: -webkit-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      -webkit-justify-content: center;
      justify-content: center;
      -webkit-box-align: center;
      -ms-flex-align: center;
      -webkit-align-items: center;
      align-items: center;
}

.mobileSubNav_title .swiper-button-next{
	position: absolute;
	top: auto;
	bottom: 0;
	right: -2rem;
	width: 2rem;
	height: 2rem;
	background: none;
	text-align: center;
	line-height: 2rem;
	font-size: 1.2rem;
}
.mobileSubNav_title .swiper-button-disabled{
	opacity: 0.6 !important;
}
.mobileSubNav_title ul li.hover:after {
	content: '';
	border-bottom: 2px solid #ba130b;
	position: absolute;
	bottom: -1px;
	left: 0;
	width: 100%;
}

.mobileSubNav_title ul li.hover {
	height: calc(2rem - 1px);
	
}
.mobileSubNav_title ul li.hover a{
	color: #ba130b;
}

.mobileSubNav_title ul li a {
	display: block;
	line-height: 2.0rem;
	text-align: center;
}

/**
 * 固定的底部
 * @author 杨朝杰
 * @return
 */

.footerBar {
	font-size: 0.6rem;
	overflow: hidden;
	color: #;
	-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: 2.4rem;
	background: #f9f9f9;
}
.footerBar:after{
	border-bottom: 1px solid #dbdbdb;
	width: 100%;
	content: '';
	display: block;
	position: absolute;
	top: 0px;
	left: 0px;
	transform: scaleY(0.5);
	-webkit-transform: scaleY(0.5);
}
.footerBar div {
	height: 2.4rem;
	width: 20%;
	float: left;
	-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;
	text-align: center;
	overflow: hidden;
	position: relative;
}

.footerBar div a {
	display: block;
	height: 1.85rem;
	width: 100%;
	color: #666;
	padding: 4px 0 0 0;
}

.footerBar div a em {
	display: block;
	width: 100%;
	height: 1rem;
	padding-bottom: 0.25rem;
	clear: both;
	text-align: center;
	margin: 0 auto;
}
.footerBar div a em.footIco1{
	background: url(../images/footIco1.png) center center no-repeat;
	background-size: 1.05rem 0.95rem;
}
.footerBar div a em.footIco2{
	background: url(../images/footIco2.png) center center no-repeat;
	background-size: 1.05rem 0.95rem;
}
.footerBar div a em.footIco3{
	background: url(../images/footIco3.png) center center no-repeat;
	background-size: 0.95rem 0.95rem;
}
.footerBar div a em.footIco4{
	background: url(../images/footIco4.png) center center no-repeat;
	background-size: 1rem 0.95rem;
}
.footerBar div a em.footIco5{
	background: url(../images/footIco2.png) center center no-repeat;
	background-size: 1.05rem 0.95rem;
}
.footerBar div a em.footIco6{
	background: url(../images/footIco2.png) center center no-repeat;
	background-size: 1.05rem 0.95rem;
}
.footerBar div a span {
	display: block;
	clear: both;
	font-size: 0.6rem;
	text-align: center;
}
.footerBar div i {
	height: 0.75rem;
	font-size: 1.0rem;
	margin: 0.5rem 0 0 0;
	display: block;
}
.footerBar div:first-child a {
	color: #ba130b !important;
}
.footerBar div:first-child a {
	border: none;
}

/**
 * 固定的底部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;}


/**
 * 返回顶部
 * @author 杨朝杰
 * @return
 */

#scrollTop {
	width: 1.75rem;
	height: 1.75rem;
	line-height: 1.75rem;
	text-align: center;
	border-radius: 100%;
	background: rgba(255, 255, 255, 0.9);
	position: fixed;
	right: 0.5rem;
	bottom: 5.0rem;
	z-index: 9999;
	display: none;
	-webkit-box-shadow: 0px 0px 0.25rem rgba(153, 153, 153, 0.5);
	-moz-box-shadow: 0px 0px 0.25rem rgba(153, 153, 153, 0.5);
	box-shadow: 0px 0px 0.25rem rgba(153, 153, 153, 0.5);
}

#scrollTop em {
	font-size: 1.3rem;
	color: #666;
	padding: 0.15rem 0 0 0;
}


/**
 * page
 * @author 杨朝杰
 * @return
 */

.ajaxLoad {
	color: #666;
	height: 2.0rem;
	line-height: 2.0rem;
	text-align: center;
	clear: both;
	position: relative;
	background: #fff;
	margin: 0.25rem 0 0 0;
}

.ajaxLoad i {
	font-size: 0.8rem;
	margin: 0 0.25rem 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 1.5rem 0 1.5rem;
    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;
    outline: none;
}
.articelImgSlide .swiper-button-next{
    right: 0px;
    background: url(../images/aboutNext3.png) no-repeat center center;
    background-size: auto 30px;
    outline: none;
}
.articelImgSlide .swiper-pagination-bullet{background: #eee;opacity: 1;}
.articelImgSlide .swiper-pagination-bullet-active{background: #007aff;}
.pageUp{
	line-height: 1.5rem;
	font-size: 0.7rem;
	color: #858585;
	padding: 0.5rem;
}
.viewGoBack{
    overflow: hidden;
    padding:0 0.5rem 0.5rem 0.5rem;
}
.viewGoBack a{
    float: right;
    width: 4rem;
    height: 1.6rem;
    line-height: 1.6rem;
    font-size: 0.65rem;
    color: #fff;
    background: #ba130b;
    text-align: center;
}
/**
 * 分享
 * @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;}

/**++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++以上为模板框架部分（尽量少改）+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++/
/***首页banner图***/

.shopBanner {
	overflow: hidden;
}
.shopBanner .swiper-container {
	height: 100%;
	width: 100%;
	margin-left: auto;
	margin-right: auto;
    position: relative;
}
.shopBanner .swiper-slide a{
    display: block;
}
.shopBanner .swiper-slide img {
	width: 100%;
	height: 100%;
}
.shopBanner .banTit{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1.5rem;
    font-size: 0.6rem;
    color: #fff;
    line-height: 1.5rem;
    background: rgba(0,0,0,0.5);
    z-index: 1;
}
.shopBanner .banTit span{
    display: block;
    padding:0 0.5rem;
    width: 70%;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.shopBanner .swiper-pagination-fraction{
    color: #fff;
    text-align: right;
    right: 1rem;
    left: auto;
    bottom: 10px;
}
.shopBanner .swiper-pagination-current{
    color: #ba130b;
}
.shopBanner .swiper-button-next,
.shopBanner .swiper-button-prev{
    width: 0.5rem;
    height: 0.75rem;
    background: none;
    line-height: 0.75px;
    font-size: 0.6rem;
    bottom: 0;
    top:auto;
    color: #fff;
}
.shopBanner .swiper-button-next{
    right: 0.3rem;
}
.shopBanner .swiper-button-prev{
    right: 2.1rem;
    left: auto;
}
/**
 * textList1
 * 2-2 企业领导管理（人事任免）
 */
.tList1Hot{
    padding: 0.5rem;
}
.tList1Hot a{
    display: block;
    padding-bottom: 0.8rem;
}
.tList1Hot .listTit{
    color: #222;
    font-size: 0.75rem;
}
.tList1Hot .listInfr{
    line-height: 1.1rem;
    font-size: 0.7rem;
    padding-top: 0.3rem;
}
.tList1Hot .listInfr em{
    color: #db0000;
}
.textList1 {
	display: block;
	clear: both;
	overflow: hidden;
    padding: 0.5rem 0;
}

.textList1 dd {
	display: block;
	overflow: hidden;
}

.textList1 dd a {
	display: block;
	clear: both;
	height: 1.2rem;
    line-height: 1.2rem;
	font-size: 0.7rem;
	padding: 0.1rem 0 0.1rem 0.9rem;
	position: relative;
	background: url(../images/list1.png) no-repeat 8px center;
    background-size: 0.3rem;
}

.textList1 dd:hover a {
	background: #fff;
}

.textList1 dd a p {
	display: inline-block;
	overflow: hidden;
}

.textList1 dd a span {
	color: #999;
	font-size: 0.6rem;
	overflow: hidden;
	float: right;
	padding: 0 0.5rem 0 0;
}

.textList1 dd.trBg1 a {
	background: #fcfcfc url(../images/list2.jpg) no-repeat 0.5rem center;
}
/**
 * textList2
 * 5-1 人才战略（招聘信息）
 */
.textList2{
    padding: 0.5rem;
}
.textList2 dd{
    height: 2rem;
    background: #f7f7f7;
    margin-bottom: 0.5rem;
    padding: 0.5rem
}
.textList2 dd .tList2L{
    width: calc(100% - 3rem)
}
.textList2 dd .tList2L a{
    display: block;
}
.textList2 dd .tList2L p{
    font-size: 0.7rem;
    display: block;
    color: #333;
    padding-top: 0.1rem;
}
.textList2 dd .tList2L span{
    font-size: 0.6rem;
    display: block;
    padding-top: 0.1rem;
}
.textList2 dd .tList2R{
    width: 3rem;
    overflow: hidden;
    padding: 0.4rem 0;
}
.textList2 dd .tList2R a{
    display: block;
    height: 1.2rem;
    line-height: 1.2rem;
    background: #ba130b;
    color: #fff;
    text-align: center;
    font-size: 0.6rem;
}
/**
 * textList3
 * 8-1 通知公告
 */
.tList3Hot{
    padding: 0.5rem 0.5rem 0 0.5rem;
}
.tList3Hot a{
    display: block;
    overflow: hidden;
    padding-bottom: 0.5rem
}
.tList3Hot .listTime{
    width: 3.5rem;
    height: 3.5rem;
    text-align: center;
    color: #fff;
    background: #ba130b;
    margin-right: 0.5rem;
}
.tList3Hot .listTime span{
    display: block;
    font-size: 1.2rem;
    padding-top: 0.5rem;
}
.tList3Hot .listBox{
    overflow: hidden;
}
.tList3Hot .listTit{
    font-size: 0.7rem;
    color: #333;
}
.tList3Hot .listInfr{
    line-height: 1rem;
    height: 2rem;
    font-size: 0.65rem;
    color: #999;
    padding-top: 0.3rem;
}
/**
 * textList4
 * 9-3 友情链接
 */
.textList4{
    padding: 0.25rem;
}
.textList4 dd{
    padding: 0.25rem;
    width: 50%;
    float: left;
    display: inline;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.textList4 dd a{
    display: block;
    height: 2.5rem;
    line-height: 2.5rem;
    color: #333;
    text-align: center;
    background: #f7f7f7;
}
/**
 * textList5
 * 
 */
 .tList5Hot{
    padding: 0.5rem;
}
.tList5Hot a{
    display: block;
    padding-bottom: 0.8rem;
}
.tList5Hot .listTit{
    color: #222;
    font-size: 0.75rem;
}
.tList5Hot .listInfr{
    line-height: 1.1rem;
    font-size: 0.7rem;
    padding-top: 0.3rem;
}
.tList5Hot .listInfr em{
    color: #db0000;
}
.textList5 {
	display: block;
	clear: both;
	overflow: hidden;
    padding: 0.5rem 0;
}

.textList5 dd {
	display: block;
	overflow: hidden;
}

.textList5 dd a {
	display: block;
	clear: both;
	height: 1.2rem;
    line-height: 1.2rem;
	font-size: 0.7rem;
	padding: 0.1rem 0 0.1rem 0.9rem;
	position: relative;
	background: url(../images/list1.png) no-repeat 8px center;
    background-size: 0.3rem;
}

.textList5 dd:hover a {
	background: #fff;
}

.textList5 dd a p {
	display: inline-block;
	overflow: hidden;
}

.textList5 dd a span {
	color: #999;
	font-size: 0.6rem;
	overflow: hidden;
	float: right;
	padding: 0 0.5rem 0 0;
}

.textList5 dd.trBg1 a {
	background: #fcfcfc url(../images/list2.jpg) no-repeat 0.5rem center;
}


/**
 * contact
 * 9-1 联系我们
 */
.contact{
    padding: 0.5rem;
 }
.contact .map{
    height: 11rem;
    background: #f2f2f2;
}
.contactC{
    padding-top: 0.5rem;
    font-size: 0.65rem;
    color: #666;
    line-height: 1.5rem;
}
.contactC em{
    color: #333;
    font-size: 0.75rem;
    display: block;
}
/**
 * imgList1
 * 2-1 基本信息（领导班子）
 */

.imgList1 {
	display: block;
	clear: both;
	overflow: hidden;
	padding: 0.5rem 0.25rem;
}

.imgList1 dd {
	display: inline;
	float: left;
	width: 50%;
	padding: 0.25rem;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	overflow: hidden;
}
.imgList1 dd a {
	display: block;
	width: 100%;
	background: #fff;
	overflow: hidden;
}

.imgList1 dd .pic_box {
	position: relative;
	background: #f2f2f2 url(../images/loading.gif) no-repeat center center;
}

.imgList1 dd .pic_box:after {
	content: '';
	display: block;
	width: 100%;
	padding-top: 112.5%;
}

.imgList1 dd .pic_box img {
	max-width: 100%;
	max-height: 100%;
	position: absolute;
	left: 50%;
	top: 50%;
    transform: translate(-50%,-50%);
	display: block;
}
.imgList1 dd .listTit{
    height: 1rem;
    line-height: 1rem;
    background: #a2a2a2;
    color: #fff;
    font-size: 0.65rem;
    text-align: center;
}
.imgList1 dd a span {
	display: block;
	clear: both;
	width: 100%;
	text-align: center;
	color: #555;
	font-size: 0.6rem;
	line-height: 1.0rem;
	height: 1.0rem;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	padding: 0.2rem 0 0.2rem 0;
}
/**
 * imgList2
 * 3-2 媒体报道
 */
.subTit{
    padding:  0.5rem 0.5rem 0.25rem 0.5rem ;
    font-size: 0.85rem;
    color: #333;
}
.imgList2 {
	display: block;
	clear: both;
	overflow: hidden;
	padding: 0.5rem 0;
}

.imgList2 dd {
	width: 100%;
	padding: 0.25rem;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	overflow: hidden;
}
.imgList2 dd a {
	display: block;
	width: 100%;
	background: #fff;
	overflow: hidden;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	padding: 0.25rem;
	border-radius: 2px;
}

.imgList2 dd .pic_box {
	position: relative;
	background: #f2f2f2 url(../images/loading.gif) no-repeat center center;
}

.imgList2 dd .pic_box:after {
	content: '';
	display: block;
	width: 100%;
	padding-top: 56.16666%;
}
.imgList2 dd .pic_box .listMask{
        position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.3) url(../images/play2.png) center center no-repeat;
    background-size: 2rem;
}
.imgList2 dd .pic_box img {
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	display: block;
}
.imgList2 dd a span {
	display: block;
	clear: both;
	width: 100%;
	text-align: center;
	color: #555;
	font-size: 0.7rem;
	line-height: 1.8rem;
	height: 1.8rem;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
    background: #f7f7f7;
}
/**
 * imgList3
 * 6-1 企业文化（电子期刊）
 */
.imgList3 {
	display: block;
	clear: both;
	overflow: hidden;
	padding: 0.5rem 0.25rem;
}
.imgList3 dd {
	display: inline;
	float: left;
	width: 50%;
	padding: 0.25rem;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	overflow: hidden;
	position: relative;
	margin: 0 0 0.4rem 0;
}

.imgList3 dd a {
	display: block;
	width: 100%;
	background: #fff;
	overflow: hidden;
    padding-right: 0.5rem;
}

.imgList3 dd .pic_box {
	position: relative;
	background: #f2f2f2 url(../images/loading.gif) no-repeat center center;
}

.imgList3 dd .pic_box:after {
	content: '';
	display: block;
	width: 100%;
	padding-top: 108.759%;
}

.imgList3 dd .pic_box img {
	max-width: 100%;
	max-height: 100%;
	position: absolute;
	left: 50%;
	top: 50%;
    transform: translate(-50%,-50%);
	display: block;
    z-index: 9;
}
.imgList3 dd .pic_box i{
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0.3rem;
    left: 0.3rem;
    background: #efefef;
}
.imgList3 dd a span {
	display: block;
	clear: both;
	width: 100%;
	text-align: center;
	color: #555;
	font-size: 0.6rem;
	line-height: 1.25rem;
	height: 1.25rem;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	padding: 0.5rem 0 0 0;
}
/**
 * imgList4
 * 7-1 集团产业
 */
.imgList4 {
    display: block;
    clear: both;
    overflow: hidden;
    padding: 0.5rem 0.25rem;
}
.imgList4 dd {
    display: inline;
    float: left;
    width: 50%;
    padding: 0.25rem;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    overflow: hidden;
    position: relative;
    margin: 0 0 0.4rem 0;
}

.imgList4 dd a {
    display: block;
    width: 100%;
    background: #fff;
    overflow: hidden;
    padding-right: 0.5rem;
}

.imgList4 dd .pic_box {
    position: relative;
    background: #f2f2f2 url(../images/loading.gif) no-repeat center center;
}

.imgList4 dd .pic_box:after {
    content: '';
    display: block;
    width: 100%;
    padding-top: 64.4728%;
}

.imgList4 dd .pic_box img {
    max-width: 100%;
    max-height: 100%;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    display: block;
    z-index: 9;
}
.imgList4 dd a span {
    display: block;
    clear: both;
    width: 100%;
    text-align: center;
    color: #555;
    font-size: 0.6rem;
    line-height: 1.25rem;
    height: 1rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    padding: 0.25rem 0 0 0;
}
/**
 * textImg1
 * 3-1 集团新闻（图文）1
 */

.textImg1 {
	clear: both;
	overflow: hidden;
}

.textImg1 dd {
	width: 100%;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	padding: 0.5rem;
	background: rgba(255, 255, 255, 1);
	position: relative;
}

.textImg1 dd:after {
	content: " ";
	width: 200%;
	height: 0.05rem;
	position: absolute;
	bottom: 0;
	left: 0;
	border-bottom: 0.05rem solid #e6e6e6;
	box-sizing: border-box;
	-webkit-transform: scale(.5);
	transform: scale(.5);
	-webkit-transform-origin: 0 0;
	transform-origin: 0 0;
}

.textImg1 dd:hover {
	background: #e1e1e1;
}

.textImg1 dd a {
	display: block;
	height: 4.0rem;
}

.textImg1 dd .pic_box {
	width: 6.0rem;
	height: 100%;
	position: relative;
	background: #f2f2f2 url(../images/loading.gif) no-repeat center center;
	float: left;
}

.textImg1 dd .pic_box img {
	max-width: 100%;
	max-height: 100%;
	position: absolute;
	left: 50%;
	top: 50%;
    transform: translate(-50%,-50%);
	display: block !important;
}

.textImg1 .divText {
	overflow: hidden;
	padding: 0 0 0 0.5rem;
}

.textImg1 .divText p {
	height: 1.3rem;
	line-height: 1.5rem;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	font-size: 0.75rem;
	position: relative;
	margin: -0.25rem 0 0 0;
}
.textImg1 .listTime{
    font-size: 0.6rem;
    color: #999;
    height: 0.9rem;
}
.textImg1 .divText span {
	display: block;
	line-height: 0.9rem;
	height: 1.7rem;
	overflow: hidden;
	padding: 0.25rem 0 0 0;
	color: #888;
	font-size: 0.65rem;
}
/**
 * textImg2
 * 3-1 集团新闻（图文）2
 */

.textImg2 {
	clear: both;
	overflow: hidden;
    padding: 0.25rem;
}
.textImg2 dd {
	width: 50%;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	padding: 0.25rem;
	background: #fff;
	position: relative;
    float: left;
}
.textImg2 dd .xLineD{
    padding-bottom: 0.5rem;
}
.textImg2 dd h3 {
	display: block;
	clear: both;
	font-size: 0.7rem;
    line-height: 1rem;
    height: 1.95rem;
	overflow: hidden;
    font-weight: normal;
}
.textImg2 dd p{
    display: block;
    padding-top: 0.3rem;
    background: #f2f2f2 url(../images/loading.gif) no-repeat center center;
}
.textImg2 dd p a{
    display: block;
    padding-top: 63.1578%;
    position: relative;
    overflow: hidden;
}
.textImg2 dd p img {
	max-width: 100%;
    max-height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}

.textImg2 .textImg_time {
	line-height: 1rem;
	color: #888;
    font-size: 0.65rem;
}
.textImg2 .textImg_time i{
    display: inline-block;
    width: 2rem;
    height: 0.8rem;
    line-height: 0.8rem;
    color: #fff;
    font-size: 0.6rem;
    text-align: center;
    background: #ba130b;
    margin-right: 0.1rem;
}
.textImg2 .textImg_info {
	line-height: 1rem;
    height: 2rem;
	padding: 0.25rem 0 0 0;
	color: #888;
	font-size: 0.6rem;
}

/**
 * message
 * 9-2 投诉建议
 */
.msgTit{
    font-size: 0.7rem;
    color: #222;
    padding: 0.5rem 0.5rem 0 0.5rem ;
}
.message_dl {
	clear: both;
	padding: 0.5rem 0;
}

.message_dl dd {
	height: 1.75rem;
	padding: 0.25rem 0;
	clear: both;
}

.message_dl dd span {
	width: 3rem;
	display: block;
	line-height: 1.75rem;
	float: left;
    font-size: 0.6rem;
	padding: 0 0.25rem 0 0.52rem;
}
.message_dl dd i{
    padding:0 0.45rem;
}
.message_dl dd em{
    color: #f40012;
    padding-right: 0.2rem;
}
.messageInput {
	width: 70%;
	display: block;
	float: left;
	line-height: 1.75rem;
	height: 1.75rem;
	background: #fff;
	outline: medium;
	padding: 0 0 0 0.25rem;
	outline: medium;
	border: 1px solid #ececec;
}
.messageInput1{
    width: 35%;
    display: block;
    float: left;
    line-height: 1.75rem;
    height: 1.75rem;
    background: #fff;
    outline: medium;
    padding: 0 0 0 0.25rem;
    outline: medium;
    border: 0.05rem solid #ececec;
}
.message_dl dd textarea {
	width: 70%;
	height: 7.5rem;
	border: 0.05rem solid #ececec;
	background: #fff;
	outline: medium;
	padding: 0 0 0 0.25rem;
}
.message_dl dd .listCode{
    padding-left: 0.3rem;
}
.message_dl dd .listCode img{
    height: 1.75rem;
    width: 4rem;
}
.message_btn {
	clear: both;
    padding:0.5rem;
}
.message_btn a{
    display: block;
    background: #ba130b;
    font-size: 0.65rem;
    color: #fff;
    text-align: center;
    line-height: 1.7rem;
}
/**
 * 首页
 */
.imgBox{
    position: relative;
    overflow: hidden;
}
.imgBox:after{
    content: '';
    display: block;
}
.imgBox img{
    position: absolute;
    top:0;
    left: 0;
    width: 100%;
    height: 100%;
}
.boxMore{
    padding: 0.5rem;
}
.boxMore a{
    display: block;
    height: 1.5rem;
    line-height: 1.5rem;
    font-size: 0.65rem;
    color: #666;
    background: #F1F1F1;
    text-align: center;
}
/*column:1*/
.box1{
    padding: 0.5rem;
}
.boxTitle1{
    padding-bottom: 0.4rem;
    background-size: 0.2rem;
    border-bottom: 2px solid #ba130b;
}
.boxTitle1 span{
    color: #ba130b;
    padding-left: 0.5rem;
    background: url(../images/titIco1.png) 2px center no-repeat;
    font-size: 0.75rem;
}
.box1Hot a{
    display: block;
    padding: 0.5rem 0;
    overflow: hidden;
}
.box1Hot .listImg{
    width: 7rem;
}
.box1Hot .imgBox{
    padding-top: 62.0689%;
}
.box1Hot .listBox{
    overflow: hidden;
    padding:0 0 0 0.5rem;
}
.box1Hot .listTit{
    font-size: 0.75rem;
    color: #333;
    height: 1.1rem;
}
.box1Hot .listInfr{
    font-size: 0.65rem;
    color: #666;
    line-height: 1rem;
    height: 2rem;
    overflow: hidden;
    padding-top: 0.2rem;
    position: relative;
}
.listInfr em{
    position: absolute;
    bottom: 0;
    right: 0;
    width: 2.3rem;
    height: 1rem;
    line-height: 1rem;
    color: #db0000;
    text-align: right;
    background: #fff;
}
.box1Hot .listTime{
    font-size: 0.65rem;
    color: #999;
    padding-top: 0.1rem;
}
.box4listC dd{
    line-height: 1.5rem;
    height: 1.5rem;
    font-size: 0.65rem;
    padding-left: 0.5rem;
    background: url(../images/list1.png) left center no-repeat;
    background-size: 0.3rem;
}
.box4listC dd a{
    float: left;
    color: #333;
    width: 75%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.box4listC dd span{
    float: right;
    color: #989898;
}
.sjd a{
    display: block;
}
.sjd a img{
    width: 100%;
}
/*column:2*/
.box3{
    margin-bottom: 0.5rem;
}
.boxTitle{
    text-align: center;
    height: 2.1rem;
    line-height: 1.8rem;
    overflow: hidden;
    position: relative;
    padding: 0.5rem 0.5rem 0 0.5rem;
}
.boxTitle ul{
    overflow: hidden;
    position: relative;
}
.boxTitle ul:before{
    border-bottom: 1px solid #b6b6b6;
    width: 100%;
    content: '';
    display: block;
    position: absolute;
    bottom: 0px;
    left: 0px;
    transform: scaleY(0.5);
}
.boxTitle ul li{
    margin-right: 0.8rem;
    float: left;
    position: relative;
    z-index: 9;
}
.boxTitle ul li span{
    color: #333;
    display: block;
    font-size: 0.75rem;
    padding: 0 0.5rem;
}
.boxTitle ul li.hover span{
    color: #ba130b;
    background: url(../images/ptIco1.png) center bottom no-repeat;
    background-size: 100%;
}
.boxTitle2 h4{
    font-size: 0.8rem;
    color: #1369c0;
    height: 2rem;
    line-height: 2rem;
    display: inline-block;
    padding:0 0.5rem;
    position: relative;
}
.box3C{
    position: relative;
}
.box3Cbox{
    position: absolute;
    top: 0;
    left: auto;
    width: 100%;
    opacity: 0;
}
.box3Cbox.hover{
    opacity: 1;
    z-index: 9;
}
.box2List1{
    padding: 0 0.5rem;
}
.box2List1 a{
    display: block;
    padding: 0.5rem 0;
    overflow: hidden;
}
.box2List1 .listImg{
    width: 7rem;
}
.box2List1 .imgBox{
    padding-top: 62.0689%;
}
.box2List1 .listBox{
    overflow: hidden;
    padding:0 0 0 0.5rem;
}
.box2List1 .listTit{
    font-size: 0.75rem;
    color: #333;
    height: 1.1rem;
}
.box2List1 .listInfr{
    font-size: 0.65rem;
    color: #666;
    line-height: 1rem;
    height: 3rem;
    overflow: hidden;
    padding-top: 0.2rem;
    position: relative;
}
.box2List1 em{
    position: absolute;
    bottom: 0;
    right: 0;
    width: 2.3rem;
    height: 1rem;
    line-height: 1rem;
    color: #db0000;
    text-align: right;
    background: #fff;
}

.tList5Hot{
    padding:0 0.5rem;
}