:root{
	
	--card-radius: 0.9rem;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.04);
    
    /* ===== 品牌色系 - 温暖陶土红 ===== */
            --hj-primary: #c0392b;
            --hj-primary-rgb: 192, 57, 43;
            --hj-primary-light: #d9443a;
            --hj-primary-soft: #fef5f4;
            --hj-primary-surface: #fdf0ee;
            --hj-primary-gradient: linear-gradient(135deg, #d9443a 0%, #b83230 100%);
            --hj-primary-gradient-soft: linear-gradient(135deg, #fef5f4 0%, #fdf0ee 50%, #fef8f6 100%);

            /* ===== 辅助色 ===== */
            --hj-accent: #e8a838;
            --hj-accent-soft: #fef9f0;
            --hj-success: #4a9c6c;
            --hj-success-soft: #f0faf4;
            --hj-warning: #e07b39;
            --hj-warning-soft: #fef7f2;
            --hj-danger: #c0392b;

            /* ===== 中性色 ===== */
            --hj-bg: #fdfaf8;
            --hj-bg-warm: #fdf9f6;
            --hj-surface: #ffffff;
            --hj-surface-hover: #fefcfb;
            --hj-text: #1e293b;
            --hj-text-secondary: #64748b;
            --hj-text-muted: #94a3b8;
            --hj-border: #ede6e1;
            --hj-border-light: #f3eeea;
            --hj-divider: #f5f0ec;

            /* ===== 阴影系统 ===== */
            --hj-shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.03);
            --hj-shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
            --hj-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
            --hj-shadow-md: 0 6px 24px rgba(0, 0, 0, 0.06);
            --hj-shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.08);
            --hj-shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.10);
            --hj-shadow-primary: 0 6px 24px rgba(192, 57, 43, 0.18);
            --hj-shadow-card-hover: 0 8px 32px rgba(0, 0, 0, 0.09);

            /* ===== 圆角系统 ===== */
            --hj-radius-xs: 0.35rem;
            --hj-radius-sm: 0.6rem;
            --hj-radius: 0.85rem;
            --hj-radius-md: 0.8rem;
            --hj-radius-lg: 1.25rem;
            --hj-radius-xl: 1.6rem;
            --hj-radius-full: 999px;

            /* ===== 间距系统 ===== */
            --hj-space-2xs: 0.25rem;
            --hj-space-xs: 0.5rem;
            --hj-space-sm: 0.75rem;
            --hj-space: 1rem;
            --hj-space-md: 1.25rem;
            --hj-space-lg: 1.5rem;
            --hj-space-xl: 2rem;
            --hj-space-2xl: 2.5rem;
            --hj-space-3xl: 3rem;

            /* ===== 过渡 ===== */
            --hj-transition-fast: 0.15s ease;
            --hj-transition: 0.25s ease;
            --hj-transition-slow: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
            --hj-transition-spring: 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);

            /* ===== 排版 ===== */
            --hj-font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Helvetica Neue", Helvetica, Arial, sans-serif;
            --hj-font-size-xs: 0.7rem;
            --hj-font-size-sm: 0.8rem;
            --hj-font-size: 0.9rem;
            --hj-font-size-md: 0.95rem;
            --hj-font-size-lg: 1.05rem;
            --hj-font-size-xl: 1.2rem;
            --hj-font-size-2xl: 1.5rem;
            --hj-font-size-3xl: 1.9rem;
            --hj-font-size-hero: 2.4rem;
            /* ===== 覆盖Bootstrap变量 ===== */
            --bs-primary: #c0392b;
            --bs-primary-rgb: 192, 57, 43;
            --bs-link-color: #c0392b;
            --bs-link-hover-color: #a33025;
	
}

