/*
 * @Author: lucky
 * @Date: 2023-12-27 17:52:42
 */

/* ===== RFQ Marketplace — Figma 2388:761 ===== */
.hallPage {
    padding-bottom: 40px;
}

body:has(.hallPage) {
    background: #f8f8f8;
}

.hallLayout {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-top: 0;
}

.hallSidebar {
    width: 250px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.hallMain {
    flex: 1;
    min-width: 0;
}

.hallFilterCard,
.hallLatestCard {
    border-radius: 10px;
    box-shadow: 0 8px 22px rgba(15, 23, 41, 0.07);
    padding: 15px;
    box-sizing: border-box;
}

.hallFilterHead {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid #e0e8f2;
}

.hallFilterHead b {
    font-size: 17px;
    font-weight: 700;
    line-height: 1.28;
    color: #000000;
}

.hallFilterReset {
    border: none;
    background: transparent;
    padding: 0;
    font-size: 11px;
    font-weight: 600;
    line-height: 1.28;
    color: #ff4a12;
    cursor: pointer;
}

.hallFilterReset:hover {
    text-decoration: underline;
}

.hallFilterCard .fileterList {
    margin: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0;
    flex-wrap: nowrap;
    box-sizing: border-box;
}

.hallFilterCard .filterSection {
    width: 100%;
    box-sizing: border-box;
    padding: 12px 0;
    border-bottom: 1px solid #e0e8f2;
}

.hallFilterCard .filterSection:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.hallFilterCard .filterSectionTitle {
    font-size: 12px;
    font-weight: 700;
    line-height: 1.28;
    color: #000000;
    margin-bottom: 8px;
}

.hallFilterCard .filterField {
    width: 100%;
    padding: 0;
    border-radius: 0;
    display: block;
}

.hallFilterCard .filterField select {
    width: 100%;
    max-width: none;
    height: 36px;
    padding: 0 28px 0 11px;
    border: 1px solid #ccd9e8;
    border-radius: 6px;
    font-size: 12px;
    color: #000000;
    background-color: #ffffff;
    box-sizing: border-box;
}

.hallFilterCard .filterRadioGroup {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: stretch;
    gap: 8px;
    width: 100%;
    box-sizing: border-box;
}

.hallFilterCard .filterRadioItem {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: auto;
    max-width: 100%;
    flex: 0 1 auto;
    min-height: 0;
    padding: 0;
    border: none;
    border-radius: 0;
    background: transparent;
    box-sizing: border-box;
    cursor: pointer;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.28;
    color: #000000;
}

.hallFilterCard .filterRadioItem:has(input:checked) {
    font-weight: 600;
}

.hallFilterCard .filterRadioItem input[type="radio"] {
    width: 15px;
    height: 15px;
    margin: 0;
    flex-shrink: 0;
    accent-color: #ff4a12;
    cursor: pointer;
}

.hallFilterCard .filterRadioItem span {
    flex: 0 1 auto;
    min-width: 0;
    white-space: normal;
    word-break: break-word;
}

.hallLatestCard .latestTransactionHead {
    min-height: auto;
    padding: 0 0 12px;
    margin: 0;
    background: transparent;
    border: none;
    border-radius: 0;
}

.hallLatestCard .latestTransactionHead b {
    font-size: 17px;
    font-weight: 700;
    color: #000000;
}

.hallLatestCard .latestTransaction {
    min-height: 124px;
    border: none;
    border-radius: 10px;
    background: #fff4ea;
    margin: 0;
    overflow: hidden;
}

.hallLatestCard .latestTransactionCarousel {
    display: flex;
    align-items: center;
    gap: 4px;
    min-height: 124px;
    padding: 0 8px;
    box-sizing: border-box;
}

.hallLatestCard .latestTransactionViewport {
    flex: 1;
    min-width: 0;
    height: 124px;
    overflow: hidden;
    position: relative;
    padding: 0;
    mask-image: none;
    -webkit-mask-image: none;
}

.hallLatestCard .latestTransactionTrack {
    position: relative;
    width: 100%;
    height: 100%;
}

.hallLatestCard .latestTransactionSlide {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 16px 8px;
    box-sizing: border-box;
    text-align: center;
    color: #ff6029;
    opacity: 0;
    visibility: hidden;
    transform: translateX(12px);
    transition: opacity 0.35s ease, transform 0.35s ease, visibility 0.35s;
}

.hallLatestCard .latestTransactionSlide.is-active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    z-index: 1;
}

.hallLatestCard .latestTxSupplier {
    margin: 0;
    width: 100%;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.28;
    color: #ff6029;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.hallLatestCard .latestTxProduct {
    margin: 0;
    width: 100%;
    max-width: 168px;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.28;
    color: #ff6029;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.hallLatestCard .latestTxPrice {
    margin: 0;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.28;
    color: #ff6029;
}

.hallLatestCard .latestTxNav {
    flex-shrink: 0;
    width: 12px;
    height: 12px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: rgba(255, 96, 41, 0.8);
    color: #ffffff;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, opacity 0.2s ease;
}

