@charset "utf-8";
header{
    width:100%; 
}
/*................*/
.header{
    padding: 0px 0px;
    max-width:1920px;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    z-index: 999;
    background-color: #fff;
    position: fixed;
    width: 100%;
    top: 0px;
}
.header .logo img{
    height: 70px;
    padding: 9px 0px;
    width: auto;
    transition: all .5s;  
}
header .nav{
    padding: 0px 0px;    
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
header .nav>ul{   
    transition: all .5s;
}
header .nav>ul>li{
    display: inline-block;   
    padding: 0px 20px;
    position: relative;
}
@media(max-width:1440px){
    header .nav>ul>li{  
        padding: 0px 10px;
    }
}
@media(max-width:1280px){
    header .nav>ul>li{  
        padding: 0px 5px;
    }
}
header .nav>ul>li a{   
    position: relative;
    display: block;
    font-size: 1.125rem;    
    padding: 0px 0px;
    color: #081d4b;   
    line-height: 70px;
    white-space: nowrap;
    transition: all 0.3s;
}
header .nav>ul>li a:hover,header .nav>ul>li.active a{
    color: #1b93cb;
}

.header .nav>ul>li .submenu li:hover a {color:#fff; background: #081d4b}

.submenu { 
    width: auto;
    background: #fff;
    left: -10%;   
    padding: 30px 0px;
    position: absolute;
    top: calc(100% + 0px);
    z-index: 0;    
    display: none;   
}
.submenu .sub-menu li {
    display: block;
    width: 100%; 
    white-space: nowrap;
    text-align: left;
    position: relative; 
}
.header .nav .submenu .sub-menu li a{
    font-size: 1rem;
    color: #181818;    
    line-height: 35px;
    padding: 10px 20px; 
    border-bottom: 1px solid rgba(255,255,255,0.2);
    display: block; transition: .6s;
}
.header .nav .submenu .sub-menu li a:hover{
    color: #fff;
    background: #0070c0; 
    border-bottom: 1px solid rgba(255,255,255,0.2);
    display: block; transition: .6s;
}
.header .nav .submenu .sub-menu .xmenu {
    display: none;
    position: absolute;
    top: 0px;
    left: 100%;    
    width: 17.70833vw;
    padding: 30px 0px;    
    background: #fff;
    border-left: 1px solid #dcdddd;
}
.header .nav .submenu .sub-menu .xmenu li a,.header.on .nav .submenu .sub-menu .xmenu li a{
    color: #181818;
    padding: 10px 20px;
    margin: 0px 25px;
    background: #fff;
    border-bottom: 1px solid #dcdddd;
}
.header .nav .submenu .sub-menu .xmenu li a:hover{
    color: #0070c0;
    background: transparent;
}
.header .nav ul li .submenu li:hover .xmenu{
    display: block;
}
.header .nav>ul>li:hover .submenu, .header .nav>ul>li:focus .submenu {
    z-index: 10;
    display: block;
}
/*分享按钮*/
.shareicon{
    white-space: nowrap;
}
.shareicon ul{
    display: flex;
    align-items: center;
}
.shareicon ul li{
    position: relative;
    margin-left: 15px;
}
.shareicon i{  
    font-size: 1.5rem;
    transition: all 0.5s;
}
.shareicon i:hover{
    color: #0070c0;
}
header .header .shareicon a.weChat .er-box {
    position: absolute;
    top: 100%; 
    left: 0;   
    width: 10px;
    height: 10px;
    opacity: 0.0;
    transition: all 0.3s;
}
header .header .shareicon a.weChat:hover .er-box{
    opacity: 1.0;
    background: #fff;
    padding: 5px;
    width: 100px;
    height: 100px;
}

@media (max-width: 992px){  
    .header .logo img {
        height: 55px;
        padding: 10px 0px;
    }
    header .nav>ul{
        display: block;
    }  
    header .nav{
        position: absolute;
        left:-100vw;
        top: 100%;
        width:100%;
        height:calc(100vh - 55px);
        background:#fff;
        border-top: 1px solid #dcdcdc;        
        z-index:999;
        transition: all 0.5s;
        -webkit-transition: all 0.5s;
        -o-transition: all 0.5s;
        padding-top:20px;
    }
    header .nav.show{
        left:0;
        transition: all 0.5s;
        -webkit-transition: all 0.5s;
        -o-transition: all 0.5s;
    }
    header .nav ul li{
        display: block; 
        padding:0 20px;
        margin-left: 0px;
        width: 100%;
    }
    header .nav ul li a{        
        line-height: 45px;
        display: block;
        font-size: 16px;
        padding: 0px 10px;
        border-bottom: 1px solid #f8f8f8;
    }
    .submenu{
        display: none;
        width: 100%;
        position: relative;
        -webkit-transform: translateX(0vw);
        transform: translateX(0vw);
        padding: 0px 0px;
    }
    .sub-menu{
        /* display: flex; */
        display: none;
        opacity: 0.0;
        flex-wrap: wrap;
    }
    .submenu .sub-menu li{
        width: 50%;
        padding: 0px 0px;
    }
    .header .nav .submenu .sub-menu li a{
        font-size: 13px;
        color: #181818;
        line-height: 35px;
        padding: 0px 10px;
    }
    .header .nav ul li .submenu li:hover .xmenu{
        display: none;
        width: 0px;
        height: 0px;
        opacity: 0.0;
    }  
}
/* banner */
.banner{
    position: relative;
    width: 100%; 
    color: #fff; 
    overflow: hidden;
}
.banner .banner-cover{
    position: absolute;
    top: 0px;
    left: 0px;
    bottom: 0px;
    right: 0px;
    text-align: center;
    background: rgba(0,0,0,0.15);    
}
.banner .banner-cover h5{ 
    margin-top: 18%;
    transition: 1.5s;      
    z-index: 6;
}
.banner .banner-cover h5 span{ 
    display: block;
    font-weight: 600;
    font-size: 4.75rem;
    margin-bottom: 1.0rem;
}
.banner .banner-cover h5 span b{
    color: #1b93cb;
}
.banner .banner-cover p{
	width: 90%;
	margin: 0px auto;
	font-size: 1.5rem;  
}
.btn-box a{
    background-color: #1b93cb;
    border-radius: 0.5rem;
    color: #1e2736;
    padding: 1.0rem 2.5rem;
    display: inline-block;
    font-size: 1.125rem;
    margin: 4rem 1rem 0;
    border: 2px solid #1b93cb;
}
.btn-box a.none-bg{
    color: #1b93cb;
    background-color: transparent;
}
.btn-box a.none-bg:hover{
    color: #1e2736;
    background-color: #1b93cb;
}
.hover-glow {
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.hover-glow:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 10px 20px rgba(6, 182, 212, 0.3);
    border-color: #06b6d4;
}
.hover-pulse {
    animation: pulse 2s infinite ease-in-out;
}
@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}
.hover-shake {
    transition: transform 0.3s;
}
.hover-shake:hover {
    animation: shake 0.5s;
}
.float {
    animation: float 3s infinite ease-in-out;
}
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}
.transition-transform{
    transition-property: transform;
    transition-timing-function:cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}
