
        /* 新增紧凑样式 - 不会影响原有系统样式 */
        .compact-title {
            font-size: 16px !important;
            line-height: 1.5 !important;
            margin: 0 !important;
            padding: 8px 0 !important;
        }
        
        .compact-table {
            font-size: 14px !important;
        }
        
        .compact-table th,
        .compact-table td {
            padding: 8px 6px !important;
            line-height: 1.5 !important;
        }
        
        .compact-table .product-image-cell {
            padding: 16px !important;
        }
        
        /* 保留原有样式不变 */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            background-color: #f8f9fa;
            color: #333;
            line-height: 1.0;
            padding: 0px;
            max-width: 1100px;
            margin: 0 auto;
        }
        
        .page-header {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 15px;
            margin-bottom: 8px;
            padding: 12px;
            background: linear-gradient(135deg, #203f5d 0%, #2c5282 100%);
            border-radius: 8px;
            box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
        }
        
        .page-header img {
            height: 40px;
        }
        
        .page-title {
            font-size: 14px;
            color: white;
            text-align: center;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
        }
        
        .specifications-table {
            width: 100%;
            border-collapse: collapse;
            margin: 0 auto 28px;
            background: white;
            border-radius: 8px;
            font-size: 14px; 
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
        }
        
        .specifications-table th {
            background: linear-gradient(to bottom, #2c5282, #203f5d);
            color: white;
            font-weight: 600;
            text-align: center;
            padding: 0px 8px;
            font-size: 14px;
        }
        
        .specifications-table td {
            padding: 12px 8px;
            text-align: center;
            border-bottom: 5px solid #e5e5e5;
            transition: all 0.2s ease;
        }
        
        .specifications-table tr:nth-child(even) {
            background-color: #e5e5e5;
        }
        
        .specifications-table tr:hover {
            background-color: #dfe4e8;
        }
        
        .specifications-table .conditions-row td {
            background-color: #e5e5e5;
            font-size: 14px;
            padding: 0px 6px !important;
            color: #495057;
            font-style: italic;
        }
        
        .product-image-cell {
            vertical-align: middle;
            padding: 10px;
        }
        
        .product-image {
            max-width: 100%;
            height: auto;
            border-radius: 8px;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
        }
        
        .notes {
            background-color: #e9ecef;
            padding: 8px;
            border-radius: 8px;
            margin-top: 5px;
            font-size: 14px;
            line-height: 1.5;
        }
        
        .contact-info {
            text-align: center;
            margin-top: 10px;
            padding: 8px;
            background: linear-gradient(to right, #203f5d, #2c5282);
            border-radius: 10px;
            color: white;
        }
        
        .contact-info a {
            color: #ffcc00;
            font-weight: 600;
            text-decoration: none;
            font-size: 14px;
        }
        
        .contact-info a:hover {
            color: #ffffff;
            text-decoration: underline;
        }
        
        .product-highlights {
            display: flex;
            justify-content: space-around;
            flex-wrap: wrap;
            gap: 15px;
            margin: 10px 0;
        }
        
        .highlight-card {
            background: #dfe4e8;
            border-radius: 8px;
            padding: 2px;
            flex: 1;
            min-width: 150px;
            text-align: center;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
        }
        
        .highlight-value {
            font-size: 16px;
            font-weight: 700;
            color: #2c5282;
            margin: 8px 0;
        }
        
        .highlight-title {
            font-size: 14px;
            color: #495057;
            font-weight: 600;
        }
        
        footer {
            text-align: center;
            margin-top: 4px;
            padding: 10px;
            color: #6c757d;
            font-size: 14px;
        }
        
        @media (max-width: 768px) {
            .specifications-table {
                display: block;
                overflow-x: auto;
            }
            
            .page-header {
                flex-direction: column;
                text-align: center;
            }
            
            .product-highlights {
                flex-direction: column;
            }
            
            .specifications-table th, 
            .specifications-table td {
                padding: 2px 5px;
                font-size: 14px;
            }
        }
    