@font-face{
    font-family: 'Microsoft YaHei';
}

:root{
    --bgcolor:#0870D7; /* themes color */
    --bgscolor:#EC6F2C; /* themes sub color */
    --bghlack:#242424; /* themes hover color */
    --fttcolor:#222222; /* font title color */
    --ftcolor:#666666; /* font color */
    --titlecolor:#242424; /* title color */
    --white:#ffffff; /* white color */
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box
}
body{
    font-family: 'Microsoft YaHei';
    font-style: normal;
    line-height: unset
}
h1,h2,h3{
    font-weight: normal;
}
h1,h2,h3,h4,h5,h6,span,p,a,li{
    line-height: 1;
}
a:link,a:visited{
    text-decoration: none;
    color: unset;
}
a{
    text-decoration: none;
    cursor: pointer;
    outline: 0;
}
ol,ul{
    margin: 0;
}
table{
    border-spacing: 0;
    border-collapse: collapse;
    text-indent: initial;
}
ul,li{
    list-style-type: none
}
.clearfix::before,.clearfix::after{
    clear: both;
    display: block;
    visibility: hidden;
    height: 0;
    content: ""
}
.clear{
    clear: both;
    height: 0;
    line-height: 0;
    font-size: 0;
}
img{
    display: block;
    max-width: 100%;
    height: auto;
    vertical-align: middle;
    border: 0
}
input,select,textarea{
    border: 0
}
input:focus,textarea:focus,select:focus{
    outline: 0
}
.container{
    width: 100%;
    max-width: 1400px;
    margin: 0 auto
}
.mt50{
    margin-top: 50px;
}
.mt90{
    margin-top: 90px;
}
.mb70{
    margin-bottom: 70px;
}
.pt90{
    padding-top: 90px;
}
.pb70{
    padding-bottom: 70px;
}
.smBlock{
    display: none!important;
}
.btnLight{
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.btnLight>i{
    font-size: 0;
    margin-left: 5px;
    margin-top: -2px;
    transition: all .5s;
}
.btnLight::before{
    position: absolute;
    content: "";
    background: #0148a2;
    left: -100%;
    right: 0;
    bottom: 0;
    top: 0;
    width: 100%;
    transition: all .5s;
    z-index: -1;
}
/* header */
.header-top{
    width: 100%;
    height: 40px;
    display:flex;
    align-items:center;
    background:linear-gradient(90deg,#0870d7,#0148a2)
}
.header-top .container{
    display:flex;
    justify-content:space-between;
    color:#fff;
    align-items:end
}
.header-top .container .left{
    display:flex;
    align-items:center;
    height:40px
}
.header-top .container .left h1 {font-size:16px;}
.header-top .container .left a{
    display:flex;
    height:18px;
    align-items:end;
    position:relative;
    margin-right:10px
}
.header-top .container .left a:first-child{
    margin-right:8px
}
.header-top .container .left a .icon-Youtube-fill{
    font-size:20px;
    margin-top:5px;
    position:absolute;
    top:-5px;
    left:0
}
.header-top .container .right .whatsapp{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:26px;
    height:26px;
    background:#2ab43f;
    border-radius:50%;
    margin-right:8px
}
.header-top .container .right{
    display:flex
}
.header-top .container .right span{
    height:40px;
    display:flex;
    align-items:center;
    margin-left:30px;font-size: 14px;
}

.header-top .container .right span i{
    color: var(--white);
    font-size: 14px;
}
.header-top .container .right a:nth-child(1) i,
.header-top .container .right a:nth-child(2) i{
    font-size:20px;
    margin-right:5px
}
.header-top .container .right a:nth-child(3) span.number{
    
}

.header{
    width: 100%;
    height: 95px;
    background: var(--white);
    position: relative;
}
.header>.container{
    width: 100%;
    height: 95px;
}
.header>.container,.header .navs ul,.header .header-right{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.header .navs ul>li{
    margin-right: 40px;
    height: 95px;
}
.header .navs ul>li:last-child{
    margin-right: 0;
}
.header .navs ul>li>a{
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    line-height: 95px;
    font-size: 18px;
    color: var(--fttcolor);

}
.header .navs ul>li>a i{
    margin-left: 3px;
    color: var(--fttcolor);
    font-size: 18px;
    font-weight: 600;
}
.header .navs ul>li>a::after{
    content: '';
    position: absolute;
    width: 0;
    bottom: 0;
    left: 0;
    transition: all .4s;
    /* transition: all .3s cubic-bezier(.175,.885,.32,1.275); */
    height: 4px;
    background: var(--bgcolor);
}
.header .navs ul>li.navActive a::after {
    width: 100%;
}
.header .navs ul>li.navActive a,
.header .navs ul>li.navActive a i{
    color: var(--bgcolor);
}
.header .header-right a.search{
    position: relative;
}
.header .header-right a.search .search-main{
    display: none;
    width: 300px;
    padding: 15px 20px;
    background: var(--white);
    position: absolute;
    left: -260px;
    top: 65px;
    z-index: 9999;
    box-shadow: 0px 10px 15px 0px rgba(0, 0, 0, .1);
}
.header .header-right a.search form{
    position: relative;
}
.header .header-right a.search .search-input{
    width: 100%;
    height: 45px;
    background: #F6F6F6;
    border: 1px solid #F6F6F6;
    padding: 10px 15px;
    color: var(--ftcolor);
    font-size: 16px;
}
.header .header-right a.search .search-input::placeholder{
    color: #ACACAC;
}
.header .header-right a.search .search-submit{
    background: url("/static/images/search-icon.jpg") no-repeat;
    width: 16px;
    height: 16px;
    position: absolute;
    right: 15px;
    top: 15px;
}
.header .header-right a.get_quote{
    width: 160px;
    height: 40px;
    background: var(--bgscolor);
    border-radius: 20px;
    font-size: 14px;
    color: var(--white);
    line-height: 40px;
    text-align: center;
    text-transform: uppercase;
    margin-left: 22px;
    
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.header .header-right a.get_quote::before{
    border-radius: 20px;
}
.headerFixed{
    position: sticky;
    left: 0;
    top: 0;
    z-index: 9999;
    box-shadow: 0px 10px 15px 0px rgba(0, 0, 0, .1);
}

.header ul li .dropdown{
    display: none;
    position: absolute;
    left: 0;
    top: 95px;
    background: var(--white);
    width: 100%;
    /* border-top: 2px solid var(--bgcolor); */
    padding: 50px 0;
    z-index: 9999;
    box-shadow: 0px 5px 10px 0px rgba(0,0,0,.1);
}
.header ul li .dropdown>.container{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    position: relative;
}
.header ul li .dropdown>.container .nav-line{
    content: '';
    position: absolute;
    left: 0;
    top: 48%;
    width: 100%;
    height: 1px;
    background: #E0E0E0;
}
/*.header ul li .dropdown>.container::after{
    content: '';
    position: absolute;
    left: 0;
    top: 48%;
    width: 100%;
    height: 1px;
    background: #E0E0E0;
}*/
.header ul li .dropdown .solu-lt{
    width: 80%;
    height: auto;
}
.header ul li .dropdown .solu-rt{
    padding-left: 1%;
    width: 19%;
    height: auto;
}

.header ul li .dropdown .solu-rt p{
    width: 100%; 
    margin-bottom: 12px;
}

.header ul li .dropdown .solu-rt p a{
    width: 100%;
    height: 24px;
    line-height: 24px;
    font-size: 16px;
    text-transform: capitalize;
    color: var(--fttcolor)!important;
}
.header ul li .dropdown .solu-rt p:hover a{
    color: #0148a2!important;
}

.header ul li .dropdown .solu-rt-more {
    width: 100%; 
    margin-top: 30px;
    font-weight: bold;
}
.header ul li .dropdown .solu-rt-more a:hover{
    color: #0148a2;
}

.header ul li .dropdown .dropdown-item{
    width: calc(33% - 20px);
    display: flex;
    justify-content: space-between;
    margin-top: 50px;
}
.header ul li .dropdown .dropdown-item:first-child,
.header ul li .dropdown .dropdown-item:nth-child(2),
.header ul li .dropdown .dropdown-item:nth-child(3){
    margin-top: 0;
}
.header ul li .dropdown-item .item-img{
    width: 40%;
}
.header ul li .dropdown-item ol{
    width: 56%;
    padding-right: 20px;
    border-right: 1px solid #E0E0E0;
}
.header ul li .dropdown-item:nth-child(3) ol,
.header ul li .dropdown-item:nth-child(6) ol{
    border-right: 0;
}
.header ul li .dropdown-item h4{
    margin-bottom: 20px;
}
.header ul li .dropdown-item h4 a{
    font-size: 20px;
    color: var(--fttcolor)!important;
    
    text-transform: uppercase;
}
.header ul li .dropdown-item ol li{
    margin-bottom: 12px;
}
.header ul li .dropdown-item ol li:last-child{
    margin-bottom: 0;
}
.header ul li .dropdown-item ol li a{
    font-size: 16px;
    line-height: 20px;
    text-transform: capitalize;
    color: var(--fttcolor)!important;
}


.header ul li .solution-dropdown .dropdown-item{
    width: 24%;
    margin-left: 0.5%;
    margin-right: 0.5%;
    display: block;
    float: left;
}
.header ul li .solution-dropdown .dropdown-item .item-img{
    overflow: hidden;
}
.header ul li .solution-dropdown .dropdown-item .item-img img{
    transform: scale(1);
    transition: all .5s linear;
}
.header ul li .solution-dropdown .dropdown-item:nth-child(4){
    margin-top: 0;
}
.header ul li .solution-dropdown .item-img{
    width: 100%;
}
.header ul li .solution-dropdown .dropdown-item h4{
    text-align: center;
    margin-top: 15px;
    margin-bottom: 0;
}
.header ul li .solution-dropdown .dropdown-item h4 a{
    text-transform: capitalize;
    font-size: 18px;
}

.header ul li#navNews{
    position: relative;
}
.header ul li#navNews ol{
    position: absolute;
    left: 0;
    top: 95px;
    width: 220px;
    background: var(--white);
    padding: 25px 0;
    z-index: 9999;
    box-shadow: 0px 5px 10px 0px rgba(0,0,0,.1);
}
.header ul li#navNews ol li{
    width: 100%;
    margin-bottom: 0;
    height: 30px;
}
.header ul li#navNews ol li a{
    font-size: 18px;
    color: var(--fttcolor);
    line-height: 30px;
    display: block;
    padding: 0 13px;
    
}


