/* * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
} */
/* html{overflow:hidden;} */
/* 通用页面样式 */
/* 隐藏滚动条，但保留滚动功能 */
::-webkit-scrollbar {
    width: 0;
    height: 0;
}
.section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.section-content {
    max-width: 75vw;
    margin: 0 auto;
    padding: 0 1.0417vw;
    width: 100%;
}

/* 首页样式 */
.hero-section {
    background: url(../images/new/bg1.png);
    background-size: cover;
    color: white;
    text-align: center;
    position: relative;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(120, 219, 226, 0.3) 0%, transparent 50%);
    animation: gradientShift 10s ease-in-out infinite;
}

@keyframes gradientShift {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.8;
    }
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translateY(-40vh);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(40vh);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}


/* 添加动画类 */
.hero-title.animate {
    animation: fadeInDown .8s ease-out forwards;
}

.cta-button.animate {
    animation: fadeInUp .8s ease-out forwards;
}

.hero-content {
    z-index: 2;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.hero-title {
    font-size: 3.6458vw;
    /* font-weight: 300; */
    font-weight: normal;
    /* margin-bottom: 2rem; */
    /* text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); */
    font-family: FZZhengHeiS-DB-GB;
    opacity: 0;
    letter-spacing: 0.2604vw;

}

.cta-button {
    margin-top: 3.4375vw;
    background: rgba(255, 255, 255, 0);
    color: white;
    border: 0.1041vw solid rgba(255, 255, 255, 0.5);
    /* padding: 1.5rem 2rem 1.1rem; */
    font-size: 1.0417vw;
    border-radius: 1.5625vw;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(0.5208);
    font-family: FZZhengHeiS-DB-GB;
    opacity: 0;
    width: 10.4167vw;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 2.3958vw;
    line-height: 2.3958vw;



}

.cta-button img {
    width: 1.9792vw;
    height: 0.4166vw;
    object-fit: contain;
    margin-left: 0.9375vw;
}


.cta-button:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.8);
    transform: translateY(-0.1041vw);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0.7;
    z-index: 2;
}

.scroll-arrow {
    width: 24px;
    height: 24px;
    border: 2px solid white;
    border-top: none;
    border-right: none;
    transform: rotate(-45deg);
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0) rotate(-45deg);
    }

    40% {
        transform: translateY(-10px) rotate(-45deg);
    }

    60% {
        transform: translateY(-5px) rotate(-45deg);
    }
}

/* 下载中心样式 */
.download-section {
    background: url('../images/new/sy3.png') no-repeat;
    background-size: cover;

    color: white;
    position: relative;
}

.download-section::before {
    /* content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 70%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    pointer-events: none; */
}

.section-header {
    margin-bottom: 1.5625vw;
    position: relative;
    z-index: 2;
    font-family: FZZhengHeiS-DB-GB;
}

.tab-container {
    display: flex;
    gap: 0;
    /* background: rgba(255, 255, 255, 0.1); */
    border-bottom: 0.1042vw solid rgba(255, 255, 255, 0.1);
    /* border-radius: 8px; */
    /* padding: 0.5rem; */
    width: 100%;
    align-items: flex-end; /* 使所有选项卡底部对齐 */
    height: 3.3854vw;
}

.tab {
    background: none;
    border: none;
    color: white;
    padding: 0.5208vw 0;
    cursor: pointer;
    /* border-radius: 6px; */
    transition: all 0.3s ease;
    font-size: 1.3021vw;
    margin-right: 4.1667vw;
    white-space: nowrap;
}

.tab.active {
    /* background: rgba(255, 255, 255, 0.2); */
    border-bottom: 0.15625vw solid rgba(255, 255, 255, 0.5);
    color: #C6E9DE;
    /* backdrop-filter: blur(10px); */
}

.download-grid {
    display: flex;
    gap: 5%;
    margin-top: 3.3854vw;
    position: relative;
    z-index: 2;
}

.download-section .section-content{
    min-height: 50rem;
}

.download-card {
    width: 30%;
    height: 12.5vw;
    background: url(../images/new/sy33.png) no-repeat;
    background-size: 100% 100%;
    /* backdrop-filter: blur(10px); */
    /* border: 1px solid rgba(255, 255, 255, 0.2); */
    border-radius: 1.3021vw;
    padding: 3.125vw;
    /* text-align: center; */
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 1.5625vw;
    overflow: hidden;
    font-family: FZZhengHeiS-DB-GB;
}

