/*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;}
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: 1400px;
		margin: 0 auto;
	}
}

:root{
	--primary-color:#283e93;
	--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{
	max-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: #fff;z-index: 999;}
.headerbox.active{position: fixed;left: 0;top: 0;}
.headerbox .header{display: flex;align-items: center;}
.headerbox .header .menu ul li{
	position: relative;
	display: inline-block;
}
.headerbox .header .menu ul li a{
	font-size: 18px;
    font-weight: bold;
    line-height: 1;
    padding: 35px 35px;
    color: #23479d;
    display: flex;
    position: relative;
    text-decoration: none;
}

.headerbox .header .menu ul li .sub_menu{
	min-width: 160%;
    position: absolute;
    top: 140%;
    left: 0%;
    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: 140%;
    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 20px 15px 20px;
    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: #fff;}





/*mMenu*/
.m_header{width: 100%;}
.sp_header{height:70px;overflow:hidden;background:var(--main-white);position:fixed;z-index:999;width:98%;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;}


.plr15{padding-left: 15px;padding-right: 15px;}
.ptm50{padding-top: 80px;padding-bottom: 80px;}
.bg{background-repeat: no-repeat;background-size: cover;background-position: center;}
.img_list2{width: 100%;margin: 0 auto;}
.img_list2 ul{display: flex;flex-wrap: wrap;}
.img_list2 ul li{width: 50%;font-size: 0;padding: 0 15px;}
.img_list2 ul li img{width: 100%;}

.img_list3{width: 100%;margin: 0 auto;}
.img_list3 ul{display: flex;flex-wrap: wrap;}
.img_list3 ul li{width: 33.33%;font-size: 0;padding: 0 15px;}
.img_list3 ul li img{width: 100%;}

.img_list4{width: 100%;margin: 0 auto;}
.img_list4 ul{display: flex;flex-wrap: wrap;}
.img_list4 ul li{width: 25%;font-size: 0;padding: 0 15px;}
.img_list4 ul li img{width: 100%;}





