/* ===================================
   香烟批发官网 - 高级定制CSS样式表
   =================================== */

/* CSS 变量定义 - 可自定义主题颜色 */
:root {
    --primary-color: rgb(44, 62, 80);
    --primary-dark: rgb(30, 42, 54);
    --primary-light: rgb(58, 78, 96);
    --accent-color: #c9a227;
    --accent-light: #d4b445;
    --text-dark: #2c3e50;
    --text-gray: #6c757d;
    --text-light: #95a5a6;
    --bg-light: #f8f9fa;
    --bg-dark: #1a1a2e;
    --white: #ffffff;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.16);
    --transition-fast: 0.3s ease;
    --transition-slow: 0.5s ease;
    --border-radius: 12px;
    --border-radius-lg: 20px;
}

/* ===================================
   重置与基础样式
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'PingFang SC', 'Microsoft YaHei', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-fast);
}

ul, li {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container-2c4197 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===================================
   按钮样式
   =================================== */
.btn-fe777a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: all var(--transition-fast);
    border: 2px solid transparent;
}

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

.btn-primary-f22af3:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary-9b9e70 {
    background: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-secondary-9b9e70:hover {
    background: var(--primary-color);
    color: var(--white);
}

.btn-outline-45c681 {
    background: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 12px 28px;
}

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

.btn-block-426339 {
    width: 100%;
}

/* ===================================
   顶部导航栏
   =================================== */
.header-5ce005 {
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-fast);
}

.header-5ce005.scrolled {
    box-shadow: var(--shadow-md);
}

.header-content-524d65 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo-f42afe {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img-6738df {
    height: 45px;
    width: auto;
}

.brand-name-30e7eb {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-menu-2585a2 {
    display: flex;
    gap: 8px;
}

.nav-link-306330 {
    padding: 10px 16px;
    font-size: 15px;
    font-weight: 500;
    color: var(--text-dark);
    border-radius: 8px;
    transition: all var(--transition-fast);
    position: relative;
}

.nav-link-306330::after {
    content: '';
    position: absolute;
    bottom: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: width var(--transition-fast);
}

.nav-link-306330:hover,
.nav-link-306330.active {
    color: var(--primary-color);
    background: rgba(44, 62, 80, 0.05);
}

.nav-link-306330:hover::after,
.nav-link-306330.active::after {
    width: 20px;
}

.mobile-menu-btn-916444 {
    display: none;
    font-size: 24px;
    color: var(--primary-color);
    cursor: pointer;
    padding: 8px;
}

/* ===================================
   首页横幅区域
   =================================== */
.hero-a4036c {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    overflow: hidden;
}

.hero-a4036c::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url(../images/hero-bg.jpg) center / cover;
    animation: float 20s linear infinite;
    opacity: 0.1;
}

@keyframes float {
    0% { transform: translateY(0) rotate(0deg); }
    100% { transform: translateY(-200px) rotate(360deg); }
}

.hero-overlay-0cb1f3 {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(201, 162, 39, 0.1) 0%, transparent 50%);
}

.hero-content-985ad1 {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 0 20px;
    max-width: 900px;
}

.hero-title-1158a3 {
    font-size: 56px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 24px;
    letter-spacing: 2px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.hero-subtitle-d4e9dc {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 40px;
    line-height: 1.9;
}

.hero-buttons-1f3b17 {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-scroll-23206f {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.hero-scroll-23206f a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255,0.1);
    color: var(--white);
    font-size: 20px;
    animation: bounce 2s infinite;
    transition: all var(--transition-fast);
}

.hero-scroll-23206f a:hover {
    background: var(--accent-color);
    color: var(--primary-color);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* ===================================
   通用区块样式
   =================================== */
.section-51ebf4 {
    padding: 100px 0;
}

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

.section-header-left-426683 {
    text-align: left;
    margin-bottom: 30px;
}

.section-title-31d32e {
    font-size: 40px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 16px;
    position: relative;
    display: inline-block;
}

.section-title-31d32e::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--accent-color);
}

.section-header-left-426683 .section-title-31d32e::after {
    left: 0;
    transform: none;
}

.section-subtitle-dfab50 {
    font-size: 18px;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

.section-header-left-426683 .section-subtitle-dfab50 {
    margin: 0;
}

/* ===================================
   产品展示区域
   =================================== */
.products-section-8f155b {
    background: var(--bg-light);
}

.products-grid-483894 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.product-card-cfc791 {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-fast);
}

