
.header {
    position: fixed;
    top: 0;
    left: 0;
    right:0;
    z-index: 998;
    background: #fff;
    will-change: transform;
    transition: transform 200ms linear;
	display: flex;
	padding: 0 2.7vw;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 5px 10px rgba(0,0,0,.1);
	height: 80px;
}
.logo2{
	
	display:none;
}
.header h1{
	
	flex:0 0 796px;
	margin: 0;
	padding: 20px 0;
}
.headroom--pinned {
    transform: translateY(0%);
}
.navbar-fixed-top {
    transform: translateY(-150%);
}


.mainmenu ul{ display:flex; align-items: center; justify-content: space-between;}
.mainmenu ul li{ 
	text-align:center;
	position:relative; 
}
.mainmenu ul li:before{
	content:"";
	-webkit-transform: scale(0, 1);
    transform: scale(0, 1);
    -webkit-transform-origin: right top;
    transform-origin: right top;
    -webkit-transition: -webkit-transform .3s;
    transition: -webkit-transform .3s;
    transition: transform .3s;
    transition: transform .3s, -webkit-transform .3s;
	position: absolute;
	left:0;
	top:-32px;
	height:2px;
	width:100%;
	background:#d51920;
}
.mainmenu ul li a{ display:block; color:#333; position:relative; font-size:16px;padding: 0 50px;}

.mainmenu ul li:hover:before,.mainmenu ul li.cture:before{ 
	content:"";
	-webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    -webkit-transform-origin: left top;
    transform-origin: left top;
	
}
.mainmenu ul li a:hover,.mainmenu ul li.cture a{color:#d51920;}







#cd-lateral-nav .sub-menu {
    display: none;
	position:absolute; 
	left:0;
	top:55px;
	background:rgba(213,35,32,.6);
	box-shadow: 0 10px 20px rgba(0,0,0,.1);
	width:100%;
	z-index:999;
	padding: 20px 0;
	
	
}
.mainmenu ul li a ~ .sub-menu a{ color:#fff; height: 40px; line-height: 40px; padding: 0;}
.mainmenu ul li a ~ .sub-menu li:hover:before{ display:none;}
.mainmenu ul li a ~ .sub-menu li:hover{ text-decoration:underline;}



#cd-lateral-nav .item-has-children > a::after {
    content: '';
    display: block;
    height: 11px;
    width: 8px;
    position: absolute;
    top: 50%;
    bottom: auto;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    right:5px;
    background: url(../images/cd-arrow.svg) no-repeat center center;
    background-size: 8px 11px;
    -webkit-transition-property: -webkit-transform;
    -moz-transition-property: -moz-transform;
    transition-property: transform;
    -webkit-transition-duration: 0.2s;
    -moz-transition-duration: 0.2s;
    transition-duration: 0.2s;
	 -webkit-transform: translateY(-50%) rotate(90deg);
    -moz-transform: translateY(-50%) rotate(90deg);
    -ms-transform: translateY(-50%) rotate(90deg);
    -o-transform: translateY(-50%) rotate(90deg);
    transform: translateY(-50%) rotate(90deg);
}
#cd-lateral-nav .item-has-children > a.submenu-open::after {
    -webkit-transform: translateY(-50%) rotate(-90deg);
    -moz-transform: translateY(-50%) rotate(-90deg);
    -ms-transform: translateY(-50%) rotate(-90deg);
    -o-transform: translateY(-50%) rotate(-90deg);
    transform: translateY(-50%) rotate(-90deg);
}

