/* 闲置转让主页- 开始 */

.responsive-container {
    width: 100%;
    max-width: 1280px;
    background-color: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    margin: 5px auto;
    padding: 0 20px 24px 20px;
    border-radius: 20px;
}

.status-bar {
    display: flex;
    justify-content: space-between;
    padding: 12px 0 8px 0;
    font-size: 14px;
    font-weight: 500;
    color: #1e2b3c;
    border-bottom: 1px solid #f0f2f4;
}
.status-bar i {
    color: #6f7b8a;
}

/* ----- 头部 ----- */
.main-header {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 0 12px 0;
    background-color: white;
    flex-wrap: wrap;
}
.xzzrlocation {
    display: flex;
    align-items: center;
    background-color: #f3f5f7;
    padding: 10px 18px;
    border-radius: 40px;
    font-size: 16px;
    font-weight: 500;
    color: #1e2b3c;
    white-space: nowrap;
    gap: 4px;
}
.location i {
    margin-left: 6px;
    font-size: 13px;
    color: #7f8c9b;
}

/* 移动端专用搜索 (默认隐藏) */
.mobile-search {
    display: none;
    margin: 16px 0 12px 0;
    width: 100%;
}

/* ----- 分类导航 ----- */
.categories {
    display: flex;
    gap: 28px;
    overflow-x: auto;
    padding: 8px 0 16px 0;
    white-space: nowrap;
    scrollbar-width: thin;
    -ms-overflow-style: auto;
    border-bottom: 1px solid #f0f4f8;
}
.categories::-webkit-scrollbar {
    height: 4px;
    background: #eaeef2;
}
.categories::-webkit-scrollbar-thumb {
    background: #b5c4d0;
    border-radius: 20px;
}
.category-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    min-width: 70px;
    cursor: default;
}
.category-icon {
    width: 58px;
    height: 58px;
    background-color: #f5f7f9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: #556575;
    transition: all 0.1s;
}
.category-icon img {
    width: 58px;
    height: 58px;
    background-color: #f5f7f9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: #556575;
    transition: all 0.1s;
}
.category-item span {
    font-size: 13px;
    color: #2d3b4b;
    font-weight: 500;
}
.category-item.active .category-icon {
    background-color: rgba(0, 198, 160, 0.12);
    color: #00c6a0;
}
.category-item.active span {
    color: #00c6a0;
    font-weight: 600;
}

/* ----- 筛选栏 ----- */
.filter-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0 16px 0;
    background-color: white;
}
.filter-options {
    display: flex;
    gap: 28px;
}
.filter-option {
    font-size: 15px;
    color: #3f4d5e;
    font-weight: 500;
    padding: 6px 0;
    border-bottom: 2px solid transparent;
    cursor: default;
}
.filter-option.active {
    color: #00c6a0;
    border-bottom: 2px solid #00c6a0;
}
.filter-icon {
    background-color: #f3f5f7;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3f4d5e;
    font-size: 18px;
    cursor: default;
}

/* ===== 新增：付费置顶推广模块 ===== */
.promo-section {
    margin: 12px 0 24px 0;
    background: linear-gradient(145deg, #f9fbfd, #ffffff);
    border-radius: 28px;
    padding: 18px 16px 16px 16px;
    border: 1px solid #edf2f7;
    box-shadow: 0 6px 14px rgba(0,198,160,0.08);
}
.promo-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
    padding: 0 4px;
}
.promo-header h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1b2b3e;
    display: flex;
    align-items: center;
    gap: 8px;
}
.promo-header h3 i {
    font-size: 22px;
    color: #00c6a0;
    background: rgba(0,198,160,0.1);
    padding: 6px;
    border-radius: 50%;
}
.promo-tag {
    background-color: #00c6a0;
    color: white;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 40px;
    letter-spacing: 0.3px;
    margin-left: 6px;
}
.promo-link {
    color: #00c6a0;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(0,198,160,0.08);
    padding: 8px 16px;
    border-radius: 40px;
    transition: 0.1s;
}
.promo-link i {
    font-size: 12px;
}
.promo-link:hover {
    background: rgba(0,198,160,0.15);
}

