@charset "UTF-8";

@font-face {
    font-family: '优设标题黑';
    src: url('../images/优设标题黑.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

/* Banner 样式 */
.banner {
    height: 280px;
    position: relative;
    width: 100%;
    flex-shrink: 0;
    overflow: hidden;
}

@media (min-width: 768px) {
    .banner {
        height: 400px;
    }
}

@media (min-width: 1024px) {
    .banner {
        height: 512px;
    }
}

.banner-carousel {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.banner-img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 1;
}

.banner-img.active {
    opacity: 1;
    z-index: 2;
}

.banner-overlay {
    position: absolute;
    inset: 0;
    z-index: 3;
}

.banner-content {
    position: absolute;
    z-index: 5;
    left: 50%;
    top: calc(50% - 19px);
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    width: 100%;
    max-width: 1300px;
    text-align: center;
    padding: 0 20px;
}

@media (min-width: 768px) {
    .banner-content {
        gap: 20px;
    }
}

@media (min-width: 1024px) {
    .banner-content {
        gap: 25px;
    }
}

.banner-title {
    font-size: 28px;
    color: #fff;
    font-weight: 700;
}

@media (min-width: 1024px) {
    .banner-title {
        font-size: 60px;
        /* 从 70px 下调至 60px */
    }
}

.banner-desc {
    font-size: 13px;
    color: #fff;
    padding: 0 10px;
    font-weight: normal;
    opacity: 0.9;
}

@media (min-width: 1024px) {
    .banner-desc {
        font-size: 24px;
        /* 从 25px 下调至 24px */
    }
}

.banner-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1300px;
    padding: 0 16px;
    display: flex;
    gap: 20px;
    z-index: 10;
}

@media (min-width: 768px) {
    .banner-dots {
        padding: 0 150px;
    }
}

@media (min-width: 1024px) {
    .banner-dots {
        bottom: 40px;
        padding: 0;
    }
}

.banner-dot {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
    cursor: pointer;
    opacity: 0.4;
    transition: opacity 0.3s;
}

@media (min-width: 1024px) {
    .banner-dot {
        gap: 15px;
    }
}

.banner-dot.active {
    opacity: 1;
}

.banner-dot-num {
    font-size: 20px;
    color: #fff;
    font-weight: 700;
}

@media (min-width: 1024px) {
    .banner-dot-num {
        font-size: 28px;
    }
}

.banner-dot-line {
    background-color: #fff;
    height: 2px;
    width: 100%;
}

/* 新增 Banner 内部搜索栏样式 */
.banner-search-container {
    width: 900px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 20px;
}

.search-capsule {
    background: #ffffff;
    height: 62px;
    border-radius: 68px;
    display: flex;
    align-items: center;
    padding: 0 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.search-capsule-input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 18px;
    color: #333;
    background: transparent;
}

.search-capsule-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hotwords-row {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: 30px;
}

.hotwords-label {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
}

.hotwords-list {
    display: flex;
    gap: 20px;
    margin-left: 10px;
}

.hot-tag {
    font-size: 16px;
    color: #333333;
    background: rgba(255, 255, 255, 0.8);
    padding: 4px 16px;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hot-tag:hover {
    color: #fe9900;
    background: #ffffff;
    text-decoration: none;
}

/* 通知公告区域 */
.notice-section {
    width: 100%;
    display: flex;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 30px 0;
}

@media (min-width: 1024px) {
    .notice-section {
        padding: 60px 0;
    }
}

.notice-section-bg {
    position: absolute;
    inset: 0;
}

.notice-section-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: #fff;
}

.notice-section-bg img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.notice-container {
    width: 100%;
    max-width: 1300px;
    padding: 0 16px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
    z-index: 10;
}

@media (min-width: 1024px) {
    .notice-container {
        flex-direction: row;
        gap: 24px;
        padding: 0;
    }
}

.notice-card {
    background-color: #fff;
    border-radius: 12px;
    width: 100%;
    position: relative;
    box-shadow: 0 1px 20px rgba(108, 108, 108, 0.15);
    border: 2px solid #fff;
}

@media (min-width: 1024px) {
    .notice-card {
        width: 964px;
        height: 388px;
    }
}

.notice-card-inner {
    display: flex;
    flex-direction: column;
    gap: 20px;
    overflow: hidden;
    padding: 12px 20px 24px;
    border-radius: inherit;
    width: 100%;
    height: 100%;
}

.notice-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    border-bottom: 1px solid #d5d5d5;
}

