/* 全局样式 */
:root {
    --primary-color: #3b82f6;    /* 主题天蓝色 */
    --secondary-color: #0ea5e9;   /* 辅助蓝色 */
    --dark-color: #333;
    --light-color: #f4f4f4;
    --text-color: #555;
    --container-width: 1200px;
    --base-font-size: 16px;
}

body {
    font-family: 'Microsoft YaHei', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.7;
    color: var(--text-color);
    background-color: #fff;
    font-size: var(--base-font-size);
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3 {
    color: var(--dark-color);
    font-weight: 600;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: color 0.3s ease;
}

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

/* 顶部导航栏 */
.main-header {
    background: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--dark-color);
    font-family: 'Microsoft YaHei', 'PingFang SC', 'Helvetica Neue', Arial, sans-serif;
    font-weight: 800;
    letter-spacing: 1px;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.logo a img {
    height: 40px;
    margin-right: 12px;
    vertical-align: middle;
    filter: drop-shadow(0 1px 2px rgba(0,0,0,0.1));
}

.nav-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    color: var(--dark-color);
    font-weight: 500;
    padding-bottom: 5px;
    border-bottom: 2px solid transparent;
}

.nav-links a:hover, .nav-links a.active {
    color: #3b82f6;
    border-bottom-color: var(--primary-color);
}

.mobile-nav-toggle {
    display: none;
    background: none;
    border: 1px solid var(--dark-color);
    color: var(--dark-color);
    padding: 8px 12px;
    border-radius: 5px;
    cursor: pointer;
}

/* 主视觉/横幅 */
.hero-section {
    background: linear-gradient(rgba(0, 86, 179, 0.6), rgba(0, 86, 179, 0.6)), url('https://images.unsplash.com/photo-1461749280684-dccba630e2f6?auto=format&fit=crop&w=1920&q=80') no-repeat center center/cover;
    min-height: 480px;
    display: flex;
    align-items: center;
    position: relative;
    color: #fff;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}
.hero-section .container {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 80px 0 60px 0;
}
.hero-section h1 {
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 24px;
    letter-spacing: 2px;
    text-shadow: 0 4px 16px rgba(0,0,0,0.18);
}
.hero-section p {
    font-size: 1.35rem;
    color: #f4f4f4;
    margin-bottom: 36px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.12);
}
.cta-button {
    background: #3b82f6;
    color: #fff;
    font-size: 1.2rem;
    padding: 16px 48px;
    border-radius: 32px;
    font-weight: 700;
    box-shadow: 0 2px 12px rgba(59,130,246,0.18);
    transition: background 0.3s, box-shadow 0.3s, transform 0.2s;
    border: none;
    outline: none;
    cursor: pointer;
}
.cta-button:hover {
    background: #0ea5e9;
    color: #fff;
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 6px 24px rgba(59,130,246,0.22);
}

/* 通用区块样式 */
.services-section, .news-section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    display: inline-block;
    position: relative;
}

.section-title p {
    font-size: 1.1rem;
    color: #777;
}

