/* 顶部模块容器 */
.top-card-wrap {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 20px;
    position: relative;
}

/* Tab标签栏 */
.tab-header {
    display: flex;
    gap: 20px;
    position: absolute;
    z-index: 4;
    width: 100%;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
}



.tab-item {
    flex: 1;
    cursor: pointer;
    padding: 40px;
    padding-right: 0;
    position: relative;
}

.tab-title {
    font-weight: 600;
    color: #333;
    margin-bottom: 6px;
    font-size: 1.3vw;
    position: relative;
}

.en-tab-header .tab-title {
    font-size: 1.1vw;
}

/* 激活Tab样式 
.tab-item.active .tab-title {
    color: #e63434;
}

.tab-item.active::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: #fff;
    opacity: 0;
}

.tab-item.active::after {
    background: #e63434;
    opacity: 1;
}
*/
.tab-item p {
    color: #323232;
    line-height: 1.7;
}


.tab-content-box {
    width: 100%;
    position: relative;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.tab-content-item {
    position: relative;
    display: none;
    width: 100%;
    gap: 30px;
}

.tab-content-item .img img {
    width: 100%;
}

.tab-content-item.show {
    display: block;
}


.award {
    position: absolute;
    bottom: 40px;
    left: 40px;
    display: flex;
    gap: 40px;
}

.award img {
    height: 10vw;
}

.award p {
    margin-bottom: 15px;
    min-height: 3em;
}




/* 相关案例卡片 */
.case-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
}

.case-title {
    font-size: 1.4vw;
    margin-bottom: 20px;
}

.case-sub-desc {
    color: #838383;
    margin-bottom: 30px;
}

.case-content {
    display: flex;
    gap: 24px;
    align-items: stretch;
}

.case-left-img {
    width: 50%;
    border-radius: 10px;
    object-fit: cover;
}

.case-block {
    background-color: #FAF9F9;
    padding: 20px;
    border-radius: 10px;
    flex: 1;
}

.case-right-text {
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.case-block h4 {
    font-size: 18px;
    margin-bottom: 10px;
}

.case-block p {
    color: #838383;
    line-height: 1.7;
}

@media (max-width: 1224px) {
    .tab-item {
        padding: 20px;
    }

    .award {
        position: absolute;
        bottom: 20px;
        left: 20px;
        gap: 20px;
    }

    .case-content {
        flex-direction: column;
    }

    .case-card {
        padding: 20px;
    }

    .case-left-img {
        width: 100%;
        height: 40vw;
    }

    .case-right-text {
        width: 100%;
    }
}

@media (max-width: 1024px) {
    .tab-header {
        flex-direction: column;
        text-align: left;
        position: static;
        gap: 0px;
    }

    .tab-item,
    .case-card {

        padding: 15px;
    }

    .tab-title,
    .en-tab-header .tab-title {

        margin-bottom: 8px;
        font-size: 18px;
    }

    .tab-item p {}

    .tab-content-box {
        display: none;
    }

    .award {
        position: static;
        margin: 15px;
        gap: 15px;
        flex-direction: column;
    }

    .award p {
        margin-bottom: 7px;
        min-height: auto;
    }

    .award p br {
        display: none;
    }

    .award img {
        height: 30vw;
    }

    .case-title {
        font-size: 1.3rem;
        margin-bottom: 15px;
    }

    .case-content,
    .case-right-text {
        gap: 15px;
        flex-direction: column;
    }

    .case-left-img,
    .case-right-text {
        width: 100%;
    }

}