/* ===== CSS 变量定义 ===== */
:root {
    --primary-color: #104E8B;
    --primary-light: #1A5BA8;
    --primary-dark: #0A3A6E;
    --accent-color: #E6A23C;
    --accent-hover: #D4922C;
    --text-dark: #2C3E50;
    --text-gray: #5D6D7E;
    --text-light: #8E99A4;
    --bg-light: #F5F7FA;
    --bg-white: #FFFFFF;
    --border-color: #E8ECF0;
    --success-color: #27AE60;
    --shadow-sm: 0 2px 8px rgba(16, 78, 139, 0.08);
    --shadow-md: 0 4px 20px rgba(16, 78, 139, 0.12);
    --shadow-lg: 0 8px 30px rgba(16, 78, 139, 0.16);
    --transition: all 0.3s ease;
}

/* ===== 全局重置 ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Noto Sans SC', 'Microsoft YaHei', 'PingFang SC', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-dark);
    background-color: var(--bg-white);
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

/* ===== 通用容器 ===== */
.container-8223c8 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== 通用标题样式 ===== */
.section-title-3cfb32 {
    text-align: center;
    margin-bottom: 20px;
}

.section-title-3cfb32 h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

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

.section-title-3cfb32 p {
    font-size: 16px;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

/* ===== 通用按钮样式 ===== */
.btn-0e4cf1 {
    display: inline-block;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 500;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-align: center;
}

.btn-primary-82bba6 {
    background: var(--accent-color);
    color: #FFFFFF;
}

.btn-primary-82bba6:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline-0a5ed4 {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline-0a5ed4:hover {
    background: var(--primary-color);
    color: #FFFFFF;
}

/* ===== 通用卡片样式 ===== */
.card-705351 {
    background: var(--bg-white);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    overflow: hidden;
}

.card-705351:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

/* ===== 头部导航 ===== */
.header-9f8b06 {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--bg-white);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.header-9f8b06.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-md);
}

.header-inner-80f073 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

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

.logo-0f35be i {
    font-size: 28px;
    color: var(--accent-color);
}

.nav-menu-fc77e5 {
    display: flex;
    gap: 35px;
}

.nav-menu-fc77e5 a {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-dark);
    position: relative;
    padding: 5px 0;
}

.nav-menu-fc77e5 a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: var(--transition);
}

.nav-menu-fc77e5 a:hover::after,
.nav-menu-fc77e5 a.active::after {
    width: 100%;
}

.nav-menu-fc77e5 a:hover {
    color: var(--primary-color);
}

.header-contact-fa21c0 {
    display: flex;
    align-items: center;
    gap: 15px;
}

.phone-number-2e36f6 {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 8px;
}

.phone-number-2e36f6 i {
    color: var(--accent-color);
}

/* 移动端菜单按钮 */
.menu-toggle-db422d {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
}

.menu-toggle-db422d span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
    transition: var(--transition);
}

/* ===== Hero 区域 ===== */
.hero-5fdb01 {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    padding-top: 70px;
    overflow: hidden;
}

.hero-5fdb01::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: url('../imgs/banner.jpg') repeat;
    opacity: 0.15;
}

.hero-content-5302db {
    position: relative;
    z-index: 1;
    max-width: 900px;
    text-align: center;
}

.hero-5fdb01 h1 {
    font-size: 48px;
    font-weight: 700;
    color: #FFFFFF;
    line-height: 1.3;
    margin-bottom: 25px;
}

.hero-5fdb01 p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 35px;
    line-height: 1.8;
}

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

.hero-image-143ae3 {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    width: 45%;
    max-width: 500px;
}

.hero-stats-7d8a12 {
    display: flex;
    gap: 40px;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    justify-content: center;
}

.stat-item-e8b775 {
    text-align: center;
    width: 25vw;
}

.stat-number-226a4f {
    font-size: 36px;
    font-weight: 700;
    color: var(--accent-color);
}

.stat-label-047e8b {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 5px;
}

/* ===== 核心优势区域 ===== */
.advantages-3b008d {
    padding: 100px 0;
    background: var(--bg-light);
}

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

