:root {
    --primary-color: #c12c2c;
    --secondary-color: #d4af37;
    --accent-color: #3a8bbb;
    --dark-color: #333;
    --light-color: #f5f5f5;
    --gray-color: #777;
    --light-gray: #eaeaea;
}


* {
    box-sizing: border-box;
}



img, video, iframe {
    max-width: 100%;
    height: auto;
}



body {
    font-family: "PingFang SC", "Microsoft YaHei", sans-serif;
    color: var(--dark-color);
    line-height: 1.6;
    background-color: #f8f9fa;
	 
		    overflow-x: hidden;   /* 防止横向滚动 */
    word-wrap: break-word;
    overflow-wrap: break-word;

}

/* ===== 导航栏样式 ===== */
.navbar {
    padding: 12px 0;
    background-color: rgba(255, 255, 255, 0.98) !important;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.navbar-scrolled {
    padding: 8px 0;
    box-shadow: 0 2px 25px rgba(0, 0, 0, 0.15);
}

.navbar-brand {
    display: flex;
    align-items: center;
}

.navbar-brand img {
    height: 48px;
    transition: all 0.3s ease;
}

.navbar-scrolled .navbar-brand img {
    height: 42px;
}

.logo-text {
    margin-left: 12px;
    font-size: 20px;
    font-weight: bold;
    color: var(--primary-color);
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-text span:last-child {
    font-size: 14px;
    color: var(--gray-color);
    font-weight: normal;
}

.nav-link {
    font-weight: 600;
    color: var(--dark-color) !important;
    position: relative;
    padding: 8px 15px !important;
    margin: 0 5px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color) !important;
    background-color: rgba(193, 44, 44, 0.1);
}

.nav-link.active {
    color: var(--primary-color) !important;
    background-color: rgba(193, 44, 44, 0.15);
}

.navbar-cta {
    display: flex;
    gap: 12px;
}

.navbar-cta .btn {
    border-radius: 8px;
    font-weight: 600;
    padding: 10px 20px;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(193, 44, 44, 0.25);
}

.navbar-cta .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(193, 44, 44, 0.35);
}

.navbar-phone {
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--primary-color), #e35d5d);
    color: white !important;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: bold;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(193, 44, 44, 0.25);
    transition: all 0.3s;
}

.navbar-phone:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(193, 44, 44, 0.35);
    color: white !important;
}

.navbar-phone i {
    margin-right: 8px;
    font-size: 18px;
}

/* ===== 全屏Banner样式 ===== */
.fullscreen-banner {
    height: 100vh;
    min-height: 700px;
  background: 
  linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.3)), 
  url('../images/banner.jpg');

    background-size: cover;
        background-position: calc(50% + 400px) center;

    background-attachment: fixed;
    color: white;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.fullscreen-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(193, 44, 44, 0.2) 0%, transparent 50%);
}

.banner-content {
    max-width: 800px;
    position: relative;
    z-index: 2;
}

.banner-title {
    font-size: 3.8rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    line-height: 1.2;
}

.banner-subtitle {
    font-size: 1.6rem;
    margin-bottom: 35px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
    font-weight: 300;
    line-height: 1.4;
}

.usp-tags {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 40px;
    gap: 15px;
}

.usp-tag {
    background-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 12px 24px;
    border-radius: 30px;
    font-size: 16px;
    display: flex;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s;
}

.usp-tag:hover {
    background-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
}

.usp-tag i {
    margin-right: 10px;
    color: var(--secondary-color);
    font-size: 18px;
}

.banner-cta {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.btn {
    border-radius: 10px;
    font-weight: 700;
    padding: 16px 32px;
    transition: all 0.3s;
    font-size: 18px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: #a52121;
    border-color: #a52121;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(193, 44, 44, 0.4);
}

.btn-outline-light {
    border-width: 2px;
    font-weight: 600;
}

.btn-outline-light:hover {
    background-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.2);
}

.btn-lg {
    padding: 18px 36px;
    font-size: 20px;
}

