/* ================================================================
   car-detail.css - 车辆详情页统一样式
   包含：Car Details, Videos, Features, Inspection, Purchase
   ================================================================ */
/* ================================================================
   1. 全局色彩定义
   ================================================================ */
:root {
    --color-primary: #2e7d32;
    --color-text-light: #7e8c8d;
    --color-text-dark: #333333;
    --color-text-black: #000000;
    --color-border-light: #ffffff;
    --color-border-gray: #eeeeee;
    --color-bg-success: #e8f5e9;
    --color-text-success: #2e7d32;
    --color-bg-warning: #fff3e0;
    --color-text-warning: #e67e23;
    --font-family: Arial, sans-serif;
    --font-size-lg: 16px;
    --font-size-md: 16px;
    --line-height-lg: 24px;
    --line-height-md: 16px;
    --border-radius: 12px;
}
/* ================================================================
   2. 页面布局
   ================================================================ */
.page-container {
    display: flex;
    width: 100%;
    margin: 0;
    align-items: flex-start;
    gap: 12px;
    position: relative;
}
.nav-wrapper {
    display: flex;
    gap: 12px;
    position: sticky;
    top: 0;
}
.nav-line {
    width: 2px;
    height: 350px;
    background: var(--color-border-gray);
}
.nav-line-active {
    width: 100%;
    height: 0%;
    background: #a5d6a7;
    transition: height 0.3s;
}
.nav-container {
    width: 200px;
    font-size: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.nav-item {
    color: var(--color-text-light);
    text-decoration: none;
    margin-left: 8px;
    padding: 4px;
    cursor: pointer;
    transition: color 0.2s;
}
.content-wrapper {
    flex: 1;
    padding: 10px;
}
.section-title {
    font-size: 28px;
    color: var(--color-primary);
}
.section-title-text {
    font-weight: bold;
}
.section-title-with-spacing {
    margin-top: 30px;
}
/* ================================================================
   3. Car Details
   ================================================================ */
.car-details-card {
    width: 100%;
    margin: 0;
    background: #fff;
    border: 1px solid #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    padding: 0;
    box-sizing: border-box;
    overflow: hidden;
}
.car-specs-inner {
    width: 100%;
    margin: 0 auto;
    font-size: 0;
    line-height: 0;
}
.car-specs-table {
    width: 100%;
    border-collapse: collapse;
    margin: 0 auto;
    padding: 0;
    font-size: 13px;
    color: var(--color-text-dark);
    line-height: 1;
    table-layout: fixed;
}
.car-specline {
    height: auto;
    min-height: 22px;
}
.car-specname,
.car-specvalue {
    padding: 8px 10px;
    vertical-align: middle;
    border-width: 1px !important;
    border-style: solid !important;
    border-color: var(--color-border-light) var(--color-border-light) var(--color-border-gray) !important;
    font-size: var(--font-size-lg);
    height: auto;
    min-height: 22px;
}
.car-specname {
    width: 24%;
    text-align: left;
    color: var(--color-text-light);
}
.car-specvalue {
    width: 24%;
    text-align: right;
    color: var(--color-text-dark);
}
.car-specmiddle {
    width: 4%;
    padding: 0 !important;
    border: 1px solid var(--color-border-light) !important;
    height: 30px;
}
.card-content {
    padding: 15px 32px;
}
/* ================================================================
   4. Videos
   ================================================================ */
.videos-container {
    width: 100%;
    margin: 0;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    padding: 15px;
    box-sizing: border-box;
    overflow: hidden;
    margin-top: 10px;
}
.videos-content {
    max-width: 900px;
    margin: 0 auto;
}
.videos-grid {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    flex-wrap: wrap;
}
.video-card {
    width: 30%;
    min-width: 220px;
}
.video-player {
    aspect-ratio: 4/3;
    background: #000;
    border-radius: 6px;
    overflow: hidden;
}
.video-player-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.video-info {
    padding: 10px 4px 0;
}
.video-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-text-dark);
    line-height: 1.3;
}
.video-description {
    font-size: 12px;
    color: #777;
    margin-top: 4px;
}
/* 视频占位样式 */
.video-player.placeholder {
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}
.placeholder-content {
    text-align: center;
    color: #999;
}
.placeholder-icon {
    font-size: 48px;
    display: block;
}
.placeholder-text {
    font-size: 14px;
    margin-top: 8px;
}
/* ================================================================
   5. Features
   ================================================================ */