.advantage-card-f4e424 {
    background: var(--bg-white);
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.advantage-card-f4e424::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: var(--transition);
}

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

.advantage-card-f4e424:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.advantage-icon-a9e218 {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--bg-light) 0%, #E8F4FD 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.advantage-icon-a9e218 i {
    font-size: 36px;
    color: var(--primary-color);
}

.advantage-card-f4e424 h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.advantage-card-f4e424 p {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.7;
}

/* ===== 服务内容区域 ===== */
.services-2906d4 {
    padding: 100px 0;
    background: var(--bg-white);
}

.services-intro-02f522 {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}

.services-intro-02f522 p {
    font-size: 16px;
    color: var(--text-gray);
}

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

.service-card-915679 {
    background: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

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

.service-image-f92bfa {
    height: 200px;
    overflow: hidden;
}

.service-image-f92bfa img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.service-card-915679:hover .service-image-f92bfa img {
    transform: scale(1.1);
}

.service-content-0125f9 {
    padding: 25px;
}

.service-content-0125f9 h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.service-content-0125f9 p {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.7;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.service-link-b5b978 {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 15px;
    font-size: 14px;
    font-weight: 500;
    color: var(--primary-color);
}

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

/* ===== 关于我们区域 ===== */
.about-9bcd35 {
    padding: 100px 0;
    background: var(--bg-light);
}

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

.about-image-f34477 {
    position: relative;
}

.about-image-f34477 img {
    width: 100%;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
}

.about-image-f34477::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: 20px;
    bottom: 20px;
    border: 3px solid var(--primary-color);
    border-radius: 15px;
    z-index: -1;
    opacity: 0.3;
}

.about-content-6d85be h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.about-content-6d85be h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--accent-color);
    margin-top: 15px;
    border-radius: 2px;
}

.about-intro-3e206f {
    font-size: 16px;
    color: var(--text-gray);
    margin-bottom: 20px;
    font-weight: 500;
}

.about-content-6d85be p {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 15px;
}

.about-features-f03b0e {
    display: flex;
    gap: 30px;
    margin-top: 30px;
}

.about-feature-795c29 {
    display: flex;
    align-items: center;
    gap: 10px;
}

.about-feature-795c29 i {
    color: var(--success-color);
    font-size: 20px;
}

.about-feature-795c29 span {
    font-size: 14px;
    color: var(--text-dark);
    font-weight: 500;
}

/* ===== 产品案例区域 ===== */
.cases-4ce607 {
    padding: 100px 0;
    background: var(--bg-white);
}

.cases-grid-1bad83 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 50px;
}