.hallLatestCard .latestTxNav svg {
    display: block;
    width: 8px;
    height: 8px;
}

.hallLatestCard .latestTxNav:hover:not(:disabled) {
    background: rgba(255, 96, 41, 1);
}

.hallLatestCard .latestTxNav:disabled {
    opacity: 0.4;
    cursor: default;
    background: rgba(255, 96, 41, 0.8);
}

.bagWhite {
    background: white;
}

/* Breadcrumb Navigation */
.breadcrumb-nav {
    display: flex;
    align-items: center;
    padding: 20px 0 20px 0;
    margin-top: 0;
    margin-bottom: 0;
    font-size: 14px;
    color: #64748b;
    width: 100%;
    justify-content: flex-start;
}

.breadcrumb-item {
    color: #64748b;
    text-decoration: none;
    transition: color 0.2s ease;
    display: inline-flex;
    align-items: center;
    line-height: 1.5;
}

.breadcrumb-item:hover {
    color: var(--color);
}

.breadcrumb-item.breadcrumb-current {
    font-weight: 500;
    cursor: default;
    pointer-events: none;
}

.breadcrumb-separator {
    margin: 0 10px;
    color: #94a3b8;
    display: inline-flex;
    align-items: center;
    line-height: 1;
}

/* Page Header */
.pageHeader {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 24px 0;
    padding: 0;
    gap: 24px;
    flex-wrap: wrap;
}

.pageHeaderLeft {
    flex: 1;
    min-width: 0;
}

.pageTitle {
    font-size: 36px;
    font-weight: 700;
    color: #000000;
    margin: 0 0 8px 0;
    line-height: 1.28;
    letter-spacing: 0;
}

.pageSubtitle {
    font-size: 15px;
    font-weight: 400;
    color: #26344d;
    margin: 0;
    line-height: 1.28;
}

.pageHeaderRight {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
}