/* 推广卡片列表 (横向滚动 / 自适应换行) */
.promo-cards {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    padding: 4px 4px 12px 4px;
    scrollbar-width: thin;
    -ms-overflow-style: auto;
}
.promo-cards::-webkit-scrollbar {
    height: 5px;
    background: #e5eaef;
    border-radius: 10px;
}
.promo-cards::-webkit-scrollbar-thumb {
    background: #b2ccd9;
    border-radius: 10px;
}
.promo-card {
    flex: 0 0 auto;
    width: 160px;            /* 移动端小卡片 */
    background: white;
    border-radius: 20px;
    padding: 10px 10px 14px 10px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.02), 0 2px 8px rgba(0,198,160,0.1);
    border: 1px solid #eaf0f5;
    transition: transform 0.1s;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.promo-card:hover {
    transform: translateY(-3px);
    border-color: #00c6a0;
}
.promo-img {
    width: 100%;
    aspect-ratio: 1/1;
    background-color: #eef2f6;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9daebf;
    font-size: 30px;
    margin-bottom: 10px;
    position: relative;
}
.promo-img img {
    width: 100%;
    height: 170px;
    border-radius: 16px;
}
.promo-badge {
    position: absolute;
    top: 6px;
    right: 6px;
    background-color: #ffc107;
    color: #1e2b3c;
    font-size: 10px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 30px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 3px;
}
.promo-badge i {
    font-size: 9px;
    color: #b87c00;
}
.promo-card .promo-title {
    font-size: 14px;
    font-weight: 600;
    color: #1d2c3f;
    margin-bottom: 6px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 130px;
}
.promo-price {
    font-size: 18px;
    font-weight: 700;
    color: #00c6a0;
}
.promo-price small {
    font-size: 11px;
    color: #7f8f9f;
    font-weight: 400;
}
/* 对于大屏，卡片稍宽，但依然横向滚动；也可改用网格，此处保留灵活 */
@media (min-width: 768px) {
    .promo-card {
        width: 169px;
    }
    .promo-cards {
        gap: 18px;
        overflow-x: auto;    /* 依然允许滚动，但可显示更多卡片 */
    }
}
@media (min-width: 1024px) {
    .promo-cards {
        justify-content: flex-start; /* 不强制滚动，但保留滚动条以防万一 */
        overflow-x: auto;
    }
}

/* ----- 商品网格 ----- */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 22px;
    padding: 20px 0 24px 0;
    background-color: white;
}

.product-card {
    background-color: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04), 0 2px 8px rgba(0, 0, 0, 0.02);
    transition: transform 0.1s, box-shadow 0.2s;
    display: flex;
    flex-direction: column;
    border: 1px solid #f1f4f7;
}
.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 28px rgba(0,198,160,0.08), 0 4px 14px rgba(0,0,0,0.03);
}

.xzzrcard-img {
    position: relative;
    aspect-ratio: 1/1;
    background-color: #e8ecf0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #a2b1c3;
    font-size: 36px;
}
.xzzrcard-img img {
    width: auto;
    height: 100%; 
}
.xzzr-ztbq {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 10;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    pointer-events: none;
}
.badgezyztbq {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: bold;
    color: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}
