
        * { margin: 0; padding: 0; box-sizing: border-box; }
        
        body {
            font-family: "Microsoft YaHei", sans-serif;
            color: #333;
            background: #f9f9f9;
            line-height: 1.6;
        }
        
        .container {
            max-width: 100%;
            margin: 0 auto; 
        }
        
        /* 产品展示区 */
        .hero {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            padding: 40px;
            background: linear-gradient(135deg, #f5f5f5 0%, #fff 100%);
        }
        
        .product-image {
            width: 100%;
            height: 500px;
            background: linear-gradient(135deg, #d4a574 0%, #c4956f 100%);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 64px;
            color: rgba(255,255,255,0.3);
        }
        
        .product-info {
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        
        .product-title {
            font-size: 36px;
            font-weight: 300;
            margin-bottom: 20px;
            color: #2c2c2c;
        }
        
        .product-price {
            font-size: 28px;
            color: #c4956f;
            margin-bottom: 20px;
        }
        
        .product-desc {
            color: #666;
            margin-bottom: 30px;
        }
        
        .btn {
            background: #2c2c2c;
            color: #fff;
            border: none;
            padding: 14px 32px;
            border-radius: 4px;
            cursor: pointer;
            align-self: flex-start;
            transition: background 0.3s;
        }
        
        .btn:hover { background: #444; }
        
        /* 通用区块样式 */
        .section {
            padding: 60px 40px;
            border-bottom: 1px solid #e5e5e5;
        }
        
        .section-title {
            font-size: 28px;
            font-weight: 300;
            text-align: center;
            margin-bottom: 40px;
            color: #2c2c2c;
        }
        
        .content {
            max-width: 900px;
            margin: 0 auto;
        }
        
        /* 设计理念 */
        .design {
            background: #fafafa;
        }
        
        .design-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }
        
        .design-item {
            text-align: center;
            padding: 20px;
            background: #fff;
            border-radius: 8px;
            transition: transform 0.3s;
        }
        
        .design-item:hover { transform: translateY(-5px); }
        
        .design-icon {
            font-size: 36px;
            color: #c4956f;
            margin-bottom: 15px;
        }
        
        /* 材质工艺 */
        .material-list {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }
        
        .material-item {
            padding: 20px;
            background: #f9f9f9;
            border-left: 3px solid #c4956f;
            border-radius: 4px;
        }
        
        /* 穿着体验 */
        .experience {
            background: linear-gradient(135deg, #fafafa 0%, #fff 100%);
        }
        
        .experience-list {
            list-style: none;
        }
        
        .experience-item {
            display: flex;
            padding: 20px;
            margin-bottom: 15px;
            background: #fff;
            border-radius: 8px;
        }
        
        .exp-number {
            font-size: 28px;
            color: #c4956f;
            margin-right: 20px;
            min-width: 40px;
        }
        
        /* 尺码表 */
        .size-table {
            width: 100%;
            border-collapse: collapse;
            background: #fff;
            margin-bottom: 20px;
        }
        
        .size-table th {
            background: #2c2c2c;
            color: #fff;
            padding: 12px;
        }
        
        .size-table td {
            padding: 12px;
            text-align: center;
            border-bottom: 1px solid #e5e5e5;
        }
        
        .size-note {
            padding: 15px;
            background: #fff9f0;
            border-left: 3px solid #c4956f;
            font-size: 14px;
            color: #666;
        }
        
      
        
        /* 响应式设计 */
        @media (max-width: 768px) {
            .hero, .design-grid, .material-list {
                grid-template-columns: 1fr;
            }
            
            .product-image { height: 300px; }
            .section { padding: 40px 20px; }
        }
    