/* footer */
.footer{
    width: 100%;
    padding: 60px 0 50px;
    background: #05042E;
}
.footer .container{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.footer .container>div{
    width: 25%;
    margin-top: 40px;
}
.footer h4{
    font-size: 20px;
    color: var(--white);
    
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 20px;
}
.footer h4::after{
    content: '';
    display: block;
    width: 85px;
    height: 3px;
    background: var(--bgscolor);
    position: absolute;
    left: 0;
    bottom: 0;
}
.footer .footer-about{
    margin-top: 0!important;
}
.footer .footer-about>a{
    display: inline-block;
    margin-bottom: 35px;
}
.footer .footer-about p{
    font-size: 16px;
    color: #99A0AA;
    line-height: 26px;
    margin-bottom: 25px;
}
.footer .footer-about ul{
    display: flex;
    align-items: center;
    margin-left: -4px;
}
.footer .footer-about ul li{
    margin-right: 5px;
}
.footer .footer-about ul li a{
    /* display: inline-block;
    width: 30px;
    height: 30px;
    background: var(--bgscolor);
    text-align: center;
    line-height: 30px; */
}
.footer .footer-about ul li i{
    color: #fff;
    font-size: 20px;
}

.footer .footer-about ul li:last-child{
    margin-right: 0;
}
.footer .footer-about ul li:last-child i{
    font-size: 24px;
}

.footer .footer-products ul li,
.footer .footer-solution ul li{
    margin-bottom: 15px;
}
.footer .footer-products ul li a,
.footer .footer-solution ul li a{
    font-size: 16px;
    color: #99A0AA;
}
.footer .footer-products ul li:last-child,
.footer .footer-solution ul li:last-child{
    margin-bottom: 0;
}
.footer .footer-touch ol li{
    margin-bottom: 20px;
}
.footer .footer-touch ol li:last-child{
    margin-bottom: 0;
}
.footer .footer-touch ol li i{
    color: var(--bgscolor);
    font-size: 20px;
}
.footer .footer-touch ol li a{
    display: flex;
    align-items: center;
}
.footer .footer-touch ol li p{
    font-size: 16px;
    color: #99A0AA;
    margin-left: 15px;
    line-height: 22px;
}
.footer .footer-touch ol li p span{
    color: #DFDFDF;
}
.footer .footer-touch ol li:last-child{
    display: flex;
    align-items: flex-start;
}
.footer .footer-touch ol li:last-child i{
    display: inline-block;
    font-size: 26px;
    margin: 3px 0 0 -4px;
}
.footer .footer-touch ol li:last-child p{
    margin-left: 13px;
}
.footer .container>div.footer-products{
    max-width: 240px;
}
.footer .container>div.footer-solution{
    max-width: 274px;
}
/* copy right */
.copy-right{
    width: 100%;
    height: 70px;
    background: #0E154B;
}
.copy-right p{
    font-size: 14px;
    color: #C3CFF7;
    line-height: 70px;
    text-align: center;
}

.header-sm{
    display: none;
}
.footFloat{display: none;}
/* cbl */
#cbl{
    display: none;
    position: fixed;
    right: 30px;
    bottom: 20%!important;
    z-index: 9999;
}
#cbl ul {
    border-radius: 10px;
    box-shadow: 1px 1px 5px 0px rgba(51,69,105,0.18);
    background: #fff;
}
#cbl ul li{
    position: relative;
    padding: 0 15px;
}
#cbl > ul li,#cbl > ul li a{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}
#cbl > ul li a{
    width: 70px;
    padding: 15px 0;
    border-bottom: 1px solid #ddd;
}
#cbl > ul li:last-child i{
    transform: rotate(180deg);
}
#cbl > ul li:last-child a{
    border-bottom: 0;
}
#cbl a i{
    font-size: 30px;
    transition: all .3s;
}
#cbl a span {
    width: 100%;
    display: flex;
    font-size: 14px;
    align-items: center;
    justify-content: center;
    color: var(--fttcolor);
    margin-top: 10px;
    transition: all .3s;
}
.clear {clear: both;}
/* banner inner */
.banner-inner{
    width: 100%;
    height: 380px;
    background: url("/static/images/banner/banner-news.jpg") no-repeat;
    background-size: 100% 100%;
}
.banner-inner .container{
    position: relative;
}
.banner-inner .banner-text{
    width: 100%;
    padding-top: 160px;
}
.banner-inner h1{
    font-size: 34px;font-weight: 600;
    color: var(--white);
    margin-bottom: 18px;
    
}
.breadcrumb,
.breadcrumb ul{
    display: flex;
    align-items: center;
}
.breadcrumb ul{
    justify-content: space-between;
}
.breadcrumb p,
.breadcrumb li,
.breadcrumb li a{
    font-size: 16px;
    color: var(--white);
}
.breadcrumb i{
    display: inline-block;
    color: var(--bgscolor);
    margin-right: 8px;
    font-size: 18px;
}
.breadcrumb li{
    font-size: 16px;
    text-transform: uppercase;
}
.breadcrumb li a{
    text-transform: uppercase;
}
.breadcrumb li span{
    display: inline-block;
    margin: 0 6px;
    vertical-align: text-top;
}
.breadcrumb li:last-child{
    color: var(--bgscolor);
    height: 15px;
    line-height: 17px;
}
.breadcrumb li:first-child{
    margin-left: 5px;
}
/* banner single */
.banner-single .banner-text{
    text-align: center;
    padding-top: 130px;
}
.banner-single .banner-text h3{
    font-size: 36px;
    font-weight: 600;
    color: #fff;
}
.banner-single .banner-text span{
    display: block;
    width: 80px;    
    height: 2px;
    background: var(--bgscolor);
    margin: 0 auto 25px;
}
.banner-single .banner-text p{
    width: 80%;
    font-size: 20px;
    color: var(--white);
    line-height: 28px;
    margin: 0 auto;
}
/* breadcrumb single */
.breadcrumb-single{
    width: 100%;
    height: 60px;
    background: #F6F6F6;
    padding: 20px 0;
}
.breadcrumb-single .breadcrumb p,
.breadcrumb-single .breadcrumb li a,
.breadcrumb-single .breadcrumb li span{
    color: var(--ftcolor);
}