@media (max-width: 768px) {
    .pageHeader {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .pageHeaderRight {
        width: 100%;
    }
    
    .postNewRFQBtn {
        width: 100%;
    }
}

.postNewRFQBtn {
    min-width: 188px;
    height: 50px;
    padding: 0 24px;
    background: #ff4a12;
    color: #ffffff;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    transition: filter 0.2s ease;
    box-shadow: 0 5px 6px rgba(15, 23, 41, 0.12);
    white-space: nowrap;
    border: none;
}

.postNewRFQBtn::before {
    content: '+';
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    margin-right: 0;
}

.postNewRFQBtn:hover {
    filter: brightness(1.05);
    color: #ffffff;
    text-decoration: none;
    background: #ff4a12;
    transform: none;
    opacity: 1;
}

.postNewRFQBtn:active {
    filter: brightness(0.95);
    transform: none;
    box-shadow: 0 5px 6px rgba(15, 23, 41, 0.12);
}

.postNewRFQBtn:focus {
    outline: none;
    box-shadow: 0 5px 6px rgba(15, 23, 41, 0.12), 0 0 0 3px rgba(255, 74, 18, 0.2);
}

h2 {
    margin: 0;
}

.ellipsis {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.ellipsisTwo {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.releaseDemand {
    width: 100%;
    padding: 20px;
    margin-top: 20px;
    margin-bottom: 20px;
    box-sizing: border-box;
    border-radius: 10px;
}

.releaseDemandHeader {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #d9d9d9;
    margin-bottom: 15px;
    position: relative;
}

.releaseDemandForm {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.releaseDemand h2 {
    font-size: 20px;
    font-weight: 700;
    color: #1e293b;
    margin: 0;
    line-height: 1.5;
}

.releaseDemand h6 {
    color: #64748b;
    font-size: 14px;
    font-weight: 400;
    margin: 4px 0 0 0;
    padding: 0;
    border: none;
}

.releaseDemand .fromGoods {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.releaseDemand .fromGoods .formLabel {
    font-size: 14px;
    font-weight: 600;
    color: #334155;
    white-space: nowrap;
    margin: 0;
    display: block;
}

.releaseDemand .fromGoods span {
    font-size: 14px;
    color: #334155;
    font-weight: 600;
    white-space: nowrap;
}

.releaseDemand .fromGoods i {
    color: #ef4444;
    margin-right: 3px;
}

.releaseDemand .fromGoods select,
.releaseDemand .fromGoods input,
.releaseDemand .fromGoods textarea {
    height: 40px;
    list-style: none;
    border: 1px solid #e2e8f0;
    padding: 0 14px;
    outline-style: none;
    background: #FFFFFF;
    border-radius: 8px;
    font-size: 14px;
    color: #1e293b;
    transition: all 0.2s ease;
    box-sizing: border-box;
}

.releaseDemand .fromGoods select:focus,
.releaseDemand .fromGoods input:focus,
.releaseDemand .fromGoods textarea:focus {
    border-color: var(--color);
    box-shadow: 0 0 0 3px rgba(var(--rgba4), 0.1);
}

.releaseDemand .fromGoods select:hover,
.releaseDemand .fromGoods input:hover,
.releaseDemand .fromGoods textarea:hover {
    border-color: #cbd5e1;
}

.releaseDemand .fromGoods.fromClassIfy {
    width: 100%;
}

.releaseDemand .fromGoods.fromClassIfy .categorySelects {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.releaseDemand .fromGoods.fromClassIfy select {
    flex: 1;
    min-width: 160px;
    font-size: 14px;
}

.releaseDemand .fromGoods.fromName input {
    width: 100%;
    max-width: 400px;
}

.releaseDemand .fromGoods.fromDesc textarea {
    width: 100%;
    max-width: 600px;
    min-height: 100px;
    padding: 12px 14px;
    line-height: 1.5;
    resize: vertical;
    font-family: inherit;
}

.releaseDemand .fromGoods.fromSubmit {
    margin-top: 8px;
}

.releaseDemand .fromGoods button {
    min-width: 160px;
    padding: 0 32px;
    line-height: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--color) 0%, rgba(var(--rgba4), 0.9) 100%);
    border: none;
    color: white;
    border-radius: 8px;
    cursor: pointer;
    white-space: nowrap;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.2s ease;
    box-shadow: 0 2px 4px rgba(var(--rgba4), 0.2);
}

.releaseDemand .fromGoods button:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(var(--rgba4), 0.3);
}

.releaseDemand .fromGoods button:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(var(--rgba4), 0.2);
}

.fileterList {
    margin: 10px 0px 25px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px 20px;
    align-items: flex-end;
    row-gap: 14px;
}

.classIfy,
.demandModeSelect,
.timeSelect,
.unifiedStatusSelect,
.filterCountry,
.quantityRangeSelect,
.filterBarItem {
    padding: 10px 20px;
    display: flex;
    align-items: center;
    border-radius: 10px;
    flex: 0 1 auto;
    min-width: 0;
    box-sizing: border-box;
}

.classIfy p,
.demandModeSelect p,
.timeSelect p,
.unifiedStatusSelect p,
.filterCountry p,
.quantityRangeSelect p,
.filterBarItem p {
    margin-top: 4px;
    color: black;
    font-weight: bold;
    font-size: 14px;
    margin-right: 10px;
    white-space: nowrap;
}

.classIfy .classIfySelect,
.demandModeSelect .demandModeSelectSelect,
.timeSelect .timeSelectSelect,
.unifiedStatusSelect .unifiedStatusSelectSelect,
.filterCountry .filterCountrySelect,
.quantityRangeSelect .quantityRangeSelectSelect {
    width: 200px;
    max-width: 200px;
    height: 36px;
    padding: 0 10px;
    border: 1px solid #d9d9d9;
    border-radius: 8px;
    font-size: 14px;
    color: #363636;
    background: #fff;
    cursor: pointer;
    outline: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 12px;
    padding-right: 30px;
}

.classIfy .classIfySelect:hover,
.demandModeSelect .demandModeSelectSelect:hover,
.timeSelect .timeSelectSelect:hover,
.unifiedStatusSelect .unifiedStatusSelectSelect:hover,
.filterCountry .filterCountrySelect:hover,
.quantityRangeSelect .quantityRangeSelectSelect:hover {
    border-color: var(--color);
}

.classIfy .classIfySelect:focus,
.demandModeSelect .demandModeSelectSelect:focus,
.timeSelect .timeSelectSelect:focus,
.unifiedStatusSelect .unifiedStatusSelectSelect:focus,
.filterCountry .filterCountrySelect:focus,
.quantityRangeSelect .quantityRangeSelectSelect:focus {
    border-color: var(--color);
    box-shadow: 0 0 0 2px rgba(65, 158, 255, 0.1);
}

@media (max-width: 768px) {
    .fileterList {
        flex-direction: column;
        align-items: stretch;
    }

    .classIfy,
    .demandModeSelect,
    .timeSelect,
    .unifiedStatusSelect,
    .filterCountry,
    .quantityRangeSelect,
    .filterBarItem {
        width: 100%;
        flex-wrap: wrap;
    }

    .classIfy .classIfySelect,
    .demandModeSelect .demandModeSelectSelect,
    .timeSelect .timeSelectSelect,
    .unifiedStatusSelect .unifiedStatusSelectSelect,
    .filterCountry .filterCountrySelect,
    .quantityRangeSelect .quantityRangeSelectSelect {
        width: 100%;
        max-width: none;
        flex: 1 1 auto;
    }
}

/* Option styles */
.classIfy .classIfySelect option,
.demandModeSelect .demandModeSelectSelect option,
.timeSelect .timeSelectSelect option,
.unifiedStatusSelect .unifiedStatusSelectSelect option,
.filterCountry .filterCountrySelect option,
.quantityRangeSelect .quantityRangeSelectSelect option,
.releaseDemand .fromGoods select option {
    padding: 10px 12px;
    font-size: 14px;
    color: #363636;
    background: rgba(255, 255, 255, 0.95);
    line-height: 1.5;
    border-radius: 4px;
    margin: 2px 0;
}

.classIfy .classIfySelect option:hover,
.demandModeSelect .demandModeSelectSelect option:hover,
.timeSelect .timeSelectSelect option:hover,
.unifiedStatusSelect .unifiedStatusSelectSelect option:hover,
.filterCountry .filterCountrySelect option:hover,
.quantityRangeSelect .quantityRangeSelectSelect option:hover,
.releaseDemand .fromGoods select option:hover {
    background: rgba(65, 158, 255, 0.03);
    color: #363636;
}

.classIfy .classIfySelect option:checked,
.demandModeSelect .demandModeSelectSelect option:checked,
.timeSelect .timeSelectSelect option:checked,
.unifiedStatusSelect .unifiedStatusSelectSelect option:checked,
.filterCountry .filterCountrySelect option:checked,
.quantityRangeSelect .quantityRangeSelectSelect option:checked,
.releaseDemand .fromGoods select option:checked {
    background: rgba(65, 158, 255, 0.15);
    color: var(--color);
    font-weight: 500;
}

.classIfy .classIfySelect option:focus,
.demandModeSelect .demandModeSelectSelect option:focus,
.timeSelect .timeSelectSelect option:focus,
.unifiedStatusSelect .unifiedStatusSelectSelect option:focus,
.filterCountry .filterCountrySelect option:focus,
.quantityRangeSelect .quantityRangeSelectSelect option:focus,
.releaseDemand .fromGoods select option:focus {
    background: rgba(65, 158, 255, 0.12);
    color: var(--color);
}

.mainTitle {
    width: 100%;
    height: 65px;
    background: white;
    display: flex;
    align-items: flex-end;
    border-radius: 10px;
}

.mainTitle .titleDiv {
    flex: 2;
    font-weight: bold;
    font-size: 16px;
    height: 65px;
    line-height: 65px;
    text-align: center;
    color: #363636;
    cursor: pointer;
}

.mainTitle .divNow {
    color: var(--color) !important;
}

.mainTitle .cutRule {
    font-size: 20px;
    line-height: 65px;
    color: #CCCCCC;
}

.mainTitle .leftBag {
    flex: 2;
    line-height: 75px;
    height: 70px;
    text-align: left;
    background: url('../../images/pcImg/demandTitle.png') no-repeat center;
    background-size: 100% 100%;
}

.mainTitle .leftBag b {
    font-size: 20px;
    font-weight: bold;
    color: #FFFFFF;

}

.mainTitle .leftBag b::before {
    content: '';
    display: inline-block;
    vertical-align: middle;
    width: 5px;
    height: 25px;
    background: #FFFFFF;
    margin: 0px 5px 0px 20px;
}

.mainTitle .listStyle {
    display: flex;
    font-weight: normal;
    font-size: 14px;
    justify-content: space-around;
}

.mainTitle .listStyle .listNow {
    color: var(--color) !important;
}

.mainBox {
    width: 100%;
    display: flex;
    margin: 15px 0;
}

.mainBox .mainLeft {
    width: 100%;

}

.mainBox .mainLeft .mainLeft_ul {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

/* 最新交易区域 */
.latestTransactionHead {
    width: 100%;
    min-height: 56px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #f8fafc;
    border-radius: 8px;
    margin: 20px 0;
    border: 1px solid #e5e7eb;
}

.latestTransactionHead b {
    font-size: 18px;
    font-weight: 700;
    color: #1e293b;
}

.latestTransaction {
    width: 100%;
    min-height: 52px;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
    background: #ffffff;
    margin: 0 0 20px 0;
}

.latestTransactionViewport {
    overflow: hidden;
    width: 100%;
    padding: 14px 0;
    mask-image: linear-gradient(90deg, transparent 0%, #000 2%, #000 98%, transparent 100%);
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 2%, #000 98%, transparent 100%);
}

.latestTransactionTrack {
    display: inline-flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 3rem;
    white-space: nowrap;
    will-change: transform;
}

.latestTransactionTickerItem {
    flex-shrink: 0;
    font-size: 14px;
    color: #334155;
    line-height: 1.5;
    padding: 4px 0;
}

.latestTransactionViewport:hover .latestTransactionTrack {
    animation-play-state: paused !important;
}

@keyframes latestTransactionMarquee {
    from {
        transform: translate3d(0, 0, 0);
    }
    to {
        transform: translate3d(-50%, 0, 0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .latestTransactionTrack {
        animation: none !important;
        transform: none !important;
    }
}

.mainBox .mainLeft .mainLeft_ul.listModeList,
.hallMain .mainLeft_ul.listModeList {
    background: transparent;
    border-radius: 0;
    padding: 0;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 15px;
    flex-wrap: nowrap;
}

/* RFQ list card — Figma 2388:856 */
.demandCard {
    width: 100%;
    min-height: 232px;
    height: auto;
    background: #ffffff;
    border-radius: 10px;
    padding: 0;
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    box-shadow: 0 8px 22px rgba(15, 23, 41, 0.07);
    transition: box-shadow 0.2s ease;
    overflow: hidden;
    cursor: pointer;
}

.demandCard:hover {
    box-shadow: 0 10px 26px rgba(15, 23, 41, 0.1);
}

.demandCardMain {
    flex: 1;
    min-width: 0;
    padding: 23px 25px 22px;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.cardTitleRow {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px 12px;
    margin-bottom: 4px;
}

.cardTitleRow .cardGoodsName {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.28;
    color: #000000;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.cardDemandIdLine {
    margin: 0 0 16px;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.28;
    color: #636e82;
}

.cardFieldsRow {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    align-items: start;
    margin-bottom: 16px;
}

.cardFieldItem {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 0 24px;
    min-width: 0;
}

.cardFieldItem:first-child {
    padding-left: 0;
}

.cardFieldItem:not(:first-child)::before {
    content: '';
    position: absolute;
    left: 0;
    top: 2px;
    width: 1px;
    height: 30px;
    background: rgba(224, 232, 242, 0.5);
}

.fieldItemLabel {
    font-size: 12px;
    color: #636e82;
    font-weight: 400;
    line-height: 1.3;
}

.fieldItemValue {
    font-size: 14px;
    color: #000000;
    font-weight: 600;
    line-height: 1.28;
    word-break: break-word;
}

.cardDescription {
    margin: 0;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.7;
    letter-spacing: 0.28px;
    color: #000000;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.cardDescription.is-muted {
    color: #636e82;
    font-weight: 400;
}

.demandCardAside {
    width: 251px;
    flex-shrink: 0;
    padding: 22px 20px 22px 16px;
    border-left: 1px solid #e0e8f2;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    box-sizing: border-box;
}

.cardAsideCountdown {
    min-height: 20px;
    color: #ff4a12;
}

.cardAsideCountdownInner {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    max-width: 100%;
}

.cardCountdownIcon {
    flex-shrink: 0;
    color: #ff4a12;
}

.cardCountdownText,
.cardAsideCountdown .cardCountdownText {
    font-size: 13px;
    font-weight: 700;
    line-height: 1.28;
    letter-spacing: 0.26px;
    color: #ff4a12;
}

.cardAsideCountdown .countdownEnded {
    font-size: 13px;
    font-weight: 700;
    line-height: 1.28;
    letter-spacing: 0.26px;
    color: #000000;
}

.cardAsideCountdown .countdownUnlimited {
    font-size: 13px;
    font-weight: 600;
    line-height: 1.28;
    color: #636e82;
}

.cardAsideStats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 16px;
    align-items: start;
}

.cardAsideStat {
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 0;
}

.cardAsideStatLabel {
    font-size: 12px;
    font-weight: 400;
    line-height: 1.4;
    color: #636e82;
}

.cardAsideStatLabelStacked {
    display: flex;
    flex-direction: column;
    gap: 0;
    line-height: 1.4;
}

.cardAsideStatLabelLine {
    display: block;
}

.cardAsideStatValue {
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    color: #000000;
    display: flex;
    align-items: center;
    gap: 4px;
}

.cardAsideStatCountry .cardAsideStatValue {
    min-height: 28px;
    align-items: center;
}

.cardCountryFlag {
    font-size: 14px;
    line-height: 1;
}

.cardCountryCode {
    font-variant-numeric: tabular-nums;
}

.cardCountryMissing {
    font-weight: 500;
    color: #636e82;
    font-size: 12px;
    line-height: 1.4;
}

.cardAsideActions {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding-top: 4px;
}

.cardAsideActions button {
    width: 100%;
    max-width: 165px;
    margin: 0 auto;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.28;
    cursor: pointer;
    border: none;
    transition: filter 0.2s ease, border-color 0.2s ease, color 0.2s ease;
    padding: 0 12px;
    box-sizing: border-box;
}

.cardAsideActions .releaseAnalogy {
    height: 34px;
    background: #ff4a12;
    color: #ffffff;
    box-shadow: 0 5px 6px rgba(15, 23, 41, 0.12);
}

.cardAsideActions .releaseAnalogy:hover:not(:disabled) {
    filter: brightness(1.05);
}

.cardAsideActions .releaseAnalogy.is-closed,
.cardAsideActions .releaseAnalogy:disabled {
    background: #d9d9d9;
    color: #636e82;
    box-shadow: 0 5px 6px rgba(15, 23, 41, 0.12);
    cursor: not-allowed;
}

.cardAsideActions .participateBidding {
    height: 30px;
    background: #ffffff;
    color: #000000;
    border: 1px solid #ccd9e8;
}

.cardAsideActions .participateBidding:hover {
    border-color: #ff6029;
    color: #ff6029;
}

.rfqUnifiedStatus {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    height: 24px;
    padding: 0 11px;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.28;
    border-radius: 12px;
    white-space: nowrap;
    flex-shrink: 0;
}

.rfqUnifiedStatus::before {
    content: '';
    width: 4px;
    height: 4px;
    border-radius: 50%;
    flex-shrink: 0;
}

.rfqUnifiedStatus-pending-quote {
    background: #fff4ea;
    color: #ff6029;
}

.rfqUnifiedStatus-pending-quote::before {
    background: #ff6029;
}

.rfqUnifiedStatus-quote-completed {
    background: #dcfce7;
    color: #21ad6a;
}

.rfqUnifiedStatus-quote-completed::before {
    background: #21ad6a;
}

.rfqUnifiedStatus-closed {
    background: #f1f1f4;
    color: #636e82;
}

.rfqUnifiedStatus-closed::before {
    background: #636e82;
}

.rfqUnifiedStatus-converted {
    background: #e8f1ff;
    color: #2563eb;
}

.rfqUnifiedStatus-converted::before {
    background: #2563eb;
}

.demandCard .labelType_1 {
    background: linear-gradient(135deg, #FF6B6B 0%, #FF8787 100%);
    color: white;
}

.demandCard .labelType_2 {
    background: linear-gradient(135deg, #4ECDC4 0%, #6EDDD6 100%);
    color: white;
}

.demandCard .labelType_3 {
    background: linear-gradient(135deg, #95A5A6 0%, #BDC3C7 100%);
    color: white;
}

.mainBox .mainLeft .mainLeft_ul.listModeList > .listModeEmpty,
.hallMain .mainLeft_ul.listModeList > .listModeEmpty {
    list-style: none;
    width: 100%;
    margin: 0;
    padding: 0;
}

/* RFQ list empty — Figma-aligned card */
.hallMain .hallEmptyState {
    width: 100%;
    min-height: 320px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 8px 22px rgba(15, 23, 41, 0.07);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 48px 32px 56px;
    box-sizing: border-box;
}

.hallEmptyStateIcon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.hallEmptyStateSvg {
    display: block;
    width: 120px;
    height: 120px;
}

.hallEmptyStateTitle {
    margin: 0 0 10px;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.28;
    color: #000000;
}

.hallEmptyStateDesc {
    margin: 0 0 28px;
    max-width: 440px;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.65;
    color: #636e82;
}

.hallEmptyStateBtn {
    min-width: 200px;
}

.mainBox .mainLeft .mainLeft_ul .noData {
    width: 100%;
    padding: 48px 24px 56px;
    text-align: center;
    color: #636e82;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 8px 22px rgba(15, 23, 41, 0.07);
    box-sizing: border-box;
}

.mainBox .mainLeft .mainLeft_ul .noData img {
    display: block;
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    object-fit: contain;
}

.mainBox .mainLeft .mainLeft_ul .noData p {
    margin: 0;
    max-width: 440px;
    margin-left: auto;
    margin-right: auto;
    font-size: 14px;
    line-height: 1.65;
    color: #636e82;
}

.hallLatestCard .latestTransactionEmpty {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 124px;
    padding: 20px 16px;
    box-sizing: border-box;
    text-align: center;
    font-size: 13px;
    line-height: 1.5;
    color: #ff6029;
    opacity: 0.85;
}

.mainBox .mainLeft .mainLeft_ul .mainLeft_li {
    width: 30%;
    background: #FFFFFF url('../../images/pcImg/damendBag.png') no-repeat top;
    background-size: 100%;
}

.mainBox .mainLeft .mainLeft_ul .mainLeft_li .lableClassIfy {
    width: 100%;
    height: 25px;
}

.mainBox .mainLeft .mainLeft_ul .mainLeft_li .lableClassIfy span,
.mainLeft .listTable .tableGoodsName .lableClassIfy span {
    display: inline-block;
    width: 120px;
    height: 100%;
    font-size: 12px;
    line-height: 25px;
    color: white;
    text-align: center;
    font-weight: bold;
    background-size: cover;
}

.mainBox .mainLeft .mainLeft_ul .mainLeft_li .li_Title {
    max-width: 230px;
    font-size: 22px;
    font-weight: bold;
    line-height: 29px;
    margin-left: 10px;
}

.mainBox .mainLeft .mainLeft_ul .mainLeft_li .li_remark {
    width: 274px;
    height: 38px;
    font-size: 14px;
    color: #979797;
    line-height: 20px;
    margin: 15px 0px 10px 10px;
}

.mainBox .mainLeft .mainLeft_ul .mainLeft_li .li_count {
    margin: 15px 0px 10px 10px;
}

.mainBox .mainLeft .mainLeft_ul .mainLeft_li .li_count p {
    margin: 20px 0px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.mainBox .mainLeft .mainLeft_ul .mainLeft_li .li_count p:nth-of-type(2) {
    height: 30px;
}

.mainBox .mainLeft .mainLeft_ul .mainLeft_li .li_lable {
    display: inline-block;
    /* width: 150px; */
    /* height: 19px; */
    font-size: 14px;
    color: #ABABAB;
    line-height: 19px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.mainBox .mainLeft .mainLeft_ul .mainLeft_li .li_count i {
    display: inline-block;
    height: 30px;
    text-align: center;
    line-height: 30px;
    margin: 0px 5px;
    background: #F2F7FF;
}

.mainBox .mainLeft .mainLeft_ul .mainLeft_li .li_weiZhi,
.mainBox .mainLeft .mainLeft_ul .expectedSource .li_weiZhi{
    display: inline-block;
    width: 16px;
    height: 18px;
    background: url('../../images/pcImg/weiZhiBag.png') no-repeat center;
    background-size: 100% 100%;
    vertical-align: middle;
}

.mainBox .mainLeft .mainLeft_ul .li_shopData {
    width: 97%;
    height: 29px;
    display: flex;
    align-items: center;
    margin: 0px auto;
    background: #F1FAFF;
    border: 1px solid #D5EAFF;
    padding: 0px 5px;
}

.mainBox .mainLeft .mainLeft_ul .li_shopData .li_shopName {
    max-width: 180px;
    font-size: 14px;
    color: #262626;
    line-height: 19px;
    margin-right: 5px;
}

.mainBox .mainLeft .mainLeft_ul .li_shopData .li_isAutonym,
.mainBox .mainLeft .mainLeft_ul .li_shopData .li_isFirm {
    display: inline-block;
    height: 16px;
    margin: 0px 5px;
}

.mainBox .mainLeft .mainLeft_ul .li_shopData .li_isAutonym {
    width: 21px;
    background: #FFF0C9;
    background: url('../../images/pcImg/isAutonymBag.png') no-repeat center;
    background-size: cover;
}

.mainBox .mainLeft .mainLeft_ul .li_shopData .li_isFirm {
    width: 16px;
    background: url('../../images/pcImg/isFirmBag.png') no-repeat center;
    background-size: cover;
}

.mainBox .mainLeft .mainLeft_ul .mainLeft_li .li_Btn {
    width: 100%;
    margin-top: 5px;
    display: flex;
}

.mainBox .mainLeft .mainLeft_ul .mainLeft_li .li_Btn button {
    width: 50%;
    border: none;
    height: 52px;
    font-size: 14px;
    font-weight: bold;
    color: #FFFFFF;
    cursor: pointer;
}

.mainBox .mainLeft .mainLeft_ul .mainLeft_li .li_Btn button:nth-of-type(1) {
    /* border:2px solid var(--color);
    border-top-left-radius:10px ;
    border-bottom-left-radius:10px ;
    color: var(--color);
    background: white; */

    /* background: linear-gradient(135deg, #EC4545 0%, #F05C5C 100%); */
    background: linear-gradient(135deg, var(--rgba6) 0%, var(--rgba6) 100%);
}

.mainBox .mainLeft .mainLeft_ul .mainLeft_li .li_Btn button:nth-of-type(2) {
    background: linear-gradient(135deg, var(--color) 0%, var(--color) 100%);

    /* background: linear-gradient(135deg, #419EFF 0%, #419EFF 100%); */
    /* border-top-right-radius:10px ;
    border-bottom-right-radius:10px ; */
}

/* 列表模式 */
.mainBox .mainLeft .listTable {
    width: 100%;
    background: #FFFFFF;
    box-sizing: border-box;
}

.mainBox .mainLeft .listTable thead {
    width: 100%;
    height: 40px;
    font-size: 14px;
    border-bottom: 1px solid #d9d9d9;
}

.mainBox .mainLeft .listTable .tableBodyTr {
    height: 110px;
    font-size: 12px;
}

.mainBox .mainLeft .listTable .tableBodyTr:hover {
    box-shadow: 0 0 8px 0 rgba(0, 0, 0, .2);
}

.mainBox .mainLeft .listTable .tableBodyTr td {
    padding: 0px 5px;
    text-align: center;
    border-bottom: 1px solid #d9d9d9;
}

.mainLeft .listTable .tableGoodsName {
    position: relative;
}

.mainLeft .listTable .tableGoodsName .lableClassIfy {
    position: absolute;
    top: 0px;
    left: 0px;
}

.mainLeft .listTable .tableGoodsName .lableClassIfy span {
    position: relative;
}
.mainLeft .listTable .tableGoodsName .lableClassIfy span i{
    display: block;
    width: 100%;
    height: 25px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
}
.mainLeft .listTable .tableGoodsName .lableClassIfy span:nth-of-type(1)::before,
.mainLeft .listTable .tableGoodsName .lableClassIfy span:nth-of-type(2)::before,
.mainLeft .listTable .tableGoodsName .lableClassIfy span:nth-of-type(3)::before {
    content: '';
    display: block;
    width: 100%;
    height: 25px;
    background-size: 100% 100%;
    position: absolute;
    top: 0;
    left: 0;
    transform: rotateY(180deg);
    /* 翻转背景图 */
    z-index: 1;
}

.mainLeft .listTable .tableGoodsName .lableClassIfy .labelType_1::before {
    background-image: url('../../images/pcImg/jingJiaBag.png');
}

.mainLeft .listTable .tableGoodsName .lableClassIfy .labelType_2::before {
    background-image: url('../../images/pcImg/zhaoBiaoBag.png');
}

.mainLeft .listTable .tableGoodsName .lableClassIfy .labelType_3::before {
    background-image: url('../../images/pcImg/outBag.png');
}

.mainLeft .listTable .optionsBtn button {
    width: 100px;
    padding: 5px 4px;
    font-size: 12px;
    border-radius: 5px;
    cursor: pointer;
    border: none;
}

.mainLeft .listTable .optionsBtn .participateBidding {
    margin-top: 10px;
    background-color: white;
    color: var(--color);
    border: 1px solid var(--color);
}

.mainLeft .listTable .optionsBtn .releaseAnalogy {
    margin-top: 10px;
    background-color: var(--color);
    color: white;
}

.mainBox .mainRight {
    width: 24%;
}

.mainBox .mainRight .releaseDemand {
    width: 100%;
    height: 495px;
    padding: 20px 10px;
    background: linear-gradient(141deg, var(--rgba6) 0%, var(--color) 100%);
    box-sizing: border-box;
}

.mainBox .mainRight .releaseDemand h2 {
    font-size: 18px;
    font-weight: bold;
    color: #FFFFFF;
}

.mainBox .mainRight .releaseDemand h6 {
    color: #FFFFFF;
    padding-bottom: 10px;
    border-bottom: 1px solid white;
}

.mainBox .mainRight .releaseDemand .fromGoods {
    margin: 15px 0px;
}

.mainBox .mainRight .releaseDemand .fromGoods span {
    font-size: 14px;
    color: #FFFFFF;
    display: inline-block;
    margin-bottom: 5px;
}

.mainBox .mainRight .releaseDemand .fromGoods i {
    color: red;
    margin-right: 3px;
}

.mainBox .mainRight .releaseDemand .fromGoods select,
.mainBox .mainRight .releaseDemand .fromGoods input,
.mainBox .mainRight .releaseDemand .fromGoods textarea {
    width: 100%;
    height: 30px;
    list-style: none;
    border: none;
    padding-left: 5px;
    outline-style: none;
    background: #FFFFFF;
}

.mainBox .mainRight .releaseDemand .fromGoods select {
    width: 32%;
    font-size: 12px;
}

.mainBox .mainRight .releaseDemand .fromGoods textarea {
    height: 90px;
    padding-top: 5px;
}

.mainBox .mainRight .releaseDemand .fromGoods button {
    width: 100%;
    line-height: 40px;
    height: 40px;
    background: #FFC359;
    border: none;
    color: white;
    border-radius: 5px;
}

.mainBox .mainRight .newDeal {
    width: 100%;
    max-height: 583px;
    padding: 20px;
    margin-top: 12px;
    background: #FFFFFF;
    box-sizing: border-box;
}

.mainBox .mainRight .newDeal .newDealTitle {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mainBox .mainRight .newDeal .newDealTitle h2 {
    font-size: 18px;
    font-weight: bold;
    color: #464646;
}

.mainBox .mainRight .newDeal .newTitleName {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    padding: 25px 0px 10px;
    color: #ADADAD;
    border-bottom: 1px solid #EDEDED;
}

.mainBox .mainRight .newDeal .newCountList {
    width: 100%;
    max-height: 450px;
    overflow: hidden;
}

.mainBox .mainRight .newDeal .newCountList .newCountList_li {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    line-height: 40px;
    transition: opacity 0.5s ease-in-out;
    animation: slide-up 1.5s linear infinite;
}

@keyframes slide-up {
    0% {
        transform: translateY(0);
    }

    25% {
        transform: translateY(-25%);
    }

    50% {
        transform: translateY(-50%);
    }

    75% {
        transform: translateY(-75%);
    }

    100% {
        transform: translateY(-100%);
    }
}

.mainBox .mainRight .newDeal .newCountList .newCountList_li span {
    display: inline-block;
}

.mainBox .mainRight .newDeal .newCountList .newCountList_li span:nth-of-type(1) {
    width: 40px;
}

.mainBox .mainRight .newDeal .newCountList .newCountList_li span:nth-of-type(2) {
    width: 110px;
}

.mainBox .mainRight .newDeal .newCountList .newCountList_li span:nth-of-type(3) {
    width: 50px;
}

@media (max-width: 1100px) {
    .hallLayout {
        flex-direction: column;
    }

    .hallSidebar {
        width: 100%;
    }

    .cardFieldsRow {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px 0;
    }

    .cardFieldItem:not(:first-child)::before {
        display: none;
    }

    .cardFieldItem {
        padding: 0;
    }
}

@media (max-width: 768px) {
    .demandCard {
        flex-direction: column;
        min-height: 0;
    }

    .demandCardAside {
        width: 100%;
        border-left: none;
        border-top: 1px solid #e0e8f2;
    }

    .cardFieldsRow {
        grid-template-columns: 1fr;
    }
}