.xzzy-badgeys {
    background-color: #ff4d4f;
}
.xzzy-badgejx {
    background: linear-gradient(135deg, #f346f3, #950c95);
}
.xzzy-badgejj {
    background-color: #fad505;
    color: #070707;
    font-weight: 700;
}
/* 主页标题标签 */
.xzzr-ztbtbq {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 10;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    pointer-events: none;
}
.badgezyztbtbq {
    display: inline-block;
    padding: 1px 6px;
    font-size: 1px;
    font-weight: bold;
    color: #fff;
}

.xzzy-badgebtjx {
    background: linear-gradient(135deg, #f346f3, #950c95);
}
.xzzy-badgebtjj {
    background-color: #fad505;
    color: #070707;
    font-weight: 700;
}

.tag-primary {
    border: 1px solid #00c6a0;
    background-color: white;
    color: #00c6a0;
    border-radius: 16px;
    padding: 2px 10px;
    font-size: 11px;
    font-weight: 600;
}

.card-info {
    padding: 14px 12px 16px 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.product-title {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    color: #1a2939;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 44px;
}
.price-row {
    display: flex;
    align-items: baseline;
    gap: 8px;
    flex-wrap: wrap;
}
.price {
    font-size: 22px;
    font-weight: 700;
    color: #00c6a0;
    letter-spacing: -0.5px;
}
.price small {
    font-size: 13px;
    font-weight: 500;
    color: #8f9dad;
}
.badge-list {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin: 4px 0 2px;
}
.badge {
    background-color: #f0f4f7;
    padding: 4px 10px;
    border-radius: 30px;
    font-size: 11px;
    color: #3f4d5e;
    font-weight: 500;
}
.meta-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 12px;
    color: #7b8a9c;
    margin-top: 6px;
}
.meta-item {
    display: flex;
    align-items: center;
    gap: 5px;
}
.meta-item img {
    height: 20px;
    width: 20px;
    border-radius: 50%;
}
.distance {
    background-color: #f5f7fa;
    padding: 3px 10px;
    border-radius: 40px;
}

.load-more {
    text-align: center;
    padding: 28px 0 18px;
    color: #9aaebb;
    font-size: 14px;
    border-top: 1px solid #f0f2f4;
    margin-top: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.load-more i {
    color: #00c6a0;
}

.bottom-nav {
    background-color: white;
    border-top: 1px solid #eaedf0;
    padding: 12px 20px 16px;
    display: flex;
    justify-content: space-around;
    color: #8e9fb1;
    font-size: 12px;
    margin-top: 16px;
    border-radius: 40px 40px 0 0;
}
.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    cursor: default;
}
.nav-item i {
    font-size: 22px;
}
.nav-item.active {
    color: #00c6a0;
    font-weight: 500;
}
.nav-item span {
    font-size: 11px;
}

.primary-dot {
    width: 5px;
    height: 5px;
    background-color: #00c6a0;
    border-radius: 50%;
    display: inline-block;
    margin-left: 5px;
}

/* ---------- 响应式调整 ---------- */
@media (max-width: 767px) {
    .responsive-container {
        padding: 0 16px 20px 16px;
        border-radius: 0;
        box-shadow: none;
    }
    .main-header {
        gap: 12px;
        padding: 12px 0 8px 0;
    }
    .mobile-search {
        display: flex;
        margin: 8px 0 12px 0;
        width: 100%;
        flex: 1 1 100%;
        padding: 12px 18px;
    }
    .location {
        padding: 8px 14px;
        font-size: 14px;
    }
    .categories {
        gap: 18px;
        padding: 8px 0 14px 0;
    }
    .category-icon {
        width: 52px;
        height: 52px;
        font-size: 24px;
    }
    .filter-options {
        gap: 18px;
    }
    .filter-option {
        font-size: 14px;
    }
    .product-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
    .product-title {
        font-size: 14px;
        min-height: 38px;
    }
    .price {
        font-size: 20px;
    }
    .bottom-nav {
        padding: 10px 0 14px;
        border-radius: 30px 30px 0 0;
    }
    /* 推广卡片在移动端宽度稍小 */
    .promo-card {
        width: 140px;
    }
}

@media (min-width: 768px) {
    .mobile-search {
        display: none;
    }
    .categories {
        justify-content: flex-start;
        overflow-x: auto;
    }
    .product-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    }
}

@media (min-width: 1024px) {
    .product-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}


/* 闲置转让主页- 结束 */


/* 闲置转让列表页- 开始 */

 /* ----- 左右两栏布局 ----- */
 .two-column {
    display: flex;
    gap: 24px;
    margin-top: 10px;
    flex-wrap: wrap;
}
.main-list {
    flex: 1;
    min-width: 300px;
}
.sidebar {
    width: 300px;
    flex-shrink: 0;
}

/* ----- 筛选行 (左侧) ----- */
.filter-rowlb {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    margin: 10px 0 20px;
}
.total {
    background: #ffffff;
    border-radius: 50px;
    padding: 8px 22px;
    border: 1px solid #e2eaf2;
    color: #546e7a;
    font-size: 0.95rem;
}
.total span {
    font-weight: 700;
    color: #00c6a0;
}
.sorters {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}
.sort {
    background: #fff;
    border-radius: 50px;
    padding: 8px 20px;
    border: 1px solid #e2eaf2;
    font-weight: 500;
    color: #546e7a;
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: default;
}

.sorters a .sort {
    /* 默认样式（原来 .sort 的样式） */
    background: white;
    border-radius: 50px;
    padding: 8px 20px;
    border: 1px solid var(--border-light);
    font-weight: 500;
    color: var(--text-muted);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    cursor: default;
    transition: var(--transition);
}

.sorters a.ey_active .sort {
    /* 高亮样式（替换原来的 .sort.active） */
    border-color: #00c6a0;
    background: #d6f2eb;
    color: #00c6a0;
}

/* ---------- 左侧列表卡片 (桌面单列) ---------- */
.list-view {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.list-card {
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 8px 26px rgba(0, 0, 0, 0.05), 0 1px 2px rgba(0,0,0,0.03);
    transition: all 0.2s ease;
    display: flex;
    flex-direction: row;
    border: 1px solid rgba(255,255,255,0.2);
    width: 100%;
}
.list-card a {
    display: flex;
}
.list-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 36px -12px rgba(0, 198, 160, 0.25), 0 0 0 1px rgba(0, 198, 160, 0.2);;
}

.list-img {
    width: 210px;
    aspect-ratio: 1/1;
    flex-shrink: 0;
    background: linear-gradient(145deg, #e5edf8, #d6e1f0);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.8rem;
    color: #2f5777;
    position: relative;
}
.list-img img {
    height: 210px;
    overflow: hidden;
}
.img-wechat-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: linear-gradient(135deg, #f346f3, #950c95);
    backdrop-filter: blur(3px);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 4px;
    border: 1px solid rgba(255,255,255,0.3);
    pointer-events: none;
}

.list-content {
    flex: 1;
    display: flex;
    flex-direction: row;
    padding: 16px 18px 16px 20px;
    gap: 15px;
    width: 450px;
}

.left-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.list-title {
    font-weight: 700;
    font-size: 1.2rem;
    line-height: 1.4;
    color: var(--text-main);
}

.price-wrap {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-top: 5px;
}
.price {
    font-size: 1.8rem;
    font-weight: 750;
    color: #00c6a0;
    letter-spacing: -0.02em;
}
.badge {
    background: #f0f5fc;
    color: #334a54;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
}
.badgelb {
    border: 1px solid #00c6a0;
    background-color: white;
    color: #00c6a0;
    padding: 2px 6px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}
.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.tag {
    background: #f0f5fc;
    color: #546e7a;
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 500;
}

.meta-footer {
    display: flex;
    align-items: center;
    gap: 18px;
    border-top: 1px solid #e2eaf2;
    padding-top: 12px;
    margin-top: 4px;
    font-size: 0.85rem;
    color: #546e7a;
}
.meta-left i, .meta-right i {
    margin-right: 4px;
}
.meta-left i {
    color: #00c6a0;
}
.meta-right i {
    color: #ff9292;
}

/* 右侧卖家栏 */
.right-seller {
    width: 150px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
    justify-content: center;
    border-left: 1px dashed #e2eaf2;
    padding-left: 16px;
    margin-left: 4px;
}

.seller-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    text-align: center;
}
.avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    /*background: linear-gradient(145deg, #7fa3c5, #507aa3);*/
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.3rem;
}
.avatar img {
    width: 56px;
    height: 56px;   
    border-radius: 50px;
}
.seller-detail {
    display: flex;
    flex-direction: column;
}
.seller-name {
    font-weight: 650;
    font-size: 1rem;
    color: #1a2839;
}
.seller-status {
    font-size: 0.7rem;
    color: #00c6a0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
}

