/* =====================================================
   存折存单设计制作公司官网 - 样式文件
   Author: MiniMax Agent
   Description: 专业存折存单设计服务官网 - 影视教学用途
===================================================== */

/* ------------------- CSS 变量定义 ------------------- */
:root {
    /* 主题色彩 - 深蓝色系，传递信任感 */
    --primary-color: #1a5276;
    --primary-dark: #154360;
    --primary-light: #2e86de;
    --secondary-color: #547d8d;
    --accent-color: #d4a84b;
    --accent-light: #e8c97a;

    /* 中性色彩 */
    --white: #ffffff;
    --off-white: #f8f9fa;
    --light-gray: #e9ecef;
    --medium-gray: #adb5bd;
    --dark-gray: #495057;
    --text-dark: #2c3e50;
    --text-light: #636e72;

    /* 功能色彩 */
    --success: #27ae60;
    --warning: #f39c12;
    --danger: #e74c3c;
    --info: #3498db;

    /* 间距变量 */
    --section-padding: 80px 0;
    --container-padding: 0 20px;
    --card-padding: 30px;

    /* 阴影 */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.12);

    /* 圆角 */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 15px;
    --radius-xl: 25px;

    /* 过渡 */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Helvetica Neue', 'PingFang SC', 'Microsoft YaHei', Arial, 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: var(--transition-normal);
}

ul, ol {
    list-style: none;
}

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

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    color: var(--text-dark);
}

p {
    margin-bottom: 15px;
}

/* ------------------- 通用工具类 ------------------- */
.container-6702ca {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--container-padding);
}

.section-a88754 {
    padding: var(--section-padding);
}

.section-title-9bb1d9 {
    text-align: center;
    margin-bottom: 50px;
}

.section-title-9bb1d9 h2 {
    font-size: 36px;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title-9bb1d9 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-9bb1d9 p {
    font-size: 18px;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.text-center-cefba6 {
    text-align: center;
}

.text-left-3d7fbc {
    text-align: left;
}

.text-right-f25635 {
    text-align: right;
}

/* 按钮样式 */
.btn-36677c {
    display: inline-block;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 500;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition-normal);
    text-align: center;
}

.btn-primary-41e256 {
    background: var(--primary-color);
    color: var(--white);
}

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

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

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

.btn-accent-5354e1 {
    background: var(--accent-color);
    color: var(--white);
}

.btn-accent-5354e1:hover {
    background: var(--accent-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

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

.header-4ba71d.scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
}

.header-inner-c2fa12 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.logo-a52067 {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon-97c308 {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 20px;
}

.logo-text-3fb4c3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
}

.logo-text-3fb4c3 span {
    color: var(--accent-color);
}

.nav-menu-58e910 {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link-aa94ab {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-dark);
    position: relative;
    padding: 8px 0;
}

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

.nav-link-aa94ab:hover::after,
.nav-link-aa94ab.active::after {
    width: 100%;
}

.nav-link-aa94ab:hover {
    color: var(--primary-color);
}

.header-cta-34e606 {
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-phone-1ff3e8 {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-light);
}

.contact-phone-1ff3e8 i {
    color: var(--primary-color);
}

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

.mobile-toggle-6727ed span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: var(--transition-normal);
}

/* ------------------- 横幅区域 ------------------- */
.hero-7b2d9f {
    min-height: 100vh;
    padding-top: 80px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.hero-7b2d9f::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3-c6f6b9.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="%231a5276" stroke-width="0.5" opacity="0.1"/></svg>');
    background-size: 200px;
    opacity: 0.5;
}

.hero-inner-639b62 {
    display: flex;
    align-items: center;
    min-height: calc(100vh - 80px);
    padding: 50px 0;
}

.hero-content-31f89a {
    flex: 1;
    max-width: 600px;
}

.hero-badge-16e24d {
    display: inline-block;
    padding: 8px 20px;
    background: var(--primary-color);
    color: var(--white);
    font-size: 13px;
    font-weight: 500;
    border-radius: var(--radius-xl);
    margin-bottom: 25px;
    animation: fadeInUp 0.6s ease;
}

.hero-7b2d9f h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    animation: fadeInUp 0.6s ease 0.1s both;
}

.hero-7b2d9f h1 span {
    color: var(--primary-color);
}

