﻿/* 字体配置 */
@font-face {
    font-family: 'Mulish';
    src: url('../fonts/c3d26f19ac7f56a0fd74.ttf') format('truetype');
    font-display: swap;
}

/* 重置样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    overflow-x: hidden; /* 防止横向滚动 */
    width: 100%;
    position: relative;
}

body {
    font-family: 'Mulish', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

img {
    max-width: 100%;
    height: auto;
}

/* 布局容器 */
.container {
    max-width: 87.5rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Banner部分 */
.hero {
    height: 48.75rem;
    background: url('../img/bg21.png') no-repeat center center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(0.1875rem);
}

.hero__content {
    position: relative;
    z-index: 1;
    width: 100%;
}

.hero__title {
    color: #fff;
    font-weight: 400;
    font-style: italic;
    font-size: 4.635rem;
    line-height: 5.55rem;
    text-align: center;
    font-family: 'Mulish', Arial, sans-serif;
}

/* 章节通用样式 */
.section {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section__title {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    text-align: center;
}

.section__title-line {
    width: 3.75rem;
    height: 0.1875rem;
    background-color: #000;
    margin-bottom: 3rem;
}

.section__subtitle {
    font-weight: 500;
    font-size: 2.375rem; 
    line-height: 3.325rem; 
    text-align: center;
    margin-top: 3.75rem; 
    margin-bottom: 3.125rem; 
}

/* 介绍部分 */
.intro-products-wrapper {
    background: #fff;
    height: 72.1875rem; /* 1155px */
    width: 100%;
}

.section--intro {
    padding-top: 4.5rem;
    height: 22.8125rem;
}

.intro-products-wrapper .section__title-line {
    margin-bottom: 2.25rem;
}

/* 产品展示部分 */
.section--products {
    height: auto;
    min-height: 49.375rem;
    background-image: url('../img/bg22.png');
    background-size: cover;
    background-position: center;
    padding: 5rem 2rem;
    position: relative;
}

.section--products::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #00000080;
}

.section--products .container {
    position: relative;
    z-index: 1;
}

.section--products .section__title {
    font-weight: 500;
    font-size: 3rem;
    line-height: 4.2rem;
    text-align: center;
    color: #FFFFFF;
}

.section--products .section__title-line {
    margin-bottom: 4.25rem;
}

.products-grid {
    display: flex;
    justify-content: center;
    gap: 1.625rem;
    max-width: 87.5rem;
    margin: 0 auto;
}

.product-card {
    background: #FFFFFF;
    border-radius: 0.875rem;
    box-shadow: 0 0 0.25rem 0 rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    width: 42.9375rem;
    height: auto;
}

.product-card__image {
    width: 100%;
    height: 31.25rem; /* 500px */
    border-radius: 0.875rem 0.875rem 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-card__image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.product-card__content {
    min-height: 6.875rem; /* 110px */
    padding: 1.375rem 2rem 1.375rem 2rem;
    position: relative;
}

.product-card__content-wrapper {
    width: 100%;
    min-height: 4.125rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
}

.product-card__text {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.product-card__title {
    font-weight: 500;
    font-size: 1.5rem;
    line-height: 2.1rem;
    color: #1D1D1F;
    margin-bottom: 0;
}

.product-card__params {
    display: flex;
    gap: 0.25rem;
    flex-wrap: wrap;
}

.product-card__param {
    font-weight: 400;
    font-size: 1.125rem;
    line-height: 1.575rem;
    color: #6B6C6D;
    white-space: nowrap;
}

/* 按钮样式 */
.ess-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.625rem 1rem;
    background: #0005FF;
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.5rem;
    line-height: 2.1rem;
    text-align: center;
    transition: background-color 0.3s ease;
    width: fit-content;
    min-width: min-content;
}

.section--products .ess-btn {
    min-width: 8rem;
    min-height: 3rem;
    padding: 0.625rem 1rem;
    font-size: 1.125rem;
    line-height: 1.575rem;
    white-space: nowrap;
    flex-shrink: 0;
}

.section--products .ess-btn__icon {
    width: 1rem;
    height: 1rem;
    margin-left: 0.375rem;
}

.ess-btn__icon {
    width: 1.5rem;
    height: 1.5rem;
    margin-left: 0.5rem;
}

.ess-btn:hover {
    background-color: #292932;
}

/* 优势说明部分 */
.section--advantages {
    width: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

.advantages-group {
    width: 100%;
    position: relative;
}

.advantages-group:first-child {
    height: 66.9375rem; /* 949px */
    padding-top: 5rem;
}

.advantages-group:first-child::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/12.png');
    background-size: cover;
    background-position: center;
    /* opacity: 0.3; */
    z-index: 2;
}

.advantages-group:first-child::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #171717;
    z-index: 1;
}

.advantages-group:last-child {
    height: 56.125rem; /* 995px */
    /* padding-top: 5rem; */
}

.advantages-group:last-child::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/19.png');
    background-size: cover;
    background-position: center;
    /* opacity: 0.3; */
    z-index: 2;
}

.advantages-group:last-child::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #171717;
    z-index: 1;
}

