/* =================================================================
   证件制作公司专业主题样式
   作者: MiniMax Agent
   版本: 1.0
   ================================================================= */

/* CSS 变量定义 */
:root {
    /* 颜色系统 */
    --primary-color: #0D47A1;          /* 专业蓝 */
    --secondary-color: #42A5F5;        /* 浅天蓝 */
    --background-white: #FFFFFF;       /* 纯白 */
    --background-light: #F5F8FA;       /* 淡蓝灰 */
    --text-dark: #333333;              /* 深灰 */
    --text-muted: #666666;             /* 中灰 */
    --highlight-color: #FFC107;        /* 警示黄 */
    --gradient-bg: linear-gradient(135deg, #0D47A1, #42A5F5);
    
    /* 字体系统 */
    --font-family: 'Noto Sans SC', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-size-h1: 3.0rem;            /* 48px */
    --font-size-h2: 2.25rem;           /* 36px */
    --font-size-h3: 1.5rem;            /* 24px */
    --font-size-body: 1.0rem;          /* 16px */
    --font-size-small: 0.875rem;       /* 14px */
    
    /* 间距系统 */
    --spacing-xs: 0.5rem;              /* 8px */
    --spacing-sm: 1rem;                /* 16px */
    --spacing-md: 1.5rem;              /* 24px */
    --spacing-lg: 2rem;                /* 32px */
    --spacing-xl: 3rem;                /* 48px */
    --spacing-xxl: 5rem;               /* 80px */
    
    /* 其他设计变量 */
    --border-radius: 8px;
    --border-radius-lg: 12px;
    --shadow-light: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-medium: 0 4px 12px rgba(0,0,0,0.08);
    --shadow-heavy: 0 8px 24px rgba(0,0,0,0.12);
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
}

/* 基础重置和设置 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-family);
    font-size: var(--font-size-body);
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--background-white);
    overflow-x: hidden;
}

/* 容器 */
.container-80616a {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

/* 响应式图片 */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* 链接样式 */
a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition-fast);
}

a:hover {
    color: var(--secondary-color);
}

/* 导航栏 */
.navbar-de4a32 {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(13, 71, 161, 0.1);
    z-index: 1000;
    transition: var(--transition-normal);
}

.navbar-de4a32.scrolled {
    background: var(--background-white);
    box-shadow: var(--shadow-medium);
}

.navbar-de4a32 .container-80616a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--spacing-sm);
}

.navbar-brand-d8f1a3 .logo-208533 {
    font-size: var(--font-size-h3);
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
}

.navbar-nav-7e08c1 {
    display: flex;
    gap: var(--spacing-lg);
}

.nav-link-55912b {
    font-weight: 500;
    color: var(--text-dark);
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: var(--border-radius);
    transition: var(--transition-fast);
}

.nav-link-55912b:hover {
    background-color: var(--background-light);
    color: var(--primary-color);
}

.navbar-toggle-69f4bd {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--spacing-xs);
}

.navbar-toggle-69f4bd span {
    width: 24px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 2px 0;
    transition: var(--transition-fast);
}

/* Hero 区域 */
.hero-803087 {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--background-white);
    overflow: hidden;
}

.hero-background-b0e5b8 {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-bg);
    z-index: -1;
}

.hero-background-b0e5b8::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('/static/zhengjian6/images/bg.png');
    opacity: 0.3;
}

.hero-content-a219d1 {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.hero-title-a9276c {
    font-size: var(--font-size-h1);
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    line-height: 1.2;
}

.hero-subtitle-31456e {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-xl);
    opacity: 0.9;
    line-height: 1.5;
}

.hero-buttons-cb84a4 {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    flex-wrap: wrap;
}

/* 按钮样式 */
.btn-92cc92 {
    display: inline-block;
    padding: var(--spacing-sm) var(--spacing-lg);
    font-size: var(--font-size-body);
    font-weight: 500;
    text-align: center;
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition-normal);
    text-decoration: none;
    line-height: 1;
}

.btn-primary-7cfc0b {
    background-color: var(--background-white);
    color: var(--primary-color);
}

