@charset "utf-8";
/* CSS Document */
* {padding:0px;margin:0px;word-wrap:break-word;-webkit-appearance:none;-webkit-tap-highlight-color:rgba(0,0,0,0);box-sizing: border-box;-webkit-box-sizing: border-box;-moz-box-sizing: border-box;}
body{color:#333;font-family: 'MicrosoftYaHei';background-color: #f5f5f5;font-size:14px;max-width:1920px;margin:0px auto;-webkit-text-size-adjust: none;width: 100%;min-width: 1440px;overflow-x: hidden;}
html,address, blockquote, div, dl, form, h1, h2, h3, h4, h5, h6, ol, p, pre, table, ul, dd, dt, li, tbody, td, tfoot, th, thead, tr, button, del, ins, map, object,
a, abbr, acronym, b, bdo, big, br, cite, code, dfn, em, i, img, kbd, q, samp, small, span,
strong, sub, sup, tt, var, legend, fieldset {-webkit-text-size-adjust: none;margin: 0;padding: 0;}
html{scroll-behavior: smooth;}
a{transition: color 0.4s;}
ol,ul,li{list-style:none;list-style-image:none;list-style-position:outside;list-style-type:none;color: #666666;}
img, fieldset,abbr,acronym {border:0 none;}
del,ins{text-decoration:none; }
a{ text-decoration:none; color:#000;outline:none;-webkit-appearance:none;transition: all 0.3s;-moz-transition: all 0.3s;-webkit-transition: all 0.3s;-o-transition: all 0.3s;}
table{border-collapse:collapse;}
i,b,address{ text-decoration:none; font-style:normal; font-weight:lighter;}
caption{ text-align:left;}
time,mark{ margin:0px; padding:0px; background:none}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {display: block;margin: 0;padding: 0;}
i, cite, em { font-style: normal;}
.flex_vertical_align { /*垂直居中*/ display: flex; display: -webkit-flex; align-items: center; -webkit-align-items: center; }
.flex_align { /*垂直与水平居中*/ display: flex; display: -webkit-flex; justify-content: center;-webkit-justify-content: center;  align-items: center;  -webkit-align-items: center;  }
h1,h2,h3,h4,h5,h6{font-size:14px;font-weight:500;}
form, fieldset, legend, input, button, textarea, p, blockquote,select{-webkit-appearance:none;font-size:14px;font-family:"microsoft Yahei",Arial, Helvetica, sans-serif;}
img{-ms-interpolation-mode:bicubic;max-width: 100%;}/*防止windows缩放图片时，图像失真*/
/*一排省略号*/
.clamp1 {overflow: hidden;white-space: nowrap;text-overflow: ellipsis;}
/*两排省略号*/
.clamp2 {display: -webkit-box;-webkit-box-orient: vertical;-webkit-line-clamp: 2;overflow: hidden;}
/*三排省略号*/
.clamp3 {display: -webkit-box;-webkit-box-orient: vertical;-webkit-line-clamp: 3;overflow: hidden;}
.clb{clear: both !important;}
.fl{float: left !important;}
.fr{float: right !important;}
.rotate90{display: inline-block;transform:rotate(90deg);-ms-transform: rotate(90deg);-moz-transform: rotate(90deg);-webkit-transform: rotate(90deg);-o-transform: rotate(90deg);}
.excessive{transition: all 0.3s;-moz-transition: all 0.3s;-webkit-transition: all 0.3s;-o-transition: all 0.3s;}
.astrict{
	max-width: 1400px;
	margin: 0 auto;
	min-width: 1200px;
	position: relative;
}
/* 鼠标移入增加边框 */
.aperture{
	position: relative;
}
.aperture .borderline{
	width: 0;
	height: 0;
	position: absolute;
	background-color: #d7282b;
	transition: all 0.3s;
	-moz-transition: all 0.3s;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
}
.aperture .line1{
	left: 0;
	top: 0;
	height: 2px !important;
}
.aperture .line2{
	left: 0;
	top: 0;
	width: 2px !important;
}
.aperture .line3{
	right: 0;
	bottom: 0;
	height: 2px !important;
}
.aperture .line4{
	right: 0;
	bottom: 0;
	width: 2px !important;
}
.aperture:hover .borderline{
	width: 100%;
	height: 100%;
}

/* 鼠标移入按钮*/
.comhoverbtn{
	position: relative;
	overflow: hidden;
}
.comhoverbtn::before{
	content: "";
	position: absolute;
	z-index: -1;
	width: 0;
	height: 0;
	left: 0;
	top: 50%;
	left: 50%;
	border-radius: 60px;
	background-color: #d7282b;
	transform: translate(-50%, -50%);
	transition: all 0.5s;-moz-transition: all 0.5s;-webkit-transition: all 0.5s;-o-transition: all 0.5s;
}
.comhoverbtn:hover::before{
	width: 100px;
	height: 100px;
}
.comhoverbtn2{
	position: relative;
	overflow: hidden;
}
.comhoverbtn2::before{
	content: "";
	position: absolute;
	z-index: -1;
	width: 0;
	height: 0;
	left: 0;
	top: 50%;
	left: 50%;
	border-radius: 60px;
	background-color: #FFFFFF;
	transform: translate(-50%, -50%);
	transition: all 0.5s;-moz-transition: all 0.5s;-webkit-transition: all 0.5s;-o-transition: all 0.5s;
}
.comhoverbtn2:hover::before{
	width: 100px;
	height: 100px;
}
/* 底部线条 */
.lively_line{
	position: relative;
}

.lively_line::after{
	content: "";
	position: absolute;
	width: 100%;
	height: 1px;
	background-color: #e6e6e6;
	left: 0;
	bottom: 0;
}
.lively_line::before{
	content: "";
	position: absolute;
	width: 0%;
	height: 1px;
	background-color: #d7282b;
	z-index: 10;
	bottom: 0;
	left: 0;
	transition-timing-function:ease;
	transition: all 0.6s;
	-moz-transition: all 0.6s;
	-webkit-transition: all 0.6s;
	-o-transition: all 0.6s;
}
.lively_line:hover::before{
	width: 100%;
}
/* 回到头部 */
.gotop{
	width: 60px;
	height: 54px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: fixed;
	bottom: -54px;
	right: 50px;
	background: #c11f1c;
	border-radius: 2px;
	box-sizing: border-box;
	padding: 10px;
	z-index: 99;
	flex-wrap: wrap;
	transition: all 0.4s linear;
	cursor: pointer;
}
.gotop p{
	font-size: 14px;
	color: #fff;
	line-height: 18px;
}
.gotop:hover{
	cursor: pointer;
	opacity: 0.8 !important;
}
/* 通用头部 */
.header_box{
	position: fixed;
	z-index: 50;
	width: 100%;
	height: 90px;
	left: 0;
	top: 0;
	background-color: #FFFFFF;
	border-bottom: 1px solid #E6E6E6;
}
.header_box .nav_select{
	width: 1580px;
	margin: 0 auto;
	height: 90px;
}
.header_box .home{
	padding: 22px 0;
	float: left;
}
.header_box .home .logo{
	height: 45px;
}
.header_box .nav_select .nav{
	float: left;
	padding-right: 15px;
}

.header_box .nav_select .shu{
    width: 1px;
    height: 13px;
    background-color: #cccccc;
    float: left;
    margin-top: 38.5px;
    margin: 38.5px 0px 0;
}
.header_box .nav_select .select{
    height: 90px;
    display: inline-block;
    padding: 36.5px 23px;
}
.header_box .nav_select .select .icon,.header_box .nav_select .select .iconhover{
    width: 18px;
}
.header_box .nav_select .select .iconhover,.header_box .nav_select .select:hover .icon{
	display: none;
}
.header_box .nav_select .select:hover .iconhover{
	display: inline-block;
}
.header_box .nav_select .nav_item{
	height: 90px;
	line-height: 90px;
	width: 123px;
	float: left;
}
.header_box .nav_select .navIcon{
	opacity: 0;
	position: absolute;
	top: 38px;
	margin-left: 0px;
	transition: all 0.5s;
	-moz-transition: all 0.5s;
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
}
.header_box .nav_select .nav_item .name{
	font-size: 18px;
	color: #333333;
	width: 100%;
	display: inline-block;
	text-align: right;
	padding-right: 10px;
}
.header_box .nav_select .nav_item.opt .name{
	color: #e60013;
}
.header_box .nav_select .nav_item.opt .navIcon,.header_box .nav_select .nav_item:hover .navIcon{
	opacity: 1;
	margin-left: 17px;
}
.header_box .nav_select .nav_item:hover .name{
	color: #e60013;
}
.header_box .nav_select .children-box{
	background: url("../Images/navTowBack.png") left top no-repeat;
	position: absolute;
	width: 100%;
	left: 0;
	text-align: right;
	height: 0px;
	top: 90px;
	z-index: 10;
	overflow: hidden;
}
.header_box .nav_select .nav_item:hover .children-box{
	transition: all 0.6s;
	-moz-transition: all 0.6s;
	-webkit-transition: all 0.6s;
	-o-transition: all 0.6s;
	height: 120px;
}
.header_box .nav_select .children-box .valid{
	width: 1580px;
	margin: 20px auto 20px -790px;
	position: absolute;
	bottom: 0;
	left: 50%;
}
.header_box .nav_select .children-box .item{
    float: right;
}
.header_box .nav_select .children-box .item .li{
    font-size: 16px;
    color: #666666;
    margin: 0 15px;
    line-height: 80px;
    display: inline-block;
    position: relative;
    float: left;
    z-index: 5;
}
.header_box .nav_select .children-box .item .li::before{
	content: "";
	position: absolute;
	left: 0;
	top: 41px;
	width: 0%;
	height: 8px;
	background-color: #eab06e;
	z-index: -1;
	border-radius: 2px;
	transition: all 0.3s;
	-moz-transition: all 0.3s;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	background-image: linear-gradient(90deg,#eab06e 0,#eab06e 40%,#FFFFFF 100%);
}
.header_box .nav_select .children-box .item .li.opt,.header_box .nav_select .children-box .item .li:hover{
	color: #000000;
}
.header_box .nav_select .children-box .item .li.opt::before,.header_box .nav_select .children-box .item .li:hover::before{
	width: 100%;
}
.header_box .nav_select .children-box .itemImg{
    float: right;
    width: 180px;
    height: 80px;
    margin-left: 20px;
}
/* 通用头部结束 */

/* 通用底部 */
.footer{
	height: 388px;
	background: url("../Images/footerBack.png") center no-repeat;
	background-color: #242424;
}
.footer .relation{
    width: 100%;
    display: inline-block;
    padding-top: 40px;
    height: 270px;
    border-bottom: 1px solid #353535;
    float: left;
}
.footer .valid{
    width: 1400px;
    margin: 0 auto;
}
.footer .relation .fl p{
    font-size: 16px;
    color: #808080;
    line-height: 16px;
}
.footer .relation .fl .phone{
    font-weight: bold;
    font-size: 34px;
    color: #ffffff;
    line-height: 34px;
    margin-top: 18px;
}
.footer .relation .fl .heng{
    width: 18px;
    height: 3px;
    background-color: #dd3032;
    margin-top: 16px;
}
.footer .relation .fl .address{
    margin-top: 15px;
    line-height: 21px;
    color: #808080;
    font-size: 16px;
}
.footer .relation .fl .address .icon{
    width: 18px;
    height: 21px;
    float: left;
    margin-right: 10px;
}
.footer .relation .fl .email{
	display: inline-block;
}
.footer .relation .fl .email a{
	display: block;
    padding-top: 24px;
	margin-right: 30px;
	float: left;
}
.footer .relation .fl .email a:hover{
	padding-top: 14px;
}
.footer .relation .fr .ewm_model{
    width: 200px;
    float: right;
    text-align: center;
}
.footer .relation .fr .ewm_model p{
    font-size: 14px;
    color: #FFFFFF;
}
.footer .relation .fr .ewm_model .img{
    display: block;
    margin: 9px auto 14px;
}
.footer .fellowship{
    height: 117px;
    padding-top: 31px;
    display: inline-block;
    width: 100%;
    float: left;
}
.footer .select{
    position: relative;
    width: 302px;
    float: left;
    margin-right: 20px;
}
.footer .select .inputdiv{
    width: 100%;
    height: 50px;
    background-color: #242424;
    border: solid 1px #767676;
    line-height: 48px;
    text-align: center;
    font-size: 16px;
    color: #767676;
    padding-right: 50px;
    position: relative;
}
.footer .select .inputdiv .jt{
    position: absolute;
    right: -1px;
    top: -1px;
    width: 50px;
    height: 50px;
    background-color: #d7282b;
    padding: 3px;
}
.footer .select .inputdiv .jt .iconxia{
    width: 14px;
}
.footer .select:hover{
	cursor: pointer;
}
.footer .select:hover .ul{
	height: 257px;
	border: solid 1px #454a53;
}
.footer .select .ul{
    position: absolute;
    bottom: 50px;
    left: 0;
    width: 100%;
    background-color: #282B31;
    overflow: auto;
    height: 0;
	
}
.footer .select .ul::-webkit-scrollbar{width:5px;height:10px;cursor: pointer;}
.footer .select .ul::-webkit-scrollbar-button{background-color:rgba(0,0,0,0.1);cursor: pointer;}
.footer .select .ul::-webkit-scrollbar-track{background:rgba(0,0,0,0.1);cursor: pointer;}
.footer .select .ul::-webkit-scrollbar-track-piece{cursor: pointer;}
.footer .select .ul::-webkit-scrollbar-thumb{background:#999;border-radius:4px;cursor: pointer;}
.footer .select .ul::-webkit-scrollbar-corner{background:#ccc;cursor: pointer;}
.footer .select .ul::-webkit-scrollbar-resizer{background:#ccc;cursor: pointer;}
.footer .select .ul .li{
    width: 100%;
    display: inline-block;
    padding: 0 20px;
    color: #BEBEBF;
    border-bottom: 1px solid #666666;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    float: left;
    line-height: 50px;
}
.footer .select .ul .li:hover{
	background-color: #d7282b;
	color: #FFFFFF;
}
.footer .link{
	line-height: 50px;
	display: inline-block;
	float: right;
	width: 740px;
	height: 50px;
	overflow: hidden;
}
.footer .link span{
    color: #d7282b;
    font-size: 16px;
    margin-left: 46px;
}
.footer .link .a{
    font-size: 16px;
    color: #999999;
    margin-left: 30px;
}
.footer .link .a:hover{
	color: #d7282b;
}
.footer .records{
    height: 90px;
    background-color: #101010;
    line-height: 90px;
    text-align: center;
    font-size: 16px;
    color: #999999;
    clear: both;
    display: inline-block;
    width: 100%;
}
.footer .records a{
    color: #999999;
}
.footer .records a:hover{
	color:#d7282b !important;
}
/* 通用底部结束*/


/* 分页器 */
.page_div {
	font-size: 15px;
	font-family: "microsoft yahei";
	color: #666666;
	margin-right: 10px;
	padding-left: 20px;
	box-sizing: border-box;
	text-align: center;
}
.page_div ul{
	display: flex;
	justify-content: center;
}
.page_div a ,.page_div span{
	padding: 0 15px;
	height: 36px;
	border: 1px solid #dce0e0!important;
	text-align: center;
	margin: 0 8px;
	cursor: pointer;
	line-height: 34px;
	color: #666666;
	font-size: 13px;
	display: inline-block;
}
.page_div a:hover ,.page_div span:hover{
	background-color: #ec222e;
	border-color: #ec222e;
	color: #FFFFFF;
}
#firstPage,
#lastPage {
	width: 60px;
	color: #999999;
	border: 1px solid #cccccc!important;
}
#prePage,
#nextPage {
	width: 80px;
	color: #999999;
	border: 1px solid #cccccc!important;
}
.page_div .active span{
	background-color: #ec222e;
	border-color: #ec222e;
	color: #FFFFFF;
}

.totalPages {
	margin: 0 10px;
}
.totalPages span,
.totalSize span {
	color: #999999;
	margin: 0 5px;
}

/* 首页 */

.indexPage{
	width: 100%;
	height: 100%;
	margin-left: auto;
	margin-right: auto;
	position: fixed;
	left: 0;
	top: 0;
	background-color: #FFFFFF;
}
.indexPage>.swiper-wrapper{
	width: 100%;
	height: 100%;
}
.indexPage>.swiper-wrapper>.swiper-slide {
	width: 100%;
	overflow: hidden;
}
.indexPage .swiper_fill {
	height: 100%;
}
.indexPage .swiper_header {
	height: 477px;
}

.indexPage .swiperBanner{
	width: 100%;
	height: 100%;
	padding-top: 90px;
}
.indexPage .swiperBanner .swiper-wrapper{
	width: 100%;
	height: 100%;
}
.indexPage .swiperBanner .swiper-slide{
	width: 100%;
	height: 100%;
}
.indexPage .swiperBanner .swiper-pagination{
	text-align: left;
	padding: 26px 170px 0;
	bottom: 0;
	height: 70px;
	border-top: 1px solid rgba(255,255,255,0.1);
}
.indexPage .swiperBanner .swiper-pagination .swiper-pagination-bullet{
	opacity: 1;
	background-color: rgba(255,255,255,0);
	border: 1px solid #ffffff;
	width: 12px;
	height: 12px;
}
.indexPage .swiperBanner .swiper-pagination .swiper-pagination-bullet-active{
	background-color: #d52f2f;
	border: 1px solid rgba(255,255,255,0);
}
.indexPage .swiperBanner .button-next{
	position: absolute;
	bottom: 0;
	right: 0;
	width: 70px;
	height: 70px;
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 20;
	cursor: pointer;
}
.indexPage .swiperBanner .button-next::after{
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	height: 70px;
	width: 0;
	z-index: 0;
	background-color: #e60013;
	transition: all 0.4s;
	-moz-transition: all 0.4s;
	-webkit-transition: all 0.4s;
	-o-transition: all 0.4s;
}
.indexPage .swiperBanner .button-next:hover::after{
	width: 100%;
	left: auto;
	right: 0;
}
.indexPage .swiperBanner .button-prev{
	position: absolute;
	bottom: 0;
	right: 70px;
	width: 70px;
	height: 70px;
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 20;
	cursor: pointer;
}
.indexPage .swiperBanner .button-prev::after{
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	height: 70px;
	width: 0;
	z-index: 0;
	background-color: #e60013;
	transition: all 0.4s;
	-moz-transition: all 0.4s;
	-webkit-transition: all 0.4s;
	-o-transition: all 0.4s;
}
.indexPage .swiperBanner .button-prev:hover::after{
	width: 100%;
	left: auto;
	right: 0;
}
.indexPage .swiperBanner .swiper-button-next{
	position: relative;
	height: 20px;
	right: 0px;
	top: auto;
	left: -5px;
	bottom: auto;
	margin: 0 auto;
	opacity: 0.6;
}
.indexPage .swiperBanner .swiper-button-prev{
	position: relative;
	height: 20px;
	right: 0px;
	top: auto;
	left: 5px;
	bottom: auto;
	margin: 0 auto;
	opacity: 0.6;
}
.indexPage .swiperBanner .button-next:hover .swiper-button-next,.indexPage .swiperBanner .button-prev:hover .swiper-button-prev{
	opacity: 1;
}

/* 首页新闻模块 */

.indexPage .news_center{
	background: url("../Images/indexnewsback.png") center no-repeat;
	padding-top: 90px;
	height: 100%;
	width: 100%;
}
.indexPage .news_center .newstop{
	width: 1480px;
	height: 143px;
	margin: 0 auto;
	padding-top: 55px;
	
}
.indexPage .news_center .newstop .txtlogo{
    float: left;
}
.indexPage .news_center .newstop .changetype{
    float: right;
    margin-top: 16px;
}
.indexPage .news_center .newstop .changetype .item{
    float: left;
    height: 43px;
    display: flex;
    align-items: center;
    margin-right: 48px;
	position: relative;
	cursor: pointer;
}
.indexPage .news_center .newstop .changetype .item::after{
	content: "";
	position: absolute;
	width: 0%;
	height: 2px;
	background-color: #d7282b;
	left: 0;
	bottom: 0;
	border: 1px;
	transition: all 0.3s;
	-moz-transition: all 0.3s;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
}
.indexPage .news_center .newstop .changetype .item.opt::after,.indexPage .news_center .newstop .changetype .item:hover::after{
	width: 100%;
}
.indexPage .news_center .newstop .changetype .item .newsicon{
    max-width: 28px;
    max-height: 28px;
    margin-right: 8px;
}
.indexPage .news_center .newstop .changetype .item .newsiconhover{
    max-width: 28px;
    max-height: 28px;
    margin-right: 8px;
    display: none;
}
.indexPage .news_center .newstop .changetype .item span{
    font-size: 20px;
	color: #000000;
}
.indexPage .news_center .newstop .changetype .item.opt .newsicon,.indexPage .news_center .newstop .changetype .item:hover .newsicon{
	display: none;
}
.indexPage .news_center .newstop .changetype .item.opt .newsiconhover,.indexPage .news_center .newstop .changetype .item:hover .newsiconhover{
	display: inline-block;
}
.indexPage .news_center .newstop .changetype .item.opt span,.indexPage .news_center .newstop .changetype .item:hover span{
	color: #da021b;
}

.indexPage .news_center .newstop .changetype .more{
    width: 86px;
    height: 30px;
    border-radius: 15px;
    border: solid 1px #d7282b;
    display: inline-block;
    text-align: center;
    line-height: 28px;
    margin-top: 6px;
    font-size: 16px;
    color: #dd3032;
	z-index: 2;
    margin-left: 52px;
}
.indexPage .news_center .newstop .changetype .more:hover{
	color: #FFFFFF;
}
.indexPage .news_center .news_swiper{
	width: 100%;
	background-color: #f5f5f5;
	height: 400px;
	padding: 6px 0;
}
.indexPage .news_center .news_swiper .swiper-container{
	width: 100%;
	height: 360px;
}
.indexPage .news_center .news_swiper .swiper-wrapper{
	height: 360px;
}
.indexPage .news_center .news_swiper .swiper-slide{
	height: 360px;
}
.indexPage .news_center .news_swiper .newsitem{
	width: 100%;
	height: 330px;
	position: relative;
	padding: 48px 20px 50px 63%;
	display: inline-block;
	background-color: #FFFFFF;
	margin: 30px auto 0;
	transition: all 0.3s;-moz-transition: all 0.3s;-webkit-transition: all 0.3s;-o-transition: all 0.3s;
	
}
.indexPage .news_center .news_swiper .newsitem:hover{
	margin-top: 20px;
}
.indexPage .news_center .news_swiper .newsitem .img{
	position: absolute;
	left: 0;
	top: 0;
	width: 60%;
	height: 330px;
	background-size: auto 100% !important;
}
.indexPage .news_center .news_swiper .newsitem .title{
    font-size: 16px;
    font-weight: normal;
    font-stretch: normal;
    height: 16px;
    letter-spacing: 0px;
    color: #d7282b;
}
.indexPage .news_center .news_swiper .newsitem .name{
    font-size: 20px;
    line-height: 24px;
    color: #000000;
    font-weight: bold;
    margin-top: 14px;
    height: 48px;
    overflow: hidden;
}
.indexPage .news_center .news_swiper .newsitem .p{
    height: 72px;
    font-size: 16px;
    line-height: 24px;
    color: #666666;
    margin-top: 27px;
}
.indexPage .news_center .news_swiper .newsitem .date{
    font-size: 14px;
    color: #666666;
    opacity: 0.84;
    margin-top: 50px;
}
.indexPage .news_center .news_swiper .prior{
	position: absolute;
	left: 12%;
	top: 147px;
	width: 46px;
	height: 46px;
	z-index: 10;
	cursor: pointer;
}
.indexPage .news_center .news_swiper .prior .changeiconhover,.indexPage .news_center .news_swiper .next .changeiconhover,.indexPage .news_center .news_swiper .prior:hover .changeicon,.indexPage .news_center .news_swiper .next:hover .changeicon{
    display: none;
}
.indexPage .news_center .news_swiper .next{
    position: absolute;
    left: 12%;
    top: 209px;
    width: 46px;
    height: 46px;
    z-index: 10;
	cursor: pointer;
}
.indexPage .news_center .news_swiper .prior:hover .changeiconhover,.indexPage .news_center .news_swiper .next:hover .changeiconhover{
    display: inline-block;
}
.indexPage .news_center .newslist{
    width: 1400px;
    padding-top: 15px;
    margin: 0 auto;
}
.indexPage .news_center .newslist .list{
    height: 200px;
    overflow: hidden;
    display: none;
}
.indexPage .news_center .newslist .list.opt{
    display: inline-block;
}
.indexPage .news_center .newslist .list .item{
    width: 645px;
    position: relative;
    height: 50px;
    display: inline-block;
    line-height: 50px;
    margin-right: 110px;
    padding-right: 100px;
    font-size: 16px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    float: left;
}
.indexPage .news_center .newslist .list .item:nth-child(2n){
	margin-right: 0px;
}
.indexPage .news_center .newslist .list .item .title{
    color: #d7282b;
}
.indexPage .news_center .newslist .list .item .shu{
    color: #cccccc;
}
.indexPage .news_center .newslist .list .item .date{
    line-height: 50px;
    position: absolute;
    right: 0;
    color: #666666;
    opacity: 0.84;
    font-size: 14px;
}
.indexPage .news_center .newslist .list .item:hover{
	color: #d7282b;
}
/* 视频中心 */
.indexPage .video_center{
    position: relative;
    padding-top: 90px;
	width: 100%;
	height: 100%;
	overflow: hidden;
	background-color: #F5F5F5;
}
.indexPage .video_center .backimg{
    position: absolute;
    left: 50%;
    margin-left: 252px;
    top: 90px;
    z-index: 0;
}
.indexPage .video_center .valid{
    width: 1400px;
    margin: 47px auto;
    position: relative;
    z-index: 5;
}
.indexPage .video_center .validtop{
    width: 100%;
    height: 67px;
}
.indexPage .video_center .validtop .txtlogo{
    float: left;
}
.indexPage .video_center .validtop .more{
    float: right;
    width: 86px;
    height: 30px;
    border-radius: 15px;
    border: solid 1px #ffffff;
    display: inline-block;
    text-align: center;
    line-height: 28px;
    margin-top: 37px;
    font-size: 16px;
    color: #ffffff;
    z-index: 2;
    margin-left: 52px;
}
.indexPage .video_center .validtop .more:hover{
	color: #d7282b;
}
.indexPage .video_center .video-box{
    width: 100%;
    margin-top: 24px;
	display: inline-block;
}
.indexPage .video_center .video_model{
    width: 929px;
    float: left;
}
.indexPage .video_center .video_model .item{
    width: 100%;
	display: none;
}
.indexPage .video_center .video_model .item.opt{
	display: inline-block;
}
.indexPage .video_center .video_model .item .video{
    width: 929px;
    height: 540px;
    background-color: #000000;
    float: left;
}
.indexPage .video_center .video_model .item .names{
    line-height: 75px;
    height: 75px;
    padding-right: 140px;
    width: 100%;
    position: relative;
    font-size: 24px;
    color: #000000;
    font-weight: bold;
}
.indexPage .video_center .video_model .item .names .title{
    float: left;
    font-size: 14px;
    font-weight: normal;
    color: #d7282b;
    background-color: #fff5f5;
    border-radius: 0px 10px 0px 0px;
    border: solid 1px #d7282b;
    height: 24px;
    line-height: 24px;
    text-align: center;
    margin: 25.5px 11px 0 0;
    padding: 0 6px;
    max-width: 100px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.indexPage .video_center .video_model .item .names h4{
    float: left;
}
.indexPage .video_center .video_model .item .names .date{
    position: absolute;
    right: 0;
    line-height: 75px;
    top: 0;
    font-size: 24px;
    color: #d7282b;
}
.indexPage .video_center .video_model .item .names .date .day{
    font-size: 40px;
}
.indexPage .video_center .video-list{
    float: right;
    width: 448px;
}
.indexPage .video_center .video-list .item{
    height: 135px;
    padding: 11px 20px 11px 23px;
	position: relative;
	transition: all 0.3s;-moz-transition: all 0.3s;-webkit-transition: all 0.3s;-o-transition: all 0.3s;
}
.indexPage .video_center .video-list .item::after{
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	z-index: -1;
	background-color: rgba(0,0,0,0.2);
	width: 0;
	transition: all 0.3s;-moz-transition: all 0.3s;-webkit-transition: all 0.3s;-o-transition: all 0.3s;
}
.indexPage .video_center .video-list .item .poster{
    width: 171px;
    height: 113px;
    background-color: #aba6a6;
    float: left;
    margin-right: 24px;
}
.indexPage .video_center .video-list .item .name{
    height: 48px;
    font-weight: bold;
    font-size: 18px;
    line-height: 24px;
    letter-spacing: 0px;
    color: #ffffff;
    margin-top: 10px;
}
.indexPage .video_center .video-list .item .date{
    font-size: 14px;
    color: #eab06d;
    opacity: 0.84;
    margin-top: 24px;
}
.indexPage .video_center .video-list .item:hover,.indexPage .video_center .video-list .item.opt{
	padding-left: 43px;
	padding-right: 0;
	cursor: pointer;
}
.indexPage .video_center .video-list .item:hover::after,.indexPage .video_center .video-list .item.opt::after{
	width: 200%;
}

/* 党建 风采 动态 */
.indexPage .message{
	background: url("../Images/indexdjback.png") center no-repeat;
	padding-top: 90px;
	height: 100%;
	width: 100%;
}
.indexPage .message .valid{
	width: 1400px;
	margin: 0 auto;
	padding-top: 72px;
}
.indexPage .message .model_name{
	width: 100%;
	height: 75px;
}
.indexPage .message .model_name .txtlogo{
	float: left;
}
.indexPage .message .model_name .more{
	width: 86px;
	height: 30px;
	border-radius: 15px;
	border: solid 1px #d7282b;
	display: inline-block;
	text-align: center;
	line-height: 28px;
	margin-top: 19px;
	font-size: 16px;
	color: #dd3032;
	z-index: 2;
	float: right;
}
.indexPage .message .model_name .more:hover{
	color:#FFFFFF;
}
.indexPage .message .party{
	width: 400px;
	float: left;
	height: 622px;
	overflow: hidden;
}
.indexPage .message .party .txtlist{
	height: 547px;
	background-color: #FFFFFF;
	background-image: url('../Images/banner.jpg');
	background-size: 100% 191px;
	background-position:top;
	background-repeat:no-repeat;
	padding: 33px 30px 0;
}
.indexPage .message .txtlist{
	width: 100%;
}
.indexPage .message .txtlist .firstitem{
	width: 100%;
	margin-bottom: 7px;
	display: block;
	cursor: pointer;	
}
.indexPage .message .txtlist .firstitem .img{
	width: 100%;
	height: 200px;
	display: block;
}
.indexPage .message .txtlist .firstitem h3{
	font-size: 20px;
	color: #000000;
	font-weight: bold;
	line-height: 20px;
	margin-top: 20px;
}
.indexPage .message .txtlist .firstitem p{
	height: 14px;
	font-size: 14px;
	line-height: 14px;
	margin-top: 13px;
	color: #666666;
}
.indexPage .message .txtlist .firstitem:hover h3,.indexPage .message .txtlist .firstitem:hover p{
	color: #d7282b;
}
.indexPage .message .txtlist .li{
	height: 79px;
	position: relative;
	padding: 22px 0 0 25px;
	display: inline-block;
	width: 100%;
}
.indexPage .message .txtlist .li .dian{
	position: absolute;
	left: 0;
	top: 28px;
	width: 6px;
	height: 6px;
	background-color: #999999;
}
.indexPage .message .txtlist .li .name{
	font-size: 16px;
	color: #000000;
	line-height: 16px;
}
.indexPage .message .txtlist .li .date{
	color: #666666;
	opacity: 0.84;
	margin-top: 8px;
	font-size: 14px;
}
.indexPage .message .txtlist .li:hover .dian{
	background-color: #d7282b;
}
.indexPage .message .txtlist .li:hover .name,.indexPage .message .txtlist .li:hover .date{
    color: #d7282b;
}
.indexPage .message .elegant{
	width: 570px;
	float: left;
	height: 622px;
	margin-left: 50px;
}
.indexPage .message .elegant .elegant_swiperm.indexPage .message .elegant .elegant_swiper .swiper-wrapper,.indexPage .message .elegant .elegant_swiper .swiper-slide{
	width: 100%;
	height: 547px;
	background-color: #FFFFFF;
}
.indexPage .message .elegant .elegant_swiper .swiper-slide .imgtop{
	width: 100%;
	height: 454px;
	position: relative;
	overflow: hidden;
}
.indexPage .message .elegant .elegant_swiper .swiper-slide .imgtop .img{
	width: 100%;
	height: 100%;
	transition: all 0.3s;-moz-transition: all 0.3s;-webkit-transition: all 0.3s;-o-transition: all 0.3s;
}
.indexPage .message .elegant .elegant_swiper .swiper-slide .imgtop .name{
	position: absolute;
	left: 0;
	bottom: 0;
	line-height: 60px;
	padding:0 24px;
	font-size: 18px;
	color: #FFFFFF;
	background-color: rgba(0,0,0,0.6);
	width: 100%;
	padding-right: 100px;
	
}
.indexPage .message .elegant .elegant_swiper .swiper-slide .title{
	width: 100%;
	font-size: 16px;
	line-height: 24px;
	letter-spacing: 0px;
	height: 80px;
	color: #666666;
	padding: 8px 20px 0;
	text-indent:2em;
}
.indexPage .message .elegant .elegant_swiper .swiper-slide:hover{
	cursor: pointer;
}
.indexPage .message .elegant .elegant_swiper .swiper-slide:hover .imgtop .img{
	transform: scale(1.2);	
	-ms-transform: scale(1.2);	
	-webkit-transform: scale(1.2);	
	-o-transform: scale(1.2);	
	-moz-transform: scale(1.2);
}
.indexPage .message .elegant .elegant_swiper .swiper-slide:hover .title{
	color: #d7282b;
}
.indexPage .message .elegant .swiper-container-horizontal>.swiper-pagination-bullets{
	right: 0;
	bottom: 111px;
	text-align: right;
	padding-right: 26px;
}
.indexPage .message .elegant .swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet{
	opacity: 1;
	background-color: #FFFFFF;
	width: 10px;
	height: 10px;
}
	
.indexPage .message .elegant .swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet-active{
	background-color: #d7282b;
}
.indexPage .message .dynamic{
	width: 342px;
	float: right;
	height: 622px;
	position: relative;
}
.indexPage .message .dynamic .moretxt{
	height: 70px;
	font-size: 16px;
	line-height: 70px;
	display: inline-block;
	cursor: pointer;
	position: absolute;
	bottom: 16px;
}
.indexPage .message .dynamic .moretxt span{
	color: #333333;
}
.indexPage .message .dynamic .moretxt .moreicon{
	width: 20px;
	float: right;
	margin-top: 31px;
	margin-left: 12px;
	transition: all 0.3s;-moz-transition: all 0.3s;-webkit-transition: all 0.3s;-o-transition: all 0.3s;
}
.indexPage .message .dynamic .moretxt:hover span{
	color: #d7282b;
}
.indexPage .message .dynamic .moretxt:hover .moreicon{
	margin-left: 22px;
}

/* 咨询信息 */
.indexPage .consult{
	background-image: url("../Images/indexzxback.png");
	background-repeat:no-repeat;
	background-position: -130px 90px;
	padding-top: 90px;
	height: 100%;
	width: 100%;
}
.indexPage .consult .valid{
    width: 1400px;
    margin: 0 auto;
}
.indexPage .consult .valid .consult_top{
    height: 167px;
}
.indexPage .consult .valid .consult_top .txtlogo{
    margin-top: 57px;
}
.indexPage .consult .valid .consult_top .highway{
	position: absolute;
	top: 102px;
	right: 50%;
	margin-right: -700px;
}
.indexPage .consult .valid .consult_top .highway .donghua{}
.indexPage .consult .valid .lists{
	position: relative;
	z-index: 5;
	display: inline-block;
	width: 100%;
}
.indexPage .consult .valid .lists .fllist{
    width: 900px;
    float: left;
}
.indexPage .consult .valid .lists .fllist .txtlist .li:nth-child(2n){
	margin-left: 100px;
}
.indexPage .consult .valid .lists .caption{
    height: 75px;
    border-bottom: 1px solid #e6e6e6;
}
.indexPage .consult .valid .lists .caption .modelname{
    float: left;
    font-weight: bold;
}
.indexPage .consult .valid .lists .caption .modelname h3{
    color: #000000;
    font-size: 26px;
    font-weight: bold;
    line-height: 26px;
}
.indexPage .consult .valid .lists .caption .modelname p{
    font-size: 14px;
    color: #b3b3b3;
    line-height: 14px;
    margin-top: 16px;
}
.indexPage .consult .valid .lists .caption .more{
    width: 86px;
    height: 30px;
    border-radius: 15px;
    border: solid 1px #d7282b;
    display: inline-block;
    text-align: center;
    line-height: 28px;
    margin-top: 19px;
    font-size: 16px;
    color: #dd3032;
    z-index: 2;
    float: right;
}
.indexPage .consult .valid .lists .caption .more:hover{
	color: #FFFFFF;
}
.indexPage .consult .valid .lists .txtlist{}
.indexPage .consult .valid .lists .txtlist .li{
    width: 400px;
    float: left;
	height: 79px;
	position: relative;
	padding: 22px 0 0 25px;
	display: inline-block;
}
.indexPage .consult .valid .lists .txtlist .dian{
	position: absolute;
	left: 0;
	top: 28px;
	width: 6px;
	height: 6px;
	background-color: #999999;
}
.indexPage .consult .valid .lists .txtlist .li .name{
	font-size: 16px;
	color: #000000;
	line-height: 16px;
}
.indexPage .consult .valid .lists .txtlist .li .date{
	color: #666666;
	opacity: 0.84;
	margin-top: 8px;
	font-size: 14px;
}
.indexPage .consult .valid .lists .txtlist .li:hover .dian{
	background-color: #d7282b;
}
.indexPage .consult .valid .lists .txtlist .li:hover .name,.indexPage .consult .valid .lists .txtlist .li:hover .date{
    color: #d7282b;
}
.indexPage .consult .valid .lists .frlist{
	width: 403px;
	float: right;
}

/* 子banner */
.profile{
	margin-top: 90px;
	width: 100%;
}
.profile .sonbanner{
	height: 300px;
	width: 100%;
	background-attachment: fixed;
	background-position: 0px 90px;
	background-repeat: no-repeat;
	padding-top: 120px;
}
.profile .sonbanner .valid{
    width: 1400px;
    margin: 0 a;
}
.profile .sonbanner .valid .bannertxt{
    margin-top: 120px;
}
.crumbs_types{
	position: relative;
}
.crumbs_types .crumbs{
    height: 60px;
    padding-top: 29px;
    line-height: 14px;
    color: #999999;
}
.crumbs_types .crumbs a{
	color: #999999;
}
.crumbs_types .crumbs .icondingwei{
   float: left;
   margin-right: 7px;
}
.crumbs_types .crumbs .red{
    color: #e60013;
}
.crumbs_types .types{
    text-align: center;
    border-bottom: 1px solid #d6d6d6;
}
.crumbs_types .types .table{
    height: 69px;
}
.crumbs_types .types .table .a{
    margin: 0 33px;
    font-size: 16px;
    color: #666666;
    position: relative;
    display: inline-block;
    height: 69px;
    padding-top: 27px;
}
.crumbs_types .types .table .a::after{
	content: "";
	position: absolute;
	width: 0%;
	height: 2px;
	background-color: #d7282b;
	left: 0;
	bottom: 0;
	border: 1px;
	transition: all 0.3s;
	-moz-transition: all 0.3s;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
}
.crumbs_types .types .table .a.opt,.subpageBack .types .table .a:hover{
	color: #e60013;
}
.crumbs_types .types .table .a.opt::after,.subpageBack .types .table .a:hover::after{
	width: 100%;
}
.crumbs_types .select_input{
	position: absolute;
	width: 334px;
	z-index: 5;
	height: 50px;
	border-radius: 6px;
	border: solid 1px #ed2929;
	top: 25px;
	right: 0;
	overflow: hidden;
	box-shadow: 0 0 0px 2px rgb(237 41 41 / 40%);
}
.crumbs_types .select_input input{
    height: 48px;
    border: 0;
    width: 100%;
    padding: 0 51px 0 20px;
    float: left;
    position: relative;
    z-index: 1;
    font-size: 16px;
    background-color: rgba(255,255,255,0);
}
.crumbs_types .select_input .img{
    width: 42px;
    float: right;
    height: 48px;
    text-align: center;
    padding: 14px 0px;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 5;
}
.crumbs_types .select_input .img:hover{
	cursor: pointer;
	opacity: 0.6;
}
.crumbs_types .select_title{
    border-bottom: 1px solid #d6d6d6;
    height: 40px;
    font-size: 16px;
    color: #999999;
    line-height: 30px;
}
.crumbs_types .select_title span{	
	color: #e60013;
	margin: 0 5px;
}
/* 公司概况 */
.subpageBack{
	width: 100%;
	min-height: 840px;
	background: url("../Images/combanner.png") center no-repeat;
	background-attachment:fixed !important;
	display: inline-block;
	padding-bottom: 100px;
	background-color: #FFFFFF;
	position: relative;
}

.brief .modellogo{
    padding-top: 60px;
    text-align: center;
    height: 180px;
}
.brief .modellogo .img{
    margin: 0 70px;
}
.brief .editor{
    padding: 42px 0;
}
.brief .editor *{
    font-size: 16px;
    color: #666666;
    text-indent: 2em;
    line-height: 36px;
}
.brief .big_data{
    padding: 59px 0 0;
    height: 200px;
    border-top: 1px solid #d6d6d6;
    border-bottom: 1px solid #d6d6d6;
}
.brief .big_data .item{
    display: inline-block;
    width: 25%;
    float: left;
    padding-left: 66px;
}
.brief .big_data .item p{
    color: #666666;
    font-size: 16px;
    margin-bottom: 15px;
}
.brief .big_data .item p .number{
    color: #e60013;
    font-size: 70px;
    font-weight: bold;
    line-height: 70px;
}
.leader{
	text-align: center;
}
.leader .position{
	padding:40px 0 40px 100px;
	display: inline-block;
	text-align: left;
}
.leader .position li{
	margin: 30px 0;
	line-height: 30px;
}
.leader .position li .name{
	display: inline-block;
	width: 90px;
	text-align: justify;
	text-align-last: justify;
	font-size: 26px;
	margin-right: 20px;
	color: #000000;
	font-weight: bold;
}
.leader .position li .last_name{
	font-size: 20px;
	color: #6f6f6f;
}
.honor{
	width: 100%;
	display: inline-block;
	padding: 80px 0 30px 130px;
	position: relative;
}
.honor .age_limit{
	position: absolute;
	left: 0;
	top: 130px;
	display: none;
}
.honor .age_limit.active{
	display: block;
}
.honor .age_limit li{
	line-height: 48px;
	font-size: 16px;
	color: #666666;
	display: flex;
	align-items: center;
	cursor: pointer;
}
.honor .age_limit li span{
	width: 0px;
	display: inline-block;
	height: 1px;
	background-color: #e60013;
	transition: all 0.3s;
	-moz-transition: all 0.3s;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
}
.honor .age_limit li.opt{
	color: #e60013;
}
.honor .age_limit li.opt span,.honor .age_limit li:hover span{
	width: 17px;
	margin-right: 3px;
}
.honor .age_limit li:hover{
	color: #e60013;
}
.honor .honor_swiper{
	width: 100%;
}
.honor .honor_swiper .swiper-wrapper{}
.honor .honor_swiper .swiper-slide{}
.honor .honor_swiper .company{
	position: relative;
	padding-left: 593px;
}
.honor .honor_swiper .company .img{
    width: 458px;
    height: 519px;
    background-color: #999999;
    border-radius: 10px;
    float: left;
    margin-right: 135px;
	position: absolute;
	left: 0;
	top: 0;
	overflow: hidden;
}
.honor .honor_swiper .company .img img{
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	min-width: 100%;
	min-height: 100%;
	max-width:initial;
}
.honor .honor_swiper .company .excellent{
    display: none;
}
.honor .honor_swiper .company .excellent.active{
	display: block;
}
.honor .honor_swiper .company .excellent h2{
    font-size: 30px;
    color: #000000;
    font-weight: bold;
    height: 30px;
    line-height: 30px;
}
.honor .honor_swiper .company .excellent h2 span{
    width: 4px;
    height: 30px;
    background-color: #e60013;
    border-radius: 2px;
    display: inline-block;
    float: left;
    margin-right: 14px;
}
.honor .honor_swiper .company .excellent ul{
    padding: 30px 0;
}
.honor .honor_swiper .company .excellent ul li{
    font-size: 16px;
    font-weight: normal;
    font-stretch: normal;
    line-height: 24px;
    padding: 12px 0;
    letter-spacing: 0px;
    color: #666666;
    transition: all 0.3s;
    -moz-transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    position: relative;
    padding-left: 95px;
}
.honor .honor_swiper .company .excellent ul li span{
	color: #000000;
	padding-right: 10px;
	position: absolute;
	left: 0;
	top: 12px;
    transition: all 0.3s;
    -moz-transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
}
.honor .honor_swiper .company .excellent ul li:hover,
.honor .honor_swiper .company .excellent ul li:hover span{
	color: #e60013;
}
.honor .honor_swiper .company .excellent ul li:hover{
	padding-left: 110px;
}
.honor .honor_swiper .company .excellent ul li:hover span{
	left: 15px;
}
.honor .honor_swiper .arrows{
    width: 120px;
    height: 94px;
    background-color: #e60013;
    border-radius: 20px 20px 10px 10px;
    position: absolute;
    left: 398px;
    top: 384px;
    z-index: 1;
	overflow: hidden;
}
.honor .honor_swiper .arrows .change{
    display: flex;
    height: 69px;
}
.honor .honor_swiper .arrows .change .iconhover{
	display: none;
}
.honor .honor_swiper .arrows .change .btn{
    width: 59px;
    text-align: center;
    height: 69px;
    display: flex;
    justify-content: center;
    align-items: center;
	cursor: pointer;
}
.honor .honor_swiper .arrows .change span{
    line-height: 69px;
    color: #FFFFFF;
    opacity: 0.6;
}
.honor .honor_swiper .arrows .change .btn:hover .icon{
	display: none;
}
.honor .honor_swiper .arrows .change .btn:hover .iconhover{
	display: inline-block;
}
.honor .honor_swiper .arrows .title{
	background-color: #d50a1b;
	text-align: center;
	line-height: 25px;
	height: 25px;
	color: #FFFFFF;
	opacity: 0.8;
}
.incident{
	width: 100%;
}
.incident .date_change{
    width: 660px;
    margin: 0 auto;
    height: 54px;
    padding: 0 30px;
    position: relative;
}
.incident .date_change .btn{
	position: absolute;
	top: 0;
	padding-top: 18px;
	width: 30px;
	height: 54px;
	cursor: pointer;
}
.incident .date_change .btn.prev{
    left: 0;
}
.incident .date_change .btn.next{
    right: 0;
    text-align: right;
}
.incident .date_change .btn .icon{
    width: 17px;
}
.incident .date_change .btn .iconopt{
    width: 17px;
    display: none;
}
.incident .date_change .btn:hover .icon{
	 display: none;
}
.incident .date_change .btn:hover .iconopt{
	 display: inline-block;
}
.incident .date_change .dates{
    width: 552px;
}
.incident .date_change .swiper-wrapper{
}
.incident .date_change .swiper-slide{
	line-height: 54px;
	text-align: center;
	color: #999999;
	font-size: 16px;
	cursor: pointer;
	transition: all 0.3s;-moz-transition: all 0.3s;-webkit-transition: all 0.3s;-o-transition: all 0.3s;
}
.incident .date_change .swiper-slide:hover,.incident .date_change .swiper-slide.opt{
	color: #e60013;
	font-weight: bold;
	font-size: 18px;
}
.incident .date_change .dates span{
    width: 116px;
    display: inline-block;
    text-align: center;
}
.incident .yearmblock{
    position: relative;
    margin: 50px auto;
    padding-top: 54px;
}
.incident .yearmblock .shu{
    width: 4px;
    height: 100%;
    background-color: #cccccc;
    position: absolute;
    left: 134px;
    top: 0;
}
.incident .yearmblock .presentYear{
    position: absolute;
    left: 125px;
    top: 11px;
}
.incident .yearmblock .presentYear .dian{
    width: 22px;
    height: 22px;
    border: 5px solid #e60013;
    display: inline-block;
    border-radius: 50%;
    margin-right: 24px;
    background-color: #FFFFFF;
}
.incident .yearmblock .presentYear .number{
    color: #e60013;
    font-size: 30px;
    font-weight: bold;
    font-style: italic;
    line-height: 30px;
}
.incident .yearmblock ul{
}
.incident .yearmblock ul li{
	padding-bottom: 15px;
    padding-left: 180px;
    position: relative;
}
.incident .yearmblock ul li .day{
    position: absolute;
    left: 0;
    color: #333333;
    font-size: 16px;
    top: 18px;
}
.incident .yearmblock ul li .dian{
    width: 14px;
    height: 14px;
    background-color: #696969;
    position: absolute;
    display: inline-block;
    left: 129px;
    top: 22px;
    border-radius: 50%;
}
.incident .yearmblock ul li .vals{
    padding: 18px 20px 18px 46px;
    background-color: #FFFFFF;
    border-radius: 7px;
    position: relative;
    z-index: 5;
    font-size: 16px;
}
.incident .yearmblock ul li .vals .sanjiao{
    position: absolute;
    left: -10px;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-right: 10px solid #FFFFFF;
	transition: all 0.3s;
	-moz-transition: all 0.3s;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
}
.incident .yearmblock ul li .vals::before{
	content: "";
	background-color:#e60013;
	left: 0;
	bottom: 0;
	z-index: -1;
	position: absolute;
	border-radius: 7px;
	width: 100%;
	height: 0;
	transition: all 0.3s;
	-moz-transition: all 0.3s;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
}
.incident .yearmblock ul li:hover .vals::before{
	height: 100%;
}
.incident .yearmblock ul li:hover ~ li .vals::before{
	bottom: 100%;
}

.incident .yearmblock ul li:hover{
	cursor: pointer;
}
.incident .yearmblock ul li:hover .day{
	color: #e60013;
}
.incident .yearmblock ul li:hover .vals{
	color: #FFFFFF;
}
.incident .yearmblock ul li:hover .vals .sanjiao{
	border-right: 10px solid #e60013;
}
.incident .yearmblock ul li:hover .dian{
	width: 22px;
	height: 22px;
	left: 125px;
	border: 5px solid #e60013;
	background-color: #FFFFFF;
}

.institution{
	text-align: center;
	padding: 50px;
}
.institution .content_big_img{

}
.news_list{
	width: 100%;
	padding: 13px 0 120px;
}
.notdata{
	margin: 100px auto 200px;
	display: block;
	text-align: center;
}
.notdata .img{
	width: 277px;
}
.notdata .text{
	margin-top: 20px;
	color: #999999;
	font-size: 16px;
}
.news_list ul{
    width: 100%;
}
.news_list_img ul{
    width: 100%;
	padding-top: 80px;
}
.news_list_img ul li{
    width: 100%;
    height: 240px;
	margin-bottom: 80px;
}
.news_list ul li{
    width: 100%;
    height: 240px;
}
.news_list ul li .a{
    display: inline-block;
    height: 240px;
    position: relative;
    padding: 80px 120px 0 0;
	width: 100%;
}
.news_list_img ul li .a{
    display: inline-block;
    height: 240px;
    position: relative;
    padding: 40px 0px 0 514px;
	width: 100%;
}
.news_list_img ul li .a .text{
	padding-right: 120px;
	height: 158px;
}
.news_list_img ul li .a .text::after,.news_list ul li .a::after{
	background-color: #d6d6d6;
}
.news_list_img ul li .a:hover .text::before{
	width: 100%;
}
.news_list_img ul li .a .newsimg{
	background-size: 100% auto;
	background-repeat:no-repeat;
	background-position:center;
	width: 440px;
	height: 240px;
	position: absolute;
	left: 0;
	top: 0;
}
.news_list_img ul li .a:hover .newsimg{
	background-size: 110% auto;
	transition: all 0.3s;
	-moz-transition: all 0.3s;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
}
.news_list ul li .a *,
.news_list_img ul li .a *{
	transition: all 0.5s;
	-moz-transition: all 0.5s;
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
}
.news_list ul li .a h2,
.news_list_img ul li .a h2{
    color: #000000;
    font-size: 26px;
    line-height: 26px;
}
.news_list ul li .a h2 span,
.news_list_img ul li .a h2 span{
	color: #e60013;
}
.news_list ul li .a p,
.news_list_img ul li .a p{
    line-height: 36px;
    font-size: 16px;
    color: #999999;
    margin-top: 30px;
}
.news_list ul li .a .date,
.news_list_img ul li .a .date{
    position: absolute;
    right: 0;
    width: 120px;
    top: 84px;
    text-align: right;
    height: 84px;
}
.news_list_img ul li .a .date{
	top: 0;
}
.news_list ul li .a .date span,
.news_list_img ul li .a .date span{
    width: 0px;
    background-color: #e60013;
    height: 1px;
    position: absolute;
    left: 35px;
    top: 13px;
}
.news_list ul li .a .date .day,
.news_list_img ul li .a .date .day{
    color: #666666;
    font-size: 30px;
    font-weight: bold;
    line-height: 30px;
}
.news_list ul li .a .date .month,
.news_list_img ul li .a .date .month{
    color: #cccccc;
    font-weight: bold;
    font-size: 18px;
    line-height: 18px;
    margin-top: 8px;
}
.news_list ul li .a .date .icon,
.news_list_img ul li .a .date .icon{
    width: 12px;
    position: absolute;
    right: 18px;
    bottom: 0;
}
.news_list ul li .a .date .iconhover,
.news_list ul li .a:hover .date .icon,
.news_list_img ul li .a .date .iconhover,
.news_list_img ul li .a:hover .date .icon{
    width: 12px;
    position: absolute;
    right: 18px;
    bottom: 0;
    z-index: 1;
    opacity: 0;
}
.news_list ul li .a:hover .date span,
.news_list_img ul li .a:hover .date span{
	width: 36px;
}
.news_list ul li .a:hover  h2,
.news_list ul li .a:hover .date .day,
.news_list ul li .a:hover .date .month,
.news_list_img ul li .a:hover h2,
.news_list_img ul li .a:hover .date .day,
.news_list_img ul li .a:hover .date .month{
	color: #e60013;
}
.news_list ul li .a:hover .date .iconhover,
.news_list_img ul li .a:hover .date .iconhover{
	opacity: 1;
}
.report{
	display: inline-block;
	width: 100%;
	padding: 80px 0 50px;
}
.report .notice{
	float: left;
	width: 790px;
	min-height: 588px;
	padding: 0 57px 50px;
	background-color: #ffffff;
	border: solid 1px #cccccc;
}
.report .notice h3{
	line-height: 77px;
	text-align: center;
	font-size: 30px;
	color: #474747;
	font-weight: bold;
}
.report .notice ul{
	margin-top: 50px;
	width: 100%;
}
.report .notice ul li{
	line-height: 26px;
	font-size: 16px;
	color: #000000;
	margin-bottom: 22px;
}
.report .way{
	width: 570px;
	min-height: 588px;
	padding: 0 40px 50px;
	background-color: #ffffff;
	border: solid 1px #cccccc;
	float: right;
}
.report .way .img{
	width: 184px;
	margin: 0 auto;
	display: block;
}
.report .way ul{
	width: 100%;
	margin-top: 50px;
}
.report .way ul li{
    margin-bottom: 24px;
}
.report .way ul li .title{
    color: #000000;
    font-size: 16px;
}
.report .way ul li p{
    font-size: 16px;
    color: #000000;
    margin-top: 3px;
}
.report .way ul li p a{
    color: #1b47bc;
}
.report .way ul li p span{
    color: #e60013;
}
.enterprise{
	width: 100%;
	overflow-x: hidden;
	padding-top: 90px;
}
.enterprise ul{
	width: 110%;
}
.enterprise ul .li{
	width: 320px;
	height: 133px;
	border: solid 2px #e60013;
	float: left;
	margin-right: 40px;
	margin-bottom: 28px;
	padding: 0 31px;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	position: relative;
}
.enterprise ul .li *{
	transition: all 0.3s;
	-moz-transition: all 0.3s;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
}
.enterprise ul .li p{
    width: 100%;
    color: #e60013;
    font-size: 18px;
    font-weight: bold;
    line-height: 30px;
}
.enterprise ul .li::after,.enterprise ul .li::before{
	content: "";
	width: 0;
	height: 0;
	left: 0;
	bottom: 0;
	position: absolute;
	z-index: -1;
	background-color: #e60013;
	transition: all 0.3s;
	-moz-transition: all 0.3s;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
}
.enterprise ul .li::before{
	left: auto;
	bottom: auto;
	right: 0;
	top: 0;
}
.enterprise ul .li:hover::after,.enterprise ul .li:hover::before{
	width: 100%;
	height: 100%;
}
.enterprise ul .li:hover p{
	color: #FFFFFF;
}

.article{
	width: 100%;
}
.article .introduce{
	min-height: 130px;
	padding: 20px 50px 0;
	text-align: center;
	border-bottom: 1px solid #cccccc;
}
.article .introduce h2{
    color: #2c2c2c;
    font-size: 33px;
    font-weight: bold;
}
.article .introduce .brief{
    margin-top: 30px;
}
.article .introduce .brief span{
    color: #999999;
    margin: 0 30px;
    font-size: 16px;
}
.article .introduce .brief span em{
    color: #e60013;
}
.article .details{
    padding: 50px 0;
    font-size: 18px;
}

.article .details *{
	font-size: 18px !important;
    line-height: 26px !important;
    color: #666666;
}
.article .details>*{
    text-indent: 2em;
    margin-bottom: 30px;
}
.article .details img{
    margin: 20px auto;
    max-width: 100%;
    display: inline-block;
}
.article .details .video{
	width: 800px;
	margin: 20px auto;
	max-width: 100%;
	display: block;
}
.article .details table{
	margin: 0 auto;
}
.article .details table td {
  width: auto !important;
  padding: 5px 5px !important;
}

.article .details table td p {
  margin: 0;
  font-size: 16px !important;
  color: #333333;
}
.change_article{
    width: 100%;
    display: flex;
	justify-content: space-between;
    background-color: #f5f5f5;
    height: 120px;
}
.change_article .a{
    display: inline-block;
    width: 50%;
    line-height: 120px;
    padding: 0 50px;
    position: relative;
    height: 120px;
}
.change_article .a.prior img{
    left: 20px;
}
.change_article .a.next img{
    right: 20px;
}
.change_article .a img{
    margin: 52px 0px;
    height: 16px;
    position: absolute;
	transition: all 0.3s;
	-moz-transition: all 0.3s;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
}
.change_article .a span{
    font-size: 18px;
    color: #666666;
    width: 100%;
    display: inline-block;
}
.change_article .a.prior span{}
.change_article .a.next span{
	text-align: right;
}
.change_article .a:hover img{
	margin: 52px 10px;
}
.change_article .a:hover span{
	color: #e60013;
}
.three_level{
    position: absolute;
    right: 50%;
    margin-right: 735px;
    width: 80px;
	top: 138px;
	z-index: 5;
    background-color: #af0412;
}
.three_level .a{
    color: #FFFFFF;
    width: 100%;
    display: inline-block;
    height: 71px;
    text-align: center;
    padding: 0px 10px;
    border-bottom: 1px solid #FFFFFF;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
	position: relative;
	z-index: 5;
}
.three_level .a:last-child{
	border-bottom: none;
}
.three_level .a h4{
    font-size: 16px;
    font-weight: bold;
    opacity: 0.7;
    width: 100%;
    line-height: 16px;
}
.three_level .a p{
    line-height: 18px;
    font-size: 14px;
    margin-top: 5px;
}
.three_level .a::before{
	content: "";
	width: 100%;
	height: 0;
	left: 0;
	bottom: 0;
	position: absolute;
	background-color: #e8192a;
	z-index: -1;
	transition: all 0.3s;
	-moz-transition: all 0.3s;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
}
.three_level .a.opt::before,.three_level .a:hover::before{
	height: 100%;
}

@media (min-width: 1440px) and (max-width: 1600px) {
	body{
		min-width: 1400px;
	}
	.header_box .home .logo{
		height: 40px;
		max-width: 310px;
	}
	.header_box .nav_select .nav_item{
		width: 110px;
	}
	.header_box .nav_select .nav_item .name{
		font-size: 16px;
	}
	.header_box .nav_select .nav_item.opt .navIcon,.header_box .nav_select .nav_item:hover .navIcon{
		margin-left: 13px;
	}
	.header_box .nav_select,.indexPage .news_center .newstop{
		width: 1400px;
	}
	.header_box .nav_select .children-box .valid{
		margin: 20px auto 20px -880px;
	}
	.three_level{
		margin-right: 630px;
	}
	.three_details{
		padding-left: 100px;
	}
	.indexPage .message .model_name .txtlogo{
		max-height: 50px;
	}
	.indexPage .news_center .news_swiper,
	.indexPage .news_center .news_swiper .swiper-slide,
	.indexPage .news_center .news_swiper .swiper-wrapper,
	.indexPage .news_center .news_swiper .swiper-slide{
		height: 340px;
	}
	.indexPage .news_center .news_swiper .newsitem{
		height: 270px;
		padding: 30px 20px 30px 63%;
	}
	.indexPage .news_center .news_swiper .newsitem .img{
		height:270px
	}
	.indexPage .news_center .news_swiper .newsitem .date{
		margin-top: 30px;
	}
}
@media screen and (max-width: 1439px) {
	body{
		min-width: 1200px;
	}
	.astrict{
		max-width: 1200px;
	}
	.header_box .home .logo{
	    height: 40px;
	    max-width: 310px;
	}
	.header_box .nav_select .nav_item{
		width: 87px;
	}
	.header_box .nav_select .nav_item .name{
		font-size: 14px;
	}
	.header_box .nav_select .nav_item .navIcon{
		width: 15px;
	}
	.header_box .nav_select .nav_item.opt .navIcon,
	.header_box .nav_select .nav_item:hover .navIcon{
		margin-left: 2px;
	}
	.footer .select{
		width: 210px;
	}
	.footer .link span{
		margin-left: 30px;
	}
	.footer .select .ul .li{
		font-size: 12px;
		padding: 0 10px;
	}
	.header_box .nav_select,
	.footer .valid,
	.indexPage .news_center .newslist,
	.indexPage .news_center .newstop,
	.indexPage .video_center .valid,
	.indexPage .message .valid,
	.indexPage .consult .valid{
		width: 1200px;
	}
	.indexPage .message .model_name .txtlogo{
		max-height: 43px;
	}
	.indexPage .message .model_name{
		height: 60px;
	}
	.indexPage .message .model_name .more{
		margin-top: 12px;
	}
	.indexPage .news_center .newslist .list .item{
		width: 545px;
	}
	.header_box .nav_select .children-box .valid{
		margin: 20px auto 20px -980px;
	}
	.indexPage .video_center .video_model{
		width: 745px;
	}
	.indexPage .video_center .video_model .item .video{
		width: 760px;
		height: 442px
	}
	.indexPage .video_center .video-list{
		width: 410px;
	}
	.indexPage .video_center .backimg{
		margin-left: 190px;
	}
	.indexPage .message .party{
		width: 343px;
	}
	.indexPage .message .elegant{
		width: 520px;
		margin-left: 30px;
	}
	.indexPage .message .dynamic{
		width: 270px;
	}
	.indexPage .consult .valid .lists .fllist{
	    width: 800px;
	}
	.indexPage .consult .valid .lists .txtlist .li{
		width: 375px;
	}
	.indexPage .consult .valid .lists .frlist{
	    width: 350px;
	}
	.indexPage .consult .valid .lists .fllist .txtlist .li:nth-child(2n){
		margin-left: 50px;
	}
	.brief .modellogo .img{
		margin: 0 45px;
	}
	.three_level{
		margin-right: 520px;
	}
	.three_details{
		padding-left: 110px;
	}
	.report .notice{
		width: 690px;
	}
	.report .way{
		width: 480px;
	}
	.indexPage .news_center .news_swiper .swiper-container,
	.indexPage .news_center .news_swiper,
	.indexPage .news_center .news_swiper .swiper-slide,
	.indexPage .news_center .news_swiper .swiper-wrapper,
	.indexPage .news_center .news_swiper .swiper-slide{
		height: 308px;
	}
	.indexPage .news_center .news_swiper .newsitem{
		height: 250px;
		padding: 16px 20px 10px 63%;
	}
	.indexPage .news_center .news_swiper .newsitem .img{
		height: 250px;
	}
	.indexPage .news_center .news_swiper .newsitem .date{
		margin-top: 30px;
	}
}
@media screen and (max-width: 1510px) {
	.indexPage .news_center .newstop{
		padding-top: 20px;
		height: 100px;
	}
	.indexPage .news_center .newslist .list .item{
		height: 45px;
		line-height: 45px;
	}
	.indexPage .video_center .valid{
		margin: 10px auto;
	}
	.indexPage .video_center .video-box{
		margin-top: 10px;
	}
	.indexPage .video_center .video-list .item{
		height: 120px;
		padding: 10px 20px 10px 23px;
	}
	.indexPage .video_center .video-list .item .poster{
		height: 100px;
		width: 151px;
	}
	.indexPage .video_center .video-list .item .date{
		margin-top: 14px;
	}
	.indexPage .message .valid{
		padding-top: 20px;
	}
	.indexPage .message .txtlist .li .dian{
		top: 21px;
	}
	.indexPage .message .txtlist .li{
		height: 69px;
		padding: 15px 0 0 25px;
	}
	.indexPage .message .dynamic,.indexPage .message .party{
		height: 590px;
	}
	.indexPage .message .dynamic .moretxt{
		bottom: 50px;
	}
	.indexPage .message .party .txtlist{
		height: 530px;
	}
	.indexPage .message .elegant .elegant_swiper .swiper-slide .imgtop{
		height: 410px;
	}
	.indexPage .message .elegant .swiper-container-horizontal>.swiper-pagination-bullets{
		bottom: 157px;
	}
	.indexPage .message .elegant .elegant_swiperm.indexPage .message .elegant .elegant_swiper .swiper-wrapper, .indexPage .message .elegant .elegant_swiper .swiper-slide{
		height: 530px;
	}
	.indexPage .consult .valid .consult_top{
		height: 120px;
	}
	.indexPage .consult .valid .consult_top .txtlogo{
		margin-top: 30px;
	}
	.indexPage .consult .valid .consult_top .highway .donghua{
		height: 107px;
	}
	.indexPage .consult .valid .lists .txtlist .li{
		height: 69px;
		padding: 17px 0 0 25px;
	}
	.indexPage .consult .valid .lists .txtlist .dian{
		top: 21px;
	}
}
.disappear{
	display: none;
}