/* solution top */
.solution-top .container{
    position: relative;
}
.solution-top .solution-text{
    width: 100%;
    padding: 60px;
    background: var(--white);
    box-shadow: 0px 3px 10px 0px rgba(0,0,0,.1);
    margin-top: -80px;
    z-index: 99;
}
.solution-top h2{
    font-size: 32px;
    color: var(--fttcolor);
    font-weight: 600;
    text-align: center;
    margin-bottom: 30px;
}
.solution-top p,.solution-top ul li{
    font-size: 18px;
    color: var(--fttcolor);
    line-height: 24px;
    margin-bottom: 20px;
}
.solution-top span{
    
}
.solution-top p.advantages{
    margin-top: 40px;
}
.solution-top ul{
    padding-left: 20px;
}
.solution-top ul li{
    margin-bottom: 5px;
    list-style-type: auto;
}
/* epages */
#epages{
    width: fit-content;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
#epages b{
    display: inline-block;
    width: 42px;
    height: 42px;
    font-size: 20px;
    line-height: 42px;
    background: var(--bgscolor);
    color: var(--white)!important;
    text-align: center;
    border-radius: 50%;
    margin-right: 30px;
}
#epages a{
    display: inline-block;
    font-size: 24px;
    color: var(--fttcolor);
    margin-right: 30px;
}
#epages a:first-child{
    display: none;
}
#epages a:last-child{
    margin-top: -5px;
}
/* related cases */
#related-cases{
    width: 100%;
    background: #F6F6F6;
}
#related-cases h2,
#related-solution h2,
#related-news h2{
    display: inline-block;
    font-size: 36px;
    color: var(--fttcolor);
    
    position: relative;
    z-index: 1;
    margin-bottom: 60px;
}
#related-cases h2::before,
#related-solution h2::before,
#related-news h2::before{
    content: '';
    position: absolute;
    right: -10px;
    bottom: 3px;
    width: 164px;
    height: 10px;
    border-radius: 5px;
    background: var(--bgscolor);
    z-index: -1;
}
#related-cases h2::after,
#related-solution h2::after,
#related-news h2::after{
    content: '';
    position: absolute;
    right: -26px;
    bottom: 3px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--bgscolor);
    z-index: -1;
}
#related-cases .tit,
#related-solution .tit,
#related-news .tit{
    text-align: center;
}
#related-cases .cases-swiper{
    position: relative;
}
#related-cases .swiper {
    width: 100%;
    height: 100%;
    position: unset;
}
#related-cases .swiper-slide {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
#related-cases .swiper-slide a{
    display: block;
    position: relative;
}