/* 微信扫码按钮 */
.wechat-action {
    position: relative;
    background: #f0faf7;
    border: 1px solid #00c6a0;
    border-radius: 40px;
    padding: 8px 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    color: #00c6a0;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: default;
    transition: all 0.2s ease;
}
.wechat-action i {
    font-size: 1rem;
}
.wechat-action .fa-qrcode {
    background: #fff;
    padding: 2px;
    border-radius: 4px;
}
.wechat-action:hover {
    background: #00c6a0;
    color: white;
    border-color: #00c6a0;
}

.qr-popup {
    position: absolute;
    bottom: 80%;
    left: 50%;
    transform: translateX(-50%);
    margin-bottom: 10px;
    background: white;
    border-radius: 18px;
    box-shadow: 0 16px 30px -8px rgba(0,0,0,0.2), 0 0 0 1px rgba(0,198,160,0.3);
    padding: 12px;
    width: 90px;
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    z-index: 100;
    pointer-events: none;
}
.wechat-action:hover .qr-popup {
    display: flex;
}
.qr-code-mock {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2px;
    background: #eee;
    padding: 6px;
    border-radius: 12px;
    width: 100%;
}
.qr-code-mock img {
    width: 90px;
}
.mock-cell {
    background: #2c3e50;
    aspect-ratio: 1/1;
    border-radius: 2px;
}
.mock-cell.white {
    background: white;
}
.qr-popup p {
    font-size: 0.65rem;
    color: #00c6a0;
    font-weight: 500;
}