/* ===== 通用样式 ===== */
.section-title {
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 50px;
    font-weight: 700;
    text-align: center;
    font-size: 2.5rem;
}

.section-title:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(to right, var(--secondary-color), var(--primary-color));
    border-radius: 2px;
}

/* ===== 产品卡片样式 ===== */
.product-card {
    border: none;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    height: 100%;
    background: white;
}

.product-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}



.product-badge {
    position: absolute;
    top: 15px;
    right: -30px;
    z-index: 10;
    transform: rotate(45deg);
    padding: 8px 0;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    width: 120px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    color: white;
    /* 确保默认显示 */
    display: block;
    opacity: 1;
    visibility: visible;
}

/* 不同徽章类型的颜色 */
.product-badge.bg-danger {
    background: linear-gradient(135deg, #dc3545, #c82333);
}

.product-badge.bg-warning {
    background: linear-gradient(135deg, #ffc107, #e0a800);
    color: #212529;
}

.product-badge.bg-success {
    background: linear-gradient(135deg, #28a745, #218838);
}

.product-badge.bg-info {
    background: linear-gradient(135deg, #17a2b8, #138496);
}

.product-badge.bg-primary {
    background: linear-gradient(135deg, #007bff, #0069d9);
}

.product-badge.bg-purple {
    background: linear-gradient(135deg, #6f42c1, #5a36a9);
}

.product-image {
    height: 280px;
    overflow: hidden;
    position: relative;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

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

.card-body {
    padding: 25px;
}

.card-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.product-features {
    list-style: none;
    padding-left: 0;
    margin-bottom: 25px;
}

.product-features li {
    margin-bottom: 10px;
    padding-left: 30px;
    position: relative;
    line-height: 1.5;
}

.product-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 18px;
}

.product-pricing {
    margin-bottom: 25px;
    padding-top: 20px;
    border-top: 1px dashed var(--light-gray);
}

.text-decoration-line-through {
    font-size: 16px;
}

.text-danger {
    color: var(--primary-color) !important;
    font-size: 28px;
}

.card-footer {
    background: transparent;
    border: none;
    padding: 0 25px 25px;
}



.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
    font-weight: 600;
    padding: 10px 25px;
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    color: white;
}



/* 错误提示样式 */
        .form-group.error input, 
        .form-group.error textarea {
            border-color: #dc3545;
            box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.2);
        }
        
        .error-message {
            color: #dc3545;
            font-size: 14px;
            margin-top: 5px;
            display: none;
        }
        
        .form-group.error .error-message {
            display: block;
        }
        
        /* 成功模态框 */
        .modal-content {
            border-radius: 10px;
            border: none;
        }
        
        .modal-header {
            background-color: var(--primary-color);
            color: white;
            border-top-left-radius: 10px;
            border-top-right-radius: 10px;
        }
        
        .modal-success-icon {
            font-size: 60px;
            color: #28a745;
            text-align: center;
            margin: 20px 0;
        }

/* ===== 移动端吸底栏 ===== */
.mobile-cta-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: white;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.15);
    padding: 15px;
    z-index: 1000;
    display: flex;
    justify-content: space-around;
}

.mobile-cta-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: var(--dark-color);
    font-size: 13px;
    font-weight: 600;
    transition: color 0.3s;
}

.mobile-cta-btn i {
    font-size: 22px;
    margin-bottom: 5px;
}

.mobile-cta-btn:hover {
    color: var(--primary-color);
}

/* ===== 紫色标签样式 ===== */
.bg-purple {
    background-color: #6f42c1 !important;
    color: white;
}



/* ===== 配送方式区域 - 红色主题 ===== */
.delivery-section {
    padding: 80px 0;
    background: linear-gradient(to bottom, #fffafa, #ffeeee);
}

.delivery-card {
    border: none;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(193, 44, 44, 0.15);
    transition: all 0.4s ease;
    height: 100%;
    background: white;
    text-align: center;
    position: relative;
}

.delivery-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 45px rgba(193, 44, 44, 0.25);
}

.delivery-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(to right, var(--secondary-color), var(--primary-color));
}