.features-container {
    width: 100%;
    margin: 0;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    padding: 0;
    box-sizing: border-box;
    overflow: hidden;
}
.features-content {
    padding: 0 32px;
}
.features-inner {
    width: 100%;
    margin: 0 auto;
    font-size: 0;
    line-height: 0;
}
#car-features-table {
    width: 100%;
    margin: 0 auto;
    padding: 0;
    border-collapse: collapse;
    border-spacing: 0 !important;
    table-layout: fixed;
    color: var(--color-text-dark);
}
#car-features-table td.car-featuretitle {
    width: 46.8898%;
    height: 48px;
    padding: 8px 10px 4px 10px !important;
    vertical-align: middle !important;
    text-align: left !important;
    font-size: var(--font-size-lg) !important;
    line-height: var(--line-height-lg) !important;
    font-weight: normal !important;
    color: var(--color-text-light) !important;
    border: none !important;
    border-bottom: 1px solid var(--color-border-gray) !important;
    box-sizing: border-box;
}
#car-features-table td.car-featuretitle span {
    font-size: var(--font-size-lg) !important;
    line-height: var(--line-height-lg) !important;
    font-weight: normal !important;
}
#car-features-table td.car-featuretitle img {
    vertical-align: middle !important;
    margin-right: 8px;
}
#car-features-table td.car-featuretitlemiddle {
    width: 6.97011% !important;
    height: 48px !important;
    padding: 0 !important;
    border: none !important;
}
#car-features-table td.car-featureline {
    width: 24% !important;
    height: auto !important;
    min-height: 0 !important;
    padding: 16px 10px 0 10px !important;
    vertical-align: top !important;
    text-align: left !important;
    font-size: var(--font-size-md) !important;
    line-height: var(--line-height-md) !important;
    color: var(--color-text-success) !important;
    border: 1px solid var(--color-border-light) !important;
    box-sizing: border-box;
}
#car-features-table td.car-featureline span {
    font-size: var(--font-size-md) !important;
    line-height: var(--line-height-md) !important;
    color: var(--color-text-black) !important;
}
#car-features-table td.car-featuremiddle {
    width: 4% !important;
    height: 25px !important;
    padding: 0 !important;
    border: 1px solid var(--color-border-light) !important;
}
#car-features-table tr:last-child td.car-featureline {
    padding-bottom: 24px !important;
}
/* Features 移动端（桌面端隐藏） */
.car-features-mobile {
    display: none;
}
/* ================================================================
   6. Inspection
   ================================================================ */
