/* ==================== 全局样式 ==================== */
:root {
    --primary-color: rgb(44, 62, 80);
    --primary-dark: rgb(34, 48, 62);
    --primary-light: rgb(54, 72, 90);
    --accent-gold: #D4AF37;
    --accent-gold-hover: #C5A028;
    --text-dark: #2C3E50;
    --text-light: #666666;
    --text-lighter: #999999;
    --bg-light: #F9F9F9;
    --bg-white: #FFFFFF;
    --bg-dark: #1A1A1A;
    --border-color: #E5E5E5;
    --shadow-sm: 0 2px 8px rgba(44, 62, 80, 0.08);
    --shadow-md: 0 4px 20px rgba(44, 62, 80, 0.12);
    --shadow-lg: 0 8px 40px rgba(44, 62, 80, 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', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-dark);
    background-color: var(--bg-white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', 'Microsoft YaHei', serif;
    font-weight: 600;
    line-height: 1.3;
    color: var(--primary-color);
}

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

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

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

.section-85aabd {
    padding: 80px 0;
}

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

.section-header-2e68f4 h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.section-header-2e68f4 h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--accent-gold);
}

.section-header-2e68f4 p {
    color: var(--text-light);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 20px auto 0;
}

.section-label-6eefb1 {
    display: inline-block;
    font-size: 0.875rem;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
    font-weight: 500;
}

.btn-07c803 {
    display: inline-block;
    padding: 14px 40px;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-align: center;
}

.btn-primary-3f9d70 {
    background: var(--primary-color);
    color: var(--bg-white);
    border: 2px solid var(--primary-color);
}

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

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

.btn-outline-ba513e:hover {
    background: var(--primary-color);
    color: var(--bg-white);
    transform: translateY(-2px);
}

/* ==================== 头部导航 ==================== */
.header-ef0b5f {
    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: var(--transition);
}

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

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

.logo-43dce4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 1px;
}

.logo-43dce4 span {
    color: var(--accent-gold);
}

.nav-menu-a36d61 {
    display: flex;
    list-style: none;
    gap: 40px;
}

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

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

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

.nav-menu-a36d61 a:hover::after {
    width: 100%;
}

.mobile-toggle-7bab29 {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
}

.mobile-toggle-7bab29 span {
    width: 25px;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

/* ==================== 首页横幅 ==================== */
.hero-2f3cde {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    overflow: hidden;
    padding-top: 80px;
}

.hero-2f3cde::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("../imgs/banner.jpg") center/cover;
    opacity: 0.2;
}

.hero-content-7e77b9 {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--bg-white);
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-2f3cde h1 {
    font-size: 3.5rem;
    color: var(--bg-white);
    margin-bottom: 25px;
    letter-spacing: 2px;
    animation: fadeInUp 0.8s ease;
}