.product-card-cfc791:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.product-image-29fe48 {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.product-image-29fe48 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.product-card-cfc791:hover .product-image-29fe48 img {
    transform: scale(1.08);
}

.product-badge-368040 {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 6px 14px;
    background: var(--accent-color);
    color: var(--white);
    font-size: 12px;
    font-weight: 600;
    border-radius: 20px;
}

.product-info-912f3d {
    padding: 24px;
}

.product-title-58f99f {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.product-desc-9bc7ea {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 16px;
}

.product-link-adf05a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-color);
    transition: all var(--transition-fast);
}

.product-link-adf05a:hover {
    color: var(--accent-color);
    gap: 12px;
}

/* ===================================
   服务优势区域
   =================================== */
.services-section-b64377 {
    background: var(--white);
}

.services-grid-eeddc2 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card-1ba002 {
    padding: 40px 30px;
    background: var(--bg-light);
    border-radius: var(--border-radius-lg);
    text-align: center;
    transition: all var(--transition-fast);
    position: relative;
    overflow: hidden;
}

.service-card-1ba002::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transform: scaleX(0);
    transition: transform var(--transition-fast);
}

.service-card-1ba002:hover::before {
    transform: scaleX(1);
}

.service-card-1ba002:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.service-icon-cf46bc {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    color: var(--white);
    font-size: 32px;
    transition: all var(--transition-fast);
}

.service-card-1ba002:hover .service-icon-cf46bc {
    background: linear-gradient(135deg, var(--accent-color), var(--accent-light));
    transform: rotateY(180deg);
}

.service-title-b10a31 {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.service-desc-2a5414 {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.7;
}

/* ===================================
   关于我们区域
   =================================== */
.about-section-3de70e {
    background: var(--bg-light);
}

.about-content-f3f6e9 {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.about-image-82a0d3 {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image-82a0d3 img {
    width: 100%;
    height: auto;
    display: block;
}

.about-text-cd8158 {
    padding: 20px 0;
}

.about-intro-60df73 {
    font-size: 18px;
    font-weight: 600;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.about-detail-96eb23 {
    margin-bottom: 30px;
}

.about-detail-96eb23 p {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.9;
    margin-bottom: 16px;
}

.about-stats-da3a1e {
    display: flex;
    gap: 40px;
}

.stat-item-eb9ca9 {
    text-align: center;
}

.stat-number-05b589 {
    display: block;
    font-size: 42px;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label-e61768 {
    font-size: 14px;
    color: var(--text-gray);
}

/* ===================================
   产品案例区域
   =================================== */
.cases-section-81d793 {
    background: var(--white);
}

.cases-grid-1feac3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.case-card-8e3f0a {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
}

.case-image-cfd8d9 {
    width: 100%;
    height: 100%;
    position: relative;
}

.case-image-cfd8d9 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.case-card-8e3f0a:hover .case-image-cfd8d9 img {
    transform: scale(1.1);
}

.case-overlay-80e696 {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(44, 62, 80, 0.9) 100%);
    display: flex;
    align-items: flex-end;
    padding: 24px;
    opacity: 0;
    transition: opacity var(--transition-fast);
}

.case-card-8e3f0a:hover .case-overlay-80e696 {
    opacity: 1;
}

.case-info-ae9f79 h4 {
    color: var(--white);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 4px;
}

.case-info-ae9f79 p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

/* ===================================
   新闻资讯区域
   =================================== */
.news-section-b00b80 {
    background: var(--bg-light);
}

.news-grid-da9942 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.news-card-d09710 {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-fast);
}

.news-card-d09710:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.news-image-630103 {
    height: 200px;
    overflow: hidden;
}

.news-image-630103 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.news-card-d09710:hover .news-image-630103 img {
    transform: scale(1.08);
}

.news-content-1c9042 {
    padding: 24px;
}

.news-meta-0e0798 {
    display: flex;
    gap: 20px;
    margin-bottom: 12px;
    font-size: 13px;
    color: var(--text-light);
}

.news-meta-0e0798 i {
    margin-right: 4px;
}

.news-title-980922 {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 12px;
    line-height: 1.4;
    transition: color var(--transition-fast);
}

.news-card-d09710:hover .news-title-980922 {
    color: var(--accent-color);
}

.news-summary-6ac99b {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 16px;
}

.news-link-b42d49 {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-color);
    transition: all var(--transition-fast);
}

.news-link-b42d49:hover {
    color: var(--accent-color);
    gap: 12px;
}

.news-more-b8e4be {
    text-align: center;
    margin-top: 50px;
}

/* ===================================
   常见问题区域
   =================================== */
.faq-section-6f2927 {
    background: var(--white);
}

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

.faq-item-8999b9 {
    margin-bottom: 16px;
    border-radius: var(--border-radius);
    overflow: hidden;
    border: 1px solid rgba(44, 62, 80, 0.1);
}

.faq-question-a7beb2 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 30px;
    background: var(--bg-light);
    cursor: pointer;
    font-size: 17px;
    font-weight: 600;
    color: var(--primary-color);
    transition: all var(--transition-fast);
}

.faq-question-a7beb2:hover {
    background: rgba(44, 62, 80, 0.05);
    color: var(--accent-color);
}

.faq-question-a7beb2 i {
    font-size: 18px;
    transition: transform var(--transition-fast);
}

.faq-item-8999b9.active .faq-question-a7beb2 i {
    transform: rotate(45deg);
}

.faq-answer-f6c186 {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-slow), padding var(--transition-slow);
}

