/* ==================== 基础样式 ==================== */
:root {
    /* 主题颜色 - 高端金色系 */
    --primary-color: #C9A962;
    --primary-dark: #B8944D;
    --primary-light: #D4B978;
    
    /* 辅助颜色 - 深色系 */
    --secondary-color: #2C3E50;
    --secondary-dark: #1A252F;
    --secondary-light: #34495E;
    
    /* 强调色 - 深棕色 */
    --accent-color: #8B4513;
    --accent-dark: #6B3410;
    --accent-light: #A0522D;
    
    /* 背景色 */
    --bg-color: #F8F7F4;
    --bg-light: #FFFFFF;
    --bg-dark: #F0EDE6;
    
    /* 文字颜色 */
    --text-primary: #2C3E50;
    --text-secondary: #5D6D7E;
    --text-light: #8E99A4;
    --text-white: #FFFFFF;
    
    /* 边框颜色 */
    --border-color: #E0DCD3;
    --border-light: #EAE6DD;
    
    /* 阴影 */
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.12);
    --shadow-xl: 0 16px 48px rgba(0,0,0,0.15);
    
    /* 过渡 */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* 圆角 */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-full: 50%;
}

* {
    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.6;
    color: var(--text-primary);
    background-color: var(--bg-color);
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

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

/* ==================== 按钮样式 ==================== */
.btn-c79820 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition-normal);
    border: none;
    gap: 8px;
}

.btn-primary-f0ea5d {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--text-white);
    box-shadow: 0 4px 15px rgba(201, 169, 98, 0.4);
}

.btn-primary-f0ea5d:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(201, 169, 98, 0.5);
}

.btn-secondary-8db1d9 {
    background: transparent;
    color: var(--text-white);
    border: 2px solid var(--text-white);
}

.btn-secondary-8db1d9:hover {
    background: var(--text-white);
    color: var(--primary-color);
}

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

/* ==================== 顶部导航 ==================== */
.header-13c4c3 {
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.header-13c4c3.scrolled {
    box-shadow: var(--shadow-md);
}

.navbar-73f68e {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo-10eadb {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

.logo-10eadb i {
    font-size: 32px;
}

.nav-links-76f9a5 {
    display: flex;
    gap: 8px;
}

.nav-links-76f9a5 a {
    padding: 10px 16px;
    color: var(--text-primary);
    font-weight: 500;
    border-radius: var(--radius-md);
    transition: var(--transition-fast);
}

.nav-links-76f9a5 a:hover {
    color: var(--primary-color);
    background: rgba(201, 169, 98, 0.1);
}

.hamburger-3ff856 {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--text-primary);
}

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

.hero-9ec0f5::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('./imgs/banner.jpg') center/cover;
    animation: float 20s linear infinite;
    opacity: 0.2;
}

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

.hero-overlay-b1bb18 {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.9), rgba(26, 37, 47, 0.95));
}

.hero-content-3da8d5 {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--text-white);
    max-width: 800px;
    padding: 0 20px;
}

.hero-title-77d91e {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 24px;
    letter-spacing: 2px;
    text-shadow: 2px 4px 8px rgba(0,0,0,0.3);
}

.hero-subtitle-a9bf40 {
    font-size: 20px;
    line-height: 1.8;
    margin-bottom: 40px;
    opacity: 0.9;
}

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

/* ==================== 章节头部 ==================== */
.section-header-19ddd2 {
    text-align: center;
    margin-bottom: 60px;
}

.section-title-366b21 {
    font-size: 42px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
    position: relative;
    display: inline-block;
}

.section-title-366b21::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
    border-radius: 2px;
}

.section-subtitle-0c494a {
    font-size: 17px;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 20px auto 0;
    line-height: 1.7;
}

/* ==================== 服务内容 ==================== */
.services-594e6b {
    padding: 120px 0;
    background: var(--bg-light);
}

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

.service-card-1815d4 {
    background: var(--bg-color);
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition-normal);
    border: 1px solid var(--border-light);
}

