/*common start*/
body,div,ul,li,a,img,p,dl,dt,dd,h1,h2,h3,h4,span,strong,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;font-family:' '; 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;}

.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: 1400px){
	.wapper{
		width: 1400px;
		margin: 0 auto;
	}
}

:root{
	--primary-color:#018c3e;
	--main-color:#018c3e;
	--font-color:#666;
	--main-color-white:#fff;
	--main-white:#fff;
	--main-black:#000;
}

/* 滚动条 */
::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background: rgba(0,0,0,.1);
    -webkit-box-shadow: inset 0 0 6px rgb(0 0 0 / 50%);
}
::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgb(0 0 0 / 30%);
    border-radius: 5px;
}
::-webkit-scrollbar {
    width: 12px;
}
::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}






/* 轮播图通用 */
.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;}


/* 导航 */
.headerbox{
	width: 100%;
	margin:  0 auto;
	background-color: var(--primary-color);
}
.headerbox .header{
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.headerbox .header .menu ul li{
	position: relative;
	display: inline-block;
}
.headerbox .header .menu ul li>a{
	font-size: 16px;
    font-weight: 600;
    line-height: 1;
    padding: 35px 25px;
    color: var(--main-color-white);
    display: flex;
    position: relative;
    text-decoration: none;
}
.headerbox .header .menu ul li>a:after{
	position: absolute;
	left: 50%;
	bottom: 20px;
	width: 4px;
	height: 4px;
	border-radius: 50%;
	background-color: var(--main-white);
}
.headerbox .header .menu ul li:hover>a:after{
	content: "";
}
.headerbox .header .menu ul li .sub_menu{
	min-width: 200%;
    position: absolute;
    top: 140%;
    left: -50%;
    z-index: 10;
    visibility: hidden;
    opacity: 0;
    background: white;
    transition: all 400ms ease;
}
.headerbox .header .menu ul li:hover > dl {
    opacity: 1;
    visibility: visible;
    top: 100%;
	
}

.headerbox .header .menu ul li dd {
    position: relative;
    display: block;
	text-align: center;
	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: 16px;
    line-height: 20px;
    font-weight: 500;
    color: #333;
    text-align: left;
    display: block;
    padding: 15px 25px 15px 25px;
    position: relative;
    text-decoration: none;
    outline: none;
	text-align: center;
    text-transform: none;
    transition: all 400ms ease;
    border-bottom: 1px solid #f4f4f4;
}
.headerbox .header .menu ul li dl dd:hover{
    background-color: var(--primary-color);
}
.headerbox .header .menu ul li dl dd:hover>a{color: var(--main-white);}





/*mMenu*/
.m_header{width: 100%;}
.sp_header{height:90px;overflow:hidden;background:var(--main-white);position:fixed;z-index:999;width:100%;display: none;top: 0;}
.sp_logo{float:left;height:90px;display: flex;justify-content: center;align-items: center;width: 100%;}
.sp_logo img{margin:auto;max-width: 99%;margin-top: 10px;}
.sp_nav{width:50px;float:right;position:relative;cursor:pointer;height:30px;margin-top:25px}
/* 横杠 */
    .sp_nav
    span {
        display: block;
        background: var(--main-black);
        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:var(--main-white);}
.sjj_nav ul li .sjj_nav_i_se svg{fill:var(--main-white)}
.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 a{
	display: block;
	font-size: 0;
	width: 100%;
}
.bannerbox .mySwiper1 .swiper-slide a 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;
	margin-top: -25px;
	vertical-align: middle;
	cursor: pointer;
	color: white;
	background: rgba(0,0,0,.1);
}
.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;
	margin-top: -25px;
	vertical-align: middle;
	cursor: pointer;
	color: white;
	background: rgba(0,0,0,.1);
}

