.main {
    background: RGBA(250, 250, 250, 1);
}

.hero-slider {
    position: relative;
}

.hero-slider .swiper-slide {
    position: relative;
}

.hero-slider .swiper-slide .pic img {
    display: block;
    width: 100%;
    min-height: 340px;
    object-fit: cover;
    height: 100vh;
}

.hero-slider .swiper-slide .slideContent {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    width: 100%;
    padding: 0 6.77vw;
}

.hero-slider .swiper-slide .slideContent .title {
    font-weight: bold;
    color: #FAFAFA;
    line-height: 1.2;
}

.products-section .btn,
.hero-slider .btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 6.77vw;
    text-align: center;
    z-index: 3;
}

.products-section .btn.btn-prev,
.hero-slider .btn.btn-prev {
    left: 0;
}

.products-section .btn.btn-next,
.hero-slider .btn.btn-next {
    right: 0;
}

.products-section .btn .iconfont,
.hero-slider .btn .iconfont {
    font-size: 26px;
    /* font-weight: bold; */
    color: rgba(255, 255, 255, 1);
    transition: all 0.3s ease-in-out;
    cursor: pointer;
}

.hero-pagination {
    position: absolute;
    bottom: 54px;
    left: 0;
    width: 100%;
    padding: 0 6.77vw;
    display: flex;
    align-items: center;
    gap: 20px;
    z-index: 3;
}

.hero-pagination span {
    position: relative;
    color: rgba(255, 255, 255, .2);
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 50%;
    transition: all 0.3s ease-in-out;
}

.hero-pagination span:hover,
.hero-pagination span.active {
    color: #fff;
}

.hero-pagination span.active::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 38px;
    height: 38px;
    box-sizing: border-box;
    border-radius: 50%;
    background: transparent;
}

.hero-pagination span svg {
    position: absolute;
    top: -2px;
    left: -2px;
    width: 42px;
    height: 42px;
    z-index: -1;
    opacity: 0;
}

.hero-pagination span.active svg {
    opacity: 1;
}

.hero-pagination span.active svg circle {
    display: block;
    fill: none;
    stroke: #fff;
    stroke-width: 2;
    stroke-dasharray: 119.38;
    stroke-dashoffset: 119.38;
    animation: borderAnimation 1s ease-in-out forwards;
}

@keyframes borderAnimation {
    to {
        stroke-dashoffset: 0;
    }
}

.hero-slider .btn .iconfont:hover {
    color: rgba(37, 138, 215, 1);
}