/* 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%;}

.prev_btn,.next_btn{font-size: 20px;position: absolute;top: 50%;z-index: 9;line-height: 50px;height: 50px;width: 30px;text-align: center;transform: translateY(-50%);vertical-align: middle;cursor: pointer;color: white;background: rgba(0,0,0,.1);}
.prev_btn{left: 0;}
.next_btn{right: 0;}
.mySwiper1 .swiper-pagination-bullet {font-size: 0px;width: 14px;height: 14px;background-color: rgba(0,0,0,0.2);}
.mySwiper1 .swiper-pagination-bullet-active{background: var(--primary-color);}



/* footer */
.footerbox{width: 100%;margin: 0 auto;background: #133391;padding-top: 50px;padding-bottom: 26px;}
.footer{width: 100%;margin: 0 auto;}
.f_logo{width: 100%;font-size: 0;}
.f_logo img{max-width: 100%;width: auto;}
.f_top{font-size: 0;display: flex;justify-content: flex-end;}
.f_top .out_top{font-size: 0;display: inline-block;position: relative;}
.f_top .out_top i{position: absolute;top: 50%;left: 50%;transform: translate(-50%,-50%);font-size: 25px;color: #fff;}
.f_top .out_top img{max-width: 100%;width: auto;}
.f_contact{width: 100%;}
.f_contact ul{display: flex;align-items: center;}
.f_contact ul li{display: flex;align-items: center;margin-right: 30px;}
.f_contact ul li img{margin-right: 10px;}
.f_contact ul li span{font-size: 20px;color: #fff;font-weight: 600;}
.f_bot{width: 100%;display: flex;align-items: center;justify-content: space-between;margin-top: 10px;}
.f_bot p{font-size: 17.4px;color: #fff;}
.f_bot .fb_right{display: flex;align-items: center;}
.f_bot .fb_right a{font-size: 17.4px;padding: 0 12px;color: #fff;}




/* 通用内页 */
.inbannerbox{position: relative;width: 100%;margin: 0 auto;font-size: 0;}
.inbannerbox img{width: 100%;}
.insidebox{width: 100%;margin: 0 auto;}
.insidebox .inside{width: 100%;box-sizing: border-box;}


/* ================首页样式========================= */
.index1box{width: 100%;margin: 0 auto;}
.index1{width: 100%;margin: 0 auto;display: flex;flex-wrap: wrap;justify-content: space-between;}
.i1_left{width: 55%;}
.i1_right{width: 40%;display: flex;flex-wrap: wrap;justify-content: space-between;align-items: flex-start;}
.i1_left h3{font-size: 30px;color: #000;font-weight: 600;padding-bottom: 10px;position: relative;margin-bottom: 25px;}
.i1_left h3:after{width: 60px;height: 2px;background: #ffde00;content: "";position: absolute;left: 0;bottom: 0;}
.i1_left .desc{font-size: 16px;color: #333;line-height: 30px;margin-bottom: 40px;}
.i1_left .i1_btn{}
.i1_left .i1_btn a{background: #283e93;padding: 15px 40px;display: inline-block;box-shadow:0 1px 6px rgb(0, 0, 0,0.4);font-size: 16px;color: #fff;}

.i1_right ul{display: flex;flex-wrap: wrap;justify-content: space-between;width: 47%;}
.i1_right ul:nth-child(1){margin-top: 30px;}
.i1_right ul:nth-child(2){margin-top: -30px;}
.i1_right ul li{width: 100%;margin-bottom: 20px;background: #fff;padding: 25px;box-shadow:0 1px 6px rgb(0, 0, 0,0.4);}
.i1_right ul li a{display: block;width: 100%;}
.i1_right ul li a .imgbox{width: 100%;font-size: 0;margin-bottom: 20px;}
.i1_right ul li a .imgbox img{width: 80px;}
.i1_right ul li a p{font-size: 20px;color: #000;}


.index2box{width: 100%;margin: 0 auto;}
.index2{width: 100%;margin: 0 auto;}
.i2_top{width: 100%;margin: 0 auto;margin-bottom: 40px;display: flex;flex-wrap: wrap;justify-content: space-between;align-items: center;}
.i2_top h3{font-size: 30px;color: #000;font-weight: 600;}
.i2_top a{display: inline-block;background: #283e93;border: 2px solid #fff;box-shadow:0 1px 6px rgb(0, 0, 0,0.5);padding: 10px 30px;color: #fff;font-size: 16px;border-radius: 5px;}
.i2_content{width: 100%;margin: 0 auto;}
.i2_content ul{display: flex;flex-wrap: wrap;}
.i2_content ul li{width: 18.9%;margin-right: 1%;margin-bottom: 20px;}
.i2_content ul li:nth-child(4n){margin-right: 1.5%;}
.i2_content ul li .imgbox{width: 100%;font-size: 0;}
.i2_content ul li .imgbox img{width: 100%;}
.i2_content ul li h3{font-size: 20px;color: #333;margin-top: 10px;text-align: center;}




.index3box{width: 100%;margin: 0 auto;}
.index3{width: 100%;margin: 0 auto;display: flex;flex-wrap: wrap;justify-content: space-between;align-items: center;}
.index3 .imgbox{width: 46%;font-size: 0;}
.index3 .imgbox img{width: 100%;}
.index3 .textbox{width: 50%;}
.index3 .textbox h3{font-size: 30px;color: #000;font-weight: 600;margin-bottom: 10px;}
.index3 .textbox .desc{font-size: 16px;color: #333;line-height: 30px;}





.index4box{width: 100%;margin: 0 auto;}
.index4{width: 100%;margin: 0 auto;}
.index4 ul{display: flex;flex-wrap: wrap;}
.index4 ul li{width: 24.33%;font-size: 0;display: flex;align-items: center;justify-content: center;margin-bottom: 20px;}
.index4 ul li img{max-width: 100%;width: auto;}




/*  */
.productbox{width: 100%;margin: 0 auto;}
.product{width: 100%;margin: 0 auto;}
.product .item{width: 100%;margin-bottom: 50px;padding: 30px 0;border-bottom: 1px solid #111;}
.product .item .tit{width: 100%;font-size: 28px;font-weight: 600;margin-bottom: 20px;}
.product .item .p_content{display: flex;flex-wrap: wrap;justify-content: space-between;}
/* .product .item .p_content .left{width: 20%;} */
.product .item .p_content .right_content{width: 100%;position: relative;}
.product .item .p_content .left .kong{height: 250px;margin-bottom: 20px;}
.product .item .p_content .left .desc{font-size: 16px;}
.product .item .p_content .right_content .p_swiper{width: 90%;overflow: hidden;margin: 0 auto;}
.product .item .p_content .right_content .swiper-slide .inner{display: block;width: 100%;border: 1px solid #efefef;}
.product .item .p_content .right_content .swiper-slide .inner .imgbox{width: 100%;font-size: 0;height: 250px;margin-bottom: 20px;display: block;}
.product .item .p_content .right_content .swiper-slide .inner .imgbox img{width: 100%;height: 100%;object-fit: contain;}
.product .item .p_content .right_content .swiper-slide .inner .desc{font-size: 16px;text-align: left;padding: 10px; line-height:28px;min-height: 650px;max-height: 650px;}
.p_left,.p_right{position: absolute;top: 50%;transform: translateY(-50%);cursor: pointer;font-size: 65px;color: #10aeff;}
.p_left{left: 0;}
.p_right{right: 0;}
.product .item .p_content .swiper-button-lock {display: block;}




@media only screen and (max-width: 980px) {
	.headerbox{
		display: none;
	}
	.sp_header{ display:flex;}
	.height{height: 70px;}
	.ptm50{padding-top: 50px;padding-bottom: 50px;}
	.img_list2 ul li,.img_list3 ul li,.img_list4 ul li{width: 50%;margin-bottom: 15px;}
    .f_contact ul{flex-wrap: wrap;}
	.i1_left{width: 100%;margin-bottom: 20px;}
	.i1_right{width: 100%;}
	.i1_right ul{width: 100%;margin: 0 !important;}
	.i1_right ul li {width: 48%;margin-bottom: 20px;}
	.i2_content ul{justify-content: space-between;}
	.i2_content ul li{width: 48%;margin-right: 0 !important;}
	.index3 .imgbox{width: 100%;margin-bottom: 20px;}
	.index3 .textbox{width: 100%;}
	.index4 ul{justify-content: space-between;}
	.index4 ul li{width: 48%;margin-bottom: 20px;}
	.i2_content ul li h3 {font-size: 16px;}
	.index3 .textbox h3 {font-size: 25px;}
	.i1_right ul li a p {font-size: 16px;}
    .product .item .p_content .left{width: 100%;}
.product .item .p_content .right{width: 100%;}
	
}


@media only screen and (max-width: 680px) {
	.img_list2 ul li,.img_list3 ul li,.img_list4 ul li{width: 100%;}

}
