* {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

body,html {
    overflow-x: hidden
}

@keyframes slideInRight {
    0% {
        opacity: 0;
        transform: translate(50px)
    }

    to {
        opacity: 1;
        transform: translate(0)
    }
}

.introduce {
    align-items: center;
    background: linear-gradient(180deg,#cfe8f5,#e8f4f9);
    display: flex;
    flex-direction: column;
    height: 100vh;
    justify-content: center;
    width: 100%;
    height: calc(100vh - 100px);
}

.introduce .content {
    display: flex;
    height: 50%;
    justify-content: space-between;
    width: 80%
}

.introduce .content .left {
    animation: slideInRight .8s ease .2s forwards;
    background-position: 50%;
    background-size: cover;
    border-radius: 15px;
    cursor: pointer;
    height: 100%;
    opacity: 0;
    position: relative;
    transform: translate(50px);
    transition: all .5s ease;
    width: 48%;
    will-change: transform,opacity;
    margin-top: 20px;
}

.introduce .content .left .play-control {
    align-items: center;
    display: flex;
    height: 100%;
    justify-content: center;
    left: 0;
    position: absolute;
    top: 0;
    transition: all .5s ease;
    width: 100%;
    z-index: 10
}

.introduce .content .left .play-icon {
    cursor: pointer;
    transform: scale(1);
    transition: transform .5s ease-in-out
}

.introduce .content .left .play-control:hover .play-icon {
    transform: scale(1.15)
}

.introduce .content .right {
    animation: slideInRight .8s ease .4s forwards;
    height: 100%;
    line-height: 1.8;
    opacity: 0;
    padding: 10px 20px;
    transform: translate(50px);
    width: 50%;
    border: 1px dashed #0d438c;
    /* padding: 20px; */
    border-radius: 20px;
    margin-top: 20px;
}

.introduce .content .right h2 {
    display: -webkit-box;
    font-size: 32px;
    font-weight: 700;
    -webkit-line-clamp: 2;
    /*margin-bottom: 20px;*/
    -webkit-box-orient: vertical;
    overflow: hidden
}

.introduce .content .right h3 {
    color: #0d438c;
    font-size: 24px;
    font-weight: 700;
}

.introduce .content .right p {
    color: #646464;
    display: -webkit-box;
    font-size: 16px;
    -webkit-line-clamp: 8;
    line-height: 2.2;
    text-indent: 2em;
    -webkit-box-orient: vertical;
    overflow: hidden
}

.introduce .content-bottom {
    animation: slideInRight .8s ease .6s forwards;
    height: 50%;
    opacity: 0;
    padding: 50px 0;
    transform: translate(50px);
    width: 80%
}

.introduce .content-bottom h1 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
    text-indent: 20px
}

.introduce .content-bottom h2 {
    color: #0d438c;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    text-indent: 20px
}

.introduce .content-bottom p {
    color: #646464;
    display: -webkit-box;
    font-size: 16px;
    -webkit-line-clamp: 5;
    line-height: 2.2;
    text-indent: 20px;
    -webkit-box-orient: vertical;
    overflow: hidden
}

.video-modal {
    align-items: center;
    background-color: #000000e6;
    box-sizing: border-box;
    display: flex;
    height: 100vh;
    justify-content: center;
    left: 0;
    padding: 20px;
    position: fixed;
    top: 0;
    width: 100vw;
    z-index: 9999
}

.video-modal .modal-inner {
    max-height: 90vh;
    max-width: 1200px;
    position: relative;
    width: 100%
}

.video-modal .modal-close {
    align-items: center;
    background-color: #fff3;
    border: none;
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    display: flex;
    font-size: 24px;
    height: 40px;
    justify-content: center;
    position: absolute;
    right: 0;
    top: -45px;
    transition: background-color .2s ease;
    width: 40px;
    z-index: 10
}

.video-modal .modal-close:hover {
    background-color: #ffffff80
}

.video-modal .modal-video-wrap {
    align-items: center;
    display: flex;
    height: 100%;
    justify-content: center;
    max-height: 85vh;
    width: 100%
}

.video-modal .modal-video {
    background-color: #000;
    height: auto;
    max-height: 85vh;
    max-width: 100%;
    -o-object-fit: contain;
    object-fit: contain;
    width: 100%
}

@media(max-width:1440px) {
    .introduce {
        height: auto;
        min-height: 100vh;
        padding: 100px 0 50px
    }

    .introduce .content {
        height: auto;
        margin-bottom: 40px;
        width: 90%
    }

    .introduce .content .left {
        height: 400px
    }

    .introduce .content .right {
        padding: 20px 40px
    }

    .introduce .content .right h2 {
        font-size: 26px
    }

    .introduce .content .right h3 {
        font-size: 20px
    }

    .introduce .content .right p {
        font-size: 15px;
        -webkit-line-clamp: 12
    }

    .introduce .content-bottom {
        height: auto;
        padding: 0;
        width: 90%
    }

    .introduce .content-bottom h1 {
        font-size: 26px
    }

    .introduce .content-bottom h2 {
        font-size: 20px
    }

    .introduce .content-bottom p {
        font-size: 15px;
        -webkit-line-clamp: 10
    }
}

@media(max-width:768px) {
    .introduce {
        height: auto!important;
        padding: 20px 0 30px!important
    }

    .introduce .content {
        flex-direction: column;
        gap: 20px;
        height: auto!important;
        margin: 50px auto 0!important;
        padding: 0 15px!important;
        width: 100%!important
    }

    .introduce .content .left {
        animation: slideInRight .6s ease .2s forwards!important;
        border-radius: 10px!important;
        height: 220px!important;
        width: 100%!important;
        margin-top: 0;
    }

    .introduce .content .left .play-icon svg {
        height: 40px!important;
        width: 40px!important
    }

    .introduce .content .right {
        animation: slideInRight .6s ease .3s forwards!important;
        background: #fff;
        border-radius: 10px;
        box-shadow: 0 2px 10px #0000000d;
        height: auto!important;
        padding: 20px 15px!important;
        width: 100%!important
    }

    .introduce .content .right h2 {
        color: #333;
        font-size: 22px!important;
        -webkit-line-clamp: none!important;
        margin-bottom: 10px!important;
        text-align: center
    }

    .introduce .content .right h3 {
        font-size: 16px!important;
        margin-bottom: 15px!important;
        text-align: center;
        word-break: break-word
    }

    .introduce .content .right p {
        font-size: 14px!important;
        -webkit-line-clamp: none!important;
        line-height: 1.8!important;
        text-indent: 2em
    }

    .introduce .content-bottom {
        animation: slideInRight .6s ease .4s forwards!important;
        background: #fff;
        border-radius: 10px;
        box-shadow: 0 2px 10px #0000000d;
        display: block!important;
        height: auto!important;
        margin-top: 20px;
        padding: 20px 15px!important;
        width: 92%!important
    }

    .introduce .content-bottom h1 {
        font-size: 22px!important;
        margin-bottom: 5px!important;
        text-align: center;
        text-indent: 0!important
    }

    .introduce .content-bottom h2 {
        color: #0d438c;
        font-size: 14px!important;
        margin-bottom: 15px!important;
        text-align: center;
        text-indent: 0!important
    }

    .introduce .content-bottom p {
        color: #666;
        font-size: 14px!important;
        -webkit-line-clamp: none!important;
        line-height: 1.8!important;
        text-align: justify;
        text-indent: 2em!important
    }

    .video-modal {
        padding: 10px!important
    }

    .video-modal .modal-inner {
        max-width: 100%!important
    }

    .video-modal .modal-close {
        font-size: 20px!important;
        height: 35px!important;
        top: -35px!important;
        width: 35px!important
    }

    .video-modal .modal-video,.video-modal .modal-video-wrap {
        max-height: 70vh!important
    }
}

.company-map[data-v-540a2936] {
    background: linear-gradient(180deg,#cfe8f5,#e8f4f9);
    box-sizing: border-box;
    height: 100vh;
    overflow: hidden;
    position: relative;
    width: 100%
}

.content-wrapper[data-v-540a2936] {
    height: 100%;
    position: relative;
    width: 100%
}

.leader-title-wrap[data-v-540a2936] {
    left: 50%;
    position: absolute;
    text-align: center;
    text-shadow: 0 2px 4px hsla(0,0%,100%,.8);
    top: 50px;
    transform: translate(-50%);
    z-index: 10
}

.leader-title-wrap .leader-title[data-v-540a2936] {
    color: #333;
    font-size: 36px;
    font-weight: 700;
    letter-spacing: 2px;
    margin: 0 0 15px
}

.leader-title-wrap .title-line[data-v-540a2936] {
    background-color: #0d438c;
    border-radius: 2px;
    height: 4px;
    margin: 0 auto;
    width: 100px
}

.map-container[data-v-540a2936] {
    align-items: center;
    display: flex;
    height: 100%;
    justify-content: center;
    left: 0;
    padding: 0;
    position: absolute;
    top: 0;
    width: 100%
}

.map-container .map-img[data-v-540a2936] {
    box-sizing: border-box;
    display: block;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
    padding-top: 60px;
    width: 100%
}

.map-stats[data-v-540a2936] {
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    background-color: #ffffffd9;
    border-radius: 12px;
    bottom: 8%;
    box-shadow: 0 8px 32px #00000014;
    display: flex;
    gap: 40px;
    left: 5%;
    padding: 20px 40px;
    position: absolute;
    z-index: 10
}

.map-stats .stat-item[data-v-540a2936] {
    align-items: center;
    display: flex;
    flex-direction: column
}

.map-stats .stat-item .stat-num[data-v-540a2936] {
    color: #0d438c;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.2
}

.map-stats .stat-item .stat-text[data-v-540a2936] {
    color: #64748b;
    font-size: 14px;
    margin-top: 5px
}

@media(max-width:1366px) {
    .map-stats[data-v-540a2936] {
        bottom: 5%;
        gap: 20px;
        padding: 15px 30px
    }

    .map-stats .stat-item .stat-num[data-v-540a2936] {
        font-size: 24px
    }
}

@media(max-width:768px) {
    .company-map[data-v-540a2936] {
        height: auto!important;
        padding: 40px 0
    }

    .content-wrapper[data-v-540a2936] {
        align-items: center;
        display: flex;
        flex-direction: column
    }

    .leader-title-wrap[data-v-540a2936] {
        left: auto;
        margin-bottom: 20px;
        position: relative;
        text-shadow: none;
        top: auto;
        transform: none
    }

    .leader-title-wrap .leader-title[data-v-540a2936] {
        font-size: 26px;
        margin-bottom: 10px
    }

    .leader-title-wrap .title-line[data-v-540a2936] {
        height: 3px;
        width: 60px
    }

    .map-container[data-v-540a2936] {
        height: 300px;
        margin-bottom: 20px;
        padding: 0 10px;
        position: relative;
        width: 100%
    }

    .map-container .map-img[data-v-540a2936] {
        padding-top: 0
    }

    .map-stats[data-v-540a2936] {
        background: transparent;
        box-shadow: none;
        box-sizing: border-box;
        display: grid;
        gap: 10px;
        grid-template-columns: repeat(3,1fr);
        inset: auto auto auto 0;
        padding: 0 15px;
        position: relative;
        width: 100%
    }

    .map-stats .stat-item[data-v-540a2936] {
        background: #fff9;
        border-radius: 8px;
        padding: 15px 5px
    }

    .map-stats .stat-item .stat-num[data-v-540a2936] {
        font-size: 20px;
        margin-bottom: 5px
    }

    .map-stats .stat-item .stat-text[data-v-540a2936] {
        font-size: 12px;
        white-space: nowrap
    }
}[data-v-2f626e6e] {
     box-sizing: border-box;
     margin: 0;
     padding: 0
 }

.leader-container[data-v-2f626e6e] {
    align-items: center;
    background: linear-gradient(180deg,#cfe8f5,#e8f4f9);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    padding: 20px 0
}

.leader-title-wrap[data-v-2f626e6e] {
    margin: 0 auto;
    padding: 30px 0;
    text-align: center;
    width: 100%
}

.leader-title-wrap .leader-title[data-v-2f626e6e] {
    color: #333;
    font-size: 40px;
    font-weight: 700;
    letter-spacing: 2px;
    margin: 0 0 15px
}

.leader-title-wrap .title-line[data-v-2f626e6e] {
    background-color: #0d438c;
    border-radius: 2px;
    height: 4px;
    margin: 0 auto;
    width: 100px
}

.leaders-wrapper[data-v-2f626e6e] {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
    margin-bottom: 40px;
    max-width: 1800px;
    padding: 0 20px;
    width: 100%
}

.card[data-v-2f626e6e] {
    border-radius: 15px;
    box-shadow: 0 10px 20px #0000004d;
    cursor: pointer;
    height: 470px;
    overflow: hidden;
    position: relative;
    transition: transform .3s ease,box-shadow .3s ease;
    width: 370px
}

.card[data-v-2f626e6e]:hover {
    box-shadow: 0 25px 50px #0006;
    transform: translateY(-5px)
}

.card .card-image[data-v-2f626e6e] {
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
    width: 100%
}

.card .card-info-default[data-v-2f626e6e] {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    background: #0000004d;
    border-top: 1px solid hsla(0,0%,100%,.1);
    bottom: 0;
    color: #fff;
    left: 0;
    padding: 20px 25px;
    position: absolute;
    transition: opacity .4s ease,transform .4s ease;
    width: 100%;
    z-index: 1
}

.card .card-info-default h2[data-v-2f626e6e] {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 5px;
    text-shadow: 0 2px 4px rgba(0,0,0,.3)
}

.card .card-info-default p[data-v-2f626e6e] {
    color: #fffc;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase
}

.card .details-panel[data-v-2f626e6e] {
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    background: #ffffffd9;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: center;
    left: 0;
    opacity: 0;
    padding: 40px 30px;
    position: absolute;
    top: 0;
    transform: translateY(20px);
    transition: all .5s ease-in-out;
    width: 100%;
    z-index: 2
}

.card .details-panel h3[data-v-2f626e6e] {
    color: #1e3c72;
    font-size: 26px;
    margin-bottom: 5px
}

.card .details-panel span[data-v-2f626e6e] {
    border-bottom: 2px solid #1e3c72;
    color: #555;
    display: block;
    font-size: 14px;
    letter-spacing: 1px;
    margin-bottom: 25px;
    padding-bottom: 10px;
    text-transform: uppercase;
    width: 100px
}

.card .details-panel p[data-v-2f626e6e] {
    color: #333;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: justify;
    width: 100%
}

.card:hover .card-info-default[data-v-2f626e6e] {
    opacity: 0;
    transform: translateY(20px)
}

.card:hover .details-panel[data-v-2f626e6e] {
    opacity: 1;
    transform: translateY(0)
}

@media(max-width:1440px) {
    .leaders-wrapper[data-v-2f626e6e] {
        gap: 30px;
        max-width: 1200px
    }

    .card[data-v-2f626e6e] {
        height: 400px;
        width: 300px
    }

    .card .details-panel[data-v-2f626e6e] {
        padding: 30px 20px
    }

    .card .details-panel h3[data-v-2f626e6e] {
        font-size: 22px
    }

    .card .details-panel p[data-v-2f626e6e] {
        font-size: 14px
    }
}

@media(max-width:1024px) {
    .leaders-wrapper[data-v-2f626e6e] {
        gap: 20px
    }

    .card[data-v-2f626e6e] {
        height: 380px;
        width: 45%
    }
}

@media(max-width:768px) {
    .leader-container[data-v-2f626e6e] {
        display: block;
        padding: 20px 10px
    }

    .leader-title-wrap[data-v-2f626e6e] {
        padding: 20px 0
    }

    .leader-title-wrap .leader-title[data-v-2f626e6e] {
        font-size: 28px
    }

    .leader-title-wrap .title-line[data-v-2f626e6e] {
        height: 3px;
        width: 60px
    }

    .leaders-wrapper[data-v-2f626e6e] {
        display: grid;
        gap: 10px;
        grid-template-columns: 1fr 1fr;
        margin-bottom: 20px;
        padding: 0
    }

    .card[data-v-2f626e6e] {
        border-radius: 8px;
        height: 280px;
        margin: 0;
        max-width: none;
        width: 100%
    }

    .card .card-info-default[data-v-2f626e6e] {
        padding: 10px
    }

    .card .card-info-default h2[data-v-2f626e6e] {
        font-size: 16px;
        margin-bottom: 2px
    }

    .card .card-info-default p[data-v-2f626e6e] {
        font-size: 12px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap
    }

    .card .details-panel[data-v-2f626e6e] {
        padding: 15px
    }

    .card .details-panel h3[data-v-2f626e6e] {
        font-size: 18px;
        margin-bottom: 5px
    }

    .card .details-panel span[data-v-2f626e6e] {
        font-size: 12px;
        margin-bottom: 10px;
        width: 80px
    }

    .card .details-panel p[data-v-2f626e6e] {
        font-size: 12px;
        -webkit-line-clamp: 6;
        line-height: 1.4
    }

    .card:active .details-panel[data-v-2f626e6e],.card:focus .details-panel[data-v-2f626e6e] {
        opacity: 1;
        transform: translateY(0)
    }

    .card:active .card-info-default[data-v-2f626e6e],.card:focus .card-info-default[data-v-2f626e6e] {
        opacity: 0
    }
}

*,:after,:before {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

.page-wrapper[data-v-c3b3c2fb] {
    background-color: #f9fbfd;
    background: linear-gradient(180deg,#cfe8f5,#e8f4f9);
    color: #2c3e50;
    line-height: 1.6;
    overflow-x: hidden;
    padding-bottom: 50px;
    padding-top: 20px
}

.history-title-wrap[data-v-c3b3c2fb] {
    margin: 0 auto;
    padding: 30px 0;
    text-align: center;
    width: 100%
}

.history-title-wrap .history-title[data-v-c3b3c2fb] {
    color: #333;
    font-size: 40px;
    font-weight: 700;
    letter-spacing: 2px;
    margin: 0 0 15px
}

.history-title-wrap .title-line[data-v-c3b3c2fb] {
    background-color: #0d438c;
    border-radius: 2px;
    height: 4px;
    margin: 0 auto;
    width: 100px
}

.wave-bg[data-v-c3b3c2fb] {
    height: 100%;
    left: 0;
    pointer-events: none;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 0
}

.wave-bg .wave-path-dashed[data-v-c3b3c2fb] {
    fill: none;
    opacity: .6;
    stroke: #1670e9;
    stroke-dasharray: 10 5;
    stroke-linecap: round;
    stroke-width: 3
}

.wave-bg .wave-path-shadow[data-v-c3b3c2fb] {
    fill: none;
    opacity: .3;
    stroke: #0d438c;
    stroke-width: 1;
    transform: translateY(4px)
}

.timeline-container[data-v-c3b3c2fb] {
    justify-content: space-around;
    margin: 0 auto;
    min-height: 660px;
    width: 95%
}

.timeline-container[data-v-c3b3c2fb],.timeline-item[data-v-c3b3c2fb] {
    align-items: center;
    display: flex;
    position: relative
}

.timeline-item[data-v-c3b3c2fb] {
    flex-direction: column;
    width: 20%;
    z-index: 2
}

.timeline-item[data-v-c3b3c2fb]:nth-child(odd) {
    transform: translateY(120px)
}

.timeline-item:nth-child(odd) .content-card[data-v-c3b3c2fb] {
    margin-top: 30px
}

.timeline-item[data-v-c3b3c2fb]:nth-child(2n) {
    flex-direction: column-reverse;
    transform: translateY(-120px)
}

.timeline-item:nth-child(2n) .content-card[data-v-c3b3c2fb] {
    margin-bottom: 30px
}

.timeline-item:hover .connector-dot[data-v-c3b3c2fb] {
    background: #fff;
    border-color: #0d438c;
    transform: scale(1.3)
}

.timeline-item:hover .content-card[data-v-c3b3c2fb] {
    box-shadow: 0 15px 40px #0d438c33;
    transform: translateY(-10px)
}

.connector-dot[data-v-c3b3c2fb] {
    background: #0d438c;
    border: 4px solid #fff;
    border-radius: 50%;
    box-shadow: 0 0 0 4px #0d438c;
    flex-shrink: 0;
    height: 24px;
    transition: transform .3s ease;
    width: 24px;
    z-index: 3
}

.content-card[data-v-c3b3c2fb] {
    background: #fff;
    border-radius: 8px;
    border-top: 5px solid #0d438c;
    box-shadow: 0 10px 30px #00000014;
    padding: 30px;
    position: relative;
    text-align: left;
    transition: all .3s ease;
    width: 100%
}

.phase-title[data-v-c3b3c2fb] {
    color: #0d438c;
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 5px
}

.phase-year[data-v-c3b3c2fb] {
    background: #eee;
    border-radius: 20px;
    color: #888;
    display: inline-block;
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 15px;
    padding: 2px 10px
}

.slogan[data-v-c3b3c2fb] {
    border-left: 4px solid #0d438c;
    color: #333;
    display: block;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    padding-left: 10px
}

.description[data-v-c3b3c2fb] {
    color: #5d6d7e;
    font-size: 1rem;
    line-height: 1.8;
    text-align: justify
}

@media(max-width:1024px) {
    .page-wrapper[data-v-c3b3c2fb] {
        padding-bottom: 10px;
        padding-top: 10px
    }

    .history-title-wrap[data-v-c3b3c2fb] {
        padding: 15px 0
    }

    .history-title-wrap .history-title[data-v-c3b3c2fb] {
        font-size: 26px
    }

    .history-title-wrap .title-line[data-v-c3b3c2fb] {
        height: 3px;
        width: 60px
    }

    .timeline-container[data-v-c3b3c2fb] {
        flex-direction: column;
        justify-content: flex-start;
        min-height: auto;
        padding: 0 20px;
        width: 100%
    }

    .timeline-container[data-v-c3b3c2fb]:before {
        background: #dcdcdc;
        bottom: 0;
        content: "";
        left: 29px;
        position: absolute;
        top: 10px;
        width: 2px;
        z-index: 0
    }

    .wave-bg[data-v-c3b3c2fb] {
        display: none
    }

    .timeline-item[data-v-c3b3c2fb] {
        align-items: flex-start;
        flex-direction: row!important;
        margin-bottom: 25px;
        transform: none!important;
        width: 100%
    }

    .timeline-item[data-v-c3b3c2fb]:nth-child(2n),.timeline-item[data-v-c3b3c2fb]:nth-child(odd) {
        transform: none
    }

    .timeline-item:nth-child(2n) .content-card[data-v-c3b3c2fb],.timeline-item:nth-child(odd) .content-card[data-v-c3b3c2fb] {
        margin: 0!important
    }

    .timeline-item:hover .connector-dot[data-v-c3b3c2fb] {
        transform: none
    }

    .timeline-item:hover .content-card[data-v-c3b3c2fb] {
        box-shadow: 0 5px 15px #0000000d;
        transform: none
    }

    .timeline-item .content-card[data-v-c3b3c2fb] {
        border-left: 3px solid #0d438c;
        border-radius: 6px;
        border-top: none;
        box-shadow: 0 4px 12px #0000000d;
        padding: 15px;
        width: 100%
    }

    .connector-dot[data-v-c3b3c2fb] {
        border-width: 3px;
        box-shadow: 0 0 0 2px #0d438c;
        height: 16px;
        margin-left: 12px;
        margin-right: 15px;
        margin-top: 5px;
        min-width: 16px;
        width: 16px
    }

    .card-header[data-v-c3b3c2fb] {
        align-items: center;
        display: flex;
        flex-wrap: wrap;
        gap: 5px;
        justify-content: space-between;
        margin-bottom: 8px
    }

    .phase-title[data-v-c3b3c2fb] {
        font-size: 18px;
        margin-bottom: 0
    }

    .phase-year[data-v-c3b3c2fb] {
        background: #f0f2f5;
        font-size: 12px;
        margin-bottom: 0;
        padding: 1px 8px
    }

    .slogan[data-v-c3b3c2fb] {
        border-left-width: 3px;
        color: #444;
        font-size: 14px;
        margin-bottom: 8px;
        padding-left: 8px
    }

    .description[data-v-c3b3c2fb] {
        color: #666;
        font-size: 13px;
        line-height: 1.5;
        text-align: left
    }
}[data-v-57053065] {
     box-sizing: border-box;
     margin: 0;
     padding: 0
 }

.qualification-page[data-v-57053065] {
    background: linear-gradient(180deg,#cfe8f5,#e8f4f9);
    margin: 0 auto;
    min-height: 100vh;
    padding: 50px 0 0;
    width: 100%
}

.qualification-page .qualification-header[data-v-57053065] {
    align-items: center;
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    padding-bottom: 15px
}

.qualification-page .qualification-header .title-group[data-v-57053065] {
    text-align: center;
    width: 100%
}

.qualification-page .qualification-header .title-group .main-title[data-v-57053065] {
    color: #333;
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 15px
}

.qualification-page .qualification-header .title-group .title-line[data-v-57053065] {
    background-color: #0d438c;
    border-radius: 2px;
    height: 5px;
    margin: 0 auto;
    width: 100px
}

.qualification-page .content[data-v-57053065] {
    width: 100%
}

.qualification-page .content .row-group[data-v-57053065] {
    margin-bottom: 50px;
    width: 100%
}

.qualification-page .content .imgcontent[data-v-57053065] {
    align-items: flex-end;
    display: flex;
    gap: 30px;
    justify-content: space-between;
    margin: 20px auto 0;
    max-width: 1900px;
    width: 85%
}

.qualification-page .content .imgcontent .imgcontent_img[data-v-57053065] {
    border-radius: 2px;
    box-shadow: 10px 0 15px #00000080;
    cursor: pointer;
    flex: 1;
    height: auto;
    margin-bottom: 0;
    max-width: 25%;
    position: relative;
    z-index: 2
}

.qualification-page .content .imgcontent .imgcontent_img img[data-v-57053065] {
    display: block;
    height: auto;
    -o-object-fit: contain;
    object-fit: contain;
    width: 100%
}

.qualification-page .content .imgcontent .imgcontent_img.placeholder[data-v-57053065] {
    background: transparent;
    box-shadow: none;
    cursor: default;
    visibility: hidden
}

.qualification-page .content .imgcontent_line[data-v-57053065] {
    background-color: #f5f5f5;
    box-shadow: 0 5px 15px #00000080;
    height: 20px;
    position: relative;
    width: 100%;
    z-index: 1
}

@media(max-width:768px) {
    .qualification-page[data-v-57053065] {
        background: #e8f4f9;
        min-height: auto
    }

    .qualification-page .qualification-header[data-v-57053065] {
        margin-bottom: 0;
        padding-bottom: 5px
    }

    .qualification-page .qualification-header .title-group .main-title[data-v-57053065] {
        font-size: 26px;
        margin-bottom: 10px
    }

    .qualification-page .qualification-header .title-group .title-line[data-v-57053065] {
        height: 3px;
        width: 60px
    }

    .qualification-page .content .row-group[data-v-57053065] {
        margin-bottom: 30px
    }

    .qualification-page .content .imgcontent[data-v-57053065] {
        gap: 10px;
        width: 85%
    }

    .qualification-page .content .imgcontent .imgcontent_img[data-v-57053065] {
        box-shadow: 5px 0 10px #0000004d;
        max-width: 33.33%
    }

    .qualification-page .content .imgcontent_line[data-v-57053065] {
        height: 15px;
        margin-top: -1px;
        width: 100%
    }
}

.img-mask[data-v-57053065] {
    align-items: center;
    background-color: #000000d9;
    display: flex;
    height: 100vh;
    justify-content: center;
    left: 0;
    padding: 20px;
    position: fixed;
    top: 0;
    width: 100vw;
    z-index: 9999
}

.img-mask .mask-close[data-v-57053065] {
    color: #fff;
    cursor: pointer;
    font-size: 36px;
    position: absolute;
    right: 30px;
    top: 20px;
    transition: color .2s
}

.img-mask .mask-close[data-v-57053065]:hover {
    color: #ccc
}

.img-mask .mask-big-img[data-v-57053065] {
    align-items: center;
    display: flex;
    justify-content: center;
    margin: 0 auto;
    max-height: 60%;
    max-width: 70%
}

.img-mask .mask-big-img img[data-v-57053065] {
    max-height: 60%;
    max-width: 60%;
    -o-object-fit: contain;
    object-fit: contain
}

@media(max-width:768px) {
    .img-mask .mask-close[data-v-57053065] {
        font-size: 28px;
        right: 20px;
        top: 15px
    }

    .img-mask .mask-big-img[data-v-57053065] {
        max-height: 100%;
        max-width: 100%
    }

    .img-mask .mask-big-img img[data-v-57053065] {
        max-height: 80%;
        max-width: 80%
    }
}[data-v-7ae9b4b2] {
     box-sizing: border-box;
     margin: 0;
     padding: 0
 }

.company-page[data-v-7ae9b4b2] {
    min-height: 100vh;
    overflow-x: hidden;
    width: 100%
}

.company-certificates[data-v-7ae9b4b2],.company-history[data-v-7ae9b4b2],.company-intro[data-v-7ae9b4b2],.company-leader[data-v-7ae9b4b2] {
    box-sizing: border-box;
    width: 100%;
}

@media(min-width:768px) {
    .company-intro[data-v-7ae9b4b2]{
        margin-top: 100px;

    }
}

@media(max-width:768px) {
    .company-certificates[data-v-7ae9b4b2],.company-history[data-v-7ae9b4b2],.company-intro[data-v-7ae9b4b2],.company-leader[data-v-7ae9b4b2],.company-map[data-v-7ae9b4b2] {
        height: auto!important;
        scroll-margin-top: 60px
    }
}

[data-v-512ce3fa] {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}
{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation
}

.header {
    height: 100px;
    left: 0;
    overflow: visible;
    position: fixed;
    top: 0;
    transition: background-color .3s ease, box-shadow .3s ease;
    width: 100%;
    z-index: 999
}

.header.header-home {
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    background-image: linear-gradient(180deg, #dbdbdbb3, #fff3)
}

.header.header-home .nav-item:before {
    color: #000000bf
}

.header.header-home .nav-item:after {
    color: #0d438c
}

.header.header-other {
    background-color: #fff;
    box-shadow: 0 2px 10px #0000001a
}

.header.header-other .nav-item:before {
    color: #000000bf
}

.header.header-other .nav-item:after {
    color: #0d438c
}

.header .header-content {
    align-items: center;
    display: flex;
    height: 100%;
    justify-content: space-between;
    margin: 0 auto;
    max-width: 85%;
    padding: 0 40px;
    position: relative;
    width: 100%
}

.header .header-content .logo {
    align-items: center;
    cursor: pointer;
    display: flex;
    flex: 0 0 auto;
    height: 100%;
    justify-content: flex-start;
    margin-right: 40px;
    max-width: 250px;
    overflow: hidden;
    z-index: 101
}

.header .header-content .logo a {
    align-items: center;
    display: flex;
    height: 100%
}

.header .header-content .logo .logo-image {
    display: block;
    height: auto;
    max-height: 60px;
    max-width: 100%;
    -o-object-fit: contain;
    object-fit: contain;
    width: auto
}

.header .header-content .hamburger {
    cursor: pointer;
    display: none;
    flex-direction: column;
    height: 18px;
    justify-content: space-between;
    position: relative;
    width: 24px;
    z-index: 101
}

.header .header-content .hamburger span {
    background: #333;
    border-radius: 3px;
    display: block;
    height: 2px;
    left: 0;
    position: absolute;
    transition: all .3s ease;
    width: 100%
}

.header .header-content .hamburger span:first-child {
    top: 0
}

.header .header-content .hamburger span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%)
}

.header .header-content .hamburger span:nth-child(3) {
    bottom: 0
}

.header .header-content .hamburger.hamburger-active span:first-child {
    top: 50%;
    transform: translateY(-50%) rotate(45deg)
}

.header .header-content .hamburger.hamburger-active span:nth-child(2) {
    opacity: 0
}

.header .header-content .hamburger.hamburger-active span:nth-child(3) {
    bottom: 50%;
    transform: translateY(50%) rotate(-45deg)
}

.header .header-content .nav {
    align-items: center;
    display: flex;
    flex: 1;
    font-size: 19px;
    gap: 2vw;
    height: 100%;
    justify-content: flex-end;
    z-index: 9
}

.header .header-content .nav .nav-item {
    align-items: center;
    cursor: pointer;
    display: flex;
    flex: 0 0 auto;
    height: 100%;
    justify-content: center;
    padding: 0 5px;
    perspective: 600px;
    position: relative;
    text-align: center;
    text-decoration: none;
    transform-style: preserve-3d;
    transition: transform .4s cubic-bezier(.5, .8, .5, 1)
}

.header .header-content .nav .nav-item span {
    opacity: 0;
    pointer-events: none
}

.header .header-content .nav .nav-item:after,
.header .header-content .nav .nav-item:before {
    backface-visibility: hidden;
    content: attr(data-text);
    height: 100%;
    left: 0;
    line-height: 100px;
    position: absolute;
    text-align: center;
    top: 0;
    white-space: nowrap;
    width: 100%
}

.header .header-content .nav .nav-item:before {
    transform: translateZ(20px)
}

.header .header-content .nav .nav-item:after {
    transform: rotateX(-90deg) translateZ(20px)
}

.header .header-content .nav .nav-item.active,
.header .header-content .nav .nav-item:hover {
    /*transform: rotateX(90deg)*/
}

@media(min-width:769px)and (max-width:1536px) {
    .header .header-content {
        padding: 0 20px
    }

    .header .header-content .logo {
        margin-right: 15px
    }

    .header .header-content .logo .logo-image {
        max-height: 50px
    }

    .header .header-content .nav {
        font-size: 15px;
        gap: 0
    }

    .header .header-content .nav .nav-item {
        padding: 0 8px
    }

    .header .header-content .nav .nav-item:before {
        transform: translateZ(15px)
    }

    .header .header-content .nav .nav-item:after {
        transform: rotateX(-90deg) translateZ(15px)
    }
}

@media(max-width:768px) {
    .header {
        background-color: transparent;
        height: 60px;
        width: 100%
    }

    .header.header-mobile-open {
        background-color: #fff !important;
        background-image: none !important;
        box-shadow: 0 2px 10px #0000000d
    }

    .header.header-home:not(.header-mobile-open):not(.header-scrolled) {
        -webkit-backdrop-filter: none;
        backdrop-filter: none;
        background: transparent !important;
        background-image: none !important;
        box-shadow: none
    }

    .header.header-home.header-scrolled:not(.header-mobile-open) {
        background: #fff;
        background-image: none;
        box-shadow: 0 2px 10px #0000001a
    }

    .header.header-other {
        background: #fff;
        height: 60px
    }

    .header .header-content {
        height: 100%;
        justify-content: space-between;
        max-width: 95%;
        padding: 0 16px
    }

    .header .header-content .logo {
        height: 100%;
        margin-right: 0;
        max-width: none;
        padding: 10px 0;
        width: auto
    }

    .header .header-content .logo .logo-image {
        height: 100%;
        max-height: 32px;
        -o-object-fit: contain;
        object-fit: contain;
        width: auto
    }

    .header .header-content .hamburger {
        display: flex;
        margin-right: 0
    }

    .header .header-content .nav {
        background: #fff;
        box-shadow: 0 10px 20px #0000000d;
        display: block;
        gap: 0;
        height: 0;
        left: 0;
        overflow: hidden;
        padding: 0;
        position: fixed;
        top: 60px;
        transition: height .3s cubic-bezier(.4, 0, .2, 1);
        width: 100%;
        z-index: 90
    }

    .header .header-content .nav.mobile-open {
        height: calc(100vh - 60px);
        overflow-y: auto;
        padding-bottom: 40px
    }

    .header .header-content .nav .nav-item {
        border-bottom: 1px solid #f5f5f5;
        display: block;
        height: 50px;
        line-height: 50px;
        margin: 0;
        padding: 0 30px;
        perspective: none !important;
        text-align: left;
        transform: none !important;
        transform-style: flat !important;
        transition: none !important;
        width: 100%
    }

    .header .header-content .nav .nav-item:after,
    .header .header-content .nav .nav-item:before {
        display: none !important
    }

    .header .header-content .nav .nav-item span {
        color: #333;
        display: block;
        font-size: 15px;
        font-weight: 500;
        opacity: 1 !important;
        pointer-events: auto !important;
        width: 100%
    }

    .header .header-content .nav .nav-item.active,
    .header .header-content .nav .nav-item:hover {
        background-color: #f8fbff;
        transform: none
    }

    .header .header-content .nav .nav-item.active span,
    .header .header-content .nav .nav-item:hover span {
        color: #0d438c
    }
}

body[data-v-b831ddd2] {
    box-sizing: border-box;
    overflow-x: hidden;
    scroll-behavior: smooth
}

.fullscreen-carousel[data-v-0e36e104] {
    height: 80vh;
    margin: 0;
    overflow: hidden;
    padding: 0;
    position: relative;
    touch-action: pan-y;
    width: 100%
}

.fullscreen-carousel .carousel-inner[data-v-0e36e104] {
    display: flex;
    height: 100%;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    width: 100%
}

.fullscreen-carousel .carousel-inner .carousel-item[data-v-0e36e104] {
    flex-shrink: 0;
    height: 100%;
    min-width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    width: 100%;
    cursor: pointer;
}

.fullscreen-carousel .carousel-btn[data-v-0e36e104] {
    background: #00000080;
    border: none;
    color: #fff;
    cursor: pointer;
    opacity: 0;
    padding: 15px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    transition: all .3s ease;
    z-index: 10
}

.fullscreen-carousel .carousel-btn[data-v-0e36e104]:hover {
    background: #000c;
    opacity: 1;
    transform: translateY(-50%) scale(1.1)
}

.fullscreen-carousel .carousel-btn.prev[data-v-0e36e104] {
    left: 30px
}

.fullscreen-carousel .carousel-btn.next[data-v-0e36e104] {
    right: 30px
}

.fullscreen-carousel .indicators[data-v-0e36e104] {
    bottom: 40px;
    display: flex;
    gap: 15px;
    left: 50%;
    position: absolute;
    transform: translate(-50%);
    z-index: 10
}

.fullscreen-carousel .indicators span[data-v-0e36e104] {
    background: #ffffff80;
    border-radius: 50%;
    cursor: pointer;
    height: 12px;
    position: relative;
    transition: all .3s ease;
    width: 12px
}

.fullscreen-carousel .indicators span[data-v-0e36e104]:after {
    content: "";
    inset: -8px;
    position: absolute
}

.fullscreen-carousel .indicators span.active[data-v-0e36e104] {
    background: #fff;
    transform: scale(1.3)
}

.fullscreen-carousel .indicators span[data-v-0e36e104]:hover {
    background: #fffc;
    transform: scale(1.3)
}

.fullscreen-carousel:hover .carousel-btn[data-v-0e36e104] {
    opacity: 1
}

@media(max-width:768px) {
    .fullscreen-carousel[data-v-0e36e104] {
        cursor: grab;
        height: 70vh
    }

    .fullscreen-carousel .carousel-item[data-v-0e36e104] {
        -o-object-fit: contain;
        object-fit: contain
    }

    .fullscreen-carousel .carousel-btn[data-v-0e36e104] {
        display: none
    }

    .fullscreen-carousel .indicators[data-v-0e36e104] {
        bottom: 20px;
        gap: 10px
    }

    .fullscreen-carousel .indicators span[data-v-0e36e104] {
        height: 5px;
        width: 5px
    }

    .fullscreen-carousel .indicators span.active[data-v-0e36e104] {
        border-radius: 5px;
        height: 5px;
        width: 15px
    }
}

@media(max-width:480px) {
    .fullscreen-carousel[data-v-0e36e104] {
        height: 50vh
    }

    .fullscreen-carousel .carousel-btn[data-v-0e36e104] {
        display: none
    }

    .fullscreen-carousel .indicators[data-v-0e36e104] {
        bottom: 15px;
        gap: 8px
    }

    .fullscreen-carousel .indicators span[data-v-0e36e104] {
        height: 5px;
        width: 5px
    }

    .fullscreen-carousel .indicators span.active[data-v-0e36e104] {
        border-radius: 5px;
        height: 5px;
        width: 15px
    }
}

@media(hover:none)and (pointer:coarse) {
    .fullscreen-carousel .carousel-btn[data-v-0e36e104] {
        display: none
    }
}

.fullscreen-carousel[data-v-0e36e104] * {
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: transparent
}

.middle-container[data-v-75c5fb90] {
    align-items: center;
    background-color: #fff;
    box-sizing: border-box;
    display: flex;
    height: calc(85vh - 83px);
    justify-content: center;
    overflow: hidden;
    padding: 0 100px;
    position: relative;
    width: 100%
}

.middle-container .anim-up[data-v-75c5fb90] {
    opacity: 0;
    transform: translateY(120px);
    transition: transform 1.2s cubic-bezier(.19, 1, .22, 1), opacity 1.2s ease;
    will-change: transform, opacity
}

.middle-container .anim-right[data-v-75c5fb90] {
    opacity: 0;
    transform: translate(150px);
    transition: transform 1s cubic-bezier(.19, 1, .22, 1), opacity 1s ease;
    will-change: transform, opacity
}

.middle-container.animate-active .anim-up[data-v-75c5fb90] {
    opacity: 1;
    transform: translateY(0)
}

.middle-container.animate-active .anim-right[data-v-75c5fb90] {
    opacity: 1;
    transform: translate(0)
}

.middle-container .delay-100[data-v-75c5fb90] {
    transition-delay: .2s
}

.middle-container .delay-200[data-v-75c5fb90] {
    transition-delay: .3s
}

.middle-container .delay-300[data-v-75c5fb90] {
    transition-delay: .4s
}

.middle-container .delay-400[data-v-75c5fb90] {
    transition-delay: .5s
}

.middle-container .middle-left[data-v-75c5fb90] {
    flex-shrink: 0;
    height: 100%;
    position: relative;
    width: 50%
}

.middle-container .middle-left .left-img[data-v-75c5fb90] {
    border-radius: 18px;
    height: 90%;
    left: 50%;
    overflow: hidden;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 100%
}

.middle-container .middle-left .left-img img[data-v-75c5fb90] {
    border-radius: 18px;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%
}

.middle-container .middle-left .left-img img[data-v-75c5fb90]:hover {
    transform: scale(1.05) !important;
    transition: transform .5s ease !important
}

.middle-container .middle-right[data-v-75c5fb90] {
    align-items: center;
    display: flex;
    height: 100%;
    justify-content: center;
    width: 50%
}

.middle-container .middle-right .right-content[data-v-75c5fb90] {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    height: 90%;
    justify-content: center;
    width: 80%;
    border: 1px dashed #0d438c;
    padding: 20px;
    border-radius: 20px;
}

.middle-container .middle-right .right-content h1[data-v-75c5fb90] {
    color: #333;
    font-size: 35px;
    font-weight: 700;
    line-height: 1.5;
    margin-bottom: 20px
}

.middle-container .middle-right .right-content h3[data-v-75c5fb90] {
    color: #0d438c;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.5;
    margin-bottom: 25px
}

.middle-container .middle-right .right-content .content-text[data-v-75c5fb90] {
    color: #646464;
    font-size: 16px;
    line-height: 2.4;
    max-width: 100%;
    text-indent: 2em
}

.middle-container .middle-right .right-content .bottom[data-v-75c5fb90] {
    align-items: center;
    box-sizing: border-box;
    display: flex;
    height: 50px;
    justify-content: space-between;
    margin-bottom: 30px;
    width: 85%
}

.middle-container .middle-right .right-content .more[data-v-75c5fb90] {
    display: flex;
    height: 10%;
    justify-content: flex-start;
    width: 85%
}

.middle-container .middle-right .right-content .more .more-btn[data-v-75c5fb90] {
    background: #0d438c;
    border: none;
    border-radius: 30px;
    box-shadow: 0 4px 12px #0d438c26;
    color: #fff;
    cursor: pointer;
    font-size: 20px;
    height: 60px;
    overflow: hidden;
    position: relative;
    transition: background .3s, box-shadow .3s, color .3s;
    width: 220px;
    text-decoration: none;
}

.middle-container .middle-right .right-content .more .more-btn[data-v-75c5fb90]:before {
    background: #0a3566;
    border-radius: inherit;
    content: "";
    height: 100%;
    left: 50%;
    position: absolute;
    top: 0;
    transform: translate(-50%);
    transition: width .5s ease;
    width: 0;
    z-index: 1
}

.middle-container .middle-right .right-content .more .more-btn .btn-text[data-v-75c5fb90] {
    display: block;
    height: 100%;
    line-height: 60px;
    position: relative;
    text-align: center;
    width: 100%;
    z-index: 2
}

.middle-container .middle-right .right-content .more .more-btn[data-v-75c5fb90]:hover {
    box-shadow: 0 6px 16px #0d438c33
}

.middle-container .middle-right .right-content .more .more-btn[data-v-75c5fb90]:hover:before {
    width: 100%
}

@media(max-width:768px) {
    .middle-container[data-v-75c5fb90] {
        background-color: #f9f9f9;
        flex-direction: column;
        height: auto;
        min-height: auto;
        padding: 20px 15px
    }

    .middle-container .anim-right[data-v-75c5fb90],
    .middle-container .anim-up[data-v-75c5fb90] {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important
    }

    .middle-container .middle-left[data-v-75c5fb90] {
        display: none
    }

    .middle-container .middle-right[data-v-75c5fb90],
    .middle-container .middle-right .right-content[data-v-75c5fb90] {
        height: auto;
        padding: 0;
        width: 100%
    }

    .middle-container .middle-right .right-content h1[data-v-75c5fb90] {
        font-size: 24px;
        line-height: 1.8;
        margin-bottom: 0 !important;
        text-align: center
    }

    .middle-container .middle-right .right-content h3[data-v-75c5fb90] {
        font-size: 16px;
        line-height: 2;
        margin-bottom: 0 !important;
        text-align: center
    }

    .middle-container .middle-right .right-content .content-text[data-v-75c5fb90] {
        display: -webkit-box;
        font-size: 14px;
        line-height: 1.8;
        margin-bottom: 15px !important;
        text-align: justify;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 7;
        overflow: hidden;
        text-overflow: ellipsis
    }

    .middle-container .middle-right .right-content .content-text[data-v-75c5fb90] p {
        margin-bottom: 8px !important
    }

    .middle-container .middle-right .right-content .bottom[data-v-75c5fb90] {
        height: auto;
        margin-bottom: 0;
        width: 100%
    }

    .middle-container .middle-right .right-content .more[data-v-75c5fb90] {
        height: auto;
        justify-content: center;
        width: 100%
    }

    .middle-container .middle-right .right-content .more .more-btn[data-v-75c5fb90] {
        box-shadow: 0 3px 10px #0d438c33;
        height: 46px;
        width: 160px
    }

    .middle-container .middle-right .right-content .more .more-btn .btn-text[data-v-75c5fb90] {
        font-size: 16px;
        line-height: 46px
    }
}

.partner-container[data-v-3034d4f8] {
    background: #f4f4f4;
    box-sizing: border-box;
    padding-bottom: 40px;
    position: relative;
    width: 100%
}

.partner-container .partner-title[data-v-3034d4f8] {
    padding: 50px 0 30px;
    text-align: center
}

.partner-container .partner-title h1[data-v-3034d4f8] {
    font-size: clamp(1.5rem, 5vw, 2.5rem);
    margin: 0 0 10px
}

.partner-container .partner-title .partner-line[data-v-3034d4f8] {
    background: #0d438c;
    border-radius: 2px;
    height: 4px;
    margin: 0 auto;
    width: 80px
}

.partner-container .partner-content[data-v-3034d4f8] {
    position: relative;
    width: 100%
}

.partner-container .partner-content .carousel-wrapper[data-v-3034d4f8] {
    height: 100%;
    overflow: hidden;
    position: relative;
    width: 100%
}

.partner-container .partner-content .carousel[data-v-3034d4f8] {
    height: 100%;
    position: relative;
    width: 92%;
    margin: 0 auto;
}

.partner-container .partner-content .carousel .group[data-v-3034d4f8] {
    align-items: center;
    display: flex;
    gap: 20px;
    left: 0;
    /*position: absolute;*/
    top: 0;
    transition: none;
    will-change: transform;
    flex-wrap: wrap;
}

.partner-container .partner-content .carousel .group .card[data-v-3034d4f8] {
    background-color: #fff;
    border-radius: 8px;
    box-sizing: border-box;
    cursor: pointer;
    flex-shrink: 0;
    padding: 20px;
    width: calc(33.333% - 17px);
}

.partner-container .partner-content .carousel .group .card img[data-v-3034d4f8] {
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
    transition: transform .3s ease;
    width: 100%
}

.partner-container .partner-content .carousel .group .card:hover img[data-v-3034d4f8] {
    transform: scale(1.02)
}

.partner-container .carousel-control[data-v-3034d4f8] {
    display: flex;
    gap: 30px;
    justify-content: center;
    margin-top: 20px
}

.partner-container .carousel-control .control-btn[data-v-3034d4f8] {
    align-items: center;
    background: #fff;
    border: 1px dashed #a8a8a8;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    height: 65px;
    justify-content: center;
    transition: all .2s ease;
    width: 65px
}

.partner-container .carousel-control .control-btn .albbicon[data-v-3034d4f8] {
    color: #4d4d4d;
    font-size: 20px;
    font-style: normal;
    transition: color .2s ease
}

.partner-container .carousel-control .control-btn[data-v-3034d4f8]:hover {
    background-color: #0d438c0d;
    border-color: #0d438c
}

.partner-container .carousel-control .control-btn:hover .albbicon[data-v-3034d4f8] {
    color: #0d438c
}

.partner-container .image-preview-mask[data-v-3034d4f8] {
    align-items: center;
    background-color: #000000d9;
    cursor: pointer;
    display: flex;
    height: 100vh;
    justify-content: center;
    left: 0;
    position: fixed;
    top: 0;
    width: 100vw;
    z-index: 9999
}

.partner-container .image-preview-mask .preview-content[data-v-3034d4f8] {
    cursor: default;
    max-height: -moz-fit-content;
    max-height: fit-content;
    max-width: -moz-fit-content;
    max-width: fit-content;
    position: relative;
    text-align: center
}

.partner-container .image-preview-mask .preview-content .close-btn[data-v-3034d4f8] {
    align-items: center;
    background-color: #fff3;
    border: none;
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    display: flex;
    font-size: 18px;
    height: 40px;
    justify-content: center;
    position: absolute;
    right: 10px;
    top: -20px;
    transition: background-color .2s ease;
    width: 40px;
    z-index: 10
}

.partner-container .image-preview-mask .preview-content .preview-img[data-v-3034d4f8] {
    border-radius: 8px;
    box-shadow: 0 0 30px #00000080;
    margin: 0 auto;
    max-height: 70vh;
    max-width: 70%
}

@media(max-width:768px) {
    .partner-container[data-v-3034d4f8] {
        padding-bottom: 20px
    }

    .partner-container .partner-title[data-v-3034d4f8] {
        padding-bottom: 20px;
        padding-top: 20px
    }

    .partner-container .partner-title .partner-line[data-v-3034d4f8] {
        height: 3px;
        width: 60px
    }

    .partner-container .partner-title h1[data-v-3034d4f8] {
        font-size: 24px
    }

    .partner-container .partner-content[data-v-3034d4f8] {
        height: 280px
    }

    .partner-container .partner-content .carousel .group[data-v-3034d4f8] {
        gap: 15px;
        left: 7.5vw !important
    }

    .partner-container .partner-content[data-v-3034d4f8] .card {
        box-shadow: 0 2px 8px #00000014;
        height: 250px !important;
        max-width: 400px;
        padding: 10px !important;
        width: 85vw !important
    }

    .partner-container .carousel-control[data-v-3034d4f8] {
        gap: 20px;
        margin-top: 10px
    }

    .partner-container .carousel-control .control-btn[data-v-3034d4f8] {
        height: 40px;
        width: 40px
    }

    .partner-container .carousel-control .control-btn .albbicon[data-v-3034d4f8] {
        font-size: 14px
    }

    .partner-container .image-preview-mask .preview-content .preview-img[data-v-3034d4f8] {
        max-height: 80vh;
        max-width: 95%
    }

    .partner-container .image-preview-mask .preview-content .close-btn[data-v-3034d4f8] {
        background-color: #ffffff4d;
        right: 0;
        top: -40px
    }
}
[data-v-a054d74f] {
    margin: 0;
    padding: 0
}

.case[data-v-a054d74f] {
    background: #fff;
    box-sizing: border-box;
    /*padding-bottom: 30px;*/
    /*padding-top: 30px;*/
    width: 100%
}

.case .case-title[data-v-a054d74f] {
    align-items: center;
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: center;
    margin-bottom: 35px;
    padding: 50px 0 0;
    width: 100%
}

.case .case-title h1[data-v-a054d74f] {
    color: #333;
    font-size: clamp(1.5rem, 5vw, 2.5rem);
    margin: 0
}

.case .case-title .case-line[data-v-a054d74f] {
    background: #0d438c;
    border-radius: 2px;
    height: 4px;
    width: 80px
}

.case .image-container[data-v-a054d74f] {
    display: flex;
    height: 900px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
    width: 100%
}

.case .image-container .image-card[data-v-a054d74f] {
    cursor: pointer;
    flex-shrink: 0;
    height: 100%;
    overflow: hidden;
    position: relative;
    transition: all .5s ease-out
}

.case .image-container .image-card img[data-v-a054d74f] {
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    transition: transform .7s ease-out;
    width: 100%
}

.case .image-container .image-card .text-overlay[data-v-a054d74f] {
    align-items: center;
    color: #fff;
    display: flex;
    flex-direction: column;
    gap: 20px;
    inset: 0;
    justify-content: center;
    padding: 1.5rem;
    position: absolute;
    text-align: center;
    transition: all .5s ease-out;
    z-index: 10
}

.case .image-container .image-card .text-overlay[data-v-a054d74f]:before {
    background: var(--before-bg, transparent);
    content: "";
    inset: 0;
    position: absolute;
    transition: all .5s ease-out;
    z-index: -1
}

.case .image-container .image-card .card-title[data-v-a054d74f] {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: .5rem;
    opacity: 0;
    transition: all .5s ease-out
}

.case .image-container .image-card .card-line[data-v-a054d74f] {
    background: #fff;
    border-radius: 2px;
    height: 4px;
    opacity: 0;
    transition: all .5s ease-out;
    width: 70px
}

.case .image-container .image-card .card-desc[data-v-a054d74f] {
    color: #f3f4f6;
    font-size: 1.2rem;
    max-width: 80%;
    opacity: 0;
    transition: all .5s ease-out
}

.case .image-container .image-card[data-v-a054d74f]:hover {
    z-index: 10
}

.case .more[data-v-a054d74f] {
    align-items: center;
    display: flex;
    justify-content: center;
    padding-bottom: 40px;
    padding-top: 40px;
    width: 100%
}

.case .more .more-btn[data-v-a054d74f] {
    background: #0d438c;
    border: none;
    border-radius: 100px;
    color: #fff;
    cursor: pointer;
    font-size: 1.2rem;
    height: 55px;
    text-align: center;
    transition: all .5s ease-out;
    width: 200px;
    line-height: 55px;
    text-decoration: none;
}

.case .more .more-btn[data-v-a054d74f]:hover {
    background: #0a3566
}

@media(max-width:768px) {
    .case[data-v-a054d74f] {
        padding-bottom: 10px;
        padding-top: 10px
    }

    .case .case-title[data-v-a054d74f] {
        margin-bottom: 5px;
        padding: 15px 0
    }

    .case .case-title h1[data-v-a054d74f] {
        font-size: 20px
    }

    .case .case-title .case-line[data-v-a054d74f] {
        height: 3px;
        width: 40px
    }

    .case .image-container[data-v-a054d74f] {
        box-sizing: border-box;
        display: grid !important;
        gap: 10px;
        grid-template-columns: repeat(2, 1fr);
        height: auto !important;
        padding: 0 10px
    }

    .case .image-container .image-card[data-v-a054d74f] {
        border-radius: 8px;
        height: 160px !important;
        margin-bottom: 0;
        width: 100% !important
    }

    .case .image-container .image-card .text-overlay[data-v-a054d74f] {
        gap: 5px;
        justify-content: flex-end;
        padding: 10px 10px 15px
    }

    .case .image-container .image-card .text-overlay[data-v-a054d74f]:before {
        background: linear-gradient(0deg, rgba(0, 0, 0, .8), transparent) !important
    }

    .case .image-container .image-card .card-title[data-v-a054d74f] {
        font-size: 14px !important;
        margin-bottom: 0;
        opacity: 1 !important;
        white-space: nowrap
    }

    .case .image-container .image-card .card-line[data-v-a054d74f] {
        height: 2px;
        margin: 2px 0;
        opacity: 1 !important;
        width: 20px
    }

    .case .image-container .image-card .card-desc[data-v-a054d74f] {
        display: -webkit-box;
        font-size: 11px !important;
        -webkit-line-clamp: 2;
        line-height: 1.3;
        margin-top: 2px;
        opacity: .9 !important;
        -webkit-box-orient: vertical;
        overflow: hidden
    }

    .case .image-container .image-card img[data-v-a054d74f] {
        transform: scale(1) !important
    }

    .case .more[data-v-a054d74f] {
        padding: 15px 0
    }

    .case .more .more-btn[data-v-a054d74f] {
        border-radius: 50px;
        font-size: 14px;
        height: 40px;
        width: 140px
    }
}
[data-v-8f2fc2b1] {
    margin: 0;
    padding: 0
}

[data-v-8f2fc2b1],
.dynamic[data-v-8f2fc2b1] {
    box-sizing: border-box
}

.dynamic[data-v-8f2fc2b1] {
    background-color: #f4f4f4;
    padding-bottom: 20px;
    padding-top: 20px;
    width: 100%
}

.dynamic .dynamic-title[data-v-8f2fc2b1] {
    align-items: center;
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: center;
    padding: 15px 0;
    width: 100%
}

.dynamic .dynamic-title h1[data-v-8f2fc2b1] {
    color: #333;
    font-size: clamp(1.5rem, 5vw, 2.5rem);
    margin: 0
}

.dynamic .dynamic-title .dynamic-line[data-v-8f2fc2b1] {
    background: #0d438c;
    border-radius: 2px;
    height: 4px;
    width: 80px
}

.dynamic .dynamic-content[data-v-8f2fc2b1] {
    display: block;
    position: relative;
    width: 100%
}

.dynamic .dynamic-content .dynamic-wrap[data-v-8f2fc2b1] {
    align-items: center;
    display: flex;
    flex-direction: row;
    gap: 20px;
    height: 450px;
    margin: 0 auto;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 0 5px;
    scrollbar-width: none;
    width: 85%;
    -ms-overflow-style: none;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth
}

.dynamic .dynamic-content .dynamic-wrap[data-v-8f2fc2b1]::-webkit-scrollbar {
    display: none
}

.dynamic .dynamic-content .dynamic-item[data-v-8f2fc2b1] {
    background-attachment: fixed;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 5px 15px #1e1e1e33;
    color: #333;
    cursor: pointer;
    flex: 0 0 calc(25% - 15px);
    font-size: clamp(1rem, 3vw, 1.2rem);
    height: 85%;
    overflow: hidden;
    position: relative;
    transition: all .8s ease
}

.dynamic .dynamic-content .dynamic-item img[data-v-8f2fc2b1] {
    height: 80%;
    -o-object-fit: cover;
    object-fit: cover;
    transition: all .8s ease;
    width: 100%
}

.dynamic .dynamic-content .dynamic-item span[data-v-8f2fc2b1] {
    color: #000;
    cursor: pointer;
    display: block;
    font-size: 16px;
    margin-top: 15px;
    text-align: center;
    transition: all .8s ease
}

.dynamic .dynamic-content .dynamic-item[data-v-8f2fc2b1]:hover {
    background-color: #0d438c;
    box-shadow: 0 0 0 8px #0d438c, 0 8px 24px #00000040
}

.dynamic .dynamic-content .dynamic-item:hover span[data-v-8f2fc2b1] {
    color: #fff;
    margin-top: 30px
}

.dynamic .dynamic-content .dynamic-item:hover img[data-v-8f2fc2b1] {
    transform: scale(1.1)
}

.dynamic .dynamic-content .dynamic-left[data-v-8f2fc2b1],
.dynamic .dynamic-content .dynamic-right[data-v-8f2fc2b1] {
    align-items: center;
    background-color: #0d438c;
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    display: flex;
    height: clamp(36px, 10vw, 60px);
    justify-content: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    transition: all .2s;
    width: clamp(36px, 10vw, 60px);
    z-index: 10
}

.dynamic .dynamic-content .dynamic-left.dynamic-left[data-v-8f2fc2b1],
.dynamic .dynamic-content .dynamic-right.dynamic-left[data-v-8f2fc2b1] {
    left: 2%
}

.dynamic .dynamic-content .dynamic-left.dynamic-right[data-v-8f2fc2b1],
.dynamic .dynamic-content .dynamic-right.dynamic-right[data-v-8f2fc2b1] {
    right: 2%
}

.dynamic .dynamic-content .dynamic-left i[data-v-8f2fc2b1],
.dynamic .dynamic-content .dynamic-right i[data-v-8f2fc2b1] {
    font-size: clamp(16px, 4vw, 24px)
}

.dynamic .dynamic-content .dynamic-left[data-v-8f2fc2b1]:hover,
.dynamic .dynamic-content .dynamic-right[data-v-8f2fc2b1]:hover {
    background-color: #fff;
    box-shadow: 0 2px 8px #00000026;
    color: #000
}

.dynamic .dynamic-content .dynamic-left.disabled[data-v-8f2fc2b1],
.dynamic .dynamic-content .dynamic-right.disabled[data-v-8f2fc2b1] {
    background-color: #ffffff4d;
    color: #999;
    cursor: not-allowed
}

.dynamic .dynamic-content .dynamic-left.disabled[data-v-8f2fc2b1]:hover,
.dynamic .dynamic-content .dynamic-right.disabled[data-v-8f2fc2b1]:hover {
    box-shadow: none
}

.dynamic .more[data-v-8f2fc2b1] {
    align-items: center;
    display: flex;
    justify-content: center;
    padding: 20px 0;
    width: 100%
}

.dynamic .more .more-btn[data-v-8f2fc2b1] {
    background: #0d438c;
    border: none;
    border-radius: 100px;
    color: #fff;
    cursor: pointer;
    font-size: 1.2rem;
    height: 55px;
    line-height: 55px;
    text-align: center;
    transition: all .5s ease-out;
    width: 200px
}

.dynamic .more .more-btn[data-v-8f2fc2b1]:hover {
    background: #0a3566
}

@media(max-width:768px) {
    .dynamic[data-v-8f2fc2b1] {
        height: auto !important;
        overflow: hidden;
        padding-bottom: 10px !important;
        padding-top: 10px !important
    }

    .dynamic .dynamic-title[data-v-8f2fc2b1] {
        margin-bottom: 5px;
        padding: 15px 0
    }

    .dynamic .dynamic-title h1[data-v-8f2fc2b1] {
        font-size: 24px !important
    }

    .dynamic .dynamic-title .dynamic-line[data-v-8f2fc2b1] {
        height: 3px !important;
        width: 50px !important
    }

    .dynamic .dynamic-content .dynamic-wrap[data-v-8f2fc2b1] {
        align-items: stretch !important;
        gap: 15px !important;
        height: auto !important;
        margin: 0 !important;
        padding: 10px 15px !important;
        width: 100% !important
    }

    .dynamic .dynamic-content .dynamic-item[data-v-8f2fc2b1] {
        background-color: #fff !important;
        box-shadow: 0 3px 10px #0000001a !important;
        flex: 0 0 70% !important;
        height: auto !important;
        max-width: none !important;
        padding-bottom: 15px !important
    }

    .dynamic .dynamic-content .dynamic-item[data-v-8f2fc2b1]:hover {
        background-color: #fff !important;
        box-shadow: 0 3px 10px #0000001a !important;
        transform: none !important
    }

    .dynamic .dynamic-content .dynamic-item img[data-v-8f2fc2b1] {
        height: 140px !important;
        transform: none !important;
        width: 100% !important
    }

    .dynamic .dynamic-content .dynamic-item span[data-v-8f2fc2b1] {
        color: #333 !important;
        font-size: 14px !important;
        margin-top: 12px !important;
        overflow: hidden;
        padding: 0 8px;
        text-overflow: ellipsis;
        white-space: nowrap
    }

    .dynamic .dynamic-content .dynamic-left[data-v-8f2fc2b1],
    .dynamic .dynamic-content .dynamic-right[data-v-8f2fc2b1] {
        display: none !important
    }

    .dynamic .more[data-v-8f2fc2b1] {
        padding: 15px 0
    }

    .dynamic .more .more-btn[data-v-8f2fc2b1] {
        border-radius: 50px;
        font-size: 14px;
        height: 40px;
        width: 140px
    }
}
[data-v-9efd5ca9] {
    margin: 0;
    padding: 0
}

[data-v-9efd5ca9],
.news[data-v-9efd5ca9] {
    box-sizing: border-box
}

.news[data-v-9efd5ca9] {
    background: #fff;
    overflow-x: hidden;
    /*padding-bottom: 30px;*/
    /*padding-top: 30px;*/
    width: 100%
}

.news .news-title[data-v-9efd5ca9] {
    align-items: center;
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: center;
    margin-bottom: 35px;
    padding: 30px 0 0;
    width: 100%
}

.news .news-title h1[data-v-9efd5ca9] {
    color: #333;
    font-size: clamp(1.5rem, 5vw, 2.5rem);
    margin: 0
}

.news .news-title .news-line[data-v-9efd5ca9] {
    background: #0d438c;
    border-radius: 2px;
    height: 4px;
    width: 80px
}

.news .news-list[data-v-9efd5ca9] {
    box-sizing: border-box;
    cursor: pointer;
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(2, 1fr);
    height: 100%;
    margin: 0 auto;
    max-width: 100%;
    width: 92%
}

.news .news-list .news-item[data-v-9efd5ca9] {
    border-radius: 5px;
    box-shadow: 0 0 10px #0000001a;
    box-sizing: border-box;
    display: flex;
    gap: 20px;
    height: 300px;
    justify-content: space-between;
    opacity: 0;
    padding: 20px;
    position: relative;
    transform: translate3d(150px, 0, 0);
    transition: all .8s ease-out
}

.news .news-list .news-item .news-img[data-v-9efd5ca9] {
    box-sizing: border-box;
    height: 100%;
    overflow: hidden;
    position: relative;
    transition: transform .5s ease;
    width: 40%
}

.news .news-list .news-item .news-img .img[data-v-9efd5ca9] {
    box-sizing: border-box;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    transition: transform .5s ease;
    width: 100%
}

.news .news-list .news-item .news-content[data-v-9efd5ca9] {
    height: 100%;
    width: 60%
}

.news .news-list .news-item .news-content h3[data-v-9efd5ca9] {
    color: #333;
    font-size: 1.3rem;
    height: 20%;
    line-height: 40px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
}

.news .news-list .news-item .news-content p[data-v-9efd5ca9] {
    color: #666;
    display: -webkit-box;
    font-size: 1rem;
    height: 150px;
    line-height: 30px;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 5;
    word-break: break-word
}

.news .news-list .news-item .news-content span[data-v-9efd5ca9] {
    color: #999;
    display: block;
    font-size: .8rem;
    height: 20%;
    line-height: 35px;
    margin-top: 10px;
    text-align: right
}

.news .news-list .news-item.animate-active[data-v-9efd5ca9] {
    opacity: 1;
    transform: translateZ(0)
}

.news .news-list .news-item[data-v-9efd5ca9]:hover {
    box-shadow: 0 0 15px #0003;
    transform: translateY(-5px)
}

.news .news-list .news-item:hover img[data-v-9efd5ca9] {
    transform: scale(1.1)
}

.news .news-list .news-item:hover h3[data-v-9efd5ca9] {
    color: #0d438c
}

.news .more[data-v-9efd5ca9] {
    align-items: center;
    display: flex;
    justify-content: center;
    padding: 40px 0;
    width: 100%
}

.news .more .more-btn[data-v-9efd5ca9] {
    background: #0d438c;
    border: none;
    border-radius: 100px;
    color: #fff;
    cursor: pointer;
    font-size: 1.2rem;
    height: 55px;
    text-align: center;
    transition: all .5s ease-out;
    width: 200px;
    line-height: 55px;
}

.news .more .more-btn[data-v-9efd5ca9]:hover {
    background: #0a3566
}

@media(max-width:768px) {
    .news[data-v-9efd5ca9] {
        padding-bottom: 15px;
        padding-top: 10px
    }

    .news .news-title[data-v-9efd5ca9] {
        margin-bottom: 5px;
        padding: 15px 0
    }

    .news .news-title h1[data-v-9efd5ca9] {
        font-size: 20px
    }

    .news .news-title .news-line[data-v-9efd5ca9] {
        height: 3px;
        width: 40px
    }

    .news .news-list[data-v-9efd5ca9] {
        gap: 10px;
        grid-template-columns: 1fr;
        margin: 0 auto;
        padding: 5px 0;
        width: 96%
    }

    .news .news-list .news-item[data-v-9efd5ca9] {
        align-items: center;
        flex-direction: row;
        gap: 12px;
        height: 105px;
        padding: 10px;
        transform: translate3d(30px, 0, 0)
    }

    .news .news-list .news-item .news-img[data-v-9efd5ca9] {
        border-radius: 4px;
        flex-shrink: 0;
        height: 100%;
        margin-bottom: 0;
        width: 110px
    }

    .news .news-list .news-item .news-img .img[data-v-9efd5ca9] {
        height: 100%;
        -o-object-fit: cover;
        object-fit: cover;
        width: 100%
    }

    .news .news-list .news-item .news-content[data-v-9efd5ca9] {
        display: flex;
        flex: 1;
        flex-direction: column;
        height: 100%;
        justify-content: space-between;
        padding-top: 0;
        width: 0
    }

    .news .news-list .news-item .news-content h3[data-v-9efd5ca9] {
        font-size: 15px !important;
        -webkit-line-clamp: 2;
        margin-bottom: 4px;
        white-space: normal
    }

    .news .news-list .news-item .news-content h3[data-v-9efd5ca9],
    .news .news-list .news-item .news-content p[data-v-9efd5ca9] {
        display: -webkit-box;
        height: auto;
        line-height: 1.3;
        -webkit-box-orient: vertical;
        overflow: hidden
    }

    .news .news-list .news-item .news-content p[data-v-9efd5ca9] {
        color: #888;
        font-size: 12px !important;
        -webkit-line-clamp: 1;
        margin-bottom: 0
    }

    .news .news-list .news-item .news-content span[data-v-9efd5ca9] {
        color: #aaa;
        font-size: 12px !important;
        height: auto;
        line-height: 1;
        margin-top: auto;
        text-align: right
    }

    .news .news-list .news-item.animate-active[data-v-9efd5ca9] {
        opacity: 1;
        transform: translateZ(0)
    }

    .news .news-list .news-item[data-v-9efd5ca9]:active {
        background-color: #fafafa;
        transform: scale(.98) translateZ(0)
    }

    .news .more[data-v-9efd5ca9] {
        padding: 15px 0
    }

    .news .more .more-btn[data-v-9efd5ca9] {
        border-radius: 50px;
        font-size: 14px;
        height: 40px;
        width: 140px
    }
}

.contact-back-top[data-v-caa698c7] {
    align-items: center;
    bottom: 120px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    position: fixed;
    right: 20px;
    width: 48px;
    z-index: 99
}

.contact-back-top .contact-item[data-v-caa698c7] {
    cursor: pointer;
    position: relative
}

.contact-back-top .contact-text[data-v-caa698c7] {
    align-items: center;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 12px #0000001a;
    color: #0d438c;
    display: flex;
    font-size: 15px;
    justify-content: center;
    line-height: 1.4;
    padding: 10px 8px;
    text-orientation: mixed;
    transition: all .2s ease;
    white-space: nowrap;
    writing-mode: vertical-lr
}

.contact-back-top .contact-text img[data-v-caa698c7] {
    height: 17px;
    margin-bottom: 5px;
    width: 17px
}

.contact-back-top .contact-text[data-v-caa698c7]:hover {
    background-color: #f8f9fa;
    box-shadow: 0 6px 16px #0000001f
}

.contact-back-top .contact-text.no-icon[data-v-caa698c7] {
    font-weight: 500;
    padding: 10px 14px
}

.contact-back-top .contact-qrcode[data-v-caa698c7] {
    align-items: center;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 12px #0000001a;
    display: flex;
    height: 130px;
    justify-content: center;
    opacity: 0;
    position: absolute;
    right: calc(100% + 10px);
    top: 50%;
    transform: translateY(-50%);
    transition: all .3s ease-in-out;
    visibility: hidden;
    width: 130px;
    z-index: 100
}

.contact-back-top .contact-qrcode img[data-v-caa698c7] {
    border-radius: 4px;
    height: 110px;
    -o-object-fit: cover;
    object-fit: cover;
    width: 110px
}

.contact-back-top .contact-item:hover .contact-qrcode[data-v-caa698c7] {
    opacity: 1;
    visibility: visible
}

.contact-back-top .back-top-icon[data-v-caa698c7] {
    align-items: center;
    background-color: #0d438c;
    border-radius: 50%;
    box-shadow: 0 4px 12px #0000001a;
    cursor: pointer;
    display: flex;
    height: 48px;
    justify-content: center;
    transition: all .3s ease-in-out;
    width: 48px
}

.contact-back-top .back-top-icon[data-v-caa698c7]:hover {
    background-color: #1050a8;
    box-shadow: 0 6px 16px #0d438c4d;
    transform: translateY(-5px)
}

.contact-back-top .icon-hidden[data-v-caa698c7] {
    opacity: 0;
    pointer-events: none;
    visibility: hidden
}

@media(max-width:768px) {
    .contact-back-top[data-v-caa698c7] {
        display: none !important
    }
}

.contact[data-v-61eefb0c] {
    background-color: #fff;
    background-image: linear-gradient(#03184bcc, #324678cc), url(https://cdn.pixabay.com/photo/2016/06/10/14/34/architecture-1448221_1280.jpg);
    background-position: 50%;
    background-size: cover;
    box-sizing: border-box;
    height: 600px;
    position: relative;
    width: 100%
}

.contact .contact-title[data-v-61eefb0c] {
    align-items: center;
    box-sizing: border-box;
    color: #fff;
    display: flex;
    flex-direction: column;
    font-size: 18px;
    gap: 20px;
    height: 200px;
    justify-content: center;
    opacity: 0;
    transform: translateY(50px);
    transition: all .8s ease-out;
    width: 100%
}

.contact .contact-title h2[data-v-61eefb0c] {
    font-size: 30px
}

.contact .contact-title.animate-active[data-v-61eefb0c] {
    opacity: 1;
    transform: translateY(0)
}

.contact .contact-content[data-v-61eefb0c] {
    align-items: center;
    display: flex;
    height: 300px;
    justify-content: center;
    width: 100%
}

.contact .contact-content .contact-item[data-v-61eefb0c] {
    align-items: center;
    border-radius: 10px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 10px;
    height: 250px;
    justify-content: center;
    width: 20%
}

.contact .contact-content .contact-item .contact-icon[data-v-61eefb0c] {
    align-items: center;
    border: 2px solid #fff;
    border-radius: 50%;
    display: flex;
    height: 150px;
    justify-content: center;
    width: 150px
}

.contact .contact-content .contact-item .contact-text[data-v-61eefb0c] {
    align-items: center;
    color: #fff;
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: center
}

.contact .contact-content .contact-item .contact-text h2[data-v-61eefb0c] {
    font-size: 20px
}

.contact .contact-content .contact-item .contact-text p[data-v-61eefb0c] {
    font-size: 18px
}

.contact .contact-bottom[data-v-61eefb0c] {
    align-items: center;
    background-color: #00164d80;
    bottom: 0;
    box-sizing: border-box;
    color: #fff;
    display: flex;
    flex-direction: column;
    font-size: 18px;
    gap: 20px;
    height: 100px;
    justify-content: center;
    position: absolute;
    width: 100%
}

.mobile-footer[data-v-61eefb0c],
.phone-tabbar[data-v-61eefb0c],
.wechat-modal[data-v-61eefb0c] {
    display: none
}

@media(max-width:768px) {
    .contact[data-v-61eefb0c] {
        display: none
    }

    .mobile-footer[data-v-61eefb0c] {
        align-items: center;
        background-color: #f8f8f8;
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 20px 0 90px;
        width: 100%
    }

    .mobile-footer .back-top[data-v-61eefb0c] {
        align-items: center;
        background-color: #fff;
        border: 1px solid #ddd;
        border-radius: 30px;
        box-sizing: border-box;
        color: #666;
        cursor: pointer;
        display: flex;
        font-size: 14px;
        gap: 5px;
        margin-bottom: 20px;
        padding: 8px 16px
    }

    .mobile-footer .back-top[data-v-61eefb0c]:active {
        background-color: #f0f0f0
    }

    .mobile-footer .back-top .iconfont[data-v-61eefb0c] {
        font-size: 14px
    }

    .mobile-footer .copyright[data-v-61eefb0c] {
        color: #999;
        font-size: 12px;
        line-height: 1.8;
        text-align: center
    }

    .mobile-footer .copyright p[data-v-61eefb0c] {
        margin: 0
    }

    .phone-tabbar[data-v-61eefb0c] {
        align-items: center;
        background-color: #fff;
        border-top: 1px solid #e0e0e0;
        bottom: 0;
        box-shadow: 0 -2px 10px #0000000d;
        box-sizing: border-box;
        display: flex;
        height: 65px;
        justify-content: space-around;
        left: 0;
        padding-bottom: env(safe-area-inset-bottom);
        position: fixed;
        width: 100%;
        z-index: 999
    }

    .phone-tabbar .tab-item[data-v-61eefb0c] {
        align-items: center;
        color: #333;
        cursor: pointer;
        display: flex;
        flex: 1;
        flex-direction: column;
        height: 100%;
        justify-content: center;
        position: relative;
        text-decoration: none;
        -webkit-tap-highlight-color: transparent
    }

    .phone-tabbar .tab-item .iconfont[data-v-61eefb0c] {
        color: #666;
        font-size: 24px;
        margin-bottom: 4px;
        transition: color .3s
    }

    .phone-tabbar .tab-item span[data-v-61eefb0c] {
        font-size: 14px;
        font-weight: 500
    }

    .phone-tabbar .tab-item:active .iconfont[data-v-61eefb0c],
    .phone-tabbar .tab-item:active span[data-v-61eefb0c],
    .phone-tabbar .tab-item:hover .iconfont[data-v-61eefb0c],
    .phone-tabbar .tab-item:hover span[data-v-61eefb0c] {
        color: #0d438c
    }

    .phone-tabbar .tab-item[data-v-61eefb0c]:not(:last-child):after {
        background-color: #e0e0e0;
        content: "";
        height: 60%;
        position: absolute;
        right: 0;
        top: 20%;
        width: 1px
    }

    .wechat-modal[data-v-61eefb0c] {
        align-items: center;
        -webkit-backdrop-filter: blur(2px);
        backdrop-filter: blur(2px);
        background-color: #0009;
        display: flex;
        height: 100%;
        justify-content: center;
        left: 0;
        position: fixed;
        top: 0;
        width: 100%;
        z-index: 1000
    }

    .wechat-modal .modal-content[data-v-61eefb0c] {
        background-color: #fff;
        border-radius: 12px;
        box-shadow: 0 4px 20px #0003;
        max-width: 300px;
        padding: 30px;
        text-align: center;
        width: 70%
    }

    .wechat-modal .modal-content img[data-v-61eefb0c] {
        display: block;
        height: auto;
        margin-bottom: 10px;
        width: 100%
    }

    .wechat-modal .modal-content p[data-v-61eefb0c] {
        color: #666;
        font-size: 14px;
        margin: 5px 0
    }

    .wechat-modal .modal-content p[data-v-61eefb0c]:first-of-type {
        color: #333;
        font-weight: 700
    }
}

.fade-enter-active[data-v-61eefb0c],
.fade-leave-active[data-v-61eefb0c] {
    transition: opacity .3s ease
}

.fade-enter-from[data-v-61eefb0c],
.fade-leave-to[data-v-61eefb0c] {
    opacity: 0
}

[data-v-31cab4de] {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

.contact-top[data-v-31cab4de] {
    height: 500px;
    margin-top: 100px;
    width: 100%
}

.contact-top .top[data-v-31cab4de] {
    align-items: center;
    background-blend-mode: multiply;
    background-color: #00000080;
    background-image: url(../images/bg4.E82uBCfZ.jpg);
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    height: 100%;
    justify-content: center;
    overflow: hidden;
    width: 100%
}

.contact-top .top .top-left[data-v-31cab4de] {
    color: #fff;
    display: flex;
    font-size: 40px;
    font-weight: 700;
    justify-content: flex-end;
    opacity: 0;
    padding-right: 20px;
    transform: translate(20px);
    transition: all .6s ease .2s;
    width: 7%
}

.contact-top .top .top-left.left-animate[data-v-31cab4de] {
    opacity: 1;
    transform: translate(0)
}

.contact-top .top .top-right[data-v-31cab4de] {
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    opacity: 0;
    transform: translate(100%);
    transition: all .8s ease-out;
    width: 100%
}

.contact-top .top .top-right h2[data-v-31cab4de] {
    font-size: 36px;
    margin-bottom: 10px
}

.contact-top .top .top-right p[data-v-31cab4de] {
    font-size: 20px;
    line-height: 1.5
}

.contact-top .top .top-right.animate-in[data-v-31cab4de] {
    opacity: 1;
    transform: translate(0)
}

@media(max-width:768px) {
    .contact-top[data-v-31cab4de] {
        height: 280px;
        margin-top: 50px
    }

    .contact-top .top[data-v-31cab4de] {
        height: 280px
    }

    .contact-top .top .top-left[data-v-31cab4de] {
        font-size: 24px;
        padding-right: 10px
    }

    .contact-top .top .top-right[data-v-31cab4de] {
        transform: translate(50%)
    }

    .contact-top .top .top-right h2[data-v-31cab4de] {
        font-size: 24px
    }

    .contact-top .top .top-right p[data-v-31cab4de] {
        font-size: 16px
    }
}

.contact-page[data-v-63740087] {
    color: #333;
    font-family: Helvetica Neue, Arial, sans-serif;
    margin: 0 auto;
    max-width: 1500px;
    overflow-x: hidden;
    padding: 3rem 2rem
}

.contact-page .contact-container[data-v-63740087] {
    align-items: stretch;
    display: grid;
    gap: 2rem;
    grid-template-columns: 49% 48%;
    margin-bottom: 4rem;
    min-height: 600px
}

.contact-page .contact-container .contact-info-text[data-v-63740087] {
    animation: slide-left-63740087 .8s ease .2s forwards;
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 4px 12px #00000014;
    display: flex;
    flex-direction: column;
    height: 100%;
    opacity: 0;
    padding: 2.5rem
}

.contact-page .contact-container .contact-info-text .text-card[data-v-63740087] {
    border-bottom: 1px solid #e2e8f0;
    opacity: 0;
    padding: 2.5rem;
    transform: translateY(20px);
    transition: all .4s ease
}

.contact-page .contact-container .contact-info-text .text-card[data-v-63740087]:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0
}

.contact-page .contact-container .contact-info-text .text-card.animated[data-v-63740087] {
    opacity: 1;
    transform: translateY(0)
}

.contact-page .contact-container .contact-info-text .text-card .text-card-title[data-v-63740087] {
    align-items: center;
    color: #0d438c;
    display: flex;
    font-size: 1.2rem;
    gap: .8rem;
    margin: 0 0 1rem
}

.contact-page .contact-container .contact-info-text .text-card .text-card-title svg[data-v-63740087] {
    color: #0d438c;
    flex-shrink: 0
}

.contact-page .contact-container .contact-info-text .text-card .text-card-content[data-v-63740087] {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0 0 .5rem;
    padding-left: calc(20px + .8rem)
}

.contact-page .contact-container .contact-info-text .text-card .text-card-content.hover-underline[data-v-63740087]:hover {
    color: #0d438c;
    text-decoration: underline
}

.contact-page .contact-container .contact-form-wrapper[data-v-63740087] {
    height: 100%;
    opacity: 0;
    transform: translate(30px)
}

.contact-page .contact-container .contact-form-wrapper.animated[data-v-63740087] {
    opacity: 1;
    transform: translate(0)
}

.contact-page .contact-container .contact-form-wrapper .contact-form[data-v-63740087] {
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 4px 12px #00000014;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-between;
    padding: 2.5rem
}

.contact-page .contact-container .contact-form-wrapper .contact-form h3[data-v-63740087] {
    border-bottom: 1px solid #e2e8f0;
    color: #0d438c;
    font-size: 1.4rem;
    margin-bottom: 1.8rem;
    margin-top: 0;
    padding-bottom: 1rem;
    position: relative
}

.contact-page .contact-container .contact-form-wrapper .contact-form h3[data-v-63740087]:after {
    background-color: #0d438c;
    bottom: -1px;
    content: "";
    height: 1px;
    left: 0;
    position: absolute;
    transition: width .5s ease;
    width: 60px
}

.contact-page .contact-container .contact-form-wrapper .contact-form:hover h3[data-v-63740087]:after {
    width: 120px
}

.contact-page .contact-container .contact-form-wrapper .contact-form form[data-v-63740087] {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    height: 100%;
    justify-content: space-between
}

.contact-page .contact-container .contact-form-wrapper .contact-form .form-group[data-v-63740087] {
    margin-bottom: 0
}

.contact-page .contact-container .contact-form-wrapper .contact-form .form-group label[data-v-63740087] {
    color: #555;
    display: block;
    font-weight: 500;
    margin-bottom: .7rem;
    transition: color all .3s ease
}

.contact-page .contact-container .contact-form-wrapper .contact-form .form-group:focus-within label[data-v-63740087] {
    color: #0d438c
}

.contact-page .contact-container .contact-form-wrapper .contact-form .form-group .form-input[data-v-63740087] {
    background-color: #f5f5f5;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    box-sizing: border-box;
    font-size: 1rem;
    padding: 1rem 1.2rem;
    resize: none;
    transition: all .4s ease;
    width: 100%
}

.contact-page .contact-container .contact-form-wrapper .contact-form .form-group .form-input[data-v-63740087]:focus {
    background-color: #fff;
    border-color: #0d438c;
    box-shadow: 0 0 0 3px #4299e126;
    outline: none;
    transform: translateY(-2px)
}

.contact-page .contact-container .contact-form-wrapper .contact-form .submit-btn[data-v-63740087] {
    background-color: #0d438c;
    border: none;
    border-radius: 6px;
    color: #fff;
    cursor: pointer;
    font-size: 1.05rem;
    font-weight: 500;
    margin-top: 1rem;
    overflow: hidden;
    padding: 1.1rem;
    position: relative;
    transition: all .4s ease;
    width: 100%
}

.contact-page .contact-container .contact-form-wrapper .contact-form .submit-btn[data-v-63740087]:before {
    background: linear-gradient(90deg, transparent, hsla(0, 0%, 100%, .2), transparent);
    content: "";
    height: 100%;
    left: -100%;
    position: absolute;
    top: 0;
    transition: left .6s ease;
    width: 100%
}

.contact-page .contact-container .contact-form-wrapper .contact-form .submit-btn[data-v-63740087]:hover:not(:disabled) {
    background-color: #0d438c;
    box-shadow: 0 6px 16px #4299e133;
    transform: translateY(-3px)
}

.contact-page .contact-container .contact-form-wrapper .contact-form .submit-btn[data-v-63740087]:hover:not(:disabled):before {
    left: 100%
}

.contact-page .contact-container .contact-form-wrapper .contact-form .submit-btn[data-v-63740087]:disabled {
    background-color: #94a3b8;
    cursor: not-allowed;
    transform: none
}

.contact-page .contact-map[data-v-63740087] {
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 4px 12px #00000014;
    margin: auto;
    opacity: 0;
    padding: 2rem;
    transform: translateY(30px)
}

.contact-page .contact-map.animated[data-v-63740087] {
    opacity: 1;
    transform: translateY(0)
}

.contact-page .contact-map h3[data-v-63740087] {
    color: #0d438c;
    font-size: 1.6rem;
    margin-bottom: 1.2rem
}

.contact-page .contact-map p[data-v-63740087] {
    color: #0d438c;
    cursor: pointer;
    font-size: 1.1rem;
    margin-bottom: 1rem
}

.contact-page .contact-map p[data-v-63740087]:hover {
    text-decoration: underline
}

.contact-page .contact-map .map-placeholder[data-v-63740087] {
    border-radius: 8px;
    overflow: hidden;
    position: relative
}

.contact-page .contact-map .map-placeholder .map-img[data-v-63740087] {
    display: block;
    height: auto;
    transition: opacity all .4s ease;
    width: 100%
}

.contact-page .contact-map .map-placeholder .map-marker[data-v-63740087] {
    background-color: #fffffff2;
    border-radius: 30px;
    box-shadow: 0 4px 12px #00000014;
    cursor: pointer;
    font-weight: 500;
    left: 50%;
    padding: 1rem 2rem;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%) scale(.9);
    transition: all .4s ease
}

.contact-page .contact-map .map-placeholder .map-marker.pc-marker[data-v-63740087] {
    display: block
}
.contact-page .contact-map .map-placeholder .map-marker.pc-marker[data-v-63740087]::before{
    content: "📍 ";
    display: inline-block;
}
.contact-page .contact-map .map-placeholder .mobile-nav-btn[data-v-63740087] {
    display: none
}

.contact-page .success-modal[data-v-63740087] {
    align-items: center;
    animation: fade-in-63740087 .3s ease forwards;
    background-color: #00000080;
    display: flex;
    height: 100%;
    justify-content: center;
    left: 0;
    opacity: 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000
}

.contact-page .success-modal .modal-content[data-v-63740087] {
    animation: scale-in-63740087 .4s ease forwards;
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 30 #00000026;
    max-width: 450px;
    padding: 2.5rem;
    text-align: center;
    transform: scale(.9);
    width: 90%
}

.contact-page .success-modal .modal-content svg[data-v-63740087] {
    animation: scale-in-63740087 .4s ease .2s forwards;
    margin-bottom: 1.5rem;
    transform: scale(0)
}

.contact-page .success-modal .modal-content h4[data-v-63740087] {
    color: #0d438c;
    font-size: 1.3rem;
    margin: 0 0 .8rem
}

.contact-page .success-modal .modal-content p[data-v-63740087] {
    color: #666;
    margin-bottom: 2rem
}

.contact-page .success-modal .modal-content .close-btn[data-v-63740087] {
    background-color: #0d438c;
    border: none;
    border-radius: 6px;
    color: #fff;
    cursor: pointer;
    font-size: 1rem;
    padding: .9rem 2rem;
    transition: all .3s ease
}

.contact-page .success-modal .modal-content .close-btn[data-v-63740087]:hover {
    background-color: #0d438c;
    transform: translateY(-2px)
}

@keyframes fade-in-63740087 {
    0% {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

@keyframes slide-up-63740087 {
    0% {
        opacity: 0;
        transform: translateY(20px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

@keyframes slide-left-63740087 {
    0% {
        opacity: 0;
        transform: translate(-30px)
    }

    to {
        opacity: 1;
        transform: translate(0)
    }
}

@keyframes slide-right-63740087 {
    0% {
        opacity: 0;
        transform: translate(30px)
    }

    to {
        opacity: 1;
        transform: translate(0)
    }
}

@keyframes scale-in-63740087 {
    0% {
        opacity: 0;
        transform: scale(.9)
    }

    to {
        opacity: 1;
        transform: scale(1)
    }
}

@media(max-width:1024px) {
    .contact-page .contact-container[data-v-63740087] {
        gap: 2rem;
        grid-template-columns: 1fr;
        height: auto;
        min-height: auto
    }
}

@media(max-width:768px) {
    .contact-page[data-v-63740087] {
        padding: 1.5rem 1rem
    }

    .contact-page .contact-container[data-v-63740087] {
        display: flex;
        flex-direction: column;
        gap: 2rem;
        margin-bottom: 2rem
    }

    .contact-page .contact-container .contact-info-text[data-v-63740087] {
        height: auto !important;
        padding: 1.5rem
    }

    .contact-page .contact-container .contact-info-text .text-card[data-v-63740087] {
        padding: 1.5rem 0
    }

    .contact-page .contact-container .contact-info-text .text-card .text-card-title[data-v-63740087] {
        font-size: 1.1rem;
        margin-bottom: .5rem
    }

    .contact-page .contact-container .contact-info-text .text-card .text-card-content[data-v-63740087] {
        font-size: .95rem;
        margin-left: 2rem;
        padding-left: 0
    }

    .contact-page .contact-container .contact-form-wrapper[data-v-63740087] {
        height: auto !important
    }

    .contact-page .contact-container .contact-form-wrapper .contact-form[data-v-63740087] {
        height: auto;
        padding: 1.5rem
    }

    .contact-page .contact-container .contact-form-wrapper .contact-form h3[data-v-63740087] {
        font-size: 1.2rem;
        margin-bottom: 1.2rem
    }

    .contact-page .contact-container .contact-form-wrapper .contact-form form[data-v-63740087] {
        gap: 1rem
    }

    .contact-page .contact-container .contact-form-wrapper .contact-form .form-group label[data-v-63740087] {
        font-size: .9rem;
        margin-bottom: .4rem
    }

    .contact-page .contact-container .contact-form-wrapper .contact-form .form-group .form-input[data-v-63740087] {
        font-size: .95rem;
        padding: .8rem 1rem
    }

    .contact-page .contact-container .contact-form-wrapper .contact-form .submit-btn[data-v-63740087] {
        font-size: 1rem;
        margin-top: .5rem;
        padding: .9rem
    }

    .contact-page .contact-map[data-v-63740087] {
        clear: both;
        padding: 1.5rem
    }

    .contact-page .contact-map h3[data-v-63740087] {
        font-size: 1.3rem
    }

    .contact-page .contact-map p[data-v-63740087] {
        font-size: .95rem
    }

    .contact-page .contact-map .map-placeholder .pc-marker[data-v-63740087] {
        display: none
    }

    .contact-page .contact-map .map-placeholder .mobile-nav-btn[data-v-63740087] {
        align-items: center;
        background-color: #0d438c;
        border-radius: 50px;
        bottom: 20px;
        box-shadow: 0 4px 15px #0d438c4d;
        color: #fff;
        cursor: pointer;
        display: flex;
        font-size: 1rem;
        font-weight: 700;
        gap: 8px;
        justify-content: center;
        left: 50%;
        padding: 12px 0;
        position: absolute;
        transform: translate(-50%);
        width: 80%;
        z-index: 10
    }

    .contact-page .contact-map .map-placeholder .mobile-nav-btn svg[data-v-63740087] {
        height: 18px;
        width: 18px
    }

    .contact-page .contact-map .map-placeholder .mobile-nav-btn[data-v-63740087]:active {
        background-color: #0b3875;
        transform: translate(-50%) scale(.95)
    }
}

.contact-back-top[data-v-caa698c7] {
    align-items: center;
    bottom: 120px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    position: fixed;
    right: 20px;
    width: 48px;
    z-index: 99
}

.contact-back-top .contact-item[data-v-caa698c7] {
    cursor: pointer;
    position: relative
}

.contact-back-top .contact-text[data-v-caa698c7] {
    align-items: center;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 12px #0000001a;
    color: #0d438c;
    display: flex;
    font-size: 15px;
    justify-content: center;
    line-height: 1.4;
    padding: 10px 8px;
    text-orientation: mixed;
    transition: all .2s ease;
    white-space: nowrap;
    writing-mode: vertical-lr
}

.contact-back-top .contact-text img[data-v-caa698c7] {
    height: 17px;
    margin-bottom: 5px;
    width: 17px
}

.contact-back-top .contact-text[data-v-caa698c7]:hover {
    background-color: #f8f9fa;
    box-shadow: 0 6px 16px #0000001f
}

.contact-back-top .contact-text.no-icon[data-v-caa698c7] {
    font-weight: 500;
    padding: 10px 14px
}

.contact-back-top .contact-qrcode[data-v-caa698c7] {
    align-items: center;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 12px #0000001a;
    display: flex;
    height: 130px;
    justify-content: center;
    opacity: 0;
    position: absolute;
    right: calc(100% + 10px);
    top: 50%;
    transform: translateY(-50%);
    transition: all .3s ease-in-out;
    visibility: hidden;
    width: 130px;
    z-index: 100
}

.contact-back-top .contact-qrcode img[data-v-caa698c7] {
    border-radius: 4px;
    height: 110px;
    -o-object-fit: cover;
    object-fit: cover;
    width: 110px
}

.contact-back-top .contact-item:hover .contact-qrcode[data-v-caa698c7] {
    opacity: 1;
    visibility: visible
}

.contact-back-top .back-top-icon[data-v-caa698c7] {
    align-items: center;
    background-color: #0d438c;
    border-radius: 50%;
    box-shadow: 0 4px 12px #0000001a;
    cursor: pointer;
    display: flex;
    height: 48px;
    justify-content: center;
    transition: all .3s ease-in-out;
    width: 48px
}

.contact-back-top .back-top-icon[data-v-caa698c7]:hover {
    background-color: #1050a8;
    box-shadow: 0 6px 16px #0d438c4d;
    transform: translateY(-5px)
}

.contact-back-top .icon-hidden[data-v-caa698c7] {
    opacity: 0;
    pointer-events: none;
    visibility: hidden
}

@media(max-width:768px) {
    .contact-back-top[data-v-caa698c7] {
        display: none !important
    }
}

.contact[data-v-61eefb0c] {
    background-color: #fff;
    background-image: linear-gradient(#03184bcc,#324678cc), url(../images/architecture-1448221_1280.jpg);
    background-position: 50%;
    background-size: cover;
    box-sizing: border-box;
    height: 600px;
    position: relative;
    width: 100%
}
.contact[data-v-61eefb0c] a{
    color: #fff;
}
.contact .contact-title[data-v-61eefb0c] {
    align-items: center;
    box-sizing: border-box;
    color: #fff;
    display: flex;
    flex-direction: column;
    font-size: 18px;
    gap: 20px;
    height: 200px;
    justify-content: center;
    opacity: 0;
    transform: translateY(50px);
    transition: all .8s ease-out;
    width: 100%
}

.contact .contact-title h2[data-v-61eefb0c] {
    font-size: 30px
}

.contact .contact-title.animate-active[data-v-61eefb0c] {
    opacity: 1;
    transform: translateY(0)
}

.contact .contact-content[data-v-61eefb0c] {
    align-items: center;
    display: flex;
    height: 300px;
    justify-content: center;
    width: 100%
}

.contact .contact-content .contact-item[data-v-61eefb0c] {
    align-items: center;
    border-radius: 10px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 10px;
    height: 250px;
    justify-content: center;
    width: 20%
}

.contact .contact-content .contact-item .contact-icon[data-v-61eefb0c] {
    align-items: center;
    border: 2px solid #fff;
    border-radius: 50%;
    display: flex;
    height: 150px;
    justify-content: center;
    width: 150px
}

.contact .contact-content .contact-item .contact-text[data-v-61eefb0c] {
    align-items: center;
    color: #fff;
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: center
}

.contact .contact-content .contact-item .contact-text h2[data-v-61eefb0c] {
    font-size: 20px
}

.contact .contact-content .contact-item .contact-text p[data-v-61eefb0c] {
    font-size: 18px
}

.contact .contact-bottom[data-v-61eefb0c] {
    align-items: center;
    background-color: #0d438cbb;
    bottom: 0;
    box-sizing: border-box;
    color: #fff;
    display: flex;
    flex-direction: column;
    font-size: 18px;
    gap: 20px;
    height: 100px;
    justify-content: center;
    position: absolute;
    width: 100%
}

.mobile-footer[data-v-61eefb0c],
.phone-tabbar[data-v-61eefb0c],
.wechat-modal[data-v-61eefb0c] {
    display: none
}

@media(max-width:768px) {
    .contact[data-v-61eefb0c] {
        display: none
    }

    .mobile-footer[data-v-61eefb0c] {
        align-items: center;
        background-color: #f8f8f8;
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 20px 0 90px;
        width: 100%
    }

    .mobile-footer .back-top[data-v-61eefb0c] {
        align-items: center;
        background-color: #fff;
        border: 1px solid #ddd;
        border-radius: 30px;
        box-sizing: border-box;
        color: #666;
        cursor: pointer;
        display: flex;
        font-size: 14px;
        gap: 5px;
        margin-bottom: 20px;
        padding: 8px 16px
    }

    .mobile-footer .back-top[data-v-61eefb0c]:active {
        background-color: #f0f0f0
    }

    .mobile-footer .back-top .iconfont[data-v-61eefb0c] {
        font-size: 14px
    }

    .mobile-footer .copyright[data-v-61eefb0c] {
        color: #999;
        font-size: 12px;
        line-height: 1.8;
        text-align: center
    }

    .mobile-footer .copyright p[data-v-61eefb0c] {
        margin: 0
    }

    .phone-tabbar[data-v-61eefb0c] {
        align-items: center;
        background-color: #fff;
        border-top: 1px solid #e0e0e0;
        bottom: 0;
        box-shadow: 0 -2px 10px #0000000d;
        box-sizing: border-box;
        display: flex;
        height: 65px;
        justify-content: space-around;
        left: 0;
        padding-bottom: env(safe-area-inset-bottom);
        position: fixed;
        width: 100%;
        z-index: 999
    }

    .phone-tabbar .tab-item[data-v-61eefb0c] {
        align-items: center;
        color: #333;
        cursor: pointer;
        display: flex;
        flex: 1;
        flex-direction: column;
        height: 100%;
        justify-content: center;
        position: relative;
        text-decoration: none;
        -webkit-tap-highlight-color: transparent
    }

    .phone-tabbar .tab-item .iconfont[data-v-61eefb0c] {
        color: #666;
        font-size: 24px;
        margin-bottom: 4px;
        transition: color .3s
    }

    .phone-tabbar .tab-item span[data-v-61eefb0c] {
        font-size: 14px;
        font-weight: 500
    }

    .phone-tabbar .tab-item:active .iconfont[data-v-61eefb0c],
    .phone-tabbar .tab-item:active span[data-v-61eefb0c],
    .phone-tabbar .tab-item:hover .iconfont[data-v-61eefb0c],
    .phone-tabbar .tab-item:hover span[data-v-61eefb0c] {
        color: #0d438c
    }

    .phone-tabbar .tab-item[data-v-61eefb0c]:not(:last-child):after {
        background-color: #e0e0e0;
        content: "";
        height: 60%;
        position: absolute;
        right: 0;
        top: 20%;
        width: 1px
    }

    .wechat-modal[data-v-61eefb0c] {
        align-items: center;
        -webkit-backdrop-filter: blur(2px);
        backdrop-filter: blur(2px);
        background-color: #0009;
        display: flex;
        height: 100%;
        justify-content: center;
        left: 0;
        position: fixed;
        top: 0;
        width: 100%;
        z-index: 1000
    }

    .wechat-modal .modal-content[data-v-61eefb0c] {
        background-color: #fff;
        border-radius: 12px;
        box-shadow: 0 4px 20px #0003;
        max-width: 300px;
        padding: 30px;
        text-align: center;
        width: 70%
    }

    .wechat-modal .modal-content img[data-v-61eefb0c] {
        display: block;
        height: auto;
        margin-bottom: 10px;
        width: 100%
    }

    .wechat-modal .modal-content p[data-v-61eefb0c] {
        color: #666;
        font-size: 14px;
        margin: 5px 0
    }

    .wechat-modal .modal-content p[data-v-61eefb0c]:first-of-type {
        color: #333;
        font-weight: 700
    }
}

.fade-enter-active[data-v-61eefb0c],
.fade-leave-active[data-v-61eefb0c] {
    transition: opacity .3s ease
}

.fade-enter-from[data-v-61eefb0c],
.fade-leave-to[data-v-61eefb0c] {
    opacity: 0
}



[data-v-ea104060] {
    box-sizing: border-box;
    font-family: Microsoft Yahei, sans-serif;
    margin: 0;
    padding: 0
}

.download-page[data-v-ea104060] {
    background-color: #f5f5f5;
    min-height: 100vh;
    overflow-x: hidden;
    width: 100%
}

.download-header[data-v-ea104060] {
    background-color: #0d438c;
    border-bottom-left-radius: 70%;
    border-bottom-right-radius: 70%;
    color: #fff;
    margin-left: -10%;
    overflow: visible;
    padding-bottom: 400px;
    padding-top: 240px;
    width: 120%
}

.download-header[data-v-ea104060],
.header-content[data-v-ea104060] {
    display: flex;
    justify-content: center;
    position: relative
}

.header-content[data-v-ea104060] {
    align-items: center;
    flex-direction: column;
    gap: 40px;
    max-width: 1200px;
    padding: 80px 20px 0;
    text-align: center;
    width: 100%;
    z-index: 1
}

.product-name[data-v-ea104060] {
    font-size: 36px;
    font-weight: 400;
    text-align: center;
    width: 100%
}

.time[data-v-ea104060] {
    font-size: 18px
}

.time span[data-v-ea104060] {
    margin-left: 30px
}

.mobile-tip[data-v-ea104060] {
    color: #fff;
    display: none;
    font-size: 16px;
    margin: -10px 0 0;
    opacity: .9
}

.windows-download-btn[data-v-ea104060] {
    align-items: center;
    background-color: #fffffff9;
    border-radius: 40px;
    box-shadow: 0 4px 15px #0000001a;
    color: #0d438c;
    cursor: pointer;
    display: inline-flex;
    font-size: 20px;
    font-weight: 500;
    gap: 12px;
    margin: 0;
    padding: 18px 40px;
    text-decoration: none;
    transition: all .5s ease
}

.windows-download-btn[data-v-ea104060]:hover {
    background-color: #f8f8f8;
    box-shadow: 0 0 30px #fffc;
    transform: scale(1.05)
}

.win[data-v-ea104060] {
    align-items: center;
    background: linear-gradient(135deg, #fffc, #fff);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 10px;
    height: 140px;
    justify-content: center;
    position: relative;
    transition: background .6s ease, transform .6s ease;
    width: 140px
}

.win[data-v-ea104060],
.win[data-v-ea104060]:after {
    border-radius: 50%
}

.win[data-v-ea104060]:after {
    background: #0d438c0d;
    content: "";
    inset: 4px;
    position: absolute;
    transition: background .6s ease;
    z-index: 1
}

.win i[data-v-ea104060] {
    font-size: 48px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, .08)
}

.win i[data-v-ea104060],
.win span[data-v-ea104060] {
    color: #0d438c;
    transition: color .6s ease;
    z-index: 10
}

.win span[data-v-ea104060] {
    font-size: 18px;
    font-weight: 500
}

.win[data-v-ea104060]:hover {
    transform: scale(1.1)
}

.win-icon[data-v-ea104060] {
    height: 28px;
    position: relative;
    width: 28px
}

.win-icon i[data-v-ea104060] {
    color: #0d438c;
    font-size: 28px
}

.tip[data-v-ea104060] {
    color: #fff;
    font-size: 20px
}

@media(max-width:768px) {
    .product-name[data-v-ea104060] {
        font-size: 28px;
        transform: translateY(-10px)
    }

    .mobile-tip[data-v-ea104060] {
        color: #fff;
        display: block;
        font-size: 14px;
        opacity: .85
    }

    .windows-download-btn[data-v-ea104060] {
        border-radius: 25px;
        font-size: 17px;
        gap: 10px;
        justify-content: center;
        max-width: 80%;
        opacity: .9;
        padding: 14px 28px
    }

    .win-icon[data-v-ea104060] {
        height: 24px;
        width: 24px
    }

    .download-header[data-v-ea104060] {
        border-bottom-left-radius: 50%;
        border-bottom-right-radius: 50%;
        margin-left: -25%;
        padding-bottom: 200px;
        padding-top: 120px;
        width: 150%
    }

    .header-content[data-v-ea104060] {
        gap: 20px;
        padding-top: 40px
    }

    .win[data-v-ea104060] {
        box-shadow: 0 8px 24px #0000001f;
        gap: 8px;
        height: 110px;
        width: 110px
    }

    .win i[data-v-ea104060] {
        font-size: 36px
    }

    .win span[data-v-ea104060] {
        font-size: 15px
    }

    .win[data-v-ea104060]:hover {
        background: linear-gradient(135deg, #fffc, #fff)
    }

    .win[data-v-ea104060]:hover:after {
        background: #0d438c03
    }

    .win:hover i[data-v-ea104060],
    .win:hover span[data-v-ea104060] {
        color: #0d438c
    }

    .tip[data-v-ea104060] {
        font-size: 14px;
        line-height: 1.6;
        margin-top: 10px;
        max-width: 60%;
        opacity: .85;
        text-align: center
    }
}

.duty-top[data-v-4a184018] {
    height: 500px;
    margin-top: 100px;
    width: 100%
}

.duty-top .top[data-v-4a184018] {
    align-items: center;
    display: flex;
    height: 100%;
    justify-content: center;
    position: relative;
    width: 100%
}

.duty-top .top[data-v-4a184018]:before {
    background: url(../images/duty_bg.Cx1j9SlP.jpg) 50%/cover no-repeat;
    z-index: -2
}

.duty-top .top[data-v-4a184018]:after,
.duty-top .top[data-v-4a184018]:before {
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%
}

.duty-top .top[data-v-4a184018]:after {
    background-color: #00000080;
    z-index: -1
}

.duty-top .top .top-left[data-v-4a184018] {
    color: #fff;
    display: flex;
    font-size: 40px;
    font-weight: 700;
    justify-content: flex-end;
    opacity: 0;
    padding-right: 20px;
    transform: translate(20px) translateZ(0);
    transition: all .6s ease .2s;
    width: 7%;
    will-change: opacity, transform
}

.duty-top .top .top-left.left-animate[data-v-4a184018] {
    opacity: 1;
    transform: translate(0) translateZ(0)
}

.duty-top .top .top-right[data-v-4a184018] {
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    opacity: 0;
    transform: translate(100%) translateZ(0);
    transition: all .8s ease-out;
    width: 100%;
    will-change: opacity, transform
}

.duty-top .top .top-right h2[data-v-4a184018] {
    font-size: 36px;
    margin-bottom: 10px
}

.duty-top .top .top-right p[data-v-4a184018] {
    font-size: 20px;
    line-height: 1.5
}

.duty-top .top .top-right.animate-in[data-v-4a184018] {
    opacity: 1;
    transform: translate(0) translateZ(0)
}

@media(max-width:768px) {
    .duty-top[data-v-4a184018] {
        margin-top: 50px
    }

    .duty-top[data-v-4a184018],
    .duty-top .top[data-v-4a184018] {
        height: 280px
    }

    .duty-top .top .top-left[data-v-4a184018] {
        font-size: 24px;
        padding-right: 10px
    }

    .duty-top .top .top-right[data-v-4a184018] {
        transform: translate(50%) translateZ(0)
    }

    .duty-top .top .top-right h2[data-v-4a184018] {
        font-size: 24px
    }

    .duty-top .top .top-right p[data-v-4a184018] {
        font-size: 16px
    }
}

.duty-page[data-v-f3321189] {
    background-color: #f9f9f9;
    min-height: 100vh
}

.container[data-v-f3321189] {
    margin: 0 auto;
    max-width: 80%;
    padding: 0 20px
}

.tab-nav[data-v-f3321189] {
    background: #fff;
    box-shadow: 0 4px 20px #0000000d;
    position: sticky;
    top: 0;
    z-index: 10
}

.tab-nav .container[data-v-f3321189] {
    display: flex;
    gap: 60px;
    justify-content: center
}

.tab-nav .tab-btn[data-v-f3321189] {
    background: none;
    border: none;
    color: #666;
    cursor: pointer;
    font-size: 1.2rem;
    font-weight: 500;
    padding: 25px 0;
    position: relative;
    transition: all .3s
}

.tab-nav .tab-btn .icon[data-v-f3321189] {
    margin-right: 8px
}

.tab-nav .tab-btn[data-v-f3321189]:after {
    background: #0d438c;
    bottom: 0;
    content: "";
    height: 3px;
    left: 50%;
    position: absolute;
    transform: translate(-50%);
    transition: all .3s;
    width: 0
}

.tab-nav .tab-btn[data-v-f3321189]:hover {
    color: #0d438c
}

.tab-nav .tab-btn.active[data-v-f3321189] {
    color: #333;
    font-weight: 700
}

.tab-nav .tab-btn.active[data-v-f3321189]:after {
    width: 100%
}

.content-container[data-v-f3321189] {
    padding-bottom: 60px;
    padding-top: 60px
}

.intro-box[data-v-f3321189] {
    margin-bottom: 50px;
    margin-left: auto;
    margin-right: auto;
    max-width: 800px;
    text-align: center
}

.intro-box h2[data-v-f3321189] {
    color: #333;
    font-size: 2rem;
    margin-bottom: 20px
}

.intro-box p[data-v-f3321189] {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.8
}

.card-list[data-v-f3321189] {
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr))
}

.story-card[data-v-f3321189] {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px #0000000d;
    cursor: pointer;
    overflow: hidden;
    transition: transform .3s, box-shadow .3s
}

.story-card[data-v-f3321189]:hover {
    box-shadow: 0 10px 25px #0000001a;
    transform: translateY(-5px)
}

.story-card .img-wrapper[data-v-f3321189] {
    height: 240px;
    overflow: hidden;
    position: relative
}

.story-card .img-wrapper img[data-v-f3321189] {
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    transition: transform .5s;
    width: 100%
}

.story-card .img-wrapper .floating-tag[data-v-f3321189] {
    background: #ffffffe6;
    border-radius: 10px;
    color: #0d438c;
    font-size: .8rem;
    font-weight: 700;
    padding: 4px 12px;
    position: absolute;
    right: 15px;
    top: 15px
}

.story-card:hover .img-wrapper img[data-v-f3321189] {
    transform: scale(1.05)
}

.story-card .text-content[data-v-f3321189] {
    padding: 25px
}

.story-card .text-content .date[data-v-f3321189] {
    color: #999;
    display: block;
    font-size: .9rem;
    margin-bottom: 10px
}

.story-card .text-content h3[data-v-f3321189] {
    color: #333;
    font-size: 1.25rem;
    line-height: 1.4;
    margin-bottom: 12px
}

.story-card .text-content .desc[data-v-f3321189] {
    color: #666;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-height: 1.6;
    margin-bottom: 20px;
    -webkit-box-orient: vertical;
    overflow: hidden
}

.story-card .text-content .read-more[data-v-f3321189] {
    background: none;
    border: none;
    color: #0d438c;
    cursor: pointer;
    font-weight: 600;
    padding: 0
}

.story-card .text-content .read-more[data-v-f3321189]:hover {
    text-decoration: underline
}

.fade-enter-active[data-v-f3321189],
.fade-leave-active[data-v-f3321189] {
    transition: opacity .3s ease
}

.fade-enter-from[data-v-f3321189],
.fade-leave-to[data-v-f3321189] {
    opacity: 0
}

@media(max-width:768px) {
    .container[data-v-f3321189] {
        max-width: 100%;
        padding: 0 15px
    }

    .tab-nav .container[data-v-f3321189] {
        gap: 30px
    }

    .tab-nav .tab-btn[data-v-f3321189] {
        font-size: 1rem;
        padding: 15px 0
    }

    .content-container[data-v-f3321189] {
        padding-bottom: 30px;
        padding-top: 20px
    }

    .intro-box[data-v-f3321189] {
        margin-bottom: 20px
    }

    .intro-box h2[data-v-f3321189] {
        font-size: 1.4rem;
        margin-bottom: 10px
    }

    .intro-box p[data-v-f3321189] {
        font-size: .9rem;
        line-height: 1.5
    }

    .card-list[data-v-f3321189] {
        gap: 15px;
        grid-template-columns: 1fr
    }

    .story-card[data-v-f3321189] {
        align-items: stretch;
        border-radius: 5px;
        box-shadow: 0 3px 10px #0000000d;
        display: flex;
        flex-direction: row;
        height: 120px
    }

    .story-card[data-v-f3321189]:hover {
        transform: none
    }

    .story-card[data-v-f3321189]:active {
        background-color: #fcfcfc
    }

    .story-card .img-wrapper[data-v-f3321189] {
        flex-shrink: 0;
        height: 100%;
        width: 130px
    }

    .story-card .img-wrapper img[data-v-f3321189] {
        height: 100%;
        transform: none !important;
        width: 100%
    }

    .story-card .img-wrapper .floating-tag[data-v-f3321189] {
        display: none
    }

    .story-card .text-content[data-v-f3321189] {
        display: flex;
        flex: 1;
        flex-direction: column;
        justify-content: space-between;
        padding: 10px 12px;
        width: 0
    }

    .story-card .text-content h3[data-v-f3321189] {
        font-size: 15px;
        line-height: 1.3;
        margin-bottom: 4px;
        order: 1
    }

    .story-card .text-content .desc[data-v-f3321189],
    .story-card .text-content h3[data-v-f3321189] {
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden
    }

    .story-card .text-content .desc[data-v-f3321189] {
        color: #888;
        font-size: 12px;
        line-height: 1.4;
        margin-bottom: 0;
        order: 2
    }

    .story-card .text-content .date[data-v-f3321189] {
        color: #aaa;
        font-size: 12px;
        margin-bottom: 0;
        margin-top: auto;
        order: 3;
        text-align: right
    }

    .story-card .text-content .read-more[data-v-f3321189] {
        display: none
    }
}

.industry[data-v-3a073c0b] {
    background-color: #fff;
    margin: 0 auto;
    padding: 80px 0 120px;
    width: 100%
}

.industry .container[data-v-3a073c0b] {
    margin: 0 auto;
    width: 90%
}

.industry .industry-title[data-v-3a073c0b] {
    cursor: pointer;
    margin-bottom: 70px;
    text-align: center
}

.industry .industry-title h3[data-v-3a073c0b] {
    color: #333;
    font-size: 42px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 15px
}

.industry .industry-title .industry-line[data-v-3a073c0b] {
    background-color: #0d438c;
    border-radius: 3px;
    height: 6px;
    margin: 0 auto;
    width: 90px
}

.industry .industry-content[data-v-3a073c0b] {
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(3, 1fr)
}

.industry .industry-content .industry-card[data-v-3a073c0b] {
    animation: fadeInUp-3a073c0b .8s forwards;
    animation-delay: var(--delay);
    border-radius: 8px;
    box-shadow: 0 15px 35px #00000014;
    cursor: pointer;
    height: 520px;
    opacity: 0;
    overflow: hidden;
    position: relative;
    transform: translateY(30px);
    width: 100%
}

@keyframes fadeInUp-3a073c0b {
    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.industry .industry-content .industry-card .card-bg[data-v-3a073c0b] {
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%
}

.industry .industry-content .industry-card .card-bg .card-img[data-v-3a073c0b] {
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    transition: transform 1s;
    width: 100%
}

.industry .industry-content .industry-card .card-bg .img-mask[data-v-3a073c0b] {
    background: linear-gradient(180deg, transparent 0, rgba(0, 0, 0, .3) 50%, rgba(13, 67, 140, .9));
    height: 100%;
    left: 0;
    opacity: .8;
    position: absolute;
    top: 0;
    transition: all .5s ease;
    width: 100%
}

.industry .industry-content .industry-card .card-content[data-v-3a073c0b] {
    bottom: 0;
    box-sizing: border-box;
    color: #fff;
    left: 0;
    padding: 40px;
    position: absolute;
    transform: translateY(0);
    transition: transform .6s;
    width: 100%;
    z-index: 2
}

.industry .industry-content .industry-card .card-content .content-top[data-v-3a073c0b] {
    align-items: center;
    display: flex;
    gap: 15px;
    margin-bottom: 20px
}

.industry .industry-content .industry-card .card-content .content-top .index-num[data-v-3a073c0b] {
    font-family: Times New Roman, serif;
    font-size: 32px;
    font-style: italic;
    opacity: .5
}

.industry .industry-content .industry-card .card-content .content-top .card-name[data-v-3a073c0b] {
    font-size: 26px;
    font-weight: 700;
    letter-spacing: 1px
}

.industry .industry-content .industry-card .card-content .card-divider[data-v-3a073c0b] {
    background-color: #fff;
    height: 2px;
    margin-bottom: 0;
    opacity: 0;
    transition: all .6s ease;
    width: 0
}

.industry .industry-content .industry-card .card-content .card-desc[data-v-3a073c0b] {
    color: #fffc;
    font-size: 15px;
    line-height: 1.8;
    margin-top: 0;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all .6s
}

.industry .industry-content .industry-card .card-content .card-arrow[data-v-3a073c0b] {
    color: #0d438c;
    opacity: 0;
    position: absolute;
    right: 40px;
    top: 50px;
    transform: translate(-20px);
    transition: all .5s ease
}

.industry .industry-content .industry-card[data-v-3a073c0b]:hover {
    box-shadow: 0 25px 50px #0d438c40
}

.industry .industry-content .industry-card:hover .card-bg .card-img[data-v-3a073c0b] {
    transform: scale(1.1)
}

.industry .industry-content .industry-card:hover .card-bg .img-mask[data-v-3a073c0b] {
    background: linear-gradient(180deg, transparent 0, rgba(13, 67, 140, .5) 40%, rgba(13, 67, 140, .95))
}

.industry .industry-content .industry-card:hover .card-content[data-v-3a073c0b] {
    transform: translateY(-20px)
}

.industry .industry-content .industry-card:hover .card-content .card-divider[data-v-3a073c0b] {
    margin-bottom: 15px;
    opacity: 1;
    width: 50px
}

.industry .industry-content .industry-card:hover .card-content .card-desc[data-v-3a073c0b] {
    margin-top: 15px;
    max-height: 150px;
    opacity: 1
}

.industry .industry-content .industry-card:hover .card-content .card-arrow[data-v-3a073c0b] {
    opacity: 1;
    transform: translate(0)
}

.industry .industry-content .industry-card:hover .card-content .content-top .index-num[data-v-3a073c0b] {
    color: #fff;
    opacity: 1
}

.industry .pagination-wrapper[data-v-3a073c0b] {
    align-items: center;
    display: flex;
    gap: 40px;
    justify-content: center;
    margin-top: 80px;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none
}

.industry .pagination-wrapper .page-btn[data-v-3a073c0b] {
    background: none;
    border: none;
    color: #999;
    cursor: pointer;
    font-size: 14px;
    font-weight: 700;
    transition: color .3s
}

.industry .pagination-wrapper .page-btn[data-v-3a073c0b]:hover:not(:disabled) {
    color: #0d438c
}

.industry .pagination-wrapper .page-btn[data-v-3a073c0b]:disabled {
    cursor: not-allowed;
    opacity: .3
}

.industry .pagination-wrapper .page-numbers[data-v-3a073c0b] {
    display: flex;
    gap: 20px
}

.industry .pagination-wrapper .page-numbers .page-num[data-v-3a073c0b] {
    color: #999;
    cursor: pointer;
    font-family: Times New Roman, serif;
    font-size: 18px;
    padding: 5px 10px;
    position: relative;
    transition: all .3s
}

.industry .pagination-wrapper .page-numbers .page-num[data-v-3a073c0b]:after {
    background-color: #0d438c;
    bottom: 0;
    content: "";
    height: 2px;
    left: 50%;
    position: absolute;
    transform: translate(-50%);
    transition: width .3s ease;
    width: 0
}

.industry .pagination-wrapper .page-numbers .page-num[data-v-3a073c0b]:hover {
    color: #0d438c
}

.industry .pagination-wrapper .page-numbers .page-num.active[data-v-3a073c0b] {
    color: #0d438c;
    font-size: 22px;
    font-weight: 700
}

.industry .pagination-wrapper .page-numbers .page-num.active[data-v-3a073c0b]:after {
    width: 100%
}

.industry .image-viewer-mask[data-v-3a073c0b] {
    align-items: center;
    background-color: #000000e6;
    box-sizing: border-box;
    cursor: pointer;
    display: flex;
    height: 100vh;
    justify-content: center;
    left: 0;
    padding: 20px;
    position: fixed;
    top: 0;
    width: 100vw;
    z-index: 9999
}

.industry .image-viewer-mask .image-viewer-content[data-v-3a073c0b] {
    align-items: center;
    cursor: default;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: center;
    position: relative;
    width: 100%
}

.industry .image-viewer-mask .image-viewer-content .image-viewer-close[data-v-3a073c0b] {
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    position: absolute;
    right: 20px;
    top: 20px;
    transition: color .3s;
    z-index: 20
}

.industry .image-viewer-mask .image-viewer-content .image-viewer-close[data-v-3a073c0b]:hover {
    color: #0d438c
}

.industry .image-viewer-mask .image-viewer-content .nav-btn[data-v-3a073c0b] {
    align-items: center;
    background: #ffffff1a;
    border: none;
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    display: flex;
    justify-content: center;
    padding: 10px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    transition: all .3s;
    z-index: 10
}

.industry .image-viewer-mask .image-viewer-content .nav-btn[data-v-3a073c0b]:hover {
    background: #ffffff4d;
    color: #0d438c
}

.industry .image-viewer-mask .image-viewer-content .nav-btn.prev[data-v-3a073c0b] {
    left: 20px
}

.industry .image-viewer-mask .image-viewer-content .nav-btn.next[data-v-3a073c0b] {
    right: 20px
}

.industry .image-viewer-mask .image-viewer-content .viewer-body[data-v-3a073c0b] {
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-height: 90%;
    max-width: 90%
}

.industry .image-viewer-mask .image-viewer-content .viewer-body .main-image-wrapper[data-v-3a073c0b] {
    align-items: center;
    display: flex;
    flex: 1;
    justify-content: center;
    margin-bottom: 20px;
    overflow: hidden
}

.industry .image-viewer-mask .image-viewer-content .viewer-body .main-image-wrapper .viewer-img[data-v-3a073c0b] {
    border-radius: 4px;
    box-shadow: 0 0 20px #00000080;
    max-height: 70vh;
    max-width: 100%;
    -o-object-fit: contain;
    object-fit: contain;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none
}

.industry .image-viewer-mask .image-viewer-content .viewer-body .thumbnail-list[data-v-3a073c0b] {
    display: flex;
    gap: 10px;
    max-width: 100%;
    overflow-x: auto;
    padding: 5px;
    scrollbar-width: none
}

.industry .image-viewer-mask .image-viewer-content .viewer-body .thumbnail-list[data-v-3a073c0b]::-webkit-scrollbar {
    display: none
}

.industry .image-viewer-mask .image-viewer-content .viewer-body .thumbnail-list .thumb-item[data-v-3a073c0b] {
    border: 2px solid transparent;
    border-radius: 4px;
    cursor: pointer;
    flex-shrink: 0;
    height: 60px;
    opacity: .5;
    transition: all .3s ease;
    width: 60px
}

.industry .image-viewer-mask .image-viewer-content .viewer-body .thumbnail-list .thumb-item img[data-v-3a073c0b] {
    border-radius: 2px;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%
}

.industry .image-viewer-mask .image-viewer-content .viewer-body .thumbnail-list .thumb-item[data-v-3a073c0b]:hover {
    opacity: .8
}

.industry .image-viewer-mask .image-viewer-content .viewer-body .thumbnail-list .thumb-item.active[data-v-3a073c0b] {
    border-color: #0d438c;
    opacity: 1;
    transform: scale(1.1)
}

@media(max-width:1280px) {
    .industry[data-v-3a073c0b] {
        padding: 60px 0 100px
    }

    .industry .container[data-v-3a073c0b] {
        width: 94%
    }

    .industry .industry-content[data-v-3a073c0b] {
        gap: 25px;
        grid-template-columns: repeat(2, 1fr)
    }

    .industry .industry-content .industry-card[data-v-3a073c0b] {
        height: 420px
    }

    .industry .industry-content .industry-card .card-content[data-v-3a073c0b] {
        padding: 30px
    }

    .industry .industry-content .industry-card .card-content .content-top .card-name[data-v-3a073c0b] {
        font-size: 24px
    }
}

@media(max-width:768px) {
    .industry[data-v-3a073c0b] {
        padding: 30px 0 50px
    }

    .industry .industry-title[data-v-3a073c0b] {
        margin-bottom: 20px
    }

    .industry .industry-title h3[data-v-3a073c0b] {
        font-size: 24px;
        margin-bottom: 10px
    }

    .industry .industry-title .industry-line[data-v-3a073c0b] {
        height: 3px;
        width: 50px
    }

    .industry .industry-content[data-v-3a073c0b] {
        gap: 10px;
        grid-template-columns: repeat(2, 1fr)
    }

    .industry .industry-content .industry-card[data-v-3a073c0b] {
        border-radius: 6px;
        height: 180px
    }

    .industry .industry-content .industry-card .card-bg .img-mask[data-v-3a073c0b] {
        background: linear-gradient(180deg, transparent 0, rgba(0, 0, 0, .2) 30%, rgba(0, 0, 0, .8));
        opacity: 1
    }

    .industry .industry-content .industry-card .card-content[data-v-3a073c0b] {
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        padding: 12px
    }

    .industry .industry-content .industry-card .card-content .content-top[data-v-3a073c0b] {
        align-items: flex-end;
        gap: 6px;
        margin-bottom: 0
    }

    .industry .industry-content .industry-card .card-content .content-top .index-num[data-v-3a073c0b] {
        font-size: 16px;
        line-height: 1
    }

    .industry .industry-content .industry-card .card-content .content-top .card-name[data-v-3a073c0b] {
        font-size: 15px;
        line-height: 1.2;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        width: 100%
    }

    .industry .industry-content .industry-card .card-content .card-arrow[data-v-3a073c0b] {
        display: none
    }

    .industry .industry-content .industry-card .card-content .card-divider[data-v-3a073c0b] {
        height: 1px;
        margin-bottom: 0
    }

    .industry .industry-content .industry-card .card-content .card-desc[data-v-3a073c0b] {
        display: -webkit-box;
        font-size: 12px;
        -webkit-line-clamp: 3;
        line-height: 1.4;
        -webkit-box-orient: vertical
    }

    .industry .industry-content .industry-card:active .card-bg .card-img[data-v-3a073c0b] {
        transform: scale(1.05)
    }

    .industry .industry-content .industry-card:active .card-content[data-v-3a073c0b] {
        transform: translateY(-5px)
    }

    .industry .industry-content .industry-card:active .card-content .content-top[data-v-3a073c0b] {
        margin-bottom: 5px
    }

    .industry .industry-content .industry-card:active .card-content .card-divider[data-v-3a073c0b] {
        margin-bottom: 5px;
        opacity: 1;
        width: 30px
    }

    .industry .industry-content .industry-card:active .card-content .card-desc[data-v-3a073c0b] {
        margin-top: 5px;
        max-height: 80px;
        opacity: 1
    }

    .industry .pagination-wrapper[data-v-3a073c0b] {
        gap: 15px;
        margin-top: 30px
    }

    .industry .pagination-wrapper .page-btn[data-v-3a073c0b] {
        font-size: 13px
    }

    .industry .pagination-wrapper .page-numbers[data-v-3a073c0b] {
        gap: 8px
    }

    .industry .pagination-wrapper .page-numbers .page-num[data-v-3a073c0b] {
        font-size: 14px;
        padding: 2px 6px
    }

    .industry .pagination-wrapper .page-numbers .page-num.active[data-v-3a073c0b] {
        font-size: 18px
    }

    .industry .image-viewer-mask .image-viewer-content .image-viewer-close[data-v-3a073c0b] {
        height: 24px;
        right: 15px;
        top: 15px;
        width: 24px
    }

    .industry .image-viewer-mask .image-viewer-content .nav-btn[data-v-3a073c0b] {
        display: none !important
    }

    .industry .image-viewer-mask .image-viewer-content .viewer-body[data-v-3a073c0b] {
        max-width: 100%;
        padding: 0 10px
    }

    .industry .image-viewer-mask .image-viewer-content .viewer-body .main-image-wrapper[data-v-3a073c0b] {
        margin-bottom: 15px
    }

    .industry .image-viewer-mask .image-viewer-content .viewer-body .main-image-wrapper .viewer-img[data-v-3a073c0b] {
        max-height: 50vh
    }

    .industry .image-viewer-mask .image-viewer-content .viewer-body .thumbnail-list[data-v-3a073c0b] {
        gap: 8px;
        padding: 0
    }

    .industry .image-viewer-mask .image-viewer-content .viewer-body .thumbnail-list .thumb-item[data-v-3a073c0b] {
        border-radius: 4px;
        height: 45px;
        width: 45px
    }
}


[data-v-da2dc67c] {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

.news-top[data-v-da2dc67c] {
    height: 500px;
    margin-top: 100px;
    width: 100%
}

.news-top .top[data-v-da2dc67c] {
    align-items: center;
    background-blend-mode: multiply;
    background-color: #00000080;
    background-image: url(../images/news.kmZj3Vdb.webp);
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    height: 100%;
    justify-content: center;
    overflow: hidden;
    width: 100%
}

.news-top .top .top-left[data-v-da2dc67c] {
    color: #fff;
    display: flex;
    font-size: 40px;
    font-weight: 700;
    justify-content: flex-end;
    opacity: 0;
    padding-right: 20px;
    transform: translate(20px);
    transition: all .6s ease .2s;
    width: 7%
}

.news-top .top .top-left.left-animate[data-v-da2dc67c] {
    opacity: 1;
    transform: translate(0)
}

.news-top .top .top-right[data-v-da2dc67c] {
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    opacity: 0;
    transform: translate(100%);
    transition: all .8s ease-out;
    width: 100%
}

.news-top .top .top-right h2[data-v-da2dc67c] {
    font-size: 36px;
    margin-bottom: 10px
}

.news-top .top .top-right p[data-v-da2dc67c] {
    font-size: 20px;
    line-height: 1.5
}

.news-top .top .top-right.animate-in[data-v-da2dc67c] {
    opacity: 1;
    transform: translate(0)
}

@media(max-width:768px) {
    .news-top[data-v-da2dc67c] {
        margin-top: 50px
    }

    .news-top[data-v-da2dc67c],
    .news-top .top[data-v-da2dc67c] {
        height: 280px
    }

    .news-top .top .top-left[data-v-da2dc67c] {
        font-size: 24px;
        padding-right: 10px
    }

    .news-top .top .top-right[data-v-da2dc67c] {
        transform: translate(50%)
    }

    .news-top .top .top-right h2[data-v-da2dc67c] {
        font-size: 24px
    }

    .news-top .top .top-right p[data-v-da2dc67c] {
        font-size: 16px
    }
}

html[data-v-161981b9] {
    scroll-behavior: smooth;
    scroll-padding-top: 20px
}

[data-v-161981b9] {
    margin: 0;
    padding: 0
}

[data-v-161981b9],
.news[data-v-161981b9] {
    box-sizing: border-box
}

.news[data-v-161981b9] {
    overflow-x: hidden;
    padding-top: 30px;
    width: 100%
}

.news .news-title[data-v-161981b9] {
    align-items: center;
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: center;
    margin-bottom: 35px;
    padding: 30px 0;
    width: 100%
}

.news .news-title h1[data-v-161981b9] {
    color: #333;
    font-size: clamp(1.5rem, 5vw, 2.5rem);
    margin: 0
}

.news .news-title .news-line[data-v-161981b9] {
    background: #0d438c;
    border-radius: 2px;
    height: 4px;
    width: 80px
}

.news .news-list[data-v-161981b9] {
    box-sizing: border-box;
    cursor: pointer;
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(2, 1fr);
    height: 100%;
    margin: 0 auto;
    max-width: 100%;
    padding: 20px 0;
    text-decoration: none;
    width: 92%
}

.news .news-list .news-item[data-v-161981b9] {
    border-radius: 5px;
    box-shadow: 0 0 10px #0000001a;
    box-sizing: border-box;
    display: flex;
    gap: 20px;
    height: 300px;
    justify-content: space-between;
    opacity: 0;
    padding: 20px;
    position: relative;
    transform: translate3d(150px, 0, 0);
    transition: all .8s ease-out
}

.news .news-list .news-item .news-img[data-v-161981b9] {
    box-sizing: border-box;
    height: 100%;
    overflow: hidden;
    position: relative;
    transition: transform .5s ease;
    width: 40%
}

.news .news-list .news-item .news-img .img[data-v-161981b9] {
    box-sizing: border-box;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    transition: transform .5s ease;
    width: 100%
}

.news .news-list .news-item .news-content[data-v-161981b9] {
    height: 100%;
    width: 60%
}

.news .news-list .news-item .news-content h3[data-v-161981b9] {
    color: #333;
    font-size: 1.3rem;
    height: 20%;
    line-height: 40px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
}

.news .news-list .news-item .news-content p[data-v-161981b9] {
    color: #666;
    display: -webkit-box;
    font-size: 1rem;
    height: 150px;
    line-height: 30px;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 5;
    word-break: break-word
}

.news .news-list .news-item .news-content span[data-v-161981b9] {
    color: #999;
    display: block;
    font-size: .8rem;
    height: 20%;
    line-height: 35px;
    margin-top: 10px;
    text-align: right
}

.news .news-list .news-item.animate-active[data-v-161981b9] {
    opacity: 1;
    transform: translateZ(0)
}

.news .news-list .news-item[data-v-161981b9]:hover {
    box-shadow: 0 0 15px #0003;
    transform: translateY(-5px)
}

.news .news-list .news-item:hover img[data-v-161981b9] {
    transform: scale(1.1)
}

.news .news-list .news-item:hover h3[data-v-161981b9] {
    color: #0d438c
}

.news .pages[data-v-161981b9] {
    align-items: center;
    display: flex;
    justify-content: center;
    padding: 30px 0;
    width: 100%
}

@media(max-width:768px) {
    .news[data-v-161981b9] {
        padding-top: 10px
    }

    .news .news-title[data-v-161981b9] {
        margin-bottom: 0;
        padding: 15px 0
    }

    .news .news-title h1[data-v-161981b9] {
        font-size: 20px
    }

    .news .news-title .news-line[data-v-161981b9] {
        height: 3px;
        width: 40px
    }

    .news .news-list[data-v-161981b9] {
        gap: 12px;
        grid-template-columns: 1fr;
        margin: 0 auto;
        padding: 10px 0;
        width: 96%
    }

    .news .news-list .news-item[data-v-161981b9] {
        align-items: center;
        flex-direction: row;
        gap: 12px;
        height: 110px;
        padding: 10px;
        transform: translate3d(20px, 0, 0)
    }

    .news .news-list .news-item .news-img[data-v-161981b9] {
        border-radius: 4px;
        flex-shrink: 0;
        height: 100%;
        margin-bottom: 0;
        width: 120px
    }

    .news .news-list .news-item .news-img .img[data-v-161981b9] {
        height: 100%;
        -o-object-fit: cover;
        object-fit: cover;
        width: 100%
    }

    .news .news-list .news-item .news-content[data-v-161981b9] {
        display: flex;
        flex: 1;
        flex-direction: column;
        height: 100%;
        justify-content: space-between;
        padding-top: 0;
        width: 0
    }

    .news .news-list .news-item .news-content h3[data-v-161981b9] {
        display: -webkit-box;
        font-size: 15px !important;
        height: auto;
        -webkit-line-clamp: 2;
        line-height: 1.3;
        margin-bottom: 4px;
        white-space: normal;
        -webkit-box-orient: vertical;
        overflow: hidden
    }

    .news .news-list .news-item .news-content p[data-v-161981b9] {
        color: #888;
        display: -webkit-box;
        font-size: 12px !important;
        height: auto;
        -webkit-line-clamp: 1;
        line-height: 1.4;
        margin-bottom: 0;
        -webkit-box-orient: vertical;
        overflow: hidden
    }

    .news .news-list .news-item .news-content span[data-v-161981b9] {
        color: #aaa;
        font-size: 12px !important;
        height: auto;
        line-height: 1;
        margin-top: auto;
        text-align: right
    }

    .news .news-list .news-item[data-v-161981b9]:active {
        background-color: #fafafa;
        transform: scale(.99) translateZ(0)
    }

    .news .pages[data-v-161981b9] {
        padding: 15px 0
    }
}


[data-v-52df8663] {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

.product-top[data-v-52df8663] {
    height: 500px;
    margin-top: 100px;
    width: 100%
}

.product-top .top[data-v-52df8663] {
    align-items: center;
    background-blend-mode: multiply;
    background-color: #00000080;
    background-image: url(../images/bg3.C1iJ_wVs.jpg);
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    height: 100%;
    justify-content: center;
    overflow: hidden;
    width: 100%
}

.product-top .top .top-left[data-v-52df8663] {
    color: #fff;
    display: flex;
    font-size: 40px;
    font-weight: 700;
    justify-content: flex-end;
    opacity: 0;
    padding-right: 20px;
    transform: translate(20px);
    transition: all .6s ease .2s;
    width: 7%
}

.product-top .top .top-left.left-animate[data-v-52df8663] {
    opacity: 1;
    transform: translate(0)
}

.product-top .top .top-right[data-v-52df8663] {
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 100%;
    opacity: 0;
    transform: translate(100%);
    transition: all .8s ease-out;
    width: 100%
}

.product-top .top .top-right h2[data-v-52df8663] {
    font-size: 36px;
    margin-bottom: 10px
}

.product-top .top .top-right p[data-v-52df8663] {
    font-size: 20px;
    line-height: 1.5
}

.product-top .top .top-right.animate-in[data-v-52df8663] {
    opacity: 1;
    transform: translate(0)
}

@media(max-width:768px) {
    .product-top[data-v-52df8663] {
        height: 280px;
        margin-top: 50px
    }

    .product-top .top[data-v-52df8663] {
        height: 280px
    }

    .product-top .top .top-left[data-v-52df8663] {
        font-size: 24px;
        padding-right: 10px
    }

    .product-top .top .top-right[data-v-52df8663] {
        max-width: 90%;
        transform: translate(50%)
    }

    .product-top .top .top-right h2[data-v-52df8663] {
        font-size: 24px
    }

    .product-top .top .top-right p[data-v-52df8663] {
        font-size: 16px
    }
}

html {
    overflow-y: scroll
}

.product-page[data-v-d638051a] {
    background-color: #f5f5f5;
    background: linear-gradient(180deg, #cfe8f5, #e8f4f9);
    width: 100%
}

.main-content[data-v-d638051a] {
    margin: 0 auto;
    max-width: 1800px;
    padding-top: 40px;
    width: 88%
}

.category-header[data-v-d638051a] {
    margin-bottom: 50px;
    text-align: center
}

.category-header h2[data-v-d638051a] {
    color: #333;
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 16px
}

.category-header .header-line[data-v-d638051a] {
    background-color: #0d438c;
    border-radius: 4px;
    height: 5px;
    margin: 0 auto 24px;
    width: 90px
}

.category-header .category-desc[data-v-d638051a] {
    align-items: center;
    color: #666;
    display: flex;
    font-size: 16px;
    justify-content: center;
    line-height: 1.6;
    margin: 0 auto;
    max-width: 800px;
    min-height: 52px
}

.product-card-list[data-v-d638051a] {
    align-items: start;
    display: grid;
    gap: 50px;
    grid-template-columns: repeat(4, 1fr);
    margin-bottom: 80px
}

.product-card-list .product-card[data-v-d638051a] {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 10px #0000000d;
    cursor: pointer;
    height: auto;
    overflow: hidden;
    position: relative;
    transition: all .4s cubic-bezier(.25, .46, .45, .94)
}

.product-card-list .product-card[data-v-d638051a]:hover {
    box-shadow: 0 16px 36px #00000026;
    transform: translateY(-6px)
}

.product-card-list .product-card:hover .card-mask[data-v-d638051a] {
    opacity: 1
}

.product-card-list .product-card:hover .mask-content[data-v-d638051a] {
    transform: translateY(0)
}

.product-card-list .product-card .card-image-wrapper[data-v-d638051a] {
    line-height: 0;
    position: relative;
    width: 100%
}

.product-card-list .product-card .card-image-wrapper img[data-v-d638051a] {
    display: block;
    height: auto;
    width: 100%
}

.product-card-list .product-card .card-tag[data-v-d638051a] {
    background: #0d438ce6;
    border-radius: 4px;
    color: #fff;
    font-size: 12px;
    left: 15px;
    line-height: 1.4;
    padding: 4px 12px;
    position: absolute;
    top: 15px;
    z-index: 2
}

.product-card-list .product-card .card-bottom-bar[data-v-d638051a] {
    background: linear-gradient(0deg, rgba(0, 0, 0, .7), transparent);
    bottom: 0;
    left: 0;
    line-height: normal;
    padding: 60px 20px 20px;
    position: absolute;
    width: 100%;
    z-index: 2
}

.product-card-list .product-card .card-bottom-bar .title[data-v-d638051a] {
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    margin: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    text-shadow: 0 2px 4px rgba(0, 0, 0, .3);
    white-space: nowrap
}

.product-card-list .product-card .card-mask[data-v-d638051a] {
    align-items: center;
    background-color: #0d438cf0;
    box-sizing: border-box;
    color: #fff;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: center;
    left: 0;
    line-height: 1.5;
    opacity: 0;
    padding: 20px;
    position: absolute;
    text-align: center;
    top: 0;
    transition: opacity .4s ease;
    width: 100%;
    z-index: 3
}

.product-card-list .product-card .card-mask .mask-content[data-v-d638051a] {
    transform: translateY(20px);
    transition: transform .4s ease;
    width: 100%
}

.product-card-list .product-card .card-mask .mask-title[data-v-d638051a] {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px
}

.product-card-list .product-card .card-mask .mask-line[data-v-d638051a] {
    background: #fff;
    margin: 0 auto 20px;
    opacity: .8;
    width: 30px
}

.product-card-list .product-card .card-mask .mask-desc[data-v-d638051a] {
    display: -webkit-box;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 25px;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    overflow: hidden
}

.product-card-list .product-card .card-mask .mask-btn[data-v-d638051a] {
    border: 1px solid hsla(0, 0%, 100%, .6);
    border-radius: 20px;
    cursor: pointer;
    display: inline-block;
    font-size: 14px;
    padding: 6px 24px;
    color: #fff;
    transition: all .3s
}

.product-card-list .product-card .card-mask .mask-btn[data-v-d638051a]:hover {
    background: #fff;
    color: #0d438c
}

.product-card-list .placeholder-card[data-v-d638051a] {
    height: 0;
    margin: 0;
    padding: 0;
    pointer-events: none;
    visibility: hidden
}

.pagination[data-v-d638051a] {
    align-items: center;
    display: flex;
    gap: 12px;
    justify-content: center
}

.pagination .page-number[data-v-d638051a],
.pagination .prev-next[data-v-d638051a] {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 6px;
    color: #666;
    cursor: pointer;
    font-size: 16px;
    height: 44px;
    min-width: 44px;
    padding: 0 16px;
    transition: all .3s
}

.pagination .page-number[data-v-d638051a]:hover:not(:disabled),
.pagination .prev-next[data-v-d638051a]:hover:not(:disabled) {
    border-color: #0d438c;
    color: #fff
}

.pagination .page-number.active[data-v-d638051a],
.pagination .prev-next.active[data-v-d638051a] {
    background-color: #0d438c;
    border-color: #0d438c;
    color: #fff
}

.pagination .page-number[data-v-d638051a]:disabled,
.pagination .prev-next[data-v-d638051a]:disabled {
    background: #f5f5f5;
    color: #ccc;
    cursor: not-allowed
}

@media(max-width:1800px) {
    .product-card-list[data-v-d638051a] {
        grid-template-columns: repeat(3, 1fr)
    }
}

@media(max-width:1200px) {
    .product-card-list[data-v-d638051a] {
        grid-template-columns: repeat(3, 1fr)
    }
}

@media(max-width:900px) {
    .product-card-list[data-v-d638051a] {
        gap: 20px;
        grid-template-columns: repeat(2, 1fr)
    }
}

@media(max-width:768px) {
    .main-content[data-v-d638051a] {
        margin-top: 30px;
        width: 94%
    }

    .category-header[data-v-d638051a] {
        margin-bottom: 30px
    }

    .category-header h2[data-v-d638051a] {
        font-size: 28px
    }

    .category-header .category-desc[data-v-d638051a] {
        font-size: 14px;
        min-height: auto;
        padding: 0 5px
    }

    .product-card-list[data-v-d638051a] {
        gap: 10px;
        grid-template-columns: repeat(2, 1fr)
    }

    .product-card-list .product-card .card-tag[data-v-d638051a] {
        font-size: 10px;
        left: 8px;
        padding: 2px 6px;
        top: 8px
    }

    .product-card-list .product-card .card-bottom-bar[data-v-d638051a] {
        padding: 30px 10px 10px
    }

    .product-card-list .product-card .card-bottom-bar .title[data-v-d638051a] {
        font-size: 13px
    }

    .product-card-list .product-card .card-mask[data-v-d638051a] {
        display: none
    }
}

.image-modal[data-v-d638051a] {
    align-items: center;
    background-color: #000000d9;
    cursor: zoom-out;
    display: flex;
    height: 100vh;
    justify-content: center;
    left: 0;
    position: fixed;
    top: 0;
    width: 100vw;
    z-index: 1000
}

.image-modal .modal-content[data-v-d638051a] {
    align-items: center;
    cursor: default;
    display: flex;
    flex-direction: column;
    max-height: 90%;
    max-width: 90%;
    position: relative
}

.image-modal .modal-content img[data-v-d638051a] {
    border-radius: 4px;
    box-shadow: 0 0 20px #00000080;
    max-height: 70vh;
    max-width: 100%;
    -o-object-fit: contain;
    object-fit: contain
}

.image-modal .modal-content .close-btn[data-v-d638051a] {
    color: #fff;
    cursor: pointer;
    font-size: 36px;
    font-weight: 300;
    position: absolute;
    right: -20px;
    top: -50px;
    transition: all .3s
}

.image-modal .modal-content .close-btn[data-v-d638051a]:hover {
    color: #0d438c;
    transform: rotate(90deg)
}

.image-modal .modal-content .modal-info[data-v-d638051a] {
    color: #fff;
    margin-top: 20px;
    text-align: center
}

.image-modal .modal-content .modal-info h3[data-v-d638051a] {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 10px
}

.image-modal .modal-content .modal-info p[data-v-d638051a] {
    font-size: 16px;
    line-height: 1.5;
    max-width: 600px;
    opacity: .8
}

.fade-enter-active[data-v-d638051a],
.fade-leave-active[data-v-d638051a] {
    transition: opacity .3s ease
}

.fade-enter-from[data-v-d638051a],
.fade-leave-to[data-v-d638051a] {
    opacity: 0
}


[data-v-60465c91] {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

.sairun-voice-container[data-v-60465c91] {
    background-color: #f5f7fa;
    min-height: 100vh;
    padding-bottom: 50px;
    padding-top: 100px;
    width: 100%
}

.product-top[data-v-60465c91] {
    height: 500px;
    margin-top: 0;
    width: 100%
}

.product-top .top[data-v-60465c91] {
    align-items: center;
    background-blend-mode: multiply;
    background-color: #00000080;
    background-image: url(../images/sairun.Dgxgph0H.jpg);
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    height: 100%;
    justify-content: center;
    overflow: hidden;
    width: 100%
}

.product-top .top .top-left[data-v-60465c91] {
    color: #fff;
    display: flex;
    font-size: 40px;
    font-weight: 700;
    justify-content: flex-end;
    opacity: 0;
    padding-right: 20px;
    transform: translate(20px);
    transition: all .6s ease .2s;
    width: 7%
}

.product-top .top .top-left.left-animate[data-v-60465c91] {
    opacity: 1;
    transform: translate(0)
}

.product-top .top .top-right[data-v-60465c91] {
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 100%;
    opacity: 0;
    transform: translate(100%);
    transition: all .8s ease-out;
    width: 100%
}

.product-top .top .top-right h2[data-v-60465c91] {
    font-size: 36px;
    margin-bottom: 10px
}

.product-top .top .top-right p[data-v-60465c91] {
    font-size: 20px;
    line-height: 1.5
}

.product-top .top .top-right.animate-in[data-v-60465c91] {
    opacity: 1;
    transform: translate(0)
}

@media(max-width:768px) {

    .product-top[data-v-60465c91],
    .product-top .top[data-v-60465c91] {
        height: 280px
    }

    .product-top .top .top-left[data-v-60465c91] {
        font-size: 24px;
        padding-right: 10px;
        width: 10%
    }

    .product-top .top .top-right[data-v-60465c91] {
        max-width: 90%;
        padding-left: 10px;
        transform: translate(50%)
    }

    .product-top .top .top-right h2[data-v-60465c91] {
        font-size: 24px
    }

    .product-top .top .top-right p[data-v-60465c91] {
        font-size: 14px
    }
}

.content-wrapper[data-v-60465c91] {
    margin: -60px auto 0;
    max-width: 1800px;
    padding: 0 40px;
    position: relative;
    z-index: 10
}

.card-grid[data-v-60465c91] {
    display: grid;
    gap: 40px;
    grid-template-columns: repeat(2, 1fr);
    width: 100%
}

.episode-card[data-v-60465c91] {
    animation: slideUp-60465c91 .6s ease-out forwards;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 30px #0000000d;
    display: flex;
    flex-direction: column;
    height: 100%;
    opacity: 0;
    padding: 40px;
    transition: transform .3s ease, box-shadow .3s ease
}

.episode-card[data-v-60465c91]:hover {
    box-shadow: 0 25px 50px #0d438c26;
    transform: translateY(-8px)
}

.card-header[data-v-60465c91] {
    border-bottom: 1px solid #f0f0f0;
    margin-bottom: 18px;
    padding-bottom: 16px
}

.card-header .tag-row[data-v-60465c91] {
    align-items: center;
    display: flex;
    justify-content: space-between
}

.card-header .episode-tag[data-v-60465c91] {
    background-color: #0d438c;
    border-radius: 6px;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    padding: 6px 16px
}

.card-header .date-tag[data-v-60465c91] {
    color: #999;
    font-size: 14px
}

.card-body[data-v-60465c91] {
    align-items: flex-start;
    display: flex;
    flex-direction: row;
    gap: 30px;
    margin-bottom: 30px
}

.card-body .featured-image[data-v-60465c91] {
    border-radius: 12px;
    box-shadow: 0 4px 15px #00000014;
    cursor: pointer;
    flex: 0 0 320px;
    height: 200px;
    overflow: hidden
}

.card-body .featured-image img[data-v-60465c91] {
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    transition: transform .5s;
    width: 100%
}

.card-body .featured-image:hover img[data-v-60465c91] {
    transform: scale(1.05)
}

.body-right[data-v-60465c91] {
    cursor: pointer;
    display: flex;
    flex: 1;
    flex-direction: column;
    min-width: 0
}

.episode-title[data-v-60465c91] {
    color: #333;
    font-size: 20px;
    -webkit-line-clamp: 2;
    margin: 0 0 12px;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis
}

.episode-title[data-v-60465c91],
.intro-text[data-v-60465c91] {
    display: -webkit-box;
    overflow: hidden
}

.intro-text[data-v-60465c91] {
    color: #666;
    font-size: 16px;
    height: 144px;
    -webkit-line-clamp: 5;
    line-height: 1.8;
    text-align: justify;
    -webkit-line-orient: vertical
}

.guests-section[data-v-60465c91] {
    margin-bottom: 30px
}

.guests-section h3[data-v-60465c91] {
    border-left: 4px solid #0d438c;
    color: #0d438c;
    font-size: 18px;
    margin-bottom: 16px;
    padding-left: 12px
}

.guest-profile[data-v-60465c91] {
    background: #eef2f7;
    border-radius: 10px;
    margin-bottom: 15px;
    padding: 20px
}

.guest-profile .guest-header[data-v-60465c91] {
    align-items: baseline;
    display: flex;
    gap: 12px;
    margin-bottom: 10px
}

.guest-profile .guest-header .guest-name[data-v-60465c91] {
    color: #333;
    font-size: 18px;
    font-weight: 700
}

.guest-profile .guest-header .guest-role[data-v-60465c91] {
    background: #0d438c14;
    border-radius: 4px;
    color: #0d438c;
    font-size: 14px;
    padding: 2px 8px
}

.guest-profile.highlight[data-v-60465c91] {
    background: linear-gradient(90deg, #fdfbf7, #f7f3e8);
    border: 1px solid #efe5d0
}

.guest-profile .guest-bio[data-v-60465c91] {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 8px
}

.guest-profile .guest-titles[data-v-60465c91] {
    list-style: none;
    padding: 0
}

.guest-profile .guest-titles li[data-v-60465c91] {
    color: #666;
    font-size: 14px;
    margin-bottom: 4px;
    padding-left: 14px;
    position: relative
}

.guest-profile .guest-titles li[data-v-60465c91]:before {
    color: #0d438c;
    content: "•";
    font-weight: 700;
    left: 0;
    position: absolute
}

.card-footer[data-v-60465c91] {
    align-items: center;
    border-top: 1px dashed #eee;
    display: flex;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 25px
}

.card-footer .action-btn[data-v-60465c91] {
    background: #0d438c;
    border: none;
    border-radius: 30px;
    color: #fff;
    cursor: pointer;
    font-size: 15px;
    font-weight: 500;
    padding: 10px 32px;
    transition: background .3s
}

.card-footer .action-btn[data-v-60465c91]:hover {
    background: #1159bb
}

.card-footer .read-more[data-v-60465c91] {
    color: #666;
    cursor: pointer;
    font-size: 14px;
    transition: color .2s
}

.card-footer .read-more[data-v-60465c91]:hover {
    color: #0d438c
}

.end-mark[data-v-60465c91] {
    color: #bbb;
    font-size: 14px;
    grid-column: 1/-1;
    letter-spacing: 4px;
    padding: 50px 0;
    text-align: center
}

@keyframes slideUp-60465c91 {
    0% {
        opacity: 0;
        transform: translateY(40px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

@media(max-width:768px) {
    .sairun-voice-container[data-v-60465c91] {
        padding-bottom: 40px;
        padding-top: 60px
    }

    .content-wrapper[data-v-60465c91] {
        margin-top: -30px;
        padding: 0 15px
    }

    .card-grid[data-v-60465c91] {
        gap: 20px;
        grid-template-columns: 1fr
    }

    .episode-card[data-v-60465c91] {
        border-radius: 12px;
        padding: 18px
    }

    .card-header[data-v-60465c91] {
        margin-bottom: 12px;
        padding-bottom: 12px
    }

    .card-header .episode-tag[data-v-60465c91] {
        font-size: 12px;
        padding: 4px 10px
    }

    .card-header .date-tag[data-v-60465c91] {
        font-size: 12px
    }

    .card-body[data-v-60465c91] {
        flex-direction: row;
        gap: 12px;
        margin-bottom: 16px
    }

    .card-body .featured-image[data-v-60465c91] {
        border-radius: 8px;
        flex: 0 0 42%;
        height: 110px;
        width: 42%
    }

    .card-body .featured-image img[data-v-60465c91] {
        -o-object-fit: cover;
        object-fit: cover
    }

    .body-right .episode-title[data-v-60465c91] {
        font-size: 16px;
        -webkit-line-clamp: 2;
        line-height: 1.35;
        margin-bottom: 6px
    }

    .intro-text[data-v-60465c91] {
        font-size: 13px;
        height: auto;
        -webkit-line-clamp: 3;
        line-height: 1.55
    }

    .guests-section[data-v-60465c91] {
        margin-bottom: 18px
    }

    .guests-section h3[data-v-60465c91] {
        border-left-width: 3px;
        font-size: 16px;
        margin-bottom: 10px;
        padding-left: 10px
    }

    .guest-profile[data-v-60465c91] {
        margin-bottom: 10px;
        padding: 15px
    }

    .guest-profile .guest-header[data-v-60465c91] {
        align-items: flex-start;
        flex-direction: column;
        gap: 5px
    }

    .guest-profile .guest-header .guest-name[data-v-60465c91] {
        font-size: 16px
    }

    .guest-profile .guest-header .guest-role[data-v-60465c91] {
        font-size: 12px;
        padding: 2px 6px
    }

    .guest-profile .guest-bio[data-v-60465c91] {
        font-size: 13px;
        line-height: 1.5
    }

    .guest-profile .guest-titles li[data-v-60465c91] {
        font-size: 13px
    }

    .card-footer[data-v-60465c91] {
        padding-top: 15px
    }

    .card-footer .action-btn[data-v-60465c91] {
        font-size: 14px;
        padding: 8px 24px
    }

    .card-footer .read-more[data-v-60465c91] {
        font-size: 13px
    }

    .end-mark[data-v-60465c91] {
        font-size: 12px;
        letter-spacing: 2px;
        padding: 30px 0
    }
}

.sairun-voice-details-container {
    background-color: #f5f7fa;
    padding-bottom: 60px;
    width: 100%
}

.sairun-voice-details-container .content-container {
    margin: 0 auto;
    max-width: 1200px;
    padding: 20px 0;
    width: 90%
}
.sairun-voice-details-container2 .content-container {
    padding: 130px 0 0;
}
.sairun-voice-details-container .section-title {
    border-left: 4px solid #0d438c;
    color: #2d3748;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 20px;
    padding-left: 10px
}

.sairun-voice-details-header {
    align-items: center;
    background-blend-mode: multiply;
    background-color: #00000080;
    background-image: url(../images/sairun.Dgxgph0H.jpg);
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    height: 500px;
    justify-content: center;
    margin-top: 100px;
    min-height: 300px;
    overflow: hidden;
    position: relative;
    width: 100%
}

.sairun-voice-details-header .header-content-wrap {
    max-width: 1200px;
    padding: 0 20px;
    position: relative;
    text-align: center;
    width: 100%;
    z-index: 2
}

.sairun-voice-details-header .header-title-wrap {
    color: #fff;
    padding: 0 20px
}

.sairun-voice-details-header .header-title-wrap .period {
    font-size: 18px;
    letter-spacing: 1px;
    margin-bottom: 15px;
    opacity: .9
}

.sairun-voice-details-header .header-title-wrap .main-title {
    font-size: 36px;
    font-weight: 700;
    letter-spacing: .5px;
    line-height: 1.4;
    margin: 0
}

.sairun-voice-details-header .header-decoration {
    height: 100%;
    opacity: .15;
    position: absolute;
    width: 100%;
    z-index: 1
}

.sairun-voice-details-header .header-decoration:after,
.sairun-voice-details-header .header-decoration:before {
    background: #fff;
    border-radius: 50%;
    content: "";
    position: absolute
}

.sairun-voice-details-header .header-decoration:before {
    height: 400px;
    right: -100px;
    top: -100px;
    width: 400px
}

.sairun-voice-details-header .header-decoration:after {
    bottom: -100px;
    height: 300px;
    left: -100px;
    width: 300px
}

.video-section {
    margin-bottom: 40px
}

.video-section .video-wrapper {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px #00000014;
    padding: 15px;
    width: 100%
}

.video-section .video-wrapper .video-player {
    border-radius: 4px;
    height: auto;
    min-height: 400px;
    width: 100%
}

.guest-section {
    margin-bottom: 40px
}

.guest-section .guest-list {
    display: flex;
    flex-direction: column;
    gap: 24px
}

.guest-section .guest-card {
    background: #fff;
    border-left: 4px solid #0d438c;
    border-radius: 12px;
    box-shadow: 0 4px 12px #0000000f;
    padding: 30px;
    position: relative;
    transition: transform .3s ease, box-shadow .3s ease
}

.guest-section .guest-card:hover {
    box-shadow: 0 8px 20px #0000001a;
    transform: translateY(-3px)
}

.guest-section .guest-card .guest-info {
    position: relative
}

.guest-section .guest-card .guest-info .guest-tag {
    background: #0d438c;
    border-radius: 20px;
    color: #fff;
    font-size: 12px;
    font-weight: 500;
    padding: 4px 12px;
    position: absolute;
    right: 0;
    top: -20px
}

.guest-section .guest-card .guest-info .guest-name {
    border-bottom: 1px solid #f0f4f8;
    color: #0d438c;
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 16px;
    padding-bottom: 8px
}

.guest-section .guest-card .guest-info .guest-desc {
    color: #4a5568;
    font-size: 16px;
    line-height: 1.7
}

.guest-section .guest-card .guest-info .guest-desc p {
    margin: 0 0 12px
}

.guest-section .guest-card .guest-info .guest-desc p:last-child {
    margin-bottom: 0
}

.images-section {
    margin-bottom: 40px
}

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

.images-section .images-grid .image-item {
    border-radius: 8px;
    box-shadow: 0 2px 8px #00000014;
    overflow: hidden;
    transition: transform .3s ease, box-shadow .3s ease
}

.images-section .images-grid .image-item:hover {
    box-shadow: 0 8px 16px #0000001f;
    transform: translateY(-5px)
}

.images-section .images-grid .image-item img {
    height: 280px;
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%
}

.content-section .content-text {
    background: #fff;
    border-radius: 8px;
    border-top: 4px solid #0d438c;
    box-shadow: 0 2px 8px #00000014;
    color: #4a5568;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 40px;
    padding: 25px
}

.content-section .content-text p {
    margin: 0 0 15px
}

.content-section .content-text p:last-child {
    margin-bottom: 0
}

.industry[data-v-3a073c0b] {
    background-color: #fff;
    margin: 0 auto;
    padding: 50px 0 50px;
    width: 100%
}

.industry .container[data-v-3a073c0b] {
    margin: 0 auto;
    width: 90%
}

.industry .industry-title[data-v-3a073c0b] {
    cursor: pointer;
    margin-bottom: 70px;
    text-align: center
}

.industry .industry-title h3[data-v-3a073c0b] {
    color: #333;
    font-size: 42px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 15px
}

.industry .industry-title .industry-line[data-v-3a073c0b] {
    background-color: #0d438c;
    border-radius: 3px;
    height: 6px;
    margin: 0 auto;
    width: 90px
}

.industry .industry-content[data-v-3a073c0b] {
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(3,1fr)
}

.industry .industry-content .industry-card[data-v-3a073c0b] {
    animation: fadeInUp-3a073c0b .8s forwards;
    animation-delay: var(--delay);
    border-radius: 8px;
    box-shadow: 0 15px 35px #00000014;
    cursor: pointer;
    height: 520px;
    opacity: 0;
    overflow: hidden;
    position: relative;
    transform: translateY(30px);
    width: 100%
}

@keyframes fadeInUp-3a073c0b {
    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.industry .industry-content .industry-card .card-bg[data-v-3a073c0b] {
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%
}

.industry .industry-content .industry-card .card-bg .card-img[data-v-3a073c0b] {
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    transition: transform 1s;
    width: 100%
}

.industry .industry-content .industry-card .card-bg .img-mask[data-v-3a073c0b] {
    background: linear-gradient(180deg,transparent 0,rgba(0,0,0,.3) 50%,rgba(13,67,140,.9));
    height: 100%;
    left: 0;
    opacity: .8;
    position: absolute;
    top: 0;
    transition: all .5s ease;
    width: 100%
}

.industry .industry-content .industry-card .card-content[data-v-3a073c0b] {
    bottom: 0;
    box-sizing: border-box;
    color: #fff;
    left: 0;
    padding: 40px;
    position: absolute;
    transform: translateY(0);
    transition: transform .6s;
    width: 100%;
    z-index: 2
}

.industry .industry-content .industry-card .card-content .content-top[data-v-3a073c0b] {
    align-items: center;
    display: flex;
    gap: 15px;
    margin-bottom: 20px
}

.industry .industry-content .industry-card .card-content .content-top .index-num[data-v-3a073c0b] {
    font-family: Times New Roman,serif;
    font-size: 32px;
    font-style: italic;
    opacity: .5
}

.industry .industry-content .industry-card .card-content .content-top .card-name[data-v-3a073c0b] {
    font-size: 26px;
    font-weight: 700;
    letter-spacing: 1px
}

.industry .industry-content .industry-card .card-content .card-divider[data-v-3a073c0b] {
    background-color: #fff;
    height: 2px;
    margin-bottom: 0;
    opacity: 0;
    transition: all .6s ease;
    width: 0
}

.industry .industry-content .industry-card .card-content .card-desc[data-v-3a073c0b] {
    color: #fffc;
    font-size: 15px;
    line-height: 1.8;
    margin-top: 0;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all .6s
}

.industry .industry-content .industry-card .card-content .card-arrow[data-v-3a073c0b] {
    color: #0d438c;
    opacity: 0;
    position: absolute;
    right: 40px;
    top: 50px;
    transform: translate(-20px);
    transition: all .5s ease
}

.industry .industry-content .industry-card[data-v-3a073c0b]:hover {
    box-shadow: 0 25px 50px #0d438c40
}

.industry .industry-content .industry-card:hover .card-bg .card-img[data-v-3a073c0b] {
    transform: scale(1.1)
}

.industry .industry-content .industry-card:hover .card-bg .img-mask[data-v-3a073c0b] {
    background: linear-gradient(180deg,transparent 0,rgba(13,67,140,.5) 40%,rgba(13,67,140,.95))
}

.industry .industry-content .industry-card:hover .card-content[data-v-3a073c0b] {
    transform: translateY(-20px)
}

.industry .industry-content .industry-card:hover .card-content .card-divider[data-v-3a073c0b] {
    margin-bottom: 15px;
    opacity: 1;
    width: 50px
}

.industry .industry-content .industry-card:hover .card-content .card-desc[data-v-3a073c0b] {
    margin-top: 15px;
    max-height: 150px;
    opacity: 1
}

.industry .industry-content .industry-card:hover .card-content .card-arrow[data-v-3a073c0b] {
    opacity: 1;
    transform: translate(0)
}

.industry .industry-content .industry-card:hover .card-content .content-top .index-num[data-v-3a073c0b] {
    color: #fff;
    opacity: 1
}

.industry .pagination-wrapper[data-v-3a073c0b] {
    align-items: center;
    display: flex;
    gap: 40px;
    justify-content: center;
    margin-top: 80px;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none
}

.industry .pagination-wrapper .page-btn[data-v-3a073c0b] {
    background: none;
    border: none;
    color: #999;
    cursor: pointer;
    font-size: 14px;
    font-weight: 700;
    transition: color .3s
}

.industry .pagination-wrapper .page-btn[data-v-3a073c0b]:hover:not(:disabled) {
    color: #0d438c
}

.industry .pagination-wrapper .page-btn[data-v-3a073c0b]:disabled {
    cursor: not-allowed;
    opacity: .3
}

.industry .pagination-wrapper .page-numbers[data-v-3a073c0b] {
    display: flex;
    gap: 20px
}

.industry .pagination-wrapper .page-numbers .page-num[data-v-3a073c0b] {
    color: #999;
    cursor: pointer;
    font-family: Times New Roman,serif;
    font-size: 18px;
    padding: 5px 10px;
    position: relative;
    transition: all .3s
}

.industry .pagination-wrapper .page-numbers .page-num[data-v-3a073c0b]:after {
    background-color: #0d438c;
    bottom: 0;
    content: "";
    height: 2px;
    left: 50%;
    position: absolute;
    transform: translate(-50%);
    transition: width .3s ease;
    width: 0
}

.industry .pagination-wrapper .page-numbers .page-num[data-v-3a073c0b]:hover {
    color: #0d438c
}

.industry .pagination-wrapper .page-numbers .page-num.active[data-v-3a073c0b] {
    color: #0d438c;
    font-size: 22px;
    font-weight: 700
}

.industry .pagination-wrapper .page-numbers .page-num.active[data-v-3a073c0b]:after {
    width: 100%
}

.industry .image-viewer-mask[data-v-3a073c0b] {
    align-items: center;
    background-color: #000000e6;
    box-sizing: border-box;
    cursor: pointer;
    display: flex;
    height: 100vh;
    justify-content: center;
    left: 0;
    padding: 20px;
    position: fixed;
    top: 0;
    width: 100vw;
    z-index: 9999
}

.industry .image-viewer-mask .image-viewer-content[data-v-3a073c0b] {
    align-items: center;
    cursor: default;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: center;
    position: relative;
    width: 100%
}

.industry .image-viewer-mask .image-viewer-content .image-viewer-close[data-v-3a073c0b] {
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    position: absolute;
    right: 20px;
    top: 20px;
    transition: color .3s;
    z-index: 20
}

.industry .image-viewer-mask .image-viewer-content .image-viewer-close[data-v-3a073c0b]:hover {
    color: #0d438c
}

.industry .image-viewer-mask .image-viewer-content .nav-btn[data-v-3a073c0b] {
    align-items: center;
    background: #ffffff1a;
    border: none;
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    display: flex;
    justify-content: center;
    padding: 10px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    transition: all .3s;
    z-index: 10
}

.industry .image-viewer-mask .image-viewer-content .nav-btn[data-v-3a073c0b]:hover {
    background: #ffffff4d;
    color: #0d438c
}

.industry .image-viewer-mask .image-viewer-content .nav-btn.prev[data-v-3a073c0b] {
    left: 20px
}

.industry .image-viewer-mask .image-viewer-content .nav-btn.next[data-v-3a073c0b] {
    right: 20px
}

.industry .image-viewer-mask .image-viewer-content .viewer-body[data-v-3a073c0b] {
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-height: 90%;
    max-width: 90%
}

.industry .image-viewer-mask .image-viewer-content .viewer-body .main-image-wrapper[data-v-3a073c0b] {
    align-items: center;
    display: flex;
    flex: 1;
    justify-content: center;
    margin-bottom: 20px;
    overflow: hidden
}

.industry .image-viewer-mask .image-viewer-content .viewer-body .main-image-wrapper .viewer-img[data-v-3a073c0b] {
    border-radius: 4px;
    box-shadow: 0 0 20px #00000080;
    max-height: 70vh;
    max-width: 100%;
    -o-object-fit: contain;
    object-fit: contain;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none
}

.industry .image-viewer-mask .image-viewer-content .viewer-body .thumbnail-list[data-v-3a073c0b] {
    display: flex;
    gap: 10px;
    max-width: 100%;
    overflow-x: auto;
    padding: 5px;
    scrollbar-width: none
}

.industry .image-viewer-mask .image-viewer-content .viewer-body .thumbnail-list[data-v-3a073c0b]::-webkit-scrollbar {
    display: none
}

.industry .image-viewer-mask .image-viewer-content .viewer-body .thumbnail-list .thumb-item[data-v-3a073c0b] {
    border: 2px solid transparent;
    border-radius: 4px;
    cursor: pointer;
    flex-shrink: 0;
    height: 60px;
    opacity: .5;
    transition: all .3s ease;
    width: 60px
}

.industry .image-viewer-mask .image-viewer-content .viewer-body .thumbnail-list .thumb-item img[data-v-3a073c0b] {
    border-radius: 2px;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%
}

.industry .image-viewer-mask .image-viewer-content .viewer-body .thumbnail-list .thumb-item[data-v-3a073c0b]:hover {
    opacity: .8
}

.industry .image-viewer-mask .image-viewer-content .viewer-body .thumbnail-list .thumb-item.active[data-v-3a073c0b] {
    border-color: #0d438c;
    opacity: 1;
    transform: scale(1.1)
}

@media(max-width: 1280px) {
    .industry[data-v-3a073c0b] {
        padding:60px 0 100px
    }

    .industry .container[data-v-3a073c0b] {
        width: 94%
    }

    .industry .industry-content[data-v-3a073c0b] {
        gap: 25px;
        grid-template-columns: repeat(2,1fr)
    }

    .industry .industry-content .industry-card[data-v-3a073c0b] {
        height: 420px
    }

    .industry .industry-content .industry-card .card-content[data-v-3a073c0b] {
        padding: 30px
    }

    .industry .industry-content .industry-card .card-content .content-top .card-name[data-v-3a073c0b] {
        font-size: 24px
    }
}

@media(max-width: 768px) {
    .industry[data-v-3a073c0b] {
        padding:30px 0 50px
    }

    .industry .industry-title[data-v-3a073c0b] {
        margin-bottom: 20px
    }

    .industry .industry-title h3[data-v-3a073c0b] {
        font-size: 24px;
        margin-bottom: 10px
    }

    .industry .industry-title .industry-line[data-v-3a073c0b] {
        height: 3px;
        width: 50px
    }

    .industry .industry-content[data-v-3a073c0b] {
        gap: 10px;
        grid-template-columns: repeat(2,1fr)
    }

    .industry .industry-content .industry-card[data-v-3a073c0b] {
        border-radius: 6px;
        height: 180px
    }

    .industry .industry-content .industry-card .card-bg .img-mask[data-v-3a073c0b] {
        background: linear-gradient(180deg,transparent 0,rgba(0,0,0,.2) 30%,rgba(0,0,0,.8));
        opacity: 1
    }

    .industry .industry-content .industry-card .card-content[data-v-3a073c0b] {
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        padding: 12px
    }

    .industry .industry-content .industry-card .card-content .content-top[data-v-3a073c0b] {
        align-items: flex-end;
        gap: 6px;
        margin-bottom: 0
    }

    .industry .industry-content .industry-card .card-content .content-top .index-num[data-v-3a073c0b] {
        font-size: 16px;
        line-height: 1
    }

    .industry .industry-content .industry-card .card-content .content-top .card-name[data-v-3a073c0b] {
        font-size: 15px;
        line-height: 1.2;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        width: 100%
    }

    .industry .industry-content .industry-card .card-content .card-arrow[data-v-3a073c0b] {
        display: none
    }

    .industry .industry-content .industry-card .card-content .card-divider[data-v-3a073c0b] {
        height: 1px;
        margin-bottom: 0
    }

    .industry .industry-content .industry-card .card-content .card-desc[data-v-3a073c0b] {
        display: -webkit-box;
        font-size: 12px;
        -webkit-line-clamp: 3;
        line-height: 1.4;
        -webkit-box-orient: vertical
    }

    .industry .industry-content .industry-card:active .card-bg .card-img[data-v-3a073c0b] {
        transform: scale(1.05)
    }

    .industry .industry-content .industry-card:active .card-content[data-v-3a073c0b] {
        transform: translateY(-5px)
    }

    .industry .industry-content .industry-card:active .card-content .content-top[data-v-3a073c0b] {
        margin-bottom: 5px
    }

    .industry .industry-content .industry-card:active .card-content .card-divider[data-v-3a073c0b] {
        margin-bottom: 5px;
        opacity: 1;
        width: 30px
    }

    .industry .industry-content .industry-card:active .card-content .card-desc[data-v-3a073c0b] {
        margin-top: 5px;
        max-height: 80px;
        opacity: 1
    }

    .industry .pagination-wrapper[data-v-3a073c0b] {
        gap: 15px;
        margin-top: 30px
    }

    .industry .pagination-wrapper .page-btn[data-v-3a073c0b] {
        font-size: 13px
    }

    .industry .pagination-wrapper .page-numbers[data-v-3a073c0b] {
        gap: 8px
    }

    .industry .pagination-wrapper .page-numbers .page-num[data-v-3a073c0b] {
        font-size: 14px;
        padding: 2px 6px
    }

    .industry .pagination-wrapper .page-numbers .page-num.active[data-v-3a073c0b] {
        font-size: 18px
    }

    .industry .image-viewer-mask .image-viewer-content .image-viewer-close[data-v-3a073c0b] {
        height: 24px;
        right: 15px;
        top: 15px;
        width: 24px
    }

    .industry .image-viewer-mask .image-viewer-content .nav-btn[data-v-3a073c0b] {
        display: none!important
    }

    .industry .image-viewer-mask .image-viewer-content .viewer-body[data-v-3a073c0b] {
        max-width: 100%;
        padding: 0 10px
    }

    .industry .image-viewer-mask .image-viewer-content .viewer-body .main-image-wrapper[data-v-3a073c0b] {
        margin-bottom: 15px
    }

    .industry .image-viewer-mask .image-viewer-content .viewer-body .main-image-wrapper .viewer-img[data-v-3a073c0b] {
        max-height: 50vh
    }

    .industry .image-viewer-mask .image-viewer-content .viewer-body .thumbnail-list[data-v-3a073c0b] {
        gap: 8px;
        padding: 0
    }

    .industry .image-viewer-mask .image-viewer-content .viewer-body .thumbnail-list .thumb-item[data-v-3a073c0b] {
        border-radius: 4px;
        height: 45px;
        width: 45px
    }
}

[data-v-6785a003] {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

.product-top[data-v-6785a003] {
    height: 500px;
    margin-top: 100px;
    width: 100%
}

.product-top .top[data-v-6785a003] {
    align-items: center;
    background-blend-mode: multiply;
    background-color: #00000080;
    background-image: url(../images/bg3.C1iJ_wVs.jpg);
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    height: 100%;
    justify-content: center;
    overflow: hidden;
    width: 100%
}

.product-top .top .top-left[data-v-6785a003] {
    color: #fff;
    display: flex;
    font-size: 40px;
    font-weight: 700;
    justify-content: flex-end;
    opacity: 0;
    padding-right: 20px;
    transform: translate(20px);
    transition: all .6s ease .2s;
    width: 7%
}

.product-top .top .top-left.left-animate[data-v-6785a003] {
    opacity: 1;
    transform: translate(0)
}

.product-top .top .top-right[data-v-6785a003] {
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 100%;
    opacity: 0;
    transform: translate(100%);
    transition: all .8s ease-out;
    width: 100%
}

.product-top .top .top-right h2[data-v-6785a003] {
    font-size: 36px;
    margin-bottom: 10px
}

.product-top .top .top-right p[data-v-6785a003] {
    font-size: 20px;
    line-height: 1.5
}

.product-top .top .top-right.animate-in[data-v-6785a003] {
    opacity: 1;
    transform: translate(0)
}

@media(max-width: 768px) {
    .product-top[data-v-6785a003] {
        height:280px;
        margin-top: 50px
    }

    .product-top .top[data-v-6785a003] {
        height: 280px
    }

    .product-top .top .top-left[data-v-6785a003] {
        font-size: 24px;
        padding-right: 10px
    }

    .product-top .top .top-right[data-v-6785a003] {
        max-width: 90%;
        transform: translate(50%)
    }

    .product-top .top .top-right h2[data-v-6785a003] {
        font-size: 24px
    }

    .product-top .top .top-right p[data-v-6785a003] {
        font-size: 16px
    }
}


.header .header-content .nav .nav-item:hover{
    transform: none !important;

}
.header .header-content .nav .nav-item:hover ul{
    display: block !important;
    transform: none !important;
}
.header .header-content .nav .nav-item ul{
    display: none;
    position: absolute;
    top: 90px;
    background: #fff;
    width: 180px;
    z-index: 1000;
    transform: none;
}
.header .header-content .nav .nav-item{
    position: relative;

}
.header .header-content .nav .nav-item a{
    text-decoration: none;

}
.header .header-content .nav .nav-item a span{
    color: #000;

}
.header .header-content .nav .nav-item:hover a span,
.header .header-content .nav .nav-item.active a span{
    color: #0d438c;
}
.header .header-content .nav .nav-item ul li{
    list-style: none;
    line-height: 60px;
}
.header .header-content .nav .nav-item ul li a{
    color: #666;
    text-decoration: none;
}
.sairun-voice-details-container .mycontent h1.section-title {
    color: #333;
    font-size: 42px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 15px;
    text-align: center;
    border-left: none;
}
.mycontent .mycontent-line{
    background-color: #0d438c;
    border-radius: 3px;
    height: 6px;
    margin: 0 auto;
    width: 90px;
    margin-bottom: 30px;
}
.mycontent .content-text img{
    max-width: 100%;
}

.mycontent .time{
    text-align: center;
    font-size: 18px;
    line-height: 30px;
    margin-bottom: 30px;
}
a{
    text-decoration: none;
}
@media(max-width:768px) {
    .sairun-voice-details-container {
        padding-bottom: 40px
    }

    .sairun-voice-details-container .content-container {
        padding: 20px 0;
        width: 94%
    }
    .sairun-voice-details-container2 .content-container {
        padding: 80px 0 0;
    }
    .sairun-voice-details-container .section-title,.sairun-voice-details-container .mycontent h1.section-title {
        border-left-width: 3px;
        font-size: 18px;
        margin-bottom: 15px
    }

    .sairun-voice-details-header {
        height: 240px;
        margin-top: 60px;
        min-height: auto
    }

    .sairun-voice-details-header .header-content-wrap {
        padding: 0 15px
    }

    .sairun-voice-details-header .header-title-wrap .period {
        font-size: 14px;
        margin-bottom: 10px
    }

    .sairun-voice-details-header .header-title-wrap .main-title {
        font-size: 22px;
        line-height: 1.4
    }

    .sairun-voice-details-header .header-decoration {
        display: none
    }

    .video-section {
        margin-bottom: 30px
    }

    .video-section .video-wrapper {
        padding: 10px
    }

    .video-section .video-wrapper .video-player {
        min-height: 200px
    }

    .guest-section .guest-card {
        padding: 20px
    }

    .guest-section .guest-card .guest-info .guest-tag {
        font-size: 10px;
        padding: 3px 10px;
        right: -10px;
        top: -15px
    }

    .guest-section .guest-card .guest-info .guest-name {
        font-size: 18px;
        margin-bottom: 10px
    }

    .guest-section .guest-card .guest-info .guest-desc {
        font-size: 14px;
        line-height: 1.6
    }

    .images-section .images-grid {
        gap: 15px;
        grid-template-columns: 1fr
    }

    .images-section .images-grid .image-item img {
        height: 200px
    }

    .content-section .content-text {
        font-size: 14px;
        line-height: 1.7;
        padding: 20px
    }
}