body{
	background: var(--hj-bg);
}

 /* ===== Hero 优惠横幅 ===== */
        .hero-banner {
            position: relative;
            background: var(--hj-primary-gradient-soft);
            border: 1px solid var(--hj-primary-surface);
            border-radius: var(--hj-radius-sm);
            padding: var(--hj-space-lg) var(--hj-space-md);
            margin: var(--hj-space-sm) 0 var(--hj-space-lg);
            overflow: hidden;
            transition: var(--hj-transition);
        }
        .hero-banner::before {
            content: '';
            position: absolute;
            top: -40px;
            right: -30px;
            width: 140px;
            height: 140px;
            background: radial-gradient(circle, rgba(217, 68, 58, 0.08) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }
        .hero-banner::after {
            content: '';
            position: absolute;
            bottom: -25px;
            left: -20px;
            width: 100px;
            height: 100px;
            background: radial-gradient(circle, rgba(232, 168, 56, 0.10) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }
        .hero-banner .hero-content {
            position: relative;
            z-index: 1;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: var(--hj-space);
        }
        .hero-banner .hero-title {
            font-size: var(--hj-font-size-xl);
            font-weight: 700;
            color: var(--hj-text);
            margin-bottom: var(--hj-space-2xs);
            line-height: 1.35;
        }
        .hero-banner .hero-price-row {
            display: flex;
            align-items: baseline;
            gap: var(--hj-space-sm);
            flex-wrap: wrap;
            margin: var(--hj-space-xs) 0;
        }
        .hero-banner .hero-price-label {
            font-size: var(--hj-font-size-sm);
            color: var(--hj-text-secondary);
            font-weight: 500;
        }
        .hero-banner .hero-price-value {
            font-size: var(--hj-font-size-hero);
            font-weight: 800;
            color: var(--hj-primary);
            line-height: 1;
            letter-spacing: -0.02em;
            font-variant-numeric: tabular-nums;
        }
        .hero-banner .hero-price-range {
            font-size: var(--hj-font-size-lg);
            font-weight: 600;
            color: var(--hj-primary-light);
        }
        .hero-banner .hero-subtitle {
            font-size: var(--hj-font-size-xs);
            color: var(--hj-text-secondary);
            margin-top: var(--hj-space-2xs);
            display: flex;
            align-items: center;
            gap: var(--hj-space-2xs);
        }
        .hero-banner .hero-subtitle i {
            color: var(--hj-success);
            font-size: 0.85rem;
        }
        .hero-btn {
            display: inline-flex;
            align-items: center;
            gap: var(--hj-space-xs);
            background: var(--hj-primary-gradient);
            color: #fff;
            border: none;
            border-radius: var(--hj-radius-full);
            padding: var(--hj-space-sm) var(--hj-space-lg);
            font-weight: 700;
            font-size: var(--hj-font-size-sm);
            cursor: pointer;
            white-space: nowrap;
            transition: var(--hj-transition-slow);
            box-shadow: var(--hj-shadow-primary);
            position: relative;
            z-index: 1;
            letter-spacing: 0.02em;
        }
        .hero-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 28px rgba(192, 57, 43, 0.28);
            color: #fff;
        }
        .hero-btn:active {
            transform: translateY(0);
            box-shadow: var(--hj-shadow-primary);
        }


.filter-bar { display: flex; align-items: center; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 0.8rem; }
.car-type-tabs { display: flex; gap: 0.4rem; overflow-x: auto; scrollbar-width: none; white-space: nowrap; flex: 1; }
.car-type-tabs::-webkit-scrollbar { display: none; }
.car-type-tab { padding: 0.4rem 0.9rem; border: 1.5px solid #dee2e6; background: white; color: #495057; border-radius: 2rem; font-size: 0.8rem; font-weight: 500; cursor: pointer; user-select: none; }
.car-type-tab.active { background: var(--primary); color: white; border-color: var(--primary); font-weight: 600; }
.location-selector { display: flex; align-items: center; gap: 0.3rem; padding: 0.4rem 0.8rem; border: 1.5px solid #dee2e6; background: white; border-radius: 2rem; font-size: 0.8rem; cursor: pointer; white-space: nowrap; }

.price-card { background: white; border-radius: var(--card-radius); padding: 1.2rem 1rem; margin-bottom: 1rem; box-shadow: var(--shadow-sm); border: 1px solid #e9ecef; }
.update-badge { background: #e8f5e9; color: #2e7d32; font-size: 0.7rem; padding: 2px 8px; border-radius: 1rem; font-weight: 600; }
.price-main { font-size: 2rem; font-weight: 800; color: #b91c1c; line-height: 1.2; }
.venue-tag { background: #eef4ff; color: var(--primary); font-size: 0.7rem; padding: 3px 10px; border-radius: 1rem; font-weight: 600; display: inline-block; margin-top: 0.5rem; }

.exam-info{margin-bottom: 20px; padding: 15px; background-color: #faf8f8; border-radius: 6px; border: none;}

/* ===== 避坑指南 ===== */
        .trap-card {
            background: var(--hj-surface);
            border-radius: var(--hj-radius-md);
            padding: var(--hj-space-lg) var(--hj-space-md);
            margin-bottom: var(--hj-space);
            box-shadow: var(--hj-shadow-sm);
            border: 1px solid var(--hj-border-light);
        }
        .trap-card .trap-title {
            font-weight: 700;
            font-size: var(--hj-font-size-lg);
            color: var(--hj-text);
            margin-bottom: var(--hj-space-sm);
            display: flex;
            align-items: center;
            gap: var(--hj-space-xs);
        }
        .trap-card .trap-title i {
            color: var(--hj-warning);
        }
        .trap-item {
            padding: var(--hj-space-sm) var(--hj-space);
            background: var(--hj-warning-soft);
            border-radius: 0 var(--hj-radius-xs) var(--hj-radius-xs) 0;
            margin-bottom: var(--hj-space-xs);
            font-size: var(--hj-font-size-sm);
            color: var(--hj-text);
            line-height: 1.55;
            transition: var(--hj-transition);
        }
        .trap-item:hover {
            background: #fef5ed;
            border-left-color: var(--hj-primary-light);
        }
        .trap-item strong {
            color: var(--hj-text);
        }
        .trap-item.trap-safe {
            background: var(--hj-success-soft);
            border-left-color: var(--hj-success);
        }
        .trap-item.trap-safe strong {
            color: var(--hj-success);
        }

        /* ===== 下一步引导 ===== */
        .guide-card {
            background: var(--hj-surface);
            border-radius: var(--hj-radius-md);
            padding: var(--hj-space-lg) var(--hj-space-md);
            margin-bottom: var(--hj-space);
            box-shadow: var(--hj-shadow-sm);
            border: 1px solid var(--hj-border-light);
        }
        .guide-card .guide-title {
            font-weight: 700;
            font-size: var(--hj-font-size-lg);
            color: var(--hj-text);
            margin-bottom: var(--hj-space-sm);
            display: flex;
            align-items: center;
            gap: var(--hj-space-xs);
        }
        .guide-btn-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: var(--hj-space-xs);
        }
        .guide-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: var(--hj-space-2xs);
            padding: var(--hj-space-sm) var(--hj-space);
            border-radius: var(--hj-radius-sm);
            font-weight: 600;
            font-size: var(--hj-font-size-sm);
            cursor: pointer;
            text-decoration: none;
            transition: var(--hj-transition);
            border: 1.5px solid var(--hj-border);
            background: var(--hj-surface);
            color: var(--hj-text);
            white-space: nowrap;
            letter-spacing: 0.01em;
        }
        .guide-btn:hover {
            border-color: var(--hj-primary-light);
            background: var(--hj-primary-soft);
            color: var(--hj-primary);
            transform: translateY(-1px);
        }
        .guide-btn.btn-accent {
            border-color: var(--hj-primary);
            color: var(--hj-primary);
            font-weight: 700;
        }
        .guide-btn.btn-accent:hover {
            background: var(--hj-primary);
            color: #fff;
            box-shadow: var(--hj-shadow-primary);
        } 

/* 价格信息样式 */
.price-section {
    margin-bottom: 30px;
}

.price-features {
    margin-bottom: 20px;
}

.price-feature {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    font-size: 14px;
    color: var(--light-text);
}

.price-feature:before {
    content: '&#10003;';
    color: var(--primary-color);
    margin-right: 10px;
    font-weight: bold;
}


.venue-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #eef2f8;
    transition: all 0.2s;
    box-shadow: var(--shadow-sm);
}
.venue-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}
.venue-img {
    width: 100%;
    height: 170px;
    object-fit: cover;
}
.venue-content { padding: 16px; }
.venue-footer {
    padding: 10px 16px 16px;
    border-top: 1px dashed #e2e8f0;
    margin: 0 12px;
}
.venue-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 6px;
}
.venue-name { font-size: 1.15rem; font-weight: 700; line-height: 1.3; color:#1a1a2e; }
.venue-rating {
    background: #fff6e5;
    padding: 3px 10px;
    border-radius: 30px;
    font-size: 0.7rem;
    font-weight: 500;
}
.location-area {
    color: #5d7b9c;
    font-size: 0.75rem;
    margin: 8px 0 6px;
}
.schools-list {
    margin: 12px 0;
    font-size: 0.85rem;
    line-height: 1.5;
}
.school-link {
    color: #1d6f3f;
    text-decoration: none;
    font-weight: 500;
    margin-right: 6px;
}
.schools-suffix { color: #1d6f3f; font-weight: 500; }
.price-range {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 12px 0 10px;
}
.price-item {
    background: #f0f4f9;
    border-radius: 24px;
    padding: 4px 14px;
    font-size: 0.8rem;
    font-weight: 500;
}
.region-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}
.region-tag {
    background: #eef2ff;
    color: #2c5a7a;
    font-size: 0.7rem;
    padding: 4px 12px;
    border-radius: 30px;
    text-decoration: none;
}
.btn-outline-red {
    display: block;
    width: 100%;
    text-align: center;
    background: transparent;
    border: 1.5px solid var(--primary);
    color: var(--primary);
    font-weight: 600;
    padding: 10px 0;
    border-radius: 8px;
    text-decoration: none;
    font-size: 0.85rem;
    transition: 0.2s;
}
.btn-outline-red:hover {
    background: var(--primary);
    color: white;
}
 /* ===== 响应式调整 ===== */
    @media (max-width: 767.98px) {
        :root {
            --hj-font-size-hero: 1.8rem;
            --hj-font-size-3xl: 1.6rem;
        }
        .hero-banner {
            border-radius: var(--hj-radius);
            padding: var(--hj-space) var(--hj-space-sm);
        }
        .hero-banner .hero-content {
            flex-direction: column;
            align-items: flex-start;
        }
        .hero-btn {
            width: 100%;
            justify-content: center;
            padding: var(--hj-space-sm) var(--hj-space);
            font-size: var(--hj-font-size);
        }
        .guide-btn {
        font-size: var(--hj-font-size-xs);
        padding: var(--hj-space-xs) var(--hj-space-sm);
    	}
    	.location-selector{
    		padding:6px 8px;
    		gap:0.1rem;
    	}
    }
/* 价格信息样式 */
.price-section {
    margin-bottom: 30px;
}


.price-table{
	width: 100%;
    border-collapse: collapse;
    font-size: 0.85rem;
}
.price-table th { background: #f8fafc; padding: 10px 12px; text-align: left; font-weight: 600; border-bottom: 1px solid #e2e8f0; }
.price-table td { padding: 10px 12px; border-bottom: 1px solid #f0f0f0; }
.price-table .th-w-23{width:23%;}     
.price-table .th-w-25{width:25%;}   
.price-table  .bg-color{
	background: #f8fafc; 
}  

/* 价格信息样式 */
.price-section {
    margin-bottom: 30px;
}

.price-features {
    margin-bottom: 20px;
}

.price-feature {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    font-size: 14px;
    color: var(--light-text);
}

.price-feature:before {
    content: '&#10003;';
    color: var(--primary-color);
    margin-right: 10px;
    font-weight: bold;
}
