@charset "UTF-8";

.list_banner {
    max-width: 1200px;
    /* height: 400px; */
    margin: 0 auto;
    display: flex;
    justify-content: center;
    position: relative;
}

    .list_banner .banner_img {
        max-width: 1200px;
        width: 100%;
    }

    .list_banner .banner_content {
        position: absolute;
        top: 70px;
        left: 88px;
        text-align: left;
        color: #ffffff;
    }

        .list_banner .banner_content h2 {
            font-weight: 500;
            font-size: 26px;
            margin-bottom: 16px;
            /* text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3); */
        }

        .list_banner .banner_content p {
            font-size: 14px;
        }

.trade-tabs {
    width: 1200px;
    margin: 0 auto;
    margin-top: 20px;
    border-bottom: 1px solid #dadada;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .trade-tabs .tab {
        width: 240px;
        border: 1px solid #dadada;
        border-bottom: none;
        background-color: #fff;
        height: 80px;
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
        color: #202225;
        cursor: pointer;
    }

        .trade-tabs .tab .tab_line {
            text-align: center;
        }

            .trade-tabs .tab .tab_line .title {
                font-weight: bold;
                font-size: 16px;
            }

            .trade-tabs .tab .tab_line .sub-title {
                font-size: 10px;
            }

            .trade-tabs .tab .tab_line::before {
                content: "";
                display: block;
                width: 20px;
                height: 18px;
                position: absolute;
                top: 24px;
                left: 32px;
            }

        .trade-tabs .tab.buy .tab_line::before {
            background-image: url("/Content/SesameV/assets/images/icon_buy.png");
            /* background-image: url("../../assets/images/icon_buy.png"); */
        }

        .trade-tabs .tab.sale .tab_line::before {
            background-image: url("/Content/SesameV/assets/images/icon_sale.png");
            /* background-image: url("../../assets/images/icon_sale.png"); */
        }

        .trade-tabs .tab.active {
            background-color: #fa7a04;
            color: #fff;
        }

            .trade-tabs .tab.active.buy .tab_line::before {
                background-image: url("/Content/SesameV/assets/images/icon_buy_active.png");
                /* background-image: url("../../assets/images/icon_buy_active.png"); */
            }

            .trade-tabs .tab.active.sale .tab_line::before {
                background-image: url("/Content/SesameV/assets/images/icon_sale_active.png");
                /* background-image: url("../../assets/images/icon_sale_active.png"); */
            }