.service-card-1815d4:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.service-icon-110705 {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-normal);
}

.service-card-1815d4:hover .service-icon-110705 {
    transform: scale(1.1) rotate(5deg);
}

.service-icon-110705 i {
    font-size: 32px;
    color: var(--text-white);
}

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

.service-content-c6e695 {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ==================== 服务优势 ==================== */
.advantages-266c09 {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-color) 100%);
}

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

.advantage-card-0d679f {
    background: var(--bg-light);
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    position: relative;
    overflow: hidden;
    transition: var(--transition-normal);
    border: 1px solid var(--border-light);
}

.advantage-card-0d679f::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition-normal);
}

.advantage-card-0d679f:hover::before {
    transform: scaleX(1);
}

.advantage-card-0d679f:hover {
    box-shadow: var(--shadow-lg);
}

.advantage-number-20dc8d {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-color);
    opacity: 0.3;
    position: absolute;
    top: 20px;
    right: 20px;
}

.advantage-title-a3b8df {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.advantage-content-16df90 {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

/* ==================== 产品案例 ==================== */
.products-1c1820 {
    padding: 120px 0;
    background: var(--secondary-color);
}

.products-1c1820 .section-title-366b21 {
    color: var(--text-white);
}

.products-1c1820 .section-subtitle-0c494a {
    color: rgba(255, 255, 255, 0.7);
}

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

.product-card-7315c9 {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--bg-light);
    transition: var(--transition-normal);
}

.product-card-7315c9:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

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

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

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

.product-overlay-85996f {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(44, 62, 80, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-normal);
}

.product-card-7315c9:hover .product-overlay-85996f {
    opacity: 1;
}

.product-overlay-85996f i {
    font-size: 32px;
    color: var(--primary-color);
}

.product-info-f475e7 {
    padding: 24px;
    background: var(--bg-light);
}

.product-title-6ac585 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.product-desc-06a33e {
    font-size: 14px;
    color: var(--text-secondary);
}

/* ==================== 关于我们 ==================== */
.about-7af16b {
    padding: 120px 0;
    background: var(--bg-light);
}

.about-wrapper-6b5b74 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image-d1984c {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image-d1984c img {
    width: 100%;
    height: auto;
}

.about-content-cc5568 {
    padding: 20px;
}

.about-header-07378a {
    text-align: left;
    margin-bottom: 30px;
}

.about-header-07378a .section-title-366b21::after {
    left: 0;
    transform: none;
}

.about-intro-d7d793 {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.about-text-bfdd57 {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.9;
    margin-bottom: 40px;
}

.about-stats-c90b14 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.stat-item-2b20b6 {
    text-align: center;
    padding: 24px;
    background: var(--bg-color);
    border-radius: var(--radius-lg);
    transition: var(--transition-normal);
}

.stat-item-2b20b6:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.stat-number-06d0b7 {
    display: block;
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.stat-label-86b1bd {
    font-size: 14px;
    color: var(--text-secondary);
}

/* ==================== 新闻资讯 ==================== */
.news-150ed6 {
    padding: 120px 0;
    background: var(--bg-dark);
}

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

.news-card-de812a {
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition-normal);
}

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

.news-image-b92880 {
    position: relative;
    height: 200px;
    overflow: hidden;
}

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

.news-card-de812a:hover .news-image-b92880 img {
    transform: scale(1.1);
}

.news-date-541e8d {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--primary-color);
    color: var(--text-white);
    padding: 12px 16px;
    border-radius: var(--radius-md);
    text-align: center;
}

.date-day-339a46 {
    display: block;
    font-size: 20px;
    font-weight: 700;
}

.date-month-75a9fb {
    font-size: 12px;
    opacity: 0.9;
}

.news-content-b21fff {
    padding: 24px;
}

.news-title-9e816e {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-summary-2f75ee {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-meta-e2705d {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 13px;
    color: var(--text-light);
}

.news-time-977c7c {
    display: flex;
    align-items: center;
    gap: 6px;
}

.news-readmore-6ff3b4 {
    color: var(--primary-color);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition-fast);
}

.news-readmore-6ff3b4:hover {
    gap: 10px;
}

/* ==================== 常见问题 ==================== */
.faq-6b6582 {
    padding: 120px 0;
    background: var(--bg-light);
}

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

.faq-item-536a42 {
    margin-bottom: 16px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-light);
    transition: var(--transition-normal);
}

.faq-item-536a42:hover {
    border-color: var(--primary-color);
}

.faq-question-8c4c76 {
    display: flex;
    align-items: center;
    padding: 24px;
    background: var(--bg-color);
    cursor: pointer;
    transition: var(--transition-fast);
}

.faq-question-8c4c76:hover {
    background: rgba(201, 169, 98, 0.05);
}

.faq-icon-a5260c {
    color: var(--primary-color);
    font-size: 20px;
    margin-right: 16px;
}

.faq-text-1175ba {
    flex: 1;
    font-size: 17px;
    font-weight: 600;
    color: var(--text-primary);
}

.faq-toggle-2a5b13 {
    color: var(--primary-color);
    font-size: 16px;
    transition: var(--transition-fast);
}

.faq-item-536a42.active .faq-toggle-2a5b13 {
    transform: rotate(180deg);
}

.faq-answer-b42ac8 {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal);
}

.faq-item-536a42.active .faq-answer-b42ac8 {
    max-height: 300px;
}

.faq-answer-b42ac8 p {
    padding: 24px;
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.8;
    background: var(--bg-light);
}

/* ==================== 客户评价 ==================== */
.reviews-4211ab {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-dark) 100%);
}

