    /* 基础设置 */
    :root {
        --primary-color: #f0c14b;
        --primary-light: #f8d878;
        --dark-bg: #1a1a1a;
        --darker-bg: #121212;
        --text-dark: #333;
        --text-light: #f5f5f5;
        --border-radius: 12px;
        --transition-speed: 0.25s;
    }
    
    /* 容器 */
    .GGW-plist-date-body {
        padding: 5rem 0 0 0 ;
    }
    
    .GGW-plist-date-comparison-container {
        max-width: 1310px;
        margin: 0 auto;

    }

    /* 表格样式 */
    .GGW-plist-date-comparison-table {
        background: rgba(255, 255, 255, 0.95);
        border-radius: var(--border-radius);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        overflow: hidden;
        border: 1px solid rgba(0, 0, 0, 0.05);
        transition: all var(--transition-speed) ease;
        position: relative;
    }

    .GGW-plist-date-comparison-table:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    }

    .GGW-plist-date-comparison-table:before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-light) 100%);
    }

    .GGW-plist-date-comparison-table table {
        width: 100%;
        border-collapse: collapse;
        font-family: 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
    }

    .GGW-plist-date-comparison-table th,
    .GGW-plist-date-comparison-table td {
        padding: 1rem 1.5rem;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        text-align: left;
    }

    .GGW-plist-date-comparison-table th {
        background: var(--darker-bg);
        color: var(--primary-color);
        font-size: 0.95rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        position: sticky;
        top: 0;
    }

    .GGW-plist-date-comparison-table td {
        font-size: 0.95rem;
        color: var(--text-dark);
        transition: all var(--transition-speed) ease;
        position: relative;
    }

    .GGW-plist-date-comparison-table tr:not(:last-child) td {
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    /* 碳纤维列样式 */
    .GGW-plist-carbon-cell {
        background: rgba(240, 193, 75, 0.15);
        font-weight: 600;
        color: var(--primary-color) !important;
    }

    /* 优势标记 */
    .GGW-plist-superior {
        position: relative;
        font-weight: 500;
    }

    .GGW-plist-superior:after {
        content: "✓";
        margin-left: 0.5rem;
        color: #4CAF50;
        font-weight: bold;
    }

    /* 鼠标悬停效果 */
    .GGW-plist-date-comparison-table tbody tr:hover td {
        background-color: var(--dark-bg);
        color: var(--text-light);
        cursor: pointer;
    }

    .GGW-plist-date-comparison-table tbody tr:hover td:first-child {
        color: var(--primary-color);
    }

    /* 对比提示工具 */
    .GGW-plist-comparison-tooltip {
        position: absolute;
        background: var(--darker-bg);
        color: white;
        padding: 0.5rem 1rem;
        border-radius: 4px;
        font-size: 0.85rem;
        z-index: 100;
        pointer-events: none;
        opacity: 0;
        transition: opacity var(--transition-speed);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
        max-width: 250px;
        line-height: 1.4;
    }

    .GGW-plist-comparison-tooltip.show {
        opacity: 1;
    }

    /* 响应式设计 */
    @media (max-width: 768px) {
        .GGW-plist-date-body {
            padding: 3rem 0;
        }
        
        .GGW-plist-date-comparison-table th,
        .GGW-plist-date-comparison-table td {
            padding: 0.875rem 1rem;
            font-size: 0.875rem;
        }
    }