/* ===== 轮播图 ===== */
.banner-carousel .carousel-item {
    height: 420px;
}
.banner-carousel .carousel-item img {
    object-fit: cover;
    object-position: center;
}

/* ===== 公共卡片 ===== */
.tender-section {
    padding: 20px 0 10px 0;
    background: #f9f9f9;
}
.non-tender-section {
    padding: 10px 0;
    background: #f9f9f9;
}
.shop-process-section {
    padding: 10px 0;
    background: #f9f9f9;
}
.supplier-bottom-section {
    padding: 10px 0 20px;
    background: #f9f9f9;
}
.section-card {
    background: #fff;
    padding: 20px;
    border-radius: 4px;
    height: 100%;
}

/* ===== 标题栏（带橙色底线） ===== */
.tender-tab-top,
.non-tender-tab-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 2px solid #f78b28;
    margin-bottom: 18px;
    gap: 16px;
    padding: 0;
}
.right-title-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 2px solid #f78b28;
    margin-bottom: 18px;
    padding: 0;
    gap: 16px;
    min-height: 0;
}
.right-title-bar .title-text {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    padding: 10px 8px;
    line-height: 1.4;
    white-space: nowrap;
}
.tab-left-group {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}
.tab-left-group span {
    display: flex;
    align-items: center;
    font-size: 20px;
    color: #666;
    line-height: 1.4;
    padding: 10px 0;
}
.tab-left-group a {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    padding: 10px 8px;
    text-decoration: none;
    transition: color 0.2s;
    line-height: 1.4;
    white-space: nowrap;
}
.tab-left-group a:first-of-type:hover {
    color: #333;
}
.tab-left-group a.active {
    color: #f78b28;
}
.tab-left-group a:not(:first-child):hover {
    color: #f78b28;
}
.more-link {
    font-size: 15px;
    color: #666;
    text-decoration: none;
    white-space: nowrap;
    padding: 10px 0;
    line-height: 1.4;
    display: flex;
    align-items: center;
}
.more-link span.arrow {
    color: #f78b28;
}

.tender-sub-tab {
    display: flex;
    gap: 24px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}
.tender-sub-tab a {
    font-size: 15px;
    color: #666;
    text-decoration: none;
    transition: all 0.2s;
    padding-bottom: 5px;
}
.tender-sub-tab a.active {
    color: #f78b28;
    border-bottom: 2px solid #f78b28;
}
.tender-sub-tab a:hover {
    color: #f78b28;
}

.tender-list li {
    list-style: none;
    padding: 10px 0;
    border-bottom: 1px dashed #eee;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-left: 6px;
    transition: none;
}
.tender-list li:hover {
    background: transparent;
}
.tender-list .tender-title {
    color: #333;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}
.tender-list li:hover .tender-title,
.tender-list li:hover .code-text {
    color: #f78b28;
}
.tender-list .code-text {
    font-size: 14px;
    color: #555;
    white-space: nowrap;
    transition: color 0.2s;
    cursor: pointer;
    flex-shrink: 0;
}

/* ===== 右侧登录/注册表单 ===== */
.login-form .form-item {
    margin-bottom: 16px;
}
.login-form label.form-label {
    font-size: 14px;
    margin-bottom: 6px;
    display: block;
}
.login-form input.form-input {
    width: 100%;
    height: 42px;
    border: 1px solid #ddd;
    padding: 0 12px;
    font-size: 14px;
    border-radius: 2px;
    transition: border-color 0.3s;
}
.login-form input.form-input:focus {
    border-color: #216ce7;
    outline: none;
}
.check-item {
    margin: 10px 0 20px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
}
.check-item a {
    color: #216ce7;
    text-decoration: none;
}
.submit-btn {
    width: 100%;
    height: 44px;
    background: #216ce7;
    color: #fff;
    border: none;
    font-size: 15px;
    border-radius: 2px;
    cursor: pointer;
}
.submit-btn:disabled {
    background: #8ab0e9;
    cursor: not-allowed;
}

.side-block {
    margin-bottom: 30px;
}
.side-block:last-child {
    margin-bottom: 0;
}
.side-block img {
    width: 100%;
    display: block;
    border-radius: 4px;
}

/* ===== 商城搭建服务 ===== */
.shop-goods-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.goods-card {
    border: 1px solid #eee;
    padding: 12px;
    text-align: center;
}
.goods-card img {
    width: 100%;
    height: 280px;
    object-fit: contain;
}

/* ===== 合作流程 ===== */
.process-wrap {
    display: flex;
    justify-content: space-between;
    text-align: center;
    flex-wrap: wrap;
    row-gap: 20px;
}
.process-item {
    flex: 0 0 48%;
}
.process-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #216ce7;
    color: #fff;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 8px;
}
.process-name {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 6px;
}
.process-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.4;
}

/* ===== 底部三栏供应商 ===== */
.supplier-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.supplier-list li {
    display: flex;
    align-items: center;
    padding: 8px 0;
    font-size: 16px;
}
.supplier-list li::before {
    content: "";
    display: inline-block;
    width: 5px;
    height: 5px;
    background-color: #f78b28;
    margin-right: 10px;
    flex-shrink: 0;
    border-radius: 1px;
}
.supplier-list .company-name {
    color: #333;
    text-decoration: none;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 75%;
    transition: color 0.2s;
}
.supplier-list li:hover .company-name,
.supplier-list li:hover .date-text {
    color: #f78b28;
}
.supplier-list .date-text {
    color: #333;
    flex-shrink: 0;
    margin-left: auto;
    white-space: nowrap;
    cursor: pointer;
}
.title-text.normal-black {
    color: #333 !important;
}

@media (max-width: 991.98px) {
    .banner-carousel .carousel-item {
        height: 320px;
    }

    .tender-section,
    .non-tender-section,
    .shop-process-section,
    .supplier-bottom-section {
        padding: 12px 0;
    }
    .section-card {
        padding: 16px;
        margin-bottom: 16px;
    }
    .tab-left-group a {
        font-size: 17px;
        padding: 0 8px 6px;
    }
    .tab-left-group span {
        font-size: 17px;
        padding: 0;
    }
    .right-title-bar .title-text {
        font-size: 17px;
        padding: 6px 8px;
    }
    .tender-sub-tab {
        gap: 14px;
    }
    .tender-sub-tab a {
        font-size: 14px;
    }
    .shop-goods-row {
        grid-template-columns: repeat(2, 1fr);
    }
    .process-wrap {
        gap: 30px;
    }
    .process-item {
        flex: 0 0 45%;
    }
}

@media (max-width: 768px) {
    .banner-carousel .carousel-item {
        height: 240px;
    }
    .section-card {
        padding: 14px;
    }
}

@media (max-width: 576px) {
    .tender-list li {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }
    .tender-list .code-text {
        margin-left: 0;
    }
    .tab-left-group {
        gap: 4px;
    }
    .tab-left-group a {
        font-size: 15px;
        padding: 3px 5px 5px;
    }
    .tab-left-group span {
        font-size: 14px;
        padding: 0;
    }
    .right-title-bar .title-text {
        font-size: 15px;
        padding: 5px 5px;
    }
    .shop-goods-row {
        grid-template-columns: 1fr;
    }
    .process-item {
        flex: 0 0 100%;
    }
    .supplier-list .company-name {
        max-width: 60%;
        font-size: 14px;
    }
    .supplier-list .date-text {
        font-size: 13px;
    }
}