.hero-description-045773 {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 35px;
    animation: fadeInUp 0.6s ease 0.2s both;
}

.hero-buttons-163d4a {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
    animation: fadeInUp 0.6s ease 0.3s both;
}

.hero-stats-0f7f84 {
    display: flex;
    gap: 40px;
    animation: fadeInUp 0.6s ease 0.4s both;
}

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

.stat-number-009c54 {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

.stat-label-e06ed7 {
    font-size: 14px;
    color: var(--text-light);
    margin-top: 5px;
}

.hero-image-124661 {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInRight 0.8s ease 0.3s both;
}

.hero-image-placeholder-58de8d {
    width: 100%;
    max-width: 500px;
    height: 400px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.hero-image-placeholder-58de8d::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3-c6f6b9.org/2000/svg" viewBox="0 0 80 80"><rect x="10" y="10" width="60" height="60" fill="none" stroke="white" stroke-width="0.5" opacity="0.2"/></svg>');
    animation: rotate 30s linear infinite;
}

.hero-image-placeholder-58de8d i {
    font-size: 80px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.hero-image-placeholder-58de8d p {
    font-size: 18px;
    position: relative;
    z-index: 1;
}

/* 免责声明徽章 */
.disclaimer-badge-126f9d {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(231, 76, 60, 0.95);
    color: var(--white);
    padding: 10px 15px;
    border-radius: var(--radius-md);
    font-size: 12px;
    max-width: 250px;
    animation: fadeIn 0.6s ease 0.5s both;
}

.disclaimer-badge-126f9d i {
    margin-right: 5px;
}

/* ------------------- 服务内容模块 ------------------- */
.services-bc4018 {
    background: var(--white);
}

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

.service-card-709d07 {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
    border: 1px solid var(--light-gray);
    position: relative;
    overflow: hidden;
}

.service-card-709d07::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-color);
    transform: scaleX(0);
    transition: var(--transition-normal);
}

.service-card-709d07:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

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

.service-icon-84145f {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.service-icon-84145f i {
    font-size: 30px;
    color: var(--white);
}

.service-card-709d07 h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.service-card-709d07 p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 20px;
}

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

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

.service-link-82673f i {
    transition: var(--transition-normal);
}

/* ------------------- 服务优势模块 ------------------- */
.advantages-debcdd {
    background: var(--off-white);
    position: relative;
    overflow: hidden;
}

.advantages-debcdd::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3-c6f6b9.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="1" fill="%231a5276" opacity="0.05"/></svg>');
    background-size: 30px;
}

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

.advantage-item-10254b {
    text-align: center;
    padding: 40px 25px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.advantage-item-10254b:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

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

.advantage-icon-a4cffa::after {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border: 2px dashed var(--accent-color);
    border-radius: 50%;
    animation: rotate 20s linear infinite;
    opacity: 0.3;
}

.advantage-icon-a4cffa i {
    font-size: 35px;
    color: var(--white);
}

.advantage-item-10254b h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.advantage-item-10254b p {
    font-size: 14px;
    color: var(--text-light);
    margin: 0;
}

/* ------------------- 服务流程模块 ------------------- */
.process-6409c8 {
    background: var(--white);
}

.process-steps-1f4128 {
    display: flex;
    justify-content: space-between;
    margin-top: 60px;
    position: relative;
}

.process-steps-1f4128::before {
    content: '';
    position: absolute;
    top: 50px;
    left: 10%;
    right: 10%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color), var(--primary-color));
    border-radius: 2px;
}

.process-step-cb2931 {
    flex: 1;
    text-align: center;
    position: relative;
    padding: 0 15px;
}

.step-number-af703d {
    width: 100px;
    height: 100px;
    background: var(--white);
    border: 3px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    position: relative;
    z-index: 1;
    transition: var(--transition-normal);
}

.step-number-af703d span {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
}

.process-step-cb2931:hover .step-number-af703d {
    background: var(--primary-color);
    transform: scale(1.1);
}

.process-step-cb2931:hover .step-number-af703d span {
    color: var(--white);
}

.process-step-cb2931 h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.process-step-cb2931 p {
    font-size: 14px;
    color: var(--text-light);
    margin: 0;
    line-height: 1.6;
}

/* ------------------- 关于我们模块 ------------------- */
.about-81cb8c {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.about-81cb8c::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3-c6f6b9.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="45" fill="none" stroke="white" stroke-width="0.5" opacity="0.1"/></svg>');
    border-radius: 50%;
}