.download-card:hover {
    /* background: rgba(255, 255, 255, 0.2); */
    box-shadow: 0px 0.0521vw 0.625vw 0.1042vw rgba(1, 81, 70, 0.7016);
    transform: translateY(-1.0417vw);
}

.card-icon {
    margin-bottom: 0.5208vw;
}

.card-icon .icon {
    width: 48px;
    height: 48px;
    color: rgba(255, 255, 255, 0.8);
}

.download-card h3 {
    font-size: 1.5625vw;
    font-weight: 500;
}

.digital-matrix {
    display: flex;
    gap: 1.875vw;
    margin-top: 3.3854vw;
    position: relative;
    z-index: 2;
}

.digital-item {
    width: 10.8333svw;
    height: 16.6667vw;
    /* padding: 4.4rem; */
    background-color: #fff;
    border-radius: 0.8333vw;
    text-align: center;
    transition: all .3s;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.digital-item .digital-qrcode {
    width: 6.2500vw;
    height: 6.2500vw;
}

.digital-item:hover {
    transform: translateY(-1.0417vw);
    box-shadow: 0 0.5208vw 1.0417vw rgba(0, 0, 0, 0.3);
}

.digital-qrcode {
    width: 100%;
}

.digital-icon {
    margin-top: 3.125vw;
    width: 1.5625vw;
    height: 1.5625vw;
    text-align: center;
    object-fit: contain;
}

.digital-name {
    font-size: 1.0417vw;
    color: #333;
    text-align: center;
    margin-top: 0.5208vw;
}



/* 品质页面样式 */
.quality-section {
    position: relative;
    overflow: hidden;
    justify-content: flex-start;
}

/* .quality-carousel {
    display: flex;
    transition: transform 0.8s ease-in-out;
    width: 300%;
    height: 100vh;
} */

.quality-slide {
    width: 100vw;
    height: 100%;
    /* flex-shrink: 0;
    position: relative;
    display: flex;
    justify-content: center;
    color: white;
    text-align: center; */
    /* padding-top: 20%; */
}

/* 取消原本的 transform 动画控制 */
.quality-slide.active {
    transform: none;
}

.slide-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.quality-bg {
    background: url(../images/new/sy2.png);
    background-repeat: no-repeat;
    background-size: cover;
}

.pure-bg {
    background: url(../images/new/sy2-2.png);
    background-repeat: no-repeat;
    background-size: cover;
}

.natural-bg {
    background: url(../images/new/sy2-3.png);
    background-repeat: no-repeat;
    background-size: cover;
}

/* .slide-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="80" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="60" cy="30" r="1.5" fill="rgba(255,255,255,0.1)"/></svg>'),
        radial-gradient(circle at 40% 60%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    animation: float 6s ease-in-out infinite;
} */

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

.slide-content {
    height: 100%;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: FZZhengHeiS-DB-GB;
    /* padding-top: 7.2917vw; */
    transition: transform 0.8s cubic-bezier(0.8, 0, 0.1, 1),
        opacity 0.8s ease-in-out;
    opacity: 0;
    transform: translateY(100%);
    color: #fff;

    /* 初始在右边 */
}

.slide-content h2 {
    font-size: 2.8125vw;
    line-height: 2.8125vw;
    font-weight: 400;
    margin-bottom:0.7813vw;
}

.slide-content.active {
    transform: translateY(0);
    /* 回到原位 */
    opacity: 1;

}

.quality-line {
    width: 2.6042vw;
    height: 0.15625vw;
    background: white;
    margin: 0 auto 1.0417vw;
}

.slide-content p {
    line-height: 1.5625vw;
    font-size: 1.5625vw;
    font-weight: 300;
    opacity: 0.9;
    /* margin-bottom: 1.5625vw; */
    font-family: PingFang SC;
}



/* 纯净场景 */
.pure-scene {
    position: relative;
    width: 250px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.water-drops {
    position: absolute;
    width: 100%;
    height: 100%;
}

.drop {
    position: absolute;
    width: 20px;
    height: 30px;
    background: linear-gradient(to bottom, rgba(33, 150, 243, 0.8), rgba(33, 150, 243, 0.4));
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    animation: dropFall 3s ease-in-out infinite;
}

.drop-1 {
    top: 20%;
    left: 30%;
    animation-delay: 0s;
}

.drop-2 {
    top: 40%;
    right: 25%;
    animation-delay: 1s;
}

.drop-3 {
    bottom: 30%;
    left: 50%;
    animation-delay: 2s;
}

@keyframes dropFall {

    0%,
    100% {
        transform: translateY(0) scale(1);
        opacity: 0.8;
    }

    50% {
        transform: translateY(20px) scale(1.1);
        opacity: 1;
    }
}

.pure-circle {
    width: 120px;
    height: 120px;
    border: 3px solid rgba(33, 150, 243, 0.6);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(33, 150, 243, 0.1) 0%, transparent 70%);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: ripple 4s ease-in-out infinite;
}

.inner-circle {
    width: 60px;
    height: 60px;
    border: 2px solid rgba(33, 150, 243, 0.8);
    border-radius: 50%;
    background: rgba(33, 150, 243, 0.2);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes ripple {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.8;
    }

    50% {
        transform: scale(1.2);
        opacity: 1;
    }
}

/* 实验室场景 */
.lab-scene {
    position: relative;
    width: 250px;
    height: 200px;
}

.test-tubes {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: flex-end;
    height: 120px;
}

.tube {
    width: 20px;
    border-radius: 10px 10px 3px 3px;
    background: linear-gradient(to bottom, transparent 30%, rgba(76, 175, 80, 0.8) 100%);
    border: 2px solid rgba(255, 255, 255, 0.6);
    animation: bubbling 2s ease-in-out infinite;
}

.tube-1 {
    height: 80px;
    animation-delay: 0s;
}

.tube-2 {
    height: 100px;
    animation-delay: 0.5s;
}

.tube-3 {
    height: 70px;
    animation-delay: 1s;
}

@keyframes bubbling {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

.lab-equipment {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-around;
    align-items: flex-end;
}

.microscope {
    width: 40px;
    height: 30px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 5px;
    position: relative;
}

.microscope::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 15px;
    height: 15px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
}

.beaker {
    width: 30px;
    height: 40px;
    background: linear-gradient(to bottom, transparent 40%, rgba(33, 150, 243, 0.6) 100%);
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 0 0 15px 15px;
}

/* 品质场景 */
.quality-scene {
    position: relative;
    width: 250px;
    height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.quality-badge {
    background: rgba(76, 175, 80, 0.2);
    border: 2px solid rgba(76, 175, 80, 0.6);
    border-radius: 50%;
    width: 100px;
    height: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    animation: pulse 2s ease-in-out infinite;
}

.badge-icon {
    font-size: 2rem;
    color: #4CAF50;
    font-weight: bold;
}

.badge-text {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 0.5rem;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.quality-bars {
    display: flex;
    gap: 10px;
    align-items: flex-end;
}

.bar {
    width: 15px;
    background: linear-gradient(to top, #4CAF50, #81C784);
    border-radius: 3px;
    animation: grow 1.5s ease-in-out infinite;
}

.bar-1 {
    height: 30px;
    animation-delay: 0s;
}

.bar-2 {
    height: 45px;
    animation-delay: 0.3s;
}

.bar-3 {
    height: 35px;
    animation-delay: 0.6s;
}

@keyframes grow {

    0%,
    100% {
        transform: scaleY(1);
    }

    50% {
        transform: scaleY(1.2);
    }
}

/* 自然场景 */
.natural-scene {
    position: relative;
    width: 250px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.natural-circle {
    width: 120px;
    height: 120px;
    border: 3px solid rgba(76, 175, 80, 0.6);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(76, 175, 80, 0.1) 0%, transparent 70%);
    animation: rotate 10s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.plant-elements {
    position: absolute;
    width: 100%;
    height: 100%;
}

.leaf {
    position: absolute;
    width: 20px;
    height: 30px;
    background: linear-gradient(45deg, #4CAF50, #81C784);
    border-radius: 0 100% 0 100%;
    animation: sway 3s ease-in-out infinite;
}

.leaf-1 {
    top: 20%;
    left: 30%;
    animation-delay: 0s;
}

.leaf-2 {
    top: 60%;
    right: 25%;
    animation-delay: 1s;
}

.leaf-3 {
    bottom: 30%;
    left: 50%;
    animation-delay: 2s;
}

@keyframes sway {

    0%,
    100% {
        transform: rotate(0deg);
    }

    50% {
        transform: rotate(10deg);
    }
}

/* 品质页面导航 */
.quality-nav {
    position: absolute;
    top: 50%;
    width: 92%;
    display: flex;
    justify-content: space-between;
    padding: 0 1.0417vw;
    transform: translateY(-50%) translateX(4%);
    z-index: 2;
    pointer-events: none;
}

.nav-arrow {
    background: transparent;
    border: none;
    pointer-events: all;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;

}

.nav-arrow:hover {
    /* transform: scale(1.1); */
}

.arrow-icon {
    width: 1.0417vw;
    height: 2.0833vw;

}

/* 品质页面指示器 */
.quality-indicators {
    display: flex;
    justify-content: center;
    gap: 1rem;
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.quality-indicator {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    backdrop-filter: blur(10px);
}

.quality-indicator.active {
    background: rgba(255, 255, 255, 0.8);
    border-color: rgba(255, 255, 255, 0.8);
    color: #333;
}

.quality-indicator:hover {
    background: rgba(255, 255, 255, 0.6);
    transform: scale(1.05);
}

/* 联系我们样式 */
.contact-section {
    background: url(../images/new/sy4.png) no-repeat;
    background-size: cover;
    color: white;
    position: relative;
}

/* .contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
} */

.contact-header {
    text-align: left;
    margin-bottom: 3.3854vw;
    position: relative;
    z-index: 2;
}

.contact-header h2 {
    font-size: 1.3021vw;
    font-weight: 300;
    margin-bottom: 0.5208vw;
    font-family: FZZhengHeiS-DB-GB;
}

.contact-line {
    width: 2.6042vw;
    height: 0.1042vw;
    background: white;
    margin: 0;
}


.contact-content {
    height: 23.9583vw;
    display: flex;
    /* grid-template-columns: 1fr 1fr; */
    /* background: url(../images/new/sy5.png); */
    /* background-size: 100% 46rem; */
    /* gap: 3rem; */
    align-items: center;
    position: relative;
    z-index: 2;
    justify-content: flex-end;
    border-radius: 1.5625vw;
    overflow: hidden;
}


.contact-map {
    width: 46.875vw;
    height: 100%;
    background: #000;
    /* opacity: 0; */
}


.contact-info {
    display: flex;
    flex-direction: column;
    /* width: 2.6042vw; */
    width: 28.1015625vw;
    height: 100%;
    align-items: center;
    justify-content: center;
    background: #007F6E;
    position: relative;
}

.contact-info-bg {
    width: 11.7708vw;
    height: 11.9792vw;
    position: absolute;
    right: -0.9375vw;
    bottom: -0.7292vw;
    object-fit: cover;
}

.company-info {
    display: flex;
    flex-direction: column;
    height: 23.9583vw;
    justify-content: center;
    gap: 1.5625vw;
    font-family: PingFang SC;
}

.company-info h3 {
    font-size: 1.0417vw;
    margin-bottom: 0.7813vw;
    color: #fff;
    font-weight: normal;
    font-family: FZZhengHeiS-DB-GB;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 0.5208vw;
    margin-bottom: 0.5208vw;
}

.info-item .icon {
    width: 1.0417vw;
    flex-shrink: 0;
}

.info-item p {
    font-size: 0.8333vw;
    margin: 0;
    line-height: 1.25vw;
}

.company-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0.3;
}

.logo-large {
    width: 6.25vw;
    height: 6.25vw;
    color: rgba(255, 255, 255, 0.5);
}

/* 滚动条样式 */
/* ::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #2D8B6E;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #1A5A4A;
} */



@media (max-width: 1780px) {}


@media (min-width: 1440px) and (max-width: 1680px) {
    /* .hero-title {
        font-size: 5.5rem;
    } */



    /* .section-content {
        max-width: 75%;
        padding: 0;
    }
 */




}
}

/* 1281px ~ 1440px */
@media (min-width: 1280px) and (max-width: 1440px) {
    /* .hero-title {
        font-size: 4.5rem;
    } */



/* 
    .section-content {
        max-width: 75%;
        padding: 0;
    }

 */



}



@media (min-width: 1000px) and (max-width: 1279px) {
    /* .hero-title {
        font-size: 3.9rem;
    } */



/* 
    .section-content {
        max-width: 75%;
        padding: 0;
    } */





}

@media(max-width:768px) {
    .section-content{
        padding: 0;
           max-width: 90vw;

}
    .hero-title {
        font-size: 3.9874rem;
    }

    .cta-button {
        font-size: 1.8888rem;
        width: 20.9864rem;
        height: 4.8269rem;
        border-radius: 3.1479rem;
    }
    .cta-button img{
        width: 3.9874rem;
        height: 0.8395rem;
    }

    .section {
        min-height: 50vh;
        /* height: 50vh; */

    }
    .hero-content{
        min-height:100%;
    }
    .swiper{
        height: 50vh !important;
    }
    .quality-carousel {
        position: relative;
        width: 100%;
        height: 50vh;
    }

    .slide-content h2 {
        font-size: 3.1479rem;
        font-weight: 400;
        margin-bottom: 1rem;
    }

    .quality-line {
        width: 30px;
        height: 3px;
        background: white;
        margin: 0 auto 2rem;
    }

    .slide-content p {
        font-size: 1.5rem;
        font-weight: 300;
        opacity: 0.9;
        margin-bottom: 3.1479rem;
    }

    .download-section {
        align-items: center;
        height: 50vh;
    }
    .download-section .section-content{
        height: 80%;
    }
.tab{
    font-size:3.1479rem ;
}
    .download-grid {
        flex-wrap: wrap;
        margin-top: 2rem;
        padding: 0;
        gap: 3%;
    }

    .download-card {
        width: 48%;
        height: 20.9864rem;
        background: url(../images/new/sy33.png);
        background-repeat: no-repeat;
        background-size: 100% 100%;
        /* backdrop-filter: blur(10px); */
        /* border: 1px solid rgba(255, 255, 255, 0.2); */
        border-radius: 1.6789rem;
        padding: 4.1973rem;
        /* text-align: center; */
        transition: all 0.3s ease;
        cursor: pointer;
        font-size: 16px;
        margin-bottom: 20px;
    }

    .download-card h3 {
        font-size: 2.0986rem;
        font-weight: 500;
    }

    .digital-matrix {
        display: flex;
        flex-wrap: wrap;
        gap: 20px 3%;
        margin-top: 2.0986rem;
        position: relative;
        z-index: 2;
        padding-bottom: 30px;
    }

    .digital-item {
        width: 31%;
        height: 33.5782rem;
        padding: 2.0986rem;
        background-color: #fff;
        border-radius: 16px;
        text-align: center;
    }
.digital-item .digital-qrcode{
    width: 12.5918rem;
    height: 12.5918rem;
}
    .digital-icon {
        width: 3.1479rem;
        height: 3.1479rem;
        margin-top: 30px;
    }

    .digital-name {
        font-size: 10px;
    }

    .contact-header {
        margin-top: 50px;
    }
.contact-header h2{
    font-size: 3.1479rem;
}
.contact-line{
    width: 6.2959rem;
    height: 0.4197rem;
}
    .contact-content {
        height: 80%;
        display: flex;
        /* grid-template-columns: 1fr 1fr; */
        /* background: url(../images/new/ditu.png); */
        /* background-color: #007f6e; */
        /* background-size: 100% 200px; */
        background-repeat: no-repeat;
        align-items: center;
        position: relative;
        z-index: 2;
        /* justify-content: flex-end; */
        flex-wrap: wrap;
        margin-bottom: 20px;
        border-radius: 15px;
    }

    .contact-map {
        width: 100%;
        height: 40rem;
    }

    .contact-info {
        margin-top: 0;
        display: flex;
        flex-direction: column;
        width: 100%;
        height: 40rem;

        align-items: center;
        justify-content: center;
        /* background-image: url(../images/new/sy444.png); */
        /* background-repeat: no-repeat; */
        /* padding-bottom: 20px; */
        /* background-position: 100% 100%; */
        /* background-size: 100px; */
    }
    .contact-info-bg{
        width: 23.7146rem;
        height: 23.7146rem;
    }

    .company-info {
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 5px;
    }

    .company-info h3 {
        font-size: 14px;
        margin-bottom: 0.1049rem;
        color: #fff;
    }

    .info-item {
        display: flex;
        align-items: flex-start;
        gap: 5px;
        margin-bottom: 5px;
    }

    .info-item .icon {
        font-size:12px;
        width: 20px;
        flex-shrink: 0;
    }

    .info-item p {
        font-size: 12px;
        margin: 0;
        line-height: 1.2;
    }
}




.swiper {
    width: 100%;
    height: 100vh;

}