/* ---------- 右侧热门推荐 ---------- */
.sidebar {
    background: transparent;
}
.hot-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a2839;
    margin: 8px 0 18px 0;   /* 与分类保持间距 */
    display: flex;
    align-items: center;
    gap: 8px;
}
.hot-title i {
    color: #00c6a0;
    background: rgba(0,198,160,0.1);
    padding: 8px;
    border-radius: 14px;
}
.hot-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.hot-item {
    background: white;
    border-radius: 20px;
    padding: 14px;
    display: flex;
    gap: 12px;
    align-items: center;
    box-shadow: 0 8px 26px rgba(0, 0, 0, 0.05), 0 1px 2px rgba(0,0,0,0.03);
    transition: all 0.2s ease;
    border: 1px solid #e2eaf2;
}
.hot-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 22px 36px -12px rgba(0, 198, 160, 0.25), 0 0 0 1px rgba(0, 198, 160, 0.2);;
}
.hot-img {
    width: 80px;
    height: 80px;
    border-radius: 16px;
    background: linear-gradient(145deg, #dde5f0, #cad4e4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #2f5777;
    flex-shrink: 0;
}
.hot-img img {
    width: auto;
    height: 80px;
}
.hot-info {
    flex: 1;
}
.hot-info h4 {
    font-weight: 650;
    font-size: 0.95rem;
    margin-bottom: 8px;
    color: #1a2839;
    white-space: nowrap;
    overflow: hidden;
    width: 180px;
    text-overflow: ellipsis;
}
.hot-price {
    color: #00c6a0;
    font-weight: 700;
    font-size: 1.1rem;
}
.hot-meta {
    font-size: 0.7rem;
    color: #546e7a;
    display: flex;
    align-items: center;
    gap: 4px;
    margin-top: 4px;
}

/* 分页 */
.pager {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin: 40px 0 30px;
}
.pager li {
    width: 44px;
    height: 44px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e2eaf2;
    color: #546e7a;
    font-weight: 500;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);    
}
.pager li a {
    font-size: 13px;
}
.pager li:hover {
    background: #00c6a0;
    color: white;
    border-color: #00c6a0;
}
.pager li a:hover {
    color: white;
}
.page.dots {
    border: none;
    background: transparent;
    box-shadow: none;
}

/* ---------- 响应式设计 ---------- */
@media screen and (max-width: 700px) {
    /* 两栏变为上下布局 */
    .two-column {
        flex-direction: column;
    }
    .sidebar {
        width: 100%;
    }
    /* 侧边栏分类改为横向滑动（手机友好） */
    .sidebar .tabs {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 8px;
    }
    .sidebar .tab {
        white-space: nowrap;
    }

    /* 左侧列表改为两列网格 */
    .list-view {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    .list-card {
        flex-direction: column;
    }
    .list-img {
        width: 100%;
        aspect-ratio: 1/1;
    }
    .list-content {
        flex-direction: column;
        padding: 12px;
    }
    .right-seller {
        width: 100%;
        border-left: none;
        border-top: 1px dashed var(--border-light);
        padding-left: 0;
        padding-top: 12px;
        margin-left: 0;
        flex-direction: row;
        justify-content: space-around;
        align-items: center;
    }
    .seller-info {
        flex-direction: row;
        gap: 8px;
    }
    .avatar {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    .wechat-action {
        width: auto;
        padding: 6px 12px;
        font-size: 0.8rem;
    }
    .list-title {
        font-size: 1rem;
    }
    .price {
        font-size: 1.4rem;
    }
    .badge {
        padding: 2px 8px;
        font-size: 0.65rem;
    }
    .tag {
        padding: 3px 8px;
        font-size: 0.65rem;
    }
    .meta-footer {
        font-size: 0.75rem;
        gap: 12px;
    }
}

/* 极窄屏（≤450px）列表变为单列 */
@media screen and (max-width: 450px) {
    .list-view {
        grid-template-columns: 1fr;
    }
}

/* 极端小屏微调 */
@media screen and (max-width: 380px) {
    .container {
        padding-left: 8px;
        padding-right: 8px;
    }
    .list-content {
        padding: 10px;
    }
    .right-seller {
        gap: 6px;
    }
    .avatar {
        width: 36px;
        height: 36px;
    }
    .wechat-action {
        padding: 5px 10px;
        font-size: 0.75rem;
    }
}

@media screen and (max-width: 340px) {
    .wechat-action span {
        display: none;
    }
}

/* 闲置转让列表页- 结束 */


/* 闲置转让内容页- 开始*/

.detail-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 15px;
    margin: 15px 0 40px;
}

.left-column {
    background-color: white;
    border-radius: 24px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.02);
    padding: 24px;
}