.delivery-icon {
    font-size: 60px;
    color: var(--primary-color);
    margin: 30px 0 20px;
    transition: all 0.3s ease;
}

.delivery-card:hover .delivery-icon {
    transform: scale(1.1);
    color: #a52121;
}

.delivery-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.delivery-desc {
    color: var(--gray-color);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 25px;
    padding: 0 20px;
}

.delivery-btn {
    background: linear-gradient(135deg, var(--primary-color), #e35d5d);
    border: none;
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(193, 44, 44, 0.3);
    margin-bottom: 30px;
}

.delivery-btn:hover {
    background: linear-gradient(135deg, #a52121, #c12c2c);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(193, 44, 44, 0.4);
    color: white;
}

/* 配送方式特色标签 */
.delivery-feature {
    background: rgba(193, 44, 44, 0.1);
    border-radius: 20px;
    padding: 8px 16px;
    font-size: 14px;
    color: var(--primary-color);
    font-weight: 600;
    margin: 0 10px 10px;
    display: inline-block;
}

.delivery-features {
    margin-top: 20px;
    padding: 0 20px;
}

/* 配送方式响应式调整 */
@media (max-width: 768px) {


 .product-badge {
        right: -25px;
        top: 12px;
        width: 100px;
        font-size: 12px;
        padding: 6px 0;
    }
    
    .product-badge .badge {
        padding: 6px 15px;
    }
    .delivery-section {
        padding: 60px 0;
    }
    
    .delivery-icon {
        font-size: 50px;
        margin: 25px 0 15px;
    }
    
    .delivery-title {
        font-size: 20px;
    }
    
    .delivery-desc {
        font-size: 15px;
        padding: 0 15px;
    }
    
    .delivery-btn {
        padding: 10px 25px;
        font-size: 14px;
    }
    
    .delivery-feature {
        font-size: 13px;
        padding: 6px 12px;
    }
}


/* ===== 企业团购区域 - 带产品展示 ===== */
.pricing-section {
    padding: 80px 0;
    background: linear-gradient(to bottom, #fef7f7, #f9f9f9);
}

.pricing-card {
    border: none;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(193, 44, 44, 0.12);
    transition: all 0.4s ease;
    height: 100%;
    background: white;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(193, 44, 44, 0.2);
}

.pricing-header {
    padding: 30px;
    background: linear-gradient(135deg, var(--primary-color), #e35d5d);
    color: white;
    text-align: center;
}

.pricing-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
}

.pricing-range {
    font-size: 16px;
    opacity: 0.9;
    font-weight: 500;
}

.pricing-body {
    padding: 30px;
}

.price-container {
    margin-bottom: 25px;
    text-align: center;
}

.price-original {
    text-decoration: line-through;
    color: var(--gray-color);
    font-size: 18px;
    margin-bottom: 5px;
}

.price-group {
    font-size: 32px;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.price-desc {
    color: var(--gray-color);
    font-size: 14px;
}

/* 产品展示区域 */
.pricing-products {
    margin: 25px 0;
    padding: 20px;
    background: rgba(193, 44, 44, 0.05);
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
}

.pricing-products-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.pricing-products-title i {
    margin-right: 10px;
}

.product-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.product-list-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px dashed #eee;
}

.product-list-item:last-child {
    border-bottom: none;
}

.product-name {
    font-weight: 500;
    color: var(--dark-color);
}

.product-price {
    font-weight: 700;
    color: var(--primary-color);
}

.product-original-price {
    text-decoration: line-through;
    color: var(--gray-color);
    font-size: 12px;
    margin-right: 8px;
}

/* 功能特性列表 */
.pricing-features {
    list-style: none;
    margin-bottom: 30px;
    text-align: left;
}

.pricing-features li {
    margin-bottom: 12px;
    padding-left: 30px;
    position: relative;
    color: var(--dark-color);
}

.pricing-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 18px;
}

/* 推荐标签 */
.recommended-badge {
    position: absolute;
    top: 20px;
    right: -35px;
    background: var(--secondary-color);
    color: white;
    padding: 8px 40px;
    font-size: 14px;
    font-weight: 600;
    transform: rotate(45deg);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

/* 响应式调整 */
@media (max-width: 768px) {
    .pricing-header {
        padding: 25px 20px;
    }
    
    .pricing-body {
        padding: 25px 20px;
    }
    
    .price-group {
        font-size: 28px;
    }
    
    .pricing-products {
        padding: 15px;
    }
    
    .recommended-badge {
        right: -30px;
        padding: 6px 35px;
        font-size: 12px;
    }
    
    .product-list-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
}



/* ===== 响应式调整 ===== */
@media (max-width: 992px) {
    .banner-title {
        font-size: 3rem;
    }
    
    .banner-subtitle {
        font-size: 1.4rem;
    }
    
    .usp-tag {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .product-image {
        height: 240px;
    }
}

@media (max-width: 768px) {
    .navbar-cta {
        margin-top: 15px;
        flex-direction: column;
        width: 100%;
    }
    
    .navbar-cta .btn, .navbar-phone {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
    
    .banner-title {
        font-size: 2.5rem;
    }
    
    .banner-subtitle {
        font-size: 1.2rem;
    }
    
    .banner-cta {
        flex-direction: column;
    }
    
    .btn-lg {
        padding: 15px 30px;
        font-size: 18px;
    }
    
    .usp-tags {
        justify-content: center;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .more-products-content {
        flex-direction: column;
        text-align: center;
    }
    
    .more-products-icon {
        margin-right: 0;
        margin-bottom: 20px;
        font-size: 40px;
    }
    
    .more-products-benefits {
        text-align: left;
    }
    
    .card-title {
        height: auto;
        -webkit-line-clamp: 3;
    }
    
    .product-features li {
        font-size: 13px;
    }
}

@media (max-width: 576px) {
    .logo-text {
        font-size: 18px;
    }
    
    .logo-text span:last-child {
        font-size: 12px;
    }
    
    .banner-title {
        font-size: 2.2rem;
    }
    
    .product-features li {
        font-size: 14px;
    }
    
    .text-danger {
        font-size: 24px;
    }
}

/* ===== 客户评价区域 ===== */
.testimonials-section {
    padding: 80px 0;
    background: linear-gradient(to bottom, #f9f9f9, #f1f1f1);
    position: relative;
}

.testimonial-slider {
    padding: 20px;
}

.testimonial {
    background-color: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    margin: 20px;
    position: relative;
    border-left: 4px solid var(--primary-color);
}

.testimonial:before {
    content: "'";
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 80px;
    color: #f0f0f0;
    font-family: Arial;
    line-height: 1;
}

.testimonial-content {
    font-style: italic;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
    font-size: 18px;
    line-height: 1.8;
    color: var(--dark-color);
}

.rating {
    margin-bottom: 20px;
}

.rating i {
    color: var(--secondary-color);
    font-size: 18px;
    margin-right: 3px;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
    border: 3px solid var(--light-gray);
}

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

.author-info h4 {
    margin-bottom: 5px;
    color: var(--dark-color);
    font-weight: 600;
}

.author-info p {
    font-size: 14px;
    color: var(--gray-color);
    margin: 0;
}

/* Swiper自定义样式 */
.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #ddd;
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: var(--primary-color);
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--primary-color);
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 20px;
    font-weight: bold;
}

/* ===== 在线询价区域 ===== */
.quote-section {
    padding: 80px 0;
    background: linear-gradient(to bottom, #fff6f6, #fff);
}

.form-container {
    background-color: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.form-left {
    padding: 50px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--dark-color);
    font-size: 16px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid var(--light-gray);
    border-radius: 10px;
    font-size: 16px;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(193, 44, 44, 0.1);
}

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

.form-right {
    padding: 50px;
    background: linear-gradient(135deg, var(--primary-color), #c14141);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-right-title {
    font-size: 28px;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
    font-weight: 700;
}

.form-right-title:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--secondary-color);
}

.trust-points {
    list-style: none;
    padding: 0;
    margin: 0;
}

.trust-points li {
    margin-bottom: 25px;
    display: flex;
    align-items: flex-start;
}

.trust-points i {
    font-size: 24px;
    color: var(--secondary-color);
    margin-right: 15px;
    flex-shrink: 0;
    margin-top: 5px;
}

.trust-points h4 {
    margin-bottom: 8px;
    font-size: 18px;
    font-weight: 600;
}

.trust-points p {
    opacity: 0.9;
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

/* ===== 页脚样式 ===== */
.footer {
    background: linear-gradient(135deg, #2c3e50, #34495e);
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-info {
    flex: 1;
    min-width: 300px;
}

.footer-logo {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.footer-logo img {
    height: 40px;
    margin-right: 10px;
}

.footer-logo-text {
    font-size: 20px;
    font-weight: 700;
    color: white;
}

.footer-desc {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-contact {
    margin-bottom: 20px;
}

.footer-contact p {
    margin-bottom: 8px;
    color: #ccc;
    /*display: flex;*/
    align-items: center;
    text-align: center;
}

.footer-contact i {
    margin-right: 10px;
    color: var(--secondary-color);
}

.footer-links {
    flex: 1;
    min-width: 200px;
}

.footer-title {
    font-size: 18px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
    font-weight: 600;
}

.footer-title:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
}

.footer-links a:hover {
    color: white;
    transform: translateX(5px);
}

.footer-links a i {
    margin-right: 8px;
    font-size: 14px;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #999;
    font-size: 14px;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .testimonial {
        padding: 30px 25px;
        margin: 15px;
    }
    
    .testimonial-content {
        font-size: 16px;
    }
    
    .form-left,
    .form-right {
        padding: 30px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .swiper-button-next,
    .swiper-button-prev {
        display: none;
    }
}


/* ===== FAQ区域样式 ===== */
        #faq {
            padding: 80px 0;
            background: linear-gradient(to bottom, #f9f9f9, #f1f1f1);
        }

        .faq-list {
            max-width: 900px;
            margin: 0 auto;
        }

        .faq-item {
            background: white;
            border-radius: 12px;
            margin-bottom: 20px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .faq-item:hover {
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
        }

        .faq-question {
            padding: 25px 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            font-weight: 600;
            font-size: 18px;
            color: var(--dark-color);
            background: #fff;
            transition: all 0.3s ease;
        }

        .faq-question:hover {
            color: var(--primary-color);
        }

        .faq-question i {
            transition: transform 0.3s ease;
        }

        .faq-item.active .faq-question i {
            transform: rotate(180deg);
        }

        .faq-answer {
            padding: 0 30px;
            max-height: 0;
            overflow: hidden;
            transition: all 0.3s ease;
            background: #fafafa;
        }

        .faq-item.active .faq-answer {
            padding: 25px 30px;
            max-height: 300px;
        }

        .faq-answer p {
            margin: 0;
            line-height: 1.8;
            color: var(--gray-color);
        }
		
		
/*按钮样式*/
 /* 基础按钮样式 */
        .order-btn {
            display: inline-block;
            padding: 14px 30px;
            font-size: 18px;
            font-weight: 600;
            text-align: center;
            text-decoration: none;
            border-radius: 8px;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            position: relative;
            overflow: hidden;
        }
        
        .order-btn:after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(255, 255, 255, 0.1);
            transform: translateX(-100%);
            transition: transform 0.3s ease;
        }
        
        .order-btn:hover:after {
            transform: translateX(0);
        }
        
        .order-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
        }
        
        .order-btn:active {
            transform: translateY(1px);
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        }
        
        /* 红色渐变样式 */
        .btn-red-gradient {
            background: linear-gradient(135deg, #ff6b6b 0%, #c12c2c 100%);
            color: white;
        }
        
        /* 金色渐变样式 */
        .btn-gold-gradient {
            background: linear-gradient(135deg, #f6d365 0%, #d4af37 100%);
            color: #333;
        }
        
        /* 蓝色渐变样式 */
        .btn-blue-gradient {
            background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
            color: white;
        }
        
        /* 紫色渐变样式 */
        .btn-purple-gradient {
            background: linear-gradient(135deg, #a18cd1 0%, #fbc2eb 100%);
            color: white;
        }
        
        /* 多彩渐变样式 */
        .btn-rainbow-gradient {
            background: linear-gradient(135deg, #ff6b6b 0%, #e67e22 25%, #f9d71c 50%, #e74c3c 75%, #9b59b6 100%);
            color: white;
            background-size: 200% 200%;
            animation: gradientMove 3s ease infinite;
        }
        
        @keyframes gradientMove {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }
        
        /* 中秋主题样式 */
        .btn-midautumn {
            background: linear-gradient(135deg, #d4af37 0%, #c12c2c 100%);
            color: white;
            border: 2px solid #fff;
            box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
        }
        
        .btn-midautumn:before {
            content: '🎑';
            margin-right: 8px;
        }
        
        /* 3D效果样式 */
        .btn-3d {
            background: linear-gradient(135deg, #c12c2c 0%, #a52121 100%);
            color: white;
            border-bottom: 4px solid #8a1c1c;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        }
        
        .btn-3d:hover {
            border-bottom: 2px solid #8a1c1c;
            transform: translateY(2px);
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
        }
        
        /* 图标样式 */
        .btn-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }
        
        .btn-icon i {
            margin-right: 8px;
        }
		
		
		
		
		/* ===== 返回顶部和微信二维码样式 ===== */
.fixed-buttons {
    position: fixed;
    right: 20px;
    bottom: 100px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.fixed-btn {
width: 70px;
            height: 70px;
    border-radius: 50%;
    border: none;
    background: var(--primary-color);
    color: white;
    font-size: 20px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fixed-btn:hover {
    background: #a52121;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.wechat-qr {
    position: relative;
}

 /* 百度爱番番按钮样式 */
        .baidu-btn {
            background: #2932E1;
        }
        
        .baidu-btn:hover {
            background: #1a22c3;
        }

.qr-tooltip {
    position: absolute;
    right: 60px;
    bottom: 0;
    width: 160px;
    padding: 15px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    text-align: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

.qr-tooltip img {
    width: 100%;
    border-radius: 5px;
    margin-bottom: 10px;
}

.qr-tooltip p {
    margin: 0;
    font-size: 12px;
    color: var(--dark-color);
    font-weight: 600;
}

.wechat-btn {
    background: #2aae67;
}

.wechat-btn:hover {
     background: #219653;

}

.fonts30{font-size:26px}
		
.wechat-qr:hover .qr-tooltip {
    opacity: 1;
    visibility: visible;
}

 /* 百度爱番番提示文本 */
        .baidu-tooltip {
            position: absolute;
            right: 70px;
            background: rgba(41, 50, 225, 0.9);
            color: white;
            padding: 8px 12px;
            border-radius: 4px;
            font-size: 14px;
            white-space: nowrap;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }
        
        .baidu-tooltip:after {
            content: '';
            position: absolute;
            top: 50%;
            right: -5px;
            transform: translateY(-50%);
            border-left: 5px solid rgba(41, 50, 225, 0.9);
            border-top: 5px solid transparent;
            border-bottom: 5px solid transparent;
        }
        
        .baidu-fanfan:hover .baidu-tooltip {
            opacity: 1;
            visibility: visible;
            right: 75px;
        }
		

/* 响应式调整 */
@media (max-width: 768px) {
    .fixed-buttons {
        right: 15px;
        bottom: 80px;
    }
    
    .fixed-btn {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
    
    .qr-tooltip {
        width: 140px;
        right: 55px;
    }
    
    
    .fullscreen-banner {
    height: 100vh;
    min-height: 700px;
  background: 
  linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.3)), 
  url('/upfile/wappic.jpg');

    background-size: cover;
        background-position: calc(50% ) center;

    background-attachment: fixed;
    color: white;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.fullscreen-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(193, 44, 44, 0.2) 0%, transparent 50%);
}



}