/* 服务项目 */
.services-section {
    background: linear-gradient(135deg, #f4f8fb 60%, #eaf6f1 100%);
    padding: 100px 0 90px 0;
    border-top: 6px solid #e0e7ef;
    border-bottom: 6px solid #e0e7ef;
    position: relative;
    z-index: 1;
}

.service-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-item {
    background: #1e3a8a;
    color: #fff;
    padding: 40px 30px;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(255,255,255,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(255,255,255,0.2);
}

.service-item img {
    margin-bottom: 20px;
    width: 80px;
    height: 80px;
}

.service-item h3 {
    margin-bottom: 15px;
    font-size: 1.4rem;
    color: #fff;
}

.service-item p {
    color: #e5e7eb;
}

/* 资讯中心 */
.news-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.news-item {
    background: #fff;
    padding: 25px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border-left: 4px solid var(--primary-color);
}

.news-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.news-content {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.news-thumbnail {
    flex-shrink: 0;
}

.news-text {
    flex: 1;
}

.news-item h3 {
    margin: 0 0 10px 0;
    font-size: 1.3rem;
    color: var(--dark-color);
}

.news-item h3 a {
    color: var(--dark-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.news-item p {
    color: var(--text-color);
    margin: 10px 0;
    line-height: 1.6;
}

.news-meta {
    font-size: 0.9rem;
    color: #9ca3af;
    margin-top: 15px;
}

.section-more-link {
    text-align: center;
    margin-top: 50px;
}

.cta-button-outline {
    background: transparent;
    color: var(--primary-color);
    padding: 12px 25px;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: bold;
    border: 2px solid var(--primary-color);
    transition: all 0.3s ease;
}

.cta-button-outline:hover {
    background: var(--primary-color);
    color: #fff;
}

/* 页脚 */
.main-footer {
    background: var(--dark-color);
    color: #ccc;
    padding-top: 60px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
}

.footer-about h3, .footer-links h3, .footer-qr h3 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.footer-about p {
    margin: 5px 0;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

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

.footer-links a {
    color: #ccc;
}

.footer-links a:hover {
    color: #fff;
}

.footer-qr img {
    width: 120px;
    height: 120px;
    background: #fff;
    padding: 5px;
}

.footer-bottom {
    border-top: 1px solid #444;
    padding: 20px 0;
    text-align: center;
    font-size: 0.9rem;
}

.footer-bottom a {
    color: #ccc;
}

/* 响应式设计 */
@media (max-width: 992px) {
    .service-items, .news-items {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    }
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-qr {
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 75px;
        left: 0;
        background: #fff;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }
    
    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        margin: 0;
        text-align: center;
    }
    
    .nav-links a {
        padding: 15px;
        display: block;
        width: 100%;
        border-bottom: 1px solid var(--light-color);
    }
    
    .nav-links a:hover, .nav-links a.active {
        border-bottom-color: var(--primary-color);
    }

    .mobile-nav-toggle {
        display: block;
    }
    
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
}
/* --- 关于我们页面样式 --- */

/* 页面通用横幅 */
.page-header {
    position: relative;
    background: linear-gradient(rgba(0, 40, 80, 0.45), rgba(0, 40, 80, 0.45)), url('images/abouttt.jpg') no-repeat center center/cover;
    min-height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
}
.page-header .container {
    position: relative;
    z-index: 2;
    text-align: center;
}
.page-header h1, .page-header p {
    color: #fff;
    text-shadow: 0 2px 8px rgba(0,0,0,0.25);
}

/* 公司简介区块 */
.about-section {
    padding: 80px 0;
    background: #fff;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-text {
    flex: 1;
}

.about-image {
    flex: 1;
}

.about-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.section-title-left {
    text-align: left;
    margin-bottom: 30px;
}

.section-title-left h2 {
    font-size: 2.5rem;
    margin: 0;
    position: relative;
    padding-bottom: 15px;
}

.section-title-left h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background-color: var(--primary-color);
}

/* 企业文化区块 */
.culture-section {
    padding: 80px 0;
    background-color: var(--light-color);
}

.culture-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.culture-item {
    background-color: #1e3a8a;
    color: #fff;
    padding: 30px;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(255,255,255,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.culture-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(255,255,255,0.2);
}

.culture-icon {
    margin: 0 auto 20px;
    width: 80px;
    height: 80px;
    background-color: #fff;
    color: #3b82f6;
    border-radius: 80%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.culture-icon span {
    font-size: 2rem;
    font-weight: bold;
}

.culture-item h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #fff;
}

.culture-item p {
    color: #e5e7eb;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .about-content {
        flex-direction: column;
    }
}
/* --- 服务项目页面样式 --- */
.services-detail-section {
    padding: 80px 0;
    background: #fff;
}

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

.service-card {
    border: 1px solid #374151;
    border-radius: 8px;
    padding: 30px;
    background-color: #1e3a8a;
    color: #fff;
    transition: all 0.3s ease-in-out;
    border-top: 4px solid var(--primary-color);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(255,255,255,0.2);
    border-color: var(--secondary-color);
}

.service-card-icon {
    margin-bottom: 20px;
}

.service-card-icon img {
    max-width: 60px;
    height: auto;
}

.service-card h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: #fff;
}

.service-card p {
    margin-bottom: 20px;
    color: #e5e7eb;
    min-height: 50px; /* 保持段落高度大致对齐 */
}

.service-card ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.service-card ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    color: #e5e7eb;
}

.service-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #3b82f6;
    font-weight: bold;
}
/* --- 资讯中心页面样式 --- */

.news-list-section {
    padding: 80px 0;
    background: #fff;
}

.news-list-container {
    max-width: 900px; /* 为了更好的阅读体验，内容区域稍窄一些 */
    margin: 0 auto;
}

.news-list-item {
    display: flex;
    gap: 30px;
    padding: 30px 0;
    border-bottom: 1px solid #f0f0f0; /* 使用更柔和的边框颜色 */
}

.news-list-item:first-child {
    padding-top: 0;
}

.news-list-item:last-child {
    border-bottom: none;
}

.news-date {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background-color: var(--light-color);
    border: 1px solid #e9ecef;
    border-radius: 12px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: var(--text-color);
    transition: all 0.3s ease;
}

.news-list-item:hover .news-date {
    background-color: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
    transform: scale(1.05);
}

.news-date .day {
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.1;
    color: var(--primary-color);
}

.news-list-item:hover .news-date .day {
    color: #fff;
}

.news-date .month-year {
    font-size: 0.8rem;
    font-weight: 500;
}

.news-item-content {
    display: flex;
    flex-direction: column;
}

.news-item-content h3 {
    margin-top: 0;
    margin-bottom: 10px;
}

.news-item-content h3 a {
    color: var(--dark-color);
    font-size: 1.5rem;
}

.news-item-content h3 a:hover {
    color: var(--primary-color);
}

.news-item-content p {
    margin-bottom: 15px;
    flex-grow: 1; 
}

.read-more-btn {
    font-weight: bold;
    color: var(--primary-color);
    align-self: flex-start;
}

/* 分页样式 */
.pagination {
    margin-top: 60px;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.page-link {
    display: inline-block;
    padding: 10px 15px;
    border: 1px solid #ddd;
    color: var(--text-color);
    border-radius: 5px;
    transition: all 0.3s ease;
}

.page-link:hover, .page-link.current {
    background-color: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}

.page-link.current {
    cursor: default;
}

/* 响应式调整 */
@media (max-width: 576px) {
    .news-list-item {
        flex-direction: column;
        align-items: flex-start;
    }
}
/* --- 保函查验页面样式 --- */

.verify-section {
    padding: 80px 0;
    background-color: var(--light-color);
}

.verify-box {
    max-width: 650px;
    margin: 0 auto;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    overflow: hidden;
}

.verify-box-header {
    background-color: var(--primary-color);
    padding: 20px 30px;
    color: #fff;
}

.verify-box-header h3 {
    margin: 0;
    font-size: 1.5rem;
    color: #fff;
}

.verify-form {
    padding: 30px 40px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--dark-color);
}

.form-group input[type="text"] {
    width: 100%;
    padding: 12px 15px;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box; /* Important for padding and width calculation */
    transition: border-color 0.3s ease;
}

.form-group input[type="text"]:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 5px rgba(0, 86, 179, 0.2);
}

.cta-button.full-width {
    width: 100%;
    padding: 15px;
    font-size: 1.2rem;
}

.verify-notes {
    background-color: #f8f9fa;
    padding: 20px 40px;
    font-size: 0.9rem;
    border-top: 1px solid #e9ecef;
}

.verify-notes h4 {
    margin-top: 0;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.verify-notes ul {
    list-style-type: disc;
    padding-left: 20px;
    margin: 0;
    color: var(--text-color);
}
/* --- 联系我们页面样式 --- */

.contact-section {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start;
}

.contact-info h3, .contact-form-container h3 {
    font-size: 2rem;
    margin-top: 0;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.contact-info h3::after, .contact-form-container h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
}

.info-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.info-list li {
    padding-left: 35px;
    position: relative;
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.6;
}

.info-list li::before {
    font-family: sans-serif; /* 简单符号占位 */
    position: absolute;
    left: 0;
    top: 0;
    width: 25px;
    text-align: center;
    color: var(--primary-color);
    font-size: 1.5rem;
}

.info-list li:nth-of-type(1)::before { content: '📍'; } /* 地址 */
.info-list li:nth-of-type(2)::before { content: '📞'; } /* 电话 */
.info-list li:nth-of-type(3)::before { content: '✉️'; } /* 邮箱 */
.info-list li:nth-of-type(4)::before { content: '📫'; } /* 邮编 */


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

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
    box-sizing: border-box;
}

.contact-form textarea {
    resize: vertical; /* 允许用户垂直调整大小 */
}

.map-section {
    width: 100%;
    height: 450px;
    background-color: var(--light-color);
}

.map-section img {
    object-fit: cover;
    height: 100%;
}


/* 联系页面响应式调整 */
@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 80px;
    }
}
/* --- 三级等保页面样式 --- */

