/*common start*/
body,div,ul,li,a,img,p,dl,dt,dd,h1,h2,h3,h4,span,input,button,textarea,dl,dt{ margin:0; padding:0;list-style:none;text-decoration:none;border:0; list-style:none;font-family: normal;font-weight: normal;}
body{ font-size:14px;color:#111;overflow-x: hidden;}
a img{
  border: 0;
}
em {
  font-style: normal;
}
body.head_on{overflow:hidden;}
a{text-decoration:none;color: #333;transition: all .3s;}
*{box-sizing: border-box;}
input,select,textarea{outline: none;}
.clear{ margin:0; padding:0; font-size:0; clear:both; }

.wapper{
	width: 100%;
    max-width: 100%;
    margin-right: auto;
    margin-left: auto;
    padding-left: 15px;
    padding-right: 15px;
	box-sizing: border-box;
}
@media only screen and (min-width: 1200px){
	.wapper{
		width: 1200px;
		margin: 0 auto;
	}
}

:root{
	--primary-color:#2a62ac;
	--font-color:#666;
	--main-white:#fff;
}





/* 轮播图通用 */
.swiper {width: 100%;height: 100%;}
.swiper-slide
{
    text-align: center;
    font-size: 18px;
    background: #fff;
    /* Center slide text vertically */
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}
.swiper-slide img{
	width: 100%;
}

.overflow1{white-space: nowrap;text-overflow: ellipsis;overflow: hidden;width: 100%;display: block;}
.overflow2{display: -webkit-box;-webkit-line-clamp: 2;-webkit-box-orient: vertical;overflow: hidden;text-overflow: ellipsis;}
.overflow3{display: -webkit-box;-webkit-line-clamp: 3;-webkit-box-orient: vertical;overflow: hidden;text-overflow: ellipsis;}


.index_tc{position: fixed;left: 0;top: 0;width: 100%;height: 100%;background-color: rgb(0, 0, 0,0.7);z-index: 99;display: flex;align-items: center;justify-content: center;display: none !important;}
.index_tc.on{display: none;}
.index_tc .inner{width: 724px;max-width: 100%;display: flex;flex-wrap: wrap;position: relative;}
.it_close{position: absolute;right: 20px;top: 20px;font-size: 43px;color: #C1211E;cursor: pointer;z-index: 3;}
.index_tc .inner .imgbox{width: 50%;font-size: 0;}
.index_tc .inner .imgbox img{width: 100%;}
.index_tc .inner .textbox{width: 50%;padding: 25px;position: relative;}
.index_tc .inner .textbox:after{width: 100%;height: 100%;background-color: rgb(0, 0, 0,0.7);content: "";position: absolute;left: 0;top: 0;}
.index_tc .inner .textbox .t_inner{display: flex;flex-direction: column;justify-content: center;align-items: center;width: 100%;height: 100%;position: relative;z-index: 2;}
.index_tc .inner .textbox .t_inner h1{font-size: 47px;color: #fff;font-weight: 400;}
.index_tc .inner .textbox .t_inner h3{font-size: 28px;color: #fff;margin-bottom: 20px;}
.index_tc .inner .textbox .t_inner select{width: 100%;padding: 8px 16px;background-color: #fff;border: 1px solid #666;border-radius: 3px;font-size: 16px;line-height: 1.5;}



.f_tc{position: fixed;left: 0;top: 0;width: 100%;height: 100%;background-color: rgb(0, 0, 0,0.7);z-index: 99;display: flex;align-items: center;justify-content: center;display: none;}
.f_tc.on{display: flex;}
.f_tc .inner{width: 640px;max-width: 100%;padding: 100px 0;border: 2px solid #C50F0F;background-color: #fff;position: relative;}
.f_close{position: absolute;right: 20px;top: 20px;font-size: 15px;color: #505050;cursor: pointer;z-index: 3;}
.f_tc .inner .t_inner{width: 100%;text-align: center;padding: 0% 15% 0% 15%;}
.f_tc .inner .t_inner h1{font-size: 45px;color: #000;margin-bottom: 15px;}
.f_tc .inner .t_inner p{font-size: 18px;color: #505050;margin-bottom: 25px;}
.f_tc .inner .t_inner select{width: 100%;padding: 8px 16px;background-color: #fff;border: 1px solid #666;border-radius: 3px;font-size: 16px;line-height: 1.5;}



/* 导航 */
.headerbox{width: 100%;margin:  0 auto;}
.headerbox .header{display: flex;align-items: center;justify-content: space-between;padding: 3px 50px 3px 60px;}
.headerbox .header .menu ul{display: flex;align-items: center;}
.headerbox .header .menu ul li{
	position: relative;margin: 0 10px;
}
.headerbox .header .menu ul li a{
	font-size: 24px;
    font-weight: 600;
    line-height: 1;
    padding: 13px 21px;
    color: #fff;
	background-color: #C1211E;
    display: flex;align-items: center;
    position: relative;
    text-decoration: none;
	text-transform: uppercase;
}

.headerbox .header .menu ul li a i{margin-left: 10px;font-size: 24px;color: #fff;}
.headerbox .header .menu>ul>li:hover>a{background-color: #000;}
.headerbox .header .menu ul li .sub_menu{
	min-width: 16em;
	max-width: 1000px;
    position: absolute;
    top: 140%;
    left: 0%;
    z-index: 10;
    visibility: hidden;
    opacity: 0;
    background: white;
	box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.5);
    transition: all 400ms ease;
}
.headerbox .header .menu ul li:hover > dl {
    opacity: 1;
    visibility: visible;
    top: 110%;
	
}

.headerbox .header .menu ul li dd {
    position: relative;
    display: block;
	transition: all 400ms ease;
}
.headerbox .header .menu dl dd>.three_menu{
	min-width: 100%;
    position: absolute;
    left: 100%;
    z-index: 10;
    visibility: hidden;
    opacity: 0;
    background: white;
    transition: all 400ms ease;
}
.headerbox .header .menu dl dd:hover>.three_menu {
    opacity: 1;
    visibility: visible;
    top: 0px;
	
}
.headerbox .header .menu ul li dl dd a {
    font-size: 23px;
    line-height: 1;
    font-weight: 500;
    color: #fff;
    text-align: left;
    display: block;
    padding: 9px 34px;
    position: relative;
    transition: all 400ms ease;
}
.headerbox .header .menu ul li dl dd:hover{
    background-color: #000;
}
.headerbox .header .menu ul li dl dd:hover>a{background-color: #8D0606;}





/*mMenu*/
.m_header{width: 100%;}
.sp_header{height:70px;overflow:hidden;background:var(--main-white);position:fixed;z-index:999;width:100%;display: none;top: 0;align-items: center;justify-content: space-between;}
.sp_logo{height:70px;display: flex;justify-content: center;align-items: center;padding-left: 10px;}
.sp_logo img{margin:auto;max-height:50px;}
.sp_nav{width:50px;position:relative;cursor:pointer;height:30px;}
/* 横杠 */
.sp_nav 
span{display:block;background:#000000;width:30px;height:3px;position:absolute;left:10px;transition:all ease 0.35s}
.sp_nav span:nth-of-type(1){top:0px}
.sp_nav span:nth-of-type(2){top:10px}
.sp_nav span:nth-of-type(3){top:20px}
.sp_nav_se span:nth-of-type(1){top:10px;transform:rotate(45deg)}
.sp_nav_se span:nth-of-type(2){width:0}
.sp_nav_se span:nth-of-type(3){top:10px;transform:rotate(-45deg)}
.sjj_nav{position:fixed;z-index:9999;background:var(--main-white);width:100%;height:calc(100% - 70px);font-size:14px;line-height:40px;top:70px;left:0;overflow:auto;overflow-x:hidden;transition:top ease 0.35s;display: none;transition:all ease 0.35s}
.nav_show{display: block;}
.sjj_nav ul li i{position:absolute;top:5px;right:0px;height:30px;padding:0px 7px 0 7px;}
.sjj_nav ul li i svg{transform:rotate(-90deg);transition:all ease 0.35s}
.sjj_nav ul li .sjj_nav_i_se svg{transform:rotate(0deg)}
.sjj_nav ul li{border-bottom: 1px dashed #ddd;;position:relative;line-height:45px;font-size:16px}
.sjj_nav>ul >li:last-child{border-bottom: 1px dashed #ddd;}
.sjj_nav ul li ul{display:none}
.sjj_nav ul li a{color:var(--font-color);width:100%;padding: 0 20px;display: block;box-sizing: border-box;}
.sjj_nav ul li a:hover{color: #000000;}
.sjj_nav ul li ul li a{color:var(--font-color);display:block;text-align:left;}
.sjj_nav ul li i svg{width:25px;height:25px;fill:#333;}
.sjj_nav ul li .sjj_nav_i_se svg{fill:#333;}
.sjj_nav ul li ul li>ul{margin-left:10px}
.sjj_nav ul li ul li{border-top: none;}
.sjj_nav ul li ul li a{padding: 0 30px;}








/* bannerbox */
.bannerbox{
	width: 100%;
}
.bannerbox .mySwiper1{
	width: 100%;
}
.bannerbox .mySwiper1 .swiper-slide{
	font-size: 0;
	width: 100%;
}
.bannerbox .mySwiper1 .swiper-slide img{
	width: 100%;
}

.bannerbox .mySwiper1 .prev_btn{
	font-size: 20px;
	position: absolute;
	top: 50%;
	z-index: 9;
	left: 0;
	line-height: 50px;
	height: 50px;
	width: 30px;
	text-align: center;
	transform: translateY(-50%);
	vertical-align: middle;
	cursor: pointer;
	color: white;
}
.bannerbox .mySwiper1 .next_btn{
	font-size: 20px;
	position: absolute;
	top: 50%;
	z-index: 9;
	right: 0;
	line-height: 50px;
	height: 50px;
	width: 30px;
	text-align: center;
	transform: translateY(-50%);
	vertical-align: middle;
	cursor: pointer;
	color: white;
}



.bannerbox_m{
	width: 100%;display: none;
}
.bannerbox_m .mySwiper1_m{
	width: 100%;
}
.bannerbox_m .mySwiper1_m .swiper-slide{
	font-size: 0;
	width: 100%;
}
.bannerbox_m .mySwiper1_m .swiper-slide img{
	width: 100%;
}

.bannerbox_m .mySwiper1_m .prev_btn_m{
	font-size: 20px;
	position: absolute;
	top: 50%;
	z-index: 9;
	left: 0;
	line-height: 50px;
	height: 50px;
	width: 30px;
	text-align: center;
	transform: translateY(-50%);
	vertical-align: middle;
	cursor: pointer;
	color: white;
}
.bannerbox_m .mySwiper1_m .next_btn_m{
	font-size: 20px;
	position: absolute;
	top: 50%;
	z-index: 9;
	right: 0;
	line-height: 50px;
	height: 50px;
	width: 30px;
	text-align: center;
	transform: translateY(-50%);
	vertical-align: middle;
	cursor: pointer;
	color: white;
}


.pd50{padding: 50px 0;}


/* footer */
.footerbox{width: 100%;margin: 0 auto;padding: 20px 0;background-color: #252525;}
.f_share{width: 100%;margin: 0 auto;margin-bottom: 10px;}
.f_share ul{display: flex;align-items: center;justify-content: center;}
.f_share ul li{margin: 0 2px;}
.f_share ul li a{width: 34px;height: 34px;background-color: rgba(255,255,255,0.25);display: inline-block;text-align: center;line-height: 34px;font-size: 20px;color: #fff;border-radius: 50%;}
.f_share ul li:hover a{background-color: #fff;color: #1a3a87;}

.f_desc{width: 100%;margin: 0 auto;text-align: center;}
.f_desc p{font-size: 16px;color: #fff;}



/* 通用内页 */
.inbannerbox{position: relative;width: 100%;margin: 0 auto;padding: 150px 0 200px 0;background-repeat: no-repeat;background-size: cover;}
.inbannerbox .text{width: 100%;max-width: 90%;text-align: center;}
.inbannerbox .text h2{font-size: 40px;color: #fff;margin-bottom: 20px;}
.inbannerbox .text h1{font-size: 70px;color: #c61500;font-weight: bold;}
.inbannerbox .text h3{font-size: 70px;color: #fff;font-weight: bold;}
.insidebox{width: 100%;margin: 0 auto;}
.insidebox .inside{width: 100%;box-sizing: border-box;}


.fixbtn{position: fixed;right: 20px;bottom: 20px;z-index: 10;}
.fixbtn .f_btn{display: inline-block;margin-right: 20px;padding: 12px 24px;background-color: #008935;font-size: 24px;color: #fff;border-radius: 5px;min-width: 200px;text-align: center;text-transform: uppercase;}
.fixbtn .f_btn:last-child{margin-right: 0;}


/* ================首页样式========================= */
.index1box{width: 100%;font-size: 0;}
.index1box video{width: 100%;}



/*  */
.m1box{width: 100%;margin: 0 auto;}
.m1{width: 100%;margin: 0 auto;}
.m1 ul{display: flex;flex-wrap: wrap;}
.m1 ul li{width: 18.4%;padding: 2px;}
.m1 ul li a{display: block;width: 100%;border: 1px solid rgb(255, 255, 255,0.4);}
.m1 ul li a .imgbox{width: 100%;font-size: 0;}
.m1 ul li a .imgbox img{width: 100%;height: 200px;
object-fit: contain;}
.m1 ul li a p{padding: 8px 16px;font-size: 16px;color: #fff;}


.m2box{width: 100%;margin: 0 auto;}
.m2{width: 100%;margin: 0 auto;border: 1px solid rgb(255, 255, 255,0.4);padding: 50px;}
.m2_title{width: 100%;padding-bottom: 15px;border-bottom: 2px solid #fff;margin-bottom: 50px;}
.m2_title h1{font-size: 70px;color: #fff;font-weight: bold;}
.m2_content{width: 100%;margin: 0 auto;}
.m2_content ul{display: flex;flex-wrap: wrap;justify-content: space-between;}
.m2_content ul li{width: 49%;margin-bottom: 25px;}
.m2_content ul li h3{font-size: 30px;color: #fff;margin-bottom: 20px;}
.m2_content ul li p{font-size: 16px;color: #fff;}


.m3box{width: 100%;margin: 0 auto;}
.m3{width: 100%;margin: 0 auto;border: 1px solid rgb(255, 255, 255,0.4);padding: 50px;}
.m3_content{width: 100%;margin: 0 auto;}
.m3_content ul{display: flex;flex-wrap: wrap;justify-content: space-between;}
.m3_content ul li{width: 49%;margin-bottom: 25px;display: flex;flex-wrap: wrap;justify-content: space-between;align-items: center;}
.m3_content ul li .imgbox{width: 30%;font-size: 0;}
.m3_content ul li .imgbox img{width: 100%;}
.m3_content ul li .textbox{width: 68%;}
.m3_content ul li .textbox h3{font-size: 30px;color: #fff;margin-bottom: 20px;}
.m3_content ul li .textbox p{font-size: 16px;color: #fff;}

.menubot{width: 100%;height: 400px;background-repeat: no-repeat;background-size: cover;}


.m4box{width: 100%;margin: 0 auto;}
.m4{width: 100%;margin: 0 auto;border: 1px solid rgb(255, 255, 255,0.4);padding: 50px;}
.m4_content{width: 100%;margin: 0 auto;display: flex;flex-wrap: wrap;justify-content: space-between;}
.m4_content .item{width: 49%;margin-bottom: 50px;}
.m4_content .item h2{font-size: 40px;color: #C61500;font-weight: bold;margin-bottom: 20px;}
.m4_content ul{width: 100%;}
.m4_content ul li{width: 100%;margin-bottom: 25px;}
.m4_content ul li h3{font-size: 30px;color: #fff;margin-bottom: 20px;}
.m4_content ul li p{font-size: 16px;color: #fff;}

.m4_content .item2{width: 100%;}
.m4_content .item2 .item{margin-bottom: 0;}
.m4_content .item2_content{width: 100%;display: flex;flex-wrap: wrap;justify-content: space-between;}
.m4_content .item2 h2{font-size: 40px;color: #C61500;font-weight: bold;margin-bottom: 20px;}
.m4_content .item2 .item ul{display: flex;flex-wrap: wrap;justify-content: space-between;}
.m4_content .item2 .item3 ul li{width: 49%;margin-bottom: 0;}
.m4_content .item2 .item3 ul li h3{margin-bottom: 10px;}



.m5box{width: 100%;margin: 0 auto;}
.m5{width: 100%;margin: 0 auto;border: 1px solid rgb(255, 255, 255,0.4);padding: 50px;}
.m5_content{width: 100%;margin: 0 auto;display: flex;flex-wrap: wrap;justify-content: space-between;}
.m5_content .item{width: 49%;}
.m5_content .item h2{font-size: 40px;color: #C61500;font-weight: bold;margin-bottom: 20px;}
.m5_content ul{width: 100%;}
.m5_content ul li{width: 100%;margin-bottom: 25px;display: flex;flex-wrap: wrap;justify-content: space-between;align-items: center;}
.m5_content ul li .imgbox{width: 30%;font-size: 0;}
.m5_content ul li .imgbox img{width: 100%;}
.m5_content ul li .textbox{width: 68%;}
.m5_content ul li .textbox h3{font-size: 30px;color: #fff;margin-bottom: 20px;}
.m5_content ul li .textbox p{font-size: 16px;color: #fff;}



.m6box{width: 100%;margin: 0 auto;}
.m6{width: 100%;margin: 0 auto;border: 1px solid rgb(255, 255, 255,0.4);padding: 50px;}
.m6 .list{width: 100%;}
.m6 .list ul li{width: 100%;margin-bottom: 10px;}
.m6 .list ul li h3{font-size: 30px;color: #fff;margin-bottom: 20px;}









@media only screen and (max-width: 980px) {
	.headerbox{
		display: none;
	}
	.sp_header{ display:flex;}
	.bannerbox{display: none;}
	.bannerbox_m{display: block;margin-top: 70px;}
	.inbannerbox{margin-top: 70px;}
	.pd50{padding: 25px 0;}
	.fixbtn{display: flex;justify-content: space-around;align-items: center;width: 100%;right: 0;}
	.fixbtn .f_btn{width: 40%;font-size: 15px;margin-right: 0;}
	.index_tc .inner {max-width: 70%;}
	.index_tc .inner .imgbox {width: 100%;}
	.index_tc .inner .textbox{width: 100%;}
	.index_tc .inner .textbox .t_inner h1 {font-size: 25px;}
	.index_tc .inner .textbox .t_inner h3 {font-size: 14px;}
	.f_tc .inner .t_inner h1 {font-size: 25px;}
	.f_tc .inner {max-width: 80%;}
	.f_tc .inner .t_inner {padding: 0 5%;}
	.inbannerbox .text h1 {font-size: 40px;}
	.inbannerbox .text h3 {font-size: 40px;}
	.m2_title h1 {font-size: 35px;}
	.m2_content ul li h3 {font-size: 25px;}
	.m1 ul li{width: 50%;}
	.m2_content ul li {width: 100%;}
	.m3_content ul li {width: 100%;}
	.m3_content ul li .textbox h3 {font-size: 25px;}
	.m4_content .item h2 {font-size: 30px;}
	.m4_content ul li h3 {font-size: 25px;}
	.m4_content .item2 h2 {font-size: 30px;}
	.m5_content .item h2 {font-size: 30px;}
	.m5_content ul li .textbox h3 {font-size: 25px;}
	.m6 .list ul li h3 {font-size: 25px;}
	.m5_content .item {width: 100%;}
	.m4_content .item {width: 100%;}
	.m4_content .item2 .item3 ul li {width: 100%;}
	.m1 ul li a .imgbox img{width: 100%;height: 150px;
		object-fit: contain;}
	
}


@media only screen and (max-width: 680px) {

}