.inspection-wrapper {
    width: 100%;
    margin: 0;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    padding: 0;
    box-sizing: border-box;
    overflow: hidden;
    font-family: var(--font-family);
}
.inspection-content {
    padding: 15px 32px;
}
/* Inspection Section 组件 */
.inspection-section {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 18px;
    font-family: var(--font-family);
    color: #1a1f1a;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
/* 评分卡 */
.inspection-section .grade-card {
    position: relative;
    border-radius: 16px;
    padding: 28px 30px 26px;
    color: #fff;
    background:
            radial-gradient(140% 180% at 0% 0%, rgba(255,255,255,0.14) 0%, rgba(255,255,255,0) 50%),
            linear-gradient(125deg, #0d6e3e 0%, #138453 45%, #28a764 100%);
    box-shadow: 0 12px 32px rgba(13, 110, 62, 0.25);
    overflow: hidden;
}
.inspection-section .grade-top {
    display: flex;
    align-items: center;
    gap: 28px;
}
.inspection-section .grade-left {
    flex: 0 0 28%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-top: 2px;
}
.inspection-section .grade-label {
    font-size: 18px;
    font-weight: 700;
    color: #eafff3;
    letter-spacing: 0.5px;
}
.inspection-section .grade-score {
    font-size: 108px;
    font-weight: 900;
    line-height: 1;
    margin-top: 2px;
    color: #f2c522;
    text-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
    font-family: "Arial Black", Arial, sans-serif;
    width: 100%;
    text-align: center;
}
.inspection-section .grade-charts {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.inspection-section .charts-row {
    display: flex;
    justify-content: space-between;
    gap: 8px;
}
.inspection-section .insp-chart {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.inspection-section .insp-chart svg {
    display: block;
}
.inspection-section .insp-chart-label {
    margin-top: 8px;
    font-size: 13px;
    font-weight: 700;
    color: #d8dce0;
    white-space: nowrap;
}
.inspection-section .badges-row {
    display: flex;
    justify-content: space-between;
    gap: 8px;
}
.inspection-section .insp-free-badge {
    flex: 1;
    text-align: center;
    background: #ffffff;
    color: #0d6e3e;
    font-size: 13px;
    font-weight: 800;
    padding: 7px 6px;
    border-radius: 5px;
    letter-spacing: 0.3px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
}
.inspection-section .grade-desc {
    margin-top: 20px;
    font-size: 14px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.92);
}
/* 检测项列表 */
.inspection-section .inspection-list {
    background: #ffffff;
    border: 1px solid #ececec;
    border-radius: 14px;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.04);
    overflow: hidden;
}
.inspection-section .insp-item {
    border-bottom: 1px solid #f0f0f0;
}
.inspection-section .insp-item:last-child {
    border-bottom: none;
}
.inspection-section .insp-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 16px;
    gap: 8px;
    cursor: pointer;
    transition: background 0.2s;
    -webkit-user-select: none;
    user-select: none;
}
.inspection-section .insp-head:hover {
    background: #f8faf9;
}
.inspection-section .insp-head-left {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    font-weight: 600;
    color: #1a1f1a;
}
.inspection-section .insp-arrow {
    width: 7px;
    height: 7px;
    border-right: 2px solid #9aa39d;
    border-bottom: 2px solid #9aa39d;
    transform: rotate(-45deg);
    transition: transform 0.25s ease;
    flex: 0 0 auto;
}
.inspection-section .insp-item.open .insp-arrow {
    transform: rotate(45deg);
}
.inspection-section .insp-head-right {
    display: flex;
    gap: 6px;
    flex: 0 0 auto;
}
.inspection-section .count-pill {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 10px;
    font-weight: 700;
    padding: 4px 9px;
    border-radius: 20px;
    min-width: 44px;
    justify-content: center;
}
.inspection-section .count-pill.ok {
    background: #e6f5ec;
    color: #15844a;
}
.inspection-section .count-pill.warn {
    background: #fdebe2;
    color: #e04f11;
}
.inspection-section .count-pill.warn.has-defect {
    background: #fbd8cd;
    color: #a8351a;
    box-shadow: 0 0 0 1px rgba(168, 53, 26, 0.18);
}
.inspection-section .insp-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.32s ease, padding 0.32s ease;
    padding: 0 22px;
    background: #fbfcfb;
}
.inspection-section .insp-item.open .insp-body {
    max-height: 2400px;
    padding: 14px 22px 20px;
}
.inspection-section .insp-body p {
    font-size: 13px;
    line-height: 1.7;
    color: #5a615c;
    margin-bottom: 14px;
}
/* 损伤项区块 */
.inspection-section .defects-block {
    background: linear-gradient(0deg, #fff5f1 0%, #fff8f4 100%);
    border: 1px solid #f7cfc1;
    border-radius: 10px;
    padding: 12px 14px 14px;
    margin-bottom: 14px;
}
.inspection-section .defects-header {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12.5px;
    font-weight: 700;
    color: #a8351a;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    margin-bottom: 8px;
}
.inspection-section .defects-header svg {
    width: 14px;
    height: 14px;
}
.inspection-section .defects-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px 14px;
}
.inspection-section .defects-list li {
    font-size: 13px;
    line-height: 1.7;
    color: #7a2a17;
    padding-left: 16px;
    padding-right: 4px;
    position: relative;
    font-weight: 500;
    cursor: pointer;
    transition: color 0.2s, transform 0.2s;
    border-radius: 4px;
}
.inspection-section .defects-list li:hover {
    color: #a8351a;
    transform: translateX(2px);
}
.inspection-section .defects-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 9px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #d94a2b;
}
/* 全部通过状态 */
.inspection-section .all-clear {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #eaf6ef;
    border: 1px solid #c8e6d3;
    border-radius: 10px;
    padding: 10px 14px;
    font-size: 13px;
    font-weight: 600;
    color: #15844a;
    margin-bottom: 14px;
}
.inspection-section .all-clear svg {
    width: 16px;
    height: 16px;
    flex: 0 0 auto;
}
/* 其他检测细项 */
.inspection-section .other-label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11.5px;
    font-weight: 700;
    color: #8b948f;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    margin: 4px 0 8px;
}
.inspection-section .other-label .insp-badge {
    background: #f0f2f1;
    color: #6b7268;
    font-size: 11px;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 10px;
    letter-spacing: 0;
    text-transform: none;
}
.inspection-section .insp-body ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4px 18px;
}
.inspection-section .insp-body li {
    font-size: 12.5px;
    line-height: 1.7;
    color: #6b7268;
    padding-left: 14px;
    position: relative;
}
.inspection-section .insp-body li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 9px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #b8c1bc;
}
/* 损伤详情弹窗 */
.insp-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(10, 20, 14, 0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.22s, visibility 0.22s;
    padding: 20px;
    backdrop-filter: blur(2px);
}
.insp-modal-overlay.open {
    opacity: 1;
    visibility: visible;
}
.insp-modal {
    background: #ffffff;
    border-radius: 14px;
    max-width: 540px;
    width: 100%;
    max-height: 88vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.32);
    transform: scale(0.94) translateY(8px);
    transition: transform 0.22s ease;
}
.insp-modal-overlay.open .insp-modal {
    transform: scale(1) translateY(0);
}
.insp-modal-photo {
    position: relative;
    width: 100%;
    height: 280px;
    background: linear-gradient(135deg, #f7f0ec 0%, #ecd9d0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex: 0 0 auto;
}
.insp-modal-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.insp-modal-photo-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: #c4501d;
    opacity: 0.55;
}
.insp-modal-photo-placeholder svg {
    width: 56px;
    height: 56px;
}
.insp-modal-photo-placeholder .hint {
    font-size: 12px;
    font-weight: 600;
    color: #8a5b48;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
.insp-modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a1f1a;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
    transition: background 0.2s, transform 0.2s;
}
.insp-modal-close:hover {
    background: #ffffff;
    transform: rotate(90deg);
}
.insp-modal-close svg {
    width: 18px;
    height: 18px;
}
.insp-modal-body {
    padding: 22px 26px 26px;
    overflow-y: auto;
}
.insp-modal-title {
    font-size: 16px;
    font-weight: 700;
    color: #a8351a;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.insp-modal-title svg {
    width: 16px;
    height: 16px;
    flex: 0 0 auto;
}
.insp-modal-desc {
    font-size: 13.5px;
    line-height: 1.7;
    color: #4a4f4c;
    white-space: pre-wrap;
}
.insp-modal-tag {
    display: inline-block;
    margin-top: 14px;
    font-size: 11px;
    font-weight: 700;
    color: #a8351a;
    background: #fdebe2;
    border: 1px solid #f7cfc1;
    padding: 4px 10px;
    border-radius: 12px;
    letter-spacing: 0.4px;
    text-transform: uppercase;
}
/* ================================================================
   7. Purchase Process
   ================================================================ */