.hero-subtitle-ec4689 {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 40px;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-buttons-1fa4fe {
    display: flex;
    gap: 20px;
    justify-content: center;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-btn-ffcd9c {
    padding: 16px 50px;
    font-size: 1.05rem;
    border-radius: 50px;
    transition: var(--transition);
}

.hero-2f3cde .btn-gold-ea4b19 {
    background: var(--accent-gold);
    color: var(--primary-color);
    border: 2px solid var(--accent-gold);
}

.hero-2f3cde .btn-gold-ea4b19:hover {
    background: var(--accent-gold-hover);
    border-color: var(--accent-gold-hover);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.scroll-indicator-64e077 {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-indicator-64e077 i {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.7);
}

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

/* ==================== 服务内容 ==================== */
.services-40cc52 {
    background: var(--bg-light);
}

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

.service-card-49b8b2 {
    background: var(--bg-white);
    padding: 45px 35px;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    text-align: center;
    border: 1px solid transparent;
}

.service-card-49b8b2:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-gold);
}

.service-icon-a367fa {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.service-icon-a367fa i {
    font-size: 2rem;
    color: var(--bg-white);
}

.service-icon-a367fa::before {
    content: '';
    position: absolute;
    inset: -3px;
    border: 2px solid var(--accent-gold);
    border-radius: 50%;
    opacity: 0.5;
}

.service-card-49b8b2 h3 {
    font-size: 1.35rem;
    margin-bottom: 15px;
}

.service-card-49b8b2 p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* ==================== 服务优势 ==================== */
.advantages-da6e63 {
    background: var(--primary-color);
    color: var(--bg-white);
    position: relative;
    overflow: hidden;
}

.advantages-da6e63::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.advantages-da6e63 .section-header-2e68f4 h2 {
    color: var(--bg-white);
}

.advantages-da6e63 .section-header-2e68f4 p {
    color: rgba(255, 255, 255, 0.8);
}

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

.advantage-item-4990bb {
    text-align: center;
    padding: 30px;
    position: relative;
}

.advantage-number-cc17a9 {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 700;
    color: var(--accent-gold);
    opacity: 0.3;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    line-height: 1;
}

.advantage-icon-98a00e {
    width: 70px;
    height: 70px;
    margin: 0 auto 25px;
    background: rgba(212, 175, 55, 0.15);
    border: 2px solid var(--accent-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.advantage-icon-98a00e i {
    font-size: 1.5rem;
    color: var(--accent-gold);
}

.advantage-item-4990bb h3 {
    font-size: 1.35rem;
    color: var(--bg-white);
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.advantage-item-4990bb p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    position: relative;
    z-index: 1;
}

/* ==================== 关于我们 ==================== */
.about-cab5d7 {
    background: var(--bg-white);
}

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

.about-image-519f4f {
    position: relative;
}

.about-image-main-1491d1 {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image-main-1491d1 img {
    width: 100%;
    height: 450px;
    object-fit: cover;
}

.about-image-accent-546a51 {
    position: absolute;
    top: 30px;
    left: 30px;
    right: -30px;
    bottom: -30px;
    border: 3px solid var(--accent-gold);
    border-radius: 15px;
    z-index: -1;
}

.about-content-92ea5c h3 {
    font-size: 1rem;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.about-content-92ea5c h2 {
    font-size: 2.25rem;
    margin-bottom: 25px;
    line-height: 1.4;
}

.about-intro-688130 {
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 20px;
    padding-left: 20px;
    border-left: 4px solid var(--accent-gold);
}

.about-content-92ea5c p {
    color: var(--text-light);
    margin-bottom: 15px;
}

.about-features-e2d2e6 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}

.about-feature-211216 {
    display: flex;
    align-items: center;
    gap: 12px;
}

.about-feature-211216 i {
    width: 40px;
    height: 40px;
    background: rgba(44, 62, 80, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-gold);
    font-size: 0.9rem;
}

.about-feature-211216 span {
    font-size: 0.95rem;
    color: var(--text-dark);
    font-weight: 500;
}

/* ==================== 产品案例 ==================== */
.products-7c8d84 {
    background: var(--bg-light);
}

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

.product-card-118359 {
    background: var(--bg-white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

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

.product-image-6c3bdc {
    height: 220px;
    overflow: hidden;
}

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

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

.product-content-0343f3 {
    padding: 25px;
}

.product-content-0343f3 h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.product-content-0343f3 p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.7;
}

.product-tag-db62c4 {
    display: inline-block;
    padding: 5px 12px;
    background: rgba(44, 62, 80, 0.08);
    color: var(--primary-color);
    font-size: 0.75rem;
    border-radius: 20px;
    margin-bottom: 12px;
    font-weight: 500;
}

/* ==================== 新闻资讯 ==================== */
.news-b494e7 {
    background: var(--bg-white);
}

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

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

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

.news-image-e638c3 {
    height: 180px;
    overflow: hidden;
}

.news-image-e638c3 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.news-card-108102:hover .news-image-e638c3 img {
    transform: scale(1.05);
}

.news-content-d8a4e2 {
    padding: 25px;
}

.news-meta-0a2f03 {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 12px;
    font-size: 0.85rem;
    color: var(--text-lighter);
}

.news-meta-0a2f03 i {
    color: var(--accent-gold);
}

.news-content-d8a4e2 h3 {
    font-size: 1.15rem;
    margin-bottom: 12px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-content-d8a4e2 h3:hover {
    color: var(--accent-gold);
}

.news-content-d8a4e2 p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.7;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-link-1d121f {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 15px;
    color: var(--primary-color);
    font-weight: 500;
    font-size: 0.9rem;
}

.news-link-1d121f:hover {
    color: var(--accent-gold);
}

.news-link-1d121f i {
    transition: transform 0.3s ease;
}

.news-link-1d121f:hover i {
    transform: translateX(5px);
}

/* ==================== 常见问题 ==================== */
.faq-4f52cc {
    background: var(--bg-light);
}

.faq-container-297ba2 {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item-59219d {
    background: var(--bg-white);
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid transparent;
    transition: var(--transition);
}

.faq-item-59219d:hover {
    border-color: var(--accent-gold);
}

.faq-question-b22649 {
    padding: 25px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question-b22649 h3 {
    font-size: 1.1rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 15px;
}

.faq-question-b22649 h3::before {
    content: 'Q';
    width: 35px;
    height: 35px;
    background: var(--primary-color);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 600;
    flex-shrink: 0;
}

.faq-toggle-38242d {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    flex-shrink: 0;
}

.faq-toggle-38242d i {
    font-size: 0.8rem;
    color: var(--primary-color);
    transition: var(--transition);
}

.faq-item-59219d.active .faq-toggle-38242d {
    background: var(--accent-gold);
}

.faq-item-59219d.active .faq-toggle-38242d i {
    color: var(--bg-white);
    transform: rotate(180deg);
}

.faq-answer-b59335 {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item-59219d.active .faq-answer-b59335 {
    max-height: 500px;
}

.faq-answer-content-280b37 {
    padding: 0 30px 25px;
    color: var(--text-light);
    padding-left: 80px;
    line-height: 1.8;
}

/* ==================== 客户评价 ==================== */
.reviews-6d4637 {
    background: var(--primary-color);
    position: relative;
    overflow: hidden;
}

.reviews-6d4637::before {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.reviews-6d4637 .section-header-2e68f4 h2,
.reviews-6d4637 .section-header-2e68f4 p {
    color: var(--bg-white);
}

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

.review-card-5e7fae {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 35px;
    transition: var(--transition);
}

.review-card-5e7fae:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
}

.review-header-6c4011 {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.reviewer-avatar-ca42da {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--accent-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-color);
    flex-shrink: 0;
    overflow: hidden;
}

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

.reviewer-info-fc294d h4 {
    font-size: 1.1rem;
    color: var(--bg-white);
    margin-bottom: 5px;
}

.reviewer-info-fc294d span {
    font-size: 0.85rem;
    color: var(--accent-gold);
}

.review-rating-79b808 {
    margin-bottom: 15px;
}

.review-rating-79b808 i {
    color: var(--accent-gold);
    font-size: 0.9rem;
    margin-right: 3px;
}

.review-content-100cf1 {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    line-height: 1.8;
    font-style: italic;
    position: relative;
    padding-left: 20px;
}

.review-content-100cf1::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -10px;
    font-size: 3rem;
    color: var(--accent-gold);
    opacity: 0.3;
    font-family: 'Playfair Display', serif;
}

/* ==================== 联系我们 ==================== */
.contact-f971a7 {
    background: var(--bg-white);
}

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

.contact-info-7f967a h3 {
    font-size: 1rem;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.contact-info-7f967a h2 {
    font-size: 2.25rem;
    margin-bottom: 20px;
}

.contact-info-7f967a > p {
    color: var(--text-light);
    margin-bottom: 30px;
}

.contact-details-94890d {
    margin-bottom: 30px;
}

.contact-item-6b8eec {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
}

.contact-icon-ac4fec {
    width: 50px;
    height: 50px;
    background: rgba(44, 62, 80, 0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon-ac4fec i {
    font-size: 1.2rem;
    color: var(--primary-color);
}

.contact-item-text-8687af h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.contact-item-text-8687af p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.contact-form-69d6c2 {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 20px;
}

.form-title-2e6325 {
    font-size: 1.5rem;
    margin-bottom: 30px;
    text-align: center;
}

.form-group-841ef3 {
    margin-bottom: 20px;
}

.form-group-841ef3 label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-dark);
    font-size: 0.9rem;
}

.form-group-841ef3 input,
.form-group-841ef3 textarea {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
    background: var(--bg-white);
}

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

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

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

.form-submit-efb4af {
    width: 100%;
    padding: 16px;
    background: var(--primary-color);
    color: var(--bg-white);
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.form-submit-efb4af:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}
/* Flink */
.flink-section-0078d4 {
    background: white;
    color: #2d3748;
    padding: 30px 0;
}
.flink-header-0bba8f{
    font-size: 20px;
    font-weight: 600;
    padding-bottom: 10px;
}
.flink-section-0078d4 li{
    list-style: none;
    display: inline;
    padding-right: 20px;
}
.flink-section-0078d4 a{
    color: #718096;
    text-decoration: none;
}
/* ==================== 页脚 ==================== */
.footer-c6c700 {
    background: var(--bg-dark);
    color: rgba(255, 255, 255, 0.8);
    padding: 60px 0 30px;
}

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

.footer-brand-af6267 .logo-43dce4 {
    color: var(--bg-white);
    margin-bottom: 20px;
    display: inline-block;
}

.footer-brand-af6267 p {
    font-size: 0.9rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-social-0a4033 {
    display: flex;
    gap: 12px;
}

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

.footer-social-0a4033 a:hover {
    background: var(--accent-gold);
    transform: translateY(-3px);
}

.footer-social-0a4033 a i {
    font-size: 1rem;
}

.footer-column-b0c157 h4 {
    color: var(--bg-white);
    font-size: 1.1rem;
    margin-bottom: 25px;
    position: relative;
    font-family: 'Noto Sans SC', sans-serif;
}

.footer-column-b0c157 h4::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--accent-gold);
}

.footer-links-019846 {
    list-style: none;
}

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

.footer-links-019846 a {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

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

.footer-contact-item-148a6e {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
}

.footer-contact-item-148a6e i {
    color: var(--accent-gold);
    margin-top: 3px;
}

.footer-contact-item-148a6e p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

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

.footer-bottom-aa17dc p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer-bottom-aa17dc a {
    color: var(--accent-gold);
}

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

.back-to-top-faece3.visible-745d89 {
    opacity: 1;
    visibility: visible;
}

.back-to-top-faece3:hover {
    background: var(--accent-gold);
    transform: translateY(-5px);
}

.back-to-top-faece3 i {
    font-size: 1.2rem;
}

/* ==================== 移动端响应式 ==================== */
@media (max-width: 1024px) {
    .services-grid-3ee23c,
    .advantages-grid-d1f0a4,
    .products-grid-4bd148,
    .news-grid-491e08,
    .reviews-grid-15d2f4 {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .about-wrapper-1d020f,
    .contact-wrapper-cdbff5 {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-image-519f4f {
        order: -1;
    }

    .hero-2f3cde h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .nav-menu-a36d61 {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: var(--bg-white);
        flex-direction: column;
        padding: 30px;
        gap: 20px;
        box-shadow: var(--shadow-md);
        transform: translateY(-150%);
        opacity: 0;
        transition: var(--transition);
        z-index: 999;
    }

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

    .mobile-toggle-7bab29 {
        display: flex;
    }

    .mobile-toggle-7bab29.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile-toggle-7bab29.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-toggle-7bab29.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .hero-2f3cde {
        padding-top: 100px;
        padding-bottom: 80px;
    }

    .hero-2f3cde h1 {
        font-size: 2rem;
    }

    .hero-subtitle-ec4689 {
        font-size: 1rem;
    }

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

    .section-85aabd {
        padding: 60px 0;
    }

    .section-header-2e68f4 h2 {
        font-size: 1.75rem;
    }

    .services-grid-3ee23c,
    .advantages-grid-d1f0a4,
    .products-grid-4bd148,
    .news-grid-491e08,
    .reviews-grid-15d2f4 {
        grid-template-columns: 1fr;
    }

    .about-features-e2d2e6 {
        grid-template-columns: 1fr;
    }

    .about-image-accent-546a51 {
        display: none;
    }

    .form-row-a2463a {
        grid-template-columns: 1fr;
    }

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

    .footer-social-0a4033 {
        justify-content: center;
    }

    .footer-column-b0c157 h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .back-to-top-faece3 {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}