.mlps-section {
    padding: 80px 0;
}

.mlps-intro {
    display: flex;
    gap: 50px;
    align-items: center;
    margin-bottom: 80px;
}

.mlps-intro-text {
    flex: 1.5;
}

.mlps-intro-text h2 {
    font-size: 2.5rem;
    margin-top: 0;
    margin-bottom: 20px;
}

.mlps-intro-img {
    flex: 1;
    text-align: center;
}

.mlps-intro-img img {
    max-width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-item {
    background-color: var(--light-color);
    padding: 30px;
    border-radius: 8px;
    border-left: 5px solid #3b82f6;
    transition: box-shadow 0.3s ease;
}

.feature-item:hover {
    box-shadow: 0 5px 20px rgba(0,0,0,0.07);
}

.feature-item h4 {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 1.3rem;
    color: var(--dark-color);
}

/* 响应式 */
@media (max-width: 768px) {
    .mlps-intro {
        flex-direction: column;
        text-align: center;
    }
}
/* --- 理赔服务页面样式 --- */

.timeline-section {
    padding: 80px 0;
    background-color: #fff;
}

.claims-timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 0;
}

/* 时间线的中心线 */
.claims-timeline::before {
    content: '';
    position: absolute;
    width: 3px;
    background-color: #3b82f6;
    opacity: 0.2;
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -1.5px;
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    width: 50%;
    box-sizing: border-box;
}