#related-cases .img{
    margin-top: 30px;
    border-radius: 0px 45px 0px 0px;
    overflow: hidden;
}
#related-cases .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0px 45px 0px 0px;
    transition: all .5s linear;
}
#related-cases h3{
    font-size: 24px;
    height: 60px;
    color: var(--fttcolor);
    line-height: 30px;
    
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
#related-cases .desc{
    font-size: 18px;
    height: 52px;
    color: var(--ftcolor);
    line-height: 26px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    margin: 15px 0 45px;
}
#related-cases .swiper-button-next,
#related-cases .swiper-button-prev{
    color: var(--bgscolor);
    transition: all .3s linear;
}
#related-cases .swiper-button-next{
    right: -60px;
}
#related-cases .swiper-button-prev{
    left: -60px;
}
/* related solution */
#related-solution{
    width: 100%;
    margin-top: 100px;
    padding-bottom: 80px;
    background: var(--white);
}
#related-solution>.container{
    text-align: center;
}
#related-solution ul,
#related-solution ul li .related-title,
#related-solution ul li .related-info a{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
#related-solution ul{
    flex-wrap: wrap;
    align-items: flex-start;
}
#related-solution ul li{
    width: calc(50% - 45px);
    padding-bottom: 20px;
    border-bottom: 1px solid #E2E2E2;
    margin-bottom: 20px;
    cursor: pointer;
}
#related-solution ul li h3{
    font-size: 24px;
    color: var(--fttcolor);
    
    transition: all .5s;
}
#related-solution ul li i{
    color: #B8B8B8;
    transform: rotate(-45deg);
    transition: all .5s;
}
#related-solution ul li .related-info{
    margin-top: 12px;
    display: none;
}
#related-solution ul li .related-info img{
    height: 101px;
}
#related-solution ul li .related-info p{
    padding: 17px 65px 18px 25px;
    background: #F4F4F4;
}
#related-solution ul li .related-info span{
    color: var(--fttcolor);
    text-align: left;
    font-size: 16px;
    line-height: 22px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}
#related-solution ul li.solutionLiActive h3{
    color: var(--bgscolor);
    transition: all .5s;
}
#related-solution ul li.solutionLiActive i{
    color: var(--bgscolor);
    transform: rotate(45deg);
    transition: all .5s;
}
/* technology news */
#related-news .news-main{
    position: relative;
}
#related-news .swiper {
    width: 100%;
    height: 100%;
    position: unset;
}

#related-news .swiper-slide {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
#related-news .swiper-slide a{
    display: block;
    width: 100%;
    position: relative;
    border-top: 1px solid var(--bgscolor);
}
#related-news .swiper-slide img {
    display: block;
    width: 100%;
    height: 422px;
    object-fit: cover;
    transition: all .5s linear;
}
#related-news .more{
    width: 127px;
    height: 36px;
    background: var(--bgscolor);
    font-size: 18px;
    color: var(--white);
    line-height: 36px;
    text-align: center;
    
    margin-bottom: 35px;
    transition: all .5s linear;
}
#related-news h3{
    font-size: 24px;
    color: var(--fttcolor);
    line-height: 28px;
    
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}
#related-news .desc{
    font-size: 16px;
    height: 48px;
    color: var(--ftcolor);
    line-height: 24px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    margin: 10px 0 20px;
}
#related-news .time{
    font-size: 16px;
    color: #999999;
}
#related-news .news-img{
    margin-top: 30px;
    overflow: hidden;
}
#related-news .swiper-button-next,
#related-news .swiper-button-prev{
    color: var(--bgscolor);
    transition: all .3s linear;
}
#related-news .swiper-button-next{
    right: -60px;
}
#related-news .swiper-button-prev{
    left: -60px;
}
/* footer form */
.footer-form {
    width: 100%;
    padding-top: 50px;
    background: url("/static/images/footer-background.jpg") bottom no-repeat;
    background-size: 100% 472px;
    background-color: var(--white);
}

