/* 基础样式重置 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Microsoft YaHei', Arial, sans-serif;
}

body {
    color: #333;
    line-height: 1.6;
    background-color: #f9f9f9;
}

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

/* 头部样式 */
header {
    background-color: #fff;
    padding: 20px 0;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.logo {
    font-size: 28px;
    font-weight: bold;
    color: #0066cc;
    margin-bottom: 10px;
}

.slogan {
    font-size: 16px;
    color: #666;
}

/* 导航样式 */
nav {
    background-color: #0066cc;
    padding: 15px 0;
}

nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
}

nav ul li {
    margin: 0 20px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    transition: all 0.3s;
    padding: 8px 15px;
    border-radius: 4px;
}

nav ul li a:hover, nav ul li a.active {
    background-color: rgba(255,255,255,0.2);
    color: #fff;
}

/* 页面横幅 */
.page-banner {
    background-color: #e9f2fb;
    background-image: linear-gradient(135deg, #e9f2fb 0%, #c2e9fb 100%);
    padding: 60px 0;
    text-align: center;
    margin-bottom: 40px;
}

.page-banner h1 {
    font-size: 36px;
    margin-bottom: 15px;
    color: #0066cc;
}

.page-banner p {
    font-size: 20px;
    color: #555;
}

/* 公司介绍卡片 */
.profile-card {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    padding: 30px;
    margin-bottom: 40px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.profile-content {
    flex: 1;
    min-width: 300px;
    padding-right: 30px;
}

.profile-logo {
    flex: 0 0 300px;
    text-align: center;
}

.profile-logo img {
    max-width: 100%;
    border-radius: 8px;
}

.profile-content h2 {
    color: #0066cc;
    margin-bottom: 10px;
    font-size: 28px;
}

.subtitle {
    color: #888;
    margin-bottom: 20px;
    font-size: 16px;
}

.description {
    line-height: 1.8;
    margin-bottom: 20px;
}

/* 服务网格 */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.service-item {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    padding: 25px;
    transition: transform 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
}

.service-item h3 {
    color: #0066cc;
    margin-bottom: 15px;
    font-size: 20px;
    position: relative;
    padding-bottom: 10px;
}

.service-item h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: #0066cc;
}

/* 企业价值观 */
.company-values {
    background-color: #f0f7ff;
    padding: 60px 0;
    margin-bottom: 40px;
}

.company-values h2 {
    text-align: center;
    margin-bottom: 40px;
    color: #0066cc;
    font-size: 28px;
}

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

.value-item {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
}

.value-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.value-item h3 {
    color: #0066cc;
    margin-bottom: 15px;
    font-size: 20px;
}

/* 页脚样式 */
footer {
    background-color: #333;
    color: white;
    padding: 40px 0;
}

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

.footer-info {
    flex: 1;
    min-width: 300px;
    margin-bottom: 20px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    margin-left: 20px;
    transition: color 0.3s;
}

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

/* 响应式设计 */
@media (max-width: 768px) {
    .profile-content {
        padding-right: 0;
        margin-bottom: 30px;
    }
    
    .profile-logo {
        flex: 0 0 100%;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        margin-top: 20px;
        justify-content: center;
    }
    
    .footer-links a {
        margin: 0 10px;
    }
    
    nav ul {
        flex-direction: column;
        align-items: center;
    }
    
    nav ul li {
        margin: 5px 0;
    }
}

/* 在现有CSS基础上添加产品页面的样式 */

/* Logo容器样式 */
.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.logo-img {
    height: 150px;
    margin-right: 15px;
}

.logo-text {
    text-align: left;
}

.product-name {
    color: #0066cc;
    font-size: 18px;
    font-weight: bold;
}

/* 英雄区域样式 */
.hero-banner {
    background-color: #e9f2fb;
    background-image: linear-gradient(135deg, #e9f2fb 0%, #c2e9fb 100%);
    padding: 60px 0;
    margin-bottom: 40px;
}

.hero-content {
    text-align: center;
    margin-bottom: 30px;
}

.hero-content h1 {

    margin-bottom: 15px;
    color: #0066cc;
    font-size: 36px;

}
.hero-content p {

    font-size: 20px;
    color: #555;

}

/*.subtitle {*/
/*    font-size: 18px;*/
/*    color: #666;*/
/*    letter-spacing: 1px;*/
/*}*/

.hero-image {
    text-align: center;
}

.hero-image img {
    max-width: 100%;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* 产品概述样式 */
.product-overview {
    padding: 60px 0;
    background-color: #f0f7ff;
}

.product-components {
    margin-top: 40px;
}

.component-item {
    display: flex;
    align-items: center;
    margin-bottom: 50px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    overflow: hidden;
}

.component-item.reverse {
    flex-direction: row-reverse;
}

.component-image {
    flex: 0 0 50%;
    padding: 20px;
}

.component-image img {
    width:540px;
    width:360px;
    border-radius: 5px;
}

.component-desc {
    flex: 0 0 50%;
    padding: 30px;
}

.component-desc h3 {
    color: #0066cc;
    margin-bottom: 15px;
    font-size: 20px;
}

/* 产品特点样式 */
.product-features {
    padding: 60px 0;
    background-color: white;
}

.features-list {
    margin: 40px 0;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.feature-icon {
    color: #0066cc;
    font-size: 20px;
    margin-right: 15px;
    font-weight: bold;
}

.feature-text {
    font-size: 16px;
    line-height: 1.6;
}

.feature-images {
    display: flex;
    justify-content: space-between;
    margin: 30px 0;
}

.feature-image {
    flex: 0 0 48%;
}

.feature-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.additional-features {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #f0f0f0;
    padding: 20px;
    border-radius: 8px;
    margin-top: 30px;
}

.additional-feature {
    flex: 0 0 48%;
}

.additional-feature p {
    margin-bottom: 10px;
    font-size: 16px;
}

.radiation-symbol {
    max-width: 120px;
    margin: 0 auto;
    display: block;
}

/* 配件部分样式 */
.product-accessories {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.accessory-desc {
    text-align: center;
    margin-bottom: 30px;
    font-size: 18px;
}

.accessory-images {
    display: flex;
    justify-content: space-between;
}

.accessory-image {
    flex: 0 0 48%;
}

.accessory-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* 连接功能部分 */
.connectivity-section {
    padding: 60px 0;
    background-color: white;
}

.connectivity-features {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
}

.connectivity-feature {
    flex: 0 0 48%;
    background-color: #f0f7ff;
    padding: 25px;
    border-radius: 8px;
}

.connectivity-feature h3 {
    color: #0066cc;
    margin-bottom: 15px;
}

.image-quality {
    background-color: #f0f7ff;
    padding: 25px;
    border-radius: 8px;
}

.image-quality h3 {
    color: #0066cc;
    margin-bottom: 15px;
}

.quality-images {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.quality-images img {
    width: 48%;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* 产品展示部分 */
.product-showcase {
    padding: 60px 0;
    background-color: #f0f7ff;
    text-align: center;
}

.showcase-image {
    margin-bottom: 30px;
}

.showcase-image img {
    max-width: 300px;
    border-radius: 8px;
}

.showcase-text h2 {
    margin-bottom: 10px;
}

/* 页脚样式增强 */
.footer-logo {
    text-align: center;
    margin: 0 20px;
}

.footer-logo-img {
    height: 50px;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .component-item, .component-item.reverse {
        flex-direction: column;
    }
    
    .component-image, .component-desc {
        flex: 0 0 100%;
    }
    
    .feature-images, .accessory-images, .connectivity-features {
        flex-direction: column;
    }
    
    .feature-image, .accessory-image, .connectivity-feature {
        flex: 0 0 100%;
        margin-bottom: 20px;
    }
    
    .additional-features {
        flex-direction: column;
    }
    
    .additional-feature {
        flex: 0 0 100%;
        margin-bottom: 20px;
    }
    
    .quality-images {
        flex-direction: column;
    }
    
    .quality-images img {
        width: 100%;
        margin-bottom: 15px;
    }
}

/* 场景应用页面样式 */

/* 应用场景概览图 */
.application-overview {
    padding: 50px 0;
    background-color: #f0f0f0;
}

.application-map {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 0;
}

.map-center {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.center-circle {
    width: 120px;
    height: 120px;
    background-color: #666;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
}

.center-circle h3 {
    font-size: 22px;
    line-height: 1.3;
}

.map-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.map-item {
    display: flex;
    align-items: center;
    position: relative;
}

.map-item-box {
    background-color: #f8f8f8;
    border: 1px solid #ddd;
    border-radius: 20px;
    padding: 8px 20px;
    font-size: 16px;
    min-width: 120px;
    text-align: center;
}

.map-item-line {
    height: 2px;
    background-color: #ddd;
    flex-grow: 1;
    margin: 0 10px;
}

.map-item-desc {
    color: #666;
    font-size: 14px;
}

/* 应用场景部分 */
.application-hospital,
.application-medical,
.application-isolation,
.application-school {
    padding: 60px 0;
    border-bottom: 1px solid #eee;
}

.application-hospital {
    background-color: #fff;
}

.application-medical {
    background-color: #f9f9f9;
}

.application-isolation {
    background-color: #fff;
}

.application-school {
    background-color: #f9f9f9;
}

.application-desc {
    margin-bottom: 30px;
    font-size: 16px;
    color: #555;
}

.application-images {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;

}

.application-images:last-child {
    margin-bottom: 0;
}

.application-image {
    flex: 0 0 48%;
}

.application-image img {
    width: 560px;
    height: 360px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* 应用优势部分 */
.application-advantages {
    padding: 60px 0;
    background-color: #f0f7ff;
}

.application-advantages h2 {
    text-align: center;
    margin-bottom: 40px;
}

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

.advantage-item {
    background-color: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    text-align: center;
    transition: transform 0.3s ease;
}

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

.advantage-item h3 {
    color: #0066cc;
    margin-bottom: 15px;
    font-size: 20px;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .application-images {
        flex-direction: column;
    }
    
    .application-image {
        flex: 0 0 100%;
        margin-bottom: 20px;
    }
    
    .application-image:last-child {
        margin-bottom: 0;
    }
    
    .map-item {
        flex-direction: column;
        gap: 10px;
    }
    
    .map-item-line {
        display: none;
    }
    
    .map-item-desc {
        text-align: center;
    }
}

/* 首页样式 */
/* 修改banner样式，使用背景图 */
.home-banner {
    background-color: #f0f7ff;
    padding: 100px 0;
    margin-bottom: 60px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

/* 添加暗色遮罩，确保文字清晰可见 */
.home-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, #e9f2fb 0%,   #c2e9fb 100%);
    z-index: 1;
}

.home-banner .container {
    position: relative;
    z-index: 2;
}

.banner-content {
    max-width: 600px;
    margin-bottom: 30px;
    color: white;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.banner-content h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: white;
}

.banner-content p {
    font-size: 20px;
    margin-bottom: 30px;
    color: rgba(255,255,255,0.9);
}

.banner-buttons {
    display: flex;
    gap: 15px;
}

/* 调整按钮样式，使其在深色背景上更加突出 */
.btn-primary {
    background-color: #0066cc;
    color: white;
    border: none;
}

.btn-secondary {
    background-color: rgba(255,255,255,0.9);
    color: #333;
    border: none;
}

.btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-primary {
    background-color: #0066cc;
    color: white;
}

.btn-primary:hover {
    background-color: #0055aa;
}

.btn-secondary {
    background-color: #f0f0f0;
    color: #333;
}

.btn-secondary:hover {
    background-color: #e0e0e0;
}

.banner-image img {
    max-width: 100%;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.section-title {
    text-align: center;
    font-size: 32px;
    color: #333;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #0066cc;
}

/* 特点部分 */
.home-features {
    padding: 60px 0;
    background-color: #fff;
    margin-bottom: 60px;
}

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

.feature-box {
    text-align: center;
    padding: 30px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s;
    background-color: #fff;
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.feature-icon {
    margin-bottom: 20px;
}

.feature-icon img {
    width: 60px;
    height: 60px;
}

.feature-box h3 {
    color: #0066cc;
    margin-bottom: 15px;
    font-size: 20px;
}

/* 应用场景部分 */
.home-applications {
    padding: 60px 0;
    background-color: #f9f9f9;
    margin-bottom: 60px;
}

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

.application-card {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    transition: transform 0.3s;
    background-color: #fff;
}

.application-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.application-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.application-content {
    padding: 20px;
}

.application-content h3 {
    color: #0066cc;
    margin-bottom: 10px;
    font-size: 20px;
}

.read-more {
    display: inline-block;
    margin-top: 15px;
    color: #0066cc;
    font-weight: bold;
    text-decoration: none;
}

.read-more:hover {
    text-decoration: underline;
}

/* 关于部分 */
.home-about {
    padding: 60px 0;
    background-color: #fff;
    margin-bottom: 60px;
}

.home-about .container {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.about-content {
    flex: 1;
    min-width: 300px;
    padding-right: 40px;
}

.about-image {
    flex: 0 0 400px;
}

.about-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.about-values {
    display: flex;
    flex-wrap: wrap;
    margin: 30px 0;
}

.value {
    flex: 0 0 50%;
    margin-bottom: 20px;
}

.value h4 {
    color: #0066cc;
    margin-bottom: 5px;
    font-size: 18px;
}

/* 联系部分 */
.home-contact {
    padding: 60px 0;
    background-color: #f0f7ff;
}

.contact-intro {
    text-align: center;
    margin-bottom: 40px;
    font-size: 18px;
    color: #666;
}

.contact-info {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
}

.contact-item {
    flex: 0 0 calc(33.333% - 20px);
    min-width: 250px;
    display: flex;
    align-items: center;
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.contact-icon {
    margin-right: 15px;
}

.contact-icon img {
    width: 40px;
    height: 40px;
}

.contact-text h3 {
    color: #0066cc;
    margin-bottom: 5px;
    font-size: 18px;
}

.home-contact .btn {
    display: block;
    width: 200px;
    text-align: center;
    margin: 0 auto;
}

/* 联系我们页面样式 */
.contact-info-section {
    padding: 60px 0;
    background-color: #fff;
}

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

.contact-card {
    text-align: center;
    padding: 30px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s;
    background-color: #f9f9f9;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.contact-card .contact-icon {
    margin: 0 auto 20px;
}

.contact-card .contact-icon img {
    width: 50px;
    height: 50px;
}

.contact-card h3 {
    color: #0066cc;
    margin-bottom: 15px;
    font-size: 20px;
}

.contact-card p {
    margin-bottom: 10px;
}

/* 联系表单部分 */
.contact-form-section {
    padding: 60px 0;
    background-color: #f0f7ff;
}

.form-intro {
    text-align: center;
    margin-bottom: 40px;
    font-size: 18px;
    color: #666;
}

.contact-form {
    max-width: 800px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

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

.form-group.full-width {
    grid-column: span 2;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
}

.form-group textarea {
    resize: vertical;
}

.form-submit {
    grid-column: span 2;
    text-align: center;
    margin-top: 20px;
}

/* 地图部分 */
.map-section {
    padding: 60px 0;
    background-color: #fff;
}

.map-container {
    margin-bottom: 30px;
}

.company-map {
    width: 100%;
    height: 400px;
    border-radius: 8px;
    object-fit: cover;
}

.map-info h3 {
    color: #0066cc;
    margin-bottom: 20px;
    font-size: 24px;
}

.transport-info {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.transport-item {
    flex: 1;
    min-width: 300px;
}

.transport-item h4 {
    color: #333;
    margin-bottom: 10px;
    font-size: 18px;
}

.transport-item p {
    margin-bottom: 10px;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .home-banner {
        text-align: center;
        padding: 40px 0;
    }
    
    .banner-content {
        margin: 0 auto 30px;
    }
    
    .banner-buttons {
        justify-content: center;
    }
    
    .home-about .container {
        flex-direction: column;
    }
    
    .about-content {
        padding-right: 0;
        margin-bottom: 30px;
        text-align: center;
    }
    
    .about-values {
        justify-content: center;
    }
    
    .contact-form {
        grid-template-columns: 1fr;
    }
    
    .form-group.full-width {
        grid-column: span 1;
    }
    
    .form-submit {
        grid-column: span 1;
    }
    
    .transport-info {
        flex-direction: column;
    }
}
/* 新的应用场景样式 */
/* 修改应用场景样式为上下结构 */
/* 修改应用场景样式 */
.application-section {
    padding: 60px 0;
    border-bottom: 1px solid #eee;
    background-color: #fff;
}

.application-section:nth-child(odd) {
    background-color: #f9f9f9;
}

.application-row {
    display: flex;
    flex-direction: column;
}

.application-header {
    text-align: center;
    margin-bottom: 40px;
}

.application-main-title {
    font-size: 28px;
    color: #333;
    margin-bottom: 15px;
    font-weight: bold;
}

.application-subtitle {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
}

.application-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80%;
    margin: 0 auto;
}

.divider-dot {
    width: 24px;
    height: 24px;
    background-color: #c2e9fb;
    border-radius: 50%;
}

.divider-line {
    flex-grow: 1;
    height: 1px;
    background-color: #c2e9fb;
}

.application-content {
    width: 100%;
}

.application-images {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
}

.application-image {
    flex: 0 0 48%;
    position: relative;
}

.image-label {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: #c2e9fb;
    color: #0066cc;
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: bold;
    z-index: 1;
}
.application-image {
    flex: 0 0 48%;
    position: relative;
}
.application-image img {
    width: 500px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.application-image1 {
    flex: 0 0 23%;
    position: relative;
}
.application-image1 img {
    width: 250px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* 响应式调整 */
@media (max-width: 768px) {
    .application-divider {
        width: 100%;
    }
    
    .application-images {
        flex-direction: column;
    }
    
    .application-image {
        flex: 0 0 100%;
        margin-bottom: 20px;
    }
    
    .application-image:last-child {
        margin-bottom: 0;
    }
}

/* 救援应用特殊布局 */
/* 救援应用特殊布局 - 图片在左侧 */
.rescue-title {
    text-align: center;
    font-size: 28px;
    color: #333;
    margin-bottom: 40px;
}

.rescue-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.rescue-row {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.rescue-item {
    flex: 0 0 48%;
    display: flex;
    gap: 15px;
}

.rescue-images-left {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;

}

.rescue-image img {
    width: 200px;
    height: 125px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.rescue-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center; /* 垂直居中 */
}

.rescue-content h3 {
    font-size: 20px; /* 增大标题字体 */
    color: #333;
    margin-bottom: 12px;
    font-weight: bold;
}

.rescue-content p {
    font-size: 16px; /* 增大正文字体 */
    color: #666;
    line-height: 1.6;
}

/* 响应式调整 */
@media (max-width: 992px) {
    .rescue-row {
        flex-direction: column;
        gap: 40px;
    }

    .rescue-item {
        flex: 0 0 100%;
    }
}

@media (max-width: 576px) {
    .rescue-item {
        flex-direction: column;
    }

    .rescue-images-left {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }

    .rescue-image {
        flex: 0 0 48%;
    }
}