﻿:root {
    --bgcolor: #d8dbe0;
    --title-white: #f3f3f3;
    --xbox-width: 1335px;
    --xbox-px: 14.905362776025236%;
    --mbox-px: 10%;
    --sbox-px: 5%;
    --bullet-width: 60px;
}

@media (max-width: 767px) {
    :root {
        --bullet-width: 20px;
    }
}

.render-body {
    /*background-color: #101010;*/
    background-color: var(--bgcolor);
    font-family: "siyuanheiti-normal", "Microsoft YaHei";
}

.animation-item {
}

.navbar > .container .navbar-brand,
.navbar > .container-fluid .navbar-brand {
    margin-left: 0;
}

.banner-wrap {
    overflow: hidden;
    position: relative;
}

.banner-pagination.swiper-pagination {
    bottom: 5%;
}

.banner-bullet {
    width: 20px;
    height: 5px;
    border-radius: 2.5px;
    background-color: rgba(2, 139, 230, 1);
    opacity: 0.5;
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1) 0s;
}

    .banner-bullet.swiper-pagination-bullet-active {
        opacity: 1;
    }

.bullet-progress-bar {
    width: 0px;
    height: 5px;
    background-color: #fff;
    /*background-color: #028be6;*/
}

.swiper-pagination-bullet-active .bullet-progress-bar {
    animation: progress 3.5s linear;
}

@keyframes progress {
    100% {
        width: var(--bullet-width);
    }
}

.banner-item {
    font-size: 0;
    position: relative;
}

.banner-wrap .img-pc,
.banner-wrap .img-phone {
    width: 100%;
}

.banner-wrap .img-pc,
.banner-wrap .banner-video,
.banner-wrap .banner-video-mask,
.banner-wrap .banner-video-label {
    display: none;
}

.banner-wrap .img-phone {
    display: inline-block;
}

.section-title {
    opacity: 0;
    color: var(--title-white);
}

    .section-title.faded {
        opacity: 1;
        transition: all 0.5s ease-in-out;
    }