.bg-blue{
    background-color: #081d4a;
}
.bg-gray{
    background-color: #1f2937;
}
.wave-divider {
    height: 40px;
    background: linear-gradient(45deg, #06b6d4, #1e40af);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 calc(100% - 20px), 0 100%);
    animation: wave 5s infinite linear;
    transition: clip-path 0.3s ease;
}
@media(max-width:1280px){
    .wave-divider {
        height: 20px;
    }
}
@keyframes wave {
    0%,
    100% {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 80%, 0 0);
    }

    50% {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 40%, 0 0);
    }
}

@media(max-width:1360px){
    .banner .banner-cover h5 span{ 
        font-size: 3.5rem;
    }
    .banner .banner-cover p{
    	font-size: 1.25rem;
    	line-height: 1.2;
    	width: 90%;
    }
    .btn-box a{
        padding: 0.5rem 1.5rem;
        display: inline-block;
        font-size: 1.0rem;
        margin: 2.2rem 0.5rem 0;
    }
}
@media(max-width:991px){
    .banner .banner-cover{
        font-size: 1.125rem;
    }
    .banner .banner-cover h5 span{ 
        font-size: 2.25rem;
    }
    .btn-box a{
        padding: 0.5rem 1.5rem;
        display: inline-block;
        font-size: 1.0rem;
        margin: 2.2rem 0.5rem 0;
    }
}
@media(max-width:780px){
    .banner .banner-cover{
        font-size: 0.875rem;
    }
    .banner .banner-cover p{
        width: 100%;
        font-size: 1.05rem;
        margin-top: 1rem;
    }
    .banner .banner-cover h5{
        margin-top: 40%;
    }
    .banner .banner-cover h5 span{ 
        font-size: 1.35rem;
    }
    .btn-box a{
        padding: 0.5rem 1.0rem;
        display: inline-block;
        font-size: 0.875rem;
        margin: 4.5rem 0.5rem 0;
    }
}
.common{
    padding-top: 100px;
    padding-bottom: 100px;
}
.title{
    font-size: 1.625rem;
    position: relative;
    line-height: 1.2;
    margin-bottom: 2.5rem;
}
.title span{
    display: block;
    font-size: 2.8125rem;
    color: #1b93cb;
    font-weight: 900;
}
.more{
    margin-top: 3rem;   
}
.more a{
    display: inline-block; 
    padding: 10px 40px;    
    font-weight: 600;
    font-size: 1.125rem; 
    background-color: #1b93cb;
    color: #081d4a;
    border-radius: 0.5rem;
    transition: all 0.3s ease-in-out;     
}
.more a:hover{ padding: 10px 50px;}

