
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        :root {
            --primary: #2c3e50;
            --secondary: #e74c3c;
            --accent: #3498db;
            --light: #ecf0f1;
            --dark: #1a2530;
            --gray: #95a5a6;
            --text: #34495e;
            --gold: #d4af37;
            --transition: all 0.3s ease;
        }
        
        body {
            background-color: #f8f9fa;
            color: var(--text);
            line-height: 1.6;
            overflow-x: hidden;
            font-family: 'Roboto', sans-serif;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Brand Meaning Section */
        .brand-meaning {
            background: linear-gradient(135deg, var(--dark) 0%, var(--primary) 100%);
            color: white;
            padding: 80px 0;
            position: relative;
            overflow: hidden;
        }
        
        .brand-meaning::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('https://images.unsplash.com/photo-1519751138087-5bf79df62d5b?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1740&q=80') no-repeat center center/cover;
            opacity: 0.05;
        }
        
        .brand-header {
            text-align: center;
            margin-bottom: 50px;
            position: relative;
            z-index: 2;
        }
        
        .brand-header h2 {
            font-family: 'Montserrat', sans-serif;
            font-size: 3.8rem;
            margin-bottom: 20px;
            color: var(--gold);
            text-shadow: 0 2px 4px rgba(0,0,0,0.3);
        }
        
        .brand-header .slogan {
            font-size: 1.8rem;
            max-width: 800px;
            margin: 0 auto;
            font-weight: 300;
            color: var(--light);
        }
        
        .meaning-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }
        
        .meaning-card {
            background: rgba(255, 255, 255, 0.08);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            padding: 30px;
            text-align: center;
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: var(--transition);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
        }
        
        .meaning-card:hover {
            transform: translateY(-10px);
            background: rgba(255, 255, 255, 0.12);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }
        
        .meaning-card h3 {
            font-size: 2.5rem;
            margin-bottom: 15px;
            color: var(--gold);
            font-family: 'Montserrat', sans-serif;
        }
        
        .meaning-card h4 {
            font-size: 1.3rem;
            margin-bottom: 20px;
            color: white;
            font-weight: 500;
        }
        
        .meaning-card p {
            font-size: 1.1rem;
            color: rgba(255, 255, 255, 0.85);
            line-height: 1.8;
        }
        
        .brand-history {
            background: white;
            padding: 50px 0;
            text-align: center;
            position: relative;
            z-index: 2;
        }
        
        .brand-history p {
            max-width: 800px;
            margin: 0 auto 30px;
            font-size: 1.1rem;
            line-height: 1.8;
        }
        
        .brand-history .highlight {
            font-size: 1.2rem;
            font-weight: 500;
            color: var(--primary);
            max-width: 700px;
            margin: 40px auto;
            padding: 20px;
            background: rgba(231, 76, 60, 0.05);
            border-left: 4px solid var(--secondary);
            text-align: left;
        }
        
        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
            color: white;
            padding: 100px 0 80px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .hero::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('https://images.unsplash.com/photo-1567593810070-9aa3012764c5?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1740&q=80') no-repeat center center/cover;
            opacity: 0.15;
        }
        
        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 800px;
            margin: 0 auto;
        }
        
        .hero h2 {
            font-family: 'Montserrat', sans-serif;
            font-size: 3rem;
            margin-bottom: 25px;
            text-shadow: 0 2px 4px rgba(0,0,0,0.3);
        }
        
        .hero p {
            font-size: 1.2rem;
            margin-bottom: 35px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.8;
        }
        
        .btn {
            display: inline-block;
            background: var(--secondary);
            color: white;
            padding: 14px 35px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            transition: var(--transition);
            border: 2px solid var(--secondary);
            font-size: 1.05rem;
            box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
        }
        
        .btn:hover {
            background: transparent;
            transform: translateY(-5px);
            box-shadow: 0 7px 20px rgba(231, 76, 60, 0.4);
        }
        
        /* Section Styling */
        section {
            padding: 80px 0;
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .section-header h2 {
            font-family: 'Montserrat', sans-serif;
            font-size: 2.8rem;
            color: var(--primary);
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }
        
        .section-header h2::after {
            content: "";
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 5px;
            background: var(--secondary);
            border-radius: 3px;
        }
        
        .section-header p {
            font-size: 1.15rem;
            color: var(--gray);
            max-width: 700px;
            margin: 25px auto 0;
            line-height: 1.7;
        }
        
        /* Story Section */
        .story-section {
            background-color: white;
            position: relative;
        }
        
        .timeline {
            position: relative;
            max-width: 1000px;
            margin: 0 auto;
        }
        
        .timeline::after {
            content: '';
            position: absolute;
            width: 4px;
            background-color: var(--accent);
            top: 0;
            bottom: 0;
            left: 50%;
            margin-left: -2px;
        }
        
        .timeline-item {
            padding: 20px 40px;
            position: relative;
            width: 50%;
            margin-bottom: 60px;
        }
        
        .timeline-item:nth-child(odd) {
            left: 0;
        }
        
        .timeline-item:nth-child(even) {
            left: 50%;
        }
        
        .timeline-item::after {
            content: '';
            position: absolute;
            width: 25px;
            height: 25px;
            background-color: white;
            border: 4px solid var(--secondary);
            top: 30px;
            border-radius: 50%;
            z-index: 1;
        }
        
        .timeline-item:nth-child(odd)::after {
            right: -13px;
        }
        
        .timeline-item:nth-child(even)::after {
            left: -13px;
        }
        
        .timeline-content {
            padding: 30px;
            background-color: white;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            position: relative;
            transition: var(--transition);
        }
        
        .timeline-content:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0,0,0,0.12);
        }
        
        .timeline-content h3 {
            font-family: 'Montserrat', sans-serif;
            font-size: 1.8rem;
            margin-bottom: 15px;
            color: var(--primary);
        }
        
        .timeline-content p {
            font-size: 1.1rem;
            line-height: 1.8;
            margin-bottom: 15px;
        }
        
        .timeline-img {
            width: 100%;
            border-radius: 10px;
            margin: 20px 0;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }
        
        /* 环球影城启示部分的图片网格样式 */
        .timeline-img-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 15px;
            margin: 25px 0;
        }
        
        .img-container {
            position: relative;
            overflow: hidden;
            border-radius: 10px;
            cursor: pointer;
            box-shadow: 0 6px 15px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            height: 220px;
        }
        
        .img-container:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.15);
        }
        
        .timeline-img-grid img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }
        
        .img-container:hover img {
            transform: scale(1.05);
        }
        
        .magnify-hint {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: rgba(0,0,0,0.7);
            color: white;
            text-align: center;
            padding: 8px;
            font-size: 0.9rem;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .img-container:hover .magnify-hint {
            opacity: 1;
        }
        
     /* Belief Section */
.belief-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.belief-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr)); /* 修改为每行最多两个 */
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.belief-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: var(--transition);
}