@media only screen and (max-width: 860px) {
.header{
  -webkit-transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  -webkit-transition-property: -webkit-transform;
  -moz-transition-property: -moz-transform;
  transition-property: transform;
  -webkit-transition-duration: 0.4s;
  -moz-transition-duration: 0.4s;
  transition-duration: 0.4s;
  padding:0 20px;
 }
.header.lateral-menu-is-open {
  /* translate to show the lateral menu */
  -webkit-transform: translateX(0px);
  -moz-transform: translateX(0px);
  -ms-transform: translateX(0px);
  -o-transform: translateX(0px);
  transform: translateX(0px);
}
header.is-fixed {
  position: fixed;
}
.mainmenu ul li {
float:none;
}
/*.header-top {
	display: none;
}*/
.header-logo {
	background: #fff;
	box-shadow: 0 2px 10px rgba(0,0,0,.1);
}
.header-logo {
	padding: 0 20px;
}
.navmenu {
	position: relative;
	z-index: 999;
	height: initial;
    line-height: initial;
}
.mainmenu ul li{
	
	padding:0;	
}
.mainmenu ul li a{
	line-height:40px;
	color:#fff;
	text-align:center;	
}
.lateral-menu-is-open ul{ display:inherit; padding-top:10%;}
.lateral-menu-is-open ul li{ float:none;}
.lateral-menu-is-open ul li a{ line-height:60px;}
#cd-lateral-nav .sub-menu {
    position: inherit;
    top: inherit;
    left: inherit;
    padding: 0;
}
.navmenu .hamburgerBtn {
	position: absolute;
	right: 20px;
	top: -55px;
	-webkit-transform: translateZ(0);
	-webkit-backface-visibility: hidden;
	-webkit-transition-property: -webkit-transform;
	-moz-transition-property: -moz-transform;
	transition-property: transform;
	-webkit-transition-duration: 0.4s;
	-moz-transition-duration: 0.4s;
	transition-duration: 0.4s;
	-webkit-transform: translateX(0px);
	-moz-transform: translateX(0px);
	-ms-transform: translateX(0px);
	-o-transform: translateX(0px);
	transform: translateX(0px);
}
	.lateral-menu-is-open .navmenu .hamburgerBtn{
		
		-webkit-transform: translateX(-260px);
	-moz-transform: translateX(-260px);
	-ms-transform: translateX(-260px);
	-o-transform: translateX(-260px);
	transform: translateX(-260px);
		
	}
#cd-lateral-nav .item-has-children > a::after{ right:20px;}
.mainmenu ul li:hover:before, .mainmenu ul li.cture:before{ display:none;}
.navmenu.lateral-menu-is-open .hamburgerBtn{
	right:0;
	-webkit-transform: translateZ(0);
	-webkit-backface-visibility: hidden;
	-webkit-transition-property: -webkit-transform;
	-moz-transition-property: -moz-transform;
	transition-property: transform;
	-webkit-transition-duration: 0.4s;
	-moz-transition-duration: 0.4s;
	transition-duration: 0.4s;
	-webkit-transform: translateX(-260px);
	-moz-transform: translateX(-260px);
	-ms-transform: translateX(-260px);
	-o-transform: translateX(-260px);
	transform: translateX(-260px);
}
.hamburgerBtn .icon {
	width: 30px;
	height: 20px;
	position: relative;
	display: block;
}
.headerTop .icon:before {
	content: " ";
	display: block;
	background-repeat: no-repeat;
	background-size: contain;
	background-position: 50%;
	width: 30px;
	height: 30px;
}
.hamburgerBtn .icon .line {
	display: block;
	background: #767676;
	width: 30px;
	height: 2px;
	position: absolute;
	left: 0;
	-webkit-transition: all .5s;
	-o-transition: all .5s;
	transition: all .5s;
}
.hamburgerBtn .icon .line.line-1 {
	top: 0;
}
.hamburgerBtn .icon .line.line-2 {
	top: 50%;
}
.hamburgerBtn .icon .line.line-3 {
	top: 100%;
}
.lateral-menu-is-open ~ .hamburgerBtn .icon .line.line-1 {
	-webkit-transform: translateY(10px) translateX(0) rotate(45deg);
	-ms-transform: translateY(10px) translateX(0) rotate(45deg);
	transform: translateY(10px) translateX(0) rotate(45deg);
}
.lateral-menu-is-open ~ .hamburgerBtn .icon .line.line-2 {
	opacity: 0;
}
.lateral-menu-is-open ~ .hamburgerBtn .icon .line.line-3 {
	-webkit-transform: translateY(-10px) translateX(0) rotate(-45deg);
	-ms-transform: translateY(-10px) translateX(0) rotate(-45deg);
	transform: translateY(-10px) translateX(0) rotate(-45deg);
}
#cd-menu-trigger .cd-menu-icon {
	left: auto;
	right: 1.25em;
	-webkit-transform: translateX(0);
	-moz-transform: translateX(0);
	-ms-transform: translateX(0);
	-o-transform: translateX(0);
	transform: translateX(0);
}
#cd-lateral-nav {
    position: fixed;
    height: 100vh;
    right: 0;
    top: 0;
    z-index: 1;
    width: 260px;
    background-color: #242e30;
    overflow-y: auto;
    -webkit-transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    -webkit-transition-property: -webkit-transform;
    -moz-transition-property: -moz-transform;
    transition-property: transform;
    -webkit-transition-duration: 0.4s;
    -moz-transition-duration: 0.4s;
    transition-duration: 0.4s;
    -webkit-transform: translateX(260px);
    -moz-transform: translateX(260px);
    -ms-transform: translateX(260px);
    -o-transform: translateX(260px);
    transform: translateX(260px);
}
#cd-lateral-nav.lateral-menu-is-open{
	-webkit-transform: translateX(0px);
	-moz-transform: translateX(0px);
	-ms-transform: translateX(0px);
	-o-transform: translateX(0px);
	transform: translateX(0px);
}
#cd-lateral-nav .sub-menu {
	padding: 0 10px 20px 15px;
	display: none;
}
#cd-lateral-nav a.current {
	background-color: #3a4a4d;
	color: #FFF;
}
.no-touch #cd-lateral-nav a:hover {
	color: #FFF;
}




}