.notice-title-wrap {
    padding: 10px 0;
    border-bottom: 2px solid #fe9900;
}

.notice-title {
    font-size: 16px;
    color: #fe9900;
    letter-spacing: 0.9px;
    font-weight: 700;
}

@media (min-width: 1024px) {
    .notice-title {
        font-size: 18px;
    }
}

.notice-more {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    text-decoration: none;
}

.notice-more-text {
    font-size: 14px;
    color: #fe9900;
    transition: color 0.2s;
}

.notice-more:hover .notice-more-text {
    color: #ff7a00;
}

.notice-more svg path {
    fill: #fe9900;
    transition: fill 0.2s;
}

.notice-more:hover svg path {
    fill: #ff7a00;
}

.notice-list {
    display: flex;
    flex-direction: column;
    /* justify-content: space-between; */
    flex: 1;
    gap: 26px;
    /* 设计稿条目间距 26px */
}

.notice-item {
    display: flex;
    gap: 16px;
    align-items: center;
    cursor: pointer;
    width: 100%;
    padding: 0;
    border-bottom: none;
}

.notice-item:last-child {
    border-bottom: none;
}

.notice-item__date {
    display: flex;
    flex-direction: column;
    text-align: center;
    flex-shrink: 0;
    line-height: 20px;
}

.notice-item__day {
    font-size: 16px;
    color: #fe9900;
    font-weight: 600;
}

.notice-item__year {
    font-size: 14px;
    color: #999;
}

.notice-item__divider {
    width: 0;
    height: 34px;
    border-right: 1px solid #D5D5D5;
    flex-shrink: 0;
}

