.swiper-container {
        width: 100%;
        max-width: 1200px;
        margin: 0 auto;
        border-radius: 8px;
        overflow: hidden;
    }
    
    .swiper-slide img {
        display: block;
        width: 100%;
        height: 400px; /* 建议固定高度或使用响应式 */
        object-fit: cover; /* 图片裁剪适配 */
    }
    
    .swiper-pagination-bullet {
        background: #ccc;
    }
    
    .swiper-pagination-bullet-active {
        background: #fff;
    }
    
.main_box {
    position: relative;
    width: 90%;
    max-width: 1390px;
    margin: 40px auto 0 auto;
    background: #fff;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    border-radius: 8px;
    padding: 32px 24px 24px 24px;
}

.news-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
}

.blue-title {
    font-size: 3em;
    color: #1976d2;
    font-weight: bold;
}

.main2 {
    padding: 30px;
}

.news-header .en {
    font-size: 0.9em;
    color: #888;
    margin-left: 8px;
}

.news-header .more {
    font-size: 1em;
    color: #1976d2;
    text-decoration: none;
    padding: 4px 12px;
    border-radius: 4px;
    transition: background 0.2s;
}

.news-header .more:hover {
    background: #e3f2fd;
}

.news-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.news-list {
    display: flex;
    gap: 24px;
    justify-content: space-between;
}

.news-list li {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 16px 8px 12px 8px;
}

a.news-title {
    font-family: initial;
    font-size: 16px;
    color: #000000;
    font-weight: normal;
    text-align: left;
    padding: 30px;
}

ul.news-list li img {
    width: 380px;
    height: 240px;
}

.news-list li:hover {
    box-shadow: 0 4px 16px rgba(25,118,210,0.12);
    transform: translateY(-2px) scale(1.03);
}

.news-img-link {
    display: block;
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
}

.news-img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.08);
    margin-bottom: 10px;
    background: #e3eaf2;
}

.news-list .date {
    color: #1976d2;
    font-size: 1em;
    margin-top: 4px;
    font-weight: 500;
    letter-spacing: 1px;
}

.hospital-environment {
    background: #f8f9fa;
    padding: 60px 0;
    border-top: 1px solid #e9ecef;
}

.hospital-environment h2 {
    text-align: center;
    color: #2c3e50;
    margin-bottom: 40px;
    font-size: 28px;
}

.environment-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.env-item {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

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

.env-item p {
    padding: 15px;
    text-align: center;
    color: #495057;
    margin: 0;
    font-size: 16px;
}