
         /* 轮播图样式 */
        .hero-carousel {
            position: relative;
            height: 80vh;
            overflow: hidden;
            margin-bottom: 6rem;
        }

        .carousel-slides {
            display: flex;
            width: 300%;
            height: 100%;
            transition: transform 0.8s ease-in-out;
        }

        .carousel-slide {
            width: 100%;
            height: 100%;
            position: relative;
        }

        .slide-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .slide-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
           /* background-color: rgba(0,0,0,0.2);*/
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
        }

        .slide-content {
            color: var(--white);
            max-width: 800px;
            padding: 2rem;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 1s ease forwards;
            animation-delay: 0.5s;
        }

        /* 文字显示动画 */
        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .slide-subtitle {
            font-family: 'Playfair Display', serif;
            font-size: 1.5rem;
            margin-bottom: 1rem;
            letter-spacing: 2px;
            color: var(--wine-red-light);
        }

        .slide-title {
            font-size: 3.5rem;
            line-height: 1.2;
            margin-bottom: 1.5rem;
            font-weight: 700;
        }

        .slide-divider {
            width: 80px;
            height: 2px;
            background-color: var(--wine-red);
            margin: 0 auto 2rem;
        }

        /* 轮播控制按钮 */
        .carousel-control {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background-color: rgba(255,255,255,0.3);
            color: var(--white);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: background-color 0.3s ease;
            z-index: 10;
        }

        .carousel-control:hover {
            background-color: var(--wine-red);
        }

        .control-prev {
            left: 2rem;
        }

        .control-next {
            right: 2rem;
        }

        /* 轮播指示器 */
        .carousel-indicators {
            position: absolute;
            bottom: 2rem;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 1rem;
            z-index: 10;
        }

        .indicator-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: rgba(255,255,255,0.5);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .indicator-dot.active {
            background-color: var(--wine-red);
            width: 30px;
            border-radius: 6px;
        }

        /* 新品区：多图片展示+酒红色点缀 */
        .new-products {
            padding: 4rem 0;
            margin-bottom: 6rem;
        }

        .section-title {
            text-align: center;
            font-size: 2.2rem;
            margin-bottom: 3rem;
            position: relative;
            display: inline-block;
            left: 50%;
            transform: translateX(-50%);
        }

        /* 酒红色下划线强化标题 */
        .section-title::after {
            content: '';
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            bottom: -8px;
            width: 80px;
            height: 3px;
            background-color: var(--wine-red);
        }

        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 2rem;
        }

        .product-card {
            border-radius: 8px;
            overflow: hidden;
            background-color: var(--white);
            box-shadow: 0 2px 8px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
            border: 1px solid transparent;
        }

        /* 产品卡片hover倾斜特效 */
        .product-card:hover {
            transform: translateY(-5px) rotate(1deg); /* 上移+轻微倾斜 */
            box-shadow: 0 8px 24px rgba(0,0,0,0.1);
            border-color: var(--wine-red-light);
        }

        .product-img-wrapper {
            height: 320px;
            overflow: hidden;
            position: relative;
        }

        /* 酒红色图片蒙版：强化主色调 */
        .product-img-wrapper::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(200, 208, 219, 0.1);
            z-index: 1;
            transition: opacity 0.3s ease;
        }

        .product-card:hover .product-img-wrapper::after {
            opacity: 0.12;
        }

        .product-img {
            width: 100%;
            height: 100%;
           
            transition: transform 0.3s ease;
        }

        .product-card:hover .product-img {
            transform: scale(1.05);
        }

        .product-info {
            padding: 1.5rem;
            text-align: center;
        }

        .product-name {
            font-size: 1.1rem;
            margin-bottom: 0.8rem;
            font-weight: 500;
        }

        .product-name:hover {
            color: var(--wine-red);
        }

        .view-all-btn {
            display: block;
            width: fit-content;
            margin: 3rem auto 10rem;
            padding: 1rem 2rem;
            background-color: var(--wine-red);
            color: var(--white);
            border-radius: 4px;
            font-weight: 600;
            transition: background-color 0.3s ease;
        }

        .view-all-btn:hover {
            background-color: var(--wine-red-deep);
        }

         .card-wrapper {
            display: flex;
            gap: 0; /* 卡片间无间距，贴合设计 */
            flex-wrap: wrap; /* 移动端换行 */
        }

        /* 单个卡片样式 */
        .fashion-card {
            flex: 1; /* 平分宽度 */
            min-width: 320px; /* 移动端最小宽度，保证适配 */
            height: 350px; /* 卡片高度，可根据实际图片调整 */
            position: relative; /* 用于文字绝对定位 */
            padding: 30px;
            background-size: cover;
            background-position: center;
        }

        /* 卡片文字样式 */
        .card-text {
            font-size: 28px;
            line-height: 1.4;
            font-weight: 500;
            margin-bottom: 40px;
        }

        /* READ MORE按钮样式 */
        .read-more {
            display: inline-block;
            border: 1px solid #000;
            padding: 8px 20px;
            text-decoration: none;
            color: #000;
            font-size: 16px;
            position: absolute;
            bottom: 30px;
            left: 30px;
        }




        /* 关于品牌区：图文布局+酒红色点缀 */
        .about-section {
            padding: 4rem 0;
            background-color: var(--gray-light);
            margin-bottom: 6rem;
        }

        .about-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
        }

        .indexabout-content {
            padding: 2rem 0;
        }

        .about-subtitle {
            color: var(--wine-red);
            font-size: 1.2rem;
            margin-bottom: 1rem;
            letter-spacing: 1px;
        }

        .indexabout-title {
            font-size: 2rem;
            margin-bottom: 1.5rem;
            line-height: 1.4;
        }

        .about-text {
            color: #555;
            font-size: 1rem;
            line-height: 1.8;
            margin-bottom: 1rem;
        }

        .learn-more-btn {
            display: inline-block;
            padding: 1rem 2rem;
            background-color: var(--wine-red);
            color: var(--white);
            border-radius: 4px;
            font-weight: 600;
            transition: background-color 0.3s ease;
        }

        .learn-more-btn:hover {
            background-color: var(--wine-red-deep);
        }

        .about-img-wrapper {
            border-radius: 8px;
            overflow: hidden;
            height: 500px;
            position: relative;
        }

        .about-img-wrapper::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(139, 0, 0, 0.1);
            z-index: 1;
        }

        .about-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

              /* About Us 核心区域 */
        .about-us {
            padding: 4rem 0;
        }

        .about-title {
            text-align: center;
            margin-bottom: 5rem;
        }

        .about-title h1 {
            font-family: var(--font-elegant);
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
        }

        .about-title p {
            font-family: var(--font-modern);
            font-size: 1.1rem;
            color: var(--gray-dark);
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        /* 三列内容布局 */
        .about-content {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2.5rem;
            margin-bottom: 4rem;
        }

        .about-card {
            text-align: left;
        }

        .card-number {
            font-family: var(--font-elegant);
            font-size: 1.2rem;
            color: var(--burgundy); /* 酒红色突出编号 */
            margin-bottom: 0.8rem;
            display: block;
        }

        .card-title {
            font-family: var(--font-elegant);
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 1.2rem;
            text-transform: capitalize;
        }

        .card-text {
            font-family: var(--font-modern);
            font-size: 0.95rem;
            color: var(--gray-dark);
            margin-bottom: 1.8rem;
            line-height: 1.7;
        }

        .card-img {
            width: 100%;
            height: 220px;
            object-fit: cover;
            margin-bottom: 1.5rem;
            box-shadow: 0 2px 8px rgba(0,0,0,0.05);
        }

        /* 通用文本块 */
        .general-text {
            max-width: 80%;
            margin: 0 auto 2rem;
            text-align: center;
            font-family: var(--font-modern);
            font-size: 0.95rem;
            color: var(--gray-dark);
            line-height: 1.7;
        }

        /* 表单区域 */
        .form-section {
            background-color: var(--gray-light);
            padding: 5rem 0;
            margin: 3rem 0;
        }

        .form-title {
            text-align: center;
            margin-bottom: 1rem;
        }

        .form-title h2 {
            font-family: var(--font-elegant);
            font-size: 2rem;
            font-weight: 600;
            margin-bottom: 0.8rem;
        }

        .form-title p {
            font-family: var(--font-modern);
            font-size: 0.9rem;
            color: var(--gray-dark);
            margin-bottom: 2.5rem;
        }

        .contact-form {
            max-width: 600px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.2rem;
        }

        .form-group {
            margin-bottom: 0;
        }

        .form-group.full-width {
            grid-column: 1 / -1;
        }

        .form-label {
            display: block;
            font-family: var(--font-modern);
            font-size: 0.85rem;
            color: var(--gray-dark);
            margin-bottom: 0.5rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .form-input, .form-textarea {
            width: 100%;
            padding: 0.9rem 1rem;
            border: 1px solid #ddd;
            border-radius: 2px;
            font-family: var(--font-modern);
            font-size: 0.9rem;
            transition: border-color 0.3s ease;
        }

        .form-input:focus, .form-textarea:focus {
            outline: none;
            border-color: var(--burgundy); /* 酒红色聚焦边框，突出品牌色 */
        }

        .form-textarea {
            height: 120px;
            resize: vertical;
        }

        .form-btn {
            grid-column: 1 / -1;
            background-color: var(--burgundy); /* 酒红色按钮，突出显示 */
            color: var(--white);
            border: none;
            padding: 1rem;
            font-family: var(--font-modern);
            font-size: 0.95rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }

        .form-btn:hover {
            background-color: var(--burgundy-light);
        }

        /* 最新新闻区：多图片卡片+酒红色点缀 */
        .latest-news {
            padding: 4rem 0;
            margin-bottom: 6rem;
        }

        .news-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 2.5rem;
        }

        .indexnews-card {
            border-radius: 8px;
            overflow: hidden;
            background-color: var(--white);
            box-shadow: 0 2px 8px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
        }

        .indexnews-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 24px rgba(0,0,0,0.1);
        }

        .indexnews-img-wrapper {
            height: 220px;
            overflow: hidden;
            position: relative;
        }

        .indexnews-img-wrapper::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(139, 0, 0, 0.08);
            z-index: 1;
        }

        .indexnews-card:hover .indexnews-img-wrapper::after {
            opacity: 0.12;
        }

        .indexnews-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .indexnews-card:hover .indexnews-img {
            transform: scale(1.05);
        }

        .indexnews-content {
            padding: 1.8rem;
        }

        .indexnews-date {
            font-size: 0.9rem;
            color: var(--gray-text);
            margin-bottom: 1rem;
        }

        .indexnews-title {
            font-size: 1.3rem;
            margin-bottom: 1.2rem;
            line-height: 1.4;
        }

        .indexnews-title:hover {
            color: var(--wine-red);
        }
        .indexnews-read-more-btn {
         display: inline-block;
          padding: 0.8rem 1.5rem;
          background-color: var(--wine-red);
          color: var(--white);
          border-radius: 4px;
          font-weight: 500;
          font-size: 0.9rem;
          transition: background-color 0.3s ease;
          }

         /* 右侧悬浮客服样式 */
        .floating-contact {
            position: fixed;
            right: 2rem;
            top: 50%;
            transform: translateY(-50%);
            z-index: 998;
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .contact-item {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background-color: var(--wine-red);
            color: var(--white);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 8px rgba(0,0,0,0.2);
        }

        .contact-item:hover {
            background-color: var(--wine-red-deep);
            transform: scale(1.1);
        }

        .contact-item i {
            font-size: 1.2rem;
        }


        /* 面包屑导航 */
        .breadcrumb {
            padding: 1.5rem 0;
            font-size: 0.9rem;
            color: var(--gray-text);
        }

        .breadcrumb a {
            color: var(--gray-text);
        }

        .breadcrumb a:hover {
            color: var(--wine-red);
        }

        .breadcrumb span {
            margin: 0 0.5rem;
        }

      /* 主内容区布局 */
        .main-content {
            display: grid;
            grid-template-columns: 280px 1fr;
            gap: 3rem;
            padding: 1rem 0 4rem;
        }

        /* 左侧分类栏 */
        .sidebar {
            background-color: var(--gray-light);
            border-radius: 8px;
            overflow: hidden;
            height: fit-content;
            position: sticky;
            top: 100px;
        }

        .sidebar-title {
            background-color: var(--wine-red);
            color: var(--white);
            padding: 1.2rem 1.5rem;
            font-size: 1.2rem;
            font-weight: 600;
        }

        .sidebar-menu {
            list-style: none;
        }

        .sidebar-link {
            display: block;
            padding: 1rem 1.5rem;
            transition: all 0.3s ease;
            border-left: 3px solid transparent;
            /* 移动端触控区域优化 */
            padding: calc(1rem + var(--touch-padding)) 1.5rem;
        }

        .sidebar-link:hover, .sidebar-link.active {
            background-color: rgba(139, 0, 0, 0.05);
            color: var(--wine-red);
            border-left-color: var(--wine-red);
        }

        /* 右侧新闻列表区 */
        .news-section {
            display: flex;
            flex-direction: column;
            gap: 2.5rem;
        }

        .news-section-title {
            font-size: 1.8rem;
            margin-bottom: 1rem;
            position: relative;
            display: inline-block;
            /* 移动端标题字号适配 */
            font-size: clamp(1.5rem, 5vw, 1.8rem);
        }

        /* 酒红色下划线强化标题 */
        .news-section-title::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -8px;
            width: 60px;
            height: 3px;
            background-color: var(--wine-red);
        }

        /* 新闻卡片：多图片展示+酒红色点缀 */
        .news-card {
            display: grid;
            grid-template-columns: 400px 1fr;
            gap: 2rem;
            padding: 1.5rem;
            border-radius: 8px;
            transition: all 0.3s ease;
            border: 1px solid transparent;
        }

        .news-card:hover {
            border-color: var(--wine-red-light);
            box-shadow: 0 4px 12px rgba(0,0,0,0.05);
            transform: translateY(-3px);
        }

        .news-img-wrapper {
            border-radius: 8px;
            overflow: hidden;
            position: relative;
            height: 250px;
        }

        /* 酒红色图片蒙版：强化主色调 */
        .news-img-wrapper::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(139, 0, 0, 0.1);
            z-index: 1;
            transition: opacity 0.3s ease;
        }

        .news-card:hover .news-img-wrapper::after {
            opacity: 0.15;
        }

        .news-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .news-card:hover .news-img {
            transform: scale(1.05);
        }

        .news-content {
            display: flex;
            flex-direction: column;
            justify-content: center;
            gap: 1rem;
        }

        .news-title {
            font-size: 1.4rem;
            line-height: 1.4;
            color: var(--black);
            /* 移动端标题字号适配 */
            font-size: clamp(1.2rem, 4vw, 1.4rem);
        }

        .news-title:hover {
            color: var(--wine-red);
        }

        .news-date {
            font-size: 0.9rem;
            color: var(--gray-text);
            /* 移动端日期字号优化 */
            font-size: clamp(0.8rem, 3vw, 0.9rem);
        }

        .news-excerpt {
            color: #555;
            font-size: 1rem;
            line-height: 1.7;
            /* 移动端摘要字号和行高优化 */
            font-size: clamp(0.9rem, 3vw, 1rem);
            line-height: 1.6;
        }

        .read-more-btn {
            display: inline-block;
            width: fit-content;
            padding: 0.6rem 1.5rem;
            background-color: var(--wine-red);
            color: var(--white);
            border-radius: 4px;
            font-weight: 500;
            margin-top: 0.5rem;
            /* 移动端按钮触控优化 */
            -webkit-appearance: none;
            appearance: none;
            padding: clamp(0.5rem, 3vw, 0.6rem) clamp(1rem, 5vw, 1.5rem);
        }

        .read-more-btn:hover {
            background-color: var(--wine-red-deep);
        }
         /* 右侧文章内容区 */
        .article-section {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }

        .article-header {
            border-bottom: 1px solid var(--gray-border);
            padding-bottom: 1.5rem;
        }

        .article-title {
            font-size: 2.2rem;
            line-height: 1.4;
            margin-bottom: 1.5rem;
            position: relative;
            display: inline-block;
        }

        /* 酒红色下划线强化标题 */
        .article-title::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -8px;
            width: 80px;
            height: 3px;
            background-color: var(--wine-red);
        }

        .article-meta {
            display: flex;
            gap: 2rem;
            color: #777;
            font-size: 0.9rem;
        }

        /* 文章配图区：丰富视觉 */
        .article-gallery {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 1.5rem;
            margin: 1.5rem 0;
            border-radius: 8px;
            overflow: hidden;
        }

        .main-article-img {
            width: 100%;
            height: 400px;
            object-fit: cover;
        }

        .side-article-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .side-article-img:hover {
            transform: scale(1.05);
        }

        /* 酒红色图片蒙版：强化主色调 */
        .img-wrapper {
            position: relative;
            overflow: hidden;
        }

        .img-wrapper::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(139, 0, 0, 0.1);
            z-index: 1;
        }

        .article-content {
            font-size: 1.05rem;
            color: #333;
            line-height: 1.8;
        }

        .article-content p {
            margin-bottom: 1.5rem;
        }
         /* 社交分享区 */
        .social-share {
            display: flex;
            gap: 1.2rem;
            margin: 2rem 0;
            padding: 1.5rem 0;
            border-top: 1px solid var(--gray-border);
            border-bottom: 1px solid var(--gray-border);
        }

        .social-icon {
            width: var(--touch-size);
            height: var(--touch-size);
            border-radius: 50%;
            background-color: var(--gray-light);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--black);
            text-decoration: none;
            transition: all 0.3s ease;
            /* 移动端触控优化 */
            flex-shrink: 0;
        }

        .social-icon:hover {
            background-color: var(--wine-red);
            color: var(--white);
            transform: translateY(-3px);
        }

        /* 行动按钮 */
        .action-btn {
            display: inline-block;
            padding: 1rem 2rem;
            background-color: var(--wine-red);
            color: var(--white);
            text-decoration: none;
            border-radius: 4px;
            font-weight: 600;
            transition: background-color 0.3s ease;
            margin: 1rem 0;
            /* 移动端触控优化 */
            min-height: calc(var(--touch-size) * 1.2);
            min-width: 100%;
            text-align: center;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .action-btn:hover {
            background-color: var(--wine-red-deep);
        }
         .pro_container {
            max-width: 1560px;
            margin: 0 auto;
            padding: 0 20px;
            display: grid;
            grid-template-columns: 200px 1fr;
            gap: 40px;
            padding-top: 30px;
        }
        /* 分类栏样式 - 桌面端 */
        .categories {
            border-right: 1px solid #eee;
            padding-right: 20px;
        }
        .categories h2 {
            font-size: 18px;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 20px;
            color: #222;
        }
        /* 桌面端分类列表 */
        .category-list {
            list-style: none;
        }
        .category-list li {
            margin-bottom: 12px;
            font-size: 15px;
            color: #555;
            display: flex;
            align-items: center;
            cursor: pointer;
            transition: color 0.3s;
        }
        .category-list li:hover {
            color: #8B0000; /* 酒红色 */
        }
        .category-list li::after {
            content: "+";
            margin-left: 8px;
            font-size: 12px;
        }
        /* 移动端下拉框 - 默认隐藏 */
        .category-select {
            display: none;
            width: 100%;
            padding: 10px;
            border: 1px solid #eee;
            border-radius: 2px;
            font-size: 15px;
            color: #555;
            background-color: #fff;
            font-family: 'Garamond', 'Georgia', serif;
            cursor: pointer;
        }
        .category-select:focus {
            outline: none;
            border-color: #8B0000; /* 酒红色边框高亮 */
        }

        /* 产品区样式 */
        .products h2 {
            font-size: 18px;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 20px;
            color: #222;
        }
        .product-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            margin-bottom: 60px;
        }
        .product-item {
            text-align: center;
            margin-bottom: 50px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
              transition: all 0.3s ease;
          }
          .product-item:hover{
              box-shadow: 0 2px 8px rgba(199,62, 29, 0.3);
             
          }
        .product-item img {
            width: 100%;
            height: 280px;
            object-fit: cover;
            background: #f5f5f5;
            margin-bottom: 12px;
            border-radius: 2px;
        }
        .product-item p {
            font-size: 14px;
            color: #333;
            line-height: 2.5;
        }
        .product-item p:hover {
            color: #8B0000;
        }

        /* 分页样式 */
        .pagination {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }
        .pagination button {
            background: transparent;
            border: none;
            font-size: 16px;
            cursor: pointer;
            color: #555;
        }
        .pagination .active {
            color: #8B0000;
            font-weight: bold;
        }
         /* 产品展示核心区域 */
        .product-section {
            display: flex;
            gap: 40px;
            padding: 30px 0;
        }

        /* 左侧小图列表 */
        .product-thumbs {
            display: flex;
            flex-direction: column;
            gap: 10px;
            width: 80px;
        }

        .thumb-item {
            width: 100%;
            height: auto;
            cursor: pointer;
            border: 2px solid #F5F5F5;
            transition: border-color 0.3s ease;
        }

        .thumb-item:hover, .thumb-item.active {
            border-color: #8B0000; /* 酒红色选中态 */
        }

        /* 右侧大图+产品信息 */
        .product-main {
            flex: 1;
            display: flex;
            gap: 40px;
        }

        /* 大图容器：hover显示超大原图 */
        .main-img-wrapper {
            position: relative;
            width: 50%;
            height: 500px;
            border: 1px solid #f0f0f0;
            overflow: hidden;
        }

        .main-img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            cursor: pointer;
        }

        /* 超大原图弹窗：默认隐藏，hover大图时显示 */
        .zoom-img-container {
            position: absolute;
            top: 0;
            left: 105%;
            width: 800px;
            height: auto;
            background: #fff;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            z-index: 999;
            display: none;
            pointer-events: none; /* 避免遮挡操作 */
        }

        .zoom-img {
            width: 100%;
            height: auto;
        }

        .main-img-wrapper:hover .zoom-img-container {
            display: block;
        }

        /* 产品信息区域 */
        .product-info {
          
            padding: 10px 0;
        }

        .product-title {
            font-size: 1.8rem;
            margin-bottom: 20px;
        }

        .product-desc {
            text-indent:2em;
            font-size: 1rem;
            color: #555;
            margin-bottom: 20px;
            line-height: 1.6;
            text-align: left;
        }

        .quote-btn {
            background: #000;
            color: #fff;
            border: none;
            padding: 12px 30px;
            font-size: 14px;
            text-transform: uppercase;
            cursor: pointer;
            transition: background 0.3s ease;
            margin-bottom: 20px;
        }

        .quote-btn:hover {
            background: #8B0000; /* 酒红色hover */
        }

        .social-share {
            display: flex;
            gap: 15px;
        }

        .social-share a {
            color: #666;
            font-size: 16px;
            transition: color 0.3s ease;
        }

        .social-share a:hover {
            color: #8B0000;
        }

        /* 规格区域 */
        .spec-section {
            padding: 30px 0;
            border-top: 1px solid #f0f0f0;
            border-bottom: 1px solid #f0f0f0;
        }

        .spec-title {
            font-size: 1.8rem;
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 1px;
            position: relative;
            padding-bottom: 10px;
        }

        .spec-title::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 60px;
            height: 2px;
            background: #8B0000;
        }

        .spec-content {
            font-size: 14px;
            color: #666;
            line-height: 1.8;
            margin-bottom: 30px;
        }

        /* 产 grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));品多图展示 */
        .product-gallery {
            display: grid;
            gap: 20px;
            padding: 30px 0;
        }

        .gallery-img {
            width: 90%;
            height: auto;
            border: 1px solid #f0f0f0;
            transition: box-shadow 0.3s ease;
        }

        .gallery-img:hover {
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
        }

         /* 页面头部样式 */
        .page-header {
            padding: 4rem 0 2rem;
            border-bottom: 1px solid var(--gray-border);
            margin-bottom: 3rem;
        }

        .page-header h1 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            position: relative;
            display: inline-block;
        }

        /* 酒红色下划线：强化标题视觉 */
        .page-header h1::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -8px;
            width: 80px;
            height: 3px;
            background-color: var(--wine-red);
        }

        .page-header p {
            max-width: 900px;
            color: #555;
            font-size: 1rem;
            line-height: 1.8;
        }

        /* 联系信息区：多图片+酒红色点缀 */
        .contact-info-section {
            margin-bottom: 4rem;
        }

        .contact-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-bottom: 3rem;
        }

        .contact-card {
            background-color: var(--gray-light);
            padding: 2rem;
            border-radius: 8px;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            border: 2px solid transparent;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        /* 卡片背景图片：丰富视觉，半透明不抢主体 */
        .contact-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('https://picsum.photos/id/1011/800/600');
            background-size: cover;
            background-position: center;
            opacity: 0.08;
            z-index: 0;
        }

        .contact-card:nth-child(2)::before {
            background-image: url('https://picsum.photos/id/1012/800/600');
        }

        .contact-card:nth-child(3)::before {
            background-image: url('https://picsum.photos/id/1013/800/600');
        }

        .contact-card:hover {
            border-color: var(--wine-red);
            transform: translateY(-5px);
            box-shadow: 0 8px 24px rgba(0,0,0,0.08);
        }

        .contact-card .icon {
            font-size: 2.5rem;
            color: var(--wine-red);
            margin-bottom: 1.5rem;
            z-index: 1;
        }

        .contact-card h3 {
            font-size: 1.4rem;
            margin-bottom: 1rem;
            z-index: 1;
        }

        .contact-card p {
            font-size: 1rem;
            font-weight: 500;
            z-index: 1;
        }

        /* 地图+品牌图片组合区：丰富视觉层次 */
        .map-gallery-section {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 2rem;
            margin-bottom: 4rem;
        }

        .map-container {
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 4px 12px rgba(0,0,0,0.05);
        }

        .map-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .gallery-side {
            display: grid;
            grid-template-rows: repeat(2, 1fr);
            gap: 1rem;
        }

        .gallery-item {
            border-radius: 8px;
            overflow: hidden;
            position: relative;
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .gallery-item:hover img {
            transform: scale(1.05);
        }

        /* 酒红色图片蒙版：强化主色调 */
        .gallery-item::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
           
            z-index: 1;
        }
       
    .categories-section {
            margin-bottom: 4rem;
        }

        .categories-section h2 {
            font-size: 2rem;
            margin-bottom: 2rem;
            position: relative;
            display: inline-block;
        }

        .categories-section h2::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -8px;
            width: 60px;
            height: 3px;
            background-color: var(--wine-red);
        }

        .categories-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1.5rem;
        }

        .category-card {
            background-color: var(--white);
            border: 1px solid var(--gray-border);
            border-radius: 8px;
            padding: 1.5rem;
            text-align: center;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .category-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 60px;
            background-image: url('https://picsum.photos/id/1018/400/200');
            background-size: cover;
            background-position: center;
            opacity: 0.1;
            z-index: 0;
        }

        .category-card:hover {
            border-color: var(--wine-red);
            transform: translateY(-3px);
        }

        .category-card p {
            font-size: 0.95rem;
            font-weight: 500;
            z-index: 1;
            position: relative;
            color: var(--black);
        }
          /* 移动端适配 - 关键修改部分 */
        @media (max-width: 1200px) {
             .pro_container {
                grid-template-columns: 1fr;
            }
            .categories {
                border-right: none;
                padding-right: 0;
                margin-bottom: 30px;
            }
            /* 隐藏桌面端列表，显示移动端下拉框 */
            .category-list {
                display: none;
            }
            .category-select {
                display: block;
            }
            .product-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
      @media (max-width: 768px) {
                /* 轮播图适配 */
            .hero-carousel {
                height: 60vh;
                margin-bottom: 4rem;
            }

            .slide-title {
                font-size: 2.2rem;
            }

            .slide-subtitle {
                font-size: 1.2rem;
            }

            .carousel-control {
                width: 40px;
                height: 40px;
            }

            .control-prev {
                left: 1rem;
            }

            .control-next {
                right: 1rem;
            }

             .about-content {
                grid-template-columns: 1fr;
            }
            .contact-form {
                grid-template-columns: 1fr;
            }
            .footer-content {
                grid-template-columns: 1fr;
            }
            .general-text {
                max-width: 100%;
            }
            .about-title h1 {
                font-size: 2rem;
            }
            .form-title h2 {
                font-size: 1.8rem;
            }
            nav {
                padding: 1.5rem 0;
            }
            .nav-link {
                margin-right: 1.5rem;
                font-size: 0.9rem;
            }
           .card-text {
                font-size: 22px;
            }
            .fashion-card {
                height: 290px;
            }
            /* 悬浮客服适配 */
            .floating-contact {
                right: 1rem;
                gap: 0.8rem;
            }

            .contact-item {
                width: 45px;
                height: 45px;
            }

            /* 新品区适配 */
            .new-products {
                padding: 2rem 0;
                margin-bottom: 4rem;
            }

            .section-title {
                font-size: 1.8rem;
            }

            .products-grid {
                grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
                gap: 1.5rem;
            }

            .product-img-wrapper {
                height: 250px;
            }

            /* 关于区适配 */
            .about-section {
                padding: 2rem 0;
                margin-bottom: 4rem;
            }

            .about-container {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .about-img-wrapper {
                height: 300px;
            }
            /* 主内容区堆叠 - 优化间距 */
            .main-content {
                grid-template-columns: 1fr;
                padding: 1rem 0 2rem;
                gap: 2rem;
            }

            .sidebar {
                position: static;
                margin-bottom: 1rem;
                /* 移动端侧边栏圆角优化 */
                border-radius: 8px;
            }

            /* 新闻卡片堆叠 - 优化内边距和间距 */
            .news-card {
                grid-template-columns: 1fr;
                gap: 1.5rem;
                padding: 1rem;
                /* 移动端卡片阴影优化 */
                box-shadow: 0 2px 8px rgba(0,0,0,0.03);
            }

            .news-img-wrapper {
                height: clamp(180px, 40vw, 250px);
                /* 移动端图片容器圆角优化 */
                border-radius: 6px;
            }

            /* 新闻区适配 */
            .latest-news {
                padding: 2rem 0;
                margin-bottom: 4rem;
            }

            .news-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            /* 新闻卡片堆叠 */
            .news-card {
                grid-template-columns: 1fr;
                gap: 1.5rem;
                padding: 1rem;
            }

            /* 文章配图区堆叠 + 优化高度 */
            .article-gallery {
                grid-template-columns: 1fr;
            }

            .main-article-img {
                height: 220px; /* 适配移动端屏幕高度 */
            }

            .article-title {
                font-size: 1.6rem; /* 缩小标题适配移动端 */
                line-height: 1.5;
            }

            /* 标题下划线适配 */
            .article-title::after {
                width: 60px;
                height: 2px;
                bottom: -6px;
            }

            /* 文章元信息优化 */
            .article-meta {
                flex-direction: column;
                gap: 0.8rem;
                font-size: 0.85rem;
            }

            /* 正文字体优化 */
            .article-content {
                font-size: 1rem;
                line-height: 1.8;
                padding: 0 0.2rem;
            }
              .social-share {
                flex-wrap: wrap;
                gap: 1rem;
                justify-content: flex-start;
            }
              .product-grid {
                grid-template-columns: 1fr;
            }
              .product-section {
                flex-direction: column;
                gap: 20px;
            }

            .product-thumbs {
                flex-direction: row;
                width: 100%;
                overflow-x: auto;
                padding-bottom: 10px;
            }

            .thumb-item {
                min-width: 80px;
            }

            .product-main {
                flex-direction: column;
                gap: 20px;
            }

            .main-img-wrapper, .product-info {
                width: 100%;
            }

            .main-img-wrapper {
                height: 400px;
            }

            /* 移动端隐藏超大原图弹窗（避免布局混乱） */
            .zoom-img-container {
                display: none !important;
            }

            .product-title {
                font-size: 1.8rem;
            }

            .spec-title {
                font-size: 1.5rem;
            }

            .product-gallery {
                grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            }
             @keyframes fadeIn {
                from {
                    opacity: 0;
                    transform: translateY(-10px);
                }
                to {
                    opacity: 1;
                    transform: translateY(0);
                }
            }

      }
     @media (max-width: 480px) {
           .hero-carousel {
                height: 50vh;
            }

            .slide-title {
                font-size: 1.8rem;
            }

            .view-all-btn, .learn-more-btn, .read-more-btn {
                width: 100%;
                text-align: center;
            }

            .products-grid {
                grid-template-columns: 1fr;
            }
            .card-text {
                font-size: 18px;
            }
            .fashion-card {
                height: 250px;
            }
            /* 悬浮客服小屏适配 */
            .floating-contact {
                right: 0.5rem;
                gap: 0.5rem;
            }

            .contact-item {
                width: 40px;
                height: 40px;
            }

             .news-section-title {
                font-size: clamp(1.3rem, 5vw, 1.5rem);
            }

            .news-title {
                font-size: clamp(1.1rem, 4vw, 1.2rem);
            }

            .read-more-btn {
                width: 100%;
                text-align: center;
                /* 移动端按钮宽度100%，优化触控 */
                padding: 0.8rem 0;
            }
            .breadcrumb {
                padding: 1rem 0;
            }

            /* 移动端侧边栏标题内边距优化 */
            .sidebar-title {
                padding: 1rem 1.2rem;
            }

            .article-meta {
                flex-direction: column;
                gap: 0.5rem;
            }

            .social-share {
                flex-wrap: wrap;
            }

            .action-btn {
                width: 100%;
                text-align: center;
            }
            .container {
                padding: 0 15px;
            }
            .about-us {
                padding: 2rem 0;
            }
            .form-section {
                padding: 3rem 0;
            }
              .article-meta {
                flex-direction: column;
                gap: 0.5rem;
            }

            .social-share {
                flex-wrap: wrap;
                justify-content: center;
            }

            .action-btn {
                width: 100%;
                text-align: center;
                padding: 1rem;
                font-size: 0.95rem;
            }

            /* 进一步缩小标题 */
            .article-title {
                font-size: 1.4rem;
            }
              .main-img-wrapper {
                height: 300px;
            }

            .product-title {
                font-size: 1.5rem;
            }

            .quote-btn {
                padding: 10px 20px;
                font-size: 12px;
            }
        }