.purchase-container {
    width: 100%;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}
.purchase-content {
    padding: 40px 32px;
}
.purchase-timeline {
    max-width: 800px;
    margin: 0 auto;
    font-family: var(--font-family);
    position: relative;
}
.timeline-line {
    position: absolute;
    left: 40px;
    top: 54px;
    bottom: 54px;
    width: 2px;
    background: var(--color-primary);
    z-index: 1;
}
.step-container {
    display: flex;
    position: relative;
}
.step-number-box {
    width: 80px;
    text-align: center;
}
.step-number {
    width: 54px;
    height: 54px;
    border: 2px solid var(--color-primary);
    border-radius: 50%;
    box-sizing: border-box;
    line-height: 50px;
    text-align: center;
    font-size: 15px;
    font-weight: bold;
    color: var(--color-primary);
    background: #fff;
    margin: auto;
    position: relative;
    z-index: 2;
}
.step-content {
    flex: 1;
    padding-left: 40px;
    padding-bottom: 50px;
}
.step-label {
    display: inline-block;
    background: var(--color-primary);
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 13px;
    color: #fff !important;
    font-weight: 600;
}
.step-title {
    font-size: 22px;
    font-weight: bold;
    color: #222;
    margin: 12px 0;
}
.step-description {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
}
.step-divider {
    border: none;
    border-top: 1px solid #eee;
    margin-top: 25px;
}
.step-container:last-child .step-content {
    padding-bottom: 0;
}
.step-container:last-child .step-divider {
    display: none;
}
/* ================================================================
   8. 移动端响应式
   ================================================================ */