.btn-primary-7cfc0b:hover {
    background-color: var(--background-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

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

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

.btn-full-8ae622 {
    width: 100%;
}

/* 法律声明 */
.legal-notice-f132f9 {
    padding: var(--spacing-lg) 0;
    background-color: var(--background-light);
}

.notice-card-1de978 {
    display: flex;
    align-items: center;
    background-color: var(--background-white);
    padding: var(--spacing-md);
    border-radius: var(--border-radius-lg);
    border-left: 4px solid var(--highlight-color);
    box-shadow: var(--shadow-light);
}

.notice-icon-0d98fa {
    font-size: 2rem;
    margin-right: var(--spacing-md);
}

.notice-content-9a0396 h3 {
    margin-bottom: var(--spacing-xs);
    color: var(--primary-color);
    font-weight: 600;
}

.notice-content-9a0396 p {
    margin: 0;
    color: var(--text-muted);
}

/* 区块样式 */
section {
    padding: var(--spacing-xxl) 0;
}

.section-header-688072 {
    text-align: center;
    max-width: 600px;
    margin: 0 auto var(--spacing-xl);
}

.section-title-42a257 {
    font-size: var(--font-size-h2);
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: var(--spacing-md);
}

.section-subtitle-00238f {
    font-size: 1.125rem;
    color: var(--text-muted);
    margin: 0;
}

/* 服务项目 */
.services-b4c3ef {
    background-color: var(--background-light);
}

.services-grid-ff7abf {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.service-card-8ca666 {
    background-color: var(--background-white);
    padding: var(--spacing-lg);
    border-radius: var(--border-radius-lg);
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: var(--transition-normal);
    position: relative;
}

.service-card-8ca666:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-heavy);
}

.service-icon-7bdbec {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--spacing-md);
    border-radius: 50%;
    background-color: var(--background-light);
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon-7bdbec img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.service-title-74d551 {
    font-size: var(--font-size-h3);
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
}

.service-description-f6bdd2 {
    color: var(--text-muted);
    margin-bottom: var(--spacing-md);
    line-height: 1.6;
}

.service-tag-4ae0c3 {
    display: inline-block;
    background-color: var(--highlight-color);
    color: var(--text-dark);
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: var(--border-radius);
    font-size: var(--font-size-small);
    font-weight: 500;
}

/* 制作流程 */
.process-steps-98e94f {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.process-step-265a17 {
    text-align: center;
    position: relative;
}

.step-number-d64280 {
    width: 60px;
    height: 60px;
    background: var(--gradient-bg);
    color: var(--background-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto var(--spacing-md);
}

.step-title-c6f82e {
    font-size: var(--font-size-h3);
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
}

.step-description-063b81 {
    color: var(--text-muted);
    line-height: 1.6;
}

/* 公司介绍 */
.about-29fe81 {
    background-color: var(--background-light);
}

.about-content-4ae137 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
}

.about-description-2c394e {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: var(--spacing-lg);
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}


.about-features-16c5fc {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.feature-item-178bf9 {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.feature-icon-af576c {
    font-size: 2rem;
    width: 60px;
    text-align: center;
}

.feature-text-9d4d20 h4 {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: var(--spacing-xs);
}

.feature-text-9d4d20 p {
    color: var(--text-muted);
    margin: 0;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

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

.about-image-b8efbc img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

/* 客户评价样式 */
.reviews-grid-43014e {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.review-card-8c279d {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    position: relative;
}

.review-quote-9d244f {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 3rem;
    color: #e3f2fd;
}

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

.reviewer-avatar-53fb0c {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.reviewer-name-fdb0b8 {
    font-weight: 600;
    color: #212529;
}

.reviewer-role-69b733 {
    color: #6c757d;
    font-size: 0.9rem;
}

.rating-a66b18 {
    display: flex;
    gap: 3px;
    margin-bottom: 15px;
}

.star-bce320 {
    color: #ffc107;
    font-size: 1.1rem;
}

.review-text-fe41ea {
    color: #495057;
    line-height: 1.6;
    font-style: italic;
}

/* FAQ样式 */
#faq{
    background-color: var(--background-light);
}
.faq-container-9d0afa {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item-1fccab {
    background: white;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.faq-question-af4e29 {
    width: 100%;
    background: none;
    border: none;
    padding: 25px 20px;
    text-align: left;
    font-weight: 600;
    font-size: 1.1rem;
    color: #212529;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question-af4e29:hover {
    background: #f8f9fa;
}

.faq-toggle-8b9b21 {
    transition: transform 0.3s ease;
}

.faq-toggle-8b9b21.active {
    transform: rotate(180deg);
}

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

.faq-answer-3e40df.active {
    max-height: 500px;
}

.faq-answer-content-4266c8 {
    padding: 0 20px 25px;
    color: #6c757d;
    line-height: 1.6;
}

/* 新闻资讯样式 */
.news-grid-86800d {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.news-card-a9a6d2 {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.news-card-a9a6d2:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.news-content-431e19 {
    padding: 25px;
}

.news-meta-ad55fc {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.news-category-d60a24 {
    background: #e3f2fd;
    color: #0d6efd;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.news-date-a5db53 {
    color: #6c757d;
    font-size: 0.9rem;
}

.news-title-c4b75f {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #212529;
}

.news-excerpt-15296b {
    color: #6c757d;
    margin-bottom: 20px;
    line-height: 1.6;
}

.news-footer-cfd5a6 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid #dee2e6;
}

.read-time-8aded8 {
    color: #6c757d;
    font-size: 0.9rem;
}
/* Flink */
.flink-section-9cbf8e {
    background: white;
    color: #2d3748;
    padding: 30px 0;
}
.flink-header-006653{
    font-size: 20px;
    font-weight: 600;
    padding-bottom: 10px;
}
.flink-section-9cbf8e li{
    list-style: none;
    display: inline;
    padding-right: 20px;
}
.flink-section-9cbf8e a{
    color: #718096;
    text-decoration: none;
}

/* 屏幕宽度 ≥760px 时，限制最多 3 行 */
@media (min-width: 760px) {
    .about-description-2c394e {
        -webkit-line-clamp: 3; /* 限制 3 行 */
    }
    .feature-text-9d4d20 p {
        /* -webkit-line-clamp: 1;  */
    }
}

/* 屏幕宽度 <760px 时，不限制行数 */
@media (max-width: 759px) {
    .about-description-2c394e,.feature-text-9d4d20 p {
        -webkit-line-clamp: initial; /* 恢复默认（不限制） */
    }
}


/* 联系方式 */
.contact-content-923ece {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    margin-top: var(--spacing-xl);
}

.contact-info-85721c {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.contact-item-b245b1 {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    padding: var(--spacing-md);
    background-color: var(--background-light);
    border-radius: var(--border-radius);
}

.contact-icon-74ce5b {
    font-size: 1.5rem;
    width: 50px;
    text-align: center;
}

.contact-details-960ff6 h4 {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: var(--spacing-xs);
}

.contact-details-960ff6 p {
    color: var(--text-muted);
    margin: 0;
}

/* 表单样式 */
.form-019c73 {
    background-color: var(--background-white);
    padding: var(--spacing-lg);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-light);
}

.form-group-68f264 {
    margin-bottom: var(--spacing-md);
}

.form-group-68f264 label {
    display: block;
    margin-bottom: var(--spacing-xs);
    font-weight: 500;
    color: var(--text-dark);
}

.form-group-68f264 input,
.form-group-68f264 textarea {
    width: 100%;
    /* padding: var(--spacing-sm); */
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    font-family: var(--font-family);
    font-size: var(--font-size-body);
    transition: var(--transition-fast);
}

.form-group-68f264 input:focus,
.form-group-68f264 textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(13, 71, 161, 0.1);
}

.form-notice-b22301 {
    font-size: var(--font-size-small);
    color: var(--text-muted);
    text-align: center;
    margin-top: var(--spacing-sm);
    margin-bottom: 0;
}

/* 页脚 */
.footer-0ddc3e {
    background-color: var(--text-dark);
    color: var(--background-white);
    padding: var(--spacing-xl) 0 var(--spacing-md);
}

.footer-content-de30da {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.footer-section-cb819c h4 {
    font-weight: 600;
    margin-bottom: var(--spacing-md);
    color: var(--background-white);
}

.footer-section-cb819c p {
    color: #ccc;
    line-height: 1.6;
}

.footer-section-cb819c ul {
    list-style: none;
}

.footer-section-cb819c ul li {
    margin-bottom: var(--spacing-xs);
    color: #ccc;
}

.footer-bottom-a98ae2 {
    text-align: center;
    padding-top: var(--spacing-md);
    border-top: 1px solid #555;
    color: #ccc;
    font-size: var(--font-size-small);
}

.footer-bottom-a98ae2 a {
    color: var(--secondary-color);
}

/* 返回顶部按钮 */
.back-to-top-22b954 {
    position: fixed;
    bottom: 200px;
    right: var(--spacing-lg);
    width: 50px;
    height: 50px;
    background: var(--gradient-bg);
    color: var(--background-white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition-normal);
    z-index: 999;
}

.back-to-top-22b954.visible-3ef00c {
    opacity: 1;
    transform: translateY(0);
}

.back-to-top-22b954:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

/* 响应式设计 */
@media (max-width: 1024px) {
    :root {
        --font-size-h1: 2.5rem;
        --font-size-h2: 2rem;
        --spacing-xxl: 4rem;
    }
    
    .about-content-4ae137 {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .about-image-b8efbc {
        order: -1;
    }
}

@media (max-width: 768px) {
    :root {
        --font-size-h1: 2rem;
        --font-size-h2: 1.75rem;
        --font-size-h3: 1.25rem;
        --spacing-xl: 2rem;
        --spacing-xxl: 3rem;
    }
    
    .navbar-nav-7e08c1 {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: var(--background-white);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding: var(--spacing-lg);
        transition: var(--transition-normal);
        box-shadow: var(--shadow-medium);
    }
    
    .navbar-nav-7e08c1.active {
        left: 0;
    }
    
    .navbar-toggle-69f4bd {
        display: flex;
    }
    
    .navbar-toggle-69f4bd.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .navbar-toggle-69f4bd.active span:nth-child(2) {
        opacity: 0;
    }
    
    .navbar-toggle-69f4bd.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .hero-buttons-cb84a4 {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons-cb84a4 .btn-92cc92 {
        width: 250px;
    }
    
    .services-grid-ff7abf {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .process-steps-98e94f {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .contact-content-923ece {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .notice-card-1de978 {
        flex-direction: column;
        text-align: center;
    }
    
    .notice-icon-0d98fa {
        margin-right: 0;
        margin-bottom: var(--spacing-sm);
    }
    
    .about-features-16c5fc {
        gap: var(--spacing-sm);
    }
    .about-image-b8efbc img{
        height: auto;
    }
    
    .feature-item-178bf9 {
        flex-direction: column;
        text-align: center;
        gap: var(--spacing-sm);
    }
}

@media (max-width: 480px) {
    .container-80616a {
        padding: 0 var(--spacing-xs);
    }
    
    section {
        padding: var(--spacing-lg) 0;
    }
    
    .hero-title-a9276c {
        font-size: 1.75rem;
    }
    
    .hero-subtitle-31456e {
        font-size: 1rem;
    }
    
    .form-019c73 {
        padding: var(--spacing-md);
    }
    
    .back-to-top-22b954 {
        right: 20px;
    }
}

/* 无障碍设计 */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}

/* 深色模式支持 */
@media (prefers-color-scheme: dark) {
    /* 这里可以添加深色模式样式，但考虑到专业性，建议保持浅色主题 */
}

/* 打印样式 */
@media print {
    .navbar-de4a32,
    .back-to-top-22b954 {
        display: none;
    }
    
    * {
        background: white !important;
        color: black !important;
        box-shadow: none !important;
    }
    
    .hero-803087 {
        min-height: auto;
        padding: 2rem 0;
    }
    
    section {
        page-break-inside: avoid;
        padding: 1rem 0;
    }
}

/* 高对比度模式支持 */
@media (prefers-contrast: high) {
    :root {
        --primary-color: #000080;
        --secondary-color: #0066CC;
        --text-dark: #000000;
        --text-muted: #333333;
    }
    
    .btn-92cc92 {
        border: 2px solid currentColor;
    }
}

/* 焦点样式增强 */
*:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* 加载动画 */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up-2d3834 {
    animation: fadeInUp 0.6s ease-out;
}

/* 悬停状态优化 */
@media (hover: hover) {
    .service-card-8ca666:hover {
        transform: translateY(-8px);
    }
    
    .btn-92cc92:hover {
        transform: translateY(-2px);
    }
}

/* 触摸设备优化 */
@media (hover: none) {
    .service-card-8ca666:hover {
        transform: none;
    }
    
    .btn-92cc92:hover {
        transform: none;
    }
    
    .service-card-8ca666:active {
        transform: scale(0.98);
    }
}