/* con1 */
.tabs{
	
	position: relative;
}
.tabs-list { list-style:none; position: absolute; top: 70px; left: 50%; margin-left: -250px;}
.tabs-list li { display:block; float: left;}
.tabs-list li a { display:block; height:60px; line-height:60px; width: 250px; text-align: center; background-color:#fff; color:#333; text-decoration:none; font-size:24px; transition:all 0.4s ease 0s; font-weight:700;border-radius: 5px 0 0 5px;}
.tabs-list li:last-child a{ border-radius:0 5px 5px 0;}
.tabs-list li a:hover { background-color:#d9d9d9; }
.tabs-list li.active a { background-color:#d61a21; color:#fff; }
/*.tab-content { margin:10px 0 15px; }*/
.tabs .accordion-handle { display:none; }
.tabs-container .bg2 .hbg .txt h4{  margin-bottom: 40px;}
.tabs-vertical-left, .tabs-vertical-right { *zoom:1; }
.tabs-vertical-left:before, .tabs-vertical-left:after, .tabs-vertical-right:before, .tabs-vertical-right:after { visibility:hidden; display:block; font-size:0;content:" "; clear:both; height:0; }
.tabs-vertical-left .tabs-list, .tabs-vertical-right .tabs-list { width:25%; }
.tabs-vertical-left .tabs-list li, .tabs-vertical-right .tabs-list li { display:block; margin:0 0 5px 0; width:100%; }
.tabs-vertical-left .tabs-list li a, .tabs-vertical-right .tabs-list li a { height:auto; padding:8px 20px; line-height:1.5; }
.tabs-vertical-left .tabs-container, .tabs-vertical-right .tabs-container { width:75%; }
.tabs-vertical-left .tabs-list { float:left; }
.tabs-vertical-left .tabs-container { float:right; }
.tabs-vertical-left .tabs-container .tab-content { margin:0 0 0 15px; }
.tabs-vertical-right .tabs-list { float:right; }
.tabs-vertical-right .tabs-container { float:left; }
.tabs-vertical-right .tabs-container .tab-content { margin:0 15px 0 0; }

.accordion-handle { position:relative; background-color:#ebebeb; text-decoration:none; color:#808080; cursor:pointer; transition:all 0.4s ease 0s; }
.accordion-handle:hover { background-color:#d51920; }
.accordion-handle.active { background-color:#d51920; color:#fff; }
.accordion-handle h4 { height:50px; line-height:50px; padding:0 15px; font-size:18px; margin: 0; }
.accordion-handle:hover h4{ color: #fff;}
.accordion-handle i { display:block; width:8px; height:11px; overflow:hidden; position:absolute; right:20px; top:20px; background:url(../images/cd-arrow.svg) no-repeat top center;
	-webkit-transform: translateY(-50%) rotate(90deg);
    -moz-transform: translateY(-50%) rotate(90deg);
    -ms-transform: translateY(-50%) rotate(90deg);
    -o-transform: translateY(-50%) rotate(90deg);
    transform: translateY(-50%) rotate(90deg);
}

.accordion-handle.active i {
	
	background:url(../images/cd-arrow2.svg) no-repeat top center;
	-webkit-transform: translateY(-50%) rotate(-90deg);
    -moz-transform: translateY(-50%) rotate(-90deg);
    -ms-transform: translateY(-50%) rotate(-90deg);
    -o-transform: translateY(-50%) rotate(-90deg);
    transform: translateY(-50%) rotate(-90deg);
}
.accordion-content { margin-bottom:15px; display:none; }
.tabs-container .bg1{
	
	background:url("../images/con1bg1.jpg") no-repeat;
	
}
.tabs-container .bg2{
	
	background:url("../images/con1bg2.jpg") no-repeat;
	
}
.tab-content{
	
	padding: 140px 2.7vw 70px 2.7vw;
}


@media only screen and ( max-width:768px ){
	.responsive-tabs .tabs-list { display:none; }
	.responsive-tabs .accordion-handle { display:block; }	
	.responsive-tabs.tabs-vertical-left .tabs-container, .responsive-tabs.tabs-vertical-right .tabs-container { width:100%; float:none; }
	.responsive-tabs.tabs-vertical-left .tabs-container .tab-content, .responsive-tabs.tabs-vertical-right .tabs-container .tab-content { margin:10px 0 15px; }	
}


.hbg{
	
	display:flex;
	padding-top: 70px;
}
.hbg .txt{
	
	flex:0 0 calc(100% - 35%);
}
.hbg .txt h4{
	
	font-size:24px;
	font-weight: 700;
	color: #fff;
	position: relative;
	display: inline-block;
	margin-bottom: 40px;
}
.hbg .txt h4:after{
	
	content:"";
	position: absolute;
	left: 0;
	bottom: -20px;
	width:100%;
	height: 5px;
	background: #fff;
}
.hbg .txt h5{
	
	color:#fff;
	font-size: 18px;
	margin-bottom: 20px;
}
.hbg .txt p{
	
	font-size: 15px;
	color:#fff;
	margin-bottom: 20px;
}
.hbg .txt a{
	
	display: inline-block;
	margin: 20px 0 40px 0;
	color: #fff;
	border: solid 1px #fff;
	font-size:15px;
	padding: 5px 20px;
}
.hbg .txt a:hover{
	
	background:#fff;
	color: #d61a21;
}
/* video */
.vwrap { display: none; z-index: 1040; width: 100%; position: fixed; }
.vwrap .videobtg { z-index: 900; position: fixed; width: 100%; height: 100%; left: 0; top: 0; background: #000; opacity: 0.8; filter: alpha(opacity=80); overflow: hidden; }
.vwrap .videobox { z-index: 990; width: 800px; height: 500px; background-color: #fff; position: fixed; left: 50%; top: 50%; margin-top: -250px; margin-left: -400px; }
.vwrap .videobox #videobox { width: 100%; display: inline-block; height: 100%; background: #80abde; }
#videobox_wrapper { height: 100%!important; }
.vwrap .close { z-index: 999; width: 31px; height: 31px; cursor: pointer; position: absolute; top: 0px; right: -42px; }
.vwrap .close i { display: block; width: 31px; height: 31px; background: url(../images/close_i1.png) no-repeat 50% 50%; -webkit-transition: 400ms; transition: 400ms; }
.vwrap .close:hover i { -webkit-transform: rotate(180deg); -ms-transform: rotate(180deg); transform: rotate(180deg); }
#videobox_display_button,#videocontainer_display_button { background: none no-repeat!important; }
.jwplayer .jwicon { opacity: 0.8; filter: alpha(opacity=80); cursor: pointer;  }
.jwplayer .jwicon:hover { opacity: 1; filter: alpha(opacity=100); }


.right_video{
	
	flex:0 0 30%;
	position: relative;
	height: 100%;
	margin-left: 100px;
}
.right_video .img{
	
	position:relative;
	margin-right: 5%;
}
.right_video .img img{
	
	
	position:relative;
	z-index: 99;
	padding: 10px;
}
.right_video .img:after{
	
	content:"";
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	background: #fff;
	box-shadow: 0 10px 30px rgba(5,25,34,.3);
}
.vico {
    background: url(../images/videoIco.png) no-repeat scroll center center;
    width: 55px;
    height: 55px;
    margin: 0px auto;
    display: block;
    cursor: pointer;
}
.right_video .con{
	
	position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -22.5px;
    z-index: 999;
    margin-top: -22.5px;
}

#videobox_logo{
	
	display:none;
}


/* con1list */
.con1list{
	
	display: flex;
	justify-content: space-between;
}
.con1list li{
	
	background: rgba(0,0,0,.6);
	color: #fff;
	text-align: center;
	padding: 30px 20px;
	flex:1;
	margin: 0 20px 0 0;
	border-radius: 5px;
}
.con1list li:hover{
	
	background:rgba(214,26,33,1);
}
.con1list li:last-child{
	
	margin-right:0;
}
.timer{
	
	font-size:30px;
}


/* news */
.con2{
	
	padding: 0 2.7vw;
}
.con2 .con2_title{
	
	display:flex;
	justify-content: space-between;
	align-items: center;
	padding:30px 0;
}
.con2 .con2_title h2{
	
	font-size:24px;
	font-weight: 500;
}
.con2 .con2_title h2 em{
	
	font-style: normal;
	color: #999;
	font-weight: lighter;
	margin-left: 20px;
	font-size: 16px;
}


.con2 .slider .news_list{
	
	height: auto;
	margin: 0 30px 30px 0
}

.con2 .slick-slide img{
	
	width:100%;
}
.con2 .slick-dots{
	
	    bottom: -20px;
}

.con2 .slick-dots li{
	
	display:inline-block;
	vertical-align: middle;
	padding: 0;
	width: 12px;
	height: 12px;
	background-color: transparent;
	border-radius: 50%;
	border: 2px solid #ddd;
	text-indent: -9999px;
	overflow: hidden;
	cursor: pointer;
	margin: 0 5px;
	
}
.con2 .slick-dots .slick-active{
	
	background: #d51920;
	border-color: #d51920;
}

.con2 .slider .slick-slide figure{
	
	overflow: hidden;
    transition: color 0.3s ease 0s;
	-webkit-margin-before: 0;
    -webkit-margin-after: 0;
    -webkit-margin-start: 0;
    -webkit-margin-end: 0;
	
}
.con2 .slider .slick-slide figure img {
    width: 100%;
    -webkit-transition: all 1s;
    -moz-transition: all 1s;
    -ms-transition: all 1s;
    transition: all 1s;
	
}
.con2 .slider .slick-slide:hover figure img{ 
	-webkit-transform: scale(1.1);
	-moz-transform: scale(1.1);
	-ms-transform: scale(1.1);
	transform: scale(1.1);
}

.news_list .txt{
	
	padding: 20px;
	width: 100%;
	background: #f5f5f5;
}
.news_list .txt h3{
	
	font-size:18px;
	font-weight: 700;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;color: #333;
        margin-bottom: 10px;
}
.news_list .txt p{
	
	font-size:14px;
	color:#999;
	overflow : hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	max-height: 60px;
	
}
.news_list:hover .txt{
	
	background: #d51920;
}
.news_list:hover .txt h3,.news_list:hover .txt p{
	
	color:#fff;
}
.con2{
	
	margin-bottom:50px;
}



.foot{
	
	background: #2c2726;
	color: #999;
	padding: 20px 2.7vw;
}
.foot_con{
	
	display:flex;
	justify-content: space-between;
}
.cp_banner{
	
	background: url(../images/cpbanner.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    min-height: 558px;
	margin-top: 80px;
}
.cp_banner2{
	
	background: url(../images/cpbanner2.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    min-height: 558px;
	margin-top: 80px;
}
.cp_banner3{
	
	background: url("../images/ny_banner3.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    min-height: 558px;
	margin-top: 80px;
}
.cp_banner4{
	
	background: url("../images/ny_banner4.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    min-height: 558px;
	margin-top: 80px;
}
.cp_banner .text{
	
	content: "";
    position: absolute;
    left: 2.7vw;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
	color:#fff;
}
.cp_banner .text h1{
	
	font-size:42px;
	margin-bottom: 10px;
}

.cplist{
	
	padding:2.7vh 2.7vw;
	background: #eee;
}
.cplist .hd {
	
	margin-bottom: 2.7vh;
	padding: 50px 0;
}
.cplist .hd ul{
	
	text-align:center;
}
.cplist .hd ul li{
	
	display: inline-block;
	font-size:16px;
}
.cplist .hd ul li.cture,.cplist .hd ul li.cture a:hover{
	
	background: #d8160f;
	color: #fff;
	border-radius: 30px;
	
}
.cplist .hd ul li.cture a{
	
	color:#fff;
}
.cplist .hd ul li a{
	
	display:block;
	padding:5px 20px;
	border-radius: 30px;
	
}
.cplist .hd ul li a:hover{
	
	background:#ddd;
}
.cplist .bd ul li{
	
	float:left;
	width: calc(25% - 37.5px);
	margin: 0 50px 30px 0;
	
}
.cplist .bd ul li:nth-child(4n){
	
	margin-right: 0;
}
.cplist .bd ul li .img{
	
	overflow: hidden;
	background: #fff;
	position:relative;
	transition: color 0.3s ease 0s;
}
.cplist .bd ul li .img img{
	
	width: 100%;
    -webkit-transition: all 1s;
    -moz-transition: all 1s;
    -ms-transition: all 1s;
    transition: all 1s;
}
.cplist .bd ul li:hover .img img{
	
	-webkit-transform: scale(1.1);
	-moz-transform: scale(1.1);
	-ms-transform: scale(1.1);
	transform: scale(1.1);
	
}
.cplist .bd ul li:hover .img{
	
	box-shadow: 0 10px 20px rgba(0,0,0,.1);
}
.cplist .bd ul li p{
	
	text-align: center;
	padding-top: 20px;
	overflow: hidden;
        text-overflow: ellipsis;
    	white-space: nowrap;
}
.cplist .bd ul li:hover p{
	
	color: #d8160f;
}

.fy{
	
	text-align:center;
	padding: 3vh 0;
}
.fy a,.fy span{
	
	padding:10px 20px;
	background: #fff;
	border-radius: 5px;
    margin: 0 5px;
}

.fy span,.fy a:hover{
	
	background:#d8160f;
	color: #fff;
}
.mbx{
	
	margin-top: 80px;
	
}
.mbxcon{
	
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 30px 0;
}
.pfx_c,.cpcs{
	
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	background: #fff;
	margin-bottom: 20px;
}
.pfx_cp_info{
	
	background: #fff;
	display: flex;
	padding: 30px;
	align-items: center;
}

.pfx_cp_info .left{
	
	flex:0 0 30%;
	width: 30%;
	margin-right: 5%;
}

.pfx_cp_info .left .slick-dots button{
	
	border-color:#ddd;
}
.pfx_cp_info .left .slick-dots .slick-active button{
	
	background: #d8160f;
	border-color: #d8160f;
}
.pfx_cp_info .right{
	
	flex:0 0 60%;
	
}
.pfx_cp_info .right h1{
	
	font-size:24px;
}
.pfx_cp_info .right h2{
	
	font-size:18px;
	color: #d8160f;
	font-weight: 500;
	margin: 30px 0;
	border-bottom: dashed 2px #d8160f;
	display: inline-block;
	padding-bottom: 5px;
}
.pfx_cp_info .right ul li{
	
	list-style-type:disc;
	font-size:15px;
	color: #999;
	margin-bottom: 10px;
}
.pfx_cp_info .right ul{
	
	padding-left: 20px;
}



.cpcscon{
	
	background: #fff;
	padding: 30px;
}

.cpcscon h2 {
    font-size: 24px;
    margin-bottom: 20px;
    background: #d70c04;
    color: #fff;
    padding: 0 20px;
    height: 50px;
    line-height: 50px;
}

.cpcscon table tr th{
	
	background: #f5f5f5;
	height: 50px;
	line-height: 50px;
	border: solid 1px #ddd;
}
.cpcscon table tr td{
	
	border:solid 1px #ddd;
	text-align: center;
	padding: 10px;
	color: #999;
}
.cpcscon table tr td img{
	
	display: block;
	margin: 0 auto;
}


.banner_link{
	
	position: absolute;
	left: 0;
	bottom:0;
	width: 100%;
	height: 70px;
	background: rgba(0,0,0,.3);
}
.banner_link a{
	
	display: block;
	width: 50%;
	color: #fff;
	font-size:24px;
	float:left;
	text-align: center;
	line-height: 70px;
}
.banner_link a.cture,.banner_link a.cture:hover{
	
	background:rgba(216,22,15,.6);
}

.banner_link a:hover{
	
	background:rgba(216,22,15,.2);
}



.pfx_cp_info .left .slick-dots{
	
	bottom:0;
}

.pfx_cp_info .right p{
	
	font-size:15px;
	color: #999;
	margin-bottom: 20px;
	line-height: 28px;
}
.pfx_cp_info .right p strong{
	
	font-weight: 700;
	color: #333;
}

.slick-slide img{ width:100%;}

.tbcon tr td:nth-child(odd){
	
	background: #f5f5f5;
	font-weight: 700;
	color: #333;
}


.maincon{
	
	background: #eee;
	padding-bottom: 30px;
}

.news{
	
	background: #eee;
}
.news .hjzs{
	
	padding:2.7vh 2.7vw;
}
.hjzs ul li{
	
	display:flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 20px;
}
.hjzs ul li .img{
	
	flex:0 0 26%;
}
.hjzs ul li .txt{
	
	flex:0 0 50%;
}
.hjzs ul li .date{
	
	flex:0 0 15%;
}
.hjzs ul li .img{
	
	transition: color 0.3s ease 0s;
	overflow: hidden;
}
.hjzs ul li .img img{
	
	-webkit-transition: all 1s;
    -moz-transition: all 1s;
    -ms-transition: all 1s;
    transition: all 1s;
}
.hjzs ul li:hover .img img{
	
	-webkit-transform: scale(1.1);
	-moz-transform: scale(1.1);
	-ms-transform: scale(1.1);
	transform: scale(1.1);
}
.hjzs ul li:hover{
	
	background: #fff;
}
.hjzs ul li .txt h2 a,.hjzs ul li .txt h2{
	
	color:#333;
	margin-bottom: 20px;
	display: block;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.hjzs ul li .txt p{
	
	color: #999;
	overflow : hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp:3;
	-webkit-box-orient: vertical;
}
.hjzs ul li:hover .txt h2,.hjzs ul li:hover .txt h2 a{
	
	color:#da221b;
}
.hjzs ul li .date{
	
	border-left: solid 1px #ddd;
	justify-content: center;
    display: grid;

}
.hjzs ul li .date span{
	
	text-align: right;
	display: block;
	color: #999;
}
.hjzs ul li .date span:last-child{
	
	font-size:30px;
	color:#666;
}

.news_info{
	
	width:100%;
	margin: 0 auto;
	max-width: 1200px;
	background: #fff;
	padding: 20px;
}
.news_info .news_info_title {
	
	text-align:center;
	
}
.news_info .news_info_title h2{
	
	padding: 20px 0;
	font-size:24px;
	
}
.news_info .news_info_title .date{
	
	color:#999;
	margin-bottom: 20px;
}
.news_info_jj{
	
	background: #f5f5f5;
	padding: 20px;
	color: #999;
	border:solid 1px #ddd;
	font-size:15px;
	line-height: 28px;
}

.news_info_con{
	
	padding:20px 0;
}
.news_info_con p {
	
	margin-bottom:20px;
	font-size:15px;
	line-height: 28px;
	color: #666;
}

.contacts{
	
	background:#eee;
	padding:2.7vh 2.7vw;
}
.contactslx {
    background: #fff;
    padding: 30px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.contactslx .contacts_txt{
	
	flex:0 0 50%;
	padding: 0 5%;
	border-left: solid 1px #ddd;
}
.contactslx .contacts_txt:first-child{
	
	border-left:0;
}
.contactslx .contacts_txt h2{
	
	font-size:24px;
	margin-bottom:20px;
}
.contactslx .contacts_txt p{
	
	color: #666;
	margin-bottom: 10px;
	font-size:15px;
}

.con2 .slick-slider{ margin-top:0;}
.slick-slider{
	
	margin-top:80px;
}


.delighter.started .txt{ transition: all .7s ease-out .1s; }