        /* Swiper 大图样式 */
        .swiper {
            width: 100%;
            height: 550px;
        }
        .swiper-slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .swiper-pagination-bullet-active {
            background-color: var(--primary) !important;
        }
        .swiper-button-next, .swiper-button-prev {
            color: var(--primary) !important;
            background: rgba(255,255,255,0.7);
            width: 44px;
            height: 44px;
            border-radius: 50%;
            transition: all 0.2s;
        }
        .swiper-button-next:after, .swiper-button-prev:after {
            font-size: 20px;
            font-weight: bold;
        }
        /* 产品卡片 */
        .product-card {
            border-radius: 24px;
            overflow: hidden;
            transition: all 0.35s ease;
            background: white;
            box-shadow: 0 12px 25px -8px rgba(0,0,0,0.08);
            height: 100%;
            border: none;
        }
        .product-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 30px -10px rgba(130, 66, 33, 0.2);
        }
        .product-card img {
            height: 240px;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        .product-card:hover img {
            transform: scale(1.03);
        }
        .category-tab {
            background: transparent;
            border: 2px solid var(--primary);
            color: var(--primary);
            font-weight: 600;
            border-radius: 40px;
            padding: 0.5rem 1.8rem;
            margin: 0 0.5rem;
            transition: all 0.25s;
        }
        .category-tab.active, .category-tab:hover {
            background-color: var(--primary);
            color: white;
            border-color: var(--primary);
        }
        /* 公司简介 - 满屏色块区域 (整个section背景覆盖) */
        .about-fullwidth-bg {
            background: #F9EFE4;  /* 温暖麦色满屏块 */
            box-shadow: inset 0 2px 10px rgba(0,0,0,0.02);
        }
        /* 大气简介卡片内部保持白色 */
        .about-card-modern {
          
          
            padding: 2rem 2rem;
            transition: all 0.3s;
          
        }
        /* 新闻卡片 */
        .news-card {
            background: white;
            border-radius: 28px;
            transition: all 0.3s;
            overflow: hidden;
            border: 1px solid rgba(130,66,33,0.1);
            height: 100%;
        }
        .news-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.05);
            border-color: var(--primary-light);
        }
        .news-img {
            height: 200px;
            object-fit: cover;
            width: 100%;
        }
        /* 联系方式区域新布局 */
        .contact-wrapper {
            background: #fffaf5;
            border-radius: 40px;
            padding: 2rem;
            box-shadow: 0 20px 35px -10px rgba(0,0,0,0.05);
        }
		    .contact-icon-item{    display: flex;
    align-items: center;}
        .contact-icon-item i {
            width: 55px;
            height: 55px;
            background-color: var(--primary);
            border-radius: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
			margin-right:15px;
            font-size: 24px;
            margin-bottom: 1rem;
        }
        .contact-form .form-control, .contact-form .form-select {
            border-radius: 30px;
            border: 1px solid #e0cfc0;
            padding: 0.7rem 1.2rem;
            background: #ffffff;
            transition: 0.2s;
        }
        .contact-form .form-control:focus {
            border-color: var(--primary);
            box-shadow: 0 0 0 0.2rem rgba(130,66,33,0.2);
        }
        .btn-submit {
            background-color: var(--primary);
            border-radius: 40px;
            padding: 0.6rem 1.8rem;
            font-weight: 600;
            width: 100%;
            color: white;
            border: none;
        }
        .btn-submit:hover {
            background-color: var(--primary-dark);
            transform: translateY(-2px);
        }
       
        .section-title {
            font-size: 2.8rem;
            font-weight: 700;
            position: relative;
            display: inline-block;
            margin-bottom: 1rem;
        }
        .section-title:after {
            content: '';
            position: absolute;
            bottom: -12px;
            left: 0;
            width: 70px;
            height: 4px;
            background-color: var(--primary);
            border-radius: 4px;
        }
        .text-center .section-title:after {
            left: 50%;
            transform: translateX(-50%);
        }
        @media (max-width: 768px) {
            .swiper { height: 350px; }
            .section-title { font-size: 2rem; }
            .product-card img { height: 190px; }
            .about-card-modern { padding: 1.5rem; }
        }
        .btn-outline-custom {
            border: 2px solid var(--primary);
            color: var(--primary);
            border-radius: 40px;
            padding: 0.4rem 1.4rem;
            transition: all 0.2s;
        }
        .btn-outline-custom:hover {
            background: var(--primary);
            color: white;
        }