/* 重置和基础样式 */
* {
    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-5b5f7a {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 导航栏 */
.navbar-7b9793 {
    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-7b9793 .container-5b5f7a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

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

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

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

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

.nav-link-73d93f:hover {
    color: #1a4a87;
}

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

.nav-link-73d93f:hover:after {
    width: 100%;
}

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

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

/* 英雄部分 */
.hero-81e57e {
    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-81e57e::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-2f2c75 {
    position: relative;
    z-index: 2;
}

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

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

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

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

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

.stat-item-2cd4bc {
    text-align: center;
}

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

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

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

/* 按钮样式 */
.btn-7487a0 {
    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-8c13f6 {
    background: #1a4a87;
    color: #fff;
    box-shadow: 0 4px 15px rgba(74, 144, 226, 0.4);
}

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

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

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

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

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

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

.section-header-696c7d 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-696c7d p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

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

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

.service-card-2898c3 {
    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-2898c3:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(to right, #1a4a87, #3498db);
}

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

.service-icon-3b7523 {
    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-2898c3 h3 {
    font-size: 1.5rem;
    color: #1a4a87;
    margin-bottom: 20px;
    font-weight: 600;
}

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

.service-card-2898c3 ul {
    list-style: none;
    text-align: left;
}

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

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

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

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

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

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

.advantage-icon-7fcdc3 {
    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-c8b92f h3 {
    font-size: 1.4rem;
    color: #1a4a87;
    margin-bottom: 20px;
    font-weight: 600;
}

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

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

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

.about-text-74ef8e {
    order: 1;
}

.about-image-d5c3aa {
    order: 2;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.case-card-e24753 {
    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-e24753:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

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

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

.case-amount-691ea2 {
    font-size: 1.2rem;
    font-weight: 600;
}

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

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

.case-process-7abbc8 {
    margin: 25px 30px;
}

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

.case-process-7abbc8 ul {
    list-style: none;
    padding-left: 0;
}

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

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

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

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

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

.news-card-ae108d {
    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-ae108d:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.faq-item-be22fd.active .faq-answer-ea7859 {
    padding: 25px 30px;
    max-height: 200px;
}

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

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

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

.testimonial-card-2137ac {
    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-2137ac:before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 30px;
    font-size: 4rem;
    color: #1a4a87;
    opacity: 0.3;
    font-family: serif;
}

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

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

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

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

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

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

.rating-e953d5 {
    color: #ffc107;
}

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

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

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

.contact-icon-40f2d3 {
    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-2c9777 h3 {
    color: #1a4a87;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

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

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

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

.form-group-4e3c79 {
    margin-bottom: 25px;
}

.form-group-4e3c79 input,
.form-group-4e3c79 select,
.form-group-4e3c79 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-4e3c79 input:focus,
.form-group-4e3c79 select:focus,
.form-group-4e3c79 textarea:focus {
    outline: none;
    border-color: #1a4a87;
}

.form-group-4e3c79 textarea {
    resize: vertical;
    min-height: 120px;
}

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

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

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

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

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

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

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

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

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

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

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

.social-links-510069 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-510069 a:hover {
    background: #1a4a87;
    transform: translateY(-3px);
}

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

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

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

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

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

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

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

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

/* 返回顶部按钮 */
.back-to-top-8214ba {
    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-8214ba:hover {
    background: #357abd;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(74, 144, 226, 0.6);
}

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

/* 响应式设计 */
@media (max-width: 768px) {
    .nav-menu-6d1d98 {
        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-6d1d98.active {
        left: 0;
    }

    .nav-toggle-aa88fb {
        display: flex;
    }

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

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

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

    .hero-81e57e {
        padding: 100px 0 60px;
        min-height: auto;
    }

    .hero-81e57e h2 {
        font-size: 1.4rem;
    }

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

    .hero-stats-8f45a6 {
        /*flex-direction: column;*/
        gap: 10px;
    }
    .stat-number-41e334 {
        font-size: 1.5rem;
    }

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

    .section-header-696c7d h2 {
        font-size: 2rem;
    }

    .services-grid-f7f289,
    .advantages-grid-a8d7f6,
    .cases-grid-8e2511,
    .news-grid-5d71e0,
    .testimonials-grid-be2fac {
        grid-template-columns: 1fr;
    }

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

    .about-text-74ef8e {
        order: 2;
    }

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

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

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

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

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

    .container-5b5f7a {
        padding: 0 15px;
    }

    .service-card-2898c3,
    .advantage-card-c8b92f,
    .case-card-e24753,
    .news-card-ae108d,
    .testimonial-card-2137ac {
        padding: 30px 20px;
    }

    .contact-form-43455f {
        padding: 30px 20px;
    }

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

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

    .hero-81e57e h2 {
        font-size: 1.2rem;
    }

    .stat-number-41e334 {
        font-size: 1.5rem;
    }

    .section-header-696c7d h2 {
        font-size: 1.8rem;
    }

    .services-6cb7e4,
    .advantages-e8eb5b,
    .about-be69f7,
    .cases-8256d1,
    .news-124880,
    .faq-c9eecd,
    .testimonials-4c8757,
    .contact-efb1c7 {
        padding: 60px 0;
    }

    .service-card-2898c3,
    .news-card-ae108d,
    .testimonial-card-2137ac {
        padding: 25px 15px;
    }

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

    .testimonial-author-790a70 {
        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-2898c3,
.advantage-card-c8b92f,
.case-card-e24753,
.news-card-ae108d,
.testimonial-card-2137ac {
    animation: fadeInUp 0.6s ease forwards;
}

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

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

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