        /* 主容器 */
        .gallery-container {
            display: flex;
            flex-direction: column;
            min-height: 100vh;
            padding-top: 20px;
            position: relative;
        }

        /* 内容区域 */
        .gallery-content {
            flex: 1;
            padding: 30px 50px;
            max-width: 1200px;
            margin: 0 auto;
            width: 100%;
        }

        /* 标题区域样式 */
        .gallery-title-section {
            display: flex;
            align-items: center;
            margin-bottom: 40px;
            padding-bottom: 20px;
            border-bottom: 2px solid #eaeaea;
        }

        .gallery-title-main {
            flex: 1;
            padding-right: 30px;
        }

        .gallery-section-title {
            font-size: 42px;
            color: #84214e;
            font-weight: 800;
            margin: 0;
            text-align: center;
        }

        .gallery-title-divider {
            width: 2px;
            height: 120px;
            background: linear-gradient(to bottom, transparent, #84214e, transparent);
            margin: 0 30px;
        }

        .gallery-title-quote {
            flex: 1;
            padding-left: 30px;
            font-style: italic;
            font-size: 18px;
            color: #5b3340;
            line-height: 1.6;
            position: relative;
        }

        .gallery-quote-author {
            display: block;
            margin-top: 15px;
            font-weight: 600;
            color: #933755;
            text-align: right;
        }

        /* 图片网格布局 */
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 25px;
            margin-top: 20px;
        }

        .gallery-row {
            display: contents;
        }

        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 10px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            background-color: #f8f8f8;
        }

        .gallery-item:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(147, 55, 85, 0.15);
        }

        .gallery-img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.5s ease;
        }

        .gallery-item:hover .gallery-img {
            transform: scale(1.03);
        }

        /* 响应式设计 */
        @media (max-width: 1024px) {
            .gallery-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .gallery-title-section {
                flex-direction: column;
                text-align: center;
            }
            
            .gallery-title-main {
                padding-right: 0;
                margin-bottom: 20px;
            }
            
            .gallery-title-divider {
                width: 80%;
                height: 2px;
                margin: 20px auto;
                background: linear-gradient(to right, transparent, #84214e, transparent);
            }
            
            .gallery-title-quote {
                padding-left: 0;
            }
        }

        @media (max-width: 768px) {
            .gallery-content {
                padding: 20px;
            }
            
            .gallery-section-title {
                font-size: 36px;
            }
            
            .gallery-grid {
                grid-template-columns: 1fr;
            }
            
            .gallery-title-quote {
                font-size: 16px;
            }
        }


/* merchandise css */
        .merchandise-section {
            margin-top: 60px;
            padding-top: 40px;
            border-top: 2px solid #eaeaea;
        }

        .merchandise-title {
            font-size: 42px;
            color: #84214e;
            font-weight: 800;
            margin-bottom: 40px;
            text-align: center;
        }

        /* 简约艺术感商品容器 */
        .merchandise-container {
            display: flex;
            flex-direction: column;
            gap: 60px;
        }

        /* 商品项目组 */
        .merchandise-group {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }

        /* 简约文字描述区域 */
        .merchandise-text-block {
            padding: 25px;
            border-radius: 12px;
            background-color: #f9f9f9;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
            border-left: 4px solid #84214e;
        }

        .merchandise-text {
            font-size: 17px;
            color: #333;
            line-height: 1.7;
            margin-bottom: 15px;
        }

        .merchandise-text:last-child {
            margin-bottom: 0;
        }

        /* 简约图片网格布局 */
        .merchandise-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 25px;
        }

        .merchandise-item {
            position: relative;
            overflow: hidden;
            border-radius: 12px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            background-color: #fff;
        }

        .merchandise-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(132, 33, 78, 0.12);
        }

        .merchandise-img {
            width: 100%;
            height: auto;
            display: block;
            border-radius: 10px;
            transition: transform 0.5s ease;
        }

        .merchandise-item:hover .merchandise-img {
            transform: scale(1.05);
        }

 @media (max-width: 1024px) {
            .gallery-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .gallery-title-section {
                flex-direction: column;
                text-align: center;
            }
            
            .gallery-title-main {
                padding-right: 0;
                margin-bottom: 20px;
            }
            
            .gallery-title-divider {
                width: 80%;
                height: 2px;
                margin: 20px auto;
                background: linear-gradient(to right, transparent, #84214e, transparent);
            }
            
            .gallery-title-quote {
                padding-left: 0;
            }
            
            .merchandise-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .gallery-content {
                padding: 20px;
            }
            
            .gallery-section-title {
                font-size: 36px;
            }
            
            .gallery-grid {
                grid-template-columns: 1fr;
            }
            
            .gallery-title-quote {
                font-size: 16px;
            }
            
            .merchandise-grid {
                grid-template-columns: 1fr;
            }
            
            .merchandise-text-block {
                padding: 20px;
            }
        }

        /* 头部图片容器样式 */
.head-image-container {
    width: 100vh;
    height: 100vh; /* 或者您想要的高度 */
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f8f9fa; /* 备用背景色 */
}

.header-image {
    width: 100%;
    height: 100%;
    object-fit: cover; /* 或者使用 contain 根据需求 */
    object-position: center;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .head-image-container {
        height: 40vh;
    }
}

@media (max-width: 480px) {
    .head-image-container {
        height: 30vh;
    }
}