.product-header {
    display: flex;
    gap: 24px;
    margin-bottom: 24px;
}

/* 图片区域 - 使用用户提供的结构 */
.gallery {
    flex: 0 0 320px;
    position: relative;
}
.badges-container {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 10;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    pointer-events: none; /* 让标签不干扰点击图片 */
}
.badgeztbq {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: bold;
    color: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}
.sold-badgeys {
    background-color: #ff4d4f;
}
.sold-badgejx {
    background-color: #e60b8b;
}
/* 手机端适配 */
@media (max-width: 768px) {
    .badges-container {
        top: 5px;
        left: 5px;
        gap: 5px;
    }
    .badge {
        font-size: 12px;
        padding: 3px 10px;
    }
}

.property-icons { 
    margin-bottom: 8px; 
    display: flex; 
    gap: 8px; 
}
.property-icon { 
    background: #f0f0f0; 
    padding: 4px 10px; 
    border-radius: 10px; 
    font-size: 12px; 
}
.sold-iconjj { 
    background: #fad505; 
    color: #070707; 
    font-weight: 700;
}

.sold-iconjx { 
    background: linear-gradient(135deg, #f346f3, #950c95); 
    color: #fff; 
}
@media (max-width: 768px) {
    .sold-badge { 
        top: 5px; 
        left: 5px; 
        font-size: 12px; 
        padding: 3px 10px; 
    }
    .property-icon { 
        font-size: 11px; 
        padding: 3px 8px; 
    }
}

.preview {
    width: 100%;
}
.picpreview {
    width: 100%;
}
.picshow {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.sPrev, .sNext {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    background: rgba(0,0,0,0.5);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 20px;
    z-index: 2;
    cursor: pointer;
}
.sPrev { left: 10px; }
.sNext { right: 10px; }
.sPrev:hover, .sNext:hover {
    background: rgba(0,198,160,0.8);
}
.piclist {
    width: 100%;
    overflow: hidden;
}
.piclist ul {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 8px !important;
    overflow: visible !important;
    white-space: normal !important;
}
.piclist li {
    width: 57px;
    height: 57px;
    margin: 0;
    list-style: none;
    cursor: pointer;
}
.piclist li.on {
    border-color: #00C6A0;
}
.piclist li img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.main-image {
    width: 100%;
    aspect-ratio: 1/1;
    background: #eef2f6;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 16px;
}
.main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.more-photos-btn {
    margin-top: 15px;
    background: #f0f5fc;
    border: 1px dashed #b8d1e8;
    border-radius: 40px;
    padding: 10px 18px;
    display: inline-block;
    color: #2f5b8a;
    font-weight: 500;
    cursor: pointer;
}
.extra-hidden {
    display: none;
}

/* 右侧基本信息 */
.basic-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}
.basic-info h1 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.3;
}
.price-box {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 12px;
    margin-top: 10px;
}
.current-price {
    font-size: 2.2rem;
    font-weight: 800;
    color: #00C6A0;
    font-family: 'ali115';
}
.current-price small { 
    font-size: 1rem; 
    color: #8096b0; 
    font-family: 'ali';
}
.tag-group { 
    display: flex; 
    gap: 8px; 
    flex-wrap: wrap;
 }