.products-section {
    padding: 140px 0 160px;
    background: linear-gradient(180deg, #58ABED, #FAFAFA);
}

.products-section .section-title-white {
    text-align: center;
}

.products-section .search-bar {
    width: 860px;
    max-width: 100%;
    height: 70px;
    background: #FFFFFF;
    border-radius: 35px;
    margin: 45px auto 0;
    padding: 0 40px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.products-section .search-bar input {
    flex: 1;
    width: 100%;
    border: none;
    outline: none;
    font-weight: 400;
    font-size: 16px;
    color: #333;
    /* line-height: 60px; */
    font-family: Bahnschrift;
    margin-right: 30px;
    height: 100%;
}

.products-section .search-bar input::placeholder {
    color: #999999;
}

.products-section .search-bar .icon-sousuo {
    font-size: 24px;
    color: RGBA(0, 0, 0, 1);
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.products-section .search-bar .icon-sousuo:hover {
    color: rgba(37, 138, 215, 1);
}

.products-section .product-keywords {
    font-weight: 400;
    font-size: 19px;
    color: #FFFFFF;
    line-height: 30px;
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px 30px;
}

.products-section .product-keywords a {
    color: #fff;
    transition: all 0.3s ease-in-out;
}

.products-section .product-keywords a:hover {
    color: rgba(37, 138, 215, 1);
}

.product-slider-container {
    position: relative;
    padding: 0 6.77vw;
}

.product-slider-container .swiper {
    padding: 48px 0;
}

.product-slider-container .swiper-slide {
    width: 19.27%;
    height: auto;
}

.product-slider-container .swiper-slide:not(:last-child) {
    margin-right: .91%;
}

.product-slider-container .product-card {
    display: block;
    background: #fff;
    border-radius: 20px;
    padding: 30px 10px 10px;
    transition: all .6s;
    height: 100%;
}

.product-slider-container .swiper-slide:hover .product-card {
    transform: translateY(-20px);
}

.product-slider-container .product-card .icon {
    margin: 0 20px;
    width: 90px;
    height: 90px;
    background: #EFEFEF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .6s;
}

.product-slider-container .swiper-slide:hover .icon {
    background: rgba(37, 138, 215, 1);
}

.product-slider-container .swiper-slide .icon img {
    max-width: 58%;
    max-height: 58%;
    transition: filter 0.3s ease;
}

.product-slider-container .swiper-slide:hover .icon img {
    filter: brightness(0) invert(1);
}

.product-slider-container .swiper-slide .product-card-content {
    margin-top: 29px;
    background: #FFFFFF;
    /* background:#EFEFEF; */
    border-radius: 20px;
    padding: 20px 17px;
}

.product-slider-container .swiper-slide .picCover {
    padding-top: 93.26%;
}

.product-slider-container .swiper-slide .picCover img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
}

.product-slider-container .swiper-slide .product-name {
    font-weight: 400;
    font-size: 16px;
    color: #222222;
    line-height: 24px;
    transition: all .6s;
    margin-top: 1em;
    word-break: break-all;
}

.product-slider-container .swiper-slide:hover .product-name {
    color: rgba(37, 138, 215, 1);
}

.industry-section {
    position: relative;
    background: url(../img/industry-section-bg.png);
    background-repeat: no-repeat;
    background-position: left 6.77vw bottom 18px;
}

.industry-section .bg-circle {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 94.37%;
}

.industry-section .bg-circle img {
    display: block;
    width: 100%;
}

.industry-section .bg-circle-bullet {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    animation: rotate360 20s linear infinite;
}

@keyframes rotate360 {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.industry-section .bg-circle-bullet::before {
    position: absolute;
    display: block;
    content: "";
    width: 18px;
    height: 18px;
    left: 50%;
    top: 0;
    transform: translate(-50%, -50%);
    background: rgba(37, 138, 215, 1);
    border-radius: 50%;
    /* padding-top: 100%; */
}

.industry-section .industry-layout {
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 64px 0 190px;
    z-index: 3;
}

.industry-section .industry-left {
    position: sticky;
    top: 131px;
    z-index: 3;
}

.industry-section .industry-watermark {
    font-family: Rany-Bold;
    color: rgba(34, 34, 34, 0);
    line-height: 1;
    text-stroke: 2px #E1E1E1;
    -webkit-text-stroke: 2px #E1E1E1;
    text-transform: uppercase;
    margin: .25em 0 1em;
}

.industry-section .btn-group {
    justify-content: flex-start;
}

.industry-section .btn-group .btn-link .btn-text {
    background: rgba(37, 138, 215, 1);
    color: #fff;
}

.industry-section .industry-grid {
    width: 68.73%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.industry-section .industry-grid .grid-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.industry-section .industry-grid .grid-item:not(:last-child) {
    margin-bottom: 30px;
}

.industry-section .industry-grid .grid-row:nth-child(2n+1) {
    padding-top: 50%;
}

.industry-section .industry-grid .grid-item-inner {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    z-index: 3;
}

.industry-section .industry-grid .grid-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(37, 138, 215, .9), rgba(37, 138, 215, .2));
    z-index: 2;
    opacity: 0;
    transition: all .6s;
}

.industry-section .industry-grid .grid-item:hover::before {
    opacity: 1;
}

.industry-section .industry-grid .grid-item-inner .num {
    font-family: Rany-Bold;
    line-height: 1;
    color: rgba(250, 250, 250, 0);
    text-stroke: 2px #E1E1E1;
    -webkit-text-stroke: 2px #E1E1E1;
}

.industry-section .industry-grid .item-content {
    font-weight: 400;
    font-size: 24px;
    color: #FAFAFA;
    line-height: 1.33;
}

.products-section .btn .iconfont {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: #FFFFFF;
    border-radius: 25px;
    font-size: 20px;
    color: rgba(37, 138, 215, 1);
    transition: all .6s;
    margin: 0 auto;
}

.products-section .btn .iconfont.swiper-button-disabled {
    opacity: .4;
    cursor: not-allowed;
}

.products-section .btn .iconfont:not(.swiper-button-disabled):hover {
    background: rgba(37, 138, 215, 1);
    color: #fff;
}
.stats-section{
    position:relative;
    z-index:3;
}
.stats-section .stats-content {
    background: url(../img/stats-section-1.jpg);
    background-size: cover;
    border-radius: 20px;
    padding: 107px 150px 155px;
}

.stats-section .section-title-white {
    font-weight: 400;
    text-align: center;
}

.stats-section .stats-desc {
    font-weight: bold;
    font-size: 20px;
    color: #FFFFFF;
    line-height: 1.5;
    text-align: center;
    margin-top: 1.25em;
}

.stats-section .stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    text-align: center;
}

.stats-section .stats-grid .number {
    font-weight: bold;
    font-size: 1;
    color: #FFFFFF;
    margin-top: 1em;
}

.stats-section .stats-grid .stats-text {
    font-weight: bold;
    font-size: 20px;
    color: #FFFFFF;
    line-height: 1.5;
}

.cert-section {
    padding: 145px 0;
    overflow: hidden;
}

.cert-section .section-title {
    text-align: center;
}

.cert-section .certSwiper {
    margin-top: 66px;
}

.cert-section .certSwiper .swiper-slide {
    width: 420px;
    padding: 50px 56px;
    background: #EFEFEF;
    border-radius: 20px;
}

.cert-section .certSwiper .swiper-slide .picCover {
    padding-top: 140%;
}
@media (max-width:1440px) {
    .product-slider-container .product-card .icon{
        width: 70px;
        height: 70px;
    }
    .product-slider-container .swiper-slide .product-card-content{
        margin-top: 20px;
    }
    .product-slider-container .swiper-slide{
        width: 23.5%;
    }
    .product-slider-container .swiper-slide:not(:last-child){
        margin-right: 2%;
    }
    .industry-section .industry-grid{
        gap: 20px;
    }
    .industry-section .industry-grid .grid-item:not(:last-child){
        margin-bottom: 20px;
    }
    .industry-section .industry-grid .grid-item-inner{
        padding: 30px;
    }
    .industry-section .industry-grid .item-content{
        font-size: 20px;
    }
}
@media (max-width:1199px) {
    .hero-slider .swiper-slide .pic img{
        height:auto;
    }
    .industry-section .industry-grid .item-content{
        font-size: 18px;
    }
    .product-slider-container .swiper-slide{
        width: 32%;
    }
    .cert-section,
    .products-section{
        padding: 75px 0;
    }
    .industry-section .industry-layout{
        padding-bottom: 75px;
    }
    .stats-section .stats-content{
        padding-top: 75px;
        padding-bottom: 75px;
    }
    .cert-section .certSwiper,
    .products-section .search-bar{
        margin-top: 45px;
    }

    .product-slider-container .swiper{
        padding: 45px 0;
    }
    .products-section .search-bar{
        height: 60px;
    }
    .products-section .product-keywords{
        font-size: 18px;
    }
    .products-section .btn .iconfont{
        width: 40px;
        height: 40px;
     }
     .stats-section .stats-content{
        padding-left: 50px;
        padding-right: 50px;
     }
     .cert-section .certSwiper .swiper-slide{
        width: 380px;
        padding: 30px;
     }
}
@media (max-width: 1024px) {
    .stats-section .stats-desc{
        margin-top: .9em;
        font-size: 18px;
    }
    .stats-section .stats-grid .stats-text{
        font-size: 18px;
    }
    .industry-section .industry-grid{
        width: 100%;
        margin-top: 40px;
    }
    .industry-section .btn-group{
        justify-content: flex-end;
        margin-top: -90px;
    }
    .industry-section .industry-left{
        width: 100%;
        top: 0;
        position: relative;
    }
    .industry-section .industry-layout{
        flex-direction: column;
    }
    .product-slider-container .swiper-slide{
        width: 49%;
    }
    .products-section .product-keywords{
        font-size: 16px;
    }
    .products-section .search-bar{
        height: 55px;
        padding: 0 20px;
    }
    .cert-section,
    .products-section{
        padding: 65px 0;
    }
    .industry-section .industry-layout{
        padding-bottom: 65px;
    }
    .stats-section .stats-content{
        padding-top: 65px;
        padding-bottom: 65px;
    }
    .cert-section .certSwiper,
    .products-section .search-bar{
        margin-top: 40px;
    }

    .product-slider-container .swiper{
        padding: 40px 0;
    }
    .hero-pagination{
        bottom: 24px;
    }
     .hero-slider .btn .iconfont{
        font-size: 20px;
     }
     .product-slider-container .swiper-slide:hover .product-card{
        transform: translateY(0);
    }
}
@media (max-width:768px) {
    .industry-section .bg-circle{
        display:none;
    }
    .cert-section .certSwiper .swiper-slide{
        width: 320px;
        /* padding: 20px; */
    }
    .stats-section .stats-grid .stats-text,
    .stats-section .stats-desc{
        font-size: 16px;
    }
    .stats-section .stats-grid{
        /* display: flex; */
        /* flex-wrap: wrap; */
        /* align-items: center; */
        justify-content: center;
        gap: 0;
    }
    .stats-section .stats-grid .stat-item{
        /* width: 50%; */
    }
    .stats-section .stats-content{
        padding-left: 30px;
        padding-right: 30px;
    }
    .industry-section .industry-grid .grid-item-inner{
        padding: 20px;
    }
    .industry-section .industry-grid{
        gap: 10px;
        margin-top: 30px;
    }
    .industry-section .industry-grid .grid-item:not(:last-child){
        margin-bottom: 10px;
    }
    .product-slider-container .product-card .icon{
        width: 50px;
        height: 50px;
    }
    .products-section .product-keywords{
        gap: 0 20px;
    }
    .hero-pagination,
    .hero-slider .swiper-slide .slideContent{
        padding: 0 3%;
    }
    .products-section .btn, .hero-slider .btn{
        width: 9vw;
    }
    .product-slider-container{
        padding: 0 9vw;
    }
     .hero-slider .btn{
        display: none;
     }
     .cert-section,
    .products-section{
        padding: 55px 0;
    }
    .industry-section .industry-layout{
        padding-top: 55px;
    }
    .industry-section .industry-layout{
        padding-bottom: 55px;
    }
    .stats-section .stats-content{
        padding-top: 55px;
        padding-bottom: 55px;
    }
    .cert-section .certSwiper,
    .products-section .search-bar{
        margin-top: 30px;
    }

    .product-slider-container .swiper{
        padding: 30px 0;
    }
    .industry-section .industry-grid .item-content{
        font-size: 16px;
    }
}
@media (max-width:500px) {
    .stats-section .section-title-white{
        font-size:14px;
    }
    .products-section .search-bar{
        height: 50px;
    }
    .cert-section .certSwiper .swiper-slide{
        width: 280px;
        /* padding: 10px; */
    }
    .stats-section .stats-desc{
        margin-top: .7em;
    }
    .stats-section .stats-grid .number{
        margin-top: .6em;
        font-size: 22px;
    }
    .stats-section .stats-grid .stats-text, .stats-section .stats-desc{
        font-size: 12px;
        line-height: 1.2;
    }
    .stats-section .stats-content{
        padding-left: 20px;
        padding-right: 20px;
    }
    .industry-section .industry-grid .grid-item{
        border-radius: 5px;
    }
    .industry-section .industry-watermark{
        margin-bottom: .5em;
    }
    .industry-section .btn-group{
        margin-top: 0;
        justify-content: flex-start;
    }
    .industry-section .industry-grid .grid-item-inner .num{
        font-size: 20px;
    }
    .industry-section .industry-grid .item-content{
        font-size: 12px;
    }
    .industry-section .industry-grid .grid-item-inner{
        padding: 10px;
    }
    .industry-section .industry-grid{
        margin-top: 25px;
    }
    .product-slider-container{
        padding: 0 13vw;
    }
    .products-section .btn, .hero-slider .btn{
        width: 13vw;
    }
    .product-slider-container .product-card{
        padding-top: 20px;
    }
    .product-slider-container .swiper-slide{
        width: 100%;
    }
    .hero-pagination{
        gap: 0 10px;
    }
    .hero-pagination span{
        font-size: 12px;
    }
    .hero-pagination span{
        width: 30px;
        height: 30px;
    }
    .hero-pagination span svg{
        left: -1px;
        top: -1px;
        width: 32px;
        height: 32px;
    }
    .cert-section,
    .products-section{
        padding: 45px 0;
    }
    .industry-section .industry-layout{
        padding-top: 45px;
    }
    .industry-section .industry-layout{
        padding-bottom: 45px;
    }
    .stats-section .stats-content{
        padding-top: 45px;
        padding-bottom: 45px;
    }
    .cert-section .certSwiper,
    .products-section .search-bar{
        margin-top: 25px;
    }

    .product-slider-container .swiper{
        padding: 25px 0;
    }
}