.banner-con .banner{
    max-width: 1400px;
    margin: 0 auto;
    padding-bottom: clamp(30px,5.72vw,80px);
}
.banner-con .banner .left-right-con{
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-top: 30px;
}
.banner-con .banner .left-right-con .left-con{
    max-width: 950px;
}
.banner-con .banner .left-right-con .left-con .video iframe{
    border: 6px solid #03d4b7;
    border-radius: 20px;
    overflow: hidden;
    max-width: 100%;;
}
.banner-con .banner .left-right-con .left-con .title{
    font-size: 24px;
    margin-bottom: 15px;
    margin-top: 20px;
}
.banner-con .banner .left-right-con .left-con .desc p{
    line-height: 2;
     overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    overflow:hidden;
    -webkit-box-orient: vertical;
    color: #666666;
}
.banner-con .banner .left-right-con .right-con{
    min-width: 400px;
    max-width: 400px;
}
.banner-con .banner .left-right-con .right-con .menu-ul{
    display: flex;
    align-items: center;
    text-align: center;
    background: #292d3a;
    height: 50px;
    border-radius: 10px;
}
.banner-con .banner .left-right-con .right-con .menu-ul li {
    flex: 1;
    height: 100%;
}
.banner-con .banner .left-right-con .right-con .menu-ul li:not(:last-child){
    position: relative;
}
.banner-con .banner .left-right-con .right-con .menu-ul li:not(:last-child):after{
    content: "";
    width: 1px;
    height: 100%;
    background: linear-gradient(to bottom,transparent 20%,#ffffff,transparent 80%); 
    position: absolute;
    right: 0;
    top: 0;
}
.banner-con .banner .left-right-con .right-con .menu-ul li a{
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  color: #ffffff;
  position: relative;
}

.banner-con .banner .left-right-con .right-con .menu-ul li.active a{
    color: #03d4b7;
}
.banner-con .banner .left-right-con .right-con .menu-ul li.active a:after{
     content: "";
    width: 40px;
    height: 6px;
    border-radius: 3px;
    background: #03d4b7;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}
.banner-con .banner .left-right-con .right-con .video-con{
    margin-top: 20px;
}
.banner-con .banner .left-right-con .right-con .video-con .item{
    display: none;
}
.banner-con .banner .left-right-con .right-con .video-con .item li:not(:last-child){
    margin-bottom: 15px;
}

.banner-con .banner .left-right-con .right-con .video-con .item.active{
    display: block;
}
.banner-con .banner .left-right-con .right-con .video-con .item a{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    line-height: 1.5;
}
.banner-con .banner .left-right-con .right-con .video-con .item a .title{
    color: #1c1e2a;
    font-size: 14px;
    margin-bottom: 15px!important;
     overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    overflow:hidden;
    -webkit-box-orient: vertical;
}
.banner-con .banner .left-right-con .right-con .video-con .item a img{
    max-width: 150px;
}
.banner-con .banner .left-right-con .right-con .video-con .item a .desc p{
    color: #666666;
    font-size: 12px;
     overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    overflow:hidden;
    -webkit-box-orient: vertical;
}

.common-con{
    background: #f2f2f2;
    padding: clamp(30px,5.72vw,80px) 0;
}
.common-con .common{
    max-width: 1400px;
    margin: 0 auto;
}
 .title-desc-more{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}
 .title-desc-more .title{
    margin-bottom: 10px;
    font-size: 30px;
    color: #070a4a;
}
 .title-desc-more .desc{
    font-size: 14px;
    color: #666666;
    line-height: 1.5;
}
 .title-desc-more a{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 170px;
    height: 40px;
    background: #03d4b7;
    border-radius: 10px;
    font-size: 18px;
    font-weight: bold;
    color: #000010;
    text-transform: uppercase;
    flex-shrink: 0;
}
.common-con .common ul{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
}
.common-con .common ul:after{
    content: "";
    margin-left: auto;
}
.common-con .common ul li{
    width: calc((100% - 80px) / 5);
    line-height: 1.5;
}
.common-con .common ul li .cover{
    position: relative;
}
.common-con .common ul li .cover:before{
    content: "";
    background: url(../img/play.png) no-repeat;
    position:absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 49px;
    height: 49px;
    visibility: hidden;
    /* transition: all .5s ease; */
}
.common-con .common ul li .cover img{
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
}
.common-con .common ul li:hover .cover:before{
    visibility: visible;
}
.common-con .common ul li .title,.customer-site-con .customer-site ul li .title{
    font-size: 14px;
    color: #1c1e2a;
    margin: 10px 0!important;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    overflow:hidden;
    -webkit-box-orient: vertical;
}
.common-con .common ul li .desc p,.customer-site-con .customer-site ul li .desc p{
    font-size: 12px;
    color:#666666;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    overflow:hidden;
    -webkit-box-orient: vertical;
}
.common-con .common ul li .desc p:not(:first-child),.customer-site-con .customer-site ul li .desc p:not(:first-child){
    display: none;
}
.customer-site-con{
    margin: clamp(30px,5.72vw,80px) 0 160px;
}
.customer-site-con .customer-site{
    max-width: 1400px;
    margin: 0 auto;
}
.customer-site-con .customer-site ul{
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 30px;
}
.customer-site-con .customer-site ul:after{
    content: "";
    margin-left: auto;
}
.customer-site-con .customer-site ul li{
    width: calc((100% - 80px) / 5);
}
.customer-site-con .customer-site ul li a{
    position: relative;
    height: 100%;
}
.customer-site-con .customer-site ul li a .title-intro-more{
    position:absolute;
    left: 50%;
    bottom: 20px;
    transform: translateX(-50%);
    width: 100%;
    color: #ffffff;
    text-align: center;
}
.customer-site-con .customer-site ul li a .title-intro-more h3{
    font-family: "Impact";
    font-size: 30px;
    color: #03d4b7;
    font-weight: normal;
}
.customer-site-con .customer-site ul li a .title-intro-more p{
    margin: 10px 0!important;
}
.customer-site-con .customer-site ul li a .title-intro-more span{
    color: #03d4b7;
    font-size: 18px;
    text-transform: uppercase;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}
.customer-site-con .customer-site ul li a .title-intro-more span:after{
    content: "";
    background: url(../img/circle-arrow.png) no-repeat center center;
    width: 32px;
    height: 32px;
    display: block;
}
.customer-site-con .customer-site ul li{
    line-height: 1.5;
}
.customer-site-con .customer-site ul li img{
    width: 100%;
}
.customer-site-con .customer-site ul li .cover{
     position: relative;
}
.customer-site-con .customer-site ul li .cover:before{
    content: "";
    background: url(../img/play.png) no-repeat;
    position:absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 49px;
    height: 49px;
    visibility: hidden;
    /* transition: all .5s ease; */
}
.customer-site-con .customer-site ul li:hover .cover:before{
    visibility: visible;
}
.fenlei{
    margin-bottom: 160px;
}
.fpage{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.fpage a{
    background: rgb(41,45,58);
    display: flex;
    justify-content: center;
    align-items: center;
    color: #04cdae;
    padding: 10px;
}
.fpage>b{
    background: #04cdae;
    display: flex;
    justify-content: center;
    align-items: center;
    color: rgb(41,45,58);
    padding: 10px;
}

@media(max-width:1400px){
    .banner-con,.common-con,.customer-site-con{
        padding-left: 15px;
        padding-right: 15px;
    }
}

@media(max-width:1080px){
    .banner-con .banner .left-right-con{
        flex-wrap: wrap;
    }
    .banner-con .banner .left-right-con .left-con{
        max-width: 100%;
    }
    .banner-con .banner .left-right-con .right-con{
        width: 100%;
        min-width: auto;
        max-width: 100%;
    }
    .banner-con .banner .left-right-con .right-con .video-con .item.active{
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 20px;
    }
    .banner-con .banner .left-right-con .right-con .video-con .item li{
        width: calc((100% - 20px) / 2);
    }
    .common-con .common ul li,.customer-site-con .customer-site ul li{
        width: calc((100% - 60px) / 4);
    }
    .customer-site-con{
        margin-bottom: 50px;
    }
    .fenlei{
    margin-bottom: 0;
}
}

@media (max-width:882px){
      .common-con .common ul li,.customer-site-con .customer-site ul li{
        width: calc((100% - 40px) / 3);
    }
}

@media (max-width:768px){
    .banner-con .banner .left-right-con .right-con .video-con .item.active li{
        width: 100%;
    }
       .common-con .common ul li,.customer-site-con .customer-site ul li{
        width: calc((100% - 20px) / 2);
    }
    .title-desc-more{
        flex-wrap: wrap;
    }
    
}

@media (max-width:400px){
    .banner-con .banner .left-right-con .right-con .video-con .item a img{
        max-width: 40%;
    }
    .banner-con .banner .left-right-con .right-con .video-con .item li:not(:last-child){
        margin-bottom: 0;
    }
    .customer-site-con .customer-site ul li:first-child{
        width: 100%;
    }
}