.footer-form .foot-contact {
    display: flex;
    justify-content: center;
}

.footer-form .foot-contact .f-describe {
    position: relative;
    width: 50%;
    /*background: url("/static/images/foot-engineer.png") right no-repeat;*/
    background-position-y: -20px;
}

.footer-form .foot-contact .f-describe strong {
    display: block;
    font-size: 24px;
    text-transform: uppercase;
    color: var(--fttcolor);
    
    margin-top: 15px;
}

.footer-form .foot-contact .f-describe p {
    font-size: 14px;
    line-height: 21px;
    padding-top: 15px;
    width: 50%;
}

.footer-form .foot-contact .f-trait {
    position: relative;
    top: 60px
}

.footer-form .foot-contact .f-trait li {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    font-size: 16px;
    color: var(--white);
    text-transform: uppercase;
    line-height: 24px;
}
.footer-form .foot-contact .f-trait li:nth-child(2){
    margin: 20px 0;
}
.footer-form .foot-contact .f-trait li i {
    display: inline-block;
    width: 88px;
    height: 100px;
    background-color: var(--bgscolor);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    font-size: 42px;
    color: var(--fttcolor);
    line-height: 100px;
    text-align: center;
}
.footer-form .foot-contact .f-trait li:last-child i{
    font-size: 46px;
}
.footer-form .foot-contact .f-trait li b {
    width: 36%;
    margin-left: 20px
}


.footer-form .foot-contact .foot-style {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 397px;
    height: 138px;
    background: url("/static/images/foot-style.png") bottom right no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column
}

.footer-form .foot-contact .tel {
    font-size: 24px;
    color: #fff;
    position: relative;
    margin-top: 20px;
    margin-left: 70px
}

.footer-form .foot-contact .tel b {
    margin-left: 26px;
    padding-left: 26px;
    transition: color .5s
}

.footer-form .foot-contact .tel b::before {
    content: ":";
    color: #fff;
    transition: none;
    display: block;
    width: 26px;
    height: 26px;
    background-image: url("/static/images/foot-tel.png");
    background-repeat: no-repeat;
    background-position: 0 0;
    position: absolute;
    top: 0;
    left: 0;
    padding-left: 36px;
    line-height: 23px
}



.footer-form .foot-contact .foot-gam {
    display: flex;
    align-items: center;
    margin-top: 13px;
    margin-left: 38px
}

.footer-form .foot-contact .foot-gam a {
    display: block;
    margin: 0 13px
}

.footer-form .foot-contact .foot-gam span {
    display: inline-block;
    font-size: 34px;
    color: #00ADF3;
}
.footer-form .foot-contact .foot-gam .icon-whatsapp1,
.footer-form .foot-contact .foot-gam .icon-weixin{
    font-size: 30px;
    color: #2ab43f;
}

.footer-form .foot-contact .f-form {
    width: 50%;
    max-width: 560px;
    background: linear-gradient(#0148a2,#0870d7);
    border-radius: 60px 0 0;
    margin-top: 20px;
}

.footer-form .foot-contact .form-main {
    display: flex;
    flex-wrap: wrap;
    padding: 25px 50px;
}

.footer-form .foot-contact .form-main p {
    width: 100%;
    color: #FFF;
    display: block;
    margin: auto;
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 1.5
}
.footer-form .foot-contact .form-main input,
.footer-form .foot-contact .form-main textarea {
    box-sizing: border-box;
    width: 100%;
    border-style: none;
    border-radius: 5px;
    font-size: 16px;
    color: var(--ftcolor);
    padding-left: 15px;
    font-weight: 400
}

.footer-form .foot-contact .form-main input {
    height: 50px
}

.footer-form .foot-contact .form-main textarea {
    height: 120px;
    padding: 10px 15px;
    line-height: 1.5;
    resize: none;
    font-family: 'Roboto-Regular';
}
.footer-form .foot-contact .form-main input::placeholder,
.footer-form .foot-contact .form-main textarea::placeholder{
    font-size: 16px;
    color: #999;
    font-family: 'Roboto-Regular'!important;
}
.footer-form .foot-contact .form-main label{
    margin-top: 20px;
    width: 100%;
}
.footer-form .foot-contact .form-main label:nth-child(2){
    margin-top: 0;
}

.footer-form .foot-contact .form-main .radio {
    width: 100%;
    color: #99aec5;
    margin-top: 5px;
}

.footer-form .foot-contact .form-main .radio input {
    width: 15px;
    height: 15px;
    background-color: #99aec5;
    margin-right: 10px;
    position: relative;
    top: 1px
}

.footer-form .foot-contact .form-main .Btn {
    background: var(--bgscolor);
    cursor: pointer;
    color: var(--white);
    font-size: 18px;
    text-transform: uppercase;
    
}

@media (any-hover: hover) {
    .btnLight:hover{
        border-color: #0148a2;
    }
    .btnLight:hover::before{
        left: 0;
    }
    .btnLight:hover>i{
        font-size: 14px;
    }
    .header-top .container .left a:hover i{
        color: var(--bgscolor)
    }
    .header-top .container .right a:hover span{
        color: var(--bgscolor);
    }
    .header .navs ul>li:hover>a,
    .header .navs ul>li:hover>a i{
        color: var(--bgcolor)!important;
    }
    .header ul li .solution-dropdown .dropdown-item:hover .item-img img{
        transform: scale(1.2);
    }
    .header ul li .dropdown-item h4 a:hover,
    .header ul li .dropdown-item ol li:hover>a,
    .header ul li .solution-dropdown .dropdown-item:hover h4>a{
        color: #0148a2!important;
    }
    .header .navs ul>li:hover a::after{
        width: 100%;
    }
    .header ul li#navNews ol li:hover a{
        color: #0148a2;
    }
    .footer .footer-about ul li a:hover i{
        color: var(--bgscolor);
    }
    .footer .footer-products ul li:hover a,
    .footer .footer-solution ul li:hover a{
        color: var(--white);
    }
    .footer .footer-touch ol li:hover a span{
        color: var(--bgscolor);
    }
    #cbl a:hover i,
    #cbl a:hover span{
        color: var(--bgscolor);
    }
    .breadcrumb li:hover a{
        color: var(--bgscolor);
    }
    #epages a:hover{
        color: var(--bgscolor);
    }
    #related-cases .swiper-slide a:hover h3{
        color: #0148a2;
    }
    #related-cases .swiper-slide a:hover img{
        transform: scale(1.2);
    }
    #related-cases .swiper-button-next:hover,
    #related-cases .swiper-button-prev:hover{
        color: #0148a2;
    }
    #related-solution ul li:hover h3{
        color: var(--bgscolor);
    }
    #related-solution ul li:hover i{
        color: var(--bgscolor);
    }
    #related-news .swiper-slide a:hover{
        border-top-color: #0148a2;
    }
    #related-news .swiper-slide a:hover .more{
        background: #0148a2;
    }
    #related-news .swiper-slide a:hover h3{
        color: #0148a2;
    }
    #related-news .swiper-slide a:hover img{
        transform: scale(1.2);
    }
    #related-news .swiper-button-next:hover,
    #related-news .swiper-button-prev:hover{
        color: #0148a2;
    }
    .footer-form .foot-contact .tel:hover b {
        color: var(--bgscolor);
    }
}