.faq-item-8999b9.active .faq-answer-f6c186 {
    max-height: 300px;
}

.faq-answer-f6c186 p {
    padding: 24px 30px;
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.8;
    background: var(--white);
}

/* ===================================
   客户评价区域
   =================================== */
.reviews-section-6cd1d3 {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    padding: 100px 0;
}

.reviews-section-6cd1d3 .section-title-31d32e {
    color: var(--white);
}

.reviews-section-6cd1d3 .section-subtitle-dfab50 {
    color: rgba(255, 255, 255, 0.7);
}

.reviews-grid-87b0dc {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.review-card-00ba43 {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-fast);
}

.review-card-00ba43:hover {
    transform: translateY(-5px);
}

.review-header-7f99b7 {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.reviewer-avatar-599d7a {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    background: var(--primary-color);
}

.reviewer-name-0a4117 {
    font-size: 17px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 4px;
}

.reviewer-company-605b9a {
    font-size: 13px;
    color: var(--text-gray);
}

.review-rating-3825e1 {
    margin-bottom: 16px;
}

.review-rating-3825e1 i {
    color: var(--accent-color);
    font-size: 14px;
    margin-right: 2px;
}

.review-content-490c37 p {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.8;
    font-style: italic;
    position: relative;
    padding-left: 20px;
}

.review-content-490c37 p::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -5px;
    font-size: 40px;
    color: var(--accent-color);
    font-family: Georgia, serif;
    line-height: 1;
}

/* ===================================
   联系我们区域
   =================================== */
.contact-section-47a62e {
    background: var(--bg-light);
}

.contact-content-c544ce {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
}

.contact-info-180604 {
    padding: 40px;
    background: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
}

.contact-item-0c1c33 {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(44, 62, 80, 0.08);
}

.contact-item-0c1c33:last-of-type {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.contact-icon-6f1a40 {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 12px;
    color: var(--white);
    font-size: 20px;
    flex-shrink: 0;
}

.contact-text-fe7d4f h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 6px;
}

.contact-text-fe7d4f p {
    font-size: 14px;
    color: var(--text-gray);
}

.contact-social-2d6d79 {
    display: flex;
    gap: 12px;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(44, 62, 80, 0.08);
}

.social-link-d16eeb {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-light);
    border-radius: 50%;
    color: var(--primary-color);
    font-size: 18px;
    transition: all var(--transition-fast);
}

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

.contact-form-wrapper-2bf441 {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-md);
}

.contact-form-93e2e1 .form-group-9542bd {
    margin-bottom: 20px;
}

.contact-form-93e2e1 input,
.contact-form-93e2e1 select,
.contact-form-93e2e1 textarea {
    width: 100%;
    padding: 16px 20px;
    font-size: 15px;
    border: 2px solid rgba(44, 62, 80, 0.1);
    border-radius: var(--border-radius);
    outline: none;
    transition: all var(--transition-fast);
    font-family: inherit;
}

.contact-form-93e2e1 input:focus,
.contact-form-93e2e1 select:focus,
.contact-form-93e2e1 textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(44, 62, 80, 0.1);
}

.contact-form-93e2e1 textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form-93e2e1 select {
    cursor: pointer;
    appearance: none;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3-63dd4a.org/2000/svg" width="12" height="12" viewBox="0 0 12 12"><path fill="%232c3e50" d="M6 8L1 3h10z"/></svg>');
    background-repeat: no-repeat;
    background-position: right 20px center;
}

.flink-section-201095 {
    background: white;
    color: #2d3748;
    padding: 30px 0;
}
.flink-header-56f3c5{
    font-size: 20px;
    font-weight: 600;
    padding-bottom: 10px;
}
.flink-section-201095 li{
    list-style: none;
    display: inline;
    padding-right: 20px;
}
.flink-section-201095 a{
    color: #718096;
    text-decoration: none;
}

/* ===================================
   页脚区域
   =================================== */
.footer-642af4 {
    background: var(--bg-dark);
    padding: 70px 0 30px;
}

