
    /* ----- 模块独立样式 (作用域限定) ----- */
    .driver-match-module {
        --primary: #2A5CAA;
        --primary-light: #4A7CC8;
        --secondary: #F5F7FA;
        --accent: #FF6B35;
        --text: #333333;
        --text-light: #555555;
        --border: #E0E0E0;
        --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
        --radius: 12px;
        --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
        font-family: 'Roboto', sans-serif;
        padding: 60px 0;
        background: #F8FAFC;
    }

    .driver-match-module .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }

    /* ----- 标题区 ----- */
    .driver-match-module .section-header {
        text-align: center;
        margin-bottom: 50px;
    }

    .driver-match-module .section-header h2 {
        font-family: 'Montserrat', sans-serif;
        font-size: 2.2rem;
        color: var(--primary);
        margin-bottom: 10px;
        position: relative;
        display: inline-block;
    }

    .driver-match-module .section-header h2::after {
        content: '';
        display: block;
        width: 80px;
        height: 4px;
        background: var(--primary);
        margin: 12px auto 0;
        border-radius: 2px;
    }

    .driver-match-module .section-header p {
        font-size: 1.1rem;
        color: var(--text-light);
        max-width: 650px;
        margin: 16px auto 0;
    }

    /* ----- 卡片网格 (两列) ----- */
    .driver-match-module .driver-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        align-items: stretch;
    }

    /* ----- 独立卡片 ----- */
    .driver-match-module .driver-card {
        background: #ffffff;
        border-radius: var(--radius);
        box-shadow: var(--shadow);
        overflow: hidden;
        transition: var(--transition);
        border: 1px solid var(--border);
        display: flex;
        flex-direction: column;
    }

    .driver-match-module .driver-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
        border-color: var(--primary-light);
    }

    /* ----- 图片区域 (每个型号一张专属图) ----- */
    .driver-match-module .card-image {
        background: #ffffff;
        padding: 30px 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 200px;
        border-bottom: 1px solid var(--border);
        transition: background 0.3s ease;
    }

    .driver-match-module .driver-card:hover .card-image {
        background: #fafcff;
    }

    .driver-match-module .card-image img {
        max-width: 100%;
        max-height: 220px;
        width: auto;
        height: auto;
        object-fit: contain;
        display: block;
        transition: transform 0.4s ease;
        filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.06));
    }

    .driver-match-module .driver-card:hover .card-image img {
        transform: scale(1.02);
    }

    /* ----- 内容区 ----- */
    .driver-match-module .card-content {
        padding: 28px 30px 32px;
        flex: 1;
        display: flex;
        flex-direction: column;
    }

    .driver-match-module .card-content h3 {
        font-family: 'Montserrat', sans-serif;
        font-size: 1.6rem;
        color: var(--primary);
        margin: 0 0 16px;
        letter-spacing: -0.2px;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .driver-match-module .card-content h3 .badge {
        font-size: 0.7rem;
        background: var(--secondary);
        color: var(--text-light);
        padding: 2px 12px;
        border-radius: 20px;
        font-weight: 500;
        font-family: 'Roboto', sans-serif;
        letter-spacing: 0.3px;
    }

    /* ----- 规格列表 ----- */
    .driver-match-module .spec-list {
        list-style: none;
        padding: 0;
        margin: 0 0 24px;
        flex: 1;
    }

    .driver-match-module .spec-list li {
        display: flex;
        justify-content: space-between;
        padding: 10px 0;
        border-bottom: 1px dashed #eaecf0;
        font-size: 0.95rem;
        color: var(--text);
        line-height: 1.5;
    }

    .driver-match-module .spec-list li:last-child {
        border-bottom: none;
    }

    .driver-match-module .spec-list .label {
        font-weight: 500;
        color: var(--text-light);
    }

    .driver-match-module .spec-list .value {
        font-weight: 500;
        color: var(--text);
        text-align: right;
    }

    .driver-match-module .spec-list .value .highlight {
        color: var(--primary);
        font-weight: 600;
    }

    /* ----- 按钮 (链接) ----- */
    .driver-match-module .btn-link {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        padding: 12px 28px;
        background: var(--primary);
        color: #fff;
        border-radius: 30px;
        font-weight: 500;
        font-size: 0.95rem;
        text-decoration: none;
        transition: var(--transition);
        border: none;
        margin-top: 6px;
        align-self: flex-start;
        box-shadow: 0 4px 12px rgba(42, 92, 170, 0.25);
    }

    .driver-match-module .btn-link i {
        font-size: 0.85rem;
        transition: transform 0.3s ease;
    }

    .driver-match-module .btn-link:hover {
        background: #1E4A89;
        transform: translateY(-3px);
        box-shadow: 0 8px 20px rgba(42, 92, 170, 0.35);
    }

    .driver-match-module .btn-link:hover i {
        transform: translateX(4px);
    }

    /* 卡片2 按钮颜色微调 (保持统一但可区分) */
    .driver-match-module .driver-card:nth-child(2) .btn-link {
        background: #1a5276;
        box-shadow: 0 4px 12px rgba(26, 82, 118, 0.25);
    }
    .driver-match-module .driver-card:nth-child(2) .btn-link:hover {
        background: #0e3d5c;
        box-shadow: 0 8px 20px rgba(26, 82, 118, 0.35);
    }

    /* ----- 响应式设计 ----- */
    @media (max-width: 1024px) {
        .driver-match-module .driver-grid {
            gap: 24px;
        }
        .driver-match-module .section-header h2 {
            font-size: 2rem;
        }
        .driver-match-module .card-content {
            padding: 24px 24px 28px;
        }
        .driver-match-module .card-content h3 {
            font-size: 1.4rem;
        }
    }

    @media (max-width: 768px) {
        .driver-match-module {
            padding: 50px 0;
        }
        .driver-match-module .driver-grid {
            grid-template-columns: 1fr;
            gap: 28px;
        }
        .driver-match-module .card-image {
            min-height: 160px;
            padding: 20px;
        }
        .driver-match-module .card-image img {
            max-height: 180px;
        }
        .driver-match-module .card-content h3 {
            font-size: 1.4rem;
        }
        .driver-match-module .spec-list li {
            font-size: 0.9rem;
            padding: 8px 0;
        }
        .driver-match-module .btn-link {
            align-self: center;
            width: 100%;
            justify-content: center;
        }
    }

    @media (max-width: 480px) {
        .driver-match-module {
            padding: 40px 0;
        }
        .driver-match-module .section-header h2 {
            font-size: 1.7rem;
        }
        .driver-match-module .card-image {
            min-height: 130px;
            padding: 16px;
        }
        .driver-match-module .card-image img {
            max-height: 140px;
        }
        .driver-match-module .card-content {
            padding: 20px 18px 24px;
        }
        .driver-match-module .card-content h3 {
            font-size: 1.2rem;
            flex-wrap: wrap;
        }
        .driver-match-module .spec-list li {
            flex-direction: column;
            align-items: flex-start;
            gap: 2px;
            padding: 10px 0;
        }
        .driver-match-module .spec-list .value {
            text-align: left;
            width: 100%;
        }
        .driver-match-module .btn-link {
            font-size: 0.9rem;
            padding: 11px 20px;
        }
    }