@media(min-width:768px) and (max-width:1440px){
    .container{
		padding: 0 80px;
	}
    .header .navs ul>li{
        margin-right: 20px;
    }
    .header ul li .dropdown-item h4 a{
        font-size: 18px
    }
    .header ul li .solution-dropdown .dropdown-item h4 a{
        font-size: 16px;
    }
    .header .header-right a.get_quote{
        width: 140px;
        margin-left: 15px;
    }
    #cbl{
        right: 0;
    }
    #cbl > ul li a{
        width: 50px;
    }
    .banner-inner .banner-text{
        padding-top: 114px;
    }
    #related-cases .swiper-button-next{
        right: 0px;
    }
    #related-cases .swiper-button-prev{
        left: 0px;
    }
    #related-solution ul li{
        width: calc(50% - 30px);
    }
    #related-news .swiper-button-next{
        right: 0px;
    }
    #related-news .swiper-button-prev{
        left: 0px;
    }
}

@media(min-width:768px) and (max-width:1260px){
    .container{
		padding: 0 60px;
	}
    .header .logo img{
        width: 80%;
    }
    .header .navs ul>li {
        margin-right: 15px;
    }
    .header .header-right a.get_quote {
        width: 130px;
        margin-left: 10px;
    }
    .header .navs ul>li>a{
        font-size: 16px;
    }
    .footer .footer-about>a{
        margin-bottom: 25px;
    }
    .footer .footer-about a img{
        width: 80%;
    }
    .footer .footer-about p{
        font-size: 14px;
        line-height: 21px;
        margin-bottom: 15px;
    }
    .footer h4 {
        font-size: 20px;
        padding-bottom: 10px;
        margin-bottom: 15px;
    }
    .footer .footer-about ul li i{
        font-size: 18px;
    }
    .footer .footer-products ul li a, .footer .footer-solution ul li a{
        font-size: 14px;
        margin-bottom: 12px;
    }
    .footer .container>div{
        margin-top: 30px;
    }
    .footer .container>div.footer-products{
        max-width: 210px;
    }
    .footer .container>div.footer-solution{
        max-width: 230px;
    }
    .footer .footer-touch ol li{
        margin-bottom: 15px;
    }
    .footer .footer-touch ol li i {
        font-size: 18px;
    }
    .footer .footer-touch ol li p {
        font-size: 14px;
        margin-left: 10px;
        line-height: 20px;
    }
    .footer .footer-touch ol li:last-child i {
        font-size: 22px;
        margin: 3px 0 0 -3px;
    }
}

@media(min-width:768px) and (max-width:1024px){
    .header-top, .header {
        display: none;
    }
    .container{
		padding: 0 50px;
	}
    .header-top .container .right a{
        margin-left: 20px;
    }
    .header .logo img {
        width: 70%;
    }
    .header .navs ul>li>a{
        font-size: 14px;
    }
    .header .navs ul>li {
        margin-right: 9px;
    }
    .header .header-right a.get_quote {
        width: 100px;
        margin-left: 6px;
        height: 36px;
        border-radius: 18px;
        font-size: 12px;
        line-height: 36px;
    }
    .footer{
        padding: 40px 0 20px;
    }
    .banner-inner h1{
        font-size: 34px;
    }
    #cbl{
        display: none!important;
    }
    #related-solution ul li h3{
        font-size: 20px;
    }

    
}

