
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            /* 修改字体为现代字体组合 */
            font-family: "SF Pro Display", "Helvetica Neue", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
            line-height: 1.7;
            color: #333;
            background-color: #f9f7f4;
            background-image: linear-gradient(135deg, #f5f1eb 0%, #f9f7f4 100%);
        }

        .page-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 40px 30px;
        }

        /* 英雄区域 - 修复居中问题 */
        .hero-section {
            text-align: center;
            margin-bottom: 60px;
            padding: 60px 0;
            width: 100%;
        }

        /* 标题字体统一为Playfair Display，更优雅 */
        .hero-title,
        .history-title,
        .store-title,
        .products-title {
            font-family: "Playfair Display", "Georgia", "Times New Roman", serif;
            font-weight: 700;
            letter-spacing: 0.02em;
        }

        .hero-title {
            font-size: 3.2rem;
            color: #7a4a28;
            margin: 0 auto 25px;
            font-weight: 700;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.1);
            letter-spacing: 1px;
            max-width: 100%;
            line-height: 1.2;
        }

        /* 正文字体优化 */
        .hero-subtitle,
        .history-content,
        .store-intro,
        .product-item p {
            font-family: "SF Pro Text", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
            font-weight: 400;
            letter-spacing: 0.01em;
            line-height: 1.8;
        }

        .hero-subtitle {
            font-size: 1.4rem;
            color: #666;
            margin: 0 auto 50px;
            font-weight: 350;
            text-align: center;
            padding: 0 20px;
            width: 100%;
            box-sizing: border-box;
        }

        /* 创建容器确保内容在屏幕中央 */
        .hero-content-container {
            max-width: 1000px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* 标签字体优化 */
        .pillar-item,
        .store-tag,
        .category-highlight {
            font-family: "SF Pro Display", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
            font-weight: 600;
            letter-spacing: 0.03em;
        }

        .product-pillars {
            display: flex;
            justify-content: center;
            gap: 25px;
            flex-wrap: wrap;
            margin: 40px 0 50px;
            width: 100%;
        }

        .pillar-item {
            background: white;
            padding: 15px 30px;
            border-radius: 30px;
            box-shadow: 0 5px 15px rgba(122, 74, 40, 0.1);
            border: 2px solid #e6d9c8;
            font-weight: 500;
            color: #7a4a28;
            transition: all 0.3s ease;
            font-size: 1.1rem;
            letter-spacing: 0.5px;
            text-align: center;
        }

        .pillar-item:hover {
            transform: translateY(-3px);
            background: linear-gradient(135deg, #7a4a28, #b88c63);
            color: white;
            box-shadow: 0 8px 20px rgba(122, 74, 40, 0.2);
        }

        .hero-images {
            display: flex;
            justify-content: center;
            gap: 35px;
            flex-wrap: wrap;
            margin-top: 40px;
            width: 100%;
        }

        .hero-img {
            width: 300px;
            height: 220px;
            object-fit: cover;
            border-radius: 12px;
            box-shadow: 0 8px 20px rgba(0,0,0,0.15);
            border: 4px solid #e6d9c8;
            transition: all 0.4s ease;
            transform: rotate(-3deg);
        }

        .hero-img:nth-child(2) {
            transform: rotate(3deg);
        }

        .hero-img:hover {
            transform: rotate(0) scale(1.05);
            box-shadow: 0 12px 30px rgba(122, 74, 40, 0.25);
            border-color: #b88c63;
        }

        /* 品牌历史部分 */
        .history-section {
            background: white;
            padding: 60px 50px;
            border-radius: 15px;
            margin: 50px 0;
            text-align: center;
            box-shadow: 0 10px 30px rgba(122, 74, 40, 0.1);
            border: 1px solid #e6d9c8;
            position: relative;
            overflow: hidden;
        }

        .history-section::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(to right, #7a4a28, #b88c63, #e6d9c8);
        }

        .history-title {
            font-size: 2.4rem;
            color: #7a4a28;
            margin-bottom: 30px;
            font-weight: 600;
            letter-spacing: 0.5px;
        }

        .history-content {
            font-size: 1.2rem;
            color: #555;
            line-height: 1.9;
            margin: 0 auto 20px;
            text-align: center;
            max-width: 900px;
        }

        .category-highlight {
            display: inline-flex;
            align-items: center;
            margin: 0 8px;
            font-weight: 600;
            color: #7a4a28;
            padding: 4px 12px;
            background: #f5f1eb;
            border-radius: 6px;
            border: 1px dashed #b88c63;
            font-style: italic;
        }

        /* 门店介绍部分 */
        .store-section {
            display: flex;
            align-items: center;
            gap: 50px;
            margin-bottom: 60px;
            padding: 40px;
            background: white;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(122, 74, 40, 0.1);
            border: 1px solid #e6d9c8;
            transition: transform 0.3s ease;
        }

        .store-section:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(122, 74, 40, 0.15);
        }

        .store-img-wrapper {
            flex: 1;
            min-width: 450px;
            position: relative;
            perspective: 1000px;
        }

        /* 图片相框效果 */
        .store-img {
            width: 100%;
            height: 350px;
            object-fit: cover;
            border-radius: 10px;
            box-shadow: 0 8px 25px rgba(122, 74, 40, 0.15);
            border: 8px solid white;
            position: relative;
            transform-style: preserve-3d;
            transition: all 0.5s ease;
            cursor: pointer;
        }

        /* 相框阴影效果 */
        .store-img::before {
            content: "";
            position: absolute;
            top: -12px;
            left: -12px;
            right: -12px;
            bottom: -12px;
            background: linear-gradient(45deg, transparent 30%, rgba(122, 74, 40, 0.1) 100%);
            border-radius: 15px;
            z-index: -1;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .store-img:hover {
            transform: rotateY(5deg) rotateX(2deg) scale(1.02);
            box-shadow: 0 15px 35px rgba(122, 74, 40, 0.25);
        }

        .store-img:hover::before {
            opacity: 1;
        }

        /* 倾斜摆放效果 */
        .store-img-wrapper::after {
            content: "";
            position: absolute;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, transparent 30%, rgba(184, 140, 99, 0.1) 100%);
            border-radius: 10px;
            top: 15px;
            left: 15px;
            z-index: -1;
            transform: rotate(3deg);
            transition: transform 0.3s ease;
        }

        .store-section:nth-child(even) .store-img-wrapper::after {
            transform: rotate(-3deg);
        }

        .store-section:hover .store-img-wrapper::after {
            transform: rotate(0);
        }

        .store-content {
            flex: 1;
            min-width: 450px;
        }

        /* 标签样式 */
        .store-tag {
            display: inline-block;
            background: linear-gradient(135deg, #7a4a28, #b88c63);
            color: #fff;
            padding: 10px 25px;
            border-radius: 25px;
            font-size: 1.1rem;
            margin-bottom: 20px;
            font-weight: 600;
            letter-spacing: 1px;
            box-shadow: 0 4px 10px rgba(122, 74, 40, 0.3);
            transition: all 0.3s ease;
        }

        .store-tag:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 15px rgba(122, 74, 40, 0.4);
        }

        .store-title {
            font-size: 2.1rem;
            color: #7a4a28;
            margin-bottom: 25px;
            font-weight: 600;
            position: relative;
            padding-bottom: 15px;
        }

        .store-title::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: 0;
            width: 70px;
            height: 3px;
            background: linear-gradient(to right, #7a4a28, #b88c63);
        }

        .store-intro {
            font-size: 1.15rem;
            color: #555;
            line-height: 1.8;
            margin-bottom: 18px;
        }

        /* 产品展示部分 */
        .products-section {
            background: white;
            padding: 60px 50px;
            border-radius: 15px;
            margin: 50px 0;
            box-shadow: 0 10px 30px rgba(122, 74, 40, 0.1);
        }

        .products-title {
            text-align: center;
            font-size: 2.3rem;
            color: #7a4a28;
            margin-bottom: 50px;
            font-weight: 600;
            position: relative;
        }

        .products-title::after {
            content: "";
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 120px;
            height: 3px;
            background: linear-gradient(to right, #7a4a28, #b88c63);
        }

        .products-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 35px;
        }

        .product-item {
            background: #f9f7f4;
            padding: 30px;
            border-radius: 12px;
            border-left: 5px solid #b88c63;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .product-item::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(122, 74, 40, 0.05), transparent);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .product-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 30px rgba(122, 74, 40, 0.15);
        }

        .product-item:hover::before {
            opacity: 1;
        }

        .product-item h3 {
            font-family: "Playfair Display", "Georgia", serif;
            color: #7a4a28;
            margin-bottom: 15px;
            font-size: 1.5rem;
            font-weight: 600;
            letter-spacing: 0.02em;
        }

        .product-item p {
            color: #666;
            line-height: 1.7;
            font-size: 1.05rem;
        }

        /* 页脚字体 */
        .page-footer {
            font-family: "SF Pro Text", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
            text-align: center;
            padding: 50px 0 25px;
            color: #7a4a28;
            font-size: 1.1rem;
            border-top: 2px solid #e6d9c8;
            letter-spacing: 1px;
            opacity: 0.8;
            font-style: italic;
            font-weight: 400;
        }

        /* 响应式设计 */
        @media (max-width: 1000px) {
            .store-section {
                flex-direction: column;
                gap: 30px;
                padding: 30px;
            }
            
            .store-img-wrapper, .store-content {
                min-width: 100%;
            }
            
            .products-grid {
                grid-template-columns: 1fr;
            }
            
            .hero-content-container {
                padding: 0 15px;
            }
        }

        @media (max-width: 768px) {
            .page-container {
                padding: 20px 15px;
            }
            
            .hero-title {
                font-size: 2.4rem;
                line-height: 1.3;
            }
            
            .hero-subtitle {
                font-size: 1.15rem;
                padding: 0 10px;
                line-height: 1.7;
            }
            
            .store-section {
                padding: 25px 20px;
            }
            
            .store-img {
                height: 250px;
            }
            
            .store-title {
                font-size: 1.9rem;
            }
            
            .history-section, .products-section {
                padding: 40px 25px;
            }
            
            .history-content,
            .store-intro {
                font-size: 1.05rem;
                line-height: 1.7;
            }
            
            .product-pillars {
                gap: 15px;
            }
            
            .pillar-item {
                padding: 12px 20px;
                font-size: 1rem;
            }
            
            .store-tag {
                font-size: 1rem;
            }
            
            .product-item h3 {
                font-size: 1.3rem;
            }
            
            .product-item p {
                font-size: 1rem;
            }
        }
    