
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            color: #333;
            line-height: 1.6;
            min-height: 100vh;
        }
        
        .container {
            max-width: 100%;
            margin: 0 auto;
            background: white;
            overflow: hidden;
            box-shadow: 0 15px 50px rgba(0,0,0,0.08);
        }
        
        .product-header {
            background: linear-gradient(to right, #1a1a1a, #2c2c2c);
            color: white;
            padding: 30px 40px;
            text-align: center;
            border-bottom: 4px solid #000;
        }
        
        .product-title {
            font-size: 36px;
            font-weight: 700;
            letter-spacing: 1px;
            margin-bottom: 15px;
        }
        
        .product-subtitle {
            font-size: 19px;
            opacity: 0.85;
            max-width: 800px;
            margin: 0 auto;
            line-height: 1.7;
        }
        
        .exclusive-tag {
            display: inline-block;
            background: #000;
            color: white;
            padding: 10px 30px;
            border-radius: 30px;
            font-size: 17px;
            font-weight: 600;
            margin-top: 20px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
        }
        
        .details-section {
            padding: 50px 40px;
            background: #f8f9fa;
        }
        
        .section-title {
            font-size: 32px;
            font-weight: 800;
            color: #000;
            margin-bottom: 30px;
            text-align: center;
            position: relative;
            padding-bottom: 20px;
            letter-spacing: 0.5px;
        }
        
        .section-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: #000;
            border-radius: 2px;
        }
        
        .section-subtitle {
            text-align: center;
            color: #555;
            font-size: 19px;
            max-width: 900px;
            margin: 0 auto 50px;
            line-height: 1.8;
        }
        
        .details-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            max-width: 1400px;
            margin: 0 auto;
        }
        
        .detail-card {
            background: white;
            border-radius: 12px;
            padding: 35px 30px;
            box-shadow: 0 8px 30px rgba(0,0,0,0.08);
            border: 1px solid #eee;
            transition: all 0.4s ease;
            height: 100%;
            position: relative;
            overflow: hidden;
        }
        
        .detail-card:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: #000;
        }
        
        .detail-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0,0,0,0.15);
        }
        
        .card-title {
            font-size: 24px;
            font-weight: 700;
            color: #000;
            margin-bottom: 25px;
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .card-title i {
            color: #000;
            font-size: 24px;
            min-width: 36px;
            text-align: center;
        }
        
        .detail-card ul {
            list-style: none;
            padding-left: 0;
        }
        
        .detail-card li {
            margin-bottom: 16px;
            padding-left: 32px;
            position: relative;
            font-size: 17px;
            color: #444;
            line-height: 1.7;
        }
        
        .detail-card li:before {
            content: "•";
            color: #000;
            position: absolute;
            left: 12px;
            font-size: 26px;
            top: -5px;
        }
        
        .product-footer {
            text-align: center;
            padding: 30px;
            color: #777;
            font-size: 16px;
            border-top: 1px solid #eee;
            background: #f9f9f9;
        }
        
        .product-id {
            font-weight: 600;
            color: #333;
            margin-top: 10px;
        }
        
        /* 响应式设计 */
        @media (max-width: 1200px) {
            .details-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 25px;
            }
            
            .section-title {
                font-size: 28px;
            }
        }
        
        @media (max-width: 768px) {
            .details-grid {
                grid-template-columns: 1fr;
            }
            
            .section-title {
                font-size: 26px;
            }
            
            .product-header {
                padding: 25px 20px;
            }
            
            .product-title {
                font-size: 28px;
            }
            
            .details-section {
                padding: 40px 20px;
            }
        }
        
        @media (max-width: 480px) {
            .section-title {
                font-size: 24px;
            }
            
            .card-title {
                font-size: 22px;
            }
            
            .product-title {
                font-size: 24px;
            }
            
            .product-subtitle {
                font-size: 17px;
            }
            
            .exclusive-tag {
                font-size: 15px;
                padding: 8px 20px;
            }
        }
    