@media screen and (max-width:768px){
    .container{
        padding: 0 15px;
    }
    .mt90{
        margin-top: 50px;
    }
    .mb70{
        margin-bottom: 40px;
    }
    .pt90{
        padding-top: 50px;
    }
    .pb70{
        padding-bottom: 40px;
    }
    .smBlock{
        display: block!important;
    }
    .smHide{
        display: none!important;
    }
    .header-top,.header{
        display: none;
    }
    
    .footFloat {display: block;	position: fixed;	bottom: 0;	left: 0;	width: 100%;	z-index: 500;	background: #095795;}
.footFloat .footNavBox {	display: -webkit-flex;	display: flex;	justify-content: space-between;	align-items: center;	flex-wrap: nowrap;}
.footFloat .footNavBox li {	position: relative;	flex: 1;	padding: 10px;	line-height: 36px;	background: #d5572a;}
.footFloat .footNavBox li:last-child {	background: #062d4c;}
.footFloat .footNavBox li a {	display: block;	color: #fff;	width: 100%;	text-align: center;}
.footFloat .footNavBox li a p {	font-size: 16px;	padding-top: 0;	color: #fff;	display: inline-block;}
    
    .header-sm{
        display: block;
        width: 100%;
        height: 44px;
        background: var(--white);
    }
    .header-sm .container{
        height: 44px;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .header-sm .container .header-sm-logo img{
        width: 55%;
    }
    .header-sm .navs-icon{
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .header-sm .navs-icon .whatsapp-sm {
        display: inline-block;
        width: 22px;
        height: 22px;
        background: #2ab43f;
        border-radius: 50%;
        text-align: center;
        margin-right: 10px;
    }
    .header-sm .navs-icon .whatsapp-sm i {
        line-height: 22px;
        color: var(--white);
    }
    .header-sm .navs-icon .menu-sm i {
        color: #05042E;
        font-size: 24px;
    }
    /* navs sm */
    .navs-sm{
        display:block;
        position: fixed;
        right:-100%;
        top:0;
        z-index:10000;
        width:69%;
        height:100vh;
        padding-top:30px;
        background:var(--white);
        overflow-y:scroll;
        overflow-x:hidden
    }
    .navs-sm i.close{
        font-size:30px;
        position:absolute;
        right:12px;
        top:15px;
        color: var(--bgcolor) ;
    }
    .navs-sm .navs-lists ul>li{
        border-bottom:1px solid #eaeaea
    }
    .navs-sm .navs-lists ul>li>a{
        padding:0 15px
    }
    .navs-sm .navs-lists ul li span{
        display:flex;
        align-items:center;
        justify-content:space-between;
        padding:0 15px
    }
    .navs-sm .navs-lists ul li .hidden span{
        padding-left:25px
    }
    .navs-sm .navs-lists ul li .hidden li{
        border-bottom-style:dashed
    }
    .navs-sm .navs-lists ul li .hidden i{
        color:#6c7684;
    }
    .navs-sm .navs-lists ul li .hidden a{
        color:#6c7684;
        font-size: 14px;
        text-transform: capitalize;
    }
    .navs-sm .navs-lists li a{
        display:inline-block;
        width:100%;
        font-size:18px;
        color:var(--titlecolor);
        line-height:35px
    }
    .navs-sm .navs-lists li i{
        display:inline-block;
        color:var(--titlecolor);
        font-size:24px;
        transform:rotate(-90deg);
        transition:all .3s linear
    }
    .iActive{
        transform:rotate(0deg)!important;
        color:var(--bgscolor)!important
    }
    .aActive{
        color:var(--bgscolor)!important
    }
    .navs-sm .navs-lists ul.hidden,
    .navs-sm .navs-lists ul li .sub-hidden{
        display:none;
        background:#fcfcfc
    }
    .navs-sm .navs-lists ul li .hidden li:last-child,
    .navs-sm .navs-lists ul li .sub-hidden a:last-child{
        border-bottom:0;
    }
    .navs-sm .navs-lists ul li .sub-hidden a {
        border-bottom: 1px dashed #eaeaea;
        padding-left: 35px;
        font-size: 12px;
    }

    .navs-sm .navs-lists ul.hidden>li{
        padding:0
    }
    .navs-sm .navs-lists ul.hidden>li a>i{
        transform:rotate(-90deg);
        left:0;
        top:0;
        right:unset
    }
    .navs-sm .navs-lists li.active a{
        color:var(--bgscolor);
    }
    .navs-sm .navs-bottom{
        padding:50px 15px;
        text-align:center
    }
    .navs-sm .navs-bottom h3 a{
        font-size:18px;
        font-weight:700;
        color:var(--bgscolor);
        line-height:27px
    }
    .navs-sm .navs-bottom p{
        font-size:16px;
        font-weight:400;
        color:#999;
        line-height:22px;
        margin:8px 0 20px
    }
    .navs-sm .navs-bottom a.light{
        display: inline-block;
        margin:0 auto;
        width:162px;
        height:45px;
        line-height:45px;
        border-radius:22px;
        background: var(--bgcolor);
        font-size: 16px;
        color: var(--white);
    }
    /* navs_zzc */
    #navs_zzc {
        width: 100%;
        height: 100%;
        position: fixed;
        left: 0;
        top: 0;
        z-index: 999;
        background: rgba(0, 0, 0, .3);
        display: none;
    }

    
    .footer{
        padding: 40px 0 30px;
    }
    .footer .container>div{
        width: 100%;
        margin-top: 30px;
    }
    .footer .footer-about>a{
        margin-bottom: 10px;
    }
    .footer .footer-about img{
        width: 70%;
    }
    .footer h4{
        font-size: 20px;
        padding-bottom: 10px;
        margin-bottom: 18px;
    }
    .footer h4::after {
        width: 60px;
        height: 2px;
    }
    .footer .footer-about h4{
        display: none;
    }
    .footer .footer-about p {
        font-size: 16px;
        line-height: 21px;
        margin-bottom: 18px;
    }
    .footer .footer-about ul li a{
        margin-bottom: 0;
    }
    .footer .footer-about ul li i {
        font-size: 18px;
    }
    .footer .footer-products ul li,
    .footer .footer-solution ul li{
        margin-bottom: 12px;
    }
    .footer .footer-products ul li a,
    .footer .footer-solution ul li a{
        font-size: 16px;
    }
    .footer .container>div.footer-products,
    .footer .container>div.footer-solution{
        max-width: unset;
    }
    .footer .container>div.footer-products{
        display: none;
    }
    .footer .footer-touch ol li{
        margin-bottom: 15px;
    }
    .footer .footer-touch ol li i{
        font-size: 18px;
    }
    .footer .footer-touch ol li p {
        font-size: 16px;
        margin-left: 8px;
        line-height: 21px;
    }
    .footer .footer-touch ol li:last-child i {
        font-size: 20px;
        margin: 2px 0 0 -4px;
    }
    .footer .footer-touch ol li:last-child p {
        margin-left: 8px;
    }
    .copy-right{
        height: 45px;
    }
    .copy-right p {
        font-size: 12px;
        line-height: 45px;
    }
    #cbl{
        display: none!important;
    }
    /* banner inner sm */
    .banner-inner{
        height: 220px;
        background: url("/static/images/banner/banner-news-sm.jpg") no-repeat;
        background-size: 100% 100%;
    }
    .breadcrumb{
        display: none;
    }
    .banner-inner .banner-text{
        padding-top: 85px;
    }
    .banner-inner .banner-text h1 {
        font-size: 28px;
        line-height: 36px;
        margin-bottom: 0;
        text-align: center;
    }
    /* banner single sm */
    .banner-single .banner-text p,
    .banner-single .banner-text span,
    .breadcrumb-single{
        display: none;
    }

    /* solution top sm */
    .solution-top .solution-text{
        padding: 25px 15px;
        box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, .1);
        margin-top: 50px;
        border-radius: 8px;
    }
    .solution-top h2 {
        font-size: 26px;
        margin-bottom: 20px;
    }
    .solution-top p, .solution-top ul li{
        font-size: 16px;
        margin-bottom: 15px;
    }
    .solution-top p.advantages{
        margin-top: 25px;
    }
    .solution-top ul {
        padding-left: 15px;
    }

    /* epages sm */
    #epages b{
        width: 25px;
        height: 25px;
        line-height: 25px;
        border-radius: 50%;
        margin-right: 12px;
        font-size: 16px;
    }
    #epages a {
        font-size: 18px;
        margin-right: 12px;
    }
    #epages a:last-child{
        margin-right: 0;
    }
    /* related cases sm */
    #related-cases .container{
        padding: 0;
    }
    #related-cases h2,
    #related-solution h2,
    #related-news h2{
        font-size: 26px;
        margin-bottom: 25px;
    }
    #related-cases h2::before,
    #related-solution h2::before,
    #related-news h2::before{
        right: -8px;
        bottom: 2px;
        width: 40%;
        height: 6px;
        border-radius: 3px;
    }
    #related-cases h2::after,
    #related-solution h2::after,
    #related-news h2::after{
        right: -18px;
        bottom: 2px;
        width: 6px;
        height: 6px;
    }
    #related-cases .swiper-button-next,
    #related-cases .swiper-button-prev{
        display: none;
    }
    #related-cases h3 {
        font-size: 18px;
        height: 48px;
        color: var(--fttcolor);
        line-height: 24px;
    }
    #related-cases .desc {
        font-size: 16px;
        margin: 10px 0 25px;
        line-height: 20px;
        height: 40px;
    }
    #related-cases .img,
    #related-cases .swiper-slide img{
        border-radius: 0px 25px 0px 0px;
    }
    /* related solution sm */
    #related-solution{
        margin-top: 50px;
        padding-bottom: 40px;
    }
    #related-solution ul li{
        width: 100%;
        margin-bottom: 20px;
    }
    #related-solution ul li:last-child{
        margin-bottom: 0;
    }
    #related-solution ul li h3{
        font-size: 18px;
    }
    #related-solution ul li .related-info a{
        flex-wrap: wrap;
    }
    #related-solution ul li .related-info img{
        width: 100%;
        height: auto;
        border-radius: 8px;
    }
    #related-solution ul li .related-info p{
        padding: 0;
        background: var(--white);
        margin-top: 15px;
    }
    /* technology news sm */
    #related-news .container{
        padding: 0;
    }
    #related-news .swiper-button-next,
    #related-news .swiper-button-prev{
        display: none;
    }
    #related-news .more{
        width: 120px;
        height: 30px;
        font-size: 14px;
        line-height: 30px;
        margin-bottom: 30px;
    }
    #related-news h3 {
        font-size: 18px;
        color: var(--fttcolor);
        line-height: 24px;
    }
    #related-news .desc {
        height: 40px;
        margin: 6px 0 15px;
        line-height: 20px;
    }
    #related-news .news-img {
        margin-top: 25px;
    }
    #related-news .swiper-slide img{
        height: 290px;
    }
    /* footer form sm */
    .footer-form{
        padding-top: 0;
    }
    .footer-form .foot-contact .f-describe,
    .footer-form .foot-contact .form-main p{
        display: none;
    }
    .footer-form .foot-contact .f-form{
        width: 100%;
        max-width: unset;
        border-radius: 30px 0 0;  
    }
    .footer-form .foot-contact .f-form h2{
        font-size: 24px;
        text-align: center;
        color: #EC6F2C;
        
        margin: 25px auto 0px;
    }
    .footer-form .foot-contact .form-main {
        padding: 20px 15px 25px;
    }
    .footer-form .foot-contact .form-main input {
        height: 40px;
    }
    .footer-form .foot-contact .form-main input,
    .footer-form .foot-contact .form-main textarea{
        font-size: 14px;
        padding-left: 10px;
    }
    .footer-form .foot-contact .form-main textarea{
        height: 100px;
        padding: 10px;
    }
    .footer-form .foot-contact .form-main input::placeholder,
    .footer-form .foot-contact .form-main textarea::placeholder{
        font-size: 14px;
    }
    .footer-form .foot-contact .form-main .radio{
        font-size: 14px;
    }
    .footer-form .foot-contact .form-main .radio input {
        width: 12px;
        height: 12px;
        margin-right: 5px;
        top: 0px;
    }
    .footer-form .foot-contact .form-main .Btn{
        font-size: 16px;
    }
}