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

body {
    font-family: 'Microsoft YaHei', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

/* 导航栏 */
.navbar-0bf8dc {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(26, 74, 135, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar-0bf8dc .container-300494 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.nav-brand-ae9896 {
    display: flex;
    align-items: center;
    color: #fff;
    font-size: 24px;
    font-weight: bold;
    text-decoration: none;
}

.nav-brand-ae9896 i {
    margin-right: 10px;
    font-size: 28px;
    color: #1a4a87;
}

.nav-menu-7fcd22 {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link-21786e {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link-21786e:hover {
    color: #1a4a87;
}

.nav-link-21786e:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #1a4a87;
    transition: width 0.3s ease;
}

.nav-link-21786e:hover:after {
    width: 100%;
}

.nav-toggle-23fc31 {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle-23fc31 span {
    width: 25px;
    height: 3px;
    background-color: #fff;
    margin: 3px 0;
    transition: 0.3s;
}

/* 英雄部分 */
.hero-1c637b {
    background: linear-gradient(135deg, #1a4a87 50%50%, #2980b9 50%, #1e618d 50%);
    color: #fff;
    padding: 120px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-1c637b::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('imgs/banner.jpg') center/cover;
    opacity: 0.1;
    z-index: 1;
}

.hero-content-993b5b {
    position: relative;
    z-index: 2;
}

.hero-text-1db32a {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-1c637b h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-1c637b h2 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    font-weight: 400;
}

.hero-1c637b p {
    font-size: 1.3rem;
    margin-bottom: 50px;
    opacity: 0.9;
    line-height: 1.8;
}

.hero-stats-51f756 {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 50px;
}

.stat-item-50eaf8 {
    text-align: center;
}

.stat-number-977f46 {
    font-size: 3rem;
    font-weight: 700;
    color: #3498db;
    display: block;
}

.stat-label-728294 {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-top: 5px;
}

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

/* 按钮样式 */
.btn-2025c9 {
    display: inline-block;
    padding: 15px 35px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
}

.btn-primary-cc8cc4 {
    background: #1a4a87;
    color: #fff;
    box-shadow: 0 4px 15px rgba(74, 144, 226, 0.4);
}

.btn-primary-cc8cc4:hover {
    background: #357abd;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(74, 144, 226, 0.6);
}

.btn-secondary-11762c {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.btn-secondary-11762c:hover {
    background: #fff;
    color: #1a4a87;
    transform: translateY(-2px);
}

.btn-full-6b577c {
    width: 100%;
}

/* 节标题 */
.section-header-3c7999 {
    text-align: center;
    margin-bottom: 60px;
}

.section-header-3c7999 h2 {
    font-size: 2.5rem;
    color: #1a4a87;
    margin-bottom: 20px;
    font-weight: 700;
    position: relative;
}

.section-header-3c7999 h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, #1a4a87, #3498db);
    border-radius: 2px;
}

.section-header-3c7999 p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

/* 服务内容 */
.services-aa5589 {
    padding: 100px 0;
    background: #f8f9fa;
}

.services-grid-ca93a1 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.service-card-77f329 {
    background: #fff;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.service-card-77f329:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(to right, #1a4a87, #3498db);
}

.service-card-77f329:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.service-icon-5223cd {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1a4a87, #3498db);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: #fff;
    font-size: 2rem;
}

.service-card-77f329 h3 {
    font-size: 1.5rem;
    color: #1a4a87;
    margin-bottom: 20px;
    font-weight: 600;
}

.service-card-77f329 p {
    color: #666;
    margin-bottom: 25px;
    line-height: 1.7;
}

.service-card-77f329 ul {
    list-style: none;
    text-align: left;
}

.service-card-77f329 li {
    padding: 8px 0;
    color: #555;
    position: relative;
    padding-left: 25px;
}

.service-card-77f329 li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #1a4a87;
    font-weight: bold;
}

/* 服务优势 */
.advantages-80eed4 {
    padding: 100px 0;
    background: #fff;
}

.advantages-grid-c26a53 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.advantage-card-76f514 {
    text-align: center;
    padding: 40px 20px;
    transition: all 0.3s ease;
}

.advantage-card-76f514:hover {
    transform: translateY(-5px);
}

.advantage-icon-c703f6 {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #1a4a87, #3498db);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: #fff;
    font-size: 2.5rem;
    box-shadow: 0 10px 30px rgba(74, 144, 226, 0.3);
}

.advantage-card-76f514 h3 {
    font-size: 1.4rem;
    color: #1a4a87;
    margin-bottom: 20px;
    font-weight: 600;
}

.advantage-card-76f514 p {
    color: #666;
    line-height: 1.7;
}

/* 关于我们 */
.about-e0fdd2 {
    padding: 100px 0;
    background: #f8f9fa;
}

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

.about-text-9098a2 {
    order: 1;
}

.about-image-293a52 {
    order: 2;
}

.about-image-293a52 img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.about-description-906277 {
    color: #666;
    line-height: 1.8;
}

.about-description-906277 p {
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.about-features-872465 {
    margin: 40px 0;
}

.feature-item-b73509 {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: #1a4a87;
}

.feature-item-b73509 i {
    color: #1a4a87;
    margin-right: 15px;
    font-size: 1.2rem;
}

.company-values-1cca64 {
    margin-top: 40px;
}

.company-values-1cca64 h3 {
    color: #1a4a87;
    margin-bottom: 25px;
    font-size: 1.4rem;
}

.values-grid-3ec7a8 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.value-item-ecf234 {
    text-align: center;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.value-item-ecf234 h4 {
    color: #1a4a87;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.value-item-ecf234 p {
    color: #666;
    font-size: 0.9rem;
}

/* 成功案例 */
.cases-8c2320 {
    padding: 100px 0;
    background: #fff;
}

.cases-grid-4de7ff {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.case-card-92d9f1 {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.case-card-92d9f1:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.case-header-a44e08 {
    background: linear-gradient(135deg, #1a4a87, #3498db);
    color: #fff;
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.case-type-ff3d17 {
    font-size: 1rem;
    opacity: 0.9;
}

.case-amount-90455b {
    font-size: 1.2rem;
    font-weight: 600;
}

.case-card-92d9f1 h3 {
    color: #1a4a87;
    margin: 25px 30px 20px;
    font-size: 1.3rem;
    font-weight: 600;
}

.case-card-92d9f1 > p {
    color: #666;
    margin: 0 30px 25px;
    line-height: 1.6;
}

.case-process-2b52a2 {
    margin: 25px 30px;
}

.case-process-2b52a2 h4 {
    color: #1a4a87;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.case-process-2b52a2 ul {
    list-style: none;
    padding-left: 0;
}

.case-process-2b52a2 li {
    padding: 5px 0;
    color: #666;
    position: relative;
    padding-left: 20px;
}

.case-process-2b52a2 li:before {
    content: '→';
    position: absolute;
    left: 0;
    color: #1a4a87;
    font-weight: bold;
}

.case-result-cb94ad {
    background: #f8f9fa;
    padding: 20px 30px 30px;
    color: #1a4a87;
    font-size: 1.1rem;
}

/* 新闻资讯 */
.news-08896d {
    padding: 100px 0;
    background: #f8f9fa;
}

.news-grid-bb0239 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.news-card-e74bfc {
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
}

.news-card-e74bfc:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.news-date-339748 {
    color: #1a4a87;
    font-size: 0.9rem;
    margin-bottom: 15px;
    font-weight: 500;
}

.news-card-e74bfc h3 {
    color: #1a4a87;
    margin-bottom: 20px;
    font-size: 1.3rem;
    font-weight: 600;
    line-height: 1.4;
}

.news-card-e74bfc p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 25px;
}

.read-more-884d68 {
    color: #1a4a87;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.read-more-884d68:hover {
    color: #357abd;
}

/* 常见问题 */
.faq-0901de {
    padding: 100px 0;
    background: #fff;
}

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

.faq-item-da17a0 {
    margin-bottom: 20px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.faq-question-5a6af3 {
    background: #f8f9fa;
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question-5a6af3:hover {
    background: #e9ecef;
}

.faq-question-5a6af3 h3 {
    color: #1a4a87;
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
}

.faq-question-5a6af3 i {
    color: #1a4a87;
    transition: transform 0.3s ease;
}

.faq-item-da17a0.active .faq-question-5a6af3 i {
    transform: rotate(180deg);
}

.faq-answer-72708d {
    background: #fff;
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item-da17a0.active .faq-answer-72708d {
    padding: 25px 30px;
    max-height: 200px;
}

.faq-answer-72708d p {
    color: #666;
    line-height: 1.7;
    margin: 0;
}

/* 客户评价 */
.testimonials-9e58b5 {
    padding: 100px 0;
    background: #f8f9fa;
}

.testimonials-grid-091552 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.testimonial-card-86d737 {
    background: #fff;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
}

.testimonial-card-86d737:before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 30px;
    font-size: 4rem;
    color: #1a4a87;
    opacity: 0.3;
    font-family: serif;
}

.testimonial-card-86d737:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.testimonial-content-e4230f {
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.testimonial-content-e4230f p {
    color: #666;
    line-height: 1.8;
    font-size: 1.1rem;
    font-style: italic;
}

.testimonial-author-c9e28f {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.author-info-8cc841 h4 {
    color: #1a4a87;
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.author-info-8cc841 span {
    color: #888;
    font-size: 0.9rem;
}

.rating-7f3a30 {
    color: #ffc107;
}

/* 联系我们 */
.contact-a74c57 {
    padding: 100px 0;
    background: #fff;
}

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

.contact-item-fc85f5 {
    display: flex;
    align-items: flex-start;
    margin-bottom: 40px;
}

.contact-icon-74906e {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1a4a87, #3498db);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    color: #fff;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-details-ca954a h3 {
    color: #1a4a87;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.contact-details-ca954a p {
    color: #666;
    margin-bottom: 5px;
}

.contact-form-0e4a42 {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.contact-form-0e4a42 h3 {
    color: #1a4a87;
    margin-bottom: 30px;
    font-size: 1.5rem;
    text-align: center;
}

.form-group-8b57ef {
    margin-bottom: 25px;
}

.form-group-8b57ef input,
.form-group-8b57ef select,
.form-group-8b57ef textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background: #fff;
}

.form-group-8b57ef input:focus,
.form-group-8b57ef select:focus,
.form-group-8b57ef textarea:focus {
    outline: none;
    border-color: #1a4a87;
}

.form-group-8b57ef textarea {
    resize: vertical;
    min-height: 120px;
}

/* 页脚 */
.footer-4ccc1b {
    background: #1a4a87;
    color: #fff;
    padding: 60px 0 0;
}

.footer-content-2b6ddf {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section-de41f7 h3 {
    margin-bottom: 25px;
    font-size: 1.3rem;
    color: #1a4a87;
}

.footer-logo-856345 {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    font-size: 1.5rem;
    font-weight: bold;
}

.footer-logo-856345 i {
    margin-right: 10px;
    color: #1a4a87;
}

.footer-section-de41f7 p {
    line-height: 1.7;
    margin-bottom: 25px;
    opacity: 0.9;
}

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

.footer-section-de41f7 li {
    margin-bottom: 10px;
}

.footer-section-de41f7 a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section-de41f7 a:hover {
    color: #1a4a87;
}

.social-links-806a49 {
    display: flex;
    gap: 15px;
}

.social-links-806a49 a {
    width: 40px;
    height: 40px;
    background: rgba(74, 144, 226, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-links-806a49 a:hover {
    background: #1a4a87;
    transform: translateY(-3px);
}

.contact-info-footer-fe3164 {
    opacity: 0.9;
}

.contact-info-footer-fe3164 p {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.contact-info-footer-fe3164 i {
    margin-right: 10px;
    color: rgba(255,255,255,0.8);
    width: 20px;
}

.footer-bottom-500e70 {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 30px 0;
}

.footer-bottom-content-fcdbd0 {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-links-d3741e {
    display: flex;
    gap: 30px;
}

.footer-links-d3741e a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links-d3741e a:hover {
    color: #1a4a87;
}

/* 返回顶部按钮 */
.back-to-top-efed4b {
    position: fixed;
    bottom: 200px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: #1a4a87;
    color: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(74, 144, 226, 0.4);
}

.back-to-top-efed4b:hover {
    background: #357abd;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(74, 144, 226, 0.6);
}

.back-to-top-efed4b.show {
    display: flex;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .nav-menu-7fcd22 {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(26, 74, 135, 0.98);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 50px;
        gap: 30px;
        transition: left 0.3s ease;
    }

    .nav-menu-7fcd22.active {
        left: 0;
    }

    .nav-toggle-23fc31 {
        display: flex;
    }

    .nav-toggle-23fc31.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .nav-toggle-23fc31.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle-23fc31.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }

    .hero-1c637b {
        padding: 100px 0 60px;
        min-height: auto;
    }

    .hero-1c637b h1 {
        min-height: 100vh;
    }

    .hero-1c637b h2 {
        font-size: 1.4rem;
    }

    .hero-1c637b p {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }

    .hero-stats-51f756 {
        /*flex-direction: column;*/
        gap: 10px;
    }
    .stat-number-977f46 {
        font-size: 1.5rem;
    }

    .hero-buttons-61cd0d {
        /*flex-direction: column;*/
        align-items: center;
    }

    .section-header-3c7999 h2 {
        font-size: 2rem;
    }

    .services-grid-ca93a1,
    .advantages-grid-c26a53,
    .cases-grid-4de7ff,
    .news-grid-bb0239,
    .testimonials-grid-091552 {
        grid-template-columns: 1fr;
    }

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

    .about-text-9098a2 {
        order: 2;
    }

    .about-image-293a52 {
        order: 1;
    }

    .values-grid-3ec7a8 {
        grid-template-columns: 1fr;
    }

    .contact-content-fcb920 {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

    .footer-bottom-content-fcdbd0 {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .container-300494 {
        padding: 0 15px;
    }

    .service-card-77f329,
    .advantage-card-76f514,
    .case-card-92d9f1,
    .news-card-e74bfc,
    .testimonial-card-86d737 {
        padding: 30px 20px;
    }

    .contact-form-0e4a42 {
        padding: 30px 20px;
    }

    .back-to-top-efed4b {
        right: 20px;
    }
}

@media (max-width: 480px) {
    .hero-1c637b h1 {
        font-size: 2rem;
    }

    .hero-1c637b h2 {
        font-size: 1.2rem;
    }

    .stat-number-977f46 {
        font-size: 1.5rem;
    }

    .section-header-3c7999 h2 {
        font-size: 1.8rem;
    }

    .services-aa5589,
    .advantages-80eed4,
    .about-e0fdd2,
    .cases-8c2320,
    .news-08896d,
    .faq-0901de,
    .testimonials-9e58b5,
    .contact-a74c57 {
        padding: 60px 0;
    }

    .service-card-77f329,
    .news-card-e74bfc,
    .testimonial-card-86d737 {
        padding: 25px 15px;
    }

    .case-header-a44e08 {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .testimonial-author-c9e28f {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
}

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

.service-card-77f329,
.advantage-card-76f514,
.case-card-92d9f1,
.news-card-e74bfc,
.testimonial-card-86d737 {
    animation: fadeInUp 0.6s ease forwards;
}

/* 滚动效果 */
html {
    scroll-behavior: smooth;
}

/* 加载动画 */
.loading-c71653 {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.loading-c71653.loaded {
    opacity: 1;
    transform: translateY(0);
}