/* 将项目放在时间线左侧 */
.timeline-item:nth-child(odd) {
    left: 0;
    text-align: right;
}

/* 将项目放在时间线右侧 */
.timeline-item:nth-child(even) {
    left: 50%;
}

.timeline-content {
    padding: 20px 30px;
    background-color: var(--light-color);
    position: relative;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.timeline-content h3 {
    margin-top: 0;
    color: #3b82f6;
}

/* 项目上的圆点 */
.timeline-item::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    right: -10px;
    background-color: white;
    border: 4px solid #3b82f6;
    top: 35px;
    border-radius: 50%;
    z-index: 1;
}

.timeline-item:nth-child(even)::after {
    left: -10px;
}

/* 所需资料区块 */
.documents-section {
    padding: 80px 0;
    background-color: var(--light-color);
}

.documents-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.document-item {
    background-color: #fff;
    padding: 20px 30px;
    border-radius: 50px; /* 胶囊形状 */
    box-shadow: 0 4px 15px rgba(0,0,0,0.07);
    font-weight: 500;
    color: var(--text-color);
    transition: all 0.3s ease;
}

.document-item:hover {
    background-color: #3b82f6;
    color: #fff;
    transform: translateY(-5px);
}

/* 理赔页面响应式 */
@media (max-width: 768px) {
    .claims-timeline::before {
        left: 10px;
    }
    
    .timeline-item {
        width: 100%;
        padding-left: 50px;
        padding-right: 20px;
    }
    
    .timeline-item:nth-child(odd),
    .timeline-item:nth-child(even) {
        left: 0;
        text-align: left;
    }
    
    .timeline-item::after {
        left: 0;
    }
}
/* --- 新闻详情页面样式 --- */