.about-81cb8c::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3-c6f6b9.org/2000/svg" viewBox="0 0 100 100"><rect x="20" y="20" width="60" height="60" fill="none" stroke="white" stroke-width="0.5" opacity="0.1"/></svg>');
}

.about-81cb8c .section-title-9bb1d9 h2,
.about-81cb8c .section-title-9bb1d9 p {
    color: var(--white);
}

.about-81cb8c .section-title-9bb1d9 h2::after {
    background: var(--accent-color);
}

.about-content-caf589 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 50px;
}

.about-text-d2e03f p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    opacity: 0.9;
}

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

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

.about-feature-0dee96 i {
    font-size: 20px;
    color: var(--accent-color);
}

.about-feature-0dee96 span {
    font-size: 15px;
}

.about-image-0bb13e {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-image-placeholder-cc4951 {
    width: 100%;
    max-width: 500px;
    height: 400px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 2px dashed rgba(255, 255, 255, 0.3);
}

.about-image-placeholder-cc4951 i {
    font-size: 60px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 15px;
}

.about-image-placeholder-cc4951 p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

/* ------------------- 产品案例模块 ------------------- */
.cases-249def {
    background: var(--off-white);
}

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

.case-item-bc7940 {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    aspect-ratio: 4/3;
}

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

.case-placeholder-6324d0 {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.case-placeholder-6324d0 i {
    font-size: 50px;
    margin-bottom: 15px;
    opacity: 0.8;
}

.case-placeholder-6324d0 p {
    font-size: 14px;
    opacity: 0.8;
    margin: 0;
}

.case-overlay-a15809 {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(26, 82, 118, 0.95), rgba(26, 82, 118, 0.7));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-normal);
    padding: 30px;
    text-align: center;
}

.case-item-bc7940:hover .case-overlay-a15809 {
    opacity: 1;
}

.case-item-bc7940:hover .case-image-4e36c7,
.case-item-bc7940:hover .case-placeholder-6324d0 {
    transform: scale(1.1);
}

.case-overlay-a15809 h4 {
    color: var(--white);
    font-size: 18px;
    margin-bottom: 10px;
}

.case-overlay-a15809 p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    margin: 0;
}

.case-tag-1f2c81 {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--accent-color);
    color: var(--white);
    padding: 5px 12px;
    font-size: 12px;
    border-radius: var(--radius-sm);
}

/* ------------------- 新闻资讯模块 ------------------- */
.news-f50116 {
    background: var(--white);
}

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

.news-card-122093 {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
    border: 1px solid var(--light-gray);
}

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

.news-image-a48852 {
    width: 100%;
    height: 200px;
    object-fit: cover;
    background: var(--light-gray);
}

.news-image-placeholder-30907d {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-light));
    display: flex;
    align-items: center;
    justify-content: center;
}

.news-image-placeholder-30907d i {
    font-size: 40px;
    color: rgba(255, 255, 255, 0.6);
}

.news-content-6767a7 {
    padding: 25px;
}

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

.news-date-2419e2 {
    display: flex;
    align-items: center;
    gap: 5px;
}

.news-date-2419e2 i {
    color: var(--primary-color);
}

.news-read-time-54a7dd {
    color: var(--medium-gray);
}

.news-card-122093 h3 {
    font-size: 18px;
    margin-bottom: 12px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-card-122093 h3 a:hover {
    color: var(--primary-color);
}

.news-card-122093 p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin: 0;
}

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

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

/* ------------------- 常见问题模块 ------------------- */
.faq-0ad662 {
    background: var(--off-white);
}

.faq-container-0d5b1a {
    max-width: 800px;
    margin: 50px auto 0;
}

.faq-item-a4861b {
    background: var(--white);
    border-radius: var(--radius-lg);
    margin-bottom: 15px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    border: 1px solid var(--light-gray);
}

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

.faq-question-2ee1f8:hover {
    background: var(--light-gray);
}

.faq-question-2ee1f8 h4 {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-dark);
    flex: 1;
    padding-right: 15px;
}

.faq-icon-bd965a {
    width: 30px;
    height: 30px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 14px;
    transition: var(--transition-normal);
    flex-shrink: 0;
}