.tag {
    background: #eef3f9;
    padding: 5px 12px;
    border-radius: 30px;
    font-size: 0.85rem;
    color: #3b4e68;
}
.tag.highlight {
    background: #e0f7f2;
    color: #007b66;
    border: 1px solid #b0e4da;
}
.favorite-area {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 15px 0 5px;
    padding-top: 10px;
    border-top: 1px solid #ecf2f9;
}
.favorite-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    background: none;
    border: 1px solid #d0deef;
    border-radius: 40px;
    padding: 4px 12px;
    cursor: pointer;
}
.favorite-btn i { font-size: 1.2rem; color: #ff6b6b; }
.favorite-btn.active i { color: #ff6b6b; }

.highlight-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 10px;
    margin: 20px 0 10px;
}
.highlight-tag {
    background: #ecf9f5;
    color: #00715c;
    font-weight: 600;
    padding: 5px 14px;
    border-radius: 40px;
    font-size: 0.85rem;
    border: 1px solid #b8e4da;
}
.highlight-tag i { margin-right: 5px; }

.info-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 16px 20px;
    background: #f8fafd;
    padding: 16px;
    border-radius: 18px;
    margin: 10px 0 20px;
    border: 1px solid #eef2f8;
}
.info-item {
    display: flex;
    align-items: center;
    gap: 8px;
}
.info-item i { width: 20px; color: #00C6A0; }

.desc-section { margin: 30px 0; }
.section-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
}
.section-title i { color: #00C6A0; margin-right: 12px; }
.desc-content {
    background: #fafcff;
    padding: 18px 20px;
    border-radius: 18px;
    border: 1px solid #eaf0f6;
}

.risk-warning {
    background: #fff9e6;
    border-left: 6px solid #f5b342;
    border-radius: 18px;
    padding: 16px 18px;
    margin: 30px 0 20px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}
.risk-content {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1 1 200px;
}
.risk-content i { font-size: 2rem; color: #f5a623; }
.risk-link { color: #00C6A0; font-weight: 600; white-space: nowrap; }

.message-board { margin-top: 30px; }
.offline-hint {
    background: #f0f3f8;
    border-radius: 16px;
    padding: 12px 16px;
    margin-bottom: 20px;
    font-size: 0.9rem;
}
.message-item {
    display: flex;
    gap: 15px;
    padding: 18px 0;
    border-bottom: 1px solid #e9eef4;
}
.msg-avatar {
    width: 44px;
    height: 44px;
    background: #d9e2ef;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #5f7d9c;
    font-size: 22px;
}
.write-message {
    margin-top: 20px;
    display: flex;
    gap: 10px;
    opacity: 0.6;
    pointer-events: none;
}
.write-message input {
    flex: 1;
    border: 1px solid #d0ddee;
    border-radius: 60px;
    padding: 12px 18px;
    background: #f5f8fe;
}
.write-message button {
    background-color: #b3d9d0;
    border: none;
    color: white;
    padding: 0 20px;
    border-radius: 60px;
    cursor: not-allowed;
}

.right-column {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.card {
    background: white;
    border-radius: 24px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.02);
    padding: 24px;
}

.seller-profile {
    display: flex;
    gap: 10px;
    align-items: center;
    border-bottom: 1px solid #edf2f8;
    padding-bottom: 18px;
    margin-bottom: 18px;
}
.seller-avatar {
    width: 70px;
    height: 70px;
    background: #c9dff5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 38px;
    color: #2c5779;
    border: 3px solid white;
    box-shadow: 0 4px 8px rgba(0,198,160,0.2);
    overflow: hidden;
}
.seller-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.seller-info h3 {
    font-size: 1.2rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 5px;
}
.seller-id {
    font-size: 0.75rem;
    background: #eef3fa;
    padding: 2px 8px;
    border-radius: 30px;
}
.seller-gsmc {
    font-size: 0.75rem;
    background: #eef3fa;
    padding: 2px 8px;
    border-radius: 12px;
}

.seller-gsmc i {
    margin-right: 3px;
}

/* 卖家五星评分 */
.seller-rating {
    margin-top: 1px;
    width: fit-content;
}

.rating {
    margin: 1px 0;
  }

  .rating-stars i {
    cursor: pointer;
    font-size: 18px;
    margin-right: 2px;
    transition: color 0.2s;
}

.rating-info {
    margin-top: 2px;
}

.totalmjpf {
    padding: 2px 6px;
    color: #546e7a;
    font-size: 0.95rem;
}
.rating-stars i.fa-star,
.rating-stars i.fa-star-half-alt {
    color: #ffb016;
}

.rating-stars i.fa-star-o {
    color: #ddd;
}
.rating-stars i:hover {
    color: #ffb016 !important;
}

.seller-badges { 
    display: flex; 
    flex-wrap: wrap; 
    gap: 5px; 
    margin: 2px 0; 
}
.badge {
    background: #ecf9f5;
    color: #00715c;
    padding: 3px 8px;
    border-radius: 30px;
    font-size: 0.7rem;
}
.seller-stats {
    display: flex;
    justify-content: space-between;
    margin-bottom: 18px;
    padding: 0 10px;
    text-align: center;
}
.stat-number { 
    font-weight: 800;
    font-size: 1rem;
    color: #00c6a0;
}
.stat-itemxzzr {
    margin-top: 3px;
    font-size: 0.8rem;
}
.action-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.btn-primary, .btn-outline, .btn-wechat {
    flex: 1 1 auto;
    padding: 12px 0;
    border-radius: 60px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    border: none;
    min-width: 110px;
}
.btn-primary { background: #00C6A0; color: white; }
.btn-outline { background: white; border: 1.5px solid #dae3ef; color: #00c6a0;font-size: 1rem; }
.btn-wechat { background: #2bae85; color: white; }

.source-hint {
    margin: 12px 0 0;
    font-size: 0.8rem;
    background: #f3f8ff;
    padding: 8px 12px;
    border-radius: 30px;
    text-align: center;
}

.rating i {
    color: #ffb016;
}

.other-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 10px;
}
.other-item {
    background: #f9fcff;
    border-radius: 16px;
    padding: 12px;
    border: 1px solid #eaf1fa;
    transition: 0.2s;
}
.other-item:hover {
    box-shadow: 0 4px 12px rgba(0,198,160,0.1);
    border-color: #00C6A0;
}
.other-img {
    width: 100%;
    aspect-ratio: 1/1;
    background: #dee8f2;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
    overflow: hidden;
}
.other-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.other-title {
    font-weight: 600;
    font-size: 0.9rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 4px;
}
.other-price {
    color: #00C6A0;
    font-weight: 700;
    font-size: 1rem;
}

.report-share {
    display: flex;
    justify-content: space-around;
    gap: 10px;
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #eef2f8;
}
.report-share a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #f5f8fe;
    padding: 8px 18px;
    border-radius: 40px;
    color: #4a5f7c;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.2s ease;
    border: 1px solid transparent;
}
.report-share a i {
    font-size: 1rem;
    color: #7d95b0;
    transition: color 0.2s;
}
.report-share a:hover {
    background: #e0f2ee;
    color: #00C6A0;
    border-color: #00C6A0;
}
.report-share a:hover i {
    color: #00C6A0;
}

.similar-recommend {
    background: white;
    border-radius: 24px;
    padding: 20px;
}
.similar-recommend1 {
    margin: 0;
    padding: 0;
}
.similar-recommend1 p {
    margin-bottom: 8px;
}
.similar-recommend1 span {
    color: #00c6a0;
    font-weight: 700;
    font-size: 1rem;
}

.wechat-modal {
    display: none;
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.5);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}
.wechat-card {
    background: white;
    padding: 25px 20px;
    border-radius: 32px;
    text-align: center;
    width: 85%;
    max-width: 300px;
}
.wechat-card i { font-size: 70px; color: #00C6A0; }

@media (max-width: 900px) {
    .product-header {
        flex-direction: column;
    }
    .gallery {
        flex: auto;
    }
}

@media (max-width: 600px) {
    .container { padding: 0 12px; }

    .header-inner { flex-direction: column; gap: 8px; }
    .logo a { font-size: 1.6rem; }
    .nav-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; }
    .nav-actions a { margin: 0; font-size: 0.85rem; }
    .nav-actions { padding: 5px 12px; }

    .breadcrumb { font-size: 0.8rem; padding: 10px 0; }

    .detail-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .left-column, .card { padding: 18px; border-radius: 20px; }

    .main-image { height: auto; }
    .piclist li { flex: 0 0 calc(33.33% - 8px); }

    .info-tags { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

    .risk-warning { flex-direction: column; align-items: flex-start; }
    .risk-link { align-self: flex-end; }

    .action-buttons { flex-direction: column; }
    .btn-primary, .btn-outline, .btn-wechat { width: 100%; }

    .seller-avatar { width: 60px; height: 60px; font-size: 32px; }

    .report-share a { padding: 6px 12px; font-size: 0.8rem; }

    .footer { font-size: 0.8rem; margin-top: 20px; }

    /* 移动端其他闲置保持一行两个 */
    .other-grid {
        gap: 8px;
    }
}

/* 闲置转让内容页- 结束*/



@font-face {
    font-family: 'ali95';
    src: url('/fonts/AlibabaPuHuiTi-2-95-ExtraBold.woff2') format('woff2'),
         url('/fonts/AlibabaPuHuiTi-2-95-ExtraBold.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap; 
  }