.advantages-group .container {
    position: relative;
    z-index: 2;
}

.section--advantages .section__title {
    color: #FFFFFF;
}

.section--advantages .section__subtitle {
    color: #FFFFFF;
}

.section--advantages .section__title-line {
    margin-bottom: 3.75rem;
}

.advantages-group .section__subtitle {
    margin-top: 0;
    margin-bottom: 3.125rem;
}

.advantages-group:last-child .section__subtitle {
    margin-top: 6.25rem; /* 183px */
    margin-bottom: 3.125rem;
}

.advantages-grid {
    display: grid;
    gap: 1.75rem;
    justify-content: center;
    margin-top: 0;
}

/* STAR-T 部分的布局 */
.advantages-group:first-child .advantages-grid {
    grid-template-columns: repeat(2, 43rem); /* 688px */
}

.advantages-group:first-child .advantage-card {
    width: 43rem; /* 688px */
    height: 20rem; /* 320px */
}

/* STAR-Q 部分的布局 */
.advantages-group:last-child .advantages-grid {
    grid-template-columns: 28.0625rem 28.0625rem 28.0625rem; /* 449px */
}

.advantages-group:last-child .advantage-card {
    width: 28.0625rem; /* 449px */
    height: 18.125rem; /* 290px */
}

.advantages-group:last-child .advantage-card--large {
    height: 37.875rem; /* 606px */
    grid-row: span 2;
}

.advantage-card {
    border-radius: 0.875rem;
    padding: 1.5rem;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

/* 移除之前的大卡片特殊尺寸 */
.advantages-group:first-child .advantage-card {
    height: 20rem; /* 320px */
}

.advantages-group:first-child .advantage-card--large {
    height: 20rem; /* 320px */
    grid-row: auto;
}

/* 移除大卡片的特殊样式 */
.advantage-card--large {
    grid-row: auto;
}

.advantage-card__content {
    position: relative;
    z-index: 2;
    transition: opacity 0.6s ease;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
}

.advantage-card:hover .advantage-card__content {
    opacity: 0;
}

.advantage-card__hover-content {
    position: absolute;
    top: 100%;
    left: 1.5rem;
    right: 1.5rem;
    opacity: 1;
    transition: top 500ms linear;
    color: #FFFFFF;
    z-index: 2;
    font-weight: 400;
    font-size: 1.25rem;
    line-height: 2.125rem;
    white-space: normal;
}

.advantage-card__hover-content ul {
    list-style-type: disc;
    padding-left: 1.5rem;
    margin: 0;
}

.advantage-card__hover-content li {
    margin-bottom: 0.5rem;
}

.advantage-card__hover-content p {
    display: none;
}

.advantage-card:hover .advantage-card__hover-content {
    top: 2rem;
}

.advantage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

/* STAR-T 部分的卡片背景 */
.advantages-group:first-child .advantage-card:nth-child(1) {
    background-image: url('../img/bg8.png');
}

.advantages-group:first-child .advantage-card:nth-child(2) {
    background-image: url('../img/bg23.png');
}

.advantages-group:first-child .advantage-card:nth-child(3) {
    background-image: url('../img/bg24.png');
}

.advantages-group:first-child .advantage-card:nth-child(4) {
    background-image: url('../img/bg25.png');
}

/* STAR-H 部分的卡片背景 */
.advantages-group:last-child .advantage-card:nth-child(1) {
    background-image: url('../img/advantage05.png');
}

.advantages-group:last-child .advantage-card:nth-child(2) {
    background-image: url('../img/bg26.png');
}

.advantages-group:last-child .advantage-card:nth-child(3) {
    background-image: url('../img/advantage07.png');
}

.advantages-group:last-child .advantage-card:nth-child(4) {
    background-image: url('../img/advantage08.png');
}

.advantages-group:last-child .advantage-card:nth-child(5) {
    background-image: url('../img/bg27.png');
}

.advantage-card__icon {
    width: 2.75rem;
    height: 2.75rem;
}

.advantage-card__title {
    font-weight: 500;
    font-size: 1.625rem;
    line-height: 2.625rem;
    color: #FFFFFF;
}

/* 案例研究 */
.case-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
    gap: 2rem;
}