.faq-item-a4861b.active .faq-icon-bd965a {
    transform: rotate(45deg);
    background: var(--accent-color);
}

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

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

.faq-item-a4861b.active .faq-answer-8041f7 {
    max-height: 300px;
}

/* ------------------- 客户评价模块 ------------------- */
.testimonials-29a53a {
    background: var(--white);
}

.testimonials-slider-03773c {
    margin-top: 50px;
}

.testimonial-item-2f2dee {
    background: var(--off-white);
    padding: 40px;
    border-radius: var(--radius-lg);
    margin: 15px;
    position: relative;
}

.testimonial-item-2f2dee::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 30px;
    font-size: 80px;
    color: var(--primary-color);
    opacity: 0.1;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-content-37e517 {
    position: relative;
    z-index: 1;
}

.testimonial-text-deba23 {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author-bad1ae {
    display: flex;
    align-items: center;
    gap: 15px;
}

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

.avatar-placeholder-b1ca0c {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 24px;
    font-weight: 600;
}

.testimonial-info-8524e8 h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 3px;
}

.testimonial-info-8524e8 span {
    font-size: 14px;
    color: var(--text-light);
}

/* ------------------- 联系我们模块 ------------------- */
.contact-75835a {
    background: var(--off-white);
}

.contact-wrapper-c5d1b5 {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    margin-top: 50px;
}

.contact-info-3bd143 {
    background: var(--primary-color);
    padding: 40px;
    border-radius: var(--radius-lg);
    color: var(--white);
}

.contact-info-3bd143 h3 {
    font-size: 24px;
    color: var(--white);
    margin-bottom: 30px;
}

.contact-item-4c5943 {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}

.contact-item-4c5943:last-child {
    margin-bottom: 0;
}

.contact-icon-3ff146 {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon-3ff146 i {
    font-size: 20px;
    color: var(--accent-color);
}

.contact-text-324df6 h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 5px;
}

.contact-text-324df6 p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
    line-height: 1.5;
}

.contact-form-e5c3fc {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.contact-form-e5c3fc h3 {
    font-size: 24px;
    margin-bottom: 30px;
    color: var(--text-dark);
}

.form-group-6a4fa2 {
    margin-bottom: 20px;
}

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

.form-group-6a4fa2 label span {
    color: var(--danger);
}

.form-control-fc3e39 {
    width: 100%;
    padding: 12px 15px;
    font-size: 15px;
    border: 1px solid var(--light-gray);
    border-radius: var(--radius-md);
    transition: var(--transition-normal);
    background: var(--white);
}

.form-control-fc3e39:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(26, 82, 118, 0.1);
}

.form-control-fc3e39::placeholder {
    color: var(--medium-gray);
}

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

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

.form-submit-7bb39b {
    margin-top: 10px;
}

.form-submit-7bb39b .btn-36677c {
    width: 100%;
    padding: 15px;
    font-size: 16px;
}

/* ------------------- 友情链接模块 ------------------- */
.friendly-links-b85254 {
    background: var(--white);
    padding: 40px 0;
    border-top: 1px solid var(--light-gray);
}

.links-container-b3782a {
    text-align: center;
}

.links-title-d229e1 {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 20px;
    font-weight: 500;
}

.links-list-b82f14 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.link-item-672ec1 {
    display: inline-block;
    padding: 8px 20px;
    background: var(--off-white);
    border: 1px solid var(--light-gray);
    border-radius: var(--radius-md);
    font-size: 14px;
    color: var(--text-dark);
    transition: var(--transition-normal);
}

.link-item-672ec1:hover {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

/* ------------------- 页脚 ------------------- */
.footer-46a864 {
    background: var(--text-dark);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-top-0c45c9 {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-about-c13ae6 .logo-a52067 {
    margin-bottom: 20px;
}

.footer-about-c13ae6 .logo-text-3fb4c3 {
    color: var(--white);
}

.footer-about-c13ae6 p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 20px;
}

.social-links-888106 {
    display: flex;
    gap: 12px;
}

.social-link-bceed4 {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 18px;
    transition: var(--transition-normal);
}

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

.footer-column-2a2f99 h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

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

.footer-links-59a492 {
    list-style: none;
}

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

.footer-links-59a492 a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition-normal);
}

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