.notice-item__content {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.notice-item__title {
    font-size: 16px;
    color: #333;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: color 0.2s;
}

.notice-item:hover .notice-item__title {
    color: #fe9900;
}

.notice-item__desc {
    font-size: 14px;
    color: #999;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: color 0.2s;
}

.notice-item:hover .notice-item__desc {
    color: #fe9900;
}

/* 登录入口 */
.login-entries {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    width: 100%;
}

@media (min-width: 1024px) {
    .login-entries {
        grid-template-columns: 1fr;
        width: 312px;
        height: 388px;
    }
}

.login-entry-btn {
    background: linear-gradient(to bottom, #fff 40%, #fffbf0);
    height: 88px;
    border-radius: 12px;
    border: 1px solid #f4debc;
    display: flex;
    align-items: center;
    padding: 0 16px;
    cursor: pointer;
    transition: box-shadow 0.2s;
    position: relative;
    overflow: hidden;
}

@media (min-width: 1024px) {
    .login-entry-btn {
        height: 88px;
        padding: 0 40px 0 40px;
        padding-right: 20px;
    }
}

.login-entry-btn:hover {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.login-entry-content {
    flex: 1;
    display: flex;
    gap: 6px;
    align-items: center;
}

@media (min-width: 1024px) {
    .login-entry-content {
        gap: 8px;
    }
}

.login-entry-name {
    font-size: 16px;
    color: #333;
    font-weight: 700;
}

@media (min-width: 1024px) {
    .login-entry-name {
        font-size: 20px;
    }
}

.login-entry-arrow {
    position: relative;
    flex-shrink: 0;
    width: 20px;
    height: 20px;
}

@media (min-width: 1024px) {
    .login-entry-arrow {
        width: 24px;
        height: 24px;
    }
}

.login-entry-avatar {
    height: 48px;
    width: 54px;
    position: relative;
    flex-shrink: 0;
    overflow: hidden;
}

@media (min-width: 1024px) {
    .login-entry-avatar {
        height: 58px;
        width: 65px;
    }
}

.login-entry-avatar img {
    position: absolute;
    max-width: none;
}

/* 通用区块样式 */
.section {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
}

@media (min-width: 1024px) {
    .section {
        gap: 24px;
    }
}

.section-header {
    width: 100%;
    max-width: 1300px;
    padding: 0 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
}

/* 电子商城、处置专区模块在移动端也保持查看更多在同一行 */
.mall-section .section-header,
.disposal-section .section-header {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

@media (min-width: 768px) {
    .section-header {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}

@media (min-width: 1024px) {
    .section-header {
        padding: 0;
    }
}

.section-title {
    display: flex;
    gap: 8px;
    align-items: center;
}

@media (min-width: 1024px) {
    .section-title {
        gap: 12px;
    }
}

.section-title-icon {
    width: 26px;
    height: 26px;
    flex-shrink: 0;
}

.section-title-text {
    font-size: 22px;
    color: #333;
    letter-spacing: 1.8px;
    white-space: nowrap;
    font-weight: normal;
    font-family: '优设标题黑', sans-serif;
}

@media (min-width: 1024px) {
    .section-title-text {
        font-size: 36px;
    }
}

.tab-bar {
    background-color: rgba(226, 226, 226, 0.4);
    display: flex;
    gap: 6px;
    height: 40px;
    align-items: center;
    justify-content: flex-start;
    padding: 4px 5px;
    border-radius: 99px;
    overflow-x: auto;
    flex-wrap: nowrap;
    max-width: 100%;
    cursor: grab;
    flex-shrink: 0;
    box-sizing: border-box;
    /* 隐藏滚动条 */
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
}

.tab-bar:active {
    cursor: grabbing;
}

.tab-bar::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari and Opera */
}

@media (min-width: 1024px) {
    .tab-bar {
        gap: 12px;
        height: 52px;
        padding: 6px 5px;
        justify-content: center;
    }
}

.tab-item {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    flex-shrink: 0;
    cursor: pointer;
    transition: all 0.2s;
    width: 100px;
    font-size: 14px;
    color: #333;
    border: none;
    background: transparent;
}

@media (min-width: 1024px) {
    .tab-item {
        width: 130px;
    }
}

.tab-item:hover {
    color: #fe9900;
}

.tab-item.active {
    background-color: #fe9900;
    color: #fff;
    font-weight: 700;
}

/* 电子商城Tab栏在移动端左右边距补全，使其与Header左右对齐 */
@media (max-width: 1023px) {
    .mall-tab-bar {
        width: calc(100% - 32px);
        margin: 0 16px;
    }
}

.tab-more {
    height: 100%;
    display: flex;
    gap: 4px;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    flex-shrink: 0;
    cursor: pointer;
    width: 100px;
    font-size: 14px;
    color: #333;
    transition: color 0.2s;
    border: none;
    background: transparent;
}

@media (min-width: 1024px) {
    .tab-more {
        width: 88px;
    }

    /* 招标与非招信息查看更多改为 130px */
    #more-tender,
    #more-nontender {
        width: 130px;
    }

    /* 电子商城与处置专区保持 88px */
    #more-mall,
    #more-disposal {
        width: 88px;
    }
}

.tab-more:hover {
    color: #fe9900;
}

.tab-more svg path {
    fill: #333333;
    transition: fill 0.2s;
}

.tab-more:hover svg path {
    fill: #fe9900;
}

/* 卡片网格 */
.card-grid {
    width: 100%;
    max-width: 1300px;
    padding: 0 16px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

@media (min-width: 768px) {
    .card-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .card-grid {
        padding: 0;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

/* 招标/非招卡片 - 与React组件一致*/
/* 招标/非招卡片 - 与React组件一致*/

.tender-card {
    background-color: #fff;
    min-width: 0;
    position: relative;
    border-radius: 12px;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.2s;
}

.tender-card:hover {
    border-color: #fe9900;
}

.tender-card__inner {
    overflow: hidden;
    border-radius: inherit;
    width: 100%;
    height: 100%;
}

.tender-card__content {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
    padding: 12px;
    width: 100%;
}

@media (min-width: 1024px) {
    .tender-card__content {
        gap: 16px;
        padding: 15px;
    }
}

.tender-card__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.tender-card__date {
    padding: 4px 12px;
    border-radius: 99px;
    border: 1px solid #d5d5d5;
    font-size: 14px;
    color: #999;
}

@media (min-width: 1024px) {
    .tender-card__date {
        padding: 4px 17px;
        font-size: 16px;
    }
}

.tender-card__tag {
    padding: 2px 8px;
    background-color: #fff5e6;
    color: #fe9900;
    border-radius: 4px;
    font-size: 12px;
}

.tender-card__tag--secondary {
    background-color: #e6f7ff;
    color: #1890ff;
}

/* 招标/非招卡片 - 设计稿样式 */
.tender-card-new {
    display: block;
    background-color: #fff;
    min-width: 0;
    position: relative;
    border-radius: 12px;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.2s;
}

.tender-card-new:hover {
    border-color: #fe9900;
}

.tender-card-new__inner {
    overflow: hidden;
    border-radius: inherit;
    width: 100%;
    height: 100%;
}

.tender-card-new__content {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
    padding: 15px;
    width: 100%;
}

.tender-card-new__date {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px 17px;
    border-radius: 99px;
    border: 1px solid #d5d5d5;
    font-size: 16px;
    color: #999;
    font-family: 'Source Han Sans CN', sans-serif;
}

.tender-card-new__body {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
}

.tender-card-new__title {
    font-size: 16px;
    color: #333;
    font-weight: 500;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 100%;
    font-family: 'Source Han Sans CN', sans-serif;
}

.tender-card-new__meta {
    display: flex;
    gap: 12px;
    align-items: center;
    width: 100%;
}

.tender-card-new__meta-item {
    display: flex;
    gap: 6px;
    align-items: center;
}

.tender-card-new__meta-icon {
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tender-card-new__meta-icon svg {
    width: 100%;
    height: 100%;
}

.tender-card-new__meta-text {
    font-size: 14px;
    color: #999;
    font-family: 'Source Han Sans CN', sans-serif;
}

.tender-card-new__meta-divider {
    width: 0;
    height: 14px;
    border-right: 1px solid #d5d5d5;
}

.tender-card-new__footer {
    display: flex;
    flex-direction: column;
    gap: 6px;
    width: 100%;
}

.tender-card-new__info-row {
    display: flex;
    gap: 6px;
    align-items: center;
    width: 100%;
}

.tender-card-new__info-icon {
    width: 14px;
    height: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.tender-card-new__info-icon svg {
    width: 100%;
    height: 100%;
}

.tender-card-new__info-label {
    font-size: 14px;
    color: #666;
    flex-shrink: 0;
    font-family: 'Source Han Sans CN', sans-serif;
}

.tender-card-new__info-value {
    font-size: 14px;
    color: #666;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    flex: 1;
    font-family: 'Source Han Sans CN', sans-serif;
}

.tender-card-new__countdown {
    font-size: 14px;
    color: #fe9900;
    margin-left: auto;
    font-weight: 600;
    font-family: 'Source Han Sans CN', sans-serif;
}

.tender-card__body {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
}

.tender-card__title {
    font-size: 14px;
    color: #333;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 2.5em;
    width: 100%;
    font-weight: 500;
    line-height: 1.25em;
}

@media (min-width: 1024px) {
    .tender-card__title {
        font-size: 16px;
    }
}

.tender-card__meta {
    display: flex;
    gap: 12px;
    align-items: center;
    width: 100%;
}

.tender-card__meta-item {
    display: flex;
    gap: 6px;
    align-items: center;
}

.tender-card__meta-icon {
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tender-card__meta-icon svg {
    width: 100%;
    height: 100%;
}

.tender-card__meta-text {
    font-size: 12px;
    color: #999;
}

@media (min-width: 1024px) {
    .tender-card__meta-text {
        font-size: 14px;
    }
}

.tender-card__meta-divider {
    width: 0;
    height: 14px;
    border-right: 1px solid #d5d5d5;
}

.tender-card__footer {
    display: flex;
    flex-direction: column;
    gap: 4px;
    width: 100%;
}

@media (min-width: 1024px) {
    .tender-card__footer {
        gap: 6px;
    }
}

.tender-card__info-row {
    display: flex;
    gap: 6px;
    align-items: center;
    width: 100%;
}

.tender-card__info-icon {
    width: 14px;
    height: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.tender-card__info-icon svg {
    width: 100%;
    height: 100%;
}

.tender-card__info-label {
    font-size: 12px;
    color: #666;
    flex-shrink: 0;
}

@media (min-width: 1024px) {
    .tender-card__info-label {
        font-size: 14px;
    }
}

.tender-card__info-value {
    font-size: 12px;
    color: #666;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    flex: 1;
}

@media (min-width: 1024px) {
    .tender-card__info-value {
        font-size: 14px;
    }
}

.tender-card__countdown {
    font-size: 12px;
    color: #fe9900;
    margin-left: auto;
    font-weight: 600;
}

@media (min-width: 1024px) {
    .tender-card__countdown {
        font-size: 14px;
    }
}

/* 处置专区卡片 */
.disposal-grid {
    width: 100%;
    max-width: 1300px;
    padding: 0 16px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

@media (min-width: 768px) {
    .disposal-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .disposal-grid {
        padding: 0;
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }
}

.disposal-card {
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    cursor: pointer;
    transition: all 0.2s;
}

.disposal-card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.disposal-card__image-wrapper {
    width: 100%;
    height: 160px;
    overflow: hidden;
    background-color: #f5f5f5;
}

@media (min-width: 1024px) {
    .disposal-card__image-wrapper {
        height: 190px;
    }
}

.disposal-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.disposal-card:hover .disposal-card__image {
    transform: scale(1.05);
}

.disposal-card__content {
    padding: 12px;
}

@media (min-width: 1024px) {
    .disposal-card__content {
        padding: 16px;
    }
}

.disposal-card__title {
    font-size: 14px;
    color: #333;
    font-weight: 500;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.4;
}

@media (min-width: 1024px) {
    .disposal-card__title {
        font-size: 16px;
    }
}

.disposal-card__org {
    font-size: 12px;
    color: #999;
    margin-bottom: 12px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

@media (min-width: 1024px) {
    .disposal-card__org {
        font-size: 14px;
    }
}

.disposal-card__footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.disposal-card__price {
    font-size: 16px;
    color: #ff4d4f;
    font-weight: 700;
}

@media (min-width: 1024px) {
    .disposal-card__price {
        font-size: 18px;
    }
}

.disposal-card__countdown {
    font-size: 12px;
    color: #fe9900;
    background-color: #fff5e6;
    padding: 2px 8px;
    border-radius: 4px;
}

@media (min-width: 1024px) {
    .disposal-card__countdown {
        font-size: 13px;
    }
}



.mall-card {
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    cursor: pointer;
    transition: all 0.2s;
    border: 2px solid transparent;
    height: 100%;
    /* 填充满容器高度 */
    display: flex;
    flex-direction: column;
}

.mall-card:hover,
.mall-card.active {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
    border-color: #fe9900;
}

.mall-card__image-wrapper {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background-color: #f5f5f5;
}

.mall-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.mall-card:hover .mall-card__image {
    transform: scale(1.05);
}

.mall-card__content {
    padding: 12px;
    flex: 1;
    /* 占据剩余空间，将页脚推至底部 */
    display: flex;
    flex-direction: column;
}

.mall-card__title {
    font-size: 13px;
    color: #333;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.4;
    height: 2.8em;
    flex: 1;
    /* 让标题区域自适应拉伸 */
}

@media (min-width: 1024px) {
    .mall-card__title {
        font-size: 14px;
    }
}

.mall-card__footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mall-card__price {
    font-size: 15px;
    color: #ff4d4f;
    font-weight: 700;
}

@media (min-width: 1024px) {
    .mall-card__price {
        font-size: 16px;
    }
}

.mall-card__sales {
    font-size: 12px;
    color: #999;
}

/* 卡片选中状态 - 设计稿中第二个卡片有橙色边框 */
.tender-card-new.active,
.tender-card-new[data-active="true"] {
    border-color: #fe9900;
}

/* 处置专区表格样式 */
.disposal-table-container {
    width: 100%;
    padding: 0 16px;
}

@media (min-width: 1024px) {
    .disposal-table-container {
        padding: 0;
    }
}

.disposal-table {
    width: 100%;
    table-layout: fixed;
    border-collapse: separate;
    border-spacing: 0 0px;
    background-color: transparent;
    border-radius: 0;
    overflow: visible;
    box-shadow: none;
}

.disposal-table thead {
    background: linear-gradient(to right, #fe9900, #ff7a00);
    border-radius: 6px;
    overflow: hidden;
}

.disposal-table th {
    padding: 0 12px;
    height: 52px;
    line-height: 52px;
    text-align: left;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.disposal-table th:first-child {
    border-radius: 6px 0 0 6px;
}

.disposal-table th:last-child {
    border-radius: 0 6px 6px 0;
}

@media (min-width: 1024px) {
    .disposal-table th {
        padding: 0 24px;
    }
}

.disposal-table .th-name {
    width: 24%;
}

.disposal-table .th-price {
    width: 20%;
}

.disposal-table .th-time {
    width: 28%;
}

.disposal-table .th-location {
    width: 25%;
}

.disposal-table tbody tr {
    border-bottom: none;
    transition: background-color 0.2s;
    height: 52px;
}

.disposal-table tbody tr:nth-child(odd) {
    background-color: #ffffff;
}

.disposal-table tbody tr:nth-child(even) {
    background-color: #F5F5F5;
}

.disposal-table tbody tr:hover {
    background-color: #fffbf0;
}

.disposal-table td:first-child {
    border-radius: 6px 0 0 6px;
}

.disposal-table td:last-child {
    border-radius: 0 6px 6px 0;
}

.disposal-table td {
    padding: 0 12px;
    height: 52px;
    line-height: 52px;
    font-size: 14px;
    color: #333;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

@media (min-width: 1024px) {
    .disposal-table td {
        padding: 0 24px;
    }
}

.disposal-table .td-name {
    font-weight: 500;
    text-overflow: ellipsis;
}

.disposal-table .td-price {
    color: #ff4d4f;
    font-weight: 600;
}

.disposal-table .td-time,
.disposal-table .td-location {
    color: #666;
}

/* 两列左右布局容器 */
.two-columns-section {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 16px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

@media (min-width: 1024px) {
    .two-columns-section {
        flex-direction: row;
        padding: 0;
        gap: 50px;
        align-items: stretch;
    }
}

/* 处置专区 - 右栏 */
.disposal-section {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

@media (min-width: 1024px) {
    .disposal-section {
        flex: 1;
    }
}

.disposal-section .section-header {
    padding: 0;
}

.disposal-section .disposal-table-container {
    padding: 0;
}

/* 电子商城 - 左栏 */
.mall-section {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

@media (min-width: 1024px) {
    .mall-section {
        flex: 1;
    }
}

.mall-section .section-header {
    padding: 0;
}

/* 电子商城Tab栏 - 单独一行 */
.mall-tab-bar {
    background-color: rgba(226, 226, 226, 0.4);
    display: flex;
    gap: 0;
    height: 52px;
    align-items: center;
    justify-content: stretch;
    padding: 6px 5px;
    border-radius: 99px;
    overflow-x: auto;
    flex-wrap: nowrap;
    width: 100%;
}

.mall-tab-bar .tab-item {
    flex: 1;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 14px;
    color: #333;
    border: none;
    background: transparent;
}

.mall-tab-bar .tab-item:hover {
    color: #fe9900;
}

.mall-tab-bar .tab-item.active {
    background-color: #fe9900;
    color: #fff;
    font-weight: 700;
}

/* 电子商城网格样式 - 适配ID选择器 */
#mall-list {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    padding: 0;
    flex: 1;
    /* 占据父容器剩余高度 */
}

@media (min-width: 768px) {
    #mall-list {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    #mall-list {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
        padding: 0;
    }
}

/* 隐藏滚动条 */
.no-scrollbar::-webkit-scrollbar {
    display: none;
}

.no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* 供应商入驻指引 */
.supplier-guide-section {
    width: 100%;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 50px 16px !important;
    gap: 24px;
}

@media (min-width: 1024px) {
    .supplier-guide-section {
        padding: 50px 0 !important;
    }
}

/* 标题区域 */
.supplier-guide-title-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    width: 100%;
    max-width: 1300px;
}

.supplier-guide-line-img {
    display: block;
    width: 100%;
    max-width: 1300px;
    height: auto;
}

/* 步骤流程 */
.supplier-guide-steps {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1300px;
    gap: 12px;
    flex-wrap: wrap;
}

@media (min-width: 1024px) {
    .supplier-guide-steps {
        gap: 0;
        flex-wrap: nowrap;
    }
}

/* 单个步骤 */
.supplier-guide-step {
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 0 0 auto;
}

/* 圆形编号 */
.supplier-guide-step-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid #fe9900;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 13px rgba(255, 179, 125, 0.6);
    flex-shrink: 0;
}

.supplier-guide-step-circle span {
    font-size: 30px;
    color: #fe9900;
    letter-spacing: 3px;
    font-family: 'OPPOSans', sans-serif;
}

/* 步骤信息 */
.supplier-guide-step-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 2px;
}

.supplier-guide-step-name {
    font-size: 20px;
    color: #27313d;
    font-weight: 700;
    text-align: left;
}

.supplier-guide-step-en {
    font-size: 12px;
    color: #8b949e;
    text-align: left;
    white-space: nowrap;
}

/* 步骤箭头 */
.supplier-guide-step-arrow {
    flex: 0 0 74px;
    flex-shrink: 0;
    display: none;
}

.supplier-guide-step-arrow img {
    display: block;
    width: 74px;
    height: auto;
}

@media (min-width: 1024px) {
    .supplier-guide-step-arrow {
        display: flex;
        align-items: center;
        justify-content: center;
    }
}