/* 页面标题区域 */
        .page-header {
            padding: 150px 5% 80px;
            background: linear-gradient(135deg, #843f1c 0%, #411600 100%);
            color: white;
            text-align: center;
        }

        .page-header h1 {
            font-size: 3rem;
            margin-bottom: 20px;
        }

        .page-header p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto;
        }

        /* 产品分类区域 */
        .products-section {
            padding: 100px 5%;
            background-color: white;
        }

        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-title h2 {
            font-size: 2.5rem;
            color: #2c3e50;
            margin-bottom: 15px;
        }

        .section-title p {
            color: #7f8c8d;
            max-width: 600px;
            margin: 0 auto;
        }

        .category-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin: 0 auto;
        }

        .category-card {
            position: relative;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: all 0.3s;
            height: 400px;
        }

        .category-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }

        .category-image {
            width: 100%;
            height: 100%;
            overflow: hidden;
        }

        .category-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }

        .category-card:hover .category-image img {
            transform: scale(1.1);
        }
        .category-card .category-href{
            position: absolute;
            width: 100%;
            height: 100%;
            display: block;
            bottom: 0;
            left: 0;
            right: 0;
            background: rgba(132, 63, 28, 0.0);
            color: white;
            padding: 20px;
            transition: all 0.3s;
        }

        .category-content {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: rgba(132, 63, 28, 0.5);
            color: white;
            padding: 20px;
            transition: all 0.3s;
        }

        .category-card:hover .category-content {
            background: rgba(132, 63, 28, 0.8);
        }

        .category-content h3 {
            font-size: 1.5rem;
            margin-bottom: 10px;
            color: #fff;
        }

        .subcategories {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-top: 10px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }

        .category-card:hover .subcategories {
            max-height: 100px;
        }

        .subcategory {
            background: rgba(255, 255, 255, 0.2);
            padding: 5px 10px;
            border-radius: 20px;
            font-size: 0.8rem;
            transition: all 0.3s;
        }

        .subcategory:hover {
            background: #4a90e2;
            transform: translateY(-2px);
        }

        .subcategory a {
            color: white;
            text-decoration: none;
        }

        /* 定制区域 */
        .oem{
            padding: 100px 5%;
            background-color: #f8f9fa;
        }

        .oem-item{
            text-align: center;
        }
        .oem-item span{
            padding: 0 5px;
        }
        .oem-more{
             text-align: center;
             padding-top: 30px;
        }
        .oem-more a{
            font-size: 1.5em;
            color: #2c3e50;
        }
        



        /* 新品区域 */
        .new-arrivals {
            padding: 100px 5%;
            background-color: white;
        }

        .new-arrival-item {
            display: flex;
            align-items: center;
            margin-bottom: 80px;
            max-width: 1200px;
            margin-left: auto;
            margin-right: auto;
            background: #f2ebe8;
        }

        .new-arrival-item.reverse {
            flex-direction: row-reverse;
        }

        .new-arrival-text, .new-arrival-image {
            flex: 1;
            padding: 20px;
            text-align: center;
        }

        .new-arrival-text h3 {
            font-size: 2rem;
            color: #2c3e50;
            margin-bottom: 20px;
        }

        .new-arrival-text p {
            color: #7f8c8d;
            line-height: 1.8;
            margin-bottom: 25px;
        }

        .new-arrival-image {
            border-radius: 0px;
            overflow: hidden;
            padding: 0;
           /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);*/
        }

        .new-arrival-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.5s;
        }

        .new-arrival-image:hover img {
            transform: scale(1.05);
        }

        .full-width-image {
            margin: 0 auto;
            max-width: 1200px;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            margin-top: 40px;
        }

        .full-width-image img {
            width: 100%;
            height: auto;
            display: block;
        }

        

        /* 响应式设计 */
        @media (max-width: 992px) {           

            .new-arrival-item {
                flex-direction: column;
            }
            
            .new-arrival-item.reverse {
                flex-direction: column;
            }
        }

        @media (max-width: 768px) {
            .page-header h1 {
                font-size: 2.2rem;
            }
            
            .social-icons {
                display: none;
            }
            
            .category-grid {
                grid-template-columns: 1fr;
            }
            
        }

        @media (max-width: 576px) {
            .page-header h1 {
                font-size: 1.8rem;
            }
            
            .page-header p {
                font-size: 1rem;
            }
            
            .section-title h2 {
                font-size: 2rem;
            }
            
            .footer-content {
                grid-template-columns: 1fr;
            }
        }