.footer-bottom-89083d {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright-1340c9 {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.footer-legal-aa0fa1 {
    display: flex;
    gap: 20px;
}

.footer-legal-aa0fa1 a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.footer-legal-aa0fa1 a:hover {
    color: var(--accent-color);
}

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

.back-to-top-7ec226.visible-75de23 {
    opacity: 1;
    visibility: visible;
}

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

/* ------------------- 动画定义 ------------------- */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

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

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* 滚动动画类 */
.animate-on-scroll-c58859 {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.animate-on-scroll-c58859.animated-8ca677 {
    opacity: 1;
    transform: translateY(0);
}

/* ------------------- 响应式设计 ------------------- */

/* 平板设备 */
@media (max-width: 1024px) {
    .hero-7b2d9f h1 {
        font-size: 40px;
    }

    .services-grid-c2bac0,
    .advantages-grid-6549b5,
    .cases-grid-194039,
    .news-grid-45bb50 {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-steps-1f4128 {
        flex-wrap: wrap;
        gap: 30px;
    }

    .process-steps-1f4128::before {
        display: none;
    }

    .process-step-cb2931 {
        flex: 0 0 calc(33.333% - 20px);
    }

    .about-content-caf589 {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

/* 手机设备 */
@media (max-width: 768px) {
    .section-a88754 {
        padding: 60px 0;
    }

    .section-title-9bb1d9 h2 {
        font-size: 28px;
    }

    .section-title-9bb1d9 p {
        font-size: 15px;
    }

    /* 移动端导航 */
    .nav-menu-58e910 {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        justify-content: center;
        padding: 30px;
        box-shadow: var(--shadow-lg);
        transition: var(--transition-normal);
        z-index: 1001;
    }

    .nav-menu-58e910.active {
        right: 0;
    }

    .nav-link-aa94ab {
        font-size: 18px;
        padding: 15px 0;
    }

    .mobile-toggle-6727ed {
        display: flex;
        z-index: 1002;
    }

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

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

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

    .header-cta-34e606 .contact-phone-1ff3e8 {
        display: none;
    }

    /* 移动端横幅 */
    .hero-7b2d9f {
        padding-top: 70px;
        min-height: auto;
    }

    .hero-inner-639b62 {
        flex-direction: column;
        text-align: center;
        padding: 30px 0;
    }

    .hero-content-31f89a {
        max-width: 100%;
    }

    .hero-7b2d9f h1 {
        font-size: 32px;
    }

    .hero-description-045773 {
        font-size: 16px;
    }

    .hero-buttons-163d4a {
        flex-direction: column;
    }

    .hero-stats-0f7f84 {
        justify-content: center;
    }

    .stat-item-f723be {
        flex: 1;
    }

    .hero-image-124661 {
        display: none;
        /*margin-top: 30px;*/
    }

    .hero-image-placeholder-58de8d {
        height: 280px;
    }

    /* 移动端服务 */
    .services-grid-c2bac0,
    .advantages-grid-6549b5,
    .cases-grid-194039,
    .news-grid-45bb50 {
        grid-template-columns: 1fr;
    }

    .process-step-cb2931 {
        flex: 0 0 100%;
    }

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

    /* 移动端联系 */
    .contact-wrapper-c5d1b5 {
        grid-template-columns: 1fr;
    }

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

    /* 移动端页脚 */
    .footer-top-0c45c9 {
        grid-template-columns: 1fr;
        text-align: center;
    }

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

    .social-links-888106 {
        justify-content: center;
    }

    .footer-bottom-89083d {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    /* 通用移动端调整 */
    .btn-36677c {
        width: 100%;
    }

    .service-card-709d07,
    .advantage-item-10254b,
    .news-card-122093 {
        padding: 25px 20px;
    }
    .back-to-top-7ec226{
        right: 20px;
    }
}

/* 小屏手机 */
@media (max-width: 480px) {
    .container-6702ca {
        padding: 0 15px;
    }

    .hero-7b2d9f h1 {
        font-size: 26px;
    }

    .hero-stats-0f7f84 {
        /*flex-direction: column;*/
        gap: 20px;
    }

    .stat-number-009c54 {
        font-size: 28px;
    }

    .section-title-9bb1d9 {
        margin-bottom: 35px;
    }

    .disclaimer-badge-126f9d {
        position: relative;
        bottom: auto;
        left: auto;
        margin-top: 20px;
        max-width: 100%;
    }
}