.section-advantage {
    position: relative;
    color: var(--title-white);
    background-image: url(/img/index/adv_sect_bg.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 130px var(--xbox-px);
}

    .section-advantage * {
        box-sizing: border-box;
    }

    .section-advantage h3 {
        /*font-size: 32px;*/
        font-size: 48px;
        font-weight: 900;
        margin: 5% auto 60px;
    }

.advantage-item-list {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    opacity: 0;
}

    .advantage-item-list.faded {
        opacity: 1;
        transition: all 0.6s ease-in-out 0.2s;
    }

.section-advantage-item {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.section-advantage-item-title {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 40px;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    font-size: 1.5vw;
    font-family: sans-serif;
    position: relative;
    text-align: center;
    vertical-align: middle;
    padding: 40px 0;
}

.section-advantage-item:nth-child(1) .section-advantage-item-title {
    /*background-color: #daad4d;*/
    background-image: url(/img/index/adv_label_chain_bg.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.section-advantage-item:nth-child(2) .section-advantage-item-title {
    /*background-color: #67c8bb;*/
    background-image: url(/img/index/adv_label_research_bg.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.section-advantage-item:nth-child(3) .section-advantage-item-title {
    /*background-color: #028be6;*/
    background-image: url(/img/index/adv_label_brand_res_bg.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.section-advantage-item:nth-child(4) .section-advantage-item-title {
    /*background-color: #43dac4;*/
    background-image: url(/img/index/adv_label_own_lab_bg.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.section-advantage-item:nth-child(5) .section-advantage-item-title {
    /*background-color: #7daaff;*/
    background-image: url(/img/index/adv_label_years_improve.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.section-advantage-item-title .title_icon_wrap {
    width: 100%;
}

.section-advantage-item-title {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.title-wrap {
    height: 130px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

/*    .title-wrap img {
        height: 54px;
        width: 54px;
    }*/

.section-advantage-item-content {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    text-align: justify;
    overflow: hidden;
    box-sizing: border-box;
    border-radius: 0 0 15px 15px;
}

    .section-advantage-item-content img {
        width: 100%;
        height: auto;
        max-width: 100%;
        transform: scale(1);
        transition: all 0.5s ease-in-out;
    }

    .section-advantage-item-content:hover img {
        transform: scale(1.1);
    }

    .section-advantage-item-content .title_text {
        position: absolute;
        top: 15%;
        padding: 0 15%;
        color: #fefefe;
        letter-spacing: 0.08em;
        line-height: 1.5;
        z-index: 5000;
    }

    .section-advantage-item-content.en .title_text {
        text-align: left;
        font-size: 0.5729vw;
    }

@media (min-width: 768px) {

    .section-advantage-item {
        width: 13.64583333vw;
        min-width: 200px;
        display: flex;
        flex-direction: column;
    }

    .advantage-item-list {
        width: 100%;
        display: flex;
        flex-wrap: nowrap;
        justify-content: center;
        gap: 15px;
        opacity: 0;
        transform: translateY(50%);
    }

    .animation-item.faded {
        transform: translateY(0);
        opacity: 1;
        transition: all 0.6s ease-in-out 0.2s;
    }

    .section-advantage-item-title .title_text {
        letter-spacing: 0.05em;
        font-family:"siyuanheiti-blod";
    }

    /*    .section-advantage-item-title.en .title_text {
        letter-spacing: normal;
        font-size: 1.3vw;
        line-height: normal;
    }*/

    .section-advantage-item-title.en .title_text {
        letter-spacing: normal;
        font-size: 20px;
        font-weight: 700;
        line-height: 1.5;
    }

    .section-advantage-item-content .title_text {
        position: absolute;
        top: 24%;
        /*padding: 0 13.72%;*/
        font-size: 11px;
        color: #fefefe;
        letter-spacing: 0.05em;
        line-height: 1.5;
    }

    .section-advantage-item-content.en .title_text {
        top: 50%;
        left: 50%;
        transform: translate(-50%,-50%);
        padding: 0 10%;
        font-size: 15px;
        line-height: normal;
        text-align: center;
    }

    /*.advantage-item-list .section-advantage-item:last-child .title_text {
        padding: 0 1px;
    }*/

    .banner-wrap .img-pc,
    .banner-wrap .banner-video {
        display: inline-block;
    }

    .banner-wrap .img-phone {
        display: none;
    }

    .banner-wrap .banner-video {
        width: 100%;
        object-fit: fill;
    }

    .banner-wrap .banner-video-mask {
        display: block;
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        z-index: 1;
        background-color: rgba(16, 16, 16, 0.32);
        /* mix-blend-mode: darken; */
    }

    .banner-wrap .banner-video-label {
        display: flex;
        flex-direction: column;
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
        bottom: 15%;
        z-index: 2;
        color: #fff;
        text-align: center;
        justify-content: center;
    }

        .banner-wrap .banner-video-label h3 {
            font-family: "siyuanheiti-blod";
            font-size: 60px;
            font-size: 3.5vw;
            margin-top: 0;
            margin-bottom: 1vw;
            opacity: 0;
            transform: translateY(-50%);
        }

        .banner-wrap .banner-video-label p {
            font-size: 18px;
            font-size: 1.2vw;
            opacity: 0;
            transform: translateY(-60%);
        }

            .banner-wrap .banner-video-label h3.fade,
            .banner-wrap .banner-video-label p.fade {
                transition-property: opacity, transform;
                transition-duration: 1s;
                transition-timing-function: ease-in-out;
                opacity: 1;
                transform: translateY(0);
            }

            .banner-wrap .banner-video-label p.fade {
                transition-delay: 0.8s;
            }

    .banner-pagination.swiper-pagination {
        bottom: 12%;
    }

    .banner-bullet {
        outline: none;
        width: 60px;
    }
}

@media (min-width: 1200px) {
    .section-advantage-item-content.en .title_text {
        width: 100%;
        top: 15%;
        left: 50%;
        transform: translateX(-50%);
        padding: 0 10%;
        font-size: 9.5px;
        line-height: normal;
        text-align: center;
    }
}

@media (min-width: 1400px) {
    .section-advantage-item-content .title_text {
        font-size: 0.729167vw;
    }

    .section-advantage-item:first-child .section-advantage-item-content.cn .title_text {
        padding: 0 12%;
    }

    .section-advantage-item-content.en .title_text {
        top: 21%;
        left: 50%;
        transform: translateX(-50%);
        width: 100%;
        font-size: 0.5729vw;
    }
}

.section-global {
    /*background-color: #292929;*/
    /*background-color: #FFF;*/
    /*padding: 45% 10px 30%;*/
    width: 100%;
    /*    background-image: url(/img/index/map_bg.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;*/
    background-color: #f5f5f7;
    padding: 15px;
    box-sizing: border-box;
    position: relative;
}

.global-content {
    position: relative;
    width: 100%;
    max-width: var(--xbox-width);
}

/*.global-content.faded {
  transition: background-color 1s cubic-bezier(0.4, 0, 0.2, 1) 0s;
  background-color: rgba(0, 0, 0, 0.5);
}*/

.global-content-title {
    padding-top: 50px;
    padding-bottom: 50px;
}

    .global-content-title h3 {
        font-size: 20px;
        font-size: 5vw;
        margin-bottom: 10px;
        margin-top: 0;
        opacity: 0;
        color: #333;
        transform: translateY(50%);
    }

        .global-content-title h3.faded {
            opacity: 1;
            transform: translateY(0);
            transition-property: opacity, transform;
            transition-duration: 0.5s;
            transition-timing-function: ease-in-out;
        }

        .global-content-title h3:last-child {
            margin-bottom: 0;
        }

    .global-content-title.en h3:last-child {
        margin-bottom: 0;
        font-size: 1.04vw;
    }

.map-cust-dot {
    fill: #3b49ff;
}

.map-cust-line {
    /*stroke: #028be6;*/
    stroke: #3b49ff;
    stroke-width: 1;
}

.map-cust-polyline {
    stroke: #3b49ff;
    stroke-width: 1;
    fill: transparent;
}

.map-cust-label {
    fill: #028be6;
    font-size: 14px;
    font-weight: 500;
    transform: translate(0.8%, 0.8%);
}

@keyframes breathe {
    0% {
        opacity: 0.2;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0.2;
    }
}

.map-cust-label.L {
    transform: translate(-0.8%, 0.8%);
    text-anchor: end;
}

.global-content-items {
    display: flex;
    justify-content: space-around;
    opacity: 0;
    transform: translateY(30%);
}

    .global-content-items.faded {
        opacity: 1;
        transform: translateY(0);
        transition: all 0.5s ease-in-out;
    }

.content-item {
    text-align: center;
    opacity: 0;
    /*transform: translateY(50%);*/
}

    .content-item.faded {
        opacity: 1;
        /*transform: translateY(0);*/
        transition-property: opacity, transform;
        transition-duration: 0.5s;
        transition-timing-function: ease-in-out;
    }

.content-item-val {
    font-size: 40px;
    font-size: 8vw;
    font-family: Arial;
}
    /*  .content-item-val sup {
        color: #f3f3f3;
    }*/
    .content-item-val sub {
        line-height: 1;
        font-size: 12px;
    }

        .content-item-val sub.plus {
            line-height: 1;
            font-size: 16px;
        }

.content-item-desc {
    font-size: 13px;
    opacity: 0;
}

    .content-item-desc.faded {
        opacity: 1;
        transition: opacity 2s ease-in-out;
    }

@media (min-width: 768px) {
    .section-global {
        width: 100%;
        padding: 5% var(--xbox-px) 8%;
        box-sizing: border-box;
    }

        .section-global .map {
            /*width: 100%;*/
            width: 75%;
            opacity: 0;
        }

            .section-global .map.faded {
                opacity: 1;
                transition: opacity 1s ease-in-out;
            }

    .global-content {
        margin: 0 auto;
        max-width: 100%;
    }

    .global-content-view {
        position: relative;
    }

    .global-content-items {
        position: absolute;
        margin: 5% auto;
        padding: 5% 3%;
        height: 320px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        top: 15%;
        right: 0;
        color: #fff;
        background-color: #018be6;
        border-radius: 20px;
    }


    .global-content-title {
        padding-top: 0;
        padding-left: 6%;
        margin-bottom: 4%;
    }

        .global-content-title h3 {
            /*font-size: 50px;*/
            /*font-size: 2vw;*/
            font-size: 2.083333333333333vw;
            margin-bottom: 10px;
            margin-top: 0;
        }

        .global-content-title .animation-item.faded:nth-child(1) {
            font-weight: 900;
        }

    .content-item-val {
        font-size: 32px;
        font-size: 2.8vw;
        /*font-weight: 700;*/
        line-height: 1.1;
    }

        .content-item-val sub {
            font-size: 12px;
            font-size: 0.8vw;
            font-weight: normal;
            /*margin-left: -1vw;*/
        }
}

.section-product {
    background-color: #fff;
    /* background-color: #2c2c2c; */
    /* background-image: url("/img/index/product_center_bg2.png"); */
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding: 40px 30px 52px;
}

.section-product-switch {
    margin-bottom: 15px;
}

.section-product-title {
    margin-bottom: 15px;
}

    .section-product-title h3 {
        font-size: 22px;
        color: var(--dark-grey);
        /*color: var(--title-white);*/
        margin-bottom: 0;
        margin-top: 0;
        white-space: nowrap;
    }

    .section-product-title span {
        font-size: 8px;
        color: rgba(255, 255, 255, 0.5);
    }

.section-product-view {
    display: none;
    flex-direction: column-reverse;
}

    .section-product-view.active {
        display: flex;
    }

.product-series-item {
    color: rgba(255, 255, 255, 0.5);
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    display: flex;
    justify-content: space-between;
    cursor: pointer;
    white-space: nowrap;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) 0s;
}

    .product-series-item.active,
    .product-series-item:hover {
        color: #028be6;
        border-bottom-color: #028be6;
    }

    .product-series-item h4 {
        width: 100%;
        margin: 0;
        padding: 10px 0;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

        .product-series-item h4 span,
        .product-series-item h4 i {
            font-size: 13px;
            line-height: 1;
        }

        .product-series-item h4 i {
            top: 4px;
            transform: rotate(-90deg);
            transform-origin: 50% 25%;
            transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1) 0s;
        }

.series-model-wrap {
    position: absolute;
    z-index: 102;
    top: 0;
    left: 0;
    right: 0;
    background-color: #028be6;
    padding: 10px 16px;
    transform: translateY(33px) scaleY(0);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) 0s;
    transform-origin: top;
    opacity: 0;
}

.product-series-item:hover .series-model-wrap {
    transform: translateY(33px) scaleY(1);
    opacity: 1;
}

.product-series-item:hover h4 i {
    transform: rotate(0deg);
}

.series-model-item {
    display: block;
    padding: 10px 0;
    transform: translateY(50%);
    opacity: 0;
}

.product-series-item:hover .series-model-item {
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0s;
    transform: translateY(0);
    opacity: 1;
}

.series-model-item > span {
    color: #333;
}

.series-model-item:hover > span {
    transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1) 0s;
    color: #fff;
}

.section-product-swiper {
    overflow: hidden;
    margin-bottom: 15px;
    position: relative;
}

    .section-product-swiper .swiper-button-prev,
    .section-product-swiper .swiper-button-next {
        color: rgba(0, 0, 0, 0.35);
    }

.section-product-item {
    display: block;
}

    .section-product-item img {
        width: 100%;
    }

/*.section-product-desc p {
    color: #d8d8d8;
    margin-bottom: 36px;
}*/
.section-product-desc p {
    color: #333;
    margin-bottom: 36px;
}

.section-product-desc-more {
    text-align: center;
}

.section-product-desc a {
    display: inline-block;
    color: #d8d8d8;
    border: 1px solid #d8d8d8;
    border-radius: 4px;
    padding: 7px 20px;
    outline: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) 0s;
}

    .section-product-desc a:hover {
        color: #028be6;
        border-color: #028be6;
    }

    .section-product-desc a > .icon-xia {
        transform: translate(10px, -1px) rotate(-90deg);
    }

@media (min-width: 768px) {
    .section-product {
        /* background-image: url("/img/index/product_center_bg.png"); */
        padding-top: 6%;
        padding-bottom: 6%;
    }

    .section-product-switch,
    .section-product-view {
        max-width: var(--xbox-width);
        margin: 0 auto;
    }

    .section-product-switch {
        display: flex;
        justify-content: space-between;
        align-items: flex-end;
        margin-bottom: 7%;
    }

    .section-product-title {
        margin-bottom: 0;
    }

        .section-product-title h3 {
            font-size: 50px;
            font-size: 3.3vw;
        }

        .section-product-title span {
            font-size: 24px;
            font-size: 2vw;
        }

    .section-product-series {
        display: flex;
        flex-wrap: wrap-reverse;
        justify-content: flex-end;
        margin-left: 30px;
        margin-right: -30px;
    }

    .product-series-item {
        border-bottom-color: transparent;
        margin-right: 30px;
    }

        .product-series-item h4 span,
        .product-series-item h4 i {
            font-size: 18px;
            line-height: 18px;
            color: var(--dark-grey);
        }

        .product-series-item h4 i {
            margin-left: 3px;
            top: 6px;
        }

    .series-model-wrap {
        transform: translateY(38px) scaleY(0);
    }

    .product-series-item:hover .series-model-wrap {
        transform: translateY(38px) scaleY(1);
        opacity: 1;
    }

    .product-series-item:hover h4 i {
        transform: rotate(0deg);
    }

    .section-product-view {
        flex-direction: row;
        justify-content: space-between;
    }

    .section-product-desc {
        width: 32%;
    }

        .section-product-desc p {
            font-size: 18px;
            line-height: 1.8;
            margin-bottom: 50px;
            opacity: 0;
            transform: translateY(20%);
        }

            .section-product-desc p.faded {
                transition: all 0.5s ease-in-out 0s;
                opacity: 1;
                transform: translateY(0);
            }

    .section-product-desc-more {
        text-align: left;
        opacity: 0;
        transform: translateY(30%);
    }

        .section-product-desc-more.faded {
            transition: all 0.5s ease-in-out 0.3s;
            opacity: 1;
            transform: translateY(0);
        }

    .section-product-swiper {
        width: 63%;
        min-height: 400px;
    }
}

.part1-wrap {
    background-color: #e6e7e9;
    text-align: center;
    margin: 0 auto;
}

    .part1-wrap ul {
        padding: 0;
        margin: 0 -15px;
        vertical-align: top;
        overflow: hidden;
    }

        .part1-wrap ul > li {
            border-bottom: 1px solid #e0e0e0;
        }

            .part1-wrap ul > li:first-child {
                border-left: none;
            }

            .part1-wrap ul > li > a {
                padding: 20px 20px 20px 90px;
                display: block;
                position: relative;
            }

    .part1-wrap .xt-icon {
        position: absolute;
        left: 10px;
        top: 30px;
        font-size: 50px;
        color: #028be6;
    }

    .part1-wrap ul > li > a > h4,
    .part1-wrap ul > li > a > p {
        min-width: 130px;
        max-width: 200px;
        text-align: left;
        color: #333;
    }

    .part1-wrap ul > li:hover > a > p {
        color: #333;
    }

@media (min-width: 768px) {
    #ser-wrap {
        overflow: hidden;
        padding: 0;
    }

    .part1-wrap ul {
        margin: 0;
        display: table;
        /*border-right: 1px solid #373d41;*/
        margin: auto;
    }

        .part1-wrap ul > li {
            border-bottom: none;
        }

            .part1-wrap ul > li,
            .part1-wrap ul > li:first-child {
                display: table-cell;
                /*border-left: 1px solid #373d41;*/
            }

                .part1-wrap ul > li:hover {
                    /*background-color: #00c1de;*/
                    background-color: rgba(2, 139, 230, 0.9);
                }

                    .part1-wrap ul > li:hover > a > span,
                    .part1-wrap ul > li:hover > a > h4,
                    .part1-wrap ul > li:hover > a > p {
                        color: #fff;
                    }
}

.content-parts {
    padding: 0;
}

.type-title h3 {
    text-align: center;
    padding: 40px 0;
}

.pro-img-lg {
    height: 300px;
    margin-left: -60px;
}

.pro-img-md {
    height: 220px;
}

.pro-img-sm {
    height: 130px;
}

    .pro-img-lg > img,
    .pro-img-md > img,
    .pro-img-sm > img {
        max-width: 100%;
        max-height: 100%;
    }

.part2-wrap {
    text-align: center;
}

    .part2-wrap ul {
        padding: 0;
        margin: 0;
        display: inline-block;
        vertical-align: top;
    }

        .part2-wrap ul.product-type-list > li {
            float: left;
        }

            .part2-wrap ul.product-type-list > li > a {
                color: #666;
                padding: 20px 80px 10px;
                display: block;
            }

                .part2-wrap ul.product-type-list > li > a > span {
                    font-size: 50px;
                    line-height: 55px;
                }
                /*.part2-wrap ul.product-type-list>li>a>span.icon-shouchi { font-size: 60px; }*/

                .part2-wrap ul.product-type-list > li > a > p {
                    color: #373d41;
                }

                .part2-wrap ul.product-type-list > li > a:hover > p,
                .part2-wrap ul.product-type-list > li.active > a > span,
                .part2-wrap ul.product-type-list > li.active > a > p {
                    color: #00c1de;
                }

.part2-product-wrap {
    background-color: #f5f5f6;
    position: relative;
    margin-left: -15px;
    margin-right: -15px;
}

.trigon {
    width: 0;
    height: 0;
    border-bottom: 8px solid #f5f5f6;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    margin-left: -10px;
    position: absolute;
    top: -8px;
}

ul.product-type-item {
    display: none;
    padding: 20px 100px;
}

    ul.product-type-item.active {
        display: block;
        padding: 20px 100px;
    }

.product-type-item > li {
    float: left;
    margin-right: 40px;
}

.product-type-item a {
    text-align: left;
    display: block;
    padding: 15px 20px;
    position: relative;
}

.product-type-item div {
    color: #373d41;
    font-size: 16px;
}

.product-type-item p {
    /*color: #9b9ea0;*/
    color: #737476;
    width: 300px;
    margin: 4px 0 0;
}

.product-type-item a > span {
    opacity: 0;
    font-size: 16px;
    line-height: 1;
    color: #373d41;
    font-weight: normal;
    position: absolute;
    right: 20px;
    top: 30px;
}

.product-type-item > li:hover {
    background-color: #fff;
    box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.15);
}

    .product-type-item > li:hover > a > span {
        opacity: 1;
    }

.trigon,
.product-type-item > li,
.product-type-item a > span {
    -webkit-transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1) 0s;
    -moz-transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1) 0s;
    -ms-transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1) 0s;
    -o-transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1) 0s;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1) 0s;
}

/*solution*/
.part3-wrap {
    text-align: center;
    overflow: hidden;
    background-color: #373d41;
}

    .part3-wrap > ul {
        margin: 0 auto;
        padding: 0;
        vertical-align: top;
    }

.solu-info,
.mask,
.solu-info h2,
.solu-info p,
.solu-info label,
.part2-wrap ul.product-type-list > li > a > p,
.part2-wrap ul.product-type-list > li > a > span {
    -webkit-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0s;
    -moz-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0s;
    -ms-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0s;
    -o-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0s;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0s;
}

@media (min-width: 768px) {
    #ser-wrap {
        overflow: hidden;
        padding: 0;
    }

    .part3-wrap > ul {
        display: table;
    }

        .part3-wrap > ul > li {
            display: table-cell;
        }
}

.top-item {
    display: block;
    background-color: #fff;
    border: 1px solid #c5d8db;
    margin-bottom: 20px;
    overflow: hidden;
}

.top-item-wrap {
    overflow: hidden;
    height: 0;
    padding-bottom: 60%;
}

    .top-item-wrap img {
        width: 100%;
        -webkit-transition: all 0.5s ease 0s;
        -moz-transition: all 0.5s ease 0s;
        -ms-transition: all 0.5s ease 0s;
        -o-transition: all 0.5s ease 0s;
        transition: all 0.5s ease 0s;
    }

.top-item:hover {
    box-shadow: rgba(0, 193, 222, 0.16) 0px 0px 25px;
}

    .top-item:hover img {
        transform: scale(1.1);
    }

.top-item h4 {
    margin: 0;
    padding: 20px 15px;
    color: #373d41;
    font-size: 16px;
    white-space: nowrap;
}

.list-lines {
    padding: 0 0 0 5px;
    margin: 0 0 50px;
    padding: 0 15px;
}

    .list-lines > li,
    .top-item h4 {
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .list-lines a {
        font-size: 14px;
        line-height: 26px;
        color: #373d41;
        white-space: nowrap;
        -webkit-transition: color 0.15s cubic-bezier(0.4, 0, 0.2, 1) 0s;
        -moz-transition: color 0.15s cubic-bezier(0.4, 0, 0.2, 1) 0s;
        -ms-transition: color 0.15s cubic-bezier(0.4, 0, 0.2, 1) 0s;
        -o-transition: color 0.15s cubic-bezier(0.4, 0, 0.2, 1) 0s;
        transition: color 0.15s cubic-bezier(0.4, 0, 0.2, 1) 0s;
    }

        .list-lines a:hover {
            color: #00c1de;
        }

@media (min-width: 768px) {
    .part4-wrap {
        margin: 0;
    }

        .part4-wrap .container-fluid {
            padding: 0 40px;
        }

            .part4-wrap .container-fluid > div {
                padding: 0 15px;
            }

    .top-item h4 {
        padding: 20px 30px;
        margin: 0;
    }

    .list-lines {
        padding: 0;
    }
}

/*map*/
#map-wrap {
    width: 100%;
    overflow: hidden;
}

.map-bg {
    position: relative;
    width: 1052px;
    margin: 0 auto;
}

    .map-bg > img {
        width: 100%;
    }

.point-area {
    height: 100px;
    width: 100px;
}

.area-name {
    left: 40px;
    top: 60px;
    font-size: 12px;
}

.point-area,
.area-name,
.point-area > .point {
    position: absolute;
}

    .point-area > .point {
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        margin: auto;
        height: 8px;
        width: 8px;
        background-color: #00cdec;
        border-radius: 50%;
    }

    .point-area > .circ1 {
        -webkit-animation: 4.5s ease-out 225ms normal none infinite running ripple;
        -moz-animation: 4.5s ease-out 225ms normal none infinite running ripple;
        -ms-animation: 4.5s ease-out 225ms normal none infinite running ripple;
        -o-animation: 4.5s ease-out 225ms normal none infinite running ripple;
        animation: 4.5s ease-out 225ms normal none infinite running ripple;
    }

    .point-area > .circ2 {
        -webkit-animation: 4.5s ease-out 1575ms normal none infinite running ripple;
        -moz-animation: 4.5s ease-out 1575ms normal none infinite running ripple;
        -ms-animation: 4.5s ease-out 1575ms normal none infinite running ripple;
        -o-animation: 4.5s ease-out 1575ms normal none infinite running ripple;
        animation: 4.5s ease-out 1575ms normal none infinite running ripple;
    }

    .point-area > .circ3 {
        -webkit-animation: 4.5s ease-out 2375ms normal none infinite running ripple;
        -moz-animation: 4.5s ease-out 2375ms normal none infinite running ripple;
        -ms-animation: 4.5s ease-out 2375ms normal none infinite running ripple;
        -o-animation: 4.5s ease-out 2375ms normal none infinite running ripple;
        animation: 4.5s ease-out 2375ms normal none infinite running ripple;
    }

    .point-area > .circ1,
    .point-area > .circ2,
    .point-area > .circ3,
    .point-area > .circ1-2,
    .point-area > .circ2-2,
    .point-area > .circ3-2 {
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        margin: auto;
        height: 100%;
        width: 100%;
        border: 2px solid #00cdec;
        border-radius: 50%;
        opacity: 0;
    }

@-webkit-keyframes ripple {
    0% {
        opacity: 0;
        -webkit-transform: scale(0.1);
    }

    5% {
        opacity: 1;
    }

    to {
        opacity: 0;
        -webkit-transform: scale(1);
    }
}

@-moz-keyframes ripple {
    0% {
        opacity: 0;
        -moz-transform: scale(0.1);
    }

    5% {
        opacity: 1;
    }

    to {
        opacity: 0;
        -moz-transform: scale(1);
    }
}

@-ms-keyframes ripple {
    0% {
        opacity: 0;
        -ms-transform: scale(0.1);
    }

    5% {
        opacity: 1;
    }

    to {
        opacity: 0;
        -ms-transform: scale(1);
    }
}

@-o-keyframes ripple {
    0% {
        opacity: 0;
        -o-transform: scale(0.1);
    }

    5% {
        opacity: 1;
    }

    to {
        opacity: 0;
        -o-transform: scale(1);
    }
}

@keyframes ripple {
    0% {
        opacity: 0;
        transform: scale(0.1);
    }

    5% {
        opacity: 1;
    }

    to {
        opacity: 0;
        transform: scale(1);
    }
}

.point-area > .circ1-2 {
    -webkit-animation: 5.5s ease-out 225ms normal none infinite running ripple2;
    -moz-animation: 5.5s ease-out 225ms normal none infinite running ripple2;
    -ms-animation: 5.5s ease-out 225ms normal none infinite running ripple2;
    -o-animation: 5.5s ease-out 225ms normal none infinite running ripple2;
    animation: 5.5s ease-out 225ms normal none infinite running ripple2;
}

.point-area > .circ2-2 {
    -webkit-animation: 5.5s ease-out 1575ms normal none infinite running ripple2;
    -moz-animation: 5.5s ease-out 1575ms normal none infinite running ripple2;
    -ms-animation: 5.5s ease-out 1575ms normal none infinite running ripple2;
    -o-animation: 5.5s ease-out 1575ms normal none infinite running ripple2;
    animation: 5.5s ease-out 1575ms normal none infinite running ripple2;
}

.point-area > .circ3-2 {
    -webkit-animation: 5.5s ease-out 2375ms normal none infinite running ripple2;
    -moz-animation: 5.5s ease-out 2375ms normal none infinite running ripple2;
    -ms-animation: 5.5s ease-out 2375ms normal none infinite running ripple2;
    -o-animation: 5.5s ease-out 2375ms normal none infinite running ripple2;
    animation: 5.5s ease-out 2375ms normal none infinite running ripple2;
}

@-webkit-keyframes ripple2 {
    0% {
        opacity: 0;
        -webkit-transform: scale(0.1);
    }

    5% {
        opacity: 1;
    }

    80% {
        opacity: 0;
        -webkit-transform: scale(1.5);
    }
}

@-moz-keyframes ripple2 {
    0% {
        opacity: 0;
        -moz-transform: scale(0.1);
    }

    5% {
        opacity: 1;
    }

    80% {
        opacity: 0;
        -moz-transform: scale(1.5);
    }
}

@-ms-keyframes ripple2 {
    0% {
        opacity: 0;
        -ms-transform: scale(0.1);
    }

    5% {
        opacity: 1;
    }

    80% {
        opacity: 0;
        -ms-transform: scale(1.5);
    }
}

@-o-keyframes ripple2 {
    0% {
        opacity: 0;
        -o-transform: scale(0.1);
    }

    5% {
        opacity: 1;
    }

    80% {
        opacity: 0;
        -o-transform: scale(1.5);
    }
}

@keyframes ripple2 {
    0% {
        opacity: 0;
        transform: scale(0.1);
    }

    5% {
        opacity: 1;
    }

    80% {
        opacity: 0;
        transform: scale(1.5);
    }
}

.section-container {
    padding-bottom: 10px;
    position: relative;
}

    .section-container::after {
        content: '';
        display: block;
        width: 100%;
        height: 10px;
        background-color: #fff;
        position: absolute;
        left: 0;
        bottom: 0;
    }

.footer-wrap {
    position: relative;
}

    .section-advantage.us::before,
    .footer-wrap::before,
    .section-global::before {
        content: '';
        display: block;
        width: 100%;
        height: 10px;
        background-color: #fff;
        position: absolute;
        top: 0;
        left: 0;
    }

.section-title {
    text-align: center;
    transform: translateY(50);
    opacity: 0;
}

    .section-title.faded {
        transition: all 0.5s ease-in-out;
        transform: translateY(0);
        opacity: 1;
    }

    .section-title h3 {
        font-weight: 900;
    }

.corporate-video-logo-wrap {
    background-image: url("/img/index/corporate_bg.jpg");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.corporate-video-logo-title {
    text-align: center;
}

.corporate-video-logo-title h3 {
    color: #333;
    margin-bottom: 6px;
    margin-top: 0;
}

.corporate-video-player-wrap {
    background-image: url("/img/index/corporate_center.jpg");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 600px;
    cursor: pointer;
}

.friend-logo-wrap {
    padding-top: 30px;
    padding-bottom: 60px;
    box-sizing: border-box;
    /*    background-image: url(/img/index/map_bg.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;*/
    background-color: #f5f5f7;
    text-align: center;
}

.friend-logo-title {
    text-align: center;
}

    .friend-logo-title h3 {
        color: #333;
        margin-bottom: 6px;
        margin-top: 0;
    }

    .friend-logo-title span {
        font-size: 12px;
        line-height: 1;
        color: rgba(255, 255, 255, 0.5);
    }

.friend-logo {
    background-color: #162546;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    padding: 4% 3% 0.5%;
}

.friend-logo-item {
    width: 25%;
    text-align: center;
    margin-bottom: 44px;
    transition: all 0.5s ease 0s;
}

    .friend-logo-item:hover {
        transform: scale(1.1);
    }

    .friend-logo-item img {
        text-align: center;
        max-width: 65%;
        margin-bottom: 4px;
        transform: translateY(30%);
        opacity: 0;
    }

    .friend-logo-item p {
        color: #d8d8d8;
        font-size: 12px;
        margin: 0;
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
        overflow: hidden;
        opacity: 0;
    }

.friend-logo.faded .friend-logo-item img {
    transition: all 0.5s ease-in-out 0s;
    transform: translateY(0);
    opacity: 1;
}

.friend-logo.faded .friend-logo-item p {
    transition: all 0.5s ease-in-out 0.3s;
    opacity: 1;
}

/*最新动态*/
.news-wrap {
    background-image: url("/img/index/news_bg.png");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding-top: 40px;
    padding-bottom: 60px;
}

.news-container {
    width: 100%;
    padding: 0 30px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-content: flex-start;
    gap: 10px;
}

.news-item {
    flex-grow: 1;
    background-color: var(--bgcolor);
    box-shadow: 2.052px 5.638px 43.35px 7.65px rgba(23, 23, 23, 0.22);
    padding: 24px;
    box-sizing: border-box;
    transform: translateY(10%);
    opacity: 0;
    display: flex;
    gap: 10px;
    justify-content: space-between;
}

    .news-item.faded {
        transition: all 0.5s ease-in-out 0s;
        transform: translateY(0);
        opacity: 1;
    }

    .news-item * {
        box-sizing: border-box;
    }

a.news-item {
    text-decoration: none;
    color: inherit;
    font-size: 16px;
}

.news-item-content > * {
    /*    width: 100%;
    margin-top: 0;
    margin-bottom: 1.3em;
    margin-right: auto;*/
    margin: 0 auto 0 0;
    padding: 0 20px;
}
.news-item-title-wrap h4 {
    margin: 0;
}

.news-item-title-wrap
 {
    display: -webkit-box; 
    -webkit-line-clamp: 2; 
    -webkit-box-orient: vertical;
    overflow: hidden; 
    text-overflow: ellipsis; 
}
.news-item-desc {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.news-img-wrap,
.news-item-content {
    flex-basis: 43%;
    flex-grow: 1;
}

.news-img-wrap {
    overflow: hidden;
}

    .news-img-wrap img {
        width: 100%;
        height: auto;
        background-size: cover;
        transition: all 0.5s ease 0s;
    }

    .news-img-wrap:hover img {
        transform: scale(1.1);
    }

.news-item-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 1.3vw;
    color: #000;
}

.news-item-title {
    font-size: 14px;
    font-weight: 500;
}

.news-item-time {
    font-size: 10px;
    line-height: 10px;
    color: #202020ad;
}

.news-item-desc {
    font-size: 12px;
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

@media (min-width: 768px) {

    .section-title h3 {
        font-size: 48px;
        font-weight: 900;
        margin: 0 auto 50px;
    }

    .news-wrap {
        background-image: url("/img/index/news_bg.png");
        padding: 130px var(--xbox-px);
        background-size: cover;
        background-repeat: no-repeat;
    }

    .news-img-wrap {
        box-shadow: 3px 3px 10px rgb(0 0 0 / 15%);
    }

        .news-img-wrap img {
            /*max-height: 180px;*/
            max-height: fit-content;
        }

    .news-title {
        margin-bottom: 2em;
    }

        .news-title h3 {
            font-size: 50px;
        }

        .news-title span {
            font-size: 24px;
            line-height: 24px;
        }

    .new-item {
    }

    .news-container {
        width: 100%;
        padding: 0;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-content: flex-start;
        gap: 10px;
    }

    .news-item {
        flex-basis: calc(50% - 5px);
        flex-grow: 0;
        background-color: var(--bgcolor);
        /*box-shadow: 2.052px 5.638px 43.35px 7.65px rgba(23, 23, 23, 0.22);*/
        padding: 24px;
        box-sizing: border-box;
        transform: translateY(10%);
        opacity: 0;
        display: flex;
        gap: 10px;
        justify-content: space-between;
    }

    .news-item-title {
        font-size: 1.2em;
        line-height: 1.1;
    }

    .news-item-time {
        font-size: 13px;
        line-height: 13px;
    }

  

    .news-item-desc {
        /*margin-top: 10px;
        font-size: 14px;*/
        font-size: 0.9em;
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
    }

}

.part5-wrap {
    padding-bottom: 30px;
}

@media (min-width: 768px) {
    .section-title {
        transform: translateY(50%);
        opacity: 0;
    }

        .section-title h3 {
            font-size: 48px;
            font-weight: 900;
            margin: 0 auto 50px;
        }

        .section-title.faded {
            transform: translateY(0);
            opacity: 1;
            transition: all 0.5s ease-in-out;
        }

    .global-content-items {
        height: 25.5vw;
    }

    .friend-logo {
        padding: 5% 3% 0.5%;
    }

    .friend-logo-item {
        width: 14.28571428571429%;
    }
}

@media (max-width: 1600px) {
    .corporate-video-player-wrap {
        height: 500px;
    }
}

@media (max-width: 1199px) {
        .section-container {
            padding: 100px var(--sbox-px) 80px;
        }

        .advantage-item-list {
            flex-wrap: wrap;
            padding: 30px 14%;
        }

        .section-advantage {
            padding: 0;
            background-image: none;
            background-color: #f5f5f7;
        }

        .advantage-title.section-title {
            width: 100%;
            padding-top: 15%;
            background-image: url(/img/index/adv_sect_mobile_bg.png);
            background-size: cover;
        }

        .title-wrap {
            width: 100%;
            height: auto;
            gap: 30px;
            font-weight: 700;
        }

        .advantage_item_shadow {
            display: none;
        }

        .section-advantage-item {
            width: 80%;
            display: flex;
            flex-direction: row;
        }

        .section-advantage-item-title {
            font-size: 24px;
            font-weight: 550;
            width: 45.6%;
            height: 100%;
            border-radius: 10px 0 0 10px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            gap: 30px;
            padding: 10% 3%;
            text-align: center;
        }

            .section-advantage-item-title.en {
                font-size: 1vw;
            }

            .section-advantage-item-title img {
                width: 35%;
            }


        .section-advantage-item-content {
            width: 54.4%;
            height: 100%;
            padding: 0;
            border-radius: 0 10px 10px 0;
            font-family: 'siyuanheiti-light';
        }

            .section-advantage-item-content img {
                height: 100%;
            }

            .section-advantage-item-content .title_text {
                width: 100%;
                top: 50%;
                left: 50%;
                transform: translate(-50%,-50%);
                padding: 0 14%;
                font-size: 14px;
                font-weight: 200;
                letter-spacing: 0.08em;
                line-height: 1.5;
            }

            .section-advantage-item-content.en .title_text {
                font-size: 1.2vw;
            }

        .news-container {
            justify-content: center;
            align-items: center;
            width: 100%;
            gap: 20px;
        }

        .news-item {
            flex-direction: column;
            flex-basis: auto;
            justify-content: center;
            gap: 20px;
        }

        .news-img-wrap {
            width: 100%;
            height: 100%;
        }

            .news-img-wrap img {
                width: 100%;
                max-height: fit-content;
                height: auto;
            }
    }

    @media (max-width: 767px) {

        .section-title {
            color: var(--title-white);
            text-align: center;
        }

            .section-title h3 {
                margin: 0 auto 30px;
                font-size: 2.5em;
                font-weight: 900;
            }

        .global-content-title h3:first-child {
            font-weight: 900;
        }

        .content-item-val {
            line-height: 1.2;
        }

            .content-item-val sub {
                color: #028be6;
            }

        .section-advantage-item-title img {
            width: 35%;
            height: auto;
        }

        .friend-logo-wrap {
            padding: 40px 30px;
        }

        .friend-logo {
            padding: 10% 3% 0.5%;
        }

        .friend-logo-item {
            width: 25%;
        }

        .news-container {
            gap: 25px;
        }

        .news-img-wrap img {
            margin-bottom: 30px;
        }

        .news-item {
            display: block;
            width: 100%;
            padding: 10px;
        }

        .global-content-title {
            padding: 50px 0 30px;
            margin: 0 auto;
            text-align: center;
            font-size: 35px;
            font-weight: 900;
        }

        .content-item-val {
            font-size: 40px;
            font-size: 10vw;
        }

        .content-item-val,
        .content-item-desc {
            color: #028be6;
        }

        .section-advantage {
            padding: 0;
            background-image: none;
            background-color: #f5f5f7;
        }

        .advantage-title.section-title {
            width: 100%;
            padding-top: 15%;
            background-image: url(/img/index/adv_sect_mobile_bg.png);
            background-size: cover;
        }

        .advantage_item_shadow {
            display: none;
        }

        .section-advantage-item {
            width: 100%;
            display: flex;
            flex-direction: row;
        }

        .advantage-item-list {
            padding: 30px 14%;
        }

        .section-advantage-item {
            width: 100%;
        }

        .section-advantage-item-title {
            font-size: 18px;
            font-weight: 550;
            width: 45.6%;
            height: 100%;
            border-radius: 10px 0 0 10px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            gap: 30px;
            padding: 10% 3%;
            text-align: center;
        }

            .section-advantage-item-title img {
                width: 35%;
            }

            .section-advantage-item-title.en {
                font-size: 2.5vw;
            }

        .section-advantage-item-content {
            width: 54.4%;
            height: 100%;
            padding: 0;
            border-radius: 0 10px 10px 0;
            font-family: 'siyuanheiti-light';
        }

            .section-advantage-item-content img {
                height: 100%;
            }

            .section-advantage-item-content .title_text {
                /*top: 30%;*/
                padding: 0 14%;
                font-size: 0.75em;
                font-weight: 200;
                line-height: 1.5;
            }

            .section-advantage-item-content.en .title_text {
                text-align: center;
                line-height: 1.1;
                padding: 0 10%;
                font-size: 1.8vw;
                top: 50%;
                left: 50%;
                transform: translate(-50%,-50%);
            }

        .corporate-video-logo-wrap {
            padding: 40px 30px;
        }

        .corporate-video-player-wrap {
            background-image: url("/img/index/corporate_center_mobile.jpg");
            background-position: center;
            background-size: cover;
            background-repeat: no-repeat;
            cursor: pointer;
            height: 233px;
        }
    }

    @media (min-width: 1200px) {
        .global-content-items {
            height: 350px;
        }

        .section-container {
            padding: 130px var(--mbox-px);
        }

        .section-advantage {
            padding-bottom: 45px;
        }

        .friend-logo-wrap {
            padding: 100px var(--mbox-px);
        }

        .news-item {
            max-width: calc(50% - 5px);
        }

        .news-item-content {
            min-width: calc(55% - 10px);
            max-width: calc(55% - 10px);
        }
    }

    @media (min-width: 1369px) {
        .section-container {
            padding: 130px var(--xbox-px);
        }

        .section-advantage {
            padding-bottom: 45px;
        }

        .global-content-items {
            height: 480px;
        }

        .friend-logo-wrap {
            padding: 130px var(--xbox-px);
        }

        .friend-logo-title span {
            font-size: 24px;
        }

        .friend-logo {
            margin: 0 auto;
            max-width: var(--xbox-width);
        }

        .friend-logo-item {
            width: 10%;
            text-align: center;
            margin-bottom: 44px;
            transition: all 0.5s ease 0s;
        }

            .friend-logo-item:hover {
                transform: scale(1.1);
            }

            .friend-logo-item img {
                max-width: 100px;
                max-height: 100px;
                width: 65%;
                height: auto;
                margin-bottom: 12px;
            }

            .friend-logo-item p {
                color: #d8d8d8;
                font-size: 16px;
                margin: 0;
                max-width: none;
            }
    }


    @media (min-width: 1200px) and (max-width: 1599px) {
        .news-item-title {
            font-size: 1.2vw;
        }

        .news-item-desc {
            font-size: 0.98vw;
        }

        .news-item-content.en .news-item-title {
            font-size: 1vw;
        }

        .news-item-content.en .news-item-desc {
            font-size: 0.7vw;
        }
    }
