/*
Theme Name: 中核医疗健康管理中心
Description: 专为中核医疗健康管理中心设计的现代化WordPress主题，具有全宽头部导航菜单，左侧Logo，右侧菜单项。
Version: 1.0.0
Author: 中核医疗
Text Domain: zhonghe-medical
*/

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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

/* 头部样式 */
.site-header {
    z-index: 1002;
    padding: 0;
    height: 98px;
    transition: background-color 0.3s ease;
}

/* 首页头部：绝对定位，透明背景 */
.site-header-home {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background-color: transparent;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

/* 内页头部：静态定位，白色背景 */
.site-header-inner {
    position: static;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* 非首页导航菜单链接样式 */
body:not(.home) .nav-menu a {
    color: #333333;
    text-shadow: none;
    font-family: "Microsoft YaHei", sans-serif;
    font-size: 18px;
    width: 150px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

/* 非首页导航菜单hover效果 */
body:not(.home) .nav-menu a:hover {
    background-color: #ececec;
}

body:not(.home) .nav-menu .current-menu-item > a,
body:not(.home) .nav-menu .current_page_item > a {
    background-color: #ececec;
}

/* 首页header-container：全宽，左右60px边距 */
.site-header-home .header-container {
    width: 100%;
    margin: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 60px;
    height: 98px;
}

/* 内页header-container：使用container类的1200px宽度 */
.site-header-inner .header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px; /* 调整为80px */
}

/* 确保非首页header是静态定位 */
body:not(.home) .site-header {
    position: static !important;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    height: 80px;
}

/* 兼容经典编辑器 */
.aligncenter,
img.aligncenter,
a img.aligncenter,
.wp-caption.aligncenter {
  display: block;
  margin-left: auto!important;
  margin-right: auto!important;
}

/* 兼容 Gutenberg（区块编辑器）图片块 */
.wp-block-image.aligncenter { 
  text-align: center!important; 
}
.wp-block-image.aligncenter img { 
  display: block; 
  margin: 0 auto!important; 
}

/* 带图说（caption）时，外层 figure 的居中 */
.wp-caption.aligncenter,
figure.wp-caption.aligncenter {
  margin-left: auto!important;
  margin-right: auto!important;
}

/* Logo样式 */
.site-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #2c5aa0;
    font-size: 24px;
    font-weight: bold;
    height: 80px;
}

/* 首页Logo颜色 */
body.home .site-logo {
    color: white;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

body.home .site-logo:hover {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

/* 非首页Logo样式 */
body:not(.home) .site-logo {
    color: #2c5aa0;
    text-shadow: none;
}

body:not(.home) .site-logo:hover {
    color: #1e3d6f;
    text-decoration: none;
}

/* 非首页Logo图片尺寸 */
body:not(.home) .logo-image {
    width: 212px;
    height: 53px;
}

/* 首页Logo图片效果 - 保持清晰显示 */

.site-logo:hover {
    color: #1e3d6f;
    text-decoration: none;
}

/* Logo图片样式 */
.site-logo .logo-image {
    max-height: 80px;
    width: auto;
    max-width: 319px;
    object-fit: contain;
}

/* 首页渐变遮罩层 */
.hero-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 300px;
    background: linear-gradient(to bottom, #2e9bff, transparent);
    z-index: 1000;
    pointer-events: none;
}

/* Hero区域通用样式 */
.hero-section {
    position: relative;
    margin-top: 0;
    overflow: hidden;
    z-index: 999;
}

/* 首页Hero区域 */
.hero-section.hero-home {
    height: 800px;
    background-image: url('assets/images/index.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

/* 内页Hero区域 */
.hero-section.hero-inner {
    height: 666px; /* 固定高度666px，对应1920*666的图片比例 */
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    position: relative;
    margin-top: 0; /* 紧接在header下方，不需要额外间距 */
}

/* 如果有背景图片，添加遮罩层效果 */
.hero-section.hero-inner[style*="background-image"] {
    background-blend-mode: overlay;
}
/*
.hero-section.hero-inner[style*="background-image"]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.7) 0%, rgba(118, 75, 162, 0.7) 100%);
    z-index: 1;
}
*/

.hero-section.hero-inner .inner-hero-container {
    position: relative;
    z-index: 2;
}

.slider-container {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-placeholder {
    text-align: center;
    color: white;
    z-index: 999;
    position: relative;
}

.slider-placeholder h1 {
    font-size: 3.5em;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.slider-placeholder p {
    font-size: 1.3em;
    margin-bottom: 30px;
    opacity: 0.9;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-btn {
    background-color: rgba(255, 255, 255, 0.2);
    border: 2px solid white;
    color: white;
    padding: 15px 30px;
    font-size: 1.1em;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.hero-btn:hover {
    background-color: white;
    color: #2c5aa0;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* 内页Hero区域样式 */
.inner-hero-container {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.inner-hero-content {
    color: white;
    z-index: 999;
    position: relative;
    max-width: 800px;
    padding: 0 20px;
}

.inner-hero-content h1 {
    font-size: 3em;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.inner-hero-content .breadcrumb {
    margin: 20px 0 0 0;
    font-size: 16px;
}

.inner-hero-content .breadcrumb a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
}

.inner-hero-content .breadcrumb a:hover {
    color: white;
    text-decoration: underline;
}

/* 底部异形遮罩 */
.slider-bottom-mask {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 248px;
    background-image: url('assets/images/wave-mask.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: bottom center;
    z-index: 1001;
}

/* 遮罩层文字容器 */
.mask-text-container {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1200px;
    height: 100%;
    pointer-events: none;
}

/* 遮罩层文字内容 */
.mask-text-content {
    position: absolute;
    right: 0;
    bottom: 20px;
    text-align: right;
    color: #0255bf;
    font-family: 'Microsoft YaHei', '微软雅黑', Arial, sans-serif;
    font-size: 36px;
    font-weight: normal;
    line-height: 1.4;
}

.mask-text-line {
    margin: 0;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8);
}

/* 备用CSS遮罩（如果PNG不加载时的fallback） */
/* .slider-bottom-mask::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: white;
    clip-path: polygon(0 100%, 100% 100%, 100% 30%, 80% 20%, 60% 35%, 40% 25%, 20% 30%, 0 25%);
}

.slider-bottom-mask::after {
    content: '';
    position: absolute;
    bottom: 60px;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(to bottom, transparent 0%, rgba(255,255,255,0.7) 50%, white 100%);
} */

/* 导航菜单样式 */
.main-navigation {
    display: flex;
    align-items: center;
}

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

.nav-menu li {
    margin: 0;
    position: relative;
    height: 98px; /* 首页默认高度 */
}

/* 内页导航菜单项高度 */
body:not(.home) .nav-menu li {
    height: 80px;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-weight: normal;
    border-radius: 0;
    font-size: 27px;
    width: 226px;
    height: 100%;
}

/* 首页导航菜单链接颜色 */
body.home .nav-menu a {
    color: white;
}

.nav-menu a:hover {
    color: white;
    background-color: #3f84c6;
    transform: none;
    box-shadow: none;
}

.nav-menu .current-menu-item > a,
.nav-menu .current_page_item > a {
    color: white;
    background-color: #3f84c6;
    font-weight: normal;
    box-shadow: none;
}

.nav-menu .current-menu-item > a:hover,
.nav-menu .current_page_item > a:hover {
    background-color: #3f84c6;
}

/* 移动端菜单按钮 */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
    font-size: 18px;
    color: #333;
}

/* 主要内容区域 */
.site-main {
    margin-top: 0;
    min-height: calc(100vh - 160px);
}

/* 首页主要内容区域 */
body.home .site-main {
    min-height: calc(100vh - 160px); /* 首页保持原有计算 */
}

/* 内页主要内容区域：调整最小高度计算 */
body:not(.home) .site-main {
    margin-top: 0; /* 静态header不需要额外的top margin */
    min-height: auto; /* 内页不强制最小高度，让内容自然决定高度 */
}

.container {
    width: 1200px;
    margin: 0 auto;
}

/* 页面内容样式 */
.page-content,
.post-content {
    padding: 40px 0;
}

.entry-title {
    color: #2c5aa0;
    font-size: 2.5em;
    margin-bottom: 20px;
    text-align: center;
}

.entry-content {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
}

.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h4,
.entry-content h5,
.entry-content h6 {
    color: #2c5aa0;
    margin: 30px 0 15px 0;
}

.entry-content p {
    margin-bottom: 20px;
}

/* 通用区块标题样式 */
.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-title {
    font-family: 'Microsoft YaHei', '微软雅黑', Arial, sans-serif;
    font-size: 30px;
    color: #0255bf;
    margin: 0 0 12px 0;
    font-weight: normal;
}

.section-divider {
    width: 50px;
    height: 2px;
    background-color: #dabc7c;
    margin: 0 auto 10px auto;
}

.section-subtitle {
    font-family: Arial, sans-serif;
    font-size: 16px;
    color: #999999;
    margin: 0;
    font-weight: normal;
    text-transform: uppercase;
}

/* 关于我们区域样式 */
.about-section {
    padding-top:145px;
    background: transparent;
}

.about-container {
    width: 1200px;
    margin: 0 auto;
}

.about-content {
    display: flex;
    align-items: flex-end;
    gap: 44px;
}

.about-text-content {
    flex: 1;
}

.about-main-title {
    font-family: 'Microsoft YaHei', '微软雅黑', Arial, sans-serif;
    font-size: 26px;
    line-height: 26px;
    color: #333333;
    margin: 0 0 8px 0;
    font-weight: normal;
}

.about-english-title {
    font-family: Arial, sans-serif;
    font-size: 18px;
    line-height: 18px;
    color: #999999;
    margin: 0 0 38px 0;
    font-weight: normal;
}

.about-description {
    font-family: 'Microsoft YaHei', '微软雅黑', Arial, sans-serif;
    font-size: 18px;
    line-height: 26px; /* 18px + 8px 行间距 */
    color: #666666;
    margin: 0 0 40px 0;
    text-align: justify;
}

.about-button {
    display: inline-block;
    width: 160px;
    height: 40px;
    background-color: #d8ab4b;
    color: #fff;
    font-size: 18px;
    text-decoration: none;
    border-radius: 4px;
    line-height: 40px;
    text-align: center;
    transition: opacity 0.3s ease;
    font-weight: normal;
}

.about-button:hover {
    opacity: 0.9;
    color: #fff;
    text-decoration: none;
}

.about-image {
    width: 510px;
    height: 300px;
    flex-shrink: 0;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

/* 统计数据区块样式 - 全宽设计，不受container限制 */
.stats-section {
    margin-top: 92px; /* 恢复原始值，这是设计需求 */
    margin-bottom: 68px;
    width: 100%; /* 有意设计为全宽，超出container是正确的 */
    background: transparent;
}

.stats-container {
    width: 100%;
    display: flex;
    align-items: center;
    position: relative;
}

.stats-item {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding: 0 60px;
}

.stats-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.stats-icon {
    width: auto;
    height: 30px;
}

.stats-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.stats-label {
    font-family: 'Microsoft YaHei', '微软雅黑', Arial, sans-serif;
    font-size: 16px;
    line-height: 16px;
    color: #999999;
    font-weight: normal;
    text-align: center;
}

.stats-number {
    font-family: 'Microsoft YaHei', '微软雅黑', Arial, sans-serif;
    font-size: 52px;
    line-height: 60px;
    color: #0255bf;
    font-weight: bold;
}

.stats-divider {
    width: 2px;
    height: 84px;
    background-color: #ededed;
    flex-shrink: 0;
}

/* 医疗中心区块样式 */
.medical-center-section {
    width: 100%;
    background-color: #fafafa;
    padding-top: 55px;
    padding-bottom: 68px;
}

.medical-center-container {
    width: 1200px;
    margin: 0 auto;
}

.medical-center-section .section-header {
    margin-bottom: 50px; /* 英文标题下边距50px */
}

.medical-cards-grid {
    display: flex;
    gap: 30px;
    justify-content: flex-start; /* 改为flex-start，让gap控制间距 */
}

.medical-card {
    width: calc((100% - 90px) / 4); /* 修正计算：4个卡片，3个30px间距 = 90px */
    background-color: #fdfdfd;
    border-radius: 8px;
    overflow: visible; /* 允许横线超出边界 */
    transition: all 0.3s ease;
    position: relative;
    margin-bottom: 4px; /* 为外部横线留出空间 */
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08); /* 默认弱阴影 */
}

.card-link, .card-link-placeholder {
    display: block;
    text-decoration: none;
    color: inherit;
    width: 100%;
    height: 100%;
}

.card-link:hover, .card-link:focus {
    text-decoration: none;
    color: inherit;
}

.medical-card:hover {
    background-color: #ffffff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.medical-card:hover .card-bottom-line {
    opacity: 1;
}

.card-image {
    width: 100%;
    height: 210px;
    overflow: hidden; /* 保持图片圆角效果 */
    border-radius: 8px 8px 0 0;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-content {
    padding: 30px;
    background-color: inherit;
    border-radius: 0 0 8px 8px;
}

.card-title {
    font-family: 'Microsoft YaHei', '微软雅黑', Arial, sans-serif;
    font-size: 21px;
    line-height: 21px;
    color: #666666;
    margin: 0 0 8px 0;
    font-weight: 600;
    transition: color 0.3s ease;
}

.medical-card:hover .card-title {
    color: #0255bf;
}
.medical-card a{
    text-decoration: none;
}

.card-english {
    font-family: Arial, sans-serif;
    font-size: 14px;
    color: #999999;
    margin: 0 0 24px 0;
    font-weight: normal;
    text-transform: uppercase;
    letter-spacing: -1px;
    white-space: nowrap;
}

.card-divider {
    width: 100%;
    height: 1px;
    background-color: #ededed;
    margin: 0 0 19px 0;
}

.card-description {
    font-family: 'Microsoft YaHei', '微软雅黑', Arial, sans-serif;
    font-size: 15px;
    color: #666666;
    margin: 0;
    line-height: 1.6;
    font-weight: normal;
}

.card-bottom-line {
    position: absolute;
    bottom: -2px; /* 移到卡片外部，贴在下边 */
    left: 8px; /* 减去圆角起始位置 */
    right: 8px; /* 减去圆角起始位置 */
    height: 2px;
    background-color: #daa94a;
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* 底部样式 */
.site-footer {
    background-color: #434343;
    color: white;
    padding-top: 30px;
    padding-bottom: 112px;
}

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

/* 第一行样式 */
.footer-first-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.footer-attention h3 {
    font-family: 'Microsoft YaHei', '微软雅黑', Arial, sans-serif;
    font-size: 30px;
    color: #ffffff;
    margin: 0;
    font-weight: normal;
}

.footer-quick-actions {
    display: flex;
    gap: 40px;
}

.quick-action-item {
    text-align: center;
}

.quick-action-item a {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #ffffff;
    transition: opacity 0.3s ease;
}

.quick-action-item a:hover {
    opacity: 0.8;
}

.action-icon {
    width: auto;
    height: 28px;
    margin-bottom: 8px;
}

.action-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.quick-action-item span {
    font-family: 'Microsoft YaHei', '微软雅黑', Arial, sans-serif;
    font-size: 12px;
    color: #f1f1f1;
}

/* 分隔线 */
.footer-divider {
    height: 1px;
    background-color: #fff;
    margin: 10px 0 30px 0;
}

/* 第二行样式 */
.footer-second-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.contact-icon {
    font-size: 18px;
    width: 20px;
}

.contact-text {
    font-family: 'Microsoft YaHei', '微软雅黑', Arial, sans-serif;
    font-size: 18px;
    color: #999999;
}

.footer-qrcode {
    text-align: center;
}

.qrcode-image {
    width: 80px;
    height: 80px;
    margin:0 auto 10px auto;
}

.qrcode-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.qrcode-text {
    font-family: 'Microsoft YaHei', '微软雅黑', Arial, sans-serif;
    font-size: 14px;
    color: #999999;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .site-header {
        height: 80px;
    }
    
    /* 移动端首页header-container */
    .site-header-home .header-container {
        padding: 0 30px;
        height: 80px;
    }
    
    /* 移动端内页header-container */
    .site-header-inner .header-container {
        padding: 0 20px;
        height: 80px;
    }
    
    /* 移动端内页Logo尺寸调整 */
    body:not(.home) .logo-image {
        width: 160px;
        height: 40px;
    }
    
    /* 移动端内页导航菜单 */
    body:not(.home) .nav-menu a {
        font-size: 16px;
        width: auto;
        height: auto;
        padding: 10px 15px;
    }
    
    .site-logo {
        font-size: 18px;
        height: 60px;
    }
    
    .site-logo .logo-image {
        max-height: 60px;
        max-width: 240px;
    }
    
    .main-navigation {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        padding: 20px;
    }
    
    .main-navigation.active {
        display: block;
    }
    
    .nav-menu {
        flex-direction: column;
    }
    
    .nav-menu li {
        margin: 0;
        border-bottom: 1px solid #eee;
        height: auto;
    }
    
    .nav-menu li:last-child {
        border-bottom: none;
    }
    
    .nav-menu a {
        padding: 15px 0;
        width: 100%;
        height: auto;
        font-size: 18px;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .site-main {
        margin-top: 0;
    }
    
    .hero-gradient-overlay {
        height: 200px;
    }
    
    .hero-section.hero-home {
        height: 400px;
    }
    
    .hero-section.hero-inner {
        height: 300px; /* 移动端适当缩小，但保持比例 */
    }
    
    .inner-hero-content h1 {
        font-size: 2em;
    }
    
    .slider-placeholder h1 {
        font-size: 2.5em;
    }
    
    .slider-placeholder p {
        font-size: 1.1em;
        padding: 0 20px;
    }
    
    .hero-btn {
        padding: 12px 25px;
        font-size: 1em;
    }
    
    .entry-title {
        font-size: 2em;
    }
    
    .container {
        padding: 0 15px;
        width: 100%;
    }
    
    /* 移动端遮罩文字调整 */
    .mask-text-container {
        width: 100%;
        padding: 0 20px;
    }
    
    .mask-text-content {
        font-size: 24px;
        right: 20px;
        bottom: 30px;
    }
    
    /* 移动端区块标题样式 */
    .section-header {
        margin-bottom: 60px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .section-subtitle {
        font-size: 14px;
    }
    
    /* 移动端关于我们样式 */
    .about-section {
        padding: 60px 0;
    }
    
    .about-container {
        width: 100%;
        padding: 0 20px;
    }
    
    .about-content {
        flex-direction: column;
        gap: 30px;
        align-items: stretch;
    }
    
    .about-main-title {
        font-size: 22px;
        margin-bottom: 6px;
    }
    
    .about-english-title {
        font-size: 16px;
        margin-bottom: 30px;
    }
    
    .about-description {
        font-size: 16px;
        line-height: 24px;
        margin-bottom: 30px;
    }
    
    .about-button {
        width: 140px;
        height: 36px;
        font-size: 16px;
        line-height: 36px;
        align-self: flex-start;
    }
    
    .about-image {
        width: 100%;
        height: 200px;
        order: -1; /* 在移动端将图片移到文字上方 */
    }
    
    /* 移动端统计数据样式 */
    .stats-section {
        margin-top: 60px; /* 恢复移动端原始值 */
        margin-bottom: 50px;
    }
    
    .stats-container {
        flex-direction: column;
        gap: 30px;
    }
    
    .stats-item {
        padding: 0 20px;
        width: 100%;
        justify-content: space-between;
    }
    
    .stats-left {
        gap: 4px;
    }
    
    .stats-icon {
        width: 32px;
        height: 32px;
    }
    
    .stats-label {
        font-size: 14px;
    }
    
    .stats-number {
        font-size: 36px;
    }
    
    .stats-divider {
        width: 100%;
        height: 1px;
        margin: 0;
    }
    
    /* 移动端医疗中心样式 */
    .medical-center-section {
        padding-top: 40px;
        padding-bottom: 50px;
    }
    
    .medical-center-container {
        width: 100%;
        padding: 0 20px;
    }
    
    .medical-center-section .section-header {
        margin-bottom: 40px;
    }
    
    .medical-cards-grid {
        flex-direction: column;
        gap: 30px;
    }
    
    .medical-card {
        width: 100%;
        margin-bottom: 4px; /* 移动端也保留横线空间 */
    }
    
    .card-image {
        height: 180px;
    }
    
    .card-content {
        padding: 24px;
    }
    
    .card-title {
        font-size: 18px;
    }
    
    .card-english {
        font-size: 13px;
        margin-bottom: 20px;
    }
    
    .card-divider {
        margin-bottom: 16px;
    }
    
    .card-description {
        font-size: 14px;
    }
    
    .card-bottom-line {
        left: 6px;
        right: 6px;
    }
    
    /* 移动端footer样式 */
    .site-footer{
        padding-bottom:52px;
    }

    .footer-container {
        width: 100%;
        padding: 0 20px;
    }
    
    .footer-first-row {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }
    
    .footer-attention h3 {
        font-size: 24px;
    }
    
    .footer-quick-actions {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
        width: 100%;
    }
    
    .footer-second-row {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }
    
    .contact-text {
        font-size: 16px;
    }
    
    .footer-qrcode{
        margin: 0 auto;
    }

    .qrcode-text {
        font-size: 16px;
    }
}

/* 医疗主题颜色 */
:root {
    --primary-color: #2c5aa0;
    --secondary-color: #1e3d6f;
    --accent-color: #4caf50;
    --text-color: #333;
    --light-bg: #f8f9fa;
    --border-color: #e9ecef;
}

/* 实用工具类 */
.text-center {
    text-align: center;
}

.text-primary {
    color: var(--primary-color);
}

.bg-light {
    background-color: var(--light-bg);
}

.mt-4 {
    margin-top: 2rem;
}

.mb-4 {
    margin-bottom: 2rem;
}

.py-4 {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

/* 按钮样式 */
.btn {
    display: inline-block;
    padding: 12px 24px;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.btn:hover {
    background-color: var(--secondary-color);
    text-decoration: none;
    color: white;
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: white;
}

/* ========================================
   知名专家区块样式
   ======================================== */
.experts-section {
    width: 100%;
    padding-top: 68px;
    padding-bottom: 50px;
    background-color: #ffffff;
}

.experts-container {
    width: 1200px;
    margin: 0 auto;
}

.experts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 70px 30px; /* 垂直间距20px，水平间距30px */
    margin-top: 50px;
}

.expert-card {
    height: 180px;
    background-color: #fafafa;
    border-radius: 8px;
    overflow: visible; /* 允许图片超出 */
    position: relative;
    transition: all 0.3s ease;
    cursor: pointer;
    padding:0 20px;
}

.expert-link, .expert-link-placeholder {
    display: flex;
    width: 100%;
    height: 100%;
    text-decoration: none;
    color: inherit;
    border-radius: 8px;
}

.expert-link:hover, .expert-link:focus {
    text-decoration: none;
    color: inherit;
}

.expert-card:hover {
    background-color: #ffffff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.expert-image {
    width: 155px;
    height: 220px; /* 比卡片高40px */
    position: relative;
    top: -50px; /* 向上超出50px */
    flex-shrink: 0;
    overflow: hidden;
    border-radius: 8px;
}

.expert-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.expert-info {
    flex: 1;
    padding: 30px 20px 0 40px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.expert-name {
    font-family: 'Microsoft YaHei', '微软雅黑', Arial, sans-serif;
    font-size: 24px;
    line-height: 24px;
    color: #666666;
    margin: 0 0 15px 0;
    font-weight: normal;
    transition: color 0.3s ease;
}

.expert-card:hover .expert-name {
    color: #0255bf;
}

.expert-positions {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.expert-position {
    font-family: 'Microsoft YaHei', '微软雅黑', Arial, sans-serif;
    font-size: 18px;
    color: #999999;
    line-height: 16px;
}

.experts-button-container {
    display: flex;
    justify-content: center;
    margin-top: 44px;
}

.experts-button {
    display: inline-block;
    width: 160px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background-color: #d8ab4b;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-family: 'Microsoft YaHei', '微软雅黑', Arial, sans-serif;
    font-size: 18px;
    font-weight: normal;
    transition: background-color 0.3s ease;
}

.experts-button:hover {
    background-color: #c19a3d;
    color: #ffffff;
    text-decoration: none;
}

/* 移动端响应式 */
@media (max-width: 768px) {
    .experts-section {
        padding: 40px 15px 30px;
    }
    
    .experts-container {
        width: 100%;
        padding: 0;
    }
    
    .experts-grid {
        grid-template-columns: repeat(2, 1fr); /* 改为2列布局 */
        gap: 30px 15px; /* 垂直30px，水平15px */
        margin-top: 30px;
    }
    
    .expert-card {
        height: auto; /* 自动高度 */
        margin: 0;
        max-width: none;
        width: 100%;
        padding: 15px; /* 统一内边距 */
        display: flex;
        flex-direction: column; /* 移动端改为垂直布局 */
        align-items: center;
        text-align: center;
    }
    
    .expert-link, .expert-link-placeholder {
        flex-direction: column; /* 垂直排列 */
        align-items: center;
        text-align: center;
        height: auto;
    }
    
    .expert-image {
        width: 110px; /* 增大图片 */
        height: 150px;
        top: 0; /* 取消超出效果 */
        margin-bottom: 15px; /* 与文字的间距 */
        flex-shrink: 0;
    }
    
    .expert-info {
        padding: 0; /* 移除内边距 */
        width: 100%;
        text-align: center;
    }
    
    .expert-name {
        font-size: 18px;
        line-height: 22px;
        margin-bottom: 10px;
        text-align: center;
    }
    
    .expert-positions {
        align-items: center;
        text-align: center;
        gap:4px;
    }
    
    .expert-position {
        font-size: 14px;
        line-height: 16px;
        text-align: center;
    }
    
    .experts-button-container {
        margin-top: 40px;
    }
    
    .experts-button {
        width: 140px;
        height: 36px;
        line-height: 36px;
        font-size: 16px;
    }
}

/* 更小屏幕优化 */
@media (max-width: 480px) {
    .experts-section {
        padding: 30px 10px 20px;
    }
    
    .experts-grid {
        gap: 25px 10px; /* 减少间距 */
    }
    
    .expert-card {
        padding: 12px; /* 减少内边距 */
    }
    
    .expert-image {
        width: 110px; /* 适中的图片尺寸 */
        height: 150px;
        margin-bottom: 12px;
    }
    
    .expert-name {
        font-size: 16px;
        line-height: 20px;
        margin-bottom: 8px;
    }
    
    .expert-position {
        font-size: 12px;
        line-height: 12px;
    }
    
    .experts-button-container {
        margin-top: 30px;
    }
    
    .experts-button {
        width: 130px;
        height: 34px;
        line-height: 34px;
        font-size: 15px;
    }
}

/* ========================================
   新闻资讯区块样式
   ======================================== */
.news-section {
    width: 100%;
    padding-top: 45px;
    padding-bottom: 80px;
    background-color: #ffffff;
}

.news-container {
    width: 1200px;
    margin: 0 auto;
}

/* Tab标签样式 */
.news-tabs {
    display: flex;
    justify-content: center;
    margin-top: 50px;
    position: relative;
    gap: 190px; /* 两个tab中间间隔190px */
}

.news-tab {
    font-family: 'Microsoft YaHei', '微软雅黑', Arial, sans-serif;
    font-size: 24px;
    line-height: 24px;
    color: #666666;
    cursor: pointer;
    padding: 0 0 8px 0;
    position: relative;
    transition: color 0.3s ease;
}

.news-tab:hover,
.news-tab.active {
    color: #333333;
}

.tab-line {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background-color: #c8c8c8;
}

.tab-active-line {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 95px;
    height: 3px;
    background-color: #d8ab4b;
    transition: transform 0.3s ease;
    transform: translateX(0);
}

/* Tab内容区域 */
.news-content {
    display: flex;
    justify-content: space-between;
    margin-top: 70px;
    gap: 55px;
}

/* 左侧轮播图样式 */
.news-carousel {
    width: 580px;
    flex-shrink: 0;
}

.carousel-container {
    position: relative;
}

.carousel-slides {
    overflow: hidden;
    border-radius: 8px 8px 0 0;
    transition: opacity 0.3s ease;
}

.carousel-slide {
    display: none;
    background-color: #fafafa;
    border-radius: 8px;
}

.carousel-slide.active {
    display: block;
}

.slide-link {
    display: block;
    text-decoration: none;
    color: inherit;
    width: 100%;
    height: auto;
}

.slide-link:hover,
.slide-link:focus {
    text-decoration: none;
    color: inherit;
}

.slide-image {
    width: 580px;
    height: 280px;
    overflow: hidden;
    border-radius: 8px 8px 0 0;
}

.slide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-content {
    padding: 25px 28px 20px 28px;
    background-color: #fafafa;
    border-radius: 0 0 8px 8px;
}

.slide-title {
    font-family: 'Microsoft YaHei', '微软雅黑', Arial, sans-serif;
    font-size: 18px;
    color: #333333;
    margin: 0 0 12px 0;
    font-weight: normal;
    line-height: 1.4;
}

.slide-excerpt {
    font-family: 'Microsoft YaHei', '微软雅黑', Arial, sans-serif;
    font-size: 12px;
    color: #666666;
    line-height: 1.5;
    height: 54px; /* 固定三行文字高度 */
    overflow: hidden;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.carousel-controls {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    position: relative;
    z-index: 10; /* 确保控制按钮在链接之上 */
    padding: 0 28px 20px 28px; /* 恢复与slide-content相同的边距 */
}

.carousel-btn {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: none;
    background-color: #ffffff;
    color: #dadada;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.carousel-btn:hover,
.carousel-btn.active {
    background-color: #d8ab4b;
    color: #ffffff;
}

.carousel-btn:disabled {
    background-color: #ffffff;
    color: #dadada;
    cursor: not-allowed;
}

/* 右侧新闻列表样式 */
.news-list {
    width: 545px;
    flex-shrink: 0;
}

.news-list-container {
    border-top: 1px solid #ededed;
    border-bottom: 1px solid #ededed;
    height: 489px; /* 调整高度以匹配增加了控制按钮边距后的左侧轮播图卡片高度 (469px + 20px) */
    display: flex;
    flex-direction: column;
    transition: opacity 0.3s ease;
}

.news-item {
    padding: 20px 0 20px 10px; /* 恢复原有的padding */
    border-bottom: 1px solid #ededed;
    position: relative;
    flex: 1; /* 三个新闻项平分高度 */
    display: flex;
    flex-direction: column;
    justify-content: center; /* 内容垂直居中 */
}

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

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

.news-title-wrapper {
    display: flex;
    align-items: center;
    flex: 1;
    margin-right: 20px;
}

.news-dot {
    width: 6px;
    height: 6px;
    background-color: #000000;
    border-radius: 50%;
    margin-right: 20px;
    flex-shrink: 0;
}

.news-title {
    font-family: 'Microsoft YaHei', '微软雅黑', Arial, sans-serif;
    font-size: 18px;
    color: #333333;
    font-weight: normal;
    line-height: 1.4;
    text-decoration: none;
    transition: color 0.3s ease;
}

.news-title:hover {
    color: #0255bf;
    text-decoration: none;
}

.news-date {
    font-family: 'Microsoft YaHei', '微软雅黑', Arial, sans-serif;
    font-size: 18px;
    color: #333333;
    font-weight: normal;
    flex-shrink: 0;
}

.news-excerpt-wrapper {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.news-excerpt {
    font-family: 'Microsoft YaHei', '微软雅黑', Arial, sans-serif;
    font-size: 14px;
    color: #666666;
    line-height: 1.6;
    margin-left: 26px;
    flex: 1;
    margin-right: 50px;
    height: auto; /* 自动高度，让内容决定 */
    max-height: 69.6px; /* 4行的最大高度：14px * 1.6 * 4 = 89.6px */
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
}

.news-arrow {
    flex-shrink: 0;
    margin-top: 2px;
}

/* 移动端响应式 */
@media (max-width: 768px) {
    .news-section {
        padding: 30px 15px 50px;
    }
    
    .news-container {
        width: 100%;
        padding: 0;
    }
    
    .news-tabs {
        margin-top: 30px;
        justify-content: center;
        gap: 120px; /* 移动端减少间距 */
    }
    
    .news-tab {
        font-size: 20px;
        padding: 0 0 15px 0;
    }
    
    .tab-active-line {
        width: 80px;
    }
    
    .news-content {
        flex-direction: column;
        gap: 30px;
        margin-top: 30px;
    }
    
    .news-carousel,
    .news-list {
        width: 100%;
    }
    
    .slide-image {
        width: 100%;
        height: 200px;
    }
    
    .slide-content {
        padding: 20px;
    }
    
    .slide-title {
        font-size: 16px;
    }
    
    .slide-excerpt {
        height: 45px;
        -webkit-line-clamp: 2;
    }
    
    .news-list-container {
        height: auto; /* 移动端使用自动高度 */
    }
    
    .news-item {
        padding: 15px 0 15px 10px; /* 移动端减少padding */
        flex: none; /* 移动端不使用flex平分 */
        justify-content: flex-start; /* 移动端顶部对齐 */
    }
    
    .news-title {
        font-size: 16px;
    }
    
    .news-date {
        font-size: 16px;
    }
    
    .news-excerpt {
        font-size: 12px;
        height: 60px;
        -webkit-line-clamp: 3;
        margin-right: 30px;
    }
}

/* 合作单位区块样式 */
.partners-section {
    width: 100%;
    background-color: #fafafa;
    padding: 55px 0 108px 0;
}

.partners-container {
    width: 1200px;
    margin: 0 auto;
}

.partners-slogan {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 8px;
    margin-top: -35px;
    margin-bottom: 80px;
}

.slogan-number {
    font-family: Arial, sans-serif;
    font-size: 30px;
    color: #666666;
    line-height: 1;
}

.slogan-number sup {
    font-size: 20px;
    vertical-align: super;
}

.slogan-text {
    font-family: 'Microsoft YaHei', sans-serif;
    font-size: 24px;
    color: #666666;
    line-height: 1;
}

/* PC端结构样式 */
.partners-desktop {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 22px;
}

.partners-desktop .partners-row {
    display: flex;
    justify-content: center;
    gap: 32px;
}

/* 移动端结构样式 */
.partners-mobile {
    display: none; /* 默认隐藏移动端结构 */
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    max-width: 100%;
}

.partner-item {
    width: 174px;
    height: 60px;
    background-color: #ffffff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.3s ease;
}

.partner-item:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.partner-item img {
    max-width: 140px;
    max-height: 40px;
    object-fit: contain;
}

.partner-more {
    cursor: pointer;
}

.partner-more-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    text-decoration: none;
    color: #666666;
}

.partner-more-link:hover,
.partner-more-link:focus {
    text-decoration: none;
    color: #0255bf;
}

.partner-dots {
    font-size: 24px;
    font-weight: bold;
    letter-spacing: 4px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

/* 合作单位区块移动端响应式 */
@media (max-width: 768px) {
    .partners-section {
        padding: 40px 0 50px 0;
    }
    
    .partners-container {
        width: 95%;
        padding: 0 20px;
    }
    
    .partners-slogan {
        margin-top: 30px;
        margin-bottom: 30px;
        gap: 6px;
    }
    
    .slogan-number {
        font-size: 24px;
    }
    
    .slogan-number sup {
        font-size: 16px;
    }
    
    .slogan-text {
        font-size: 20px;
    }
    
    /* 移动端隐藏PC结构，显示移动端结构 */
    .partners-desktop {
        display: none !important;
    }
    
    .partners-mobile {
        display: flex !important;
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
        max-width: 100%;
    }
    
    .partners-mobile .partner-item {
        width: calc(50% - 8px);
        max-width: 140px;
        height: 50px;
        flex: 0 0 auto;
    }
    
    .partner-item img {
        max-width: 120px;
        max-height: 35px;
    }
    
    .partner-dots {
        font-size: 20px;
        letter-spacing: 3px;
        line-height: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        height: 100%;
    }
    
    /* 超声医学中心页面响应式 */
    .ultrasound-reasons-section .container,
    .ultrasound-reasons-bg .container {
        width: 100%;
        padding: 0 15px;
    }
    
    /* 新闻资讯列表页面响应式 */
    .sticky-post-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        padding: 25px 0;
        min-height: 120px;
    }
    
    .sticky-category-info {
        min-width: 50px;
        width: 100%;
        text-align: center;
        margin-bottom: 10px;
        max-width: 50px;;
    }
    
    .sticky-post-info {
        margin-left: 0;
        width: 100%;
    }
    
    .sticky-post-title {
        font-size: 20px;
    }
    
    .sticky-divider {
        height: 20px;
        margin: 0;
        width: 100%;
    }
    
    .sticky-post-row:not(:last-child) .sticky-divider::after {
        height: 40px;
    }
    
    .category-news-carousel {
        padding: 0 15px;
    }
    
    .category-carousel-slide {
        width: 100%;
        max-width: 655px;
        margin: 0 auto;
    }
    
    .category-carousel-titles {
        width: 100%;
        max-width: 655px;
        height: 50px;
    }
    
    .category-carousel-title {
        font-size: 16px;
    }
    
    .category-news-list-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    
    .category-news-date-box {
        width: 80px;
        height: 80px;
        margin-right: 0;
    }
    
    .category-news-day {
        font-size: 48px;
    }
    
    .category-news-month {
        font-size: 16px;
    }
    
    .category-news-content {
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .category-news-title {
        font-size: 24px;
        height: auto;
        -webkit-line-clamp: 3;
    }
    
    .news-arrow {
        margin-left: 0;
        align-self: flex-end;
    }
}

@media (max-width: 480px) {
    .partners-mobile {
        gap: 12px !important;
    }
    
    .partners-mobile .partner-item {
        width: calc(50% - 6px);
        max-width: 120px;
        height: 45px;
    }
    
    .partners-mobile .partner-item img {
        max-width: 100px;
        max-height: 30px;
    }
}

/* ==============================
   文章内容页样式
   ============================== */

/* 文章页面容器上边距 */
body:not(.home) .site-main .container {
    margin: 60px auto; /* 为文章内容与Hero区域创建合适间距 */
}

/* 文章标题样式 */
.entry-header {
    margin-bottom: 30px;
}

.entry-header .entry-title {
    color: #0255bf;
    font-family: "Microsoft YaHei", sans-serif;
    font-size: 32px;
    font-weight: bold;
    line-height: 1.4;
    margin-bottom: 20px;
}

/* 文章内容区域 */
.entry-content {
    font-family: "Microsoft YaHei", sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: #333333;
    margin-top: 30px;
}

.entry-content p {
    margin-bottom: 20px;
}

.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h4,
.entry-content h5,
.entry-content h6 {
    font-family: "Microsoft YaHei", sans-serif;
    color: #0255bf;
    margin: 30px 0 20px 0;
    font-weight: bold;
}

.entry-content h1 { font-size: 28px; }
.entry-content h2 { font-size: 24px; }
.entry-content h3 { font-size: 20px; }
.entry-content h4 { font-size: 18px; }
.entry-content h5 { font-size: 16px; }
.entry-content h6 { font-size: 14px; }

.entry-content ul,
.entry-content ol {
    margin: 20px 0;
    padding-left: 30px;
}

.entry-content li {
    margin-bottom: 10px;
}

.entry-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 20px 0;
}

.entry-content blockquote {
    background-color: #f8f9fa;
    border-left: 4px solid #0255bf;
    padding: 20px;
    margin: 20px 0;
    font-style: italic;
    color: #666666;
}

/* 文章导航样式 */
.post-navigation {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 2px solid #ededed;
}

.post-navigation .nav-links {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.post-navigation .nav-previous,
.post-navigation .nav-next {
    flex: 1;
    max-width: 48%;
}

.post-navigation .nav-previous a,
.post-navigation .nav-next a {
    display: block;
    padding: 20px;
    background-color: #fafafa;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid #ededed;
}

.post-navigation .nav-previous a:hover,
.post-navigation .nav-next a:hover {
    background-color: #f0f8ff;
    border-color: #0255bf;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(2, 85, 191, 0.1);
}

.post-navigation .nav-subtitle {
    display: block;
    font-size: 14px;
    color: #999999;
    margin-bottom: 8px;
    font-family: "Microsoft YaHei", sans-serif;
}

.post-navigation .nav-title {
    display: block;
    font-size: 16px;
    color: #333333;
    font-weight: bold;
    line-height: 1.4;
    font-family: "Microsoft YaHei", sans-serif;
}

.post-navigation .nav-previous a:hover .nav-title,
.post-navigation .nav-next a:hover .nav-title {
    color: #0255bf;
}

.post-navigation .nav-next {
    text-align: right;
}

/* 文章元信息样式 */
.entry-meta {
    color: #999999;
    margin: 20px 0;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

/* 文章底部编辑区域样式 */
.entry-footer {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    text-align: right;
}

.entry-footer .edit-link a {
    color: #999999;
    font-size: 14px;
    text-decoration: none;
    padding: 5px 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: #f9f9f9;
    transition: all 0.3s ease;
}

.entry-footer .edit-link a:hover {
    color: #0255bf;
    border-color: #0255bf;
    background-color: #f0f8ff;
}

.entry-meta .posted-on,
.entry-meta .byline,
.entry-meta .cat-links,
.entry-meta .tags-links {
    color: #999999;
}

/* 分类和标签链接样式 */
.entry-meta .cat-links a,
.entry-meta .tags-links a {
    color: #999999;
    text-decoration: none;
}

.entry-meta .cat-links a:hover,
.entry-meta .tags-links a:hover {
    color: #0255bf;
    text-decoration: none;
}

/* 响应式：移动端文章导航 */
@media (max-width: 768px) {
    .post-navigation .nav-links {
        flex-direction: column;
        gap: 20px;
    }
    
    .post-navigation .nav-previous,
    .post-navigation .nav-next {
        max-width: 100%;
    }
    
    .post-navigation .nav-next {
        text-align: left;
    }
    
    .post-navigation .nav-previous a,
    .post-navigation .nav-next a {
        padding: 15px;
    }
    
    .post-navigation .nav-title {
        font-size: 15px;
    }
    
    /* 移动端文章页面容器上边距调整 */
    body:not(.home) .site-main .container {
        margin-top: 40px;
    }
    
    /* 移动端文章标题样式调整 */
    .entry-header .entry-title {
        font-size: 26px;
    }
}

/* ==============================
   关于我们页面样式
   ============================== */

/* 关于我们页面容器 */
.about-us-page {
    padding: 0;
}

/* Tab导航样式 */
.about-tabs-section {
    padding: 40px 0 0 0;
}

.about-tabs {
    display: flex;
    justify-content: center;
    gap: 160px;
    position: relative;
}

.about-tab {
    font-family: "Microsoft YaHei", sans-serif;
    font-size: 24px;
    color: #666666;
    cursor: pointer;
    padding: 0 0 8px 0;
    transition: color 0.3s ease;
    position: relative;
}

.about-tab:hover,
.about-tab.active {
    color: #0255bf;
}

.about-tabs-line {
    width: 100%;
    height: 1px;
    background-color: #c8c8c8;
    position: relative;
    margin-top: 8px;
}

.about-tab-active-line {
    position: absolute;
    width: 95px;
    height: 3px;
    background-color: #d8ab4b;
    top: -1px;
    transition: left 0.3s ease;
}

/* 公司简介区块 */
.company-intro-section {
    padding: 40px 0;
}

.company-intro-text {
    padding: 0 70px;
    font-family: "Microsoft YaHei", sans-serif;
    font-size: 16px;
    color: #666666;
    line-height: 1.4;
    margin-bottom: 40px;
    margin-top:-30px;
}

.company-intro-image {
    text-align: center;
    margin-bottom: 20px;
}

.company-intro-image img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
}

.medical-center-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

/* 关于我们页面医疗中心卡片特殊样式 */
.about-us-page .medical-center-cards .medical-card {
    width: auto; /* 覆盖默认宽度，让Grid自动分配 */
}

.about-us-page .medical-center-cards .medical-card .card-image {
    height: 124px;
}

.about-us-page .medical-center-cards .medical-card .card-content {
    padding: 20px;
}

.about-us-page .medical-center-cards .medical-card .card-description {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.4;
    max-height: 1.4em;
}

/* 统计数据全宽区块 */
.stats-section-fullwidth {
    width: 100%;
    background-color: #fafafa;
    padding: 30px 0;
    margin-top:-60px;
}

.stats-section-fullwidth .stats-container {
    width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.stats-section-fullwidth .stats-item {
    display: flex;
    align-items: flex-end; /* 底部对齐 */
    gap: 15px; /* 减小间距 */
    flex-direction: row; /* 确保水平排列 */
}

.stats-section-fullwidth .stats-label {
    font-family: "Microsoft YaHei", sans-serif;
    font-size: 18px; /* 较小的文字 */
    color: #666666;
    line-height: 1;
}

.stats-section-fullwidth .stats-number-wrapper {
    display: inline-flex;
    align-items: flex-start;
    line-height: 1;
}

.stats-section-fullwidth .stats-number {
    font-family: "Microsoft YaHei", sans-serif;
    font-size: 52px;
    color: #0255bf;
    font-weight: bold;
    line-height: 1;
}

.stats-section-fullwidth .stats-superscript {
    font-family: "Microsoft YaHei", sans-serif;
    font-size: 24px; /* 约为主数字的一半大小 */
    color: #0255bf;
    font-weight: bold;
    line-height: 1;
    margin-left: 2px;
    vertical-align: super;
}

.stats-section-fullwidth .stats-divider {
    width: 2px;
    height: 84px;
    background-color: #ededed;
}

/* 知名专家区块 */
.renowned-experts-section {
    padding: 40px 0;
}

/* 专家详情展示区 */
.expert-detail-display {
    margin-top:-40px;
    margin-bottom: 15px;
    padding: 40px;
    background-color: #fafafa;
    border-radius: 10px;
}

.expert-detail-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.expert-detail-info {
    width: 100%;
}

.expert-detail-info h3 {
    font-family: "Microsoft YaHei", sans-serif;
    font-size: 28px;
    color: #333333;
    margin-bottom: 10px;
}

.expert-detail-info p {
    font-family: "Microsoft YaHei", sans-serif;
    font-size: 18px;
    color: #0255bf;
    margin-bottom: 20px;
}

.expert-detail-info div {
    font-family: "Microsoft YaHei", sans-serif;
    font-size: 16px;
    color: #666666;
    line-height: 1.6;
}

/* 专家筛选功能栏 */
.experts-filter-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
}

.filter-left {
    display: flex;
    gap: 15px;
}

.filter-btn {
    padding: 0;
    border: none;
    background: none;
    font-family: "Microsoft YaHei", sans-serif;
    font-size: 14px;
    color: #666666;
    cursor: pointer;
    transition: color 0.3s ease;
}

.filter-btn:hover {
    color: #0255bf;
}

.filter-right {
    display: flex;
    align-items: center;
}

.search-box {
    position: relative;
    display: flex;
    align-items: center;
}

.search-icon {
    position: absolute;
    left: 12px;
    font-size: 14px;
    color: #999999;
    z-index: 1;
}

.search-box input {
    padding: 8px 12px 8px 35px; /* 左侧留出图标空间 */
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: "Microsoft YaHei", sans-serif;
    font-size: 14px;
    width: 200px;
    background-color: white;
}

.search-box input:focus {
    outline: none;
    border-color: #0255bf;
}

/* 关于我们页面专家卡片样式 */
.about-us-page .experts-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 140px 30px;
    margin-bottom: 40px;
    margin-top:130px;
}

.about-us-page .expert-card {
    background-color: #ffffff;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
    height: 160px;
    display: flex;
    position: relative;
    padding: 0;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.about-us-page .expert-card:hover {
    /* 背景图片将通过JavaScript动态设置 */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.about-us-page .expert-card:hover .expert-name,
.about-us-page .expert-card:hover .expert-position {
    color: #fff;
}

.about-us-page .expert-image {
    width: 140px!important;
    height: 200px!important;
    flex-shrink: 0;
    position: absolute;
    top: -50px;
    left: 20px;
    border-radius: 8px 8px 0 0;
}

.about-us-page .expert-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-us-page .expert-info {
    flex: 1;
    padding: 20px;
    padding-left: 180px; /* 为140px图片留出空间 */
    display: flex;
    flex-direction: column;
    justify-content: flex-start; /* 从顶部对齐 */
    padding-top: 30px; /* 与首页保持一致的顶部间距 */
    padding-right:0;
}

.about-us-page .expert-name {
    font-family: "Microsoft YaHei", sans-serif;
    font-size: 24px;
    color: #666666;
    margin-bottom: 10px;
    font-weight: normal;
}

.about-us-page .expert-positions {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.about-us-page .expert-position {
    font-family: "Microsoft YaHei", sans-serif;
    font-size: 16px;
    color: #999999;
    display: block;
}

@media (max-width: 768px) {
    .about-us-page .experts-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .about-us-page .expert-card {
        height: auto;
        flex-direction: column;
        text-align: center;
    }
    
    .about-us-page .expert-image {
        width: 100%;
        height: 200px;
        position: static;
        border-radius: 8px 8px 0 0;
    }
    
    .about-us-page .expert-info {
        padding: 20px;
        padding-left: 20px;
    }
}

/* 医疗产品区块（全宽） */
.medical-products-section {
    width: 100%;
    padding: 80px 0;
    background-color: #fafafa;
}

.medical-products-section .container {
    width: 1200px;
    margin: 0 auto;
}

.products-filter-bar {
    width: 100%;
    background-color: #f5f5f5;
    padding: 0;
    margin-bottom: 115px;
}

.products-filter-bar .product-filter-tags {
    /*justify-content: center;*/
}

.product-filter-tags {
    display: flex;
    align-items: center;
    gap: 0;
}

.product-filter-tag {
    font-family: "Microsoft YaHei", sans-serif;
    font-size: 20px;
    color: #999999;
    cursor: pointer;
    padding: 17px 40px;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
    gap: 18px;
    background: none;
    border: none;
    text-decoration: none;
}

.product-filter-tag::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #999999;
    transition: background-color 0.3s ease;
}

.product-filter-tag:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 26px;
    background-color: #ddd;
}

.product-filter-tag:hover,
.product-filter-tag.active {
    color: #0056ba;
    background: none;
}

.product-filter-tag:hover::before,
.product-filter-tag.active::before {
    background-color: #0056ba;
}


.product-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}



.product-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-info {
    padding: 20px;
}

.product-title {
    font-family: "Microsoft YaHei", sans-serif;
    font-size: 16px;
    color: #333333;
    margin-bottom: 15px;
    font-weight: bold;
}

.product-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-price {
    font-family: "Microsoft YaHei", sans-serif;
    font-size: 18px;
    color: #e74c3c;
    font-weight: bold;
}

/* 产品网格样式 */
.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 115px 50px;
    margin-bottom: 40px;
}

@media (max-width: 1200px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

.product-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.product-card:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.product-image {
    position: relative;
    height: 226px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}


.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(2, 85, 191, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}


.product-link {
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    border: 2px solid white;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.product-link:hover {
    background: white;
    color: #0255bf;
}

.product-info {
    padding: 20px;
}

.product-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.4;
    height: 50.4px;                    /* 固定两行高度：18px * 1.4 * 2 = 50.4px */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

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

.product-price {
    font-size: 22px;
    font-weight: bold;
    color: #2764c3;
    font-family: "Microsoft YaHei", sans-serif;
}

.product-book-btn {
    background: #2764c3;
    color: white;
    padding: 2px 10px;
    border-radius: 2px;
    text-decoration: none;
    font-size: 18px;
    border: none;
    cursor: pointer;
}

.product-book-btn:hover {
    background: #004494;
}

/* 产品分页样式 - 与专家分页完全一致 */
.products-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 40px;
}

.products-pagination .pagination-btn {
    width: 22px;
    height: 22px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fafafa;
    color: #b6b6b6;
    border: 1px solid #fafafa;
    font-size: 12px;
    border-radius: 4px;
    cursor: pointer;
}

.products-pagination .pagination-btn:hover,
.products-pagination .pagination-btn.active {
    background-color: #0255bf;
    color: white;
    border-color: #0255bf;
}

.products-pagination .pagination-arrow {
    width: 22px;
    height: 22px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fafafa;
    color: #b6b6b6;
    border: 1px solid #fafafa;
    cursor: pointer;
    border-radius: 4px;
    font-size: 12px;
}

.products-pagination .pagination-arrow:hover {
    background-color: #0255bf;
    color: white;
    border-color: #0255bf;
}

.products-pagination .pagination-arrow.disabled {
    cursor: not-allowed;
    opacity: 0.5;
}

.products-pagination .pagination-arrow.disabled:hover {
    background-color: #fafafa;
    color: #b6b6b6;
    border-color: #fafafa;
}

/* 隐藏不匹配标签的产品 */
.product-card.hidden {
    display: none;
}

/* 医疗设备区块 */
.medical-equipment-section {
    padding: 80px 0;
}

.equipment-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.equipment-item {
    display: flex;
    align-items: center;
    gap: 40px;
    width: 100%;
}

.equipment-image {
    width: 580px;
    max-width: 580px;
    flex-shrink: 0;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.equipment-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.equipment-content {
    width: 580px;
    flex-shrink: 0;
}

.equipment-title {
    margin-bottom: 20px;
}

.equipment-title a {
    font-family: "Microsoft YaHei", sans-serif;
    font-size: 36px;
    font-weight: bold;
    color: #2267aa;
    text-decoration: none;
    line-height: 1.2;
}

.equipment-title a:hover {
    color: #1a5288;
}

.equipment-description {
    font-family: "Microsoft YaHei", sans-serif;
    font-size: 14px;
    color: #595757;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* 设备分页样式 - 与其他分页一致 */
.equipment-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 40px;
}

.equipment-pagination .pagination-btn {
    width: 22px;
    height: 22px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fafafa;
    color: #b6b6b6;
    border: 1px solid #fafafa;
    font-size: 12px;
    border-radius: 4px;
    cursor: pointer;
}

.equipment-pagination .pagination-btn:hover,
.equipment-pagination .pagination-btn.active {
    background-color: #0255bf;
    color: white;
    border-color: #0255bf;
}

.equipment-pagination .pagination-arrow {
    width: 22px;
    height: 22px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fafafa;
    color: #b6b6b6;
    border: 1px solid #fafafa;
    cursor: pointer;
    border-radius: 4px;
    font-size: 12px;
}

.equipment-pagination .pagination-arrow:hover {
    background-color: #0255bf;
    color: white;
    border-color: #0255bf;
}

.equipment-pagination .pagination-arrow.disabled {
    cursor: not-allowed;
    opacity: 0.5;
}

.equipment-pagination .pagination-arrow.disabled:hover {
    background-color: #fafafa;
    color: #b6b6b6;
    border-color: #fafafa;
}

/* 隐藏不在当前页的设备 */
.equipment-item.hidden {
    display: none;
}

.equipment-content {
    flex: 1;
}

/*
.equipment-title {
    font-family: "Microsoft YaHei", sans-serif;
    font-size: 24px;
    color: #333333;
    margin-bottom: 15px;
    font-weight: bold;
}
*/

/* 分页样式 */
.experts-pagination,
.products-pagination,
.equipment-pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}

.pagination-btn {
    padding: 8px 12px;
    border: 1px solid #ddd;
    background-color: white;
    color: #666666;
    cursor: pointer;
    border-radius: 4px;
    font-family: "Microsoft YaHei", sans-serif;
    font-size: 14px;
    transition: all 0.3s ease;
}

.pagination-btn:hover,
.pagination-btn.active {
    background-color: #0255bf;
    color: white;
    border-color: #0255bf;
}

/* 关于我们页面分页特殊样式 */
.about-us-page .experts-pagination .pagination-btn {
    width: 22px;
    height: 22px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fafafa;
    color: #b6b6b6;
    border: 1px solid #fafafa;
    font-size: 12px;
}

.about-us-page .experts-pagination .pagination-btn:hover,
.about-us-page .experts-pagination .pagination-btn.active {
    background-color: #0255bf;
    color: white;
    border-color: #0255bf;
}

.about-us-page .experts-pagination .pagination-arrow {
    width: 22px;
    height: 22px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fafafa;
    color: #b6b6b6;
    border: 1px solid #fafafa;
    cursor: pointer;
    border-radius: 4px;
    font-size: 12px;
}

.about-us-page .experts-pagination .pagination-arrow:hover {
    background-color: #0255bf;
    color: white;
    border-color: #0255bf;
}

.about-us-page .experts-pagination .pagination-arrow.disabled {
    cursor: not-allowed;
    opacity: 0.5;
}

.about-us-page .experts-pagination .pagination-arrow.disabled:hover {
    background-color: #fafafa;
    color: #b6b6b6;
    border-color: #fafafa;
}

/* 医院简介区块 */
.hospital-intro-section {
    padding: 80px 0;
}

.hospital-intro-content {
    display: flex;
    align-items: center;
    gap: 44px;
    margin-top: 80px;
}

.intro-text {
    flex: 1;
}

.intro-text h3 {
    font-family: "Microsoft YaHei", sans-serif;
    font-size: 26px;
    color: #333333;
    margin-bottom: 15px;
    font-weight: bold;
}

.intro-subtitle {
    font-family: Arial, sans-serif;
    font-size: 18px;
    color: #999999;
    margin-bottom: 38px;
}

.intro-description {
    font-family: "Microsoft YaHei", sans-serif;
    font-size: 18px;
    color: #666666;
    line-height: 1.8;
}

.intro-image {
    width: 510px;
    flex-shrink: 0;
}

.intro-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
}

/* 发展历程区块 */
.development-history-section {
    padding: 80px 0;
    background-color: #fafafa;
}

.history-timeline {
    margin-top: 80px;
}

.timeline-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 40px;
    padding: 30px;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

.timeline-year {
    font-family: Arial, sans-serif;
    font-size: 32px;
    font-weight: bold;
    color: #0255bf;
    width: 120px;
    flex-shrink: 0;
}

.timeline-content {
    flex: 1;
    padding-left: 30px;
}

.timeline-content h4 {
    font-family: "Microsoft YaHei", sans-serif;
    font-size: 20px;
    color: #333333;
    margin-bottom: 10px;
    font-weight: bold;
}

.timeline-content p {
    font-family: "Microsoft YaHei", sans-serif;
    font-size: 16px;
    color: #666666;
    line-height: 1.6;
}

/* 核心优势区块 */
.core-advantages-section {
    padding: 80px 0;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 80px;
}

.advantage-item {
    text-align: center;
    padding: 40px 20px;
    background-color: #fafafa;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.advantage-item:hover {
    background-color: #f0f8ff;
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(2, 85, 191, 0.15);
}


.advantage-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.advantage-item h4 {
    font-family: "Microsoft YaHei", sans-serif;
    font-size: 18px;
    color: #333333;
    margin-bottom: 15px;
    font-weight: bold;
}

.advantage-item p {
    font-family: "Microsoft YaHei", sans-serif;
    font-size: 14px;
    color: #666666;
    line-height: 1.6;
}

/* 资质荣誉区块 */
.qualifications-section {
    padding: 80px 0;
    background-color: #fafafa;
}

.qualifications-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 80px;
}

.qualification-item {
    text-align: center;
    padding: 30px 20px;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.qualification-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.qualification-item img {
    width: 100%;
    height: 120px;
    object-fit: contain;
    margin-bottom: 15px;
}

.qualification-item h5 {
    font-family: "Microsoft YaHei", sans-serif;
    font-size: 16px;
    color: #333333;
    font-weight: bold;
}

/* 关于我们页面响应式设计 */
@media (max-width: 1200px) {
    /* 容器响应式 */
    .about-us-page .container,
    .stats-section-fullwidth .stats-container,
    .medical-products-section .container {
        width: 95%;
        max-width: 1200px;
        padding: 0 20px;
    }
    
    /* 医疗设备布局调整 */
    .equipment-item {
        gap: 30px;
    }
    
    .equipment-image,
    .equipment-content {
        width: calc(50% - 15px);
    }
}

@media (max-width: 768px) {
    /* 容器进一步缩小 */
    .about-us-page .container,
    .stats-section-fullwidth .stats-container,
    .medical-products-section .container {
        width: 100%;
        padding: 0 15px;
    }
    
    /* 医疗中心卡片响应式 */
    .about-us-page .medical-center-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    /* 统计数据响应式 */
    .stats-section-fullwidth .stats-container {
        flex-direction: column;
        gap: 30px;
        padding: 40px 0;
    }
    
    .stats-section-fullwidth .stats-item {
        align-items: center;
        text-align: center;
        gap: 10px;
    }
    .stats-section-fullwidth .stats-divider{
        display: none;
    }
    
    .stats-section-fullwidth .stats-number {
        font-size: 24px;
    }
    
    .stats-section-fullwidth .stats-label {
        font-size: 16px;
    }
    
    /* 专家区块响应式 */
    .about-us-page .experts-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin-top: 20px;
    }
    
    .about-us-page .expert-card {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    
    .about-us-page .expert-image {
        position: static;
        width: 100%;
        height: 200px;
        border-radius: 8px 8px 0 0;
    }
    
    .about-us-page .expert-info {
        padding: 15px;
    }
    
    /* 专家筛选栏响应式 */
    .experts-filter-bar {
        flex-direction: column;
        gap: 20px;
    }
    
    .filter-left {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }
    
    .filter-right {
        width: 100%;
        justify-content: center;
    }
    
    .search-box input {
        width: 250px;
        max-width: 100%;
    }
    
    /* 产品筛选栏响应式 */
    .products-filter-bar {
        flex-direction: column;
        gap: 15px;
        padding: 20px;
        text-align: center;
        margin-bottom: 50px;
    }
    
    .product-filter-tag {
        padding: 12px 20px;
        font-size: 16px;
    }

    .product-filter-tag::before{
        display: none;
    }
    
    .product-filter-tag::after {
        display: none;
    }
    
    /* 产品网格响应式 */
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    /* 设备区块响应式 */
    .equipment-item {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .equipment-image,
    .equipment-content {
        width: 100%;
    }
    
    .equipment-image {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .equipment-title a {
        font-size: 28px;
    }
    
    /* 导航标签响应式 */
    .about-tabs {
        gap: 30px;
        flex-wrap: wrap;
    }
    
    .about-tab {
        font-size: 18px;
    }
    
    /* 公司介绍响应式 */
    .company-intro-text {
        padding: 0 20px;
    }
    
    .hospital-intro-content {
        flex-direction: column;
        gap: 30px;
        margin-top: 50px;
    }
    
    .intro-image {
        width: 100%;
    }
    
    .intro-text h3 {
        font-size: 22px;
    }
    
    .intro-subtitle {
        font-size: 16px;
    }
    
    .intro-description {
        font-size: 16px;
    }
    
    .timeline-item {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    
    .timeline-year {
        width: 100%;
        margin-bottom: 15px;
    }
    
    .timeline-content {
        padding-left: 0;
    }
    
    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin-top: 50px;
    }
    
    .qualifications-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin-top: 50px;
    }
    
    .hospital-intro-section,
    .development-history-section,
    .core-advantages-section,
    .qualifications-section {
        padding: 50px 0;
    }
}

@media (max-width: 480px) {
    /* 小屏幕容器 */
    .about-us-page .container,
    .stats-section-fullwidth .stats-container,
    .medical-products-section .container {
        padding: 0 10px;
    }
    
    /* 医疗中心卡片单列 */
    .about-us-page .medical-center-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    /* 专家卡片单列 */
    .about-us-page .experts-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    /* 产品卡片单列 */
    .products-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    /* 设备标题字体调整 */
    .equipment-title a {
        font-size: 24px;
    }
    
    .equipment-description {
        font-size: 13px;
    }
    
    /* 分页按钮调整 */
    .about-us-page .experts-pagination,
    .products-pagination,
    .equipment-pagination {
        gap: 8px;
    }
    
    .about-us-page .experts-pagination .pagination-btn,
    .about-us-page .experts-pagination .pagination-arrow,
    .products-pagination .pagination-btn,
    .products-pagination .pagination-arrow,
    .equipment-pagination .pagination-btn,
    .equipment-pagination .pagination-arrow {
        width: 20px;
        height: 20px;
        font-size: 11px;
    }
    
    /* 统计数据字体调整 */
    .stat-number {
        font-size: 28px;
    }
    
    .stat-label {
        font-size: 14px;
    }
    
    /* 导航标签调整 */
    .about-tabs {
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .about-tab {
        font-size: 16px;
    }
    
    /* 公司介绍网格单列 */
    .advantages-grid,
    .qualifications-grid {
        grid-template-columns: 1fr;
    }
    
}

/* ========================================
   医疗中心页面样式
======================================== */

/* 医疗中心Tab导航样式 */
.medical-center-tabs-section {
    padding: 40px 0 0 0;
}

.medical-center-tabs {
    display: flex;
    justify-content: center;
    gap: 100px;
    position: relative;
}

.medical-center-tab {
    font-family: "Microsoft YaHei", sans-serif;
    font-size: 24px;
    color: #666666;
    text-decoration: none;
    padding: 0 0 8px 0;
    transition: color 0.3s ease;
    position: relative;
}

.medical-center-tab:hover,
.medical-center-tab.active {
    color: #0255bf;
}

.medical-center-tabs-line {
    width: 100%;
    height: 1px;
    background-color: #c8c8c8;
    position: relative;
    margin-top: 8px;
}

.medical-center-tab-active-line {
    position: absolute;
    width: 95px;
    height: 3px;
    background-color: #d8ab4b;
    top: -1px;
    transition: left 0.3s ease;
}

/* 页面内容区块 */
.medical-center-content-section {
    padding: 40px 0;
}

.medical-center-content-text {
    font-family: "Microsoft YaHei", sans-serif;
    font-size: 16px;
    color: #666666;
    line-height: 1.6;
    margin-bottom: 40px;
}

/* 核心优势区块样式 */
.core-advantages-section {
    padding: 80px 0;
}

/* 医学影像中心页面的设备样式 */
.core-advantages-section .equipment-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.core-advantages-section .equipment-item {
    display: flex;
    align-items: center;
    gap: 40px;
    width: 100%;
}

.core-advantages-section .equipment-image {
    width: 580px;
    max-width: 580px;
    flex-shrink: 0;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.core-advantages-section .equipment-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.core-advantages-section .equipment-content {
    flex: 1;
}

.core-advantages-section .equipment-title {
    font-family: "Microsoft YaHei", sans-serif;
    font-size: 30px;
    color: #0255bf;
    margin-bottom: 40px;
}

.core-advantages-section .equipment-description {
    font-family: "Microsoft YaHei", sans-serif;
    font-size: 20px;
    color: #666666;
    line-height: 1.4;
}

/* 影像诊断技术区块样式 */
.imaging-technology-section {
    padding: 80px 0;
}

.technology-showcase {
    padding:0 33px;
}

.technology-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

/* 服务特色区块样式 */
.service-features-section {
    padding: 80px 0;
}

.feature-row {
    margin-bottom: 140px;
}

.feature-row:last-child {
    margin-bottom: 0;
}

.feature-title-with-dot {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 40px;
    justify-content: center;
}

.feature-dot {
    width: 8px;
    height: 8px;
    background-color: #666666;
    border-radius: 50%;
    margin-top: 13px;
    flex-shrink: 0;
}

.feature-title {
    font-family: "Microsoft YaHei", sans-serif;
    font-size: 24px;
    color: #666666;
    text-align: center;
    line-height: 1.5;
    margin: 0;
}

/* 第1行：全周期服务体系样式 */
.service-cycle-content {
    text-align: center;
}

.cycle-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 80px;
    margin-bottom: 40px;
}

.cycle-step {
    text-align: center;
    flex: 1;
    max-width: 200px;
}

.step-image {
    height: 100px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-image img {
    max-width: 100%;
    max-height: 100%;
}

.cycle-step h4 {
    font-family: "Microsoft YaHei", sans-serif;
    font-size: 18px;
    color: #333333;
    margin-bottom: 10px;
    font-weight: bold;
}

.cycle-step p {
    font-family: "Microsoft YaHei", sans-serif;
    font-size: 21px;
    color: #666666;
    line-height: 1.5;
    margin: 0;
}

.cycle-divider {
    width: 2px;
    height: 160px;
    background-color: #666666;
    flex-shrink: 0;
}

.cycle-summary {
    text-align: center;
}

.cycle-summary p {
    font-family: "Microsoft YaHei", sans-serif;
    font-size: 21px;
    color: #666666;
    line-height: 1.6;
    margin: 0 auto;
}

/* 第2行：双重质控保障样式 */
.quality-control-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.quality-image {
    margin:60px auto 80px auto;
}

.quality-image img {
    object-fit: cover;
    border-radius: 8px;
}

.quality-summary {
    text-align: center;
}

.quality-summary p {
    font-family: "Microsoft YaHei", sans-serif;
    font-size: 21px;
    color: #666666;
    line-height: 1.4;
    margin: 0 auto;
}

/* 第3行：尊享级健康管理通道样式 */
.vip-privileges-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 60px;
    padding-top:30px;
}

.privilege-buttons {
    display: flex;
    flex-direction: column;
    gap: 50px;
    align-items: center;
}

.privilege-button {
    display: flex;
    align-items: center;
    width: 425px;
    height: 65px;
    border: 1px solid #0255bf;
    border-radius: 10px;
    min-width: 300px;
    transition: all 0.3s ease;
    text-align: center;
}

.privilege-button:hover {
    background-color: #0255bf;
}


.privilege-text {
    font-family: "Microsoft YaHei", sans-serif;
    font-size: 21px;
    color: #666666;
    font-weight: 500;
    margin:0 auto;
}

.privilege-button:hover .privilege-text{
    color: #ffffff;
}

.vip-summary {
    text-align: center;
}

.vip-summary p {
    font-family: "Microsoft YaHei", sans-serif;
    font-size: 21px;
    color: #666666;
    line-height: 1.4;
    margin: 0 auto;
}

/* 中心介绍内容样式 */
.center-intro-content {
    display: flex;
    align-items: flex-start;
    gap: 44px;
    margin-bottom: 80px;
}

.center-intro-content .intro-text {
    flex: 1;
}

.center-intro-content .intro-text h3 {
    font-family: "Microsoft YaHei", sans-serif;
    font-size: 26px;
    color: #333333;
    margin-bottom: 15px;
    font-weight: bold;
}

.center-intro-content .intro-subtitle {
    font-family: Arial, sans-serif;
    font-size: 18px;
    color: #999999;
    margin-bottom: 38px;
}

.center-intro-content .intro-description {
    font-family: "Microsoft YaHei", sans-serif;
    font-size: 16px;
    color: #666666;
    line-height: 1.8;
}

.center-intro-content .intro-description p {
    margin-bottom: 20px;
}

.center-intro-content .intro-image {
    width: 510px;
    flex-shrink: 0;
}

.center-intro-content .intro-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
}

/* 服务项目网格样式 */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 80px;
}

.service-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 30px;
    background-color: #fafafa;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.service-item:hover {
    background-color: #f0f8ff;
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(2, 85, 191, 0.15);
}

.service-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width:50px;
}

.service-icon img {
    object-fit: contain;
}

.service-item h4 {
    font-family: "Microsoft YaHei", sans-serif;
    font-size: 18px;
    color: #333333;
    margin-bottom: 10px;
    font-weight: bold;
}

.service-item p {
    font-family: "Microsoft YaHei", sans-serif;
    font-size: 14px;
    color: #666666;
    line-height: 1.6;
}

/* 中心优势样式 */
.advantages-content {
    margin-top: 80px;
}

.center-advantage-item {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    margin-bottom: 40px;
    padding: 30px;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.center-advantage-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.center-advantage-item .advantage-number {
    width: 60px;
    height: 60px;
    background-color: #0255bf;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: bold;
    flex-shrink: 0;
}

.center-advantage-item .advantage-content h4 {
    font-family: "Microsoft YaHei", sans-serif;
    font-size: 20px;
    color: #333333;
    margin-bottom: 15px;
    font-weight: bold;
}

.center-advantage-item .advantage-content p {
    font-family: "Microsoft YaHei", sans-serif;
    font-size: 16px;
    color: #666666;
    line-height: 1.6;
}

/* 检查项目网格样式 */
.examination-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 80px;
}

.examination-category {
    padding: 30px;
    background-color: #fafafa;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.examination-category:hover {
    background-color: #f0f8ff;
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(2, 85, 191, 0.15);
}

.examination-category h4 {
    font-family: "Microsoft YaHei", sans-serif;
    font-size: 18px;
    color: #0255bf;
    margin-bottom: 20px;
    font-weight: bold;
}

.examination-category ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.examination-category li {
    font-family: "Microsoft YaHei", sans-serif;
    font-size: 14px;
    color: #666666;
    padding: 8px 0;
    border-bottom: 1px solid #e0e0e0;
    position: relative;
    padding-left: 20px;
}

.examination-category li:last-child {
    border-bottom: none;
}

.examination-category li::before {
    content: "•";
    color: #0255bf;
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* 医疗中心页面设备内容样式 */
.medical-center-equipment-content {
    margin-top: 80px;
}

.medical-center-equipment-item {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 60px;
    padding: 40px;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.medical-center-equipment-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.medical-center-equipment-item:nth-child(even) {
    flex-direction: row-reverse;
}

.medical-center-equipment-item .equipment-image {
    width: 300px;
    height: 200px;
    flex-shrink: 0;
    border-radius: 10px;
    overflow: hidden;
}

.medical-center-equipment-item .equipment-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.medical-center-equipment-item .equipment-info {
    flex: 1;
}

.medical-center-equipment-item .equipment-info h4 {
    font-family: "Microsoft YaHei", sans-serif;
    font-size: 20px;
    color: #0255bf;
    margin-bottom: 15px;
    font-weight: bold;
}

.medical-center-equipment-item .equipment-info p {
    font-family: "Microsoft YaHei", sans-serif;
    font-size: 16px;
    color: #666666;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* 体检套餐样式 */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 80px;
}

.package-item {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
}

.package-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.package-item.featured {
    border: 2px solid #0255bf;
    transform: scale(1.05);
}

.package-header {
    background-color: #0255bf;
    color: white;
    padding: 20px;
    text-align: center;
}

.package-item.featured .package-header {
    background-color: #d8ab4b;
}

.package-header h4 {
    font-family: "Microsoft YaHei", sans-serif;
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: bold;
}

.package-price {
    font-family: "Microsoft YaHei", sans-serif;
    font-size: 28px;
    font-weight: bold;
}

.package-content {
    padding: 30px;
}

.package-content ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.package-content li {
    font-family: "Microsoft YaHei", sans-serif;
    font-size: 14px;
    color: #666666;
    padding: 8px 0;
    border-bottom: 1px solid #e0e0e0;
    position: relative;
    padding-left: 20px;
}

.package-content li:last-child {
    border-bottom: none;
}

.package-content li::before {
    content: "✓";
    color: #0255bf;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.package-suitable {
    font-family: "Microsoft YaHei", sans-serif;
    font-size: 12px;
    color: #999999;
    text-align: center;
    padding: 10px;
    background-color: #f8f9fa;
    border-radius: 5px;
}

/* 体检流程样式 */
.process-steps {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-top: 80px;
}

.process-step {
    flex: 1;
    text-align: center;
    position: relative;
}

.process-step::after {
    content: "";
    position: absolute;
    top: 30px;
    right: -15px;
    width: 30px;
    height: 2px;
    background-color: #d8ab4b;
}

.process-step:last-child::after {
    display: none;
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: #0255bf;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: bold;
    margin: 0 auto 20px;
}

.step-content h4 {
    font-family: "Microsoft YaHei", sans-serif;
    font-size: 18px;
    color: #333333;
    margin-bottom: 10px;
    font-weight: bold;
}

.step-content p {
    font-family: "Microsoft YaHei", sans-serif;
    font-size: 14px;
    color: #666666;
    line-height: 1.6;
}

/* 注意事项样式 */
.precautions-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 80px;
}

.precaution-category {
    padding: 30px;
    background-color: #fafafa;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.precaution-category:hover {
    background-color: #f0f8ff;
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(2, 85, 191, 0.15);
}

.precaution-category h4 {
    font-family: "Microsoft YaHei", sans-serif;
    font-size: 18px;
    color: #0255bf;
    margin-bottom: 20px;
    font-weight: bold;
}

.precaution-category ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.precaution-category li {
    font-family: "Microsoft YaHei", sans-serif;
    font-size: 14px;
    color: #666666;
    padding: 8px 0;
    border-bottom: 1px solid #e0e0e0;
    position: relative;
    padding-left: 20px;
}

.precaution-category li:last-child {
    border-bottom: none;
}

.precaution-category li::before {
    content: "•";
    color: #0255bf;
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* 检查项目标签页样式 */
.examination-tabs {
    margin-top: 80px;
}

.tab-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.tab-btn {
    padding: 12px 30px;
    background-color: #f8f9fa;
    color: #666666;
    border: none;
    border-radius: 25px;
    font-family: "Microsoft YaHei", sans-serif;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-btn:hover,
.tab-btn.active {
    background-color: #0255bf;
    color: white;
}

.tab-content {
    position: relative;
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
}

.examination-categories {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.category-item {
    padding: 30px;
    background-color: #fafafa;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.category-item:hover {
    background-color: #f0f8ff;
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(2, 85, 191, 0.15);
}

.category-item h5 {
    font-family: "Microsoft YaHei", sans-serif;
    font-size: 18px;
    color: #0255bf;
    margin-bottom: 15px;
    font-weight: bold;
}

.category-item p {
    font-family: "Microsoft YaHei", sans-serif;
    font-size: 14px;
    color: #666666;
    line-height: 1.6;
}

/* 医疗中心页面响应式设计 */
@media (max-width: 1200px) {
    .center-intro-content {
        gap: 30px;
    }
    
    .center-intro-content .intro-image {
        width: 400px;
    }
    
    .medical-center-equipment-item {
        gap: 30px;
        padding: 30px;
    }
    
    .medical-center-equipment-item .equipment-image {
        width: 250px;
        height: 180px;
    }
}

@media (max-width: 768px) {
    .center-intro-content {
        flex-direction: column;
        gap: 30px;
        margin-bottom: 60px;
    }
    
    .center-intro-content .intro-image {
        width: 100%;
        order: -1;
    }
    
    .center-intro-content .intro-image img {
        height: 200px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 50px;
    }
    
    .service-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        padding: 25px;
    }
    
    .examination-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 50px;
    }
    
    .medical-center-equipment-item {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        margin-bottom: 40px;
        padding: 25px;
    }
    
    .medical-center-equipment-item:nth-child(even) {
        flex-direction: column;
    }
    
    .medical-center-equipment-item .equipment-image {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .packages-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 50px;
    }
    
    .package-item.featured {
        transform: none;
    }
    
    .process-steps {
        flex-direction: column;
        gap: 40px;
        margin-top: 50px;
    }
    
    .process-step::after {
        display: none;
    }
    
    .precautions-content {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 50px;
    }
    
    .tab-buttons {
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .tab-btn {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .examination-categories {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

 /* ========================================
    联系我们页面样式
 ======================================== */

.contact-us-page {
    padding: 0;
}

/* 联系我们区块 */
.contact-section {
    padding: 80px 0;
}

.contact-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 80px;
    margin-bottom: 80px;
}

/* 左侧联系信息 */
.contact-info {
    max-width: 410px;
    width:410px;
    flex-shrink: 0;
}

.company-title {
    margin-bottom: 40px;
    border-bottom: 1px solid #999999;
    padding-bottom: 16px;
}

.company-title h3 {
    font-family: "Microsoft YaHei", sans-serif;
    font-size: 24px;
    color: #333333;
    margin: 0;
    line-height: 1;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

/* 联系我们页面的联系信息使用footer样式 */
.contact-info .footer-contact-info {
    gap: 25px; /* 覆盖footer的10px间距 */
}

.contact-info .contact-item {
    display: flex;
    align-items: center;
    gap: 20px; /* 使用footer的间距 */
}

.contact-info .contact-item img {
    width: 20px;
    height: auto;
}

.contact-info .contact-text {
    font-family: 'Microsoft YaHei', '微软雅黑', Arial, sans-serif;
    font-size: 18px;
    color: #999999; /* 使用footer的颜色 */
}

/* 右侧联系表单 */
.contact-form-container {
    max-width: 520px;
    width: 520px;
    flex-shrink: 0;
}

.contact-form {
    display: flex;
    flex-direction: column;
}

.form-row {
    position: relative;
}

.form-row-double {
    display: flex;
    gap: 20px;
}

.form-row-double .form-field:first-child {
    flex: 4;
}

.form-row-double .form-field:last-child {
    flex: 6;
}

.form-field {
    position: relative;
}

.form-field input {
    width: 100%;
    padding: 15px 0;
    border: none;
    border-bottom: 2px solid #e0e0e0;
    background: transparent;
    font-family: "Microsoft YaHei", sans-serif;
    font-size: 16px;
    color: #333333;
    transition: border-color 0.3s ease;
    outline: none;
}

.form-field input:focus {
    border-bottom-color: #0255bf;
}

.form-field input::placeholder {
    color: #999999;
}

.form-submit {
    text-align: center;
    margin-top: 20px;
}

.submit-btn {
    background: #2764c3;
    color: white;
    padding: 10px 50px;
    border-radius: 2px;
    text-decoration: none;
    font-size: 21px;
    line-height: 21px;
    border: none;
    cursor: pointer;
}


/* 底部图片区域 */
.contact-image-section {
    text-align: center;
}

.contact-image {
    max-width: 1075px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
}

.contact-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* 联系我们页面响应式设计 */
@media (max-width: 1200px) {
    .contact-content {
        gap: 60px;
    }
    
    .contact-info,
    .contact-form-container {
        width: calc(50% - 30px);
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 60px 0;
    }
    
    .contact-content {
        flex-direction: column;
        gap: 40px;
        margin-bottom: 60px;
    }
    
    .contact-info,
    .contact-form-container {
        width: 100%;
    }
    
    .company-title {
        margin-bottom: 30px;
    }
    
    .company-title h3 {
        font-size: 20px;
    }
    
    .contact-info .contact-text {
        font-size: 16px;
    }
    
    .contact-details {
        gap: 20px;
    }
    
    .form-row-double {
        flex-direction: column;
        gap: 25px;
    }
    
    .contact-image {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .contact-section {
        padding: 40px 0;
    }
    
    .contact-content {
        margin-bottom: 40px;
    }
    
    .company-title h3 {
        font-size: 18px;
    }
    
    .contact-info .contact-text {
        font-size: 15px;
    }
    
    .contact-info .contact-item img {
        width: 18px;
    }
    
    .form-field input {
        font-size: 15px;
        padding: 12px 0;
    }
    
    .submit-btn {
        padding: 12px 40px;
        font-size: 16px;
    }
    
    /* 医疗中心页面响应式 */
    .medical-center-tabs {
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .medical-center-tab {
        font-size: 18px;
        padding: 8px 12px;
        white-space: nowrap;
    }
    
    /* VIP特权按钮响应式 */
    .privilege-button {
        width: 320px;
        height: 55px;
    }
    
    .privilege-text {
        font-size: 18px;
    }
    
    .medical-center-content-text {
        padding: 0 20px;
    }
    
    /* 核心优势区块响应式 */
    .core-advantages-section .equipment-item {
        gap: 30px;
    }
    
    .core-advantages-section .equipment-image,
    .core-advantages-section .equipment-content {
        width: calc(50% - 15px);
    }
    
    .cycle-steps {
        flex-direction: column;
        gap: 30px;
    }
    
    .cycle-divider {
        width: 40px;
        height: 2px;
        transform: rotate(90deg);
    }
    
    
    /* 核心优势区块移动端响应式 */
    .core-advantages-section .equipment-item {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .core-advantages-section .equipment-image,
    .core-advantages-section .equipment-content {
        width: 100%;
    }
    
    .core-advantages-section .equipment-image {
        max-width: 400px;
        margin: 0 auto;
    }
}

/* ========================================
   健康体检中心页面样式
======================================== */

/* 第一个区块：三列特色服务 */
.health-exam-features-section {
    padding: 60px 0;
}

.health-exam-features-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.health-exam-feature-item {
    display: flex;
    align-items: center;
    gap: 40px;
    flex: 1;
}

.health-exam-feature-icon img {
    max-width: 100%;
    height: auto;
}

.health-exam-feature-text {
    flex: 1;
}

.health-exam-feature-title {
    font-family: "Microsoft YaHei", sans-serif;
    font-size: 20px;
    color: #2e2e2e;
    font-weight: normal;
    line-height: 1;
}
.health-exam-feature-title:hover {
    color: #0056ba;
}

.health-exam-feature-subtitle {
    font-family: "Arial", sans-serif;
    font-size: 14px;
    color: #999999;
    margin: 0;
}

/* 第二个区块：智能环境 */
.health-exam-smart-environment-section {
    padding: 140px 0;
}

.health-exam-section-header-simple {
    text-align: center;
    margin-bottom: 20px;
}


.health-exam-environment-description {
    text-align: center;
    margin-bottom: 80px;
}

.health-exam-environment-description p {
    font-family: "Microsoft YaHei", sans-serif;
    font-size: 24px;
    color: #666666;
    margin: 0;
    line-height: 1.5;
}

.health-exam-environment-features {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 100px;
}

.health-exam-environment-item {
    text-align: center;
    flex: 1;
    max-width: 300px;
}

.health-exam-environment-icon {
    margin-bottom: 20px;
    height: 112px;
    display: flex;
    align-items: center;
    justify-content:center;
}

.health-exam-environment-icon img {
    max-width: 100%;
    height: auto;
}

.health-exam-environment-title {
    font-family: "Microsoft YaHei", sans-serif;
    font-size: 24px;
    color: #666666;
    margin-top:30px;
    margin-bottom: 15px;
    font-weight: normal;
}

.health-exam-environment-desc {
    font-family: "Microsoft YaHei", sans-serif;
    font-size: 18px;
    color: #666666;
    line-height: 1.5;
    margin: 0;
}
.health-exam-environment-title:hover,.health-exam-environment-desc:hover {
    color: #0056ba;
}

/* 第三个区块：权威团队 */
.health-exam-expert-team-section {
    padding: 80px 0;
}

.health-exam-team-description {
    text-align: center;
    margin-bottom: 80px;
}

.health-exam-team-description p {
    font-family: "Microsoft YaHei", sans-serif;
    font-size: 24px;
    color: #666666;
    margin: 0;
    line-height: 1.5;
}

.health-exam-team-triangle-layout {
    max-width: 800px;
    margin: 0 auto;
}

.health-exam-team-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    gap: 20px;
}

.health-exam-team-item {
    text-align: center;
    flex: 1;
}

.health-exam-team-title {
    font-family: "Microsoft YaHei", sans-serif;
    font-size: 24px;
    color: #333333;
    margin-bottom: 15px;
}

.health-exam-team-content {
    font-family: "Microsoft YaHei", sans-serif;
    font-size: 18px;
    color: #666666;
    line-height: 1.6;
    text-align: left;
}

.health-exam-team-item:hover .health-exam-team-title,.health-exam-team-item:hover .health-exam-team-content{
    color: #0056ba;
}

.health-exam-team-center-image {
    flex-shrink: 0;
}

.health-exam-team-center-image img {
    max-width: 100%;
    height: auto;
}

.health-exam-team-bottom {
    display: flex;
    justify-content: center;
}

.health-exam-team-bottom .health-exam-team-item {
    max-width: 300px;
}

.health-exam-team-bottom .health-exam-team-item .health-exam-team-content{
    text-align: center;
}

/* 第四个区块：背景图片区域 */
.health-exam-guarantee-section {
    padding: 0;
    position: relative;
    height: 780px;
    background-repeat: no-repeat;
    background-position: left top;
    background-size: 750px 780px;
}

.health-exam-guarantee-content {
    position: relative;
    height: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: stretch;
}




.health-exam-guarantee-text-content {
    width: auto;
    max-width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 0;
    text-align: right;
    padding-right: 20px;
    position: relative;
    padding-bottom: 150px;
}

/* 第一行：主标题 */
.guarantee-main-title {
    margin-top: 36px;
}

.guarantee-main-title h2 {
    font-family: "Microsoft YaHei", sans-serif;
    font-size: 30px;
    color: #0255bf;
    margin: 0 0 8px 0;
    line-height: 1;
    display: inline-block;
}

.title-gradient-line {
    height: 3px;
    background: linear-gradient(to right, transparent, #d8ab4b);
    width: 100%;
}

/* 第二行和第三行：区块标题 */
.guarantee-section {
    margin-top: 58px;
}

.guarantee-section-title {
    font-family: "Microsoft YaHei", sans-serif;
    font-size: 24px;
    color: #0255bf;
    margin: 0 0 15px 0;
    line-height: 1;
}

.guarantee-text-list {
    margin-bottom: 20px;
}

.guarantee-text-list p {
    font-family: "Microsoft YaHei", sans-serif;
    font-size: 16px;
    color: #2d2d2d;
    margin: 8px 0;
    line-height: 1;
}

/* 第四行：总结文字 */
.guarantee-summary {
    margin-top: 30px;
    position: absolute;
    bottom: 150px;
    right: 20px;
    text-align: right;
}

.guarantee-summary p {
    font-family: "Microsoft YaHei", sans-serif;
    font-size: 18px;
    color: #666666;
    margin: 5px 0;
    line-height: 1.4;
}

.guarantee-summary .highlight-text {
    font-size: 24px;
    color: #0255bf;
}

/* 第五个区块：选择中核医疗 */
.health-exam-choose-cnnc-section {
    padding: 140px 0;
}

.health-exam-choose-content {
    margin-top: 80px;
    text-align: center;
}

.health-exam-choose-description {
    margin-bottom: 80px;
}

.health-exam-choose-text-1 {
    font-family: "Microsoft YaHei", sans-serif;
    font-size: 18px;
    color: #666666;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.health-exam-choose-text-2 {
    font-family: "Microsoft YaHei", sans-serif;
    font-size: 24px;
    color: #d8ab4b;
    margin: 0;
}

.health-exam-choose-image {
    text-align: center;
}

.health-exam-choose-image img {
    max-width: 100%;
    height: auto;
}

/* ========================================
   健康管理中心页面样式
======================================== */

/* 区块1：健康管理特色 */
.health-mgmt-features-section {
    padding: 80px 0;
}

.health-mgmt-features-content {
    max-width: 1200px;
    margin: 0 auto;
}

.features-advantage-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-bottom: 60px;
}

.advantage-icon img {
    max-width: 100%;
    height: auto;
}

.advantage-text {
    font-family: "Microsoft YaHei", sans-serif;
    font-size: 24px;
    color: #666666;
    line-height: 1.5;
}

.features-showcase-image {
    text-align: center;
}

.features-showcase-image img {
    max-width: 100%;
    height: auto;
}

/* 区块2：健康管理中心服务 */
.health-mgmt-services-section {
    padding: 80px 0;
}

.health-mgmt-services-content {
    margin: 0 auto;
}

.services-slogan {
    text-align: center;
    font-family: "Microsoft YaHei", sans-serif;
    font-size: 24px;
    color: #666666;
    margin-bottom: 60px;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 50px;
    max-width: 1000px;
    margin:0 auto;
}

.service-row {
    display: flex;
    align-items: center;
    gap: 110px;
    background-color: #fafafa;
    padding: 0 40px;
    height: 66px;
}

.service-row .service-icon img {
    max-width: 100%;
    height: auto;
}

.service-row .service-text {
    font-family: "Microsoft YaHei", sans-serif;
    font-size: 24px;
    color: #666666;
    flex: 1;
}

/* 区块3：特色服务亮点 */
.health-mgmt-highlights-section {
    padding: 80px 0;
}

.health-mgmt-highlights-content {
    max-width: 1200px;
    margin: 0 auto;
}

.highlights-features {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 50px;
    margin-bottom: 80px;
}

.highlight-item {
    text-align: center;
    flex: 1;

}

.highlight-icon {
    margin-bottom: 20px;
    height: 112px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.highlight-icon img {
    max-width: 100%;
    height: auto;
}

.highlight-title {
    font-family: "Microsoft YaHei", sans-serif;
    font-size: 24px;
    color: #666666;
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: normal;
}

.highlight-desc {
    font-family: "Microsoft YaHei", sans-serif;
    font-size: 24px;
    color: #666666;
    line-height: 1.5;
    margin: 0;
}

.highlight-title:hover,
.highlight-desc:hover {
    color: #0056ba;
}

.highlights-advantage {
    text-align: center;
    font-family: "Microsoft YaHei", sans-serif;
    font-size: 24px;
    color: #666666;
    margin-top: 40px;
}

/* 区块4：未来进驻团队 */
.health-mgmt-team-section {
    padding: 80px 0;
}

.health-mgmt-team-content {
    max-width: 1200px;
    margin: 0 auto;
}

.team-cards {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 60px;
}

.team-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 220px;
    padding: 40px 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.1), 4px 4px 16px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    flex: 1;
    max-width: 250px;
    position: relative;
    overflow: visible;
}

.team-card::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 10px;
    right: 10px;
    height: 3px;
    background: linear-gradient(to right, transparent, #d8ab4b 20%, #d8ab4b 80%, transparent);
    border-radius: 0 0 10px 10px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 3px 3px 12px rgba(0, 0, 0, 0.15), 6px 6px 24px rgba(0, 0, 0, 0.12);
}

.team-card:hover::after {
    opacity: 1;
}

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

.team-icon img {
    max-width: 80px;
    height: auto;
}

.team-title {
    font-family: "Microsoft YaHei", sans-serif;
    font-size: 24px;
    color: #333333;
    text-align: center;
    font-weight: normal;
}

/* 区块5：远程医疗保障 */
.health-mgmt-remote-section {
    padding: 80px 0;
}

.health-mgmt-remote-content {
    max-width: 1200px;
    margin: 0 auto;
}

.remote-highlight-text {
    text-align: center;
    background: linear-gradient(to right, transparent, #0255bf 25%, #0255bf 75%, transparent);
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Microsoft YaHei", sans-serif;
    font-size: 24px;
    color: #fff;
    margin-bottom: 60px;
}

.remote-showcase-image {
    text-align: center;
    margin-bottom: 80px;
}

.remote-showcase-image img {
    max-width: 100%;
    height: auto;
}

.remote-services-area {
    max-width: 1100px;
    margin: 0 auto;
}

.service-title-left,
.service-title-right {
    text-align: center;
    margin-bottom: 30px;
}

.service-title-left h3,
.service-title-right h3 {
    font-family: "Microsoft YaHei", sans-serif;
    font-size: 30px;
    color: #0255bf;
    margin-bottom: 10px;
    font-weight: normal;
}

.title-divider {
    width: 80px;
    height: 3px;
    background-color: #d8ab4b;
    margin: 0 auto 10px;
}

.service-title-left p,
.service-title-right p {
    font-family: "Arial", sans-serif;
    font-size: 16px;
    color: #999999;
    margin: 0;
}

.services-content-row {
    display: flex;
    gap: 60px;
}

.services-left {
    width: 380px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.services-right {
    width: 610px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.service-item-left {
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 25px 20px;
    background-color: #fff;
    box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    padding-left:40px;
    position: relative;
    overflow: visible;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item-left::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 8px;
    right: 8px;
    height: 4px;
    background: linear-gradient(to right, transparent, #d8ab4b 20%, #d8ab4b 80%, transparent);
    border-radius: 0 0 8px 8px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-item-left:hover {
    transform: translateY(-2px);
    box-shadow: 3px 3px 8px rgba(0, 0, 0, 0.4);
}

.service-item-left:hover::after {
    opacity: 1;
}

.service-item-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 10px 20px;
    background-color: #fff;
    box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    position: relative;
    overflow: visible;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item-right::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 8px;
    right: 8px;
    height: 4px;
    background: linear-gradient(to right, transparent, #d8ab4b 20%, #d8ab4b 80%, transparent);
    border-radius: 0 0 8px 8px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-item-right:hover {
    transform: translateY(-2px);
    box-shadow: 3px 3px 8px rgba(0, 0, 0, 0.4);
}

.service-item-right:hover::after {
    opacity: 1;
}

.service-item-left .service-icon img {
    width: 40px;
    height: 40px;
}

.service-item-right .service-icon {
    margin-bottom: 10px;
}

.service-item-right .service-icon img {
    width: 60px;
    height: 60px;
}

.service-item-left .service-text,
.service-item-right .service-text {
    font-family: "Microsoft YaHei", sans-serif;
    font-size: 24px;
    color: #666666;
    line-height: 1.5;
}

/* ========================================
   超声医学中心页面样式
======================================== */

/* 第一个区块：展示图片 */
.ultrasound-showcase-section {
    /*padding: 80px 0;*/
}

.ultrasound-showcase-image {
    text-align: center;
}

.ultrasound-showcase-image img {
    max-width: 100%;
    height: auto;
}

/* 第二个和第三个区块：早发现早干预 */
.ultrasound-early-detection-section {
    padding: 80px 0;
}

.ultrasound-early-detection-section .section-header .section-subtitle,.ultrasound-international-section .section-header .section-subtitle{
    font-size:24px;
}

.ultrasound-early-detection-content {
    max-width: 1200px;
    margin: 0 auto;
}

.detection-stats {
    text-align: center;
    font-family: "Microsoft YaHei", sans-serif;
    font-size: 24px;
    color: #666666;
    margin-bottom: 60px;
    line-height: 1.5;
}

.detection-image {
    width: 100%;
    margin-bottom: 60px;
}

.detection-image img {
    width: 100%;
    height: auto;
    display: block;
}

.detection-target {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}



.target-text {
    font-family: "Microsoft YaHei", sans-serif;
    font-size: 24px;
    color: #666666;
    text-align: center;
    flex: 1;
}

/* 第四个区块：选择我们的4大理由（全宽区块） */
.ultrasound-reasons-section {
    width: 100%;
    padding: 80px 0 0 0;
    background-color: #fafafa;
}

.ultrasound-reasons-section .container {
    width: 1200px;
    margin: 0 auto;
}

.ultrasound-reasons-bg {
    width: 100%;
    padding: 80px 0;
}

.ultrasound-reasons-bg .container {
    width: 1200px;
    margin: 0 auto;
}

.ultrasound-reasons-grid {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
}

.reasons-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 90px;
    max-width: 280px;
}

.reason-item {
    text-align: center;

}

.reason-title {
    font-family: "Microsoft YaHei", sans-serif;
    font-size: 24px;
    color: #0255bf;
    margin-bottom: 15px;
    font-weight: normal;
}

.reason-desc {
    font-family: "Microsoft YaHei", sans-serif;
    font-size: 24px;
    color: #666666;
    line-height: 1.6;
    margin: 0;
    text-align: left;
}

.reasons-center {
    flex: 1;
    text-align: center;
}

.reasons-center img {
    max-width: 100%;
    height: auto;
}

/* 第五个区块：重要健康建议 */
.ultrasound-health-advice-section {
    padding: 0;
}

.ultrasound-health-advice-header {
    background-color: #0255bf;
    width: 100%;
    text-align: center;
    height: 60px;
    line-height: 60px;
}

.health-advice-title {
    font-family: "Microsoft YaHei", sans-serif;
    font-size: 30px;
    color: #fff;
    margin: 0;
    font-weight: normal;
}

.ultrasound-health-advice-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 65px 20px;
}

.advice-columns {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    gap: 40px;
}

.advice-item {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    flex: 1;
}

.advice-icon img {
    flex-shrink: 0;
}

.advice-text {
    flex: 1;
}

.advice-item-title {
    font-family: "Microsoft YaHei", sans-serif;
    font-size: 24px;
    color: #0255bf;
    margin-bottom: 15px;
    font-weight: normal;
    line-height:1;
}

.advice-item-title span{
    font-size:36px;
    font-weight: bold;
    padding-right: 20px;
}

.advice-item-desc {
    font-family: "Microsoft YaHei", sans-serif;
    font-size: 24px;
    color: #666666;
    line-height: 1;
    margin: 0;
}

/* 第六个区块：国际患者转诊 */
.ultrasound-international-section {
    padding: 80px 0;
}

.ultrasound-international-header {
    text-align: center;
    margin-bottom: 80px;
}

.international-title {
    font-family: "Microsoft YaHei", sans-serif;
    font-size: 32px;
    color: #333333;
    margin-bottom: 20px;
    font-weight: bold;
}

.international-subtitle {
    font-family: "Microsoft YaHei", sans-serif;
    font-size: 18px;
    color: #666666;
    margin: 0;
    line-height: 1.5;
}

.ultrasound-international-content {
    max-width: 1200px;
    margin: 0 auto;
}

.international-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px 30px;
}

.international-item {
    text-align: center;
}

.international-image {
    margin-bottom: 20px;
}

.international-image img {
    width: 100%;
    height: 305px;
    object-fit: cover;
    border-radius: 8px;
}

.international-item-title {
    font-family: "Microsoft YaHei", sans-serif;
    font-size: 20px;
    color: #333333;
    margin: 0;
    font-weight: normal;
}

/* 超小屏幕响应式 (480px以下) */
@media (max-width: 480px) {
    /* 医疗中心Tab导航超小屏幕优化 */
    .medical-center-tabs {
        gap: 15px;
        padding: 0 10px;
    }
    
    .medical-center-tab {
        font-size: 14px;
        padding: 6px 8px;
    }
    
    /* VIP特权按钮超小屏幕优化 */
    .privilege-button {
        width: 280px;
        height: 50px;
    }
    
    .privilege-text {
        font-size: 16px;
    }
    
    /* 服务特色区块间距调整 */
    .feature-row {
        margin-bottom: 100px;
    }
    
    .cycle-steps {
        gap: 60px;
    }
    
    .privilege-buttons {
        gap: 40px;
    }
    
    /* 健康体检中心页面响应式 */
    .health-exam-features-row {
        flex-direction: column;
        gap: 40px;
    }
    
    .health-exam-feature-item {
        justify-content: center;
        text-align: center;
        gap: 20px;
    }
    
    .health-exam-environment-features {
        flex-direction: column;
        gap: 60px;
        align-items: center;
    }
    
    .health-exam-team-row {
        flex-direction: column;
        gap: 40px;
    }
    
    .health-exam-guarantee-section {
        height: auto;
        background-size: cover;
        background-position: center;
    }
    
    .health-exam-guarantee-content {
        flex-direction: column;
        justify-content: flex-start;
    }
    
    .health-exam-guarantee-text-content {
        max-width: 100%;
        padding: 40px 20px;
        padding-bottom: 80px;
        text-align: left;
    }
    
    .guarantee-main-title h2 {
        font-size: 24px;
    }
    
    .guarantee-section-title {
        font-size: 20px;
    }
    
    .guarantee-text-list p {
        font-size: 14px;
    }
    
    .guarantee-summary {
        position: static;
        margin-top: 40px;
        text-align: left;
    }
    
    .guarantee-summary p {
        font-size: 16px;
    }
    
    .guarantee-summary .highlight-text {
        font-size: 20px;
    }
    
    .health-exam-section-header-simple .section-title {
        font-size: 24px;
    }
    
    .health-exam-environment-description p,
    .health-exam-team-description p {
        font-size: 18px;
    }
    
    .health-exam-choose-text-1 {
        font-size: 16px;
    }
    
    .health-exam-choose-text-2 {
        font-size: 20px;
    }
    
    /* 健康管理中心页面响应式 */
    .features-advantage-row {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .advantage-text {
        font-size: 18px;
    }
    
    .service-row {
        gap: 20px;
        padding: 0 20px;
        flex-direction: column;
        height: auto;
        padding: 20px;
        text-align: center;
    }
    
    .service-row .service-text {
        font-size: 18px;
    }
    
    .highlights-features {
        flex-direction: column;
        gap: 40px;
        align-items: center;
    }
    
    .highlights-advantage {
        font-size: 18px;
    }
    
    .team-cards {
        flex-direction: column;
        gap: 30px;
    }
    
    .team-card {
        max-width: 300px;
        height: 180px;
    }
    
    .remote-highlight-text {
        font-size: 18px;
        padding: 20px 40px;
        height:auto;
    }
    
    .services-content-row {
        flex-direction: column;
        gap: 20px;
    }
    
    .services-left,
    .services-right {
        width: 100%;
    }
    
    .service-title-left h3,
    .service-title-right h3 {
        font-size: 24px;
    }
    
    /* 超声医学中心页面响应式 */
    .detection-stats {
        font-size: 18px;
    }
    
    .target-text {
        font-size: 18px;
    }
    
    .ultrasound-reasons-section .container,
    .ultrasound-reasons-bg .container {
        width: 95%;
        max-width: 1200px;
        padding: 0 20px;
    }
    
    .ultrasound-reasons-grid {
        flex-direction: column;
        gap: 40px;
    }
    
    .reason-title {
        font-size: 20px;
    }
    
    .reason-desc {
        font-size: 14px;
    }
    
    .health-advice-title {
        font-size: 24px;
    }
    
    .advice-columns {
        flex-direction: column;
        gap: 40px;
    }
    
    .advice-item {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .advice-item-title {
        font-size: 20px;
    }
    
    .advice-item-desc {
        font-size: 14px;
    }
    
    .international-title {
        font-size: 24px;
    }
    
    .international-subtitle {
        font-size: 16px;
    }
    
    .international-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .international-image img {
        height: 200px;
    }
    
    .international-item-title {
        font-size: 18px;
    }
}

/* ========================================
   新闻资讯列表页面样式
======================================== */

/* 置顶文章区域 */
.news-sticky-section {
    padding-bottom:20px;
    border-bottom: 1px solid #e5e5e5;
}

.sticky-posts-container {
    max-width: 1200px;
    margin: 0 auto;
}

.sticky-posts-rows {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.sticky-post-row {
    display: flex;
    align-items: center;
    padding: 0;
    position: relative;
    height: 80px;
}


.sticky-category-info {
    min-width: 100px;
    text-align: left;
}

.category-title {
    font-family: "Microsoft YaHei", sans-serif;
    font-size: 30px;
    color: #0255bf;
    margin: 0;
    font-weight:lighter;
}
.category-en-title {
    font-family: "Microsoft YaHei", sans-serif;
    font-size: 16px;
    color: #999999;
    margin: 0;
    font-weight:lighter;
}

.sticky-divider {
    width: 2px;
    height: 80px;
    background-color: #0255bf;
    margin: 0 30px;
    position: relative;
    overflow: hidden;
}



.sticky-post-info {
    flex: 1;
}

.sticky-post-title {
    font-family: "Microsoft YaHei", sans-serif;
    font-size: 30px;
    color: #0255bf;
    margin: 0 0 10px 0;
    font-weight: normal;
    line-height: 1;
}

.sticky-post-title::before {
    content: '•';
    color: #0255bf;
    margin-right: 20px;
}

.sticky-post-date {
    font-family: "Microsoft YaHei", sans-serif;
    font-size: 16px;
    color: #0255bf;
    margin: 0;
}

.sticky-post-link {
    text-decoration: none;
    color: inherit;
}

.sticky-post-empty {
    color: #999999;
}

.sticky-post-empty .sticky-post-title {
    color: #999999;
    font-weight: normal;
}

.sticky-post-empty .sticky-post-date {
    color: #999999;
}

/* 分类页面轮播卡片区域 */
.category-news-carousel-section {
    padding: 80px 0;
}

.category-news-carousel-container {
    max-width: 1200px;
    margin: 0 auto;
}

.category-news-carousel {
    position: relative;
    margin:0 auto;
}

.category-carousel-slides {
    position: relative;
    margin-bottom: 40px;
}

.category-carousel-slide {
    display: none;
    width: 655px;
    margin: 0 auto;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.category-carousel-slide:first-child {
    display: block;
}

.category-carousel-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.category-carousel-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.category-carousel-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-carousel-content {
    padding: 30px;
}

.category-carousel-excerpt {
    font-family: "Microsoft YaHei", sans-serif;
    font-size: 16px;
    color: #666666;
    line-height: 1.6;
    margin: 0;
    height: 48px; /* 固定两行文字高度 */
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.category-carousel-controls {
    text-align: center;
}

.category-carousel-titles {
    width: 655px;
    margin: 0 auto 20px;
    position: relative;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.category-carousel-title-item {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    cursor: pointer;
    padding: 10px 0;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    text-align: center;
}

.category-carousel-title-item.active {
    opacity: 1;
    visibility: visible;
 
}

.category-carousel-title {
    font-family: "Microsoft YaHei", sans-serif;
    font-size: 24px;
    color: #333333;
    margin: 0;
    font-weight: normal;
    line-height: 1.4;
}



.category-carousel-title-link {
    text-decoration: none;
    color: inherit;
}

.category-carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.category-carousel-indicator {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #0255bf;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.category-carousel-indicator.active {
    background-color: #0255bf;
    width: 30px;
    height: 6px;
    border-radius: 3px;
}

/* 分类页面文章列表区域 */
.category-news-list-section {
    padding: 0 0 80px;
}

.category-news-list-container {
    max-width: 1200px;
    margin: 0 auto;
}

.category-news-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.category-news-list-item {
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.category-news-list-link {
    display: flex;
    align-items: center;
    width: 100%;
    text-decoration: none;
    color: inherit;
}

.category-news-list-item:hover {
    background-color: #fafafa;
    padding-left: 20px;
    padding-right: 20px;
    margin-left: -20px;
    margin-right: -20px;
    border-radius: 8px;
}

.category-news-date-box {
    width: 100px;
    height: 100px;
    background-color: #0255bf;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-right: 30px;
    flex-shrink: 0;
}

.category-news-day {
    font-family: "Microsoft YaHei", sans-serif;
    font-size: 60px;
    color: #fff;
    line-height: 1;
    font-weight: bold;
}

.category-news-month {
    font-family: "Microsoft YaHei", sans-serif;
    font-size: 18px;
    color: #fff;
    line-height: 1;
    margin-top: 5px;
}

.category-news-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.category-news-title {
    font-family: "Microsoft YaHei", sans-serif;
    font-size: 30px;
    color: #333333;
    margin: 0;
    font-weight: normal;
    line-height: 1.4;
    height: 84px; /* 固定两行文字高度 */
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    flex: 1;
}

.category-news-arrow {
    margin-left: 20px;
    flex-shrink: 0;
}

/* 分类页面分页导航 */
.category-news-pagination {
    margin-top: 60px;
    text-align: center;
}

.category-news-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.category-news-pagination .page-numbers li {
    margin: 0;
}

.category-news-pagination .page-numbers a,
.category-news-pagination .page-numbers span {
    display: inline-block;
    padding: 12px 18px;
    font-family: "Microsoft YaHei", sans-serif;
    font-size: 16px;
    color: #666666;
    text-decoration: none;
    border: 1px solid #e5e5e5;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.category-news-pagination .page-numbers a:hover,
.category-news-pagination .page-numbers .current {
    background-color: #0255bf;
    color: #fff;
    border-color: #0255bf;
}

.category-news-pagination .page-numbers .prev,
.category-news-pagination .page-numbers .next {
    background-color: #f8f8f8;
}

.category-news-pagination .page-numbers .prev:hover,
.category-news-pagination .page-numbers .next:hover {
    background-color: #0255bf;
    color: #fff;
}

/* 无文章提示 */
.no-posts {
    text-align: center;
    padding: 80px 0;
    color: #666666;
    font-size: 18px;
}

/* 新闻资讯列表页面超小屏幕响应式 */
@media (max-width: 480px) {
    .sticky-post-row {
        padding: 20px 0;
        min-height: 100px;
        flex-direction: row;
    }
    
    .sticky-category-info {
        flex-direction: column;
        gap: 10px;
        margin-bottom: 15px;
        max-width: 100px;
        min-width: 100px;
    }
    
    .sticky-divider {
        width: 100%;
        height: 1px;
        display: none;
    }
    
    .sticky-post-row:not(:last-child) .sticky-divider::after {
        display: none;
    }
    
    .sticky-post-title {
        font-size: 18px;
        line-height: 1.2;
    }
    .sticky-post-date{
        display: none;
    }
    .category-title{
        font-size:20px;
    }

    .category-en-title{
        font-size: 14px;
    }
    
    .category-carousel-slide {
        width:100%;
    }
    
    .category-carousel-image {
        height: 180px;
    }
    
    .category-carousel-content {
        padding: 15px;
    }
    
    .category-carousel-excerpt {
        font-size: 14px;
        height: 42px;
    }
    
    .category-carousel-titles {
        width: 100%;
        height: 45px;
        margin: 0 auto 15px;
    }
    
    .category-carousel-title {
        font-size: 14px;
    }

    .category-news-content{
        align-items: flex-end;
    }
    .category-news-title{
        font-size:20px;
    }
    
    .news-date-box {
        width: 60px;
        height: 60px;
    }
    
    .news-day {
        font-size: 36px;
    }
    
    .news-month {
        font-size: 14px;
    }
    
    .news-title {
        font-size: 20px;
    }
    
    .news-pagination .page-numbers a,
    .news-pagination .page-numbers span {
        padding: 8px 12px;
        font-size: 14px;
    }
}
