.tab-card-container .tab-card-wrap li a {
    font-size: 16px;
}

.tab-card-container .tab-card-wrap li a:hover {
    color: #1e1d2e;
}

.tab-card-wrap li {
    display: grid;
    margin-top: 160px;
    justify-items: center;
    border-top-left-radius: 0 !important;
    border-top-right-radius: 0 !important;
}

.consumables-map-center .tab-card-container .tab-card-wrap li {
    /*width: calc(100% / 4 - 10px);*/
}

.row-main .main-desc {
    font-weight: 400;
    text-indent: 2rem;
    font-size: 2rem;
    line-height: 5rem;
    margin-bottom: 3rem;
    padding-bottom: 5rem;
    padding-top: 5rem;
}


@media screen and (max-width: 768px) {
    .row-main .main-desc {
        font-size: 1.6rem;
        line-height: 3.2rem;
    }
}
.tab-card-container{
    padding-bottom: 5rem;
}

.tab-card-wrap li .img-responsive {
    grid-area: 1 / 1;
    max-width: 100%;
    display: block;
    height: 160px;
    margin-top: -160px;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
    cursor: pointer;
}

.tab-card-wrap li a {
    grid-area: 2 / 1; /* 第 2 行开始 */
    margin-top: 0; /* 不需要额外值，Grid 自动在 img 下方 */
}

.mod-cont-left {
    background-color: #FFFFFF00 !important;
}

.card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .15);
    border-top: 1px solid #ddd;
    padding: 48px 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-family: system-ui, sans-serif;
    margin-bottom: 4rem;
}

.card .title {
    font-size: 20px;
    color: #E99122;
    font-weight: bold;
}

.card .desc {
    font-weight: 400;
    font-size: 16px;
    line-height: 30px;
    margin-top: 1rem;
    /*text-indent: 2rem;*/
}

.card .item-box {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

@media screen and (max-width: 768px) {
    .card .item-box {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 480px) {
    .card .item-box {
        grid-template-columns: repeat(1, 1fr);
    }
}

.card .item-box .item-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    border: 1px solid #f5f5f5;
    border-radius: 6px;
    padding: 20px;
    background: #f5f5f57a;
}

.card .item-box .item-card img {
    max-width: 160px;
    height: 120px;
}

.card .item-box .item-card .item-desc {
    font-size: 16px;
    color: #1d1c1b;
}

.card .item-box .item-card .item-desc:hover {
    color: #1d1c1b;
}


/* SFC平台介绍样式 - 使用命名空间避免全局样式影响 */

.sfc-container {
    max-width: 100%;
}

/* 标题样式 */
.sfc-title {
    font-size: 24px;
    color: #F48660;
    line-height: 72px;
    font-weight: 600;
    margin: 0;
}

.sfc-title-case {
    line-height: 48px;
}

/* 副标题样式 */
.sfc-subtitle {
    font-size: 18px;
    font-weight: 550;
    color: #666666;
    line-height: 48px;
    margin: 0;
}

/* 网格布局 */
.sfc-grid-wrapper {
    display: grid;
    grid-template-columns: 70% 30%;
    gap: 14px;
}

/* 表格样式 */
.sfc-table {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4px;
    line-height: 48px;
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    color: #666666;
}

.sfc-table-header {
    background: #FBB03F;
    color: #fff;
}

.sfc-table-cell {
    display: flex;
    align-items: center;
    justify-content: center;
}

.sfc-cell-gray {
    background: #E7E8E9;
}

.sfc-cell-beige {
    background: #F8F3E3;
}

.sfc-cell-multiline {
    line-height: 32px;
}

/* 图片区域样式 */
.sfc-images {
    display: flex;
    flex-direction: column;
}

.sfc-image-item {
    margin-bottom: 16px;
}

.sfc-image-item:last-child {
    margin-bottom: 0;
}

.sfc-image {
    width: 100%;
    display: block;
}

.sfc-image-caption {
    width: 100%;
    text-align: center;
    font-size: 18px;
    font-weight: 500;
    color: #666666;
}

/* 案例文本样式 */
.sfc-case-text {
    font-size: 18px;
    font-weight: 550;
    color: #666666;
    line-height: 32px;
    margin: 0;
}

.sfc-case-margin {
    margin-bottom: 20px;
}

.sfc-highlight {
    color: #f5c057;
}

/* 案例图片样式 */
.sfc-case-image-wrapper {
    width: 80%;
    margin: 20px auto;
}

.sfc-case-image {
    width: 100%;
    display: block;
}

/* 移动端适配 */
@media screen and (max-width: 768px) {
    /* 标题适配 */
    .sfc-title {
        font-size: 20px;
        line-height: 48px;
    }

    .sfc-title-case {
        line-height: 36px;
    }

    /* 副标题适配 */
    .sfc-subtitle {
        font-size: 16px;
        line-height: 36px;
    }

    /* 网格布局改为单列 */
    .sfc-grid-wrapper {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* 表格适配 */
    .sfc-table {
        font-size: 14px;
        line-height: 36px;
        gap: 2px;
    }

    .sfc-cell-multiline {
        line-height: 24px;
    }

    /* 图片区域适配 */
    .sfc-images {
        flex-direction: row;
        gap: 10px;
    }

    .sfc-image-item {
        flex: 1;
        margin-bottom: 0;
    }

    .sfc-image-caption {
        font-size: 14px;
    }

    /* 案例文本适配 */
    .sfc-case-text {
        font-size: 15px;
        line-height: 28px;
    }

    .sfc-case-margin {
        margin-bottom: 15px;
    }

    /* 案例图片适配 */
    .sfc-case-image-wrapper {
        width: 95%;
        margin: 15px auto;
    }
}

/* 小屏手机适配 */
@media screen and (max-width: 480px) {
    .sfc-container {
        padding: 0 10px;
    }

    .sfc-title {
        font-size: 18px;
        line-height: 40px;
    }

    .sfc-subtitle {
        font-size: 14px;
        line-height: 32px;
    }

    .sfc-table {
        font-size: 12px;
        line-height: 32px;
    }

    /* 图片在小屏手机上改为纵向排列 */
    .sfc-images {
        flex-direction: column;
        gap: 15px;
    }

    .sfc-image-caption {
        font-size: 13px;
    }

    .sfc-case-text {
        font-size: 14px;
        line-height: 26px;
    }

    .sfc-case-image-wrapper {
        width: 100%;
        margin: 10px auto;
    }
}