.bannerbox .mySwiper1 .swiper-pagination-bullet {
	font-size: 0px;
	width: 14px;
    height: 14px;
    overflow: hidden;
    -webkit-transition: border-color 350ms ease;
    -moz-transition: border-color 350ms ease;
    -o-transition: border-color 350ms ease;
    -ms-transition: border-color 350ms ease;
    transition: border-color 350ms ease;
    transition: border-color 350ms ease;
    background-color: rgba(0,0,0,0.2);
}
.bannerbox .mySwiper1 .swiper-pagination-bullet-active{
	background: var(--primary-color);
    width: 28px;
    border-radius: 20px;
}

.pd50{padding: 50px 0;}
/* footer */
.footerbox{width: 100%;margin: 0 auto;background-color: var(--primary-color);}
.footer{width: 100%;margin: 0 auto;}

.footer_menu{width: 100%;}
.footer_menu ul{display: flex;flex-wrap: wrap;justify-content: space-between;}
.footer_menu ul li{margin-bottom: 20px;}
.footer_menu ul li:last-child{margin-right: 0;}
.footer_menu ul li h3{font-size: 16px;color: var(--main-white);}
.footer_menu ul li a{color: var(--main-white);}
.footer_menu ul li dl{margin-top: 15px;}
.footer_menu ul li dl dd{line-height: 24px;}
.footer_bot{width: 100%;display: flex;align-items: center;justify-content: space-between;padding: 18px 0px;border-top: 1px solid #ebebeb;flex-wrap: wrap;}
.bot_left{}
.footer_bot span{color: var(--main-white);font-size: 15px;display: block;}
.footer_bot a{color:var(--main-white);padding: 0px 15px;}



/* 通用内页 */
.inbannerbox{
	position: relative;
	width: 100%;
	margin: 0 auto;
	background-repeat: no-repeat;
	background-size: cover;
	min-height: 100%;
}
.inbannerbox img{width: 100%;}
.inbannerbox .textbox{position: absolute;left: 0%;top: 50%;transform: translateY(-50%);text-align: center;width: 100%;}
.inbannerbox .textbox h1{position: relative;font-size: 48px;color: #fff;margin-bottom: 15px;padding-bottom: 10px;font-weight: bold;}
.inbannerbox .textbox h1::after{content: "";left: 50%;bottom: 0;transform: translateX(-50%);width: 60px;height: 2px;background-color: #fff;position: absolute;}
.inbannerbox .textbox h3{font-size: 24px;color: #eee;}
.insidebox{
	width: 100%;
	margin: 0 auto;
}
.insidebox .inside{
	width: 100%;
	padding: 10px 0;
	box-sizing: border-box;
}


.main_title{width: 100%;text-align: center;margin-bottom: 10px;}
.main_title h1{font-size: 70px;color: #F5F5F5;font-weight: bold;position: relative;}
.main_title h3{font-size: 28px;color: #333;position: relative;z-index: 1;}

.main_title h4{font-size: 28px;color: #333;position: relative;z-index: 1;}
.main_titlea{width: 100%;text-align: center;}
.main_titlea h1{font-size: 70px;color: #F5F5F5;font-weight: bold;position: relative;}
.main_titlea h3{font-size: 28px;color: #06ac64;position: relative;z-index: 1;font-weight: bold;}

.desc{color: #6f7073;font-size: 14px;line-height: 25px;}

/* ================首页样式================= */
.index1box{width: 100%;margin: 0 auto;}
.index1{width: 100%;margin: 0 auto;}

.index1_content{width: 100%;margin: 0 auto;display: flex;flex-wrap: wrap;justify-content: space-between;align-items: center;}

.index1_left{width: 50%;font-size: 0;}
.index1_right{width: 46%;}

.index1_left ul{display: flex;flex-wrap: wrap;}
.index1_left ul li{width: 49%;margin-right: 2%;margin-bottom: 20px;}
.index1_left ul li:nth-child(2n){margin-right: 0;}
.index1_left ul li a{display: block;width: 100%;}
.index1_left ul li a img{width: 100%;}


.index1_right h1{color: #091c47;font-size: 48px;margin-bottom: 40px;max-width: 468px;}
.index1_right .desc{margin-bottom: 0px;}

.btn{width: 100%;text-align: left;}
.btn1{text-align: center;margin-top: 50px;}
.btn a{display: inline-block;width: 180px;height: 56px;line-height: 56px;text-align: center;color: var(--main-white);font-size: 16px;box-shadow: rgb(1 140 62 / 41%) 0px 0px 15px 0px;border-radius: 4px;background-color: var(--primary-color);}




.index2box{width: 100%;margin: 0 auto;position: relative;}
.index2{width: 100%;margin: 0 auto;position: relative;z-index: 1;}
.index2 .main_title h1{color: #ebebeb;}
.index2box .icon{position: absolute;left: 0;top: 50%;transform: translateY(-50%);max-width: 100%;width: auto;}

.index2_content{width: 100%;}
.index2_content ul{display: flex;flex-wrap: wrap;}
.index2_content ul li{width: 32%;margin-right: 2%;margin-bottom: 20px;}
.index2_content ul li:nth-child(3n){margin-right: 0%;}

.index2_content ul li .li_inner{width: 100%;border: 1px solid #aaa;border-radius: 10px;overflow: hidden;}
.index2_content ul li .li_inner .imgbox{width: 100%;font-size: 0;}
.index2_content ul li .li_inner .imgbox img{width: 100%;}
.index2_content ul li .li_inner .textbox{padding: 15px 25px;background-color: var(--main-white);}
.index2_content ul li .li_inner .textbox span{display: inline-block;font-size: 24px;color: #ff0a0a;margin-bottom: 10px;}
.index2_content ul li .li_inner .textbox h3{color: #151d2f;font-size: 20px;margin-bottom: 10px;transition: all 0.3s;}
.index2_content ul li .li_inner .textbox p{color: #485462;font-size: 15px;}

.index2_content ul li:hover .li_inner .textbox h3{color: var(--primary-color);}


.index3box{width: 100%;margin: 0 auto;background-repeat: no-repeat;background-size: cover;}
.index3{width: 100%;margin: 0 auto;}
.index3 .main_title h1{opacity: 0.4;}
.index3 .main_title h3{color: var(--main-white);}
.index3_content{width: 100%;padding: 80px 0;}
.index3_content ul{display: flex;flex-wrap: wrap;justify-content: space-between;}
.index3_content ul li{width: 35%;margin-bottom: 50px;}
.index3_content ul li .li_inner{display: flex;align-items: center;justify-content: flex-end;}
.index3_content ul li .li_inner .imgbox{width: 86px;height: 86px;font-size: 0;order: 1;}
.index3_content ul li .li_inner .imgbox img{width: 100%;height: 100%;}
.index3_content ul li .li_inner .textbox{max-width: 50%;order: 0;text-align: right;}
.index3_content ul li .li_inner .textbox h3{font-size: 18px;color: var(--main-white);margin-bottom: 10px;}
.index3_content ul li .li_inner .textbox p{font-size: 14px;color: var(--main-white);}

.index3_content ul li:nth-child(2n) .li_inner{justify-content: flex-start;}
.index3_content ul li:nth-child(2n) .li_inner .imgbox{order: 0;}
.index3_content ul li:nth-child(2n) .li_inner .textbox{order: 1;text-align: left;}




.index4box{width: 100%;margin: 0 auto;}
.index4{width: 100%;margin: 0 auto;}
.index4_content{width: 100%;}
.index4_content ul{display: flex;flex-wrap: wrap;}
.index4_content ul li{width: 23%;margin-right: 2%;}
.index4_content ul li a{display: block;width: 100%;}
.index4_content ul li a .imgbox{width: 100%;font-size: 0;margin-bottom: 20px;display: flex;align-items: center;justify-content: center;}
.index4_content ul li a .imgbox img{max-width: 100%;width: auto;}
.index4_content ul li a .textbox{text-align: center;}
.index4_content ul li a .textbox h3{margin-bottom: 15px;font-size: 18px;color: #333;}
.index4_content ul li a .textbox p{font-size: 18px;color: #666;margin: 0 auto;}



.index44box{width: 100%;margin: 0 auto;}
.index44{width: 100%;margin: 0 auto;}
.index44_content{width: 100%;}
.index44_content ul{display: flex;flex-wrap: wrap;}
.index44_content ul li{width: 100%;margin-right: 2%;}
.index44_content ul li a{display: block;width: 100%;}
.index44_content ul li a .imgbox{width: 100%;font-size: 0;display: flex;align-items: center;justify-content: center;}
.index44_content ul li a .imgbox img{max-width: 100%;width: auto;}
.index44_content ul li a .textbox{text-align: center;}
.index44_content ul li a .textbox h3{margin-bottom: 15px;font-size: 18px;color: #333;}
.index44_content ul li a .textbox p{font-size: 14px;color: #666;max-width: 200px;margin: 0 auto;}


.index5box{width: 100%;margin: 0 auto;position: relative;background-color: #FFFFFF;}
.index5box .icon{position: absolute;right: 0;top: 0;max-width: 100%;width: auto;}
.index5{width: 100%;margin: 0 auto;position: relative;z-index: 1;}
.index5 .main_title h1{color: #ebebeb;}
.index5_content{width: 100%;}
.index5_content ul{display: flex;flex-wrap: wrap;}
.index5_content ul li{width: 19%;margin-right: 1%;margin-bottom: 20px;}
.index5_content ul li:nth-child(5n){margin-right: 0;}
.index5_content ul li .li_inner{width: 100%;overflow: hidden;}
.index5_content ul li .li_inner .imgbox{width: 100%;text-align: center;}
.index5_content ul li .li_inner .imgbox img{width: 90%;}
.index5_content ul li .li_inner .textbox{width: 100%;padding: 10px 20px;background-color: #fff;}



.index6box{width: 100%;margin: 0 auto;}
.index6{width: 100%;margin: 0 auto;}

.index6_content{width: 100%;margin: 0 auto;}
.index6_content ul li{width: 100%;margin-bottom: 20px;padding: 20px 0;border-bottom: 1px solid #d1d1d1;}

.index6_content ul li  h3{font-weight: bold;text-align: center;}
.index6_content ul li a{display: flex;justify-content: space-between;flex-wrap: wrap;}
.index6_content ul li a .imgbox{width: 25%;font-size: 0;}
.index6_content ul li a .imgbox img{width: 100%;}
.index6_content ul li a .textbox{width: 73%;}
.index6_content ul li a .textbox h3{font-size: 18px;color: #333;margin-bottom: 10px;}
.index6_content ul li:hover a .textbox h3{color: var(--primary-color);}
.index6_content ul li a .textbox p{font-size: 14px;color: #666;}



/* ================关于我们样式================= */
.about1_content{align-items: flex-start;}
.about1_left{width: 35%;}
.about1_right{width: 60%;}


.about2box{width: 100%;margin: 0 auto;}
.about2{width: 100%;margin: 0 auto;}
.about2_content{width: 100%;margin: 0 auto;display: flex;justify-content: space-between;flex-wrap: wrap;}
.about2_left{width: 60%;}
.about2_right{width: 35%;}
.about2_left ul li{width: 100%;display: flex;align-items: center;justify-content: space-between;margin-bottom: 30px;flex-wrap: wrap;}
.about2_left ul li .date{width: 36%;position: relative;}
.about2_left ul li .date img{width: 100%;}
.about2_left ul li .date span{display: block;position: absolute;left: 8%;top: 50%;transform: translateY(-50%);font-size: 16px;color: var(--main-white);}
.about2_left ul li .textbox{width: 60%;font-size: 16px;color: #333;}
.about2_left ul li .textbox h3{margin-bottom: 15px;font-size: 16px;color: #333;}


.about2_right{background-color: var(--primary-color);padding: 30px 15px;}
.about2_right h1{font-size: 40px;color: var(--main-white);position: relative;}
.about2_right h1:after{content: "";position: absolute;left: 0;top: 0;width: 50px;height: 3px;background-color: var(--main-white);}
.about2_right .desc{margin-top: 50px;margin-bottom: 50px;}
.about2_right .desc p{font-size: 14px;color: var(--main-white);}
.about2_right .imgbox{width: 100%;font-size: 0;}
.about2_right .imgbox img{width: 100%;}








.index44box{display: none;}



@media only screen and (max-width: 980px) {
	
	.index1_right .desc  img{width: 80%;margin: 0 auto;}
	
	.wapper{
		width: 100%;
	    max-width: 100%;
	    margin-right: auto;
	    margin-left: auto;
	    padding-left: 10px;
	    padding-right: 10px;
		box-sizing: border-box;
	}
	.headerbox{
		display: none;
	}
	.index44box{display: block;}
	.sp_header{ display:block;}
	.bannerbox{margin-top: 90px;}
	.inbannerbox{margin-top: 90px;}
	.pd50{padding: 25px 0;}
	.index1_left{width: 100%;margin-bottom: 20px;}
	.index1_right{width: 100%;}
	.index1_right h1 {font-size: 30px;}
	.main_title h1 {display: none;}
	
	.index3_content{padding: 0;}
	.main_title h3 {font-size: 26px;margin-top: 0;font-weight: bold;}
	.index2_content ul li {width: 49%;margin-right: 2%;}
	.index2_content ul li:nth-child(2n){margin-right: 0;}
	.index2_content ul li:nth-child(3n){margin-right: 2%;}
	.index2_content ul li .li_inner .textbox span {font-size: 20px;}
	.index2_content ul li .li_inner .textbox h3 {font-size: 18px;}
	.index3_content ul li{width: 100%;margin-bottom: 20px;}
	.index3_content ul li .li_inner{justify-content: flex-start;}
	.index3_content ul li .li_inner .imgbox{order: 0 !important;width: auto;height: auto;margin-right: 15px;}
	.index3_content ul li .li_inner .imgbox img{width: 86px;height: 86px;}
	.index3_content ul li .li_inner .textbox {max-width: 100%;text-align: left !important;order: 1 !important;}
	.index4_content ul li {width: 49%;margin-right: 2%;}
	.index4_content ul li:nth-child(2n){margin-right: 0;}
	
	.index5_content ul li{width: 49%;margin-right: 2%;}
	.index5_content ul li:nth-child(2n){margin-right: 0;}
	.index5_content ul li:nth-child(3n){margin-right: 2%;}
	.index6_content ul li a .imgbox {width: 100%;margin-bottom: 20px;display: flex;align-items: center;justify-content: center;}
	.index6_content ul li a .imgbox img{max-width: 100%;width: auto;}
	.index6_content ul li a .textbox {width: 100%;}
	.inbannerbox .textbox h1 {font-size: 35px;}
	.inbannerbox .textbox h3 {font-size: 20px;}
	.about2_left{width: 100%;margin-bottom: 20px;}
	.about2_right{width: 100%;}
}


@media only screen and (max-width: 680px) {
	.index1_right h1 {font-size: 20px;}
	.index2_content ul li {width: 100%;margin-right: 0%;}
	.index2_content ul li:nth-child(3n){margin-right: 0%;}
	.index4_content ul li {width: 100%;margin-right: 0%;}
	.index5_content ul li {width: 49%;margin-right: 1%;}
	.index5_content ul li:nth-child(3n){margin-right: 0%;}
	.inbannerbox .textbox h1 {font-size: 30px;}
	.inbannerbox .textbox h3 {font-size: 18px;}
	.about2_left ul li .date{width: 100%;}
	.about2_left ul li .textbox{width: 100%;}
}
