@charset "UTF-8";
/*zwp 2018-9-4*/
/*公共部分开始*/
body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, form, fieldset, input, textarea, p, blockquote, th, td, b {
	padding: 0;
	margin: 0;
	font-weight: normal;
}
html {
	height: 100%;
	overflow: -moz-scrollbars-vertical;
	overflow: hidden;
	overflow-y:auto;
} /*始终让 Firefox 显示滚动条*/
* {
	word-wrap: break-word;
	margin: 0;
	padding: 0;
}/*文字强制换行word-break:keep-all;(Ff)*/
table {
	border-collapse: collapse;
}/*细线表格*/
fieldset, img {
	border: none;
}/*清除描边*/
ul, li {
	list-style-type: none;
}/*无列表项目标记*/
a {
	text-decoration: none;
	color: #828385
}/* 链接无下划线,有为underline;链接去框 */
a:link {
	color: #828385;
}/* 未访问的链接 */
a:visited {
	color: #828385;
}/* 已访问的链接 */
a:hover {
	color: #4e9cd8;
}/* 鼠标在链接上 */
a:active {
	color: #828385;
blr:expression(this.onFocus=this.blur());
}/* 点击激活链接 */
body {
	font-family:"Microsoft YaHei";
	font-size: 12px;
	color: #828385;
	min-width:1345px;
	background:url(../images/bodyBg.jpg) repeat;
	/*
    background-image: url(../images/bodyBg.jpg);
    background-repeat: no-repeat;
    background-attachment: fixed;
	*/
}
textarea,select, input {
	vertical-align: middle;
	outline: none;
	font-family: "Microsoft YaHei"
}
input[type=button], input[type=reset], input[type=submit], input[type=radio], input[type=checkbox] {
	cursor: pointer;
	outline: none;
}
/*浏览器滚动条*/
::-webkit-scrollbar {width:5px;background:#f0f0f0;}
::-webkit-scrollbar-button {}
::-webkit-scrollbar-track {}
::-webkit-scrollbar-track-piece {}
::-webkit-scrollbar-thumb {width:5px;background:#767676;}
::-webkit-scrollbar-corner {background:#f0f0f0;}
::-webkit-resizer {}
::-webkit-scrollbar:horizontal{height:8px;}
/************/
::-webkit-input-placeholder{}    /* 使用webkit内核的浏览器 */
:-moz-placeholder{}                  /* Firefox版本4-18 */
::-moz-placeholder{}                  /* Firefox版本19+ */
:-ms-input-placeholder{}           /* IE浏览器 */

.clear {
	clear: both;
}
.h10 {
	clear: both;
	height: 10px;
}
.h15 {
	clear: both;
	height: 16px;
}
.h20 {
	clear: both;
	height: 20px;
}
.h25 {
	clear: both;
	height: 25px;
}
.h30 {
	clear: both;
	height: 30px;
}
.h35 {
	clear: both;
	height: 35px;
}
.h40 {
	clear: both;
	height: 40px;
}
.h45 {
	clear: both;
	height: 45px;
}
.h50 {
	clear: both;
	height: 50px;
}
.h55 {
	clear: both;
	height: 55px;
}
.h60 {
	clear: both;
	height: 60px;
}
.h65 {
	clear: both;
	height: 65px;
}
.h70{
	clear: both;
	height: 70px;
}
.h80 {
	clear: both;
	height: 80px;
}

.fl {
	float: left;
	display: inline;
}
.fr {
	float: right;
	display: inline;
}
.table{
    width: 100%;
    height: 100%;
    overflow: hidden;
    display: table;
    position: relative;
    z-index: 3;
}
.tableCell{
    overflow: hidden;
    display: table-cell;
    vertical-align: middle;
}
.mohu{
    transition: 0.4s ease;
    position: relative;
}
.mohu.hover{
	filter: blur(5px);
    -webkit-filter: blur(5px);
}
.jqthumb{
	position: absolute;
	top: 0;
	left: 0;
}
/**
 * css3动画（从上往下、从下往上、从左往右、从右往左、淡入、淡出）
 * @author 杨朝杰
 * @return
 */
@-webkit-keyframes gupIn {
    from {
        opacity:0;
        -webkit-transform:translate3d(0, -30px, 0);
    }
}
@-moz-keyframes gupIn {
    from {
        opacity:0;
        -moz-transform:translate3d(0, -30px, 0);
    }
}
@keyframes gupIn {
    from {
        opacity:0;
        transform:translate3d(0, -30px, 0);
    }
}
@-webkit-keyframes gdownIn {
    from {
        opacity:0;
        -webkit-transform:translate3d(0, 30px, 0);
    }
}
@-moz-keyframes gdownIn {
    from {
        opacity:0;
        -moz-transform:translate3d(0, 30px, 0);
    }
}
@keyframes gdownIn {
    from {
        opacity:0;
        transform:translate3d(0, 30px, 0);
    }
}
@-webkit-keyframes gleftIn {
    0% {
        opacity:0;
        -webkit-transform:translate3d(-30px, 0, 0);
    }
    100% {
        opacity:1;
        -webkit-transform:translate3d(0, 0, 0);
    }
}
@-moz-keyframes gleftIn {
    0% {
        opacity:0;
        -moz-transform:translate3d(-30px, 0, 0);
    }
    100% {
        opacity:1;
        -moz-transform:translate3d(0, 0, 0);
    }
}
@keyframes gleftIn {
    0% {
        opacity:0;
        transform:translate3d(-30px, 0, 0);
    }
    100% {
        opacity:1;
        transform:translate3d(0, 0, 0);
    }
}
@-webkit-keyframes grightIn {
    0% {
        opacity:0;
        -webkit-transform:translate3d(80px, 0, 0);
    }
    100% {
        opacity:1;
        -webkit-transform:translate3d(0, 0, 0);
    }
}
@-moz-keyframes grightIn {
    0% {
        opacity:0;
        -moz-transform:translate3d(80px, 0, 0);
    }
    100% {
        opacity:1;
        -moz-transform:translate3d(0, 0, 0);
    }
}
@keyframes grightIn {
    0% {
        opacity:0;
        transform:translate3d(80px, 0, 0);
    }
    100% {
        opacity:1;
        transform:translate3d(0, 0, 0);
    }
}
@-webkit-keyframes gfadeIn {
    0% {opacity:0;}
    100% {opacity:1;}
}
@-moz-keyframes gfadeIn {
    0% {opacity:0;}
    100% { opacity:1;}
}
@keyframes gfadeIn {
    0% {opacity:0;}
    100% {opacity:1;}}
@-webkit-keyframes gfadeOut {
    0% {opacity:1;}
    100% { opacity:0;}
}
@-moz-keyframes gfadeOut {
    0% {opacity:1;}
    100% {opacity:0;}
}
@keyframes gfadeOut {
    0% {opacity:1;}
    100% {opacity:0;}
}
.op0 {
    opacity: 0;
}
.gupIn {
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    transition: 0.3s;
    -webkit-animation: gupIn 1s 0.1s both;
    -moz-animation: gupIn 1s 0.1s both;
    animation: gupIn 1s 0.1s both;
    opacity: 1
}
.gdownIn {
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    transition: 0.3s;
    -webkit-animation: gdownIn 1s 0.1s both;
    -moz-animation: gdownIn 1s 0.1s both;
    animation: gdownIn 1s 0.1s both;
    opacity: 1
}
.gleftIn {
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    transition: 0.3s;
    -webkit-animation: gleftIn 1s 0.1s both;
    -moz-animation: gleftIn 1s 0.1s both;
    animation: gleftIn 1s 0.1s both;
}
.grightIn {
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    transition: 0.3s;
    -webkit-animation: grightIn 1s 0.1s both;
    -moz-animation: grightIn 1s 0.1s both;
    animation: grightIn 1s 0.1s both;
}
.gfadeIn {
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    transition: 0.3s;
    -webkit-animation: gfadeIn 1s 0.1s both;
    -moz-animation: gfadeIn 1s 0.1s both;
    animation: gfadeIn 1s 0.1s both;
}
.gfadeOut {
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    transition: 0.3s;
    -webkit-animation: gfadeOut 1s 0.1s both;
    -moz-animation: gfadeOut 1s 0.1s both;
    animation: gfadeOut 1s 0.1s both;
}
/*公共部分结束*/

/*^
 * 框架
 * @return
 */	
.wrap{
	clear:both;
	width:1200px;
	margin:0 auto;
	}
.minH{
	min-height:350px;
	height:auto !important;
	height:350px;
	}
dl dd .pic img{
	transform: scale(1);
	transition-duration: 0.3s;
	transition-property: all;
	transition-timing-function: linear;
}
dl dd:hover .pic img{transform: scale(1.05);}
/* 遮罩层 */
.fade {
    position: fixed;
    z-index: 999999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.fadeTop, .fadeBottom {
    position: absolute;
    width: 100%;
    height: 50%;
    background: url(../images/bodyBg.jpg);
    left: 0;
}
.fadeLogo {
    text-align: center;
    width: 100%;
}
.fadeC {
    position: absolute;
    z-index: 9;
    top: 50%;
    left: 0;
    width: 100%;
    margin-top: -57px;
    text-align: center;
}
.fadeTop {
    top: 0;
}
.fadeBottom {
    bottom: 0;
}
.fadeLoading {
    display:inline-block;
    font-size:0px;
    padding:0px;
}
.fadeLoading span {
    vertical-align:middle;
    border-radius:100%;
    display:inline-block;
    width:10px;
    height:10px;
    margin:3px 2px;
    -webkit-animation:loader1 0.8s linear infinite alternate;
    animation:loader1 0.8s linear infinite alternate;
}
.fadeLoading span:nth-child(1) {
    -webkit-animation-delay:-1s;
    animation-delay:-1s;
    background:rgba(209, 13, 13, 0.6);
}
.fadeLoading span:nth-child(2) {
    -webkit-animation-delay:-0.8s;
    animation-delay:-0.8s;
    background:rgba(209, 13, 13, 0.8);
}
.fadeLoading span:nth-child(3) {
    -webkit-animation-delay:-0.26666s;
    animation-delay:-0.26666s;
    background:rgba(209, 13, 13, 1);
}
.fadeLoading span:nth-child(4) {
    -webkit-animation-delay:-0.8s;
    animation-delay:-0.8s;
    background:rgba(209, 13, 13, 0.8);
}
.fadeLoading span:nth-child(5) {
    -webkit-animation-delay:-1s;
    animation-delay:-1s;
    background:rgba(209, 13, 13, 0.4);
}
@keyframes loader1 {
    from {
        transform: scale(0, 0);
    }
    to {
        transform: scale(1, 1);
    }
}
@-webkit-keyframes loader1 {
    from {
        -webkit-transform: scale(0, 0);
    }
    to {
        -webkit-transform: scale(1, 1);
    }
}
/*
///////////////top
*/	
.headBox{
	clear: both;
	width: 100%;
	min-width:1345px;
	height:80px;
	background-color:#fff;
	background-image:url(../images/topBg.png);
	background-repeat:repeat-x;
	background-position:left top;
	box-shadow:0 1px 5px rgba(0,0,0,0.2);
	position:fixed;
	top: 0;
	left: 0;
	z-index: 999;
}
.topH{clear:both;height:80px; position:relative; margin-top:-3px;}
.logo{
	padding-left: 2.0833%;
	overflow: hidden;
	margin-top:15px;
}
.logo img{
	display: block;
	height:52px;
}
/*导航*/
.menuBg{
	width: 100%;
	height: 60px;
	background-color:rgba(255,255,255,0.8);
	position: absolute;
	top:80px;
	left: 0;
	z-index: -1;
	display: none;
}
.menuDl dd{
	float: left;
	position: relative;
	padding:0 20px;
}
@media only screen and (max-width:1600px){
	.menuDl dd{padding: 0 10px;}	
}
@media only screen and (max-width:1450px){
	.menuDl dd{padding: 0 5px;}	
}
.menuDl dd .a1{
	display: block;
	height: 80px;
	line-height: 80px;
	font-size: 16px;
	color: #ab925d;
	padding: 0 8px;
}
.menuDl dd.hover .a1{color: #d10d0d;font-weight:bold}
.menuDl dd .div_a{
	width:1920px;
	overflow: hidden;
	position: absolute;
	top:80px;
	left: 0;
	display: none;
	padding:0 8px;
}
.menuDl dd .div_a a{
	float: left;
	height: 60px;
	text-align: center;
	line-height: 60px;
	color: #666;
	font-size: 14px;
	padding:0 15px;
	animation:showAnt 0.3s 1;
	-webkit-animation:showAnt 0.3s 1;
	animation-timing-function:ease;
	-webkit-animation-timing-function:ease;
	animation-fill-mode: forwards;
	-webkit-animation-fill-mode: forwards;
	transform:translateY(-100%);
	-webkit-transform:translateY(-100%);
	transform-origin:center center;
}
/*动画*/
@keyframes showAnt{
	from {transform:translateY(-100%);-webkit-transform:translateY(-100%);}
	to {transform:translateY(0);-webkit-transform:translateY(0);}
}
/* Safari and Chrome */
@-webkit-keyframes showAnt{
	from {transform:translateY(-100%);-webkit-transform:translateY(-100%);}
	to {transform:translateY(0);-webkit-transform:translateY(0);}
}
.menuDl dd .div_a a:hover{color: #d10d0d}
.menuDl dd .div_a a.hover{color: #d10d0d}
/**/
.sctBox{
	width:72px;
	height:80px;
	overflow:hidden;
	text-align: center;
	position: relative;
	line-height: 80px;
	color: #ab925d;
	font-size: 14px;
}
.sctBox a{color: #ab925d;}
.sctBox a:hover{color: #d10d0d;}
.sctBox a.hover{color: #d10d0d;}
.searchBt{
	height:80px;
	position: relative;
	cursor: pointer;
}
.searchBt a{
	float: right;
	width:80px;
	height:80px;
	background-color:#d10d0d;
	background-image: url(../images/icon4.png);
	background-position: center center;
	background-repeat: no-repeat;
	z-index: 9;
	transition-duration:0.5s;
}
.searchBt a.show{display: block}
.searchC{
	width:0px;
	height:80px;
	background-color:#fff;
	overflow: hidden;
	z-index: 1;
	float: left;
	background-image:url(../images/topBg.png);
	background-repeat:repeat-x;
	background-position:left top;
	transition-duration:0.5s;
}
.searchC.show{width:200px;}
.searchC input{
	width:150px;
	height: 80px;
	overflow: hidden;
	line-height: 40px;
	padding-left: 20px;
	border: none;
	background: none;
	color: #ab925d;
	font-size: 16px;
}
.searchC input::-webkit-input-placeholder{
	color: #ab925d;
}
/*
//////////////banner
*/
.bannerBox{
	position: relative;
	overflow:hidden;
}
.bannerBox .bd .bannerDeta{
	clear: both;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
}
.bannerBox .hd{
	width: 100%;
	height:32px;
	position: absolute;
	left: 0;
	bottom: 0;
	z-index: 11;
	text-align: center;
}
.bannerBox .hd ul{display: inline-block}
.bannerBox .hd ul li{
	float: left;
	width:12px;
	height: 12px;
	border-radius:100%;
	overflow: hidden;
	line-height: 9999px;
	cursor: pointer;
	margin: 0 5px;
	background-color:#fff;
	position: relative;
}
.bannerBox .hd ul li.on{background-color:#d10d0d}
#video{
	width: 100%;
	height: 100%;
	object-fit: cover;
    object-position: center center;
	
}
.banner_ul li{
    width: 100%;
    left: 0px;
    top: 0px;
    z-index: 1;
    position: absolute;
    display: none;
}
.banner_ul li i{
	display: block;
	width: 100%;
	height:250px;
	position: absolute;
	top:50%;
	left: 0;
	z-index: 11;
	background-repeat: no-repeat;
	background-position: center center;
	margin-top:-125px;
	display:none;
}
.banner_ul li i.fadeInDown{animation-duration:3s !important}
.banner_ul li:nth-child(1) i{
	background-image: url(../images/bannerT1.png)
}
.banner_ul li:nth-child(2) i{
	background-image: url(../images/bannerT2.png)
}

.banner_ul li:nth-child(1){
    z-index: 4;
}
.banner_ul li:nth-child(2){
    z-index: 3;
}
.banner_ul li:nth-child(3){
    z-index: 2;
}
.banner_ul li:nth-child(4){
    z-index: 1;
}
.banner_ul li.show{
    display: block !important;
}
.banner_ul li.left{
    left: -100px;
    transition: all 0.3s linear;
}
.bannerDeta{
    display: block;
    width: 100%;
    height: 100%;
    position: absolute !important;
    left: 0px;
    top: 0px;
    z-index: 1;
}
.bnrTxt{
	position: absolute;
	width: 186px;
	height: 400px;
	top: 50%;
	left: 50%;
	margin:-200px 0 0 -93px;
	z-index: 9;
}
.bnrTxtL{
	background: url(../images/bnrTextL.png) center center no-repeat;
	width: 144px;
	height: 334px;
	position: absolute;
	top: 0;
	left: 0;
}

.bnrTxtR{
	background:url(../images/bnrTextR.png) center center no-repeat;
	width: 47px;
	height: 187px;
	position: absolute;
	right: 0;
	bottom: 0;
}

.banner_ul .cover {
    width: 100%;
    height: 100%;
    background: url(../images/video_cover.png);
    color: #fff;
    text-align: center;
    z-index: 3;
    position: absolute;
    top: 0;
    left: 0;
}
.bnrTxt2 .bnrTxtL{background-image: url(../images/bnrTextL1.png);}
.bnrTxt2 .bnrTxtR{background-image: url(../images/bnrTextR1.png);}
.bnrTxt3 .bnrTxtL{background-image: url(../images/bnrTextL2.png);}
.bnrTxt3 .bnrTxtR{background-image: url(../images/bnrTextR2.png);}
/*
//////////////footer
*/
.footer{
	clear: both;
	overflow: hidden;
	padding-top: 40px;
	background-color:#1e1e1e;
}
.footBox1{
	clear: both;
	overflow:hidden;
	padding:25px 8.33%;
	padding-bottom:15px;
}
.footUl li{
	float: left;
	overflow: hidden;
	width: 165px;
	margin-right: 5px;
}
@media only screen and (max-width:1700px){
	.footUl li{width:130px}	
}
@media only screen and (max-width:1480px){
	.footUl li{width:110px}	
}
.footDl dt{
	clear: both;
	height: 30px;
	overflow: hidden;
	margin-bottom: 8px;
}
.footDl dt a{
	line-height: 30px;
	font-size: 14px;
	color: #dab866;
	font-weight:bold;
}
.footDl dt a:hover{color: #ffd777}
.footDl dd{
	clear: both;
	height: 30px;
	overflow: hidden;
}
.footDl dd a{
	line-height: 30px;
	font-size: 14px;
	color: #8f7a49;
}
.footDl dd a:hover{color: #ffd777}
.ewbBox{
	width:101px;
	overflow: hidden;
	margin-top:15px;
}
.ewbBox+.ewbBox{
	margin-left: 35px;
}
@media only screen and (max-width:1700px){
	.ewbBox+.ewbBox{
		margin-left: 20px;
	}
}
.ewbBox img{
	display: block;
	width: 101px;
	height: 101px;
}
.ewbBox span{
	display: block;
	height:45px;
	line-height: 45px;
	text-align: center;
	font-size: 14px;
	color: #8f7a49;
}
.footTel{padding-left:35px}
@media only screen and (max-width:1700px){
	.footTel{padding-left:20px}	
}
.footTelDl dd{
	clear: both;
	height: 30px;
	line-height: 30px;
	font-size: 14px;
	color: #8f7a49;
	padding-left: 35px;
	background-repeat: no-repeat;
	background-position: left center;
}
.footTelDl dd.dd1{background-image:url(../images/icon9.png);background-position:2px center}
.footTelDl dd.dd2{background-image:url(../images/icon10.png)}
.footTelDl dd.dd3{background-image:url(../images/icon11.png)}
.footTelDl dd.dd4{background-image:url(../images/icon12.png)}
.footTelDl dd span{
	display: inline-block;
	color: #dab866;
	font-size: 24px;
	font-family: "Arial";
	transform: scaleY(1.05)
}
.footTel_a a{
	float: left;
	width: 33px;
	height: 33px;
	overflow:hidden;
	margin-right: 13px;
	background-repeat:no-repeat;
	background-image: url(../images/icon13.png);
	transition-duration: 0.3s;
}
.footTel_a a.a1{background-position:0 top}
.footTel_a a.a2{background-position:-46px top}
.footTel_a a.a3{background-position:-92px top}
.footTel_a a.a4{background-position:-138px top}
.footTel_a a.a1:hover{background-position:0 bottom}
.footTel_a a.a2:hover{background-position:-46px bottom}
.footTel_a a.a3:hover{background-position:-92px bottom}
.footTel_a a.a4:hover{background-position:-138px bottom}
.footBox2{
	clear: both;
	padding: 0 8.33%;
	overflow: hidden;
	background-color:#86080e;
	height:50px;
	line-height: 50px;
	color: #dab866;
	font-size: 13px;
}
.footBox2 a{color: #dab866}
.footBox2 a:hover{color: #ffd777}
.getTop{
	width: 63px;
	height: 63px;
	border-radius:100%;
	overflow:hidden;
	cursor:pointer;
	position:fixed;
	top: 50%;
	right:15px;
	z-index:9999;
	background-color:#dcd0a3;
	background-image: url(../images/icon14.png);
	background-repeat: no-repeat;
	background-position: center center;
	display: none;
	transition-duration:0.3s;
}
.getTop:hover{background-color:#d10d0d}
/**/
#indexPage{
	position: relative;
	height:900px;
}
.ixBox{
	overflow: hidden;
	position: relative;
}
.ixBox .ixBox1Bg{
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}
.ixBox .ixBox1Bg div{
	width: 105%;
	height: 105%;
	
	background-position:center center;
	background-repeat: no-repeat;
	background-size:cover;
	position: absolute;
	left: -2.5%;
    top: -2.5%;
	z-index: -1
}
.ixBoxC{	
	position: absolute;
	top: 0;
	left: 0;
	display:table;
	background-repeat:no-repeat;
	background-position: center center;
	background-size:auto 100%;
	padding-top: 40px;
}
.ixBoxCBox{
	display: table-cell;
	vertical-align: middle;
	overflow:hidden;
}
.ixBox1T{
	clear: both;
	text-align: center;
}
.ixBox1T .divT1{
	clear: both;
	display: inline-block;
	height:50px;
	line-height: 50px;
	position: relative;
	padding: 0 30px;
	font-size: 34px;
	color: #a51714;
	font-weight: bold;
}
.ixBox1T .divT1 i{
	display: block;
	width:18px;
	height:32px;
	background-image: url(../images/icon2.png);
	background-position: center center;
	background-repeat: no-repeat;
	position: absolute;
	top:10px;
	left: 0;
}
.ixBox1T.typ2 .divT1 i{background-image: url(../images/icon3.png);}
.ixBox1T .divT1 i.i2{
	left: auto;
	right: 0;
}
.ixBox1T .divT2{
	clear: both;
	height: 32px;
	line-height: 32px;
	position: relative;
	font-size: 16px;
	color: #893d3c;
}
.ixBox1T .divT2:after{
	content: "";
	display: block;
	width: 24px;
	height: 22px;
	background-image: url(../images/icon5.png);
	background-repeat: no-repeat;
	background-position: center center;
	position: absolute;
	top:34px;
	left: 50%;
	margin-left:-12px;
}
/* 产业 */
.industry{
	position: relative;
	padding-bottom: 110px;
}
.industry .bd_dl{
	overflow: hidden;
}
.industry .bd_dl dd{
	float: left;
	width: 20%;
}
.industry a{
	display: block;
	width: 185px;
	margin: 0 auto;
	position: relative;
}
.industry .listLine{
	width: 183px;
	height: 182px;
	background: url(../images/cyLine1.png) left top no-repeat;
	position: absolute;
	top: 0;
	left: 50%;
	margin:-18px 0 0 -91px;
	transition: 0.4s ease;
}
.industry .bd_dl dd.even .listLine{
	background: url(../images/cyLine2.png) left bottom no-repeat;
}
/*.industry .listLine .line1{
	width: 0;
	height: 100%;
	background: url(../images/cyLine1_h.png) left top no-repeat;
	transition: 0.4s ease;
}
.industry .bd_dl dd.even .line1{
	background: url(../images/cyLine2_h.png) left bottom no-repeat;
}*/
.industry .listBg{
	background: url(../images/cyBg1.png) center center no-repeat;
	width: 143px;
	height: 143px;
	margin: 40px auto 0 auto;
	transition: 0.6s ease-in-out;
}
.industry .listIco{
	width: 100%;
	height: 100%;	
}
.industry .listIco.ico1{background: url(../images/cyIco1.png) center center no-repeat;}
.industry .listIco.ico2{background: url(../images/cyIco2.png) center center no-repeat;}
.industry .listIco.ico3{background: url(../images/cyIco3.png) center center no-repeat;}
.industry .listIco.ico4{background: url(../images/cyIco4.png) center center no-repeat;}
.industry .listIco.ico5{background: url(../images/cyIco5.png) center center no-repeat;}
.industry .listIco.ico6{background: url(../images/cyIco6.png) center center no-repeat;}
.industry .listIco.ico7{background: url(../images/cyIco7.png) center center no-repeat;}
.industry .listIco.ico8{background: url(../images/cyIco8.png) center center no-repeat;}
.industry .listIco.ico9{background: url(../images/cyIco9.png) center center no-repeat;}
.industry .listTit{
	font-size: 24px;
	color: #666; 
	width: 36px;
	padding-top: 35px;
	white-space: normal;
	margin: 0 auto;
	transition: 0.4s ease;
}
.industry .listTit i{
	display: block;
	width: 6px;
	height: 6px;
	background: #666666;
	margin: 0 auto;
}
.industry .listTit span{
	display: block;
	text-align: center;
	padding-top: 15px;
}
.industry a:hover .listLine{
	background: url(../images/cyLine1_h.png) left top no-repeat;
}
.industry .bd_dl dd.even a:hover .listLine{
	background: url(../images/cyLine2_h.png) left bottom no-repeat;
}
.industry a:hover .listBg{
	background-image: url(../images/cyBg1_h.png);
	transform: rotateY(360deg);
}
.industry a:hover .listTit i{
	background: #af0808;
}
.industry a:hover .listTit{
	color: #af0808;
}
.industry .prev,
.industry .next{
	height: 38px;
	width: 38px;
	position: absolute;
	bottom: 0;
	left: 50%;
	cursor: pointer;
	transition: 0.4s ease;
}
.industry .prev{
	background: url(../images/cyPrev1.png) center center no-repeat;
	margin-left: -38px;
}
.industry .next{
	background: url(../images/cyNext1.png) center center no-repeat;
}
.industry .prev:hover{background-image: url(../images/cyPrev1_h.png);}
.industry .next:hover{background-image: url(../images/cyNext1_h.png);}

.ixBox .ixBox2Bg{
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}
.ixBox .ixBox2Bg div{
	width: 105%;
	height: 105%;
	background-position:center center;
	background-repeat: no-repeat;
	background-size:cover;
	position: absolute;
	left: -2.5%;
    top: -2.5%;
	z-index: -1
}
.ixBox1T.typ2 .divT1{color: #ffcc99}
.ixBox1T.typ2 .divT2{color: #ad8053}
.ixBoxCBoxC1{
	overflow:hidden;
	padding: 0 8.33%;
}
.ixBox2Slide{
	clear: both;
	position: relative;
}
.ixBox2Slide .bt{
	display: block;
	width: 45px;
	height:83px;
	cursor: pointer;
	position: absolute;
	top: 50%;
	margin-top:-42px;
	z-index: 111;
	display: none;
	opacity:0;
	transition-duration: 0.3s;
}
.ixBox2Slide:hover .bt{opacity:1;}
.ixBox2Slide .bt.prev{left:-65px;background: url(../images/newsPrev1.png) no-repeat center center;}
.ixBox2Slide .bt.next{right:-65px;background: url(../images/newsNext1.png) no-repeat center center;}
.ixBox2Slide .bt.prev:hover{background-image: url(../images/newsPrev1_h.png);}
.ixBox2Slide .bt.next:hover{background-image: url(../images/newsNext1_h.png);}
.ixBox2Slide .bd{
	overflow: hidden;
}
.ixBox2Slide .hd{
	clear: both;
	text-align: center;
}
.ixBox2Slide .hd ul{display: inline-block;overflow: hidden;padding-bottom: 30px}
.ixBox2Slide .hd ul li{
	float: left;
	height:24px;
	padding:0 13px 0 5px;
	font-size: 16px;
	color: #999999;
	background-image: url(../images/icon10.png);
	background-position: right bottom;
	background-repeat: no-repeat;
	position: relative;
	right:-7px;
	line-height: 35px;
	cursor: pointer;
}
.ixBox2Slide .hd ul li.on{line-height:30px;color: #fff;font-size: 24px}
.ixBox2Dl{width: 110%}
.ixBox2Dl dd{
	float: left;
	margin-right: 20px;
	overflow: hidden;
}
.ixBox2Dl dd a{
	display: block;
	overflow: hidden;
	position: relative;
}
.ixBox2Dl dd a .pic{
	width: 100%;
	overflow:hidden;
	padding-top:75.64%;
	margin-bottom:140px;
	position: relative;
}
.ixBox2Dl dd a .pic img{
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}
.ixBox2Dl dd a .box{
	background:#fff;
	width: 100%;
	height:140px;
	overflow:hidden;
	transition-duration: 0.3s;
	transition-property: all;
	transition-timing-function: linear;
	position: absolute;
	left:0;
	bottom: 0;
}
.ixBox2Dl dd:hover a .box{
	height:168px;
	background-color:#a9040c;
}
.ixBox2Dl dd a .divT1{
	height:24px;
	overflow: hidden;
	line-height:24px;
	color: #aaaaaa;
	margin:27px 30px 0 30px;
	transition-duration: 0.3s;
	transition-property: all;
	transition-timing-function: linear;
	position: relative;
	top: 0;
}
.ixBox2Dl dd:hover a .divT1{top:27px;color: #ffcc99} 
.ixBox2Dl dd a .divT1 span{
	overflow: hidden;
	color:#b38952;
	padding-right: 25px;
	text-decoration: underline;
	margin-left:0;
	transition-duration: 0.3s;
	transition-property: all;
	transition-timing-function: linear;
}
.ixBox2Dl dd:hover a .divT1 span{margin-left:-72px}
.ixBox2Dl dd a .divT2{
	height:30px;
	overflow: hidden;
	line-height:30px;
	color: #333333;
	font-size: 16px;
	margin:0 30px;
	margin-top:10px;
	transition-duration: 0.3s;
	transition-property: all;
	transition-timing-function: linear;
	position: relative;
	z-index:999;
	top:0;
	transition-duration: 0.3s;
	transition-property: all;
	transition-timing-function: linear;
}
.ixBox2Dl dd:hover a .divT2{top:-36px;color: #ffcc99;font-size:18px;font-weight:bold} 
.ixBox2Dl dd a .txt{
	clear: both;
	height: 48px;
	overflow:hidden;
	line-height:24px;
	font-size: 14px;
	color: #fff;
	margin:0 30px;
	transition-duration: 0.3s;
	transition-property: all;
	transition-timing-function: linear
}
.ixBox2Dl dd:hover a .txt{color: #ffcc99}
/*****subBanner******/
.subBanner{
	clear: both;
	width: 100%;
	padding-top:26.04%;
	overflow: hidden;
	position: relative;
}
.subBannerC{
	position: absolute;
	top:0;
	left: 0;
	width: 100%;
	height: 100%;
	background-size:cover !important;
}

/**/
/*
//////////////////内页开始
*/
.pageBox{
	clear: both;
	position: relative;
}
/*分页*/
.page{clear: both}
.page a{
	display: block;
	height: 56px;
	overflow: hidden;
	background-color:#bbb5b3;
	font-size: 16px;
	color: #fff;
	text-align: center;
	line-height: 56px;
	transition-duration: 0.3s;
}
.page a:hover{background-color:#db0000;}
/*内容头部开始*/
/*二级栏目*/
.location{
	clear: both;
	height: 65px;
	background-color:#c0a584;
    -webkit-box-shadow: 0px 2px 5px rgba(152,152,152,0.16);
    box-shadow: 0px 2px 5px rgba(152,152,152,0.16);
}
.nav a{
	float: left;
	height: 65px;
	overflow: hidden;
	line-height: 65px;
	padding-right: 20px;
	margin-right: 20px;
	color: #f2e7da;
	font-size:14px;
	background-image: url(../images/icon15.png);
	background-repeat: no-repeat;
	background-position:right center;
	position: relative;
}
.nav a:last-child{background:none}
.nav a.hover{color:#d10d0d}
.nav a:after{
	content: "";
	display: block;
	width: 14px;
	height: 7px;
	position:absolute;
	bottom:0;
	left:50%;
	margin-left:-17px;
	background-image: url(../images/icon16.png);
	background-position:center center;
	background-repeat: no-repeat;
	display:none;
}
.nav a.hover:after{display:block}
/*当前位置*/
.locationC a{
	float: left;
	height: 65px;
	overflow:hidden;
	line-height: 65px;
	padding:0 5px;
	color: #f2e7da;
	font-size: 13px;
}
.locationC a.a1{
	width: 13px;
	height: 65px;
	background-image: url(../images/icon18.png);
	background-position: center center;
	background-repeat: no-repeat;
}
.locationC a.hover{color:#d10d0d}
.locationC a:hover{color:#d10d0d}
.locationC i{
	float: left;
	width: 6px;
	height: 65px;
	background-image: url(../images/icon17.png);
	background-repeat: no-repeat;
	background-position: center center;
}
/**/
.nav3{
	clear: both;
	height: 36px;
	overflow: hidden;
	text-align: center;
}
.nav3 span{
	display: inline-block;
	height: 36px;
	line-height: 36px;
	padding:0 30px;
	position: relative;
	color: #333333;
	font-size: 22px;
}
.nav3 span:after{
	content: "";
	display: block;
	width: 8px;
	height: 36px;
	background-image: url(../images/icon19.png);
	background-repeat: no-repeat;
	background-position: center center;
	position: absolute;
	top: 0;
	left: 0;
	display: none;
}
.nav3 span:before{
	content: "";
	display: block;
	width: 8px;
	height: 36px;
	background-image: url(../images/icon20.png);
	background-repeat: no-repeat;
	background-position: center center;
	position: absolute;
	top: 0;
	right: 0;
	display: none;
}
/*内容头部结束*/
/*新闻+单篇*/
.articleT {
	clear: both;
	line-height:50px;
	font-size:26px;
	color: #333333;
	text-align: center;
	font-family: "黑体";
}
.articleT2 {
	clear: both;
	height:35px;
	font-size: 14px;
	color: #666;
	line-height: 35px;
	text-align: center;
	padding-bottom: 25px;
	border-bottom: 1px solid #dad3b9;
}
.articleT2 i {
	color: #db0000;
	font-weight: bold;
	font-style: normal
}
.articleT2 .shareBox {
	display: inline-block;
}
.articleT2 .shareBox a {
	margin-left: 5px;
	font-weight: bold;
}
.articleT2 a:hover {
	color: #fff
}
.article_fz {
	display: inline-block;
	position: relative;
	cursor: pointer;
	padding-left: 10px;
}

.article_fzBox {
	width: 100%;
	overflow: hidden;
	position: absolute;
	top: 30px;
	left: 0;
	z-index: 9999;
	opacity: 0;
	transform: rotateX(90deg);
	-webkit-transform: rotateX(90deg);
	transition: all 0.3s linear;
	-webkit-transition: all 0.3s linear;
	transform-origin: center top;
	-webkit-transform-origin: center top;
}

.article_fz:hover .article_fzBox {
	opacity: 1;
	transform: rotateX(0deg);
	-webkit-transform: rotateX(0deg);
}

.article_fzBox span {
	display: block;
	height: 20px;
	background: #f5f5f5;
	font-size: 14px;
	color: #666;
	text-align: center;
	line-height: 20px;
	cursor: pointer;
	margin-bottom: 1px;
}

.article_fzBox span:hover {
	background: #db0000;
	color: #fff;
}

.article_fzBox span.hover {
	background: #db0000;
	color: #fff;
}

.articleBox {
	clear: both;
	overflow: hidden;
	font-size: 16px;
	line-height:40px;
	color: #666;
}
.atcBg{
	background-position: center bottom;
	background-repeat: no-repeat;
	/*background-image: url(../images/atcBg.jpg); */
}
.atcBg .pageBox{background-color:transparent}
.articleBox img {
	max-width: 100%;
}
/* 文章阅读页——大图*/
#play {
	width: 755px;
	height: 425px;
	position: relative;
	overflow: hidden;
	background: #fff;
	border: 1px solid #e9e9e9;
	margin: 0 auto;
}

#play .change_a {
	width: 40%;
	height: 100%;
	position: absolute;
	top: 0;
	z-index: 1;
	cursor: pointer;
	display: block;
	overflow: hidden;
	background: url(about:blank);
}

#play .prev_a {
	left: 0;
}

#play .next_a {
	right: 0
}

#play .change_a span {
	width: 24px;
	height: 43px;
	display: block;
	position: absolute;
	top: 50%;
	margin-top: -21px;
	display: none
}

#play .prev_a span {
	background: url(../images/article_icon.png) no-repeat 0px -50px;
	left: 0;
}

#play .next_a span {
	background: url(../images/article_icon.png) no-repeat -30px -50px;
	right: 0;
}

#play .img_ul {
	position: relative;
	z-index: 1;
	width: 755px;
	height: 425px;
}

#play .img_ul li {
	position: relative;
	z-index: 1;
	width: 755px;
	height: 425px;
	background: #fff;
	margin: 0 0 5px 0;
}

#play .img_ul li img {
	position: absolute;
}

.imgMove {
	width:755px;
	clear: both;
	margin: 20px auto;
	position: relative;
}

.img_hd {
	margin: 0 auto;
	overflow: hidden;
	height: 75px;
	position: relative;
}

.img_hd ul {
	position: absolute;
	z-index: 1
}

.img_hd ul li {
	float: left;
	width: 90px;
	height:51px;
	padding: 3px;
	margin: 0 7px;
	cursor: pointer;
	background: #fff;
	border: 1px solid #d4d4d4;
	position: relative;
}

.img_hd ul li p {
	width: 90px;
	height:51px;
	display: block;
	background: #fff;
	position: relative;
}

.img_hd ul li i {
	display: block;
	clear: both;
	line-height: 20px;
	padding: 0 5px;
	background: #000;
	color: #fff;
	position: absolute;
	right: 3px;
	bottom: 3px;
	z-index: 99999999999999;
	filter: alpha(opacity=50);
	-moz-opacity: 0.5;
	opacity: 0.5;
	font-family: Arial;
	font-size: 12px;
	font-style: normal;
}

.img_hd ul li img {
	position: absolute;
	width: 90px;
	height:51px;
}

.img_hd ul li.on {
	border: 1px solid #db0000;
	background: #db0000;
}

.imgMove .bottom_a {
	width: 20px;
	height: 25px;
	display: block;
	cursor: pointer;
	z-index: 10;
	float: left;
	top: 20px;
	position: absolute;
	z-index: 9999999999999;
	background: url(../images/article_icon.png) no-repeat;
}

.imgMove .prev_a {
	background-position: left top;
	left: 0;
}

.imgMove .next_a {
	background-position: right top;
	right: 0;
}

.article_pageUp {
	font-size: 15px;
	line-height: 30px;
	color: #999999;
	border-top: 1px solid #d5d5d5;
	padding-top: 30px;
}

.article_pageUp dl {
	width: 600px
}

.article_pageUp dl a {
	color: #999999
}

.article_pageUp dl a:hover {
	color: #1e67c0
}

.article_pageUp .bt {
	width: 130px;
	height: 40px;
	line-height: 40px;
	text-align: center;
	background: #1e67c0;
	color: #fff;
	font-size: 15px;
	margin-top: 10px;
}
.article_pageUp .bt:hover {
	opacity: 0.9
}
.articleHand {
	clear: both;
	font-size: 16px;
	padding: 10px 0px 20px 0;
	overflow: hidden;
	padding-bottom:0
}
.articleHand a {
	display: block;
	line-height: 32px;
	padding: 0 20px 10px 30px;
	float: left;
	background: url(../images/file.png) no-repeat left center;
}
.articleHand a.word {
	background: url(../images/word.png) no-repeat left 3px;
	color: #37a6ff !important;
}
.articleHand a.ppt {
	background: url(../images/ppt.png) no-repeat left center;
	color: #ff7735 !important;
}
.articleHand a.excel {
	background: url(../images/excel.png) no-repeat left center;
	color: #15bf44 !important;
}
.articleHand a.pdf {
	background: url(../images/pdf.png) no-repeat left center;
	color: #1369c0 !important;
}
.articleHand a.zip {
	background: url(../images/zip.png) no-repeat left 3px;
	color: #ff9779 !important;
}
.articleT2 .shareBox{display:inline-block;}
.articleT2 .shareBox a{margin-left:5px;line-height: 38px}
.articleT2 a:hover{color: #fff}
.articleT2 .bds_tsina{
	width: 24px !important;
    height: 40px !important;
	background:url(../images/icon24.png) no-repeat -49px top !important;
}
.articleT2 .popup_qzone{
	width: 24px !important;
    height: 40px !important;
	background:url(../images/icon24.png) no-repeat -98px top !important;
}
.articleT2 .popup_sqq{
	width: 24px !important;
    height: 40px !important;
	background:url(../images/icon24.png) no-repeat -147px top !important;
}
.articleT2 .bds_weixin{
	width: 24px !important;
    height: 40px !important;
	background:url(../images/icon24.png) no-repeat 0px top !important;
}
.articleT2 .bds_tsina:hover{background:url(../images/icon24.png) no-repeat -49px bottom !important;}
.articleT2 .popup_sqq:hover{background:url(../images/icon24.png) no-repeat -147px bottom !important;}
.articleT2 .popup_qzone:hover{background:url(../images/icon24.png) no-repeat -98px bottom !important;
}
.articleT2 .bds_weixin:hover{background:url(../images/icon24.png) no-repeat 0px bottom !important;}
.articlePageUp{
	height: 60px;
	background-color:#dad3b9;
}
.articlePageT{
	width: 450px;
	height: 60px;
	line-height: 60px;
	color: #666666;
	font-size: 14px;
}
.articlePageT.fl{padding-left:30px;}
.articlePageT.fr{padding-right:30px;text-align: right}
.articlePageT a{color: #666666;}
.articlePageT a:hover{color: #db0000;}
.articlePage{
	clear:both;
	height:30px;
	text-align:center;
	font-family:Arial;
	}
.articlePage a{
	margin:0 1px;
	background:#ccc;
	padding:5px 10px;
	}
.articlePage a:hover{
	color:#fff;
	background:#db0000;
	}
.articlePage a.hover{
	color:#fff;
	background:#db0000;
	}
/*董事长致词*/
.camadrBox{
	clear: both;
	height: 500px;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	position: relative;
}
.camadrBoxTxt{
	width: 500px;
	height: 560px;
	overflow: hidden;
	background-color:rgba(194,52,52,0.6);
	position: absolute;
	bottom:0;
	left: 50%;
	margin-left:100px;
}
.camadrBoxTxt .txt{
	width:195px;
	overflow: hidden;
	margin:0 auto;
	padding-left:80px;
	padding-top: 40px;
	background-image: url(../images/icon21.png);
	background-position:left top;
	background-repeat: no-repeat;
}
.camadrBoxTxt .txt .txtBox{
	width: 120px;
	height: 225px;
	font-size: 14px;
	line-height: 30px;
	color: #ffffff;
	writing-mode:tb-rl;
	opacity:0.7;
}
.camadrBoxTxt .txt img{
	float: right;
	max-width: 50px;
}
/*全图列表1*/
.imgList1{margin: 0 -8px;}
.imgList1 dd{
	float: left;
	width: 33.333%;
	padding: 10px 0;
}
.imgList1 dd a{
	display: block;
	overflow: hidden;
	margin: 0 8px;
	background: #fff;
	border-radius: 4px;
	padding: 10px;
	transition: 0.4s ease;
}
.imgList1 dd a .pic{
	width: 100%;
	padding-top:63.513%;
	overflow: hidden;
	position: relative;
}
.imgList1.typ2 dd a .pic{padding-top:56.756%;}
.imgList1.typ3 dd a .pic{padding-top:74.666%;}
.imgList1.typ3 dd a{margin: 0 19px;padding: 0; background: none;}
.imgList1 dd a .pic img{
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}
.imgList1 dd a span{
	display: block;
	height: 50px;
	overflow: hidden;
	line-height: 50px;
	text-align: center;
	color: #666666;
	font-size: 14px;
}
.imgList1#list dd:hover a .pic img{
	transform: scale(1);
}
.imgList1 dd a .pic i{
	display: block;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,0.3);
	background-image: url(../images/icon22.png);
	background-position: center center;
	background-repeat: no-repeat;
	position: absolute;
	top: 0;
	left: 0;
	opacity:1;
	transition-duration: 0.3s;
}

.imgList1.typ2 dd a span{color:#333}
.imgList1.typ2 a:hover i{opacity: 0;}
.imgList1.typ3 dd a .txtBox{
	overflow: hidden;
	padding:10px 20px 0 20px;
	text-align: center;
	background: #fff;
}
.imgList1.typ3 dd a .txtBox .divT1{
	clear: both;
	overflow: hidden;
	height: 30px;
	line-height: 30px;
	color: #000000;
	font-size: 24px;
	display: none;
}
.imgList1.typ3 dd a .txtBox .divT2{
	clear: both;
	overflow: hidden;
	height: 28px;
	line-height: 28px;
	color: #333333;
	font-size:18px;
}
.imgList1.typ3 dd a:hover .txtBox .divT2{color: #d10d0d;}
.imgList1.typ3 dd a .txtBox .txt{
	clear: both;
	height: 78px;
	overflow: hidden;
	font-size: 14px;
	line-height: 26px;
	color: #999999;
	display: none;
}
.imgList1 dd a:hover{
	transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}
.imgList1 dd a:hover span{color:#db0000}

/* productList start */
.productList{margin: 0 -8px;}
.productList dd{
	float: left;
	width: 33.333%;
	padding: 10px 0;
}
.productList dd a{
	display: block;
	overflow: hidden;
	margin: 0 8px;
	background: #fff;
	border-radius: 4px;
	padding: 10px;
	transition: 0.4s ease;
}
.productList dd a .pic{
	width: 100%;
	padding-top:80%;
	overflow: hidden;
	position: relative;
}
.productList dd a .pic img{
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}
.productList dd:hover a .pic img{
	transform: scale(1);
}
.productList dd a span{
	display: block;
	height: 50px;
	overflow: hidden;
	line-height: 50px;
	text-align: center;
	color: #666666;
	font-size: 14px;
}
.productList dd:hover a{
	transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}
/* productList end */

/* textImg3 */
.textImg3{width: 1200px;margin: 0 auto;position: relative;}
.textImg3 dd{margin:0 0 40px 0;}
.textImg3 .listBox{
	background: #fff;
	padding: 30px 15px;
	overflow: hidden;
    transition:0.3s linear;
	}
.textImg3 dd:hover .listBox{
	transform: translateY(-4px);
	box-shadow: 0 2px 15px 0 rgba(0,0,0,0.05)
}
.textImg3 .listImg{width: 260px;position: relative;padding: 0 15px;}
.textImg3 .listImg a{display: block;}
.textImg3 .listImg .imgBox{padding-top: 66.66666666%;}
.textImg3 dd:hover .listImg .jqthumb{transform: scale(1.05);}
.textImg3 .listTxt{padding: 0 15px;overflow: hidden;}
.textImg3 .listTit{font-size: 18px;color: #333;font-weight: bold;white-space: nowrap;text-overflow: ellipsis;overflow: hidden;}
.textImg3 .listTit a{color: #333;transition: 0.3s ease;}
.textImg3 .listTime{font-size: 14px;color: #999;}
.textImg3 .listInfr{
	font-size: 14px;
	color: #666;
	line-height:26px;
	height:78px;
	overflow: hidden;
	word-break: break-all; 
	display: -webkit-box !important; 
	-webkit-line-clamp: 2 !important; 
	-webkit-box-orient: vertical;
	padding:15px 0 0 0;
	margin:0 0 10px 0;
}
.textImg3 .listTit a:hover{
	color: #d10d0d;
}
/**/
.listHot{
	display: block;
	height:246px;
	overflow: hidden;
	position: relative;
}
.listHot .pic{
	width:326px;
	height:246px;
	overflow:hidden;
}
.listHot .pic img{
	display: block;
	width:326px;
	height:246px;
}
.listHot .divR{
	overflow: hidden;
	padding:0 30px;
	height: 246px;
	background-color:#f3f2f4
}
.listHot .divR .divT{
	clear: both;
	height:36px;
	margin-top:25px;
	overflow: hidden;
	line-height: 36px;
	color: #333333;
	font-size: 18px;
	font-weight: bold
}
.listHot .divR .divT a{color: #333333;}
.listHot .divR .divT2{
	clear: both;
	height:32px;
	overflow: hidden;
	line-height: 32px;
	color: #c51d1d;
	font-size: 18px;
	font-weight: bold
}
.listHot .divR .txt{
	height: 78px;
	overflow: hidden;
	color: #888888;
	font-size: 14px;
	line-height: 26px;
	margin-top: 20px;
}
.listHot .hd{
	width: 300px;
	height: 36px;
	position: absolute;
	bottom: 0;
	right:0;
	z-index: 11;
}
.listHot .hd ul{float: right;margin-right:30px;}
.listHot .hd ul li{
	float: left;
	width: 8px;
	height: 8px;
	line-height: 999px;
	overflow: hidden;
	cursor: pointer;
	border-radius: 100%;
	border:1px solid #bdbdbd;
	margin:0 4px;
}
.listHot .hd ul li.on{background-color:#d10d0d;border:1px solid #d10d0d;}
/*招聘列表*/
 .rmtT {
    clear: both;
    height: 46px;
    overflow: hidden;
    line-height: 46px;
    text-align: center;
    font-size: 24px;
    color: #333333;
    font-weight: bold;
}
.rmtT.cf {
    color: #fff
}
.rmtBox {
    clear: both;
    overflow: hidden;
    position: relative;
    z-index: 1;
}
.rmtBoxL {
    width: 420px;
    position: relative;
    z-index:-1;
}
.rmtBoxL img {
    display: block;
    max-width:650px;
}
.rmtBoxR {
    overflow: hidden;
    font-size:16px;
    line-height:36px;
    padding-left:25px;
    margin-top: 55px;
    color:#666;
}
.rmtBox2 {
    height: 750px;
    overflow: hidden;
    background-image: url(../images/bg.jpg);
    background-position: center center;
    background-repeat: no-repeat;
}
.rmtSlide {
    position: relative
}
.rmtSlide .bd {
    width: 1200px;
    height: 425px;
    overflow: hidden;
}
.rmtSlide .bd dl {
    width: 1300px
}
.rmtSlide .bd dl dd {
    display: inline;
    float: left;
    width: 374px;
    height: 423px;
    overflow: hidden;
    background: #fff;
    margin-right: 36px;
    border: 1px solid #e5e5e5;
}
.rmtSlide .bd dl dd .divT {
    clear: both;
    height: 58px;
    overflow: hidden;
    text-align: center;
    line-height: 58px;
    font-size: 18px;
    font-weight: bold;
    color: #333333;
    border-bottom: 1px solid #e6e6e6;
}
.rmtSlide .bd dl dd .txtBox {
    height: 330px;
    overflow: hidden;
    margin: 0 10px 0 20px;
}
.rmtSlide .bd dl dd .txtBox .txtBoxC {
    width:344px;
    height: 335px;
    padding-right:15px;
    overflow: hidden;
    overflow-y: auto;
    color: #666666;
    font-size: 14px;
    line-height:30px;
}
.rmtSlide .bt {
    display: block;
    width: 17px;
    height: 31px;
    cursor: pointer;
    position: absolute;
    top: 50%;
    margin-top: -15px;
    background-image: url(../images/icon19.png);
    background-repeat: no-repeat;
    display: none;
}
.rmtSlide .bt.prev {
    left:-38px;
    background-position:left top
}
.rmtSlide .bt.next {
    right:-38px;
    background-position:right top
}
.rmtSlide .bt.prev:hover {
    background-position:left bottom
}
.rmtSlide .bt.next:hover {
    background-position:right bottom
}
.rmtForm {
    width:890px;
    margin: 0 auto;
    overflow: hidden;
}
.rmtForm dd {
    clear: both
}
.rmtForm dd .inputT {
    width: 402px;
    height: 50px;
    border: 1px solid #e6e6e6;
    line-height: 50px;
    font-family:"microsoft yahei";
    color: #666;
    font-size: 14px;
    padding-left: 25px;
    padding-right:5px;
}
.rmtForm dd .inputT::-webkit-input-placeholder {
    color:#cccccc
}
/* 使用webkit内核的浏览器 */
 .rmtForm dd .inputT:-moz-placeholder {
    color:#cccccc
}
/* Firefox版本4-18 */
 .rmtForm dd .inputT::-moz-placeholder {
    color:#cccccc
}
/* Firefox版本19+ */
 .rmtForm dd .inputT:-ms-input-placeholder {
    color:#cccccc
}
.rmtForm dd textarea {
    width:853px;
    height:240px;
    border: 1px solid #e6e6e6;
    line-height:24px;
    font-family:"microsoft yahei";
    color: #666;
    font-size: 14px;
    padding-left: 25px;
    padding-right:10px;
    padding-top:10px;
    padding-bottom:10px;
}
.rmtForm dd textarea::-webkit-input-placeholder {
    color:#cccccc
}
/* 使用webkit内核的浏览器 */
 .rmtForm dd textarea:-moz-placeholder {
    color:#cccccc
}
/* Firefox版本4-18 */
 .rmtForm dd textarea::-moz-placeholder {
    color:#cccccc
}
/* Firefox版本19+ */
 .rmtForm dd textarea:-ms-input-placeholder {
    color:#cccccc
}
/* IE浏览器 */
 .rmtForm dd .bt {
    display: block;
    width: 150px;
    height: 52px;
    margin: 0 auto;
    overflow: hidden;
    line-height: 52px;
    text-align: center;
    font-size: 16px;
    color: #fff;
    border-radius: 3px;
    background: #cc0000;
    transition-duration: 0.3s;
    transition-property: all;
    transition-timing-function: linear;
}
.rmtForm dd .bt:hover {
    background: #f6c016;
}

/* 人才招聘详细页 */
.jobInfo{
	clear:both;
	overflow:hidden;
	line-height:36px;
    font-size: 16px;
	padding:10px 0 0 0;
	}
.jobTitle{
    font-size: 17px;
    color: #333;
    border-bottom: solid 1px #dad3b9;
    line-height: 30px;
    margin-top:30px;
    padding-bottom: 10px;
	}
.jobTitle i{
    width: 3px;
    background:#666;
    height: 20px;
    display: block;
    float: left;
    position: relative;
    top: 5px;
    margin-right: 10px;
}
.jobBt{
	clear:both;
    width: 180px;
    height: 50px;
    border-radius: 3px;
    text-align: center;
    line-height: 50px;
    color: #FFFFFF !important;
    background:#cc0000;
    
    font-size: 18px;
	margin:0 auto;
	-webkit-transition:0.3s; 
	-moz-transition:0.3s; 
	transition:0.3s;
	display:none;
}
.jobBt:hover{background:#f6c016;}
.jobField{clear:both;overflow:hidden;line-height:36px;font-size:16px;padding:15px 0 0 0;}
.jobField dd{width:33%;float:left;}
.jobName{font-weight:bold;font-size:24px;clear:both;padding:0 0 10px 0;}
.jobTime{font-size:14px;line-height:30px;padding:0 0 10px 0;color:#999;border-bottom: solid 1px #dad3b9;}
	
/* 人才招聘（应聘表单提交）*/
.subPopBox{
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: fixed;
    left: 0px;
    top:0px;
    background: rgba(0,0,0,0.65);
    filter: progid:DXImageTransform.Microsoft.gradient( GradientType = 0,startColorstr = '#65000000',endColorstr = '#65000000')\9;
    z-index: 999999;
    display: none;
}
.subPopCont{
    width: 790px;
    height: 555px;
    /*overflow: hidden;*/
    border:10px solid #fff;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
    border-radius: 3px;
    background: #fff;
    position: relative;
    left: 50%;
    top:50%;
    margin-left: -395px;
    margin-top: -277px;
}
.joinForm{overflow: hidden;padding: 20px 40px;}
.joinFormTit{
    display: block;
    font-size: 24px;
    color:#333;
    text-align: center;
    overflow: hidden;
}
.joinForm_dl{overflow: hidden;}
.joinForm_dl dd{
    clear: both;
    /*height: 32px;
    line-height: 32px;*/
    /*overflow: hidden;*/
    padding-left: 70px;
    position: relative;
    margin-bottom: 10px;
}
.joinFormName{
    display: block;
    width: 70px;
    height: 32px;
    overflow: hidden;
    line-height: 32px;
    text-align: right;
    font-size: 12px;
    color:#444;
    position: absolute;
    left: 0px;
    top:0px;
}
.joinFormName i{font-style:normal;padding-right:3px;color:#cc0000;}
.joinFormInp{
    display: block;
    width: 203px;
    height: 30px;
    overflow: hidden;
    border:1px solid #ddd;
    padding: 0px 5px;
    font-size: 12px;
    color:#666;
    font-family: "microsoft yahei";
    line-height: 30px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
    border-radius: 3px;
}
.joinForm_dl dd label{margin-right: 15px;}
.joinForm_dl dd label span{padding-left: 6px;}
.joinFormInp[disabled="disabled"]{background: #fff;}
.joinForm_dl dt{overflow: hidden; position: relative; padding-left: 70px; margin-bottom: 10px;}
.joinForm_dl dt textarea{width: 580px; height: 140px; overflow-x: hidden; overflow-y: auto; border:1px solid #ddd; padding: 5px 10px; font-size: 12px; color:#666; line-height: 20px;}
.joinFile{display: block; width: 110px; height: 30px; overflow: hidden; background: #535353; font-size: 14px; color:#fff; line-height: 30px; text-align: center;}
input.w_100{width: 100px;}
.joinCode{height: 32px; overflow: hidden; line-height: 32px; margin-left: 10px;}
.joinCode img{display: block; height: 32px; float: left;}
.joinCode i{display: block; height: 32px; overflow: hidden; float: left; padding-left: 10px; color:#666;}
.joinCode i:hover{color:#d70112;}
.closeSubPop{width: 30px; height: 28px; overflow: hidden; background:url(../images/closeVideoPop.png) no-repeat center center; position: absolute; right:10px; top:10px;}
.bbsBt{display: block; width: 90px; height: 40px; overflow: hidden; margin:0px auto; text-align: center; line-height: 40px; font-size: 14px; color:#fff !important; background: #e75a19;}


/* 联系我们 */
.contactDl{overflow:hidden}
.contactDl dd{
	float: left;
	min-height: 140px;
	overflow: hidden;
	position: relative;
	right:-2px;
}
.contactDl dd:after{
	content: "";
	display: block;
	width: 1px;
	height: 140px;
	background-color:#eeeeee;
	position: absolute;
	top:0;
	right: 0;
}
.contactDl dd.dd1{width:485px}
.contactDl dd.dd2{width:414px}
.contactDl dd.dd3{width:300px}
.contactDl dd .divT{
	clear: both;
	overflow: hidden;
	height: 26px;
	line-height: 26px;
	color: #333333;
	font-size: 18px;
}
.contactDl dd .tel{
	display: block;
	width: 229px;
	height: 35px;
	padding-left:65px
}
.contactDl dd .txt{
	clear: both;
	overflow: hidden;
	color: #777777;
	font-size: 14px;
	line-height: 24px;
}
.contactDl dd .ctsEwm{
	width: 103px;
	height: 103px;
	overflow: hidden;
	border:1px solid #d9d6d1;
	margin-left: 80px;
}
.mapBox{
	clear: both;
	overflow: hidden;
	height: 395px;
}
/*留言*/
.msgDl dt{
	clear: both;
	height: 30px;
	line-height: 30px;
	color: #333333;
	font-size: 16px;
}
.msgDl dt span{font-size: 14px;color:#999999}
.msgDl dd{clear:both}
.msgDl dd .spanT{
	width: 75px;
	height: 50px;
	line-height: 50px;
	overflow: hidden;
	color: #333333;
	font-size:14px;
	text-align: right;
	margin-right: 10px;
}
.msgDl dd .spanT i{font-style: normal;color:#f40012;margin-right:5px;}
.msgDl dd .inputT{
	height: 48px;
	overflow: hidden;
	line-height: 48px;
	border:1px solid #e3ddc6;
	font-size: 14px;
	font-family: "microsoft yahei";
	color: #333;
	background-color:#f7f2df;
	padding:0 5px;
}
.w_1043{width:1103px}
.w_440{width:490px}
.w_395{width:395px;padding:0 20px !important;}
.w_550{width:510px;padding:0 20px !important;}
.msgDl dd textarea{
	width: 1103px;
	height:200px;
	overflow: hidden;
	line-height:24px;
	border:1px solid #e3ddc6;
	font-size: 14px;
	font-family: "microsoft yahei";
	color: #333;
	padding:5px;
	background-color:#f7f2df;
}
.msgDl dd .code{
	width: 100px;
	height: 50px;
	overflow: hidden;
	margin-left: 15px;
	cursor: pointer;
}
.msgDl dd .code img{
	display: block;
	width: 100px;
	height: 50px;
}
.msgDl dd .bt{
	display: block;
	width: 278px;
	height: 48px;
	margin:0 auto;
	line-height: 48px;
	text-align: center;
	color: #ffffff;
	font-size: 16px;
	background-color:#c51d1d;
	border:1px solid #c51d1d;
}
.msgDl dd .bt:hover{opacity:0.9}
.msgDl dd .bt.bt2{width:120px;float:left}
/*招商加盟*/
.joinPic{
	clear: both;
	height: 300px;
	overflow: hidden;
}
.joinPic img{
	display: block;
	width: 1200px;
	height: 300px;
}
.joinTxt{
	clear: both;
	overflow: hidden;
}
.joinTxt .divT{
	clear: both;
	overflow:hidden;
	height: 40px;
	line-height: 40px;
	font-size: 18px;
	color:#333333;
}
.joinL{width: 510px}
.joinL span{
	display: block;
	overflow: hidden;
	line-height: 20px;
	font-size: 14px;
	color: #666;
	padding:5px 0;
}
.joinR{
	overflow: hidden;
	padding-left:30px;
}
.joinR .div1{
	clear: both;
	height: 30px;
	line-height: 30px;
	color: #666666;
	font-size: 14px;
}
.joinR .div1 span{
	color: #d10d0d;
	font-size: 24px;
	transform:scaleY(1.05);
	font-family: "Arial";
}
.joinR .div1 em{font-style:normal}

/*发展历程*/
.courseBox{
	position: relative;
	overflow: hidden;
	z-index: 11;
}
.courseBox:after{
	content: "";
	display: block;
	width: 1px;
	height: 100%;
	position: absolute;
	top: 0;
	left:368px;
	z-index: -1;
	background-color:#dad5d3;
}
.courseT1{
	clear: both;
	height: 33px;
	overflow: hidden;
	line-height: 33px;
	color: #d10d0d;
	font-size: 26px;
	font-family: "Arial";
	font-weight: bold;
	padding-left: 50px;
}
.courseT2{
	clear: both;
	height: 30px;
	overflow: hidden;
	line-height: 30px;
	color: #333333;
	font-size:18px;
	padding-left: 50px;
}
.courseDl{
	overflow: hidden;
	position: relative;
	z-index: 99;
}
.courseDl dd{
	clear: both;
	overflow: hidden;
	position: relative;
}
.courseDl dd:before{
	content: "";
	display: block;
	width: 1px;
	height: 100%;
	position: absolute;
	top: 0;
	left:368px;
	z-index: -1;
	background-color:#dad5d3;
}
.courseDl dd:after{
	content: "";
	display: block;
	width: 100%;
	height:100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -2;
	background-image: url(../images/icon27.png);
	background-repeat: repeat-x;
	background-position: center top;
	transition-duration: 0.3s;
	transition-property:all;
	transition-timing-function: linear;
	transform: rotateY(90deg);
	opacity:0;
}
.courseDl dd:hover:after{transform: rotateY(0deg);opacity:1}
.courseL{
	width: 305px;
	overflow: hidden;
	margin-left: 55px;
}
.courseL span{
	display: block;
	clear: both;
	height: 42px;
	overflow: hidden;
	line-height: 42px;
	font-size: 32px;
	color: #d10d0d;
	font-family: "Arial";
}
.courseL em{
	display: block;
	clear: both;
	height: 36px;
	overflow: hidden;
	line-height: 36px;
	font-size:16px;
	color: #333333;
	font-style:normal;
}
.courseUl{
	width: 745px;
	overflow: hidden;
}
.courseUl li{
	clear: both;
	overflow: hidden;
	margin-bottom: 30px;
}
.courseUl li .divT{
	clear: both;
	height: 30px;
	overflow: hidden;
	line-height: 30px;
	font-size: 16px;
	color: #333333;
	padding-left: 55px;
	background-position: left center;
	background-repeat: no-repeat;
	background-image:url(../images/icon25.png);
	cursor:pointer;
}
.courseUl li .divT:hover{
	background-image:url(../images/icon26.png);
	color:#d10d0d;
}
.courseUl li .divT.hover{
	background-image:url(../images/icon26.png);
	color:#d10d0d;
}
.courseUl li .txt{
	height: 30px;
	overflow: hidden;
	color:#777777;
	line-height: 30px;
	margin-left: 55px;
	transition-duration: 0.3s;
	transition-property: all;
	transition-timing-function: linear;
}
.courseUl li .txt .txtDiv{
	overflow: hidden;
}
.courseUl li .txt .txtDiv img{max-width:100%}

/**/
.pctSlide2{
	clear: both;
	position: relative;
}
.pctSlide2 .bd{
	overflow: hidden;
	height: 318px;
}
.pctDl2{width:1300px}
.pctDl2 dd{
	float: left;
	width: 370px;
	overflow: hidden;
	margin-right: 45px;
}
.pctDl2 dd a img{
	display: block;
	width: 370px;
	height: 245px;
}
.pctDl2 dd a span{
	display: block;
	height: 72px;
	overflow: hidden;
	border-bottom:1px solid #e0e0e0;
	line-height: 47px;
	text-align: center;
	color: #333333;
	font-size: 16px;
}
.pctSlide2 .bt{
	display: block;
	width: 50px;
	height: 50px;
	cursor: pointer;
	position: absolute;
	top: 50%;
	margin-top: -45px;
	z-index: 999;
	background-image: url(../images/icon33.png);
	background-repeat: no-repeat;
	display: none;
}
.pctSlide2 .bt.prev{
	left:0;
	background-position:left top
}
.pctSlide2 .bt.prev:hover{background-position:left bottom}
.pctSlide2 .bt.next{
	right:0;
	background-position:right top
}
.pctSlide2 .bt.next:hover{background-position:right bottom}
#fp-nav.typ2 ul li a{background:#7e332e !important;} 
#fp-nav.typ2 ul li a.active:after{border:1px solid #7e332e !important;} 
/*
///////////////////频道页
*/
.section.bg{
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}
.channelT{
    clear: both;
    height:100px;
    overflow: hidden;
    line-height: 100px;
    color: #333333;
    font-size: 34px;
    text-align: center;
    background:url(../images/abtIcon2.png) no-repeat center center;
    position:relative;
    font-weight: bold;
}
.channelT.cfff{
	color: #fff;
}
.channelT:after{
    content: "";
    display: block;
    width:24px;
    height:3px;
    background:#d10d0d;
    position:absolute;
    left:50%;
    margin-left: -12px;
    bottom:14px;
}
.cMore a{
    display: block;
    width: 198px;
    height:37px;
    margin:0 auto;
    background:url(../images/channelMore.png) no-repeat center center;
}
/*关于我们*/
.sectionBox,.aboutUsBanner{
	width: 100%;
	background-repeat:no-repeat;
	background-position:center center;
	background-size:cover;
    position: relative;
    height: 100vh;
}
.aboutUsBanner a{display:block;position:relative;}
.aboutVideo{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.imgIcon{
	display: block;
	width: 805px;
	height: 393px;
	position: absolute;
	top:50%;
	left: 50%;	
	margin: -196px 0 0 -402px;
}
.aboutUsBanner .bt{
    width: 44px;
    height:44px;
    background:url(../images/abtIcon1.png) no-repeat center center;
    cursor: pointer;
    position: absolute;
    bottom:5px;
    left: 50%;
    margin-left:-22px;
	margin-bottom: 37px;
	animation: ant 1s infinite;
	-moz-animation: ant 1s infinite;	/* Firefox */
	-webkit-animation: ant 1s infinite;	/* Safari 和 Chrome */
	-o-animation: ant 1s infinite;	/* Opera */
}
.aboutUsBanner .bt:hover{
	animation: ant 1s 0;
	-moz-animation: ant 1s 0;	/* Firefox */
	-webkit-animation: ant 1s 0;	/* Safari 和 Chrome */
	-o-animation: ant 1s 0;	/* Opera */
}
/*动画2*/
.@keyframes ant
{
0% {bottom:5px;}
25% {bottom:0;}
50% {bottom:-3px;}
75% {bottom:0;}
100% {bottom:5px;}
}
/* Safari and Chrome */
@-webkit-keyframes ant 
{
0% {bottom:5px;}
25% {bottom:0;}
50% {bottom:-3px;}
75% {bottom:0;}
100% {bottom:5px;}
}

.absT{
    clear: both;
    height:46px;
    overflow: hidden;
    line-height: 46px;
    text-align: center;
    color: #c80d1a;
    font-weight: bold;
    font-size: 30px;
}
.absT2{
    clear: both;
    height:25px;
    overflow: hidden;
    line-height: 25px;
    text-align: center;
    color: #999999;
    font-size:14px;
}
.absText{
    width: 1025px;
    overflow: hidden;
    margin: 0 auto;
    line-height:28px;
    font-size: 14px;
    color: #666666;
    text-align: center;
}
.absData{
    clear: both;
    text-align: center;
}
.absDataC{display:inline-block}
.absDataDl dd{
    float: left;
    width: 120px;
    margin:0 50px;
}
.absDataDl dd .divT{
    clear: both;
    height:53px;
    overflow: hidden;
	text-align:center;
    border-bottom:1px solid #c80d1a;
}
.absDataDl dd .divT span{
	display:inline-block;
    line-height: 53px;
    color: #c80d1a;
    font-size:32px;
    font-family: "Arial";
    font-weight: bold;
}
.absDataDl dd .divT i{
    display:inline-block;
    line-height:60px;
    color: #c80d1a;
    font-family: "Arial";
    font-size:24px;
    font-style: normal;
}
.absDataDl dd .divT2{
    clear: both;
    height:38px;
    overflow: hidden;
    line-height: 38px;
    color: #666666;
    font-size:16px;
}
.abs2Dl dd{
    float:left;
    width: 25%;
    overflow: hidden;
    position: relative;
    z-index: 2;
}
.abs2Dl dd:after{
    content: "";
    display: block;
    width: 100%;
    height:0%;
    position: absolute;
    left: 0;
    z-index: -1;
    background:rgba(144,11,11,0.85) url(../images/abtIcon2.png) no-repeat center center;
    transition-duration:0.3s;
}
.abs2Dl dd.sg:after{top:0}
.abs2Dl dd.xa:after{bottom:0}
.abs2Dl dd.hover:after{height:100%;}
.abs2Dl dd .ddC{
    height:348px;
    width: 100%;
    position: absolute;
    left:0;
    top:50%;
    margin-top:-72px;
    transition-duration: 0.3s;
}
.abs2Dl dd.hover .ddC{margin-top:-112px}
.abs2Dl dd .ddC .divT{
    clear: both;
    height:107px;
    line-height: 107px;
    text-align: center;
    color: #ffffff;
    font-size: 30px;
    padding-top:62px;
    background-position:center top;
    background-repeat: no-repeat;
    position: relative;
}
.abs2Dl dd.dd1 .ddC .divT{background-image:url(../images/abtIcon4.png)}
.abs2Dl dd.dd2 .ddC .divT{background-image:url(../images/abtIcon5.png)}
.abs2Dl dd.dd3 .ddC .divT{background-image:url(../images/abtIcon6.png)}
.abs2Dl dd.dd4 .ddC .divT{background-image:url(../images/abtIcon7.png)}
.abs2Dl dd .ddC .divT:after{
    content:"";
    display: block;
    width: 60px;
    height:4px;
    background: #fff;
    position:absolute;
    left: 50%;
    margin-left:-30px;
    bottom:-5px;
    visibility: hidden;
    opacity:0;
    transition-duration: 0.3s;
}
.abs2Dl dd.hover .ddC .divT:after{
    visibility: hidden;
    bottom:0;
    visibility:visible;
    opacity:1;
}
.abs2Dl dd .ddC .divT2{
    clear: both;
    height:109px;
    overflow: hidden;
    line-height: 109px;
    text-align: center;
    color: #ffffff;
    font-size:20px;
    margin-top: 5px;
    visibility: hidden;
    opacity:0;
    transition-duration: 0.3s;
}
.abs2Dl dd.hover .ddC .divT2{
    margin-top:0;
    visibility:visible;
    opacity:1;
}
.abs2Dl dd .ddC a{
    display: block;
    width:168px;
    height:48px;
    margin:0 auto;
    overflow: hidden;
    border:1px solid #fff;
    text-align: center;
    margin-top: 5px;
    visibility: hidden;
    opacity:0;
    transition-duration: 0.3s;
}
.abs2Dl dd.hover .ddC a{
    margin-top:0;
    visibility:visible;
    opacity:1;
}
.abs2Dl dd .ddC a span{
    display:inline-block;
    height:48px;
    line-height: 48px;
    color: #ffffff;
    font-size: 14px;
    padding-right: 38px;
    background:url(../images/abtIcon3.png) no-repeat right center;
}
.absHonorL{
	width:50%;
	background-position: center center;
	background-repeat: no-repeat;
	background-size:cover;
	position: absolute;
	top:0;
	left: 0;
}
.absHonorLC{
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background-position:left center;
	background-repeat:no-repeat;
	background-size:100% auto;
	margin-top:50px;
}
.absHonorR{padding-left:50%;overflow: hidden}
.absHonorRC{
	overflow: hidden;
	padding:0 11.45%;
}
.absHonorRC .divT{
	clear: both;
	height:80px;
	overflow: hidden;
	line-height: 80px;
	color: #333333;
	font-size: 36px;
	position:relative;
}
.absHonorRC .divT:after{
	content: "";
	display: block;
	width: 23px;
	height:3px;
	position: absolute;
	left: 0;
	bottom:0;
}
.absHonorRC .txt{
	clear: both;
	overflow: hidden;
	font-size: 16px;
	line-height: 34px;
	color: #666666;
}
.absHonorRSlide{position: relative}
.absHonorRSlide .bt{
	display: block;
	width: 41px;
	height: 41px;
	cursor: pointer;
	position: absolute;
	top:50%;
	margin-top:-20px;
}
.absHonorRSlide .bt:hover{opacity:0.95}
.absHonorRSlide .bt.prev{left:-62px;background:url(../images/absBt2.png) no-repeat left center}
.absHonorRSlide .bt.next{right:-62px;background:url(../images/absBt2.png) no-repeat right center}
.absHonorRSlide .bd{
	overflow: hidden;
}
.absHonorRDl{margin:0 -13px !important;}
.absHonorRDl dd{
	float: left;
	width: 33.333%;
	overflow: hidden;
}
.absHonorRDl dd a{
	display: block;
	overflow: hidden;
	margin:0 13px;
}
.absHonorRDl dd a .pic{
	width: 100%;
	padding-top:69.298%;
	position: relative;
}
.absHonorRDl dd a .pic img{
	display: block;
	width: 100%;
	height:100%;
	position: absolute;
	top: 0;
	left: 0;
}
/**/
#carousel {
	width:1040px;
	height:355px;
	margin:0 auto;
	position:relative;
	clear:both;
	overflow:hidden;
}
#carousel img {
	width: 546px;
	height:355px;
	visibility:hidden;
	cursor:pointer;
}
#carousel span{
	display: block;
	width: 546px;
	height:60px;
	line-height: 80px;
	text-align: center;
	position: absolute;
	left: 50%;
	margin-left:-273px;
	bottom: 0;
	z-index: 999;
	color: #ffffff;
	font-size:16px;
	display: none;
}
.carouselBt{
	display: block;
	width: 41px;
	height: 41px;
	cursor: pointer;
	position: absolute;
	top:50%;
	left:50%;
	margin-top:18px;
	z-index: 999;
}
.carouselBt:hover{opacity:0.95}
.carouselBt.prev{margin-left:-610px;background:url(../images/absBt2.png) no-repeat left center}
.carouselBt.next{margin-left:565px;background:url(../images/absBt2.png) no-repeat right center}
/*产品中心*/
.product .section.bg a{display: block}
.product .sectionBox a{display: block}
.serciceBox{
	position: relative;
	overflow: hidden;
	z-index: 1;
}
.serciceBox .bg{
	width: 251px;
	height:94px;
	position: absolute;
	left: 50%;
	bottom: 0;
	margin-left: 640px;
	background:url(../images/svBg.png) no-repeat center bottom;
	z-index: -1;
	display:none;
}
.serciceBox .bg2{
	width:375px;
	height:345px;
	position: absolute;
	left: 50%;
	top: 0;
	margin-left:-960px;
	background:url(../images/svBg2.png) no-repeat center bottom;
	z-index: -1;
	display:none;
}
.serciceDl{margin:0 -10px;}
.serciceDl dd{
	float: left;
	width: 33.333%;
	overflow: hidden;
}
.serciceDl dd .div{
	overflow: hidden;
	margin:0 10px;
}
.serciceDl dd .pic{
	width: 100%;
	padding-top:112.987%;
	overflow: hidden;
	position: relative;
}
.serciceDl dd .pic img{
	display: block;
	width: 100%;
	height:100%;
	position: absolute;
	top: 0;
	left: 0;
}
.serciceDl dd .pic .picT{
	width: 100%;
	height:100%;
	position: absolute;
	top: 0;
	left: 0;
	background-color:rgba(0,0,0,0.5);
}
.serciceDl dd .pic .picT .divT{
	clear: both;
	height:46px;
	overflow: hidden;
	line-height: 46px;
	text-align: center;
	color: #f5f5f5;
	font-size: 24px;
	margin-top: 115px;
	padding:0 20px;
}
.serciceDl dd .pic .picT .divT2{
	clear: both;
	height:40px;
	overflow: hidden;
	line-height: 40px;
	text-align: center;
	color: #f5f5f5;
	font-size:18px;
	padding:0 20px;
}
.serciceDl dd .bt{
	height:53px;
	position: relative;
	z-index: 11;
}
.serciceDl dd .bt a{
	display: block;
	width:107px;
	height:107px;
	overflow: hidden;
	border-radius:100%;
	position: absolute;
	top:-54px;
	left: 50%;
	margin-left:-53px;
	background-image:url(../images/absBt3.png);
	background-repeat: no-repeat;
	background-position: center center;
	transition-duration: 0.3s;
}
.serciceDl dd.dd1 .bt a{background-color:#d8c3af}
.serciceDl dd.dd2 .bt a{background-color:#93b4a7}
.serciceDl dd.dd3 .bt a{background-color:#837466}

.serciceDl dd.dd1 .div:hover .bt a{background-color:#fde4cd}
.serciceDl dd.dd2 .div:hover .bt a{background-color:#bde7d6}
.serciceDl dd.dd3 .div:hover .bt a{background-color:#e6ccb3}
.merchantsBox{
	position: relative;
	overflow: hidden;
	z-index: 1;
	/*background:url(../images/msBg.jpg) no-repeat center bottom;*/
}
.merchantsDl dd{
	float: left;
	width: 33.333%;
	overflow: hidden;
}
.merchantsDl dd a{
	display: block;
	margin:0 10px;
	overflow: hidden;
	position: relative;
}
.merchantsDl dd a span{
	display: block;
	width: 100%;
	height:50px;
	overflow: hidden;
	line-height: 50px;
	text-align: center;
	color: #ffffff;
	font-size: 18px;
	padding-top: 56px;
	background-position: center top;
	background-repeat: no-repeat;
	margin-top: 68px;
	position: absolute;
	top: 0;
	left: 0;
	z-index:9;
}
.merchantsDl dd.dd1 a span{background-image:url(../images/mtsIcon1.png)}
.merchantsDl dd.dd2 a span{background-image:url(../images/mtsIcon2.png)}
.merchantsDl dd.dd3 a span{background-image:url(../images/mtsIcon3.png)}
.merchantsDl dd a .pic{
	display: block;
	width: 100%;
	padding-top:62.176%;
	overflow: hidden;
	position: relative;
}
.merchantsDl dd a .pic img{
	display: block;
	width: 100%;
	height:100%;
	position: absolute;
	top: 0;
	left: 0;
}
/*
* 产品详情页 kis2
*/
.proViewBox{
	overflow: hidden;
	padding: 86px 0px;
}
.proView_tea{
	background: url(../images/proViewSlideBg1.jpg) no-repeat center center;
}
.proView_tea1{
	background: url(../images/proViewSlideBg.jpg) no-repeat center center;
}
.proViewSlide{
	overflow: hidden;
	width: 500px;
	position: relative;
	padding: 0px 50px;
}
.proViewSlide .imgDiv{
	padding-top: 100%;
}
.proViewSlide .hd{
	display: none;
	overflow: hidden;
	text-align: center;
	font-size: 0px;
}
.proViewSlide .hd ul{
	display: inline-block;
	overflow: hidden;
}
.proViewSlide .hd ul li{
	width: 12px;
	height: 12px;
	overflow: hidden;
	float: left;
	display: inline;
	margin: 3px 5px;
	cursor: pointer;
	text-indent: 99em;
	background: #d4d4d4;
	-webkit-border-radius: 16px;
	-moz-border-radius: 16px;
	-ms-border-radius: 16px;
	-o-border-radius: 16px;
	border-radius: 16px;
	-webkit-transition: all 0.3s linear;
	-o-transition: all 0.3s linear;
	transition: all 0.3s linear;
}
.proViewSlide .hd ul li.on{
	background: #cf2b2c;
	width: 16px;
	height: 16px;
	margin: 0px 5px;
}
.proViewSlide .autoImg{
	padding-top: 100%;
	background: none;
}
.proViewR{
	width: 580px;
	height: 545px;
	position: relative;
	overflow: hidden;
}
.proViewRDeta{
	overflow: hidden;
}
.proViewName{
	overflow: hidden;
	font-size: 28px;
	color: #333;
	line-height: 35px;
}
.proViewName i{
	font-size: 16px;
	padding: 0px 10px;
}
.proViewNameEn{
	overflow: hidden;
	font-size: 16px;
	color:#888;
	line-height: 30px;
}
.proVeiwRIntr{
	overflow: hidden;
	font-size: 16px;
	color:#333;
	line-height: 40px;
	max-height: 160px;
	border: solid #c7b49b;
	border-width: 1px 0px 1px 0px;
	padding: 15px 0px;
}
.proViewBanner{
	position: relative;
	overflow: hidden;
}
.proViewBanner a{
	display: block;
	overflow: hidden;
	height: 390px;
}
.proViewCont{
	overflow: hidden;
}
.proViewCont .center{
	width: 1920px;
	overflow: hidden;
	position: relative;
	left: 50%;
	margin-left: -960px;
}
.autoImg{
    position: relative;
    overflow: hidden;
    padding-top: 66.66666667%;
    background: #fafafa;
}
.autoImg img{
    max-width: 100%;
    max-height: 100%;
    left: 50%;
    top: 50%;
    position: absolute;
    -webkit-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
}
.shopBt_ul{
	overflow: hidden;
}
.shopBt_ul li{
	float: left;
	display: inline;
	overflow: hidden;
	margin: 0px 7px;
}
.shopBt{
	display: block;
	width: 52px;
	height: 52px;
	overflow: hidden;
	-webkit-transition: all 0.3s linear;
	-o-transition: all 0.3s linear;
	transition: all 0.3s linear;
}
.tmall{
	background: url(../images/tmall.png) no-repeat center center;
}
.taobao{
	background: url(../images/taobao.png) no-repeat center center;
}
.jd{
	background: url(../images/jd.png) no-repeat center center;
}
.amazon{
	background: url(../images/amazon.png) no-repeat center center;
}
.yhd{
	background: url(../images/yhd.png) no-repeat center center;
}


/* 列表公共样式  start /jxd */
.listTit{
	font-size: 16px;
	color: #333;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
	transition: 0.4s ease;
}
.listTit a{
	color: #333;
	transition: 0.4s ease;
}
.listTime{
	font-size: 14px;
	color: #999;
	transition: 0.4s ease;
}
.listInfo{
	font-size: 14px;
	color: #666;
	line-height: 30px;
	transition: 0.4s ease;
	height: 60px;
	overflow: hidden;
}
.imgBox{
	position: relative;
	overflow: hidden;
	padding-top: 66.666666%;
}
.imgBox img{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

/* 列表公共样式  end /jxd */

/* news start /jxd*/
.majorNews{
	background: url(../images/newsBg1.jpg) center center no-repeat;
	background-size: cover;
}
.majorList{
	margin: 0 -10px;
	overflow: hidden;
}
.majorList dd{
	width: 33.3333%;
	float: left;
	display: inline;
	padding: 10px 0;
}
.majorList a{
	display: block;
	margin: 0 10px;
	padding: 0 35px;
	background: #fff;
	transition: 0.4s ease;
}
.majorList .listTit{
	padding-top: 40px;
	line-height: 30px;
	height: 30px;
}
.majorList .listTime{
	padding:10px 0 ;
}
.majorList .listLine{
	padding-top: 35px;
	border-bottom: 1px solid #dedede;
	transition: 0.4s ease;
	transition-delay: 0.3s;
}
.majorList .listIco{
	background: url(../images/newsIco1.png) center right 10px no-repeat;
	height: 80px;
	transition: 0.4s ease;
	transition-delay: 0.3s;
}
.majorList a:hover{
	background: #d10d0d;
	transform: translateY(-5px);
}
.majorList a:hover .listTit,
.majorList a:hover .listInfo,
.majorList a:hover .listTime{color: #fff;}
.majorList a:hover .listLine{
	margin: 0 -35px;
}
.majorList a:hover .listIco{background-position: center right;}

.companyNews{
	background: url(../images/newsBg2.jpg) center center no-repeat;
	background-size: cover;
}
.companyList1 dd{
	float: left;
	display: inline;
	width: 385px;
	margin-right: 20px;
	transition: 0.4s ease;
}
.companyList1 .listTit{
	height: 21px;
}
.companyList1 .imgBox{
	padding-top: 75.3246%;
}
.companyList1 .listBox{
	background: #fff;
	padding: 18px;
}
.companyList1 .listTime{
	padding: 10px 0 8px 0;
}
.companyList1 .listTit a:hover{
	color: #d8212f;
}
.companyList1 dd:hover{
	box-shadow:0 0 20px 0 rgba(0,0,0,0.2);
}
.companyList1,
.companyList2{
	overflow: hidden;
	padding: 10px 0;
}
.companyList2 dd{
	margin-bottom: 20px;
}
.companyList2 a{
	display: block;
	background: #fff;
	padding: 17px;
	transition: 0.4s ease;
}
.companyList2 .listInfo{
	line-height: 24px;
	height: 48px;
}
.companyList2 .listTit{
	height: 21px;
}
.companyList2 .listTime{
	padding: 7px 0 5px 0;
}
.companyList2 a:hover{
	transform: translateY(-3px);
}
.companyList2 a:hover .listTit{
	color: #d8212f;
}

.tradeNews{
	background: url(../images/newsBg3.jpg) center center no-repeat;
	background-size: cover;
}
.tradeList{
	margin: 0 -10px;
}
.tradeList dd{
	float: left;
	display: inline;
	width: 50%;
	padding: 10px 0;
}
.tradeList dd a{
	display: block;
	margin: 0 10px;
	background: #fff;
	overflow: hidden;
	transition: 0.4s ease;
}
.tradeList .listImg{
	width: 240px;
	margin-right: 20px;
}
.tradeList .listBox{
	overflow: hidden;
	padding-right: 30px;
}
.tradeList .listTit{
	padding-top: 25px;
	height: 21px;
}
.tradeList .listTime{
	padding: 10px 0 8px 0;
}
.tradeList a:hover{
	transform: translateY(-4px);
	box-shadow: 0 0 15px 0 rgba(0,0,0,0.2);
}
.tradeList a:hover .listTit {color: #D8212F;}

.videoNews{
	background: url(../images/newsBg4.jpg) center center no-repeat;
	background-size: cover;
}
.slider{position: relative;width: 950px;margin: 0px auto;height: 500px;}
.slider .bt{display: block;width: 30px;height: 45px;overflow: hidden;position: absolute;top: 50%;margin-top: -38px;}
.slider .prev{left: -185px;background: url(../images/newsPrev1.png) no-repeat center center;}
.slider .next{right: -175px;background: url(../images/newsNext1.png) no-repeat center center;}
.honorImg{
	width: 750px;
	height: 500px;
}
#img-slider{height: 500px;}
#img-slider li{position:relative;}
#img-slider li img{display:block;width:100%; height: 100%;}
.slider .listTit{
	background: rgba(0,0,0,0.5);
	height: 50px;
	line-height: 50px;
	font-size: 18px;
	color: #fff;
	text-align: center;
	position: absolute;
	width: 100%;
	left: 0;
	bottom: 0;
	opacity: 0;
	transition: 0.4s ease;
}
.list_a {display: block;overflow: hidden;position: relative;}
.list_a i{transition: 0.4s ease;opacity: 0; position: absolute;left: 50%;top: 50%;width: 70px;height: 70px;background: url(../images/newsIco2.png) no-repeat center center;margin-top: -32px;margin-left: -32px}
.roundabout-in-focus .list_a i{opacity: 1;}
.roundabout-in-focus .listTit{opacity: 1;}
/* news end /jxd*/