.product-section {
    width: 1200px;
    margin: 0 auto;
}

    .product-section .product-section__grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 24px;
        margin-top: 20px;
    }

        .product-section .product-section__grid .product-card {
            background: #fff;
            border: 1px solid #e8e8e8;
            border-radius: 4px;
            overflow: hidden;
            transition: all 0.3s ease;
            cursor: pointer;
        }

            .product-section .product-section__grid .product-card a {
                text-decoration: none;
            }

            .product-section .product-section__grid .product-card:hover {
                box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1);
                border-color: #f5a429;
            }

        .product-section .product-section__grid .product-card__image-wrapper {
            position: relative;
            width: 100%;
            height: 340px;
            overflow: hidden;
        }

        .product-section .product-section__grid .product-card__image {
            width: 100%;
            height: 100%;
            -o-object-fit: cover;
            object-fit: cover;
        }

        .product-section .product-section__grid .product-card__tag {
            position: absolute;
            top: 12px;
            left: 12px;
            background: linear-gradient(90deg, #f5a429 0%, #f5c029 100%);
            color: #fff;
            padding: 4px 12px;
            border-radius: 2px;
            font-size: 14px;
            font-weight: 500;
        }

        .product-section .product-section__grid .product-card__info {
            padding: 16px 12px;
        }

        .product-section .product-section__grid .product-card__title {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 12px;
            min-height: 24px;
        }

        .product-section .product-section__grid .product-card__trade-type {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 20px;
            height: 20px;
            border-radius: 2px;
            font-size: 12px;
            font-weight: 600;
            color: #fff;
            flex-shrink: 0;
        }

        .product-section .product-section__grid .product-card__trade-type--buy {
            background: #1890ff;
        }

        .product-section .product-section__grid .product-card__trade-type--sell {
            background: #fa8c16;
        }

        .product-section .product-section__grid .product-card__name {
            flex: 1;
            font-size: 14px;
            font-weight: 500;
            color: #333;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
            margin: 0;
        }

        .product-section .product-section__grid .product-card__self-operated {
            background: #52c41a;
            color: #fff;
            padding: 2px 6px;
            border-radius: 2px;
            font-size: 12px;
            font-weight: 500;
            flex-shrink: 0;
        }

        .product-section .product-section__grid .product-card__details {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 8px;
            padding-bottom: 8px;
            border-bottom: 1px solid #f0f0f0;
        }

        .product-section .product-section__grid .product-card__quantity {
            display: flex;
            align-items: baseline;
            gap: 4px;
        }

        .product-section .product-section__grid .product-card__quantity-label {
            font-size: 12px;
            color: #999;
        }

        .product-section .product-section__grid .product-card__quantity-value {
            font-size: 16px;
            font-weight: 600;
            color: #333;
        }

        .product-section .product-section__grid .product-card__unit {
            font-size: 12px;
            color: #999;
        }

        .product-section .product-section__grid .product-card__origin {
            display: flex;
            flex-direction: column;
            align-items: flex-end;
            gap: 2px;
        }

        .product-section .product-section__grid .product-card__origin-label {
            font-size: 12px;
            color: #999;
        }

        .product-section .product-section__grid .product-card__origin-value {
            font-size: 12px;
            color: #666;
        }

        .product-section .product-section__grid .product-card__price-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .product-section .product-section__grid .product-card__price {
            display: flex;
            align-items: baseline;
            gap: 4px;
        }

        .product-section .product-section__grid .product-card__price-label {
            font-size: 12px;
            color: #999;
        }

        .product-section .product-section__grid .product-card__price-value {
            font-size: 16px;
            font-weight: 600;
            color: #f5a429;
        }

        .product-section .product-section__grid .product-card__price-unit {
            font-size: 12px;
            color: #999;
        }

        .product-section .product-section__grid .product-card__location {
            font-size: 12px;
            color: #999;
        }

@media (max-width: 1244px) {
    .product-section .product-section__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .product-section .product-section__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .product-section .product-section__grid {
        grid-template-columns: 1fr;
    }
}

.product-section {
    /* 分页器样式 */
}

    .product-section .pagination {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 16px;
        margin-top: 40px;
        padding: 20px 0 40px;
    }

        .product-section .pagination .pagination__btn {
            padding: 8px 20px;
            border: 1px solid #dadada;
            background-color: #fff;
            color: #202225;
            font-size: 14px;
            cursor: pointer;
            border-radius: 4px;
            transition: all 0.3s ease;
        }

            .product-section .pagination .pagination__btn:hover:not(:disabled) {
                background-color: #fa7a04;
                color: #fff;
                border-color: #fa7a04;
            }

            .product-section .pagination .pagination__btn:disabled {
                cursor: not-allowed;
                opacity: 0.5;
            }

        .product-section .pagination .pagination__numbers {
            display: flex;
            gap: 8px;
        }

            .product-section .pagination .pagination__numbers .pagination__number {
                width: 36px;
                height: 36px;
                display: flex;
                justify-content: center;
                align-items: center;
                border: 1px solid #dadada;
                background-color: #fff;
                color: #202225;
                font-size: 14px;
                cursor: pointer;
                border-radius: 4px;
                transition: all 0.3s ease;
            }

                .product-section .pagination .pagination__numbers .pagination__number.active {
                    background-color: #fa7a04;
                    color: #fff;
                    border-color: #fa7a04;
                }

                .product-section .pagination .pagination__numbers .pagination__number:hover {
                    border-color: #fa7a04;
                    color: #fa7a04;
                }

        .product-section .pagination .pagination__ellipsis {
            width: 36px;
            height: 36px;
            display: flex;
            justify-content: center;
            align-items: center;
            color: #999;
            font-size: 14px;
        }
/*# sourceMappingURL=list.css.map */