@media (max-width:992px){    
    .common{
       padding-top:30px;
       padding-bottom:30px;
    }
    .title{
        font-size: 1.125rem;
        margin-bottom: 10px;
    }
    .title span{
        font-size: 1.65rem;
    }
    .more a {
        padding: 5px 15; 
    }
}
/*产品*/
.solution,.project{
    background: #081d4a;
    overflow: hidden;
    position: relative;
}
.solution ul,.case ul,.advantage ul,.feature ul{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.solution li,.case li,.advantage li,.project .project-list,.feature ul li{
   width: 23.5%;
   border-radius: 0.5rem;
   padding: 1.6rem;
   position: relative;
   overflow: hidden;
   background-color: #142c5f;
   transition: all .4s ease-in-out;
}
.case li{
   width: 31.5%;
   background-color: #374151;
   margin: 1rem 0;
}
.advantage ul li{
	width: 48.5%;
	background-color: #374151;
	margin: 1rem 0;
}
.project .project-list{
	width: 100%;
}
.feature{
	margin-top: 2rem;
}
.feature ul li{
	width: 48.5%;
	margin: 1rem 0;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	background-color: #081d4a;
	border: 2px solid #142c5f;
}
.feature ul li img{
	width: 100px;
	margin-right: 20px;
}
.feature ul li:hover{
	box-shadow: 0 10px 15px -3px rgba(0, 0, 0, .2), 0 4px 6px -2px rgba(0, 0, 0, .35);
	background-color: #142c5f;
}
.solution li .solution-img img,.case li .case-img img,.project li .project-img img,.advantage li .advan-img img{
    width: 100%;
    opacity: 0.90;
    border-radius: 0.5rem; 
    transition: all 0.4s linear;
}
.solution li:hover .solution-img img,.case li:hover .case-img img,.project li:hover .project-img img,.advantage li:hover .advan-img img{
    -moz-transform: scale(1.05);
    -webkit-transform: scale(1.05);
    -o-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
    opacity: 1.0;
}
.solution li .solution-con h5,.case li .case-con h5,.advantage .advan-con h5 ,.project h5,.feature .feature-con h5{
    font-size: 1.5rem;
    color: #1b93cb;
    font-weight: 600;
    line-height: 1.15;
    margin: 0.6rem 0px;
    transition: all 0.4s linear;
}
.solution li .solution-con,.case li .case-con,.advantage li .advan-con,.feature .feature-con{
   color: #fff;  
   line-height: 1.4;
}
.advantage li .advan-con{
    margin-bottom: 1rem;
}
.feature .feature-con{
	flex: 1;
}
.case li:hover,.solution li:hover,.advantage li:hover,.project .project-list:hover{
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, .2), 0 4px 6px -2px rgba(0, 0, 0, .35);
}
@media (max-width:992px){  
    .solution li,.case li,.advantage ul li,.project .project-list,.feature ul li{
	   padding: 1.2rem;	
        width: 100%;
        margin-bottom: 0.5rem;
    }
    .solution li .solution-con h5,.case li .case-con h5,.advantage .advan-con h5 ,.project h5,.feature .feature-con h5{
	    font-size: 1.125rem;
	}
    .feature ul li img {
        width: 60px;
        margin-right: 10px;
    }
}
/*case*/
.case{
    background-color: #1f2937;
}
.swiper-box{
	position: relative;
}
.project .project-next{
	right: -30px;
}
.project .project-prev{
	left: -30px;
}
.line{
    height: 6px;
    border-top: 3px solid #e7e7e7;
}
.line:after{
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    margin-top: 2px;
    background: #e7e7e7;
}
/*优势*/
.advantage{
    background-color: #1f2937;
    overflow: hidden;
    color: #fff;
}
.advantage .nav-tabs{
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    border: none;
}
.advantage .nav-tabs li{
    width: 20%;
    margin: 0px 0px 0px 0px;
}
.advantage .nav-tabs li a{
    padding: 2.0rem 0;
    background-color: #e6e6e6;
    text-align: center;
    font-size: 1.25rem;
    display: block;
    border: none;
    margin-right: 0px;
}
.advantage .nav-tabs li.active a{
    background-color: #d81519;
    font-weight: normal;
    color: #ffffff;
    text-decoration: none;
    z-index: 333;
    border: none;
    margin-right: 0;
}
.advantage .tab-content{
    background-color: #fff;
    padding: 2.5rem;
    font-size: 1.125rem;
}
.advantage .tab-content h5{
    font-size: 2.4rem;
    font-weight: 600;
    margin: 2.0rem 0px 1.0rem;
}
.advantage .tab-content h5 span{
    display: block;
    font-size: 3.5rem;
    color: #d81519;
}
@media (max-width:767px){
    
}
/*生产流程*/
.routing{
    background: #fff;
    overflow: hidden;
    position: relative;
}
.routing ul{
    display: flex;
    justify-content: space-between;
}
.routing li{
   width: 19%;
   text-align: center;
   position: relative;
   overflow: hidden;
   background-color: #efefef;
   transition: all .4s ease-in-out;
}
.routing-img{    
    padding: 2.5rem 0;
    background-color: #44546a;
}
.routing-con{    
    padding: 3rem 1.5rem;
}
.routing-con h5{
    font-size: 2.0rem;
}
.routing-con h5:after{
    display: block;
    content: "";
    width: 20px;
    height: 2px;
    background-color: #0070c0;
    margin: 1rem auto;
}
/*合作客户*/
.cooperation{
    background-color: #1f2937;
}
.cooperation ul{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.cooperation ul li{
    width: 11.5%;
}
.cooperation .cooper-img{
    background-color: #fff;
    margin: 0.5rem 0;
    padding: 1.5rem 1.5rem;
    border-radius: 100%;
    text-align: center;
    overflow: hidden;
}
.cooperation .cooper-img img{
    width: 100%;
    max-width: none;
    opacity: 1.0;     
    transition: all 0.6s;
}
.cooperation .cooper-img:hover img{
    margin-top: -5px;
    opacity: 0.9;  ;
}

@media (max-width:992px){ 
    
}
/* 新闻 */
.news{
    background: #081d4a;
    overflow: hidden;
}
.news .news-list{
    padding: 25px 25px;
    border-bottom: 1px solid #273b66;
}
.news .news-list a{
    display: flex;
    color: #fff;
    align-items: center;
}
.news .news-time{
    width: 88px;   
    color: #40b2e8;
    line-height: 1.4;
    text-align: center;
    margin-right: 20px;
}
.news .news-time strong{
    font-size: 1.5rem;
    padding-top: 10px;
}
.news .news-time span{
    display: block;
    font-size: 1.125rem;
}
.news .news-list .b-con{
    width: calc(100% - 100px)
}
.news .news-list .b-con h3{
    font-size: 1.5rem;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    font-weight: bold;
    padding: 15px 0 5px;
}
.news-list .b-con p{
    font-size: 1.0rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    height: 0;
    transition: all 0.5s;
}
.news .news-list:hover {
   background-color: #142c5f;
}
.news .news-list a:hover .b-con h3{
    color: #1b93cb;
}
.news-list:hover .b-con p{
    height: 45px;
}
@media (max-width:992px) {
    .news .news-list {
        padding: 10px 5px;
    }
    .news .news-list .b-con h3{
	    font-size: 1.125rem;
	    padding: 5px 0 5px;
	}
    .news .news-time strong{
        font-size: 1.25rem;
    }
    .news .news-time span{
        font-size: 1.0rem;
    }
    .news .news-time {
        width: 70px;
        margin-right: 10px;    
    }
    .news .news-list .b-con{
        width: calc(100% - 80px)
    }
}
.global{
    background-color: #1f2937;
    position: relative;
    overflow: hidden;
}
.global .title{
    color: #fff;
}
.global  .circle {
    width: 140px;
    height: 140px;
    margin: 0 auto;
    position: absolute;
    left: -60px;
    top: -54px;
    z-index: 1;
}
.global  .map {
    position: relative
}
.global .wangdian {
    position: absolute;
    left: 74.1%;
    top: 59.6%;
}
@media (max-width:1360px) {
    .global .wangdian {
        left: 73.90%;
        top: 58.6%;
    }
}
@media (max-width:1280px) {
    .global .wangdian {
        left: 73.90%;
        top: 58.0%;
    }
}
@media (max-width:760px) {
    .global .wangdian {
        left: 72.5%;
        top: 51%;
    }
}
.global  .circle dd {
    background-color: hsl(4deg 70% 49% / 62%);
    height: 140px;
    position: absolute;
    top: 0%;
    left: 0%;
    transform: scale(0);
    width: 140px;
    border-radius: 50%;
    animation: circleScale 4s linear infinite;
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -webkit-animation: circleScale 4s linear infinite;
    -moz-animation: circleScale 4s linear infinite;
    -ms-animation: circleScale 4s linear infinite
}
.global .circle dd:nth-of-type(2) {
    animation-delay: 1s
}

.global .circle dd:nth-of-type(3) {
    animation-delay: 2s
}

.global .circle dd:nth-of-type(4) {
    animation-delay: 3s
}
@keyframes circleScale {
    0% {
        opacity:1;
        -webkit-transform: scale(0);
        -moz-transform: scale(0);
        -ms-transform: scale(0);
        transform: scale(0)
    }

    100% {
        opacity: 0;
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1)
    }
}