.reviews-4211ab .section-title-366b21 {
    color: var(--text-white);
}

.reviews-4211ab .section-subtitle-0c494a {
    color: rgba(255, 255, 255, 0.7);
}

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

.review-card-573263 {
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: var(--transition-normal);
}

.review-card-573263:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.review-header-4e3637 {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 20px;
}

.reviewer-info-2fe515 {
    display: flex;
    align-items: center;
    gap: 16px;
}

.reviewer-avatar-b6f935 {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-full);
    object-fit: cover;
    border: 3px solid var(--primary-color);
}

.reviewer-details-3dee6e {
    flex: 1;
}

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

.reviewer-company-5aa043 {
    font-size: 14px;
    color: var(--text-secondary);
}

.review-rating-4ab4ce {
    color: var(--primary-color);
    font-size: 14px;
}

.review-content-0888b0 {
    margin-bottom: 20px;
}

.review-content-0888b0 p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.8;
    font-style: italic;
}

.review-footer-ca7a80 {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    font-size: 13px;
    color: var(--text-light);
}

.review-date-84e3c9 {
    display: flex;
    align-items: center;
    gap: 6px;
}

/* ==================== 联系我们 ==================== */
.contact-8cdd69 {
    padding: 120px 0;
    background: var(--bg-color);
}

.contact-wrapper-64aae8 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info-96aa76 {
    padding: 20px;
}

.contact-subtitle-d6939b {
    font-size: 18px;
    color: var(--text-secondary);
    margin-top: 16px;
}

.contact-details-c19c59 {
    margin: 40px 0;
}

.contact-item-957730 {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid var(--border-light);
}

.contact-icon-d50cb4 {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon-d50cb4 i {
    font-size: 20px;
    color: var(--text-white);
}

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

.contact-text-1b08a8 p {
    font-size: 15px;
    color: var(--text-secondary);
}

.social-links-57e3bf {
    display: flex;
    gap: 16px;
    margin-top: 30px;
}

.social-link-41ff1c {
    width: 48px;
    height: 48px;
    background: var(--bg-light);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--text-secondary);
    border: 1px solid var(--border-light);
    transition: var(--transition-normal);
}

.social-link-41ff1c:hover {
    background: var(--primary-color);
    color: var(--text-white);
    border-color: var(--primary-color);
    transform: translateY(-4px);
}

