.s-container {
        width: 80%;
        margin: 0 auto;
        padding: 0 15px;
    }

    /* Banner */
    .banner {
        width: 100%;

        background: url('组 1.png') no-repeat center center;
        background-size: cover;
    }

    /* Section Common */
    .section {
        --primary: #971517;
        padding: 60px 0;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .section-title {
        font-size: 24px;
        color: var(--primary);
        font-weight: bold;
        position: relative;
        padding-bottom: 10px;
        display: inline-block;
    }

    .section-title::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 40px;
        height: 3px;
        background-color: var(--primary);
    }

    /* Featured Products */
    .products-grid {
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
    }

    .products-grid>div {
        width: 48%;
    }

    .product-card {
        height: 250px;
        background: #fff;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        border: solid 1px rgb(158, 95, 89);
        display: flex;
        overflow: hidden;
        transition: transform 0.3s;
        margin-bottom: 20px;
    }

    #product-1 .product-card {
        background: url('/eportal/fileDir/szsccb/resource/cms/2025/12/img_pc_site/2025122222081268570.png') no-repeat center center;
        background-size: cover;
    }

    #product-2 .product-card {
        background: url('/eportal/fileDir/szsccb/resource/cms/2025/12/img_pc_site/2025122222073341628.png') no-repeat center center;
        background-size: cover;
    }

    #product-3 .product-card {
        background: url('/eportal/fileDir/szsccb/resource/cms/2025/12/img_pc_site/2025122222082640652.png') no-repeat center center;
        background-size: cover;
    }

    #product-4 .product-card {
        background: url('/eportal/fileDir/szsccb/resource/cms/2025/12/img_pc_site/2025122222101147419.png') no-repeat center center;
        background-size: cover;
    }

    .product-card:hover {
        cursor: pointer;
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }




    .product-title {
        font-size: 20px;
        color: var(--primary);
        font-weight: bold;
        margin-bottom: 40px;
        position: relative;
    }

    .product-title::after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 0;
        width: 20px;
        height: 2px;
        background-color: rgb(158, 95, 89);
    }

    .product-info {
        padding: 40px 30px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        width: 45%;
    }

    .product-tags {
        display: flex;
        flex-wrap: wrap;
    }

    .tag-text:hover a {
        color: #E7AE3E;
        font-weight: bold;
        font-size: 14px;
    }

    .tag-text {
        margin-right: 10px;
        margin-bottom: 10px;
    }

    .tag-text a {
        font-size: 14px;
    }

    /* Featured Branches */
    .branches-container {
        --height: 400px;
        display: flex;
        height: var(--height);
        background: url('/eportal/fileDir/szsccb/resource/cms/2025/12/img_pc_site/2025122222184678818.png') no-repeat center center;
        background-size: cover;
        border-radius: 8px;
        overflow: hidden;
    }

    .branch-list {
        display: flex;
        align-content: center;
        justify-content: space-between;
        flex-wrap: wrap;
        height: var(--height);
        width: 60%;
        padding: 0 35px;
    }

    .branch-box {
        width: 95%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .branch-item {
        width: 48%;
        height: 84px;
        background: #fff;
        border-radius: 8px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.3s;
        border: 1px solid transparent;
        background: url('/uiFramework/commonResource/image/2025122410122749875.png') no-repeat center center;
        background-size: cover;
        margin:20px 0;
    }

    .branch-item:hover {
        border-color: #d9a86c;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    }

    .branch-icon {
        width: 84px;
        height: 84px;
        object-fit: contain;
    }

    .branch-name {
        width: 120px;
        margin: 0 10px;
    }

    .branch-name a {
        font-size: 18px;
    }