.case-card {
    background: #fff;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.case-card__image {
    height: 15rem;
    overflow: hidden;
}

.case-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.case-card:hover .case-card__image img {
    transform: scale(1.1);
}

.case-card__content {
    padding: 1.5rem;
}

.case-card__title {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.case-card__text {
    color: #666;
}

/* 案例研究部分 */
.section--case {
    width: 100%;
    height: auto;
    min-height: 45.8125rem;
    padding: 5rem 0;
    background-image: url('../img/bg28.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section--case .section__title-line {
    margin-bottom: 4.25rem;
}

.case-content {
    width: 87.5rem; /* 1400px */
    height: 29.625rem; /* 474px */
    background: #FFFFFF;
    display: flex;
    margin: 0 auto;
    border-radius: 0.875rem; /* 14px */
}

.case-text {
    width: 31.25rem; /* 500px */
    padding: 2.75rem; /* 44px */
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* 确保内容分布在两端 */
}

.case-text__content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.case-text__title {
    font-weight: 500;
    font-size: 2.25rem; /* 36px */
    line-height: 2.275rem;
    color: #1D1D1F;
}

.case-text__location {
    font-weight: 400;
    font-size: 1.75rem; /* 28px */
    line-height: 2.275rem;
    color: #1D1D1F;
}

.case-text__params {
    font-weight: 400;
    font-size: 1.75rem; /* 28px */
    line-height: 2.275rem;
    color: #1D1D1F;
}

.case-text__params-highlight {
    color: #0005FF;
}

.case-text .ess-btn {
    margin-top: 0; /* 移除上边距 */
    margin-bottom: 0; /* 移除下边距 */
}

.case-image {
    flex: 1;
    height: 100%;
}

.case-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media screen and (max-width: 64rem) { /* 1024px */
    .case-content {
        width: 70rem; /* 1120px，从1400px调整 */
        height: 29.625rem;
    }

    .case-text {
        width: 25rem; /* 400px，从500px调整 */
        padding: 2.75rem;
    }

    .case-text__title {
        font-size: 2rem;
    }

    .case-text__location,
    .case-text__params {
        font-size: 1.5rem;
    }
}

@media screen and (max-width: 48rem) { /* 768px */
    .case-content {
        width: 45rem; /* 720px */
        height: 29.625rem;
    }

    .case-text {
        width: 18.75rem; /* 300px */
        padding: 2.75rem;
    }

    .case-text__title {
        font-size: 1.75rem;
    }

    .case-text__location,
    .case-text__params {
        font-size: 1.25rem;
    }

    .case-text .ess-btn {
        font-size: 1.25rem;
    }
}

@media screen and (max-width: 36rem) { /* 576px */
    .case-content {
        width: 49.75rem; /* 540px */
        height: 20.625rem;
    }

    .case-text {
        width: 15rem; /* 240px */
        padding: 2rem;
    }

    .case-text__title {
        font-size: 1.5rem;
    }

    .case-text__location,
    .case-text__params {
        font-size: 1.125rem;
    }

    .case-text .ess-btn {
        font-size: 1.125rem;
        padding: 0.5rem 0.75rem;
    }
}

/* 响应式布局 */
@media screen and (max-width: 64rem) { /* 1024px */
    .hero__title {
        font-size: 3rem;
    }

    .section__title {
        font-size: 2rem;
    }

    /* Introduction和Products部分响应式 */
    .intro-products-wrapper {
        height: auto;
    }

    .section--intro {
        height: auto;
        padding: 3rem 0;
    }

    .section__text {
        font-size: 1.25rem;
        line-height: 1.875rem;
        padding: 0 1.5rem;
    }

    .section__text br {
        display: none;
    }

    .section--products {
        padding: 4rem 1.5rem;
        min-height: auto;
    }

    .products-grid {
        gap: 1.25rem;
    }

    .product-card {
        width: calc(50% - 0.625rem);
    }

    .product-card__image {
        height: 25rem;
    }

    .product-card__content {
        padding: 1.125rem 1.5rem;
        min-height: 6.25rem;
    }

    .product-card__title {
        font-size: 1.25rem;
        line-height: 1.75rem;
    }

    .product-card__param {
        font-size: 1rem;
        line-height: 1.4rem;
    }

    /* 案例研究部分响应式 */
    .section--case {
        min-height: 45.8125rem;
        padding: 5rem 0;
    }

    .case-list {
        padding: 0 1.5rem;
        gap: 1.5rem;
        flex-wrap: wrap;
    }

    .case-item {
        width: calc(50% - 0.75rem);
        min-height: 24rem;
    }

    .case-item__image {
        width: 100%;
        height: 14rem;
    }

    .case-item__content {
        padding: 1.25rem;
    }

    .case-item__title {
        font-size: 1.375rem;
        line-height: 1.925rem;
    }

    .case-item__desc {
        width: calc(100% - 2.125rem); /* 减去箭头的宽度 */
    }

    /* 优势说明部分响应式 */
    .section--advantages {
        min-height: 56.25rem;
    }
    
    .advantages-group {
        min-height: 56.25rem;
        padding-top: 4rem;
        padding-bottom: 4rem;
    }

    .advantages-group:first-child {
        height: 66.9375rem;
    }

    .advantages-group:last-child {
        height: 56.125rem;
    }

    .advantages-grid {
        gap: 1.75rem;
        padding: 0 1.5rem;
    }

    /* 调整第一组卡片宽度 */
    .advantages-group:first-child .advantages-grid {
        grid-template-columns: repeat(2, 35rem); /* 原43rem改为35rem */
    }

    .advantages-group:first-child .advantage-card {
        width: 35rem; /* 原43rem改为35rem */
        height: 20rem;
    }

    /* 调整第二组卡片宽度 */
    .advantages-group:last-child .advantages-grid {
        grid-template-columns: 23rem 23rem 23rem; /* 原28.0625rem改为23rem */
    }

    .advantages-group:last-child .advantage-card {
        width: 23rem; /* 原28.0625rem改为23rem */
        height: 18.125rem;
    }

    .advantages-group:last-child .advantage-card--large {
        height: 37.875rem;
        grid-row: span 2;
    }

    .advantage-card__title {
        font-size: 1.375rem;
        line-height: 2.25rem;
    }

    .advantage-card__hover-content {
        font-size: 1.125rem;
        line-height: 1.75rem;
    }

    .advantage-card__icon {
        width: 2.5rem;
        height: 2.5rem;
    }
}

@media screen and (max-width: 48rem) { /* 768px */
    .hero__title {
        font-size: 2.5rem;
    }

    /* Introduction和Products部分响应式 */
    .products-grid {
        gap: 1rem;
    }

    .product-card {
        width: calc(50% - 0.5rem);
    }

    .product-card__image {
        height: 20rem;
    }

    .product-card__content {
        padding: 1rem;
        min-height: 5.5rem;
    }

    .product-card__content-wrapper {
        min-height: 3.5rem;
        gap: 0.75rem;
    }

    .product-card__title {
        font-size: 1.125rem;
        line-height: 1.6rem;
    }

    .product-card__param {
        font-size: 0.875rem;
        line-height: 1.2rem;
    }

    .ess-btn {
        padding: 0.5rem 0.75rem;
        font-size: 1.125rem;
        line-height: 1.6rem;
    }

    .ess-btn__icon {
        width: 1.25rem;
        height: 1.25rem;
    }

    /* 优势说明部分响应式 */
    .section--advantages {
        min-height: 50rem;
    }
    
    .advantages-group {
        min-height: 50rem;
        padding-top: 3.5rem;
        padding-bottom: 3.5rem;
    }

    .advantages-grid {
        gap: 1.75rem;
        padding: 0 1rem;
    }

    /* 调整第一组卡片宽度 */
    .advantages-group:first-child .advantages-grid {
        grid-template-columns: repeat(2, 28rem); /* 进一步缩小 */
    }

    .advantages-group:first-child .advantage-card {
        width: 28rem;
        height: 20rem;
    }

    /* 调整第二组卡片宽度 */
    .advantages-group:last-child .advantages-grid {
        grid-template-columns: 18rem 18rem 18rem;
    }

    .advantages-group:last-child .advantage-card {
        width: 18rem;
        height: 18.125rem;
    }

    .advantage-card__title {
        font-size: 1.25rem;
        line-height: 2rem;
    }

    .advantage-card__hover-content {
        font-size: 1rem;
        line-height: 1.625rem;
    }

    .advantage-card__icon {
        width: 2.25rem;
        height: 2.25rem;
    }

    .section--advantages .section__subtitle {
        font-size: 2rem;
        line-height: 2.8rem;
        margin-bottom: 2.5rem;
    }

    /* 案例研究部分响应式 */
    .section--case {
        min-height: 45.8125rem;
        padding: 5rem 0;
    }

    .case-list {
        padding: 0 1.25rem;
        gap: 1.25rem;
    }

    .case-item {
        width: calc(50% - 0.625rem);
        min-height: 22rem;
    }

    .case-item__image {
        height: 12rem;
    }

    .case-item__content {
        padding: 1rem;
    }

    .case-item__title {
        font-size: 1.25rem;
        line-height: 1.75rem;
        margin-bottom: 0.75rem;
    }

    .case-item__desc {
        font-size: 1.125rem;
        line-height: 1.575rem;
    }

    .case-item__desc-wrapper {
        gap: 0.75rem;
    }

    .case-item__arrow {
        width: 1.75rem;
        height: 1.75rem;
    }

    /* 解决方案部分响应式 */
    .solution-content {
        padding: 0 1.5rem;
    }

    .solution-diagram {
        max-width: 45rem;
    }

    .solution-tabs {
        padding: 1.5rem 0.75rem;
    }

    .solution-tab {
        font-size: 1.125rem;
        line-height: 1.575rem;
        padding: 0.375rem 0.75rem;
    }

    /* 案例研究部分响应式 */
    .case-item__content {
        min-height: 7.5rem;
    }

    .case-item__desc {
        width: calc(100% - 1.5rem); /* 减去箭头的新宽度 */
    }
}

@media screen and (max-width: 36rem) { /* 576px */
    .hero__title {
        font-size: 2rem;
    }

    /* Introduction和Products部分响应式 */
    .section__text {
        font-size: 1rem;
        line-height: 1.5rem;
        padding: 0 1rem;
    }

    .products-grid {
        gap: 0.875rem;
    }

    .product-card {
        width: calc(50% - 0.4375rem);
    }

    .product-card__image {
        height: 16rem;
    }

    .product-card__content {
        padding: 0.875rem 0.75rem;
        min-height: 5rem;
    }

    .product-card__content-wrapper {
        min-height: 3.25rem;
        gap: 0.5rem;
    }

    .product-card__title {
        font-size: 1rem;
        line-height: 1.4rem;
    }

    .product-card__param {
        font-size: 0.875rem;
        line-height: 1.2rem;
    }

    .ess-btn {
        padding: 0.375rem 0.625rem;
        font-size: 1rem;
        line-height: 1.4rem;
    }

    .ess-btn__icon {
        width: 1rem;
        height: 1rem;
    }

    /* 案例研究部分响应式 */
    .section--case {
        min-height: auto;
        padding: 5rem 0;
    }

    .case-list {
        padding: 0 1rem;
        gap: 1rem;
        flex-direction: column;
    }

    .case-item {
        width: 100%;
        min-height: 20rem;
    }

    .case-item__image {
        height: 10rem;
    }

    .case-item__content {
        padding: 0.875rem;
    }

    .case-item__title {
        font-size: 1.125rem;
        line-height: 1.575rem;
        margin-bottom: 0.5rem;
    }

    .case-item__desc {
        font-size: 1rem;
        line-height: 1.4rem;
    }

    .case-item__desc-wrapper {
        gap: 0.5rem;
    }

    .case-item__arrow {
        width: 1.5rem;
        height: 1.5rem;
    }

    /* 优势说明部分响应式 */
    .section--advantages {
        min-height: 43.75rem;
    }
    
    .advantages-group {
        min-height: 43.75rem;
        padding-top: 3rem;
        padding-bottom: 3rem;
    }

    .advantages-grid {
        gap: 1.75rem;
        padding: 0 1rem;
    }

    /* 调整第一组卡片宽度 */
    .advantages-group:first-child .advantages-grid {
        grid-template-columns: repeat(2, 20rem); /* 最小屏幕下的宽度 */
    }

    .advantages-group:first-child .advantage-card {
        width: 20rem;
        height: 20rem;
    }

    /* 调整第二组卡片宽度 */
    .advantages-group:last-child .advantages-grid {
        grid-template-columns: 15rem 15rem 15rem;
    }

    .advantages-group:last-child .advantage-card {
        width: 15rem;
        height: 18.125rem;
    }

    .advantage-card__title {
        font-size: 1.125rem;
        line-height: 1.75rem;
    }

    .advantage-card__hover-content {
        font-size: 0.875rem;
        line-height: 1.5rem;
        padding: 1rem;
    }

    .advantage-card__icon {
        width: 2rem;
        height: 2rem;
    }

    .section--advantages .section__subtitle {
        font-size: 1.75rem;
        line-height: 2.45rem;
        margin-bottom: 2rem;
    }

    .advantage-card__content {
        gap: 0.75rem;
    }

    .advantage-card:hover .advantage-card__hover-content {
        top: 1.5rem;
    }

    .advantages-group:last-child .section__subtitle {
        margin-top: 3rem;
    }

    .section--advantages .section__subtitle {
        font-size: 1.75rem;
        line-height: 2.45rem;
        margin-bottom: 2rem;
    }

    .advantage-card__icon {
        width: 2.25rem;
        height: 2.25rem;
    }

    /* 解决方案部分响应式 */
    .solution-content {
        padding: 0 1rem;
    }

    .solution-diagram {
        max-width: 35rem;
    }

    .solution-tabs {
        padding: 1rem 0.5rem;
        gap: 0.75rem;
    }

    .solution-tab {
        font-size: 1rem;
        line-height: 1.4rem;
        padding: 0.25rem 0.625rem;
    }

    .solution-tab__icon {
        width: 1.25rem;
        height: 1.25rem;
    }

    /* 案例研究部分响应式 */
    .case-item__content {
        min-height: 7.5rem;
    }

    .case-item__desc {
        width: calc(100% - 1.5rem); /* 减去箭头的新宽度 */
    }
}

/* 移除之前可能存在的通用margin-top */
.section__text,
.advantages-grid,
.solution-content,
.case-list {
    margin-top: 0;
}

/* 通用样式 */
.section__text {
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 2.375rem;
    text-align: center;
    color: #333333;
}

.section__title {
    font-size: 3rem;
    font-weight: 500;
    line-height: 4.2rem;
    text-align: center;
    color: #1D1D1F;
    margin-bottom: 0.25rem;
}

.section__title-line {
    width: 2.5rem;
    height: 0.25rem;
    background: #0005FF;
    margin: 0 auto;
}

.solution-tabs {
    padding-top: 2.875rem;
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.solution-tab {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.625rem 1rem;
    border: none;
    background: #BCBDE9;
    cursor: pointer;
    font-weight: 500;
    font-size: 1.5rem;
    line-height: 2.1rem;
    color: #fff;
    transition: background-color 0.3s ease;
}

.solution-tab:hover {
    background: #292932;
}

.solution-tab.active {
    background: #0005FF;
}

.solution-tab.active:hover {
    background: #0005FF;
}

.solution-tab__icon {
    width: 1.5rem;
    height: 1.5rem;
    display: none;
}

.solution-tab.active .solution-tab__icon {
    display: block;
}