/* 平板及以下（≤768px） */
@media (max-width: 768px) {
    /* 页面布局 */
    .page-container {
        flex-direction: column;
        gap: 0;
    }
    .nav-wrapper {
        position: static;
        flex-direction: row;
        align-items: center;
        gap: 8px;
        padding: 2px 0 10px;
    }
    .nav-line {
        display: none;
    }
    .nav-container {
        width: 100%;
        flex-direction: row;
        gap: 2px;
        font-size: 15px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    .nav-container::-webkit-scrollbar {
        display: none;
    }
    .nav-item {
        flex: 0 0 auto;
        white-space: nowrap;
        margin-left: 0;
        padding: 6px 10px;
    }
    .content-wrapper {
        padding: 4px;
    }
    .section-title {
        font-size: 22px;
    }
    .section-title-with-spacing {
        margin-top: 18px;
    }
    .section-title-text br {
        display: none;
    }
    .section-title > br {
        display: none;
    }
    .videos-container {
        margin-top: 0;
    }
    .card-content {
        padding: 15px 14px;
    }
    .features-content {
        padding: 0 14px;
    }
    .purchase-content {
        padding: 26px 14px;
    }
    .videos-container {
        padding: 10px;
    }
    .inspection-content {
        padding: 15px 14px;
    }
    /* Videos 移动端 */
    .video-card {
        width: calc(50% - 10px);
        min-width: 0;
    }
    /* Car Details 移动端 */
    .car-specs-table,
    .car-specs-table tbody,
    .car-specs-table td {
        display: block;
        width: 100% !important;
        box-sizing: border-box;
        height: auto !important;
    }
    .car-specs-table tr,
    .car-specs-table .car-specline {
        display: grid;
        grid-template-columns: 42% 1fr;
        align-items: center;
        width: 100%;
        height: auto !important;
    }
    .car-specs-table tr:last-child {
        border-bottom: none;
    }
    .car-specs-table .car-specmiddle {
        display: none;
    }
    .car-specs-table .car-specname {
        width: auto !important;
        text-align: left;
        border-top: none !important;
        border-right: none !important;
        border-left: none !important;
        border-bottom: 1px solid #f0f0f0 !important;
        padding: 10px 0 10px 2px !important;
        font-size: 15px;
    }
    .car-specs-table .car-specvalue {
        width: auto !important;
        text-align: right;
        white-space: nowrap;
        border-top: none !important;
        border-right: none !important;
        border-left: none !important;
        border-bottom: 1px solid #f0f0f0 !important;
        padding: 10px 2px 10px 0 !important;
        font-size: 15px;
    }
    /* Features 移动端 - 显示移动端块，隐藏表格 */
    #car-features-table {
        display: none !important;
    }
    .car-features-mobile {
        display: flex !important;
        flex-direction: column;
        gap: 18px;
        font-size: 14px;
        line-height: 1.5;
    }
    .cfm-block {
        border: 1px solid #ececec;
        border-radius: 12px;
        background: #fff;
        overflow: hidden;
    }
    .cfm-title {
        display: flex;
        align-items: center;
        padding: 12px 16px;
        font-size: 15px;
        font-weight: 700;
        color: #2e7d32;
        background: #f5faf6;
        border-bottom: 1px solid #e8f0e9;
    }
    .cfm-items {
        padding: 6px 0;
    }
    .cfm-item {
        display: flex;
        align-items: center;
        gap: 9px;
        padding: 8px 16px;
        color: #333;
        font-weight: 500;
    }
    .cfm-item + .cfm-item {
        border-top: 1px dashed #f0f0f0;
    }
    .cfm-ico {
        color: #2e7d32;
        font-weight: 700;
        flex: 0 0 auto;
    }
    /* Inspection 移动端 */
    .inspection-section .grade-card {
        padding: 24px 18px 22px;
    }
    .inspection-section .grade-top {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    .inspection-section .grade-left {
        flex: none;
        width: 100%;
        align-items: center;
        text-align: center;
        padding-top: 0;
    }
    .inspection-section .grade-label {
        font-size: 14px;
        letter-spacing: 1px;
    }
    .inspection-section .grade-score {
        font-size: 72px;
        line-height: 1.02;
    }
    .inspection-section .grade-charts {
        width: 100%;
    }
    .inspection-section .charts-row {
        flex-wrap: nowrap;
        gap: 6px;
    }
    .inspection-section .insp-chart {
        flex: 1 1 0;
        min-width: 0;
    }
    .inspection-section .insp-chart svg {
        width: 62px;
        height: 50px;
    }
    .inspection-section .insp-chart-label {
        font-size: 11px;
        white-space: normal;
    }
    .inspection-section .badges-row {
        flex-wrap: nowrap;
        gap: 8px;
    }
    .inspection-section .insp-free-badge {
        flex: 1 1 0;
        font-size: 12px;
        padding: 8px 4px;
    }
    .inspection-section .grade-desc {
        font-size: 13px;
        margin-top: 18px;
        line-height: 1.7;
    }
    .inspection-section .insp-head {
        padding: 15px 14px;
    }
    .inspection-section .insp-body {
        padding: 0 14px;
    }
    .inspection-section .insp-item.open .insp-body {
        padding: 12px 14px 18px;
    }
    .inspection-section .insp-head-left {
        font-size: 14px;
        gap: 8px;
    }
    .inspection-section .defects-list,
    .inspection-section .insp-body ul {
        grid-template-columns: repeat(2, 1fr);
    }
    /* Purchase 移动端 */
    .purchase-timeline {
        max-width: 100%;
    }
    .step-number-box {
        width: 60px;
    }
    .step-number {
        width: 44px;
        height: 44px;
        line-height: 40px;
        font-size: 14px;
    }
    .timeline-line {
        left: 30px;
        top: 40px;
        bottom: 40px;
    }
    .step-content {
        padding-left: 14px;
        padding-bottom: 34px;
    }
    .step-title {
        font-size: 18px;
        margin: 10px 0;
    }
    .step-description {
        font-size: 14px;
    }
    .step-label {
        font-size: 12px;
    }
}
/* 手机（≤480px） */
@media (max-width: 480px) {
    .section-title {
        font-size: 20px;
    }
    /* Videos 一行1个 */
    .video-card {
        width: 100%;
    }
    .video-title {
        font-size: 13px;
    }
    /* Inspection */
    .inspection-section .grade-card {
        padding: 22px 16px 20px;
    }
    .inspection-section .grade-score {
        font-size: 64px;
    }
    .inspection-section .grade-label {
        font-size: 13px;
    }
    .inspection-section .charts-row {
        gap: 5px;
    }
    .inspection-section .insp-chart svg {
        width: 56px;
        height: 46px;
    }
    .inspection-section .insp-chart-label {
        font-size: 10.5px;
    }
    .inspection-section .insp-free-badge {
        font-size: 11.5px;
        padding: 7px 3px;
    }
    .inspection-section .grade-desc {
        font-size: 12.5px;
        margin-top: 16px;
    }
    .inspection-section .defects-list,
    .inspection-section .insp-body ul {
        grid-template-columns: 1fr;
    }
    /* Purchase */
    .step-title {
        font-size: 16px;
    }
    .step-description {
        font-size: 13.5px;
        line-height: 1.7;
    }
    /* Modal */
    .insp-modal-overlay {
        padding: 12px;
    }
    .insp-modal-photo {
        height: 210px;
    }
    .insp-modal-body {
        padding: 16px 16px 20px;
    }
    .insp-modal-title {
        font-size: 15px;
    }
    .insp-modal-desc {
        font-size: 13px;
    }
}