/*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: "times" ;}
body {
    font-size: 14px;
    color: #111;
    overflow-x: hidden;
    font-family: "times";
}
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; }
@font-face {
    font-family: "times";
    src: url("/fonts/times.ttf") format("truetype");
}
@font-face {
    font-family: "fzlt";
    src: url("/fonts/fzlt.ttf") format("truetype");
}
@font-face {
    font-family: "fzltxh";
    src: url("/fonts/fzltxh.ttf") format("truetype");
}
.wapper{
	width: 80%;
    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: 1600px){
	.wapper{
		width: 1600px;
		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;}


/* 导航 */
.headerbox{width: 100%;margin:  0 auto;}
.headerbox .header{display: flex;align-items: center;justify-content: space-between;}
.logo{font-size: 0;}
.logo img{max-width: 100%;width: auto;height:80px;}
.headerbox .header .menu ul{display: flex;align-items: center;}
.headerbox .header .menu ul li{
	position: relative;
}
    .headerbox .header .menu ul li a {
        font-size: 15px;
        /*font-weight: 600;*/
        line-height: 1;
        padding: 25px 11px;
        color: #fff;
        display: flex;
        position: relative;
        text-decoration: none;
    }

.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: 14px;
    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: #fff;}

.h_right{display: flex;align-items: center;}
.h_lang {position: relative;padding: 0 1.46vw;}
.h_lang span{ display:block; color:#fff; font-size:14px; line-height:29px; padding:25px 0; padding-left:25px; background:url(../images/ico_lang2.svg) left center no-repeat; background-size:24px auto;}
.h_lang span img{ display:inline-block; vertical-align:middle; margin-right:.52vw;}
.h_lang ul{ width:120px; background:#fff; box-shadow:0 0 10px rgba(0,0,0,.1); position:absolute; top:100%; left:50%; transform:translateX(-50%); display:none;}
.h_lang:hover ul{ display:block;z-index:999;}
.h_lang ul li{}
.h_lang ul li a{ display:block; text-align:center; color:#333; font-size:16px; line-height:26px; padding:10px 5px;}
.h_lang ul li a:hover{ color:var(--primary-color);}



/*mMenu*/
.m_header{width: 100%;}
.sp_header{height:70px;overflow:hidden;background:#102d4f;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:#fff;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;}



/* banner */
.bannerbox{width: 100%;margin: 0 auto;font-size: 0;position: relative;}
.bannerbox img{width: 100%;}
.bannerbox .textbox{position: absolute;top: 18%;right: 21%;}
.bannerbox .textbox h1{font-size: 30px;color: #fff;font-weight: 400;margin-bottom: 25px; line-height: 2em; font-family: "times";  /*font-family: "fzltxh";*/}
.bannerbox .textbox h3{font-size: 22px;color: #fff;font-weight: 400;  }












.pd100{padding: 80px 0;}
.pd50{padding: 50px 0 0 0;}


/* footer */
.footerbox{width: 100%;margin: 0 auto;padding: 40px 0;background-color: #102d4f;}
.footer{width: 100%;margin: 0 auto;display: flex;flex-wrap: wrap;justify-content: space-between;}
.f_left{}
.f_left p{font-size: 14px;color: #fff;line-height: 25px;}
.f_left p span{color: #fff;}
.f_right{text-align: right;}
.fr_top{margin-bottom: 10px;}
.fr_top p{font-size: 14px;color: #fff;line-height: 25px;}
.fr_top p a{color: #fff;margin-right: 10px;}
.fr_top p a:last-child{margin-right: 0;}
.f_bot{display: flex;align-items: center;justify-content: flex-end;}
.f_bot span{font-size: 14px;color: #fff;line-height: 25px;}
.f_bot ul{display: flex;align-items: center;margin-right: 10px;}
.f_bot ul li{margin-right: 10px;}
.f_bot ul li a{font-size: 0;}
.f_bot ul li a img{max-width: 100%;width: auto;height: 35px;}
.f_bot .f_btn{display: inline-block;background-color: #0d1c33;font-size: 14px;color: #fff;width: 140px;text-align: center;height: 40px;line-height: 40px;}



/* 通用内页 */
.inbannerbox{position: relative;width: 100%;margin: 0 auto;}
.insidebox{width: 100%;margin: 0 auto;}
.insidebox .inside{width: 100%;box-sizing: border-box;}



.s_menubox{width: 100%;margin: 0 auto;padding: 20px 0;}
.s_menu{width: 100%;margin: 0 auto;font-size: 16px;color: #999;}
.s_menu i{background-color: #102d4f;border-radius: 50%;padding: 4px;color: #fff;}
.s_menu a{color: #999;padding: 0 5px}
.s_menu span{padding: 0 5px;}


/* ================首页样式========================= */
.index1box{width: 100%;margin: 0 auto;background-repeat: no-repeat;background-position:105% 72%;background-size: 70%;padding: 90px 0;}
.index1{width: 100%;margin:0 auto;display: flex;flex-wrap: wrap;justify-content: space-between;align-items: center;}
.i1_left{width: 53%;}
.i1_right{width: 45%;font-size: 0;}
.i1_right img{width: 100%;}
.index1 .tit{margin-bottom: 100px;}
.index1 .tit h1{font-size: 35px;color: #102d4f;font-weight: bold;}
.index1 .desc{font-size: 19px;color: #102d4f;line-height: 40px;max-width: 750px;}
.index1 .desc p{margin-bottom: 50px;}
.index1 .i1_btn{margin-top: 40px;}
.index1 .i1_btn a{display: inline-block;width: 210px;height: 60px;line-height: 60px;text-align: center;font-size: 16px;color: #fff;background-color: #102d4f;border-radius: 50px;}


.index2box{width: 100%;margin: 0 auto;background-repeat: no-repeat;background-size: cover;background-position: center;}
.index2{width: 100%;margin: 0 auto;}
.index2 .tit{width: 100%;}
.index2 .tit h1{font-size: 30px;color: #fff;font-weight: bold;line-height: 1;}
.i2_content{width: 100%;margin: 0 auto;}
.i2_content ul{display: flex;flex-wrap: wrap;justify-content: space-between;}
.i2_content ul li{width: 48%;display: flex;flex-wrap: wrap;align-items: center;margin-top: 60px;}
.i2_content ul li .icon{margin-right: 50px;font-size: 0;}
.i2_content ul li .icon img{max-width: 100%;width: auto;height: 90px;}
.i2_content ul li .text{}
.i2_content ul li .text h1{font-size: 24px;color: #fff;    font-weight: 400;}
.i2_content ul li .text h3{font-size: 20px;color: #fff;    font-weight: 400;}


.index3box{width: 100%;margin: 0 auto;padding: 45px 0;border-bottom: 2px solid #5f5f5f;background-color: #102d4f;}
.index3{width: 100%;margin: 0 auto;max-width: 1000px;}
.index3 .tit{width: 100%;margin-bottom: 20px;text-align: center;}
.index3 .tit h1{font-size: 30px;color: #fff;font-weight: bold;}
.i3_content{width: 100%;margin: 0 auto;}
    .i3_content ul {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }
.i3_content ul li{/*width: 20%;*/padding: 0 20px;position: relative;display: flex;align-items: center;justify-content: center;}
.i3_content ul li:after{position: absolute;right: 0;top: 50%;height: 60%;background-color: #f06c00;width: 2px;content: "";transform: translateY(-50%);}
.i3_content ul li:last-child:after{display: none;}
.i3_content ul li img{width: 115px;height: 115px;border-radius: 50%;object-fit: cover;}


/*  */
.makets1box{width: 100%;margin: 0 auto;min-height: 600px;}
.makets1{width: 100%;margin: 0 auto;}
.last{margin-bottom: 20px;width: 100%;}
.last a{display: flex;align-items: center;font-size: 20px;color: #102d4f;}
.last a i{margin-right: 10px;font-size: 25px;}
.m1_content{width: 100%;margin: 0 auto;display: flex;flex-wrap: wrap;justify-content: space-between;}
.m1_content .m1_left{width: 60%;}
.m1_content .m1_right{width: 38%;font-size: 0;}
.m1_content .m1_right img{width: 100%;}
.m1_content .m1_left h3{font-size: 25px;color: #999;margin-bottom: 40px;}
.m1_content .m1_left .desc{font-size: 16px;color: #5c5a5a;line-height: 2em;text-align: justify;}




/*  */
.servicebox{width: 100%;margin: 0 auto;margin-bottom: 20px;}
.service{width: 100%;margin: 0 auto;}

.service_content{width: 100%;margin: 0 auto;}
.service_content ul{display: flex;flex-wrap: wrap;justify-content: space-between;}
.service_content ul li{width: 45%;margin-top: 20px;    margin-bottom: 50px;}
.service_content ul li dt{font-size: 16px;color: #666;font-weight: bold;margin-bottom: 10px;}
.service_content ul li dd{font-size: 16px;color: #666;line-height: 30px;position: relative;padding-left: 15px;}
.service_content ul li dd:before{width: 4px;height: 4px;border-radius: 50%;background-color: #666;content: "";position: absolute;left: 0;top: 15px;}

.s_btn{}
.s_btn a{display: inline-block;width: 160px;height: 50px;line-height: 50px;border-radius: 50px;background-color: #102d4f;font-size: 16px;color: #fff;text-align: center;}




/*  */
.touzibox{width: 100%;margin: 0 auto;margin-bottom: 20px;}
.touzi{width: 100%;margin: 0 auto;}

.service_content{width: 100%;margin: 0 auto;    padding: 0;}
.touzi_content ul{display: flex;flex-wrap: wrap;justify-content: space-between;}
.touzi_content ul li{width: 32%;margin-top: 20px;margin-right: 2%;    margin-bottom: 50px;}
.touzi_content ul li:nth-child(3n){margin-right: 0;}
.touzi_content ul li dt{font-size: 16px;color: #666;font-weight: bold;margin-bottom: 10px;}
.touzi_content ul li dd{font-size: 16px;color: #666;line-height: 30px;position: relative;padding-left: 15px;}
.touzi_content ul li dd:before{width: 4px;height: 4px;border-radius: 50%;background-color: #666;content: "";position: absolute;left: 0;top: 15px;}










@media only screen and (max-width: 1450px) {
	.bannerbox .textbox {padding: 0 15px;}
	.bannerbox .textbox h1 {font-size: 80px;margin-bottom: 60px;}
	.bannerbox .textbox h3{font-size: 50px;}
}

@media only screen and (max-width: 980px) {
	.headerbox{
		display: none;
	}
	.sp_header{ display:flex;}
	.height{height: 70px;}
	.pd50{padding: 25px 0;}
	.pd100{padding: 50px 0;}
	.bannerbox .textbox h1 {font-size: 50px;margin-bottom: 40px;}
	.bannerbox .textbox h3{font-size: 30px;}
	.index1 .tit {margin-bottom: 40px;}
	.index1 .tit h1{font-size: 40px;}
	.i1_left .desc {font-size: 25px;line-height: 40px;}
	.i1_left {width: 100%;margin-bottom: 20px;}
	.i1_right{width: 100%;}
	.i1_right .i1_btn {width: 300px;height: 100px;line-height: 100px;font-size: 30px;}
	.index2 .tit h1 {font-size: 40px;}
	.i2_content ul li .icon {width: 100%;margin-bottom: 20px;}
	.i2_content ul li .text h1 {font-size: 30px;}
	.i2_content ul li .text h3{font-size: 25px;}
	.index3 .tit h1 {font-size: 40px;}
	.index3 .tit {margin-bottom: 50px;}
	.i3_content ul li {width: 49%;}
	.i3_content ul li:nth-child(2n){margin-right: 0 !important;}
	.i3_content ul li:nth-child(5n){margin-right: 2%;}
	.f_left {width: 100%;margin-bottom: 20px;}
	.f_right{width: 100%;text-align: left;}
	.f_bot {justify-content: flex-start;flex-wrap: wrap;}
	.f_bot ul {width: 100%;margin: 10px 0;}
	.m1_content .m1_left{width: 100%;margin-bottom: 20px;}
	.m1_content .m1_right{width: 100%;}
    .service_content ul li{width: 100%;}
	.touzi_content ul li{width: 100%;}
}


@media only screen and (max-width: 680px) {
	.i2_content ul li {width: 100%;}
	.bannerbox .textbox h1 {font-size: 35px;margin-bottom: 20px;}
	.bannerbox .textbox h3{font-size: 20px;}
}
