/* 基础样式与孟菲斯风格高对比色 */
        :root {
            --primary: #FF5E5B;
            --secondary: #00CECB;
            --accent: #FFED66;
            --dark: #2D3047;
            --light: #FDFFFC;
            --pattern: #5C6BC0;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }
        
        body {
            background-color: var(--light);
            color: var(--dark);
            overflow-x: hidden;
        }
        
        /* 磁带机风格导航栏 */
        .navbar {
            position: fixed;
            top: 0;
            width: 100%;
            background-color: var(--dark);
            padding: 15px 0;
            z-index: 1000;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }
        
        .tape-player {
            display: flex;
            justify-content: center;
            align-items: center;
            height: 60px;
            background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent));
            padding: 0 20px;
            position: relative;
        }
        
        .tape-reels {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: var(--light);
            border: 4px solid var(--dark);
            display: flex;
            justify-content: center;
            align-items: center;
            animation: spin 4s linear infinite;
        }
        
        .tape-reels::before {
            content: '';
            width: 10px;
            height: 10px;
            background-color: var(--dark);
            border-radius: 50%;
        }
        
        .tape-reels.left {
            margin-right: auto;
        }
        
        .tape-reels.right {
            margin-left: auto;
        }
        
        .tape-controls {
            display: flex;
            gap: 20px;
            margin: 0 20px;
        }
        
        .tape-button {
            width: 30px;
            height: 30px;
            border-radius: 50%;
            background-color: var(--light);
            border: 3px solid var(--dark);
            cursor: pointer;
            transition: transform 0.3s;
        }
        
        .tape-button:hover {
            transform: scale(1.1);
        }
        
        .nav-links {
            display: flex;
            gap: 30px;
            margin: 0 20px;
        }
        
        .nav-links a {
            color: var(--light);
            text-decoration: none;
            font-weight: bold;
            font-size: 16px;
            text-transform: uppercase;
            letter-spacing: 1px;
            position: relative;
            padding: 5px 0;
        }
        
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--accent);
            transition: width 0.3s;
        }
        
        .nav-links a:hover::after {
            width: 100%;
        }
        
        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
        
        /* 英雄区域与背景视频 */
        .hero {
            height: 100vh;
            position: relative;
            margin-top: 90px;
            overflow: hidden;
        }
        
        .background-video {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: -1;
            opacity: 0.7;
        }
        
        .hero-content {
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 0 20px;
            text-align: center;
            background: rgba(45, 48, 71, 0.5);
        }
        
        .hero h1 {
            font-size: 5rem;
            color: var(--accent);
            margin-bottom: 20px;
            text-shadow: 4px 4px 0 var(--primary);
        }
        
        .hero p {
            font-size: 1.5rem;
            color: var(--light);
            max-width: 800px;
            margin-bottom: 40px;
        }
        
        .cta-button {
            padding: 15px 30px;
            background-color: var(--primary);
            color: var(--light);
            border: none;
            font-size: 1.2rem;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s;
            text-transform: uppercase;
            letter-spacing: 2px;
            box-shadow: 6px 6px 0 var(--accent);
        }
        
        .cta-button:hover {
            transform: translate(-3px, -3px);
            box-shadow: 9px 9px 0 var(--accent);
        }
        
        /* 杂志式商品排版 */
        .featured-products {
            padding: 80px 20px;
            background-color: var(--light);
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 50px;
            position: relative;
        }
        
        .section-title h2 {
            font-size: 3rem;
            color: var(--dark);
            display: inline-block;
            padding: 0 20px;
            background-color: var(--light);
            position: relative;
            z-index: 1;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent));
            z-index: 0;
        }
        
        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .product-card {
            background-color: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
            transition: transform 0.3s, box-shadow 0.3s;
        }
        
        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.2);
        }
        
        .product-image {
            height: 400px;
            background-color: var(--pattern);
            position: relative;
            overflow: hidden;
        }
        
        .product-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .product-card:hover .product-image img {
            transform: scale(1.05);
        }
        
        .product-tag {
            position: absolute;
            top: 20px;
            right: 20px;
            background-color: var(--primary);
            color: white;
            padding: 5px 10px;
            border-radius: 4px;
            font-size: 0.8rem;
            font-weight: bold;
        }
        
        .product-info {
            padding: 20px;
        }
        
        .product-info h3 {
            font-size: 1.5rem;
            margin-bottom: 10px;
            color: var(--dark);
        }
        
        .product-info p {
            color: #666;
            margin-bottom: 15px;
            line-height: 1.5;
        }
        
        .product-price {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .price {
            font-size: 1.3rem;
            font-weight: bold;
            color: var(--primary);
        }
        
        .add-to-cart {
            background-color: var(--dark);
            color: white;
            border: none;
            padding: 8px 15px;
            border-radius: 4px;
            cursor: pointer;
            transition: background-color 0.3s;
        }
        
        .add-to-cart:hover {
            background-color: var(--secondary);
        }
        
        /* AR试衣间入口 */
        .ar-section {
            padding: 80px 20px;
            background-color: var(--secondary);
            position: relative;
            overflow: hidden;
        }
        
        .ar-content {
            display: flex;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .ar-text {
            flex: 1;
            padding-right: 40px;
            z-index: 1;
        }
        
        .ar-text h2 {
            font-size: 3rem;
            color: var(--dark);
            margin-bottom: 20px;
        }
        
        .ar-text p {
            font-size: 1.2rem;
            color: var(--dark);
            margin-bottom: 30px;
            line-height: 1.6;
        }
        
        .ar-button {
            padding: 15px 30px;
            background-color: var(--primary);
            color: var(--light);
            border: none;
            font-size: 1.2rem;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s;
            text-transform: uppercase;
            letter-spacing: 2px;
            box-shadow: 6px 6px 0 var(--dark);
        }
        
        .ar-button:hover {
            transform: translate(-3px, -3px);
            box-shadow: 9px 9px 0 var(--dark);
        }
        
        .ar-visual {
            flex: 1;
            height: 500px;
            position: relative;
        }
        
        .ar-phone {
            width: 300px;
            height: 500px;
            background-color: var(--light);
            border-radius: 30px;
            border: 10px solid var(--dark);
            position: relative;
            overflow: hidden;
            margin: 0 auto;
            box-shadow: 20px 20px 0 rgba(0,0,0,0.2);
        }
        
        .ar-screen {
            width: 100%;
            height: 100%;
            background-color: var(--pattern);
            display: flex;
            justify-content: center;
            align-items: center;
            color: white;
            font-size: 1.5rem;
            font-weight: bold;
        }
        
        .geometric-shapes {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            z-index: 0;
        }
        
        .shape {
            position: absolute;
            opacity: 0.3;
        }
        
        .shape-1 {
            width: 100px;
            height: 100px;
            background-color: var(--primary);
            top: -30px;
            right: -30px;
            transform: rotate(45deg);
        }
        
        .shape-2 {
            width: 150px;
            height: 150px;
            border-radius: 50%;
            background-color: var(--accent);
            bottom: -50px;
            left: -50px;
        }
        
        .shape-3 {
            width: 80px;
            height: 80px;
            background-color: var(--dark);
            bottom: 100px;
            right: -20px;
            transform: rotate(15deg);
        }
        
        /* 客户穿搭照片墙 */
        .photo-wall {
            padding: 80px 20px;
            background-color: var(--light);
        }
        
        .photos-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            grid-auto-rows: 300px;
            gap: 15px;
        }
        
        .photo-item {
            position: relative;
            overflow: hidden;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s;
        }
        
        .photo-item:hover {
            transform: scale(1.03);
        }
        
        .photo-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .photo-item:hover img {
            transform: scale(1.1);
        }
        
        .photo-caption {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            padding: 15px;
            background: linear-gradient(transparent, rgba(0,0,0,0.7));
            color: white;
            opacity: 0;
            transition: opacity 0.3s;
        }
        
        .photo-item:hover .photo-caption {
            opacity: 1;
        }
        
        .photo-item:nth-child(1) {
            grid-column: span 2;
        }
        
        .photo-item:nth-child(5) {
            grid-column: span 2;
        }
        
        .photo-item:nth-child(8) {
            grid-row: span 2;
        }
        
        /* 文章列表 */
        .articles-section {
            padding: 80px 20px;
            background-color: var(--accent);
        }
        
        .articles-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 30px;
        }
        
        .article-card {
            background-color: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }
        
        .article-image {
            height: 200px;
            background-color: var(--pattern);
            position: relative;
            overflow: hidden;
        }
        
        .article-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .article-content {
            padding: 20px;
        }
        
        .article-date {
            font-size: 0.8rem;
            color: var(--primary);
            margin-bottom: 10px;
        }
        
        .article-content h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: var(--dark);
        }
        
        .article-content p {
            color: #666;
            margin-bottom: 20px;
            line-height: 1.5;
        }
        
        .read-more {
            color: var(--secondary);
            font-weight: bold;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
        }
        
        .read-more::after {
            content: '→';
            margin-left: 5px;
            transition: transform 0.3s;
        }
        
        .read-more:hover::after {
            transform: translateX(5px);
        }
        
        /* 页脚 */
        footer {
            background-color: var(--dark);
            color: var(--light);
            padding: 50px 20px;
            text-align: center;
        }
        
        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            text-align: left;
        }
        
        .footer-column h3 {
            font-size: 1.3rem;
            margin-bottom: 20px;
            color: var(--accent);
        }
        
        .footer-column ul {
            list-style: none;
        }
        
        .footer-column ul li {
            margin-bottom: 10px;
        }
        
        .footer-column ul li a {
            color: var(--light);
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-column ul li a:hover {
            color: var(--secondary);
        }
        
        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }
        
        .social-links a {
            display: inline-flex;
            justify-content: center;
            align-items: center;
            width: 40px;
            height: 40px;
            background-color: rgba(255,255,255,0.1);
            border-radius: 50%;
            color: var(--light);
            transition: all 0.3s;
        }
        
        .social-links a:hover {
            background-color: var(--primary);
            transform: translateY(-3px);
        }
        
        .copyright {
            margin-top: 50px;
            padding-top: 20px;
            border-top: 1px solid rgba(255,255,255,0.1);
            font-size: 0.9rem;
            color: rgba(255,255,255,0.7);
        }
        
        /* 响应式设计 */
        @media (max-width: 1024px) {
            .ar-content {
                flex-direction: column;
            }
            
            .ar-text {
                padding-right: 0;
                margin-bottom: 40px;
                text-align: center;
            }
            
            .photos-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }
        
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 3rem;
            }
            
            .hero p {
                font-size: 1.2rem;
            }
            
            .tape-player {
                flex-direction: column;
                height: auto;
                padding: 15px;
            }
            
            .tape-reels.left, .tape-reels.right {
                margin: 10px 0;
            }
            
            .nav-links {
                flex-direction: column;
                gap: 15px;
                margin: 15px 0;
            }
            
            .photos-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .product-image {
                height: 300px;
            }
        }
        
        @media (max-width: 480px) {
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .section-title h2 {
                font-size: 2rem;
            }
            
            .photos-grid {
                grid-template-columns: 1fr;
            }
            
            .photo-item:nth-child(1),
            .photo-item:nth-child(5) {
                grid-column: span 1;
            }
            
            .articles-grid {
                grid-template-columns: 1fr;
            }
        }