.case-card-18e43b {
    background: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.case-card-18e43b:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.case-image-aea25f {
    height: 180px;
    overflow: hidden;
}

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

.case-card-18e43b:hover .case-image-aea25f img {
    transform: scale(1.1);
}

.case-content-4ed490 {
    padding: 20px;
}

.case-content-4ed490 h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.case-content-4ed490 p {
    font-size: 13px;
    color: var(--text-gray);
    line-height: 1.6;
}

/* ===== 新闻资讯区域 ===== */
.news-3052fb {
    padding: 100px 0;
    background: var(--bg-light);
}

.news-grid-91393a {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 50px;
}

.news-card-2fb7f1 {
    background: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.news-card-2fb7f1:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.news-image-5060e3 {
    height: 160px;
    overflow: hidden;
}

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

.news-card-2fb7f1:hover .news-image-5060e3 img {
    transform: scale(1.1);
}

.news-content-d803b2 {
    padding: 20px;
}

.news-meta-856b9d {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 12px;
}

.news-date-fc51e5 {
    font-size: 13px;
    color: var(--primary-color);
    font-weight: 500;
}

.news-duration-2ab690 {
    font-size: 12px;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 5px;
}

.news-content-d803b2 h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-content-d803b2 h3:hover {
    color: var(--primary-color);
}

.news-summary-eb7946 {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ===== 客户评价区域 ===== */
.testimonials-8ae13b {
    padding: 100px 0;
    background: var(--bg-white);
}

.testimonials-wrapper-210adc {
    max-width: 1200px;
    margin: 0 auto;
}

.testimonials-slider-e76748 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 50px;
}

.testimonial-card-133d78 {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 12px;
    position: relative;
}

.testimonial-card-133d78::before {
    content: '\201C';
    position: absolute;
    top: 20px;
    left: 25px;
    font-size: 60px;
    color: var(--primary-color);
    opacity: 0.1;
    font-family: Georgia, serif;
}

.testimonial-header-0375c9 {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

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

.reviewer-info-c985a6 h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
}

.reviewer-info-c985a6 span {
    font-size: 13px;
    color: var(--text-gray);
}

.testimonial-content-12a264 {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

.testimonial-rating-546653 {
    margin-top: 15px;
    color: var(--accent-color);
    font-size: 14px;
}

/* ===== 常见问题区域 ===== */
.faq-245325 {
    padding: 100px 0;
    background: var(--bg-light);
}

.faq-wrapper-d7f5e7 {
    max-width: 800px;
    margin: 0 auto;
}

.faq-list-19dc2a {
    margin-top: 50px;
}

.faq-item-01789c {
    background: var(--bg-white);
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.faq-question-03d958 {
    padding: 20px 25px;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

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

.faq-question-03d958 i {
    transition: var(--transition);
    color: var(--primary-color);
}

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

.faq-answer-bbd8b6 {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer-content-ddc3c1 {
    padding: 0 25px 20px;
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.8;
}

.faq-item-01789c.active .faq-answer-bbd8b6 {
    max-height: 500px;
}

/* ===== 联系我们区域 ===== */
.contact-6e2a79 {
    padding: 100px 0;
    background: var(--bg-white);
}

.contact-wrapper-676c14 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info-254145 h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.contact-info-254145 h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--accent-color);
    margin-top: 15px;
    border-radius: 2px;
}

.contact-desc-339734 {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 30px;
}

.contact-details-9cdf81 {
    margin-bottom: 30px;
}

.contact-item-aca4a9 {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-item-icon-48b819 {
    width: 45px;
    height: 45px;
    background: var(--bg-light);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-item-icon-48b819 i {
    font-size: 20px;
    color: var(--primary-color);
}

.contact-item-text-cf570a h4 {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 5px;
}

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

.contact-form-80ef25 {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 12px;
}

.contact-form-80ef25 h3 {
    font-size: 22px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 25px;
    text-align: center;
}

.form-group-77e8ff {
    margin-bottom: 20px;
}

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

.form-group-77e8ff input,
.form-group-77e8ff textarea,
.form-group-77e8ff select {
    width: 100%;
    padding: 14px 18px;
    font-size: 15px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background: var(--bg-white);
    transition: var(--transition);
    font-family: inherit;
}

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

.form-group-77e8ff textarea {
    resize: vertical;
    min-height: 100px;
}

.submit-btn-996d85 {
    width: 100%;
    padding: 16px;
    font-size: 16px;
    font-weight: 600;
    background: var(--primary-color);
    color: #FFFFFF;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
}

.submit-btn-996d85:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* ===== 友情链接区域 ===== */
.friend-links-6f0245 {
    padding: 40px 0;
    background: var(--bg-light);
    border-top: 1px solid var(--border-color);
}

.friend-links-title-4850db {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-gray);
    margin-bottom: 20px;
    text-align: center;
}

.friend-links-list-8c637e {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px 30px;
}

.friend-links-list-8c637e a {
    font-size: 14px;
    color: var(--text-gray);
    transition: var(--transition);
}

.friend-links-list-8c637e a:hover {
    color: var(--primary-color);
}

/* ===== 页脚 ===== */
.footer-7f877c {
    background: var(--primary-color);
    color: rgba(255, 255, 255, 0.9);
    padding: 60px 0 30px;
}

.footer-content-1a6e46 {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand-cb7b63 .logo-0f35be {
    color: #FFFFFF;
    margin-bottom: 20px;
}

.footer-brand-cb7b63 .logo-0f35be i {
    color: var(--accent-color);
}

.footer-brand-cb7b63 p {
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
}

.footer-title-789e48 {
    font-size: 16px;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-title-789e48::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--accent-color);
}

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

.footer-links-ff7b82 a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

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

.footer-bottom-31a5f8 {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.copyright-319f38 {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

.footer-social-c03e12 {
    display: flex;
    gap: 15px;
}

.footer-social-c03e12 a {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.footer-social-c03e12 a:hover {
    background: var(--accent-color);
}

.footer-social-c03e12 i {
    font-size: 16px;
}

/* ===== 移动端底部固定栏 ===== */
.mobile-bottom-bar-8a2b6e {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-white);
    padding: 10px 15px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 999;
}

.mobile-bottom-bar-8a2b6e a {
    flex: 1;
    text-align: center;
    padding: 8px;
    font-size: 12px;
    color: var(--text-gray);
}

.mobile-bottom-bar-8a2b6e a i {
    display: block;
    font-size: 20px;
    margin-bottom: 3px;
}

.mobile-bottom-bar-8a2b6e .call-btn-4db793 {
    background: var(--accent-color);
    color: #FFFFFF;
    border-radius: 25px;
    padding: 10px 20px;
    font-weight: 600;
}

.mobile-bottom-bar-8a2b6e .call-btn-4db793 i {
    display: inline;
    margin: 0;
}

/* ===== 响应式设计 ===== */
@media (max-width: 1024px) {
    .hero-5fdb01 h1 {
        font-size: 38px;
    }

    .hero-image-143ae3 {
        right: 2%;
        width: 42%;
    }

    .advantages-grid-bb24e4,
    .services-grid-6a712a {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

@media (max-width: 768px) {
    .header-inner-80f073 {
        height: 60px;
    }

    .nav-menu-fc77e5 {
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        background: var(--bg-white);
        flex-direction: column;
        padding: 20px;
        gap: 0;
        box-shadow: var(--shadow-md);
        transform: translateY(-150%);
        opacity: 0;
        transition: var(--transition);
    }

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

    .nav-menu-fc77e5 a {
        padding: 15px 0;
        border-bottom: 1px solid var(--border-color);
    }

    .menu-toggle-db422d {
        display: flex;
    }

    .header-contact-fa21c0 {
        display: none;
    }

    .hero-5fdb01 {
        min-height: auto;
        padding: 100px 0 80px;
    }

    .hero-content-5302db {
        text-align: center;
    }

    .hero-5fdb01 h1 {
        font-size: 28px;
    }

    .hero-5fdb01 p {
        font-size: 15px;
    }

    .hero-image-143ae3 {
        display: none;
    }

    .hero-stats-7d8a12 {
        justify-content: center;
    }

    .hero-buttons-a48899 {
        justify-content: center;
    }

    .section-title-3cfb32 h2 {
        font-size: 26px;
    }

    .advantages-grid-bb24e4,
    .services-grid-6a712a,
    .news-grid-91393a,
    .testimonials-slider-e76748 {
        grid-template-columns: 1fr;
    }

    .about-wrapper-d9743f {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image-f34477 {
        order: -1;
    }

    .cases-grid-1bad83 {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .case-image-aea25f {
        height: 120px;
    }

    .contact-wrapper-676c14 {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-content-1a6e46 {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-title-789e48::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-bottom-31a5f8 {
        flex-direction: column;
        text-align: center;
    }

    .mobile-bottom-bar-8a2b6e {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    body {
        padding-bottom: 70px;
    }
}

@media (max-width: 480px) {
    .container-8223c8 {
        padding: 0 15px;
    }

    .hero-5fdb01 h1 {
        font-size: 24px;
    }

    .hero-stats-7d8a12 {
        gap: 20px;
    }

    .stat-number-226a4f {
        font-size: 28px;
    }

    .advantages-grid-bb24e4 {
        grid-template-columns: 1fr;
    }

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

    .contact-form-80ef25 {
        padding: 25px;
    }

    .friend-links-list-8c637e {
        gap: 10px 15px;
    }
}