.contact-form-wrapper-fc388d {
    background: var(--bg-light);
    padding: 40px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.form-title-069c16 {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 30px;
    text-align: center;
}

.form-row-ec5658 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group-4907ec {
    margin-bottom: 20px;
}

.form-group-4907ec label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.form-group-4907ec input,
.form-group-4907ec select,
.form-group-4907ec textarea {
    width: 100%;
    padding: 14px 16px;
    font-size: 15px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    background: var(--bg-color);
    color: var(--text-primary);
    transition: var(--transition-fast);
    font-family: inherit;
}

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

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

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

/* ==================== 页脚 ==================== */
.footer-b893ad {
    background: var(--secondary-dark);
    color: var(--text-white);
    padding: 80px 0 30px;
}

.footer-content-3d00d9 {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand-46d496 .logo-10eadb {
    margin-bottom: 20px;
    color: var(--primary-color);
}

.footer-desc-606e93 {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

.footer-links-af6ab8 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-column-85a346 h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 24px;
    color: var(--primary-color);
}

.footer-column-85a346 ul li {
    margin-bottom: 12px;
}

.footer-column-85a346 ul a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition-fast);
}

.footer-column-85a346 ul a:hover {
    color: var(--primary-color);
    padding-left: 8px;
}

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

.footer-bottom-098d1f p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 8px;
}

/* ==================== 返回顶部按钮 ==================== */
.back-to-top-82d61e {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--text-white);
    border: none;
    border-radius: var(--radius-full);
    cursor: pointer;
    font-size: 18px;
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
    z-index: 999;
}

.back-to-top-82d61e.visible-1e1778 {
    opacity: 1;
    visibility: visible;
}

.back-to-top-82d61e:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

/* ==================== 响应式设计 ==================== */
@media (max-width: 1024px) {
    .services-grid-0a0781,
    .advantages-grid-257619,
    .products-grid-7265bf,
    .news-grid-28f1ba {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-wrapper-6b5b74,
    .contact-wrapper-64aae8 {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-image-d1984c {
        order: -1;
    }
    
    .footer-content-3d00d9 {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .nav-links-76f9a5 {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: var(--bg-light);
        flex-direction: column;
        padding: 20px;
        gap: 0;
        box-shadow: var(--shadow-md);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition-normal);
    }
    
    .nav-links-76f9a5.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-links-76f9a5 a {
        padding: 16px;
        border-bottom: 1px solid var(--border-light);
    }
    
    .hamburger-3ff856 {
        display: block;
    }
    
    .hero-9ec0f5 {
        min-height: 600px;
    }
    
    .hero-title-77d91e {
        font-size: 36px;
    }
    
    .hero-subtitle-a9bf40 {
        font-size: 16px;
    }
    
    .section-title-366b21 {
        font-size: 32px;
    }
    
    .services-grid-0a0781,
    .advantages-grid-257619,
    .products-grid-7265bf,
    .news-grid-28f1ba,
    .reviews-grid-14a740 {
        grid-template-columns: 1fr;
    }
    
    .about-stats-c90b14 {
        grid-template-columns: 1fr;
    }
    
    .form-row-ec5658 {
        grid-template-columns: 1fr;
    }
    
    .footer-links-af6ab8 {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .stat-item-2b20b6 {
        padding: 16px;
    }
    
    .stat-number-06d0b7 {
        font-size: 28px;
    }
    
    .product-image-bc641f {
        height: 200px;
    }
}

@media (max-width: 480px) {
    .container-5c98c1 {
        padding: 0 15px;
    }
    
    .hero-title-77d91e {
        font-size: 28px;
    }
    
    .hero-buttons-f59eb5 {
        flex-direction: column;
        gap: 12px;
    }
    
    .btn-c79820 {
        padding: 12px 24px;
        font-size: 14px;
    }
    
    .section-title-366b21 {
        font-size: 26px;
    }
    
    .service-card-1815d4,
    .advantage-card-0d679f {
        padding: 30px 20px;
    }
    
    .contact-form-wrapper-fc388d {
        padding: 24px;
    }
    
    .review-card-573263 {
        padding: 24px;
    }
}