.belief-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

.card-header {
    background: var(--primary);
    color: white;
    padding: 25px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.card-header h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.card-content {
    padding: 30px;
}

.card-content ul {
    list-style-type: none;
    padding: 0;
}

.card-content li {
      padding: 12px 0;
      border-bottom: 1px dashed #eee;
      display: flex;
      align-items: center; /* ✅ 图标和文字垂直居中 */
      gap: 10px; /* 图标和文字间距 */
    }

.card-content li:last-child {
    border-bottom: none;
}

.card-content li i {
    color: var(--secondary);
    margin-right: 12px;
    font-size: 1.3rem;
    min-width: 25px;
    padding-top: 3px;
}
        
  /* Products Section */
 .products-section { background-color: white; } 
/* 图片展示 */
.product-showcase {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}
.product-showcase img {
    max-width: 48%;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    object-fit: cover;
}
.product-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* PC端固定2列 */
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}
.feature-card { text-align: center; padding: 30px; border-radius: 10px; background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%); transition: var(--transition); } .feature-card:hover { transform: translateY(-5px); box-shadow: 0 10px 25px rgba(0,0,0,0.08); } .feature-icon { width: 80px; height: 80px; background: var(--accent); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; font-size: 2rem; color: white; } .feature-card h3 { color: var(--primary); margin-bottom: 15px; } .feature-card p { color: var(--gray); }
        /* Studio Section */
        .studio-section {
            background: linear-gradient(135deg, var(--primary) 0%, #1a2530 100%);
            color: white;
            position: relative;
            overflow: hidden;
        }
        
        .studio-section::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('//ueeshop.ly200cdn.com/u_file/UPBB/UPBB174/2508/18/photo/IMG1697.jpg') no-repeat center center/cover;
            opacity: 0.15; /* 保持背景淡化效果 */
}
        
        .studio-content {
            position: relative;
            z-index: 2;
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
        }
        
        .video-placeholder {
            width: 100%;
            height: 450px;
            background: linear-gradient(135deg, #2c3e50 0%, #4a6491 100%);
            border-radius: 10px;
            margin: 40px 0;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
            box-shadow: 0 15px 35px rgba(0,0,0,0.3);
        }
        
        .video-placeholder::before {
            content: "";
            position: absolute;
            width: 100%;
            height: 100%;
            background: url('https://images.unsplash.com/photo-1608889476518-738c9b1dcb40?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1740&q=80') no-repeat center center/cover;
            opacity: 0.7;
        }
        
        .play-button {
            width: 80px;
            height: 80px;
            background: var(--secondary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 2;
            cursor: pointer;
            transition: var(--transition);
        }
        
        .play-button i {
            color: white;
            font-size: 2rem;
            margin-left: 5px;
        }
        
        .play-button:hover {
            transform: scale(1.1);
            box-shadow: 0 0 30px rgba(231, 76, 60, 0.6);
        }/* Studio Section */
.studio-section {
    background: linear-gradient(135deg, var(--primary) 0%, #1a2530 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

/* 背景淡化 */
.studio-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('//ueeshop.ly200cdn.com/u_file/UPBB/UPBB174/2508/18/photo/IMG1697.jpg') no-repeat center center/cover;
    opacity: 0.15;
}

.studio-content {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

/* Studio Images Grid */
.studio-images {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 电脑端 2 列 */
    gap: 20px;
    margin: 40px 0;
}

.studio-images img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}
        /* Responsive */
       @media (max-width: 992px) {
           .product-features {
        grid-template-columns: 1fr;
    }
           .product-showcase img {
        width: 100%; /* 移动端每张图片独占一行 */
        max-width: 100%;
    }
           .studio-images {
        grid-template-columns: 1fr;
    }
        @media (max-width: 992px) {
            .brand-header h1 {
                font-size: 3.2rem;
            }
            
            .brand-header .slogan {
                font-size: 1.5rem;
            }
            
            .section-header h2 {
                font-size: 2.5rem;
            }
        }
        
        @media (max-width: 768px) {
           .belief-cards {
                grid-template-columns: 1fr; /* 直接一列显示 */
            }
            
           .brand-header h1 {
                font-size: 2.6rem;
            }
            
            .hero h2 {
                font-size: 2.4rem;
            }
            
            .section-header h2 {
                font-size: 2.2rem;
            }
            
            .timeline::after {
                left: 31px;
            }
            
            .timeline-item {
                width: 100%;
                padding-left: 70px;
                padding-right: 25px;
            }
            
            .timeline-item:nth-child(even) {
                left: 0;
            }
            
            .timeline-item::after {
                left: 21px;
            }
            
            .timeline-img-grid {
                grid-template-columns: 1fr;
            }
            
            .img-container {
                height: 300px;
            }
            
            .meaning-card {
                padding: 25px 20px;
            }
        }
        
        @media (max-width: 576px) {
            .brand-header h1 {
                font-size: 2.2rem;
            }
            
            .brand-header .slogan {
                font-size: 1.3rem;
            }
            
            .hero h2 {
                font-size: 2rem;
            }
            
            .section-header h2 {
                font-size: 1.8rem;
            }
            
            .meaning-card h3 {
                font-size: 2rem;
            }
        }
    