.article-section {
    padding: 80px 0;
}

.article-container {
    max-width: 800px; /* 最佳阅读宽度 */
    margin: 0 auto;
}

.article-header h1 {
    font-size: 2.8rem;
    margin-top: 0;
    margin-bottom: 20px;
    line-height: 1.3;
}

.article-meta {
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--light-color);
    color: var(--text-color);
}

.article-content {
    font-size: 1.1rem;
    line-height: 1.8;
    white-space: pre-wrap; /* 保留换行和空格 */
    word-wrap: break-word; /* 长单词换行 */
    overflow-wrap: break-word; /* 现代浏览器的长单词换行 */
}

.article-content p {
    margin-bottom: 20px;
    white-space: pre-wrap; /* 保留换行和空格 */
}

.article-content img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 40px auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* 确保在移动设备上也能正确显示换行 */
@media (max-width: 768px) {
    .article-content {
        white-space: pre-wrap;
        word-break: break-word;
        overflow-wrap: break-word;
    }
}
/* --- Font Awesome 图标样式 --- */

/* 用于联系方式列表等场景的图标 */
.info-list li .fa-fw {
    width: 1.25em;
    text-align: center;
    margin-right: 8px; /* 图标和文字间的距离 */
    color: #3b82f6;
}

/* 用于服务列表前的✓图标 */
.service-card ul .fa-check {
    color: #3b82f6;
    margin-right: 8px;
}

/* 用于首页服务介绍的大图标 */
.service-item .fa-stack {
    margin-bottom: 20px;
    font-size: 3rem; /* 控制大图标的尺寸 */
    color: #3b82f6;
}

.service-item .fa-circle {
    color: rgba(59, 130, 246, 0.1);
}

/* 动画：区块滚动淡入 */
.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.4,0,0.2,1), transform 0.8s cubic-bezier(0.4,0,0.2,1);
}
.fade-in.visible {
    opacity: 1;
    transform: none;
}

/* 服务卡片、新闻卡片图片hover动画 */
.service-item, .news-item {
    transition: box-shadow 0.3s, transform 0.3s;
}
.service-item:hover, .news-item:hover {
    box-shadow: 0 12px 32px rgba(40,167,69,0.13), 0 2px 8px rgba(0,0,0,0.08);
    transform: translateY(-8px) scale(1.03);
}
.service-item img, .news-item img {
    transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
}
.service-item:hover img, .news-item:hover img {
    transform: scale(1.08) rotate(-2deg);
}

/* 按钮动画增强 */
.cta-button, .cta-button-outline {
    transition: background 0.3s, box-shadow 0.3s, transform 0.2s, color 0.3s;
}
.cta-button:active, .cta-button-outline:active {
    transform: scale(0.97);
}

.news-time-hover {
    display: inline-block;
    color: #888;
    transition: color 0.3s, font-weight 0.3s, text-shadow 0.3s;
    cursor: pointer;
}
.news-time-hover:hover {
    color: #1e90ff;
    font-weight: bold;
    text-shadow: 0 2px 8px rgba(30,144,255,0.2);
    background: linear-gradient(90deg, #e0f7fa 0%, #e3f2fd 100%);
    border-radius: 4px;
    padding: 2px 6px;
}

@media (max-width: 768px) {
    .news-content {
        flex-direction: column;
        gap: 15px;
    }
    
    .news-thumbnail img {
        width: 100% !important;
        height: 200px !important;
    }
}