.footer-content-461428 {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-brand-34ef5f {
    padding-right: 20px;
}

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

.footer-logo-645493 img {
    height: 36px;
    width: auto;
}

.footer-logo-645493 span {
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
}

.footer-desc-918654 {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
}

.footer-links-648afd h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 24px;
    position: relative;
}

.footer-links-648afd h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--accent-color);
}

.footer-links-648afd ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links-648afd a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    transition: all var(--transition-fast);
}

.footer-links-648afd a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.footer-bottom-e2753f {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom-e2753f p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 6px;
}

/* ===================================
   返回顶部按钮
   =================================== */
.back-to-top-d0ee93 {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-fast);
    box-shadow: var(--shadow-md);
    z-index: 999;
}

.back-to-top-d0ee93.visible-88075a {
    opacity: 1;
    visibility: visible;
}

.back-to-top-d0ee93:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
}

/* ===================================
   响应式设计 - 平板设备
   =================================== */
@media (max-width: 1024px) {
    .hero-title-1158a3 {
        font-size: 44px;
    }

    .hero-subtitle-d4e9dc {
        font-size: 18px;
    }

    .products-grid-483894,
    .services-grid-eeddc2,
    .news-grid-da9942,
    .reviews-grid-87b0dc {
        grid-template-columns: repeat(2, 1fr);
    }

    .cases-grid-1feac3 {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-content-f3f6e9,
    .contact-content-c544ce {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image-82a0d3 {
        order: -1;
    }

    .footer-content-461428 {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ===================================
   响应式设计 - 移动设备
   =================================== */
@media (max-width: 768px) {
    .header-content-524d65 {
        height: 70px;
    }

    .nav-menu-2585a2 {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        gap: 4px;
        box-shadow: var(--shadow-md);
        transform: translateY(-150%);
        opacity: 0;
        transition: all var(--transition-fast);
    }

    .nav-menu-2585a2.active {
        transform: translateY(0);
        opacity: 1;
    }

    .nav-link-306330 {
        padding: 14px 20px;
        border-radius: 8px;
    }

    .mobile-menu-btn-916444 {
        display: block;
    }

    .hero-a4036c {
        min-height: 100vh;
        padding: 100px 0 60px;
    }

    .hero-title-1158a3 {
        font-size: 32px;
        letter-spacing: 1px;
    }

    .hero-subtitle-d4e9dc {
        font-size: 16px;
    }

    .hero-buttons-1f3b17 {
        flex-direction: column;
        align-items: center;
    }

    .btn-fe777a {
        width: 100%;
        max-width: 280px;
    }

    .section-51ebf4 {
        padding: 70px 0;
    }

    .section-title-31d32e {
        font-size: 28px;
    }

    .products-grid-483894,
    .services-grid-eeddc2,
    .news-grid-da9942,
    .reviews-grid-87b0dc {
        grid-template-columns: 1fr;
    }

    .cases-grid-1feac3 {
        grid-template-columns: 1fr;
    }

    .about-stats-da3a1e {
        justify-content: space-around;
    }

    .stat-number-05b589 {
        font-size: 32px;
    }

    .contact-info-180604,
    .contact-form-wrapper-2bf441 {
        padding: 30px 20px;
    }

    .footer-content-461428 {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-brand-34ef5f {
        padding-right: 0;
    }

    .back-to-top-d0ee93 {
        bottom: 20px;
        right: 20px;
        width: 44px;
        height: 44px;
        font-size: 16px;
    }

    .hero-scroll-23206f {
        display: none;
    }
}

/* ===================================
   小屏幕设备优化
   =================================== */
@media (max-width: 480px) {
    .container-2c4197 {
        padding: 0 15px;
    }

    .hero-title-1158a3 {
        font-size: 26px;
    }

    .section-title-31d32e {
        font-size: 24px;
    }

    .product-card-cfc791,
    .service-card-1ba002,
    .news-card-d09710,
    .review-card-00ba43 {
        padding: 20px;
    }

    .about-stats-da3a1e {
        flex-direction: column;
        gap: 24px;
    }

    .stat-item-eb9ca9 {
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .stat-number-05b589 {
        font-size: 36px;
    }

    .stat-label-e61768 {
        font-size: 14px;
    }

    .faq-question-a7beb2 {
        padding: 20px;
        font-size: 15px;
    }

    .faq-answer-f6c186 p {
        padding: 20px;
    }
}

/* ===================================
   动画辅助类
   =================================== */
.fade-in-c7df5a {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in-c7df5a.visible-88075a {
    opacity: 1;
    transform: translateY(0);
}

/* 滚动显示动画 */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-on-scroll-290ae4 {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}
