/* 基础重置 */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Microsoft YaHei', Arial, sans-serif; background: #f7f9fa; color: #222; line-height: 1.6; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 16px; }

/* 头部样式 */
.site-header { background: #2e8b57; color: #fff; padding: 16px 0; position: relative; }
.header-content { display: flex; justify-content: space-between; align-items: center; }
.logo-container { display: flex; align-items: center; gap: 12px; }
.logo-icon { 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    width: 40px; 
    height: 40px; 
    background: rgba(255,255,255,0.1); 
    border-radius: 8px; 
    flex-shrink: 0;
    transition: all 0.3s ease;
    animation: logoBreath 3s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}
.logo-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    animation: logoShine 4s ease-in-out infinite;
}
.logo-icon:hover { 
    background: rgba(255,255,255,0.2); 
    transform: scale(1.05) rotate(5deg);
    animation: logoBounce 0.6s ease-in-out;
}
.logo-icon svg {
    animation: logoFloat 2s ease-in-out infinite;
    transition: all 0.3s ease;
}
.logo-icon:hover svg {
    animation: logoSpin 0.8s ease-in-out;
}
.logo { 
    font-size: 1.4rem; 
    animation: logoMobileGlow 2.5s ease-in-out infinite alternate;
}
.logo::after {
    bottom: -2px;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        #4CAF50 25%, 
        #2196F3 50%, 
        #9C27B0 75%, 
        transparent 100%);
    background-size: 200% 100%;
    animation: logoMobileWaterFlow 2s linear infinite;
    border-radius: 1px;
}
.main-nav ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}
@media (min-width: 769px) {
    .main-nav ul {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 20px;
        width: 100%;
    }
}
.main-nav a { color: #fff; text-decoration: none; font-size: 1rem; padding: 6px 12px; border-radius: 4px; transition: background 0.2s; }
.main-nav a:hover { background: #256d46; }

/* Logo动画关键帧 */
@keyframes logoBreath {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 0 0 rgba(255,255,255,0.1);
    }
    50% { 
        transform: scale(1.02);
        box-shadow: 0 0 10px rgba(255,255,255,0.3);
    }
}

@keyframes logoShine {
    0% { left: -100%; }
    50% { left: 100%; }
    100% { left: 100%; }
}

@keyframes logoFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-2px); }
}

@keyframes logoSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes logoBounce {
    0%, 20%, 50%, 80%, 100% { transform: scale(1.05) rotate(5deg); }
    40% { transform: scale(1.1) rotate(10deg); }
    60% { transform: scale(1.08) rotate(7deg); }
}

@keyframes logoGlow {
    0% { 
        text-shadow: 0 0 5px rgba(255,255,255,0.3);
        color: #fff;
    }
    100% { 
        text-shadow: 0 0 15px rgba(255,255,255,0.6);
        color: #fff;
    }
}

@keyframes logoUnderline {
    0%, 100% { width: 0; }
    50% { width: 100%; }
}

@keyframes logoWaterFlow {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

@keyframes logoMobileGlow {
    0% { 
        text-shadow: 0 0 5px rgba(255,255,255,0.3);
        color: #fff;
    }
    100% { 
        text-shadow: 0 0 15px rgba(255,255,255,0.6);
        color: #fff;
    }
}

@keyframes logoMobileWaterFlow {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

/* 移动端汉堡菜单按钮 */
.mobile-menu-toggle { 
    display: none; 
    flex-direction: column; 
    background: none; 
    border: none; 
    cursor: pointer; 
    padding: 6px; 
    z-index: 1000;
}
.mobile-menu-toggle span { 
    display: block; 
    width: 24px; 
    height: 2px; 
    background: #fff; 
    margin: 3px 0; 
    transition: 0.3s; 
    border-radius: 2px;
}
.mobile-menu-toggle.active span:nth-child(1) { 
    transform: rotate(-45deg) translate(-5px, 6px); 
}
.mobile-menu-toggle.active span:nth-child(2) { 
    opacity: 0; 
}
.mobile-menu-toggle.active span:nth-child(3) { 
    transform: rotate(45deg) translate(-5px, -6px); 
}

/* 移动端导航栏响应式 */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .main-nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(46, 139, 87, 0.95);
        backdrop-filter: blur(10px);
        transition: left 0.3s ease;
        z-index: 999;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .main-nav.active {
        left: 0;
    }
    
    .main-nav ul {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
        width: 100%;
        padding: 2rem;
        margin: 0;
        list-style: none;
    }
    
    .main-nav a {
        font-size: 1.2rem;
        padding: 1rem 2rem;
        border-radius: 8px;
        display: block;
        transition: all 0.3s ease;
        color: #fff;
        text-decoration: none;
    }
    
    .main-nav a:hover {
        background: rgba(255, 255, 255, 0.2);
        transform: translateY(-2px);
    }
    
    .header-content {
        position: relative;
        z-index: 1001;
    }
    
    /* 防止页面滚动 */
    body.menu-open {
        overflow: hidden;
    }
    
    /* 头部响应式调整 */
    .site-header {
        padding: 12px 0;
    }
    
    .logo {
        font-size: 1.2rem;
    }
    
    .logo-icon {
        width: 35px;
        height: 35px;
    }
}

@media (max-width: 480px) {
    .main-nav ul {
        gap: 1.5rem;
        padding: 1.5rem;
    }
    
    .main-nav a {
        font-size: 1.1rem;
        padding: 0.8rem 1.5rem;
    }
    
    .mobile-menu-toggle span {
        width: 20px;
        height: 2px;
    }
    
    .main-nav {
        background: rgba(46, 139, 87, 0.98);
    }
    
    /* 小屏幕头部调整 */
    .site-header {
        padding: 10px 0;
    }
    
    .logo {
        font-size: 1.1rem;
    }
    
    .logo-icon {
        width: 30px;
        height: 30px;
    }
    
    .container {
        padding: 0 12px;
    }
}

/* 主体内容 */
.site-main { padding: 24px 0; }
.hero { background: #e0f7ef; padding: 24px 20px; border-radius: 8px; text-align: center; margin-bottom: 24px; }
.hero h2 { font-size: 1.6rem; color: #2e8b57; margin-bottom: 10px; }
.hero p { font-size: 1rem; color: #444; margin-bottom: 20px; }

/* 统计数据 */
.hero-stats { display: flex; justify-content: center; gap: 30px; flex-wrap: wrap; }
.stat { text-align: center; }
.stat .number { display: block; font-size: 2rem; font-weight: bold; color: #2e8b57; }
.stat .label { font-size: 0.9rem; color: #666; }

/* 滚动数字动画样式 */
.hero-stats .number {
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    background: linear-gradient(135deg, #2e8b57, #4CAF50);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 4px rgba(46, 139, 87, 0.1);
}

.hero-stats .number.animating {
    animation: numberPulse 0.5s ease-in-out;
    transform: scale(1.05);
}

@keyframes numberPulse {
    0% {
        transform: scale(1);
        filter: brightness(1);
    }
    50% {
        transform: scale(1.1);
        filter: brightness(1.2);
    }
    100% {
        transform: scale(1.05);
        filter: brightness(1);
    }
}

.hero-stats .number::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #2e8b57, #4CAF50);
    transition: width 0.3s ease;
    border-radius: 1px;
    box-shadow: 0 1px 3px rgba(46, 139, 87, 0.3);
}

.hero-stats .number.animating::after {
    width: 100%;
    animation: underlineGlow 0.5s ease-in-out;
}

@keyframes underlineGlow {
    0% {
        box-shadow: 0 1px 3px rgba(46, 139, 87, 0.3);
    }
    50% {
        box-shadow: 0 1px 8px rgba(46, 139, 87, 0.6);
    }
    100% {
        box-shadow: 0 1px 3px rgba(46, 139, 87, 0.3);
    }
}

/* 数字滚动时的视觉反馈 */
.hero-stats .stat {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.hero-stats .stat::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(46, 139, 87, 0.1), transparent);
    transition: left 0.5s ease;
}

.hero-stats .stat:hover::before {
    left: 100%;
}

.hero-stats .stat:hover {
    transform: translateY(-2px);
}

.hero-stats .stat:hover .number {
    transform: scale(1.05);
}

.hero-stats .number.changing {
    animation: numberFlash 0.1s ease-in-out;
}

@keyframes numberFlash {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* 主体内容响应式 */
@media (max-width: 768px) {
    .site-main {
        padding: 16px 0;
    }
    
    .hero {
        padding: 20px 16px;
        margin-bottom: 20px;
    }
    
    .hero h2 {
        font-size: 1.4rem;
    }
    
    .hero p {
        font-size: 0.95rem;
    }
    
    .hero-stats {
        gap: 20px;
    }
    
    .hero-stats .number {
        font-size: 1.8rem;
    }
    
    .hero-stats .label {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .site-main {
        padding: 12px 0;
    }
    
    .hero {
        padding: 16px 12px;
        margin-bottom: 16px;
    }
    
    .hero h2 {
        font-size: 1.2rem;
    }
    
    .hero p {
        font-size: 0.9rem;
    }
    
    .hero-stats {
        gap: 15px;
    }
    
    .hero-stats .number {
        font-size: 1.6rem;
    }
    
    .hero-stats .label {
        font-size: 0.8rem;
    }
}

/* features区块整体布局 */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.feature {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.feature:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.feature h3 {
    font-size: 1.4rem;
    color: #2e8b57;
    margin-bottom: 1rem;
    font-weight: 600;
}

.feature p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.feature .btn {
    display: inline-block;
    background: linear-gradient(135deg, #2e8b57, #4CAF50);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(46, 139, 87, 0.3);
}

.feature .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(46, 139, 87, 0.4);
    background: linear-gradient(135deg, #246b47, #45a049);
}

/* 特色功能响应式 */
@media (max-width: 900px) {
    .features {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .feature {
        padding: 1.5rem;
    }
    
    .feature h3 {
        font-size: 1.3rem;
    }
    
    .feature p {
        font-size: 0.95rem;
    }
    
    .feature .btn {
        padding: 0.7rem 1.3rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .features {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .feature {
        padding: 1.2rem;
    }
    
    .feature h3 {
        font-size: 1.2rem;
    }
    
    .feature p {
        font-size: 0.9rem;
    }
    
    .feature .btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .features {
        gap: 0.8rem;
        margin-bottom: 1rem;
    }
    
    .feature {
        padding: 1rem;
    }
    
    .feature h3 {
        font-size: 1.1rem;
    }
    
    .feature p {
        font-size: 0.85rem;
    }
    
    .feature .btn {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
}

/* 最新文章板块全新框架设计 */
.latest-articles {
    margin-bottom: 3rem;
    padding: 2rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.section-header h2 {
    font-size: 2rem;
    color: #2e8b57;
    margin-bottom: 0.5rem;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    margin-top: 2rem;
}

.article-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    display: flex;
    flex-direction: column;
}

.article-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.article-image {
    width: 100%;
    height: 140px;
    background: linear-gradient(135deg, #2e8b57 0%, #4CAF50 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    flex-shrink: 0;
}

.image-placeholder {
    font-size: 1.8rem;
    color: #fff;
    font-weight: 600;
}

.article-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.article-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.article-content p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.2rem;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.article-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid #f0f0f0;
}

.article-meta span {
    font-size: 0.85rem;
    color: #888;
}

.article-meta .date {
    color: #999;
}

.article-meta .category {
    background: #e8f5e8;
    color: #2e8b57;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* 最新文章响应式 */
@media (max-width: 1024px) {
    .articles-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 900px) {
    .articles-grid {
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .articles-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .article-card {
        border-radius: 8px;
    }
    
    .article-image {
        height: 120px;
    }
    
    .image-placeholder {
        font-size: 1.5rem;
    }
    
    .article-content {
        padding: 1.2rem;
    }
    
    .article-content h3 {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }
    
    .article-content p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    
    .article-meta {
        padding-top: 0.8rem;
    }
    
    .article-meta span {
        font-size: 0.8rem;
    }
    
    .article-meta .category {
        padding: 0.25rem 0.6rem;
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .articles-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .article-card {
        border-radius: 6px;
    }
    
    .article-image {
        height: 100px;
    }
    
    .image-placeholder {
        font-size: 1.3rem;
    }
    
    .article-content {
        padding: 1rem;
    }
    
    .article-content h3 {
        font-size: 1rem;
        margin-bottom: 0.6rem;
    }
    
    .article-content p {
        font-size: 0.85rem;
        margin-bottom: 0.8rem;
    }
    
    .article-meta {
        padding-top: 0.6rem;
    }
    
    .article-meta span {
        font-size: 0.75rem;
    }
    
    .article-meta .category {
        padding: 0.2rem 0.5rem;
        font-size: 0.7rem;
    }
}

/* 专家观点板块优化 */
.expert-advice {
    margin-bottom: 36px;
    background: #f7fafc;
    border-radius: 18px;
    box-shadow: 0 6px 32px rgba(46,139,87,0.10);
    padding: 36px 32px 28px 32px;
    border: 1.5px solid #e0e7e9;
}
.expert-advice .section-header {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}
.expert-advice .section-header h2 {
    color: #2e8b57;
    font-size: 1.3rem;
    text-align: center;
    margin-bottom: 8px;
}
.expert-subtitle {
    color: #666;
    font-size: 0.9rem;
    text-align: center;
}
.expert-framework {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-top: 24px;
}
.expert-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(46,139,87,0.10);
    border: 1.5px solid #e0e7e9;
    transition: box-shadow 0.2s, transform 0.2s;
}
.expert-card:hover {
    box-shadow: 0 8px 32px rgba(46,139,87,0.16);
    transform: translateY(-2px) scale(1.01);
}
.expert-card {
    display: grid;
    grid-template-columns: 320px 1fr;
    align-items: stretch;
}

/* 专家档案区域优化 */
.expert-profile {
    background: linear-gradient(135deg, #2e8b57, #256d46);
    color: #fff;
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.expert-profile::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: expertShine 4s ease-in-out infinite;
}
.expert-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    position: relative;
    z-index: 2;
    border: 3px solid rgba(255,255,255,0.3);
}
.avatar-placeholder {
    font-size: 2rem;
    font-weight: bold;
    color: #fff;
}
.expert-info {
    width: 100%;
    position: relative;
    z-index: 2;
}
.expert-name {
    font-size: 1.4rem;
    margin-bottom: 8px;
    font-weight: bold;
}
.expert-title {
    font-size: 1rem;
    margin-bottom: 6px;
    opacity: 0.9;
}
.expert-hospital {
    font-size: 0.9rem;
    margin-bottom: 16px;
    opacity: 0.8;
}
.expert-stats {
    display: flex;
    justify-content: center;
    gap: 12px;
}
.expert-stats .stat {
    background: rgba(255,255,255,0.2);
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(255,255,255,0.3);
}

/* 专家观点内容区域优化 */
.expert-content {
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #fff;
}
.expert-content h4 {
    color: #2e8b57;
    font-size: 1.3rem;
    margin-bottom: 16px;
    font-weight: bold;
    line-height: 1.4;
}
.expert-content p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 1rem;
    text-align: justify;
}
.expert-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: auto;
}
.expert-tags .tag {
    background: linear-gradient(135deg, #e0f7ef, #d4f0e0);
    color: #2e8b57;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid #c8e8d8;
    transition: all 0.2s;
}
.expert-tags .tag:hover {
    background: linear-gradient(135deg, #2e8b57, #256d46);
    color: #fff;
    transform: translateY(-1px);
}

/* 专家卡片动画 */
@keyframes expertShine {
    0%, 100% { transform: rotate(0deg); opacity: 0.3; }
    50% { transform: rotate(180deg); opacity: 0.6; }
}

/* 移动端优化 */
@media (max-width: 900px) {
    .expert-advice {
        padding: 20px 16px 16px 16px;
        border-radius: 12px;
    }
    .expert-framework {
        display: flex;
        flex-direction: column;
        gap: 20px;
        margin-top: 16px;
    }
    .expert-card {
        display: flex;
        flex-direction: column;
    }
    .expert-profile {
        padding: 20px 16px;
        flex-direction: row;
        text-align: left;
        gap: 16px;
    }
    .expert-avatar {
        width: 60px;
        height: 60px;
        margin-bottom: 0;
        flex-shrink: 0;
    }
    .avatar-placeholder {
        font-size: 1.5rem;
    }
    .expert-info {
        flex: 1;
    }
    .expert-name {
        font-size: 1.2rem;
        margin-bottom: 4px;
    }
    .expert-title {
        font-size: 0.9rem;
        margin-bottom: 2px;
    }
    .expert-hospital {
        font-size: 0.8rem;
        margin-bottom: 8px;
    }
    .expert-stats {
        gap: 8px;
    }
    .expert-stats .stat {
        padding: 4px 8px;
        font-size: 0.75rem;
    }
    .expert-content {
        padding: 20px 16px;
    }
    .expert-content h4 {
        font-size: 1.1rem;
        margin-bottom: 12px;
    }
    .expert-content p {
        font-size: 0.9rem;
        margin-bottom: 16px;
    }
    .expert-tags {
        gap: 6px;
    }
    .expert-tags .tag {
        padding: 4px 8px;
        font-size: 0.8rem;
    }
}

/* 成功案例板块优化 */
.success-stories {
    margin-bottom: 36px;
    background: #f7fafc;
    border-radius: 18px;
    box-shadow: 0 6px 32px rgba(46,139,87,0.10);
    padding: 36px 32px 28px 32px;
    border: 1.5px solid #e0e7e9;
}
.success-stories .section-header {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}
.success-stories .section-header h2 {
    color: #2e8b57;
    font-size: 1.3rem;
    text-align: center;
    margin-bottom: 8px;
}
.stories-subtitle {
    color: #666;
    font-size: 0.9rem;
    text-align: center;
}
.stories-framework {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-top: 24px;
}
.story-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(46,139,87,0.10);
    border: 1.5px solid #e0e7e9;
    transition: box-shadow 0.2s, transform 0.2s;
}
.story-card:hover {
    box-shadow: 0 8px 32px rgba(46,139,87,0.16);
    transform: translateY(-2px) scale(1.01);
}
.story-card {
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

/* 案例图片区域优化 */
.story-image {
    position: relative;
    background: linear-gradient(135deg, #2e8b57, #256d46);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 120px;
    padding: 20px;
}
.story-image .image-placeholder {
    color: #fff;
    font-size: 1.8rem;
    font-weight: bold;
}
.success-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #28a745;
    color: #fff;
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: bold;
    border: 1px solid rgba(255,255,255,0.3);
}

/* 案例内容区域优化 */
.story-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 1;
    background: #fff;
}
.story-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}
.story-header h3 {
    color: #2e8b57;
    font-size: 1.2rem;
    font-weight: bold;
    margin: 0;
}
.story-category {
    background: linear-gradient(135deg, #e0f7ef, #d4f0e0);
    color: #2e8b57;
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: bold;
    border: 1px solid #c8e8d8;
}

/* 案例统计优化 */
.story-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 16px;
}
.stat-item {
    text-align: center;
    background: #f8f9fa;
    padding: 8px;
    border-radius: 6px;
    border: 1px solid #e9ecef;
}
.stat-label {
    display: block;
    color: #666;
    font-size: 0.75rem;
    margin-bottom: 4px;
}
.stat-value {
    display: block;
    color: #2e8b57;
    font-weight: bold;
    font-size: 0.9rem;
}

/* 案例描述优化 */
.story-description {
    color: #555;
    line-height: 1.6;
    margin-bottom: 16px;
    font-size: 0.9rem;
    text-align: justify;
}
.story-tags {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-top: auto;
}
.story-tags .tag {
    background: linear-gradient(135deg, #e0f7ef, #d4f0e0);
    color: #2e8b57;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.75rem;
    border: 1px solid #c8e8d8;
    transition: all 0.2s;
}
.story-tags .tag:hover {
    background: linear-gradient(135deg, #2e8b57, #256d46);
    color: #fff;
    transform: translateY(-1px);
}

/* 移动端优化 */
@media (max-width: 900px) {
    .success-stories {
        padding: 20px 16px 16px 16px;
        border-radius: 12px;
    }
    .stories-framework {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 16px;
    }
    .story-card {
        border-radius: 12px;
    }
    .story-image {
        min-height: 100px;
        padding: 16px;
    }
    .story-image .image-placeholder {
        font-size: 1.5rem;
    }
    .success-badge {
        top: 8px;
        right: 8px;
        padding: 3px 6px;
        font-size: 0.7rem;
    }
    .story-content {
        padding: 16px;
    }
    .story-header {
        margin-bottom: 12px;
    }
    .story-header h3 {
        font-size: 1.1rem;
    }
    .story-category {
        padding: 2px 4px;
        font-size: 0.75rem;
    }
    .story-stats {
        gap: 8px;
        margin-bottom: 12px;
    }
    .stat-item {
        padding: 6px;
    }
    .stat-label {
        font-size: 0.7rem;
        margin-bottom: 2px;
    }
    .stat-value {
        font-size: 0.8rem;
    }
    .story-description {
        font-size: 0.85rem;
        margin-bottom: 12px;
    }
    .story-tags {
        gap: 4px;
    }
    .story-tags .tag {
        padding: 2px 4px;
        font-size: 0.7rem;
    }
}

/* 关于我们板块优化 */
.about-us {
    margin-bottom: 48px;
    background: linear-gradient(135deg, #f8fafc 0%, #f0f7f4 100%);
    border-radius: 20px;
    box-shadow: 0 8px 40px rgba(46,139,87,0.08);
    padding: 40px;
    border: 1px solid #e8f0e8;
    position: relative;
    overflow: hidden;
}

.about-us::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #2e8b57, #4CAF50, #2e8b57);
}

.about-us .section-header {
    text-align: center;
    margin-bottom: 32px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.about-us .section-header h2 {
    color: #2e8b57;
    font-size: 2rem;
    font-weight: 700;
    margin: 0;
    position: relative;
    display: inline-block;
}

.about-us .section-header h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #2e8b57, #4CAF50);
    border-radius: 2px;
}

.about-subtitle {
    color: #666;
    font-size: 1rem;
    font-weight: 500;
    margin: 0;
    text-align: center;
    line-height: 1.4;
}

/* 公司信息区域优化 */
.about-info {
    background: #fff;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 24px rgba(46,139,87,0.06);
    border: 1px solid #e8f0e8;
    transition: all 0.3s ease;
    position: relative;
}

.about-info:hover {
    box-shadow: 0 8px 32px rgba(46,139,87,0.12);
    transform: translateY(-2px);
}

/* 公司头部卡片样式 */
.company-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 24px;
    padding: 20px;
    background: linear-gradient(135deg, #f0f7f4, #e0f7ef);
    border-radius: 12px;
    border: 1px solid #d4f0e0;
    position: relative;
    overflow: hidden;
}

.company-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(46,139,87,0.1), transparent);
    transition: left 0.6s ease;
}

.company-header:hover::before {
    left: 100%;
}

.company-icon {
    font-size: 2.5rem;
    background: linear-gradient(135deg, #2e8b57, #4CAF50);
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(46,139,87,0.3);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.company-header:hover .company-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 20px rgba(46,139,87,0.4);
}

.company-intro h3 {
    color: #2e8b57;
    font-size: 1.6rem;
    font-weight: 700;
    margin: 0;
    position: relative;
    z-index: 1;
}

.company-desc {
    color: #555;
    line-height: 1.8;
    margin-bottom: 28px;
    font-size: 1rem;
    text-align: center;
    padding: 0 8px;
}

/* 公司统计数据优化 */
.company-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 28px;
    padding: 0 8px;
}

.company-stats .stat-item {
    text-align: center;
    background: linear-gradient(135deg, #f8fafc, #f0f7f4);
    padding: 20px 16px;
    border-radius: 12px;
    border: 1px solid #e8f0e8;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.company-stats .stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(46,139,87,0.1), transparent);
    transition: left 0.5s ease;
}

.company-stats .stat-item:hover::before {
    left: 100%;
}

.company-stats .stat-item:hover {
    background: linear-gradient(135deg, #e0f7ef, #d4f0e0);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(46,139,87,0.15);
}

.stat-icon {
    font-size: 1.8rem;
    margin-bottom: 4px;
    transition: all 0.3s ease;
}

.company-stats .stat-item:hover .stat-icon {
    transform: scale(1.1);
}

.stat-number {
    display: block;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 4px;
    color: #2e8b57;
    line-height: 1;
    text-align: center;
}

.stat-label {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
    text-align: center;
}

/* 公司价值观优化 */
.company-values {
    background: linear-gradient(135deg, #f8fafc, #f0f7f4);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(46,139,87,0.08);
    border: 1px solid #e8f0e8;
    padding: 28px 32px;
    margin: 0 8px 24px 8px;
    position: relative;
    overflow: hidden;
}

.company-values::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #2e8b57, #4CAF50);
}

.company-values h4 {
    color: #2e8b57;
    margin-bottom: 20px;
    font-size: 1.3rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    padding-left: 16px;
}

.company-values h4::before {
    content: '💪';
    font-size: 1.4rem;
    color: #4CAF50;
}

.company-values ul {
    list-style: none;
    padding: 0;
    margin: 0;
    padding-left: 16px;
}

.company-values li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 16px;
    font-size: 1rem;
    color: #444;
    line-height: 1.7;
    transition: all 0.3s ease;
}

.company-values li:last-child {
    margin-bottom: 0;
}

.company-values li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 2px;
    color: #2e8b57;
    font-size: 1.1rem;
    font-weight: bold;
    background: #e0f7ef;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.company-values li:hover {
    color: #2e8b57;
    transform: translateX(4px);
}

/* 公司操作按钮区域 */
.company-action {
    text-align: center;
    margin-top: 32px;
    padding: 0 8px;
}

/* 按钮样式优化 */
.about-info .btn {
    display: inline-block;
    background: linear-gradient(135deg, #2e8b57, #4CAF50);
    color: #fff;
    padding: 12px 32px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(46,139,87,0.3);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.about-info .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.about-info .btn:hover::before {
    left: 100%;
}

.about-info .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(46,139,87,0.4);
    background: linear-gradient(135deg, #4CAF50, #2e8b57);
}

/* 响应式设计优化 */
@media (max-width: 1024px) {
    .about-info {
        padding: 28px;
    }
    
    .company-header {
        padding: 18px;
        gap: 14px;
    }
    
    .company-icon {
        width: 55px;
        height: 55px;
        font-size: 2.2rem;
    }
    
    .company-stats {
        gap: 16px;
    }
    
    .company-stats .stat-item {
        padding: 18px 14px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

@media (max-width: 900px) {
    .about-info {
        padding: 24px;
    }
    
    .company-header {
        padding: 16px;
        gap: 12px;
        margin-bottom: 20px;
    }
    
    .company-icon {
        width: 50px;
        height: 50px;
        font-size: 2rem;
    }
    
    .company-intro h3 {
        font-size: 1.4rem;
    }
    
    .company-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

@media (max-width: 768px) {
    .about-info {
        padding: 20px;
    }
    
    .company-header {
        padding: 14px;
        gap: 10px;
        margin-bottom: 18px;
    }
    
    .company-icon {
        width: 45px;
        height: 45px;
        font-size: 1.8rem;
    }
    
    .company-intro h3 {
        font-size: 1.3rem;
    }
    
    .company-desc {
        font-size: 0.95rem;
        margin-bottom: 24px;
        padding: 0 4px;
        text-align: center;
    }
    
    .company-stats {
        gap: 12px;
        margin-bottom: 24px;
        padding: 0 4px;
    }
    
    .company-stats .stat-item {
        padding: 16px 12px;
    }
    
    .stat-icon {
        font-size: 1.6rem;
    }
    
    .stat-number {
        font-size: 1.8rem;
        margin-bottom: 6px;
        text-align: center;
    }
    
    .stat-label {
        font-size: 0.85rem;
        text-align: center;
    }
    
    .company-values {
        padding: 20px 24px;
        margin: 0 2px 16px 2px;
    }
    
    .company-values h4 {
        font-size: 1.2rem;
        margin-bottom: 16px;
        padding-left: 12px;
    }
    
    .company-values li {
        font-size: 0.95rem;
        margin-bottom: 12px;
        padding-left: 24px;
    }
    
    .company-action {
        margin-top: 28px;
    }
    
    .about-info .btn {
        padding: 10px 28px;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .about-info {
        padding: 16px;
    }
    
    .company-header {
        padding: 12px;
        gap: 8px;
        margin-bottom: 16px;
        flex-direction: column;
        text-align: center;
    }
    
    .company-icon {
        width: 40px;
        height: 40px;
        font-size: 1.6rem;
    }
    
    .company-intro h3 {
        font-size: 1.2rem;
    }
    
    .company-desc {
        font-size: 0.9rem;
        margin-bottom: 20px;
        padding: 0 2px;
        text-align: center;
    }
    
    .company-stats {
        grid-template-columns: 1fr;
        gap: 10px;
        margin-bottom: 20px;
        padding: 0 2px;
    }
    
    .company-stats .stat-item {
        padding: 14px 10px;
    }
    
    .stat-icon {
        font-size: 1.4rem;
    }
    
    .stat-number {
        font-size: 1.6rem;
        margin-bottom: 4px;
        text-align: center;
    }
    
    .stat-label {
        font-size: 0.8rem;
        text-align: center;
    }
    
    .company-action {
        margin-top: 24px;
    }
    
    .about-info .btn {
        padding: 8px 24px;
        font-size: 0.9rem;
    }
}

/* 健康小贴士样式 */
.health-tip {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.tip-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.health-tip p {
    margin: 0;
    color: #666;
    line-height: 1.6;
}

/* 专家推荐样式 */
.expert-recommendation {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.expert-avatar {
    flex-shrink: 0;
}

.avatar-placeholder {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #f5f5dc 0%, #d2b48c 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #333;
}

.expert-info h4 {
    margin: 0 0 0.25rem 0;
    color: #333;
}

.author-title {
    color: #666;
    font-size: 0.9rem;
    margin: 0 0 0.75rem 0;
}

.recommendation-text {
    color: #666;
    font-style: italic;
    line-height: 1.5;
    margin: 0;
}

.author-stats {
    display: flex;
    gap: 1rem;
    margin-top: 0.75rem;
}

.stat {
    font-size: 0.8rem;
    color: #888;
}

/* 文章详情页面样式 */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: #2e8b57;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb .separator {
    color: #ccc;
}

.breadcrumb .current {
    color: #666;
}

/* 文章头部样式 */
.article-header {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    border: 1px solid #f0f0f0;
}

.article-category-badge {
    display: inline-block;
    background: #e8f5e8;
    color: #2e8b57;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.article-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin: 0 0 1.5rem 0;
    line-height: 1.3;
}

.article-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.meta-left, .meta-right {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.article-meta span {
    color: #666;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.article-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.action-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    background: white;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.action-btn:hover {
    background: #f8f9fa;
    border-color: #2e8b57;
    color: #2e8b57;
}

.action-btn.active {
    background: #2e8b57;
    border-color: #2e8b57;
    color: white;
}

/* 文章内容样式 */
.article-content {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    border: 1px solid #f0f0f0;
}

.article-summary-box {
    display: flex;
    gap: 1rem;
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    border-left: 4px solid #2e8b57;
}

.summary-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.summary-content h3 {
    margin: 0 0 0.5rem 0;
    color: #333;
}

.summary-content p {
    margin: 0;
    color: #666;
    line-height: 1.6;
}

.content-section {
    margin-bottom: 2.5rem;
}

.page-subtitle {
    font-size: 1.1rem;
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    color: #555;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .articles-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .left-column, .right-column {
        gap: 1rem;
    }
    
    .article-card {
        border-radius: 8px;
    }
    
    .article-image {
        height: 100px;
    }
    
    .image-placeholder {
        font-size: 1.2rem;
    }
    
    .article-content {
        padding: 1rem;
    }
    
    .article-content h3 {
        font-size: 1rem;
        margin-bottom: 0.6rem;
    }
    
    .article-content p {
        font-size: 0.85rem;
        margin-bottom: 0.8rem;
    }
    
    .article-meta {
        padding-top: 0.6rem;
    }
    
    .article-meta span {
        font-size: 0.75rem;
    }
    
    .article-meta .category {
        padding: 0.15rem 0.5rem;
        font-size: 0.7rem;
    }
}

@media (max-width: 480px) {
    .articles-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0.4rem;
    }
    .left-column, .right-column {
        gap: 0.4rem;
    }
    .article-card {
        border-radius: 3px;
    }
    .article-image {
        height: 48px;
    }
    .image-placeholder {
        font-size: 0.7rem;
    }
    .article-content {
        padding: 0.3rem 0.3rem 0.2rem 0.3rem;
    }
    .article-content h3 {
        font-size: 0.7rem;
        margin-bottom: 0.2rem;
        -webkit-line-clamp: 2;
    }
    .article-content p {
        font-size: 0.6rem;
        margin-bottom: 0.2rem;
        -webkit-line-clamp: 2;
    }
    .article-meta {
        padding-top: 0.2rem;
        flex-direction: column;
        gap: 0.1rem;
        align-items: flex-start;
    }
    .article-meta span {
        font-size: 0.5rem;
    }
    .article-meta .category {
        padding: 0.05rem 0.2rem;
        font-size: 0.45rem;
    }
}

.expert-cards-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.expert-mini-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(46,139,87,0.10);
    border: 1.5px solid #e0e7e9;
    display: flex;
    align-items: center;
    padding: 1.2rem 1rem;
    gap: 1rem;
    transition: box-shadow 0.2s, transform 0.2s;
    min-height: 120px;
}

.expert-mini-card:hover {
    box-shadow: 0 8px 24px rgba(46,139,87,0.16);
    transform: translateY(-2px) scale(1.01);
}

.expert-avatar-small {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2e8b57, #4CAF50);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: #fff;
    font-weight: bold;
    flex-shrink: 0;
}

.expert-info-small {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    flex: 1;
}

.expert-name-small {
    font-size: 1rem;
    font-weight: 700;
    color: #2e8b57;
    margin-bottom: 0.1rem;
}

.expert-title-small {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 0.1rem;
}

.expert-hospital-small {
    font-size: 0.55rem;
    color: #aaa;
    margin-bottom: 0.2rem;
}

.expert-content-small {
    font-size: 0.85rem;
    color: #333;
    margin-top: 0.2rem;
    line-height: 1.5;
    -webkit-line-clamp: 3;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

@media (max-width: 768px) {
    .expert-cards-row {
        gap: 1rem;
        grid-template-columns: repeat(2, 1fr);
    }
    .expert-mini-card {
        padding: 0.8rem 0.6rem;
        gap: 0.7rem;
        min-height: 100px;
    }
    .expert-avatar-small {
        width: 38px;
        height: 38px;
        font-size: 1rem;
    }
    .expert-name-small {
        font-size: 0.9rem;
    }
    .expert-title-small, .expert-content-small {
        font-size: 0.75rem;
    }
    .expert-hospital-small {
        font-size: 0.7rem;
    }
}

@media (max-width: 480px) {
    .expert-cards-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }
    .expert-mini-card {
        padding: 0.5rem 0.3rem;
        gap: 0.4rem;
        border-radius: 7px;
        min-height: 80px;
    }
    .expert-avatar-small {
        width: 28px;
        height: 28px;
        font-size: 0.7rem;
    }
    .expert-name-small {
        font-size: 0.7rem;
    }
    .expert-title-small, .expert-content-small {
        font-size: 0.6rem;
    }
    .expert-hospital-small {
        font-size: 0.55rem;
    }
}

/* 全局响应式优化 */
@media (max-width: 1200px) {
    .container {
        max-width: 100%;
        padding: 0 20px;
    }
}

@media (max-width: 900px) {
    .container {
        padding: 0 16px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 12px;
    }
    
    /* 确保所有section都有合适的间距 */
    .latest-articles,
    .expert-advice,
    .success-stories,
    .about-us {
        margin-bottom: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 8px;
    }
    
    /* 小屏幕下的通用优化 */
    .section-header h2 {
        font-size: 1.5rem;
    }
    
    .section-header {
        margin-bottom: 1.5rem;
    }
    
    /* 确保所有section都有合适的间距 */
    .latest-articles,
    .expert-advice,
    .success-stories,
    .about-us {
        margin-bottom: 1.5rem;
    }
}

/* 确保页面在所有设备上都能正常显示 */
html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    overflow-x: hidden;
}

/* 图片和媒体响应式 */
img, video, iframe {
    max-width: 100%;
    height: auto;
}

/* 确保按钮和链接在小屏幕上可点击 */
@media (max-width: 480px) {
    .btn, a, button {
        min-height: 44px;
        min-width: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

/* Footer样式 */
.site-footer {
    background: #2e8b57;
    color: #fff;
    padding: 24px 0;
    margin-top: 48px;
    text-align: center;
    position: relative;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        #4CAF50 25%, 
        #2196F3 50%, 
        #9C27B0 75%, 
        transparent 100%);
    background-size: 200% 100%;
    animation: footerGlow 3s linear infinite;
}

@keyframes footerGlow {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.site-footer .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

.site-footer p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.5;
    opacity: 0.9;
}

.site-footer p:hover {
    opacity: 1;
    transition: opacity 0.3s ease;
}

/* Footer响应式设计 */
@media (max-width: 768px) {
    .site-footer {
        padding: 20px 0;
        margin-top: 32px;
    }
    
    .site-footer p {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .site-footer {
        padding: 16px 0;
        margin-top: 24px;
    }
    
    .site-footer p {
        font-size: 0.8rem;
        line-height: 1.4;
    }
}

/* 联系我们板块样式 */
.team-contact {
    flex: 1;
    min-width: 300px;
}

.contact-section {
    background: #fff;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
}

.contact-section:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.contact-section h3 {
    color: #2e8b57;
    font-size: 1.4rem;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid #e0f7ef;
    position: relative;
}

.contact-section h3::before {
    content: '📞';
    margin-right: 8px;
    font-size: 1.2rem;
}

.contact-info {
    margin-bottom: 20px;
}

.contact-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.3s ease;
    line-height: 1.5;
}

.contact-item:last-child {
    border-bottom: none;
}

.contact-item:hover {
    background: #f8f9fa;
    padding-left: 8px;
    border-radius: 6px;
}

.contact-label {
    font-weight: 600;
    color: #555;
    font-size: 0.9rem;
    min-width: 80px;
}

.contact-value {
    color: #2e8b57;
    font-weight: 500;
    font-size: 0.9rem;
    text-align: right;
    flex: 1;
}

.contact-note {
    background: #e0f7ef;
    padding: 16px;
    border-radius: 8px;
    border-left: 4px solid #2e8b57;
    margin-top: 16px;
}

.contact-note p {
    margin: 0;
    color: #2e8b57;
    font-size: 0.85rem;
    line-height: 1.6;
    text-align: justify;
}

/* 联系我们响应式设计 */
@media (max-width: 900px) {
    .team-contact {
        min-width: 100%;
        margin-top: 24px;
    }
    
    .contact-section {
        padding: 20px;
    }
    
    .contact-section h3 {
        font-size: 1.3rem;
        margin-bottom: 16px;
    }
    
    .contact-item {
        padding: 10px 0;
    }
    
    .contact-label, .contact-value {
        font-size: 0.85rem;
    }
}

@media (max-width: 768px) {
    .team-contact {
        margin-top: 20px;
    }
    
    .contact-section {
        padding: 16px;
    }
    
    .contact-section h3 {
        font-size: 1.2rem;
        margin-bottom: 14px;
    }
    
    .contact-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
        padding: 8px 0;
        line-height: 1.4;
    }
    
    .contact-label {
        font-size: 0.8rem;
        color: #666;
        min-width: auto;
    }
    
    .contact-value {
        font-size: 0.85rem;
        color: #2e8b57;
        font-weight: 600;
        text-align: left;
    }
    
    .contact-note {
        padding: 12px;
        margin-top: 12px;
    }
    
    .contact-note p {
        font-size: 0.8rem;
        line-height: 1.5;
    }
    
    .card-desc {
        font-size: 0.9rem;
        line-height: 1.5;
        padding: 0 2px;
    }
}

@media (max-width: 480px) {
    .team-contact {
        margin-top: 16px;
    }
    
    .contact-section {
        padding: 14px;
        border-radius: 8px;
    }
    
    .contact-section h3 {
        font-size: 1.1rem;
        margin-bottom: 12px;
    }
    
    .contact-item {
        padding: 6px 0;
    }
    
    .contact-label {
        font-size: 0.75rem;
    }
    
    .contact-value {
        font-size: 0.8rem;
    }
    
    .contact-note {
        padding: 10px;
        margin-top: 10px;
    }
    
    .contact-note p {
        font-size: 0.75rem;
    }
}

/* 关于我们板块 - 两个小卡片布局 */
.about-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 20px;
}

.about-card {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 12px rgba(46,139,87,0.08);
    border: 1px solid #e0e7e9;
    transition: box-shadow 0.2s, transform 0.2s;
    position: relative;
    overflow: hidden;
    min-height: 280px;
    display: flex;
    flex-direction: column;
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(135deg, #2e8b57, #256d46);
    border-radius: 12px 12px 0 0;
}

.about-card:hover {
    box-shadow: 0 4px 20px rgba(46,139,87,0.12);
    transform: translateY(-1px);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    position: relative;
}

.card-header::before {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, #2e8b57, transparent);
}

.card-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #2e8b57, #256d46);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #fff;
    box-shadow: 0 2px 8px rgba(46,139,87,0.3);
}

.card-header h3 {
    font-size: 1.1rem;
    color: #2e8b57;
    font-weight: 600;
    margin: 0;
}

.card-desc {
    color: #555;
    line-height: 1.5;
    margin-bottom: 16px;
    font-size: 0.9rem;
    text-align: justify;
    flex: 1;
}

.card-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: auto;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 3px solid #2e8b57;
    transition: all 0.3s ease;
}

.stat-item:hover {
    background: #e0f7ef;
    transform: translateX(2px);
}

.stat-icon {
    font-size: 14px;
    color: #2e8b57;
}

.stat-number {
    font-weight: 600;
    color: #2e8b57;
    font-size: 0.9rem;
}

.stat-label {
    font-size: 0.75rem;
    color: #666;
    margin-left: auto;
}

.contact-info {
    margin-bottom: 16px;
    flex: 1;
}

.contact-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.3s ease;
    line-height: 1.4;
}

.contact-item:last-child {
    border-bottom: none;
}

.contact-item:hover {
    background: #f8f9fa;
    padding-left: 6px;
    border-radius: 4px;
}

.contact-label {
    font-weight: 600;
    color: #555;
    font-size: 0.8rem;
    min-width: 60px;
}

.contact-value {
    color: #2e8b57;
    font-weight: 500;
    font-size: 0.8rem;
    text-align: right;
    flex: 1;
}

.contact-note {
    background: #e0f7ef;
    padding: 12px;
    border-radius: 6px;
    border-left: 3px solid #2e8b57;
    margin-top: 12px;
}

.contact-note p {
    margin: 0;
    color: #2e8b57;
    font-size: 0.75rem;
    line-height: 1.4;
    text-align: justify;
}

@media (max-width: 900px) {
    .about-cards {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .about-card {
        min-height: 240px;
        padding: 16px;
    }
    
    .card-header {
        margin-bottom: 12px;
    }
    
    .card-icon {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }
    
    .card-header h3 {
        font-size: 1rem;
    }
    
    .card-desc {
        font-size: 0.85rem;
        margin-bottom: 12px;
    }
    
    .card-stats {
        gap: 8px;
    }
    
    .stat-item {
        padding: 6px 8px;
    }
    
    .stat-number {
        font-size: 0.8rem;
    }
    
    .stat-label {
        font-size: 0.7rem;
    }
}

@media (max-width: 480px) {
    .about-cards {
        gap: 12px;
        margin-top: 16px;
    }
    
    .about-card {
        min-height: 220px;
        padding: 12px;
        border-radius: 8px;
    }
    
    .card-header {
        margin-bottom: 10px;
        gap: 8px;
    }
    
    .card-icon {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }
    
    .card-header h3 {
        font-size: 0.9rem;
    }
    
    .card-desc {
        font-size: 0.8rem;
        margin-bottom: 10px;
        line-height: 1.4;
    }
    
    .card-stats {
        gap: 6px;
    }
    
    .stat-item {
        padding: 4px 6px;
        gap: 4px;
    }
    
    .stat-icon {
        font-size: 12px;
    }
    
    .stat-number {
        font-size: 0.75rem;
    }
    
    .stat-label {
        font-size: 0.65rem;
    }
    
    .contact-item {
        padding: 6px 0;
    }
    
    .contact-label {
        font-size: 0.75rem;
        min-width: 50px;
    }
    
    .contact-value {
        font-size: 0.75rem;
    }
    
    .contact-note {
        padding: 8px;
        margin-top: 8px;
    }
    
    .contact-note p {
        font-size: 0.7rem;
    }
}

@media (max-width: 900px) {
    .about-cards {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .about-card {
        min-height: 180px;
        padding: 12px;
    }
    
    .card-header {
        margin-bottom: 8px;
    }
    
    .card-icon {
        width: 28px;
        height: 28px;
        font-size: 14px;
    }
    
    .card-header h3 {
        font-size: 0.9rem;
    }
    
    .card-desc {
        font-size: 0.8rem;
        margin-bottom: 8px;
        line-height: 1.4;
    }
    
    .card-stats {
        gap: 6px;
    }
    
    .stat-item {
        padding: 4px 6px;
    }
    
    .stat-icon {
        font-size: 12px;
    }
    
    .stat-number {
        font-size: 0.75rem;
    }
    
    .stat-label {
        font-size: 0.65rem;
    }
}

@media (max-width: 480px) {
    .about-cards {
        gap: 8px;
        margin-top: 12px;
    }
    
    .about-card {
        min-height: 140px;
        padding: 8px;
        border-radius: 6px;
    }
    
    .card-header {
        margin-bottom: 6px;
        gap: 6px;
    }
    
    .card-icon {
        width: 24px;
        height: 24px;
        font-size: 12px;
    }
    
    .card-header h3 {
        font-size: 0.8rem;
    }
    
    .card-desc {
        font-size: 0.7rem;
        margin-bottom: 6px;
        line-height: 1.3;
    }
    
    .card-stats {
        gap: 4px;
    }
    
    .stat-item {
        padding: 3px 4px;
        gap: 3px;
    }
    
    .stat-icon {
        font-size: 10px;
    }
    
    .stat-number {
        font-size: 0.7rem;
    }
    
    .stat-label {
        font-size: 0.6rem;
    }
    
    .contact-item {
        padding: 4px 0;
    }
    
    .contact-label {
        font-size: 0.7rem;
        min-width: 40px;
    }
    
    .contact-value {
        font-size: 0.7rem;
    }
    
    .contact-note {
        padding: 6px;
        margin-top: 6px;
    }
    
    .contact-note p {
        font-size: 0.65rem;
    }
}

@media (max-width: 900px) {
    .about-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .about-card {
        min-height: auto;
        padding: 20px;
    }
    
    .card-header {
        margin-bottom: 16px;
    }
    
    .card-icon {
        width: 32px;
        height: 32px;
        font-size: 16px;
    }
    
    .card-header h3 {
        font-size: 1rem;
    }
    
    .card-desc {
        font-size: 0.9rem;
        margin-bottom: 16px;
        line-height: 1.6;
        padding: 0 4px;
    }
    
    .card-stats {
        gap: 12px;
        margin-top: 16px;
    }
    
    .stat-item {
        padding: 8px 12px;
    }
    
    .stat-icon {
        font-size: 14px;
    }
    
    .stat-number {
        font-size: 0.85rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
    
    .contact-info {
        margin-bottom: 20px;
    }
    
    .contact-item {
        padding: 10px 0;
        line-height: 1.5;
    }
    
    .contact-label {
        font-size: 0.85rem;
        min-width: 70px;
    }
    
    .contact-value {
        font-size: 0.85rem;
    }
    
    .contact-note {
        padding: 16px;
        margin-top: 16px;
    }
    
    .contact-note p {
        font-size: 0.8rem;
        line-height: 1.5;
    }
}

@media (max-width: 480px) {
    .about-cards {
        gap: 16px;
        margin-top: 16px;
    }
    
    .about-card {
        min-height: auto;
        padding: 16px;
        border-radius: 8px;
    }
    
    .card-header {
        margin-bottom: 12px;
        gap: 10px;
    }
    
    .card-icon {
        width: 28px;
        height: 28px;
        font-size: 14px;
    }
    
    .card-header h3 {
        font-size: 0.95rem;
    }
    
    .card-desc {
        font-size: 0.85rem;
        margin-bottom: 12px;
        line-height: 1.6;
        padding: 0 2px;
    }
    
    .card-stats {
        gap: 8px;
        margin-top: 12px;
    }
    
    .stat-item {
        padding: 6px 8px;
        gap: 6px;
    }
    
    .stat-icon {
        font-size: 12px;
    }
    
    .stat-number {
        font-size: 0.8rem;
    }
    
    .stat-label {
        font-size: 0.7rem;
    }
    
    .contact-info {
        margin-bottom: 16px;
    }
    
    .contact-item {
        padding: 8px 0;
        line-height: 1.5;
    }
    
    .contact-label {
        font-size: 0.8rem;
        min-width: 60px;
    }
    
    .contact-value {
        font-size: 0.8rem;
    }
    
    .contact-note {
        padding: 12px;
        margin-top: 12px;
    }
    
    .contact-note p {
        font-size: 0.75rem;
        line-height: 1.5;
    }
}

/* 页面头部优化 */
.page-header {
    background: linear-gradient(135deg, #e0f7ef, #f0f9f6);
    padding: 32px 24px;
    border-radius: 16px;
    margin-bottom: 32px;
    border: 1px solid #e0e7e9;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #2e8b57, #256d46);
}

.page-title-section {
    margin-bottom: 24px;
}

.page-title {
    font-size: 2rem;
    color: #2e8b57;
    margin-bottom: 12px;
    font-weight: 600;
}

.page-subtitle {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 16px;
    line-height: 1.5;
}

.category-features {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.feature-tag {
    background: rgba(46,139,87,0.1);
    color: #2e8b57;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(46,139,87,0.2);
}

.page-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 16px;
}

.page-stats .stat-item {
    text-align: center;
    padding: 16px 12px;
    background: #fff;
    border-radius: 12px;
    border: 1px solid #e0e7e9;
    transition: all 0.3s ease;
}

.page-stats .stat-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(46,139,87,0.1);
}

.page-stats .stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 600;
    color: #2e8b57;
    margin-bottom: 4px;
}

.page-stats .stat-label {
    font-size: 0.85rem;
    color: #666;
}

/* 快速导航 */
.quick-nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.quick-nav-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px;
    background: #f8f9fa;
    border-radius: 8px;
    text-decoration: none;
    color: #555;
    transition: all 0.3s ease;
    border: 1px solid #e0e7e9;
}

.quick-nav-item:hover {
    background: #e0f7ef;
    color: #2e8b57;
    transform: translateX(2px);
}

.nav-icon {
    font-size: 1.2rem;
}

.nav-text {
    font-size: 0.9rem;
    font-weight: 500;
}

/* 专家问答 */
.qa-item {
    margin-bottom: 16px;
    padding: 12px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 3px solid #2e8b57;
}

.qa-question {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 8px;
}

.qa-answer {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    padding-left: 16px;
    border-left: 2px solid #e0e7e9;
}

.qa-icon {
    font-size: 1rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.qa-question p,
.qa-answer p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.4;
}

.qa-question p {
    font-weight: 500;
    color: #333;
}

.qa-answer p {
    color: #666;
}

.qa-more {
    display: block;
    text-align: center;
    color: #2e8b57;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    margin-top: 12px;
    padding: 8px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.qa-more:hover {
    background: #e0f7ef;
}

/* 成功案例 */
.success-case {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: #f8f9fa;
    border-radius: 8px;
    margin-bottom: 12px;
    border: 1px solid #e0e7e9;
    transition: all 0.3s ease;
}

.success-case:hover {
    background: #e0f7ef;
    transform: translateX(2px);
}

.case-avatar {
    flex-shrink: 0;
}

.case-avatar .avatar-placeholder {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #2e8b57, #256d46);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
}

.case-info h4 {
    margin: 0 0 4px 0;
    font-size: 0.9rem;
    color: #333;
    font-weight: 600;
}

.case-info p {
    margin: 0 0 4px 0;
    font-size: 0.8rem;
    color: #666;
    line-height: 1.4;
}

.case-time {
    font-size: 0.75rem;
    color: #999;
}

/* 订阅框 */
.subscribe-box {
    background: #f8f9fa;
    padding: 16px;
    border-radius: 8px;
    border: 1px solid #e0e7e9;
}

.subscribe-box p {
    margin: 0 0 12px 0;
    font-size: 0.9rem;
    color: #555;
    line-height: 1.4;
}

.subscribe-input {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 0.9rem;
    margin-bottom: 8px;
    box-sizing: border-box;
}

.subscribe-input:focus {
    outline: none;
    border-color: #2e8b57;
    box-shadow: 0 0 0 2px rgba(46,139,87,0.1);
}

.subscribe-btn {
    width: 100%;
    padding: 10px;
    background: #2e8b57;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.subscribe-btn:hover {
    background: #256d46;
    transform: translateY(-1px);
}

/* 响应式优化 */
@media (max-width: 768px) {
    .page-header {
        padding: 24px 16px;
        margin-bottom: 24px;
    }
    
    .page-title {
        font-size: 1.6rem;
    }
    
    .page-subtitle {
        font-size: 1rem;
    }
    
    .category-features {
        gap: 8px;
    }
    
    .feature-tag {
        font-size: 0.8rem;
        padding: 4px 8px;
    }
    
    .page-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .page-stats .stat-item {
        padding: 12px 8px;
    }
    
    .page-stats .stat-number {
        font-size: 1.2rem;
    }
    
    .quick-nav {
        grid-template-columns: 1fr;
    }
    
    .qa-item {
        padding: 10px;
    }
    
    .success-case {
        padding: 10px;
    }
    
    .case-avatar .avatar-placeholder {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .page-header {
        padding: 20px 12px;
    }
    
    .page-title {
        font-size: 1.4rem;
    }
    
    .page-stats {
        grid-template-columns: 1fr;
    }
    
    .feature-tag {
        font-size: 0.75rem;
        padding: 3px 6px;
    }
}

/* 页面底部美化区域 */
.page-bottom-section {
    background: linear-gradient(135deg, #f8f9fa, #e0f7ef);
    padding: 48px 0;
    margin-top: 48px;
    border-top: 1px solid #e0e7e9;
}

.page-bottom-section h3 {
    font-size: 1.4rem;
    color: #2e8b57;
    margin-bottom: 24px;
    text-align: center;
    font-weight: 600;
    position: relative;
}

.page-bottom-section h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #2e8b57, #256d46);
    border-radius: 2px;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .page-bottom-section {
        padding: 32px 0;
        margin-top: 32px;
    }
    
    .page-bottom-section h3 {
        font-size: 1.2rem;
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {
    .page-bottom-section {
        padding: 24px 0;
    }
}

/* 友情链接 */
.links-section {
    margin-bottom: 32px;
}

.links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    max-width: 800px;
    margin: 0 auto;
}

.link-item {
    background: #fff;
    padding: 16px 20px;
    border-radius: 8px;
    border: 1px solid #e0e7e9;
    transition: all 0.3s ease;
    text-align: center;
}

.link-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(46,139,87,0.1);
    border-color: #2e8b57;
}

.link-item a {
    color: #2e8b57;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.link-item a:hover {
    color: #256d46;
    text-decoration: underline;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .page-bottom-section {
        padding: 32px 0;
        margin-top: 32px;
    }
    
    .page-bottom-section h3 {
        font-size: 1.2rem;
        margin-bottom: 20px;
    }
    
    .links-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .link-item {
        padding: 12px 16px;
    }
    
    .link-item a {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .page-bottom-section {
        padding: 24px 0;
    }
    
    .links-grid {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    
    .link-item {
        padding: 10px 12px;
    }
    
    .link-item a {
        font-size: 0.85rem;
    }
}

/* 图片样式 */
.article-image img,
.story-image img,
.card-image img,
.author-avatar img,
.article-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: inherit;
    display: block;
}

.article-image img,
.story-image img,
.card-image img {
    border-radius: 8px 8px 0 0;
}

.author-avatar img {
    border-radius: 50%;
    width: 60px;
    height: 60px;
}

.article-thumb img {
    width: 50px;
    height: 50px;
    border-radius: 6px;
}

/* 图片占位符样式 */
.image-placeholder,
.avatar-placeholder,
.thumb-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #e8f5e8 0%, #d4edda 100%);
    color: #2e8b57;
    font-weight: 600;
    border-radius: inherit;
}

.article-image .image-placeholder,
.story-image .image-placeholder,
.card-image .image-placeholder {
    font-size: 1.8rem;
    color: #2e8b57;
}

.author-avatar .avatar-placeholder {
    font-size: 1.5rem;
    width: 60px;
    height: 60px;
    border-radius: 50%;
}

.article-thumb .thumb-placeholder {
    font-size: 1.2rem;
    width: 50px;
    height: 50px;
    border-radius: 6px;
}

/* 图片加载失败时的样式 */
.article-image img:not([src]),
.article-image img[src=""],
.story-image img:not([src]),
.story-image img[src=""],
.card-image img:not([src]),
.card-image img[src=""],
.author-avatar img:not([src]),
.author-avatar img[src=""],
.article-thumb img:not([src]),
.article-thumb img[src=""] {
    display: none;
}

/* 响应式图片样式 */
@media (max-width: 768px) {
    .article-image .image-placeholder,
    .story-image .image-placeholder,
    .card-image .image-placeholder {
        font-size: 1.5rem;
    }
    
    .author-avatar .avatar-placeholder {
        font-size: 1.3rem;
        width: 50px;
        height: 50px;
    }
    
    .article-thumb .thumb-placeholder {
        font-size: 1rem;
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    .article-image .image-placeholder,
    .story-image .image-placeholder,
    .card-image .image-placeholder {
        font-size: 1.3rem;
    }
    
    .author-avatar .avatar-placeholder {
        font-size: 1.1rem;
        width: 45px;
        height: 45px;
    }
    
    .article-thumb .thumb-placeholder {
        font-size: 0.9rem;
        width: 35px;
        height: 35px;
    }
}

/* 关于我们页面卡片图片样式 */
.about-card .card-image {
    width: 100%;
    height: 200px;
    border-radius: 8px 8px 0 0;
    overflow: hidden;
    position: relative;
}

.about-card .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px 8px 0 0;
}

.about-card .card-image .image-placeholder {
    width: 100%;
    height: 100%;
    font-size: 2rem;
    color: #2e8b57;
    background: linear-gradient(135deg, #e8f5e8 0%, #d4edda 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px 8px 0 0;
}

.about-card .card-content {
    padding: 1.5rem;
    flex: 1;
}

.about-card .card-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2e8b57;
    margin-bottom: 1rem;
}

.about-card .card-content p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.about-card .card-content p:last-child {
    margin-bottom: 0;
}

/* 关于我们页面响应式 */
@media (max-width: 768px) {
    .about-card .card-image {
        height: 150px;
    }
    
    .about-card .card-image .image-placeholder {
        font-size: 1.6rem;
    }
    
    .about-card .card-content {
        padding: 1.2rem;
    }
    
    .about-card .card-content h3 {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }
    
    .about-card .card-content p {
        font-size: 0.9rem;
        margin-bottom: 0.8rem;
    }
}

@media (max-width: 480px) {
    .about-card .card-image {
        height: 120px;
    }
    
    .about-card .card-image .image-placeholder {
        font-size: 1.4rem;
    }
    
    .about-card .card-content {
        padding: 1rem;
    }
    
    .about-card .card-content h3 {
        font-size: 1.1rem;
        margin-bottom: 0.6rem;
    }
    
    .about-card .card-content p {
        font-size: 0.85rem;
        margin-bottom: 0.6rem;
        line-height: 1.5;
    }
}

/* 栏目导航样式 */
.category-nav {
    margin-bottom: 32px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(46,139,87,0.08);
    padding: 24px;
    border: 1px solid #e0e7e9;
}

.category-header {
    text-align: center;
    margin-bottom: 24px;
}

.category-header h2 {
    color: #2e8b57;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.category-header p {
    color: #666;
    font-size: 0.95rem;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
}

.category-item {
    display: flex;
    align-items: center;
    padding: 16px 20px;
    background: linear-gradient(135deg, #f8faf8 0%, #f0f8f0 100%);
    border: 1px solid #e0e7e9;
    border-radius: 10px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.category-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(46,139,87,0.1), transparent);
    transition: left 0.5s ease;
}

.category-item:hover::before {
    left: 100%;
}

.category-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(46,139,87,0.15);
    border-color: #2e8b57;
    background: linear-gradient(135deg, #e8f5e8 0%, #d4edda 100%);
}

.category-icon {
    font-size: 1.8rem;
    margin-right: 16px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(46,139,87,0.1);
    flex-shrink: 0;
}

.category-item:hover .category-icon {
    background: #2e8b57;
    color: #fff;
    transform: scale(1.1);
    transition: all 0.3s ease;
}

.category-info {
    flex: 1;
}

.category-info h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2e8b57;
    margin-bottom: 4px;
    line-height: 1.3;
}

.category-info p {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.4;
    margin: 0;
}

.category-item:hover .category-info h3 {
    color: #256d46;
}

.category-item:hover .category-info p {
    color: #555;
}

/* 栏目导航响应式 */
@media (max-width: 768px) {
    .category-nav {
        margin-bottom: 24px;
        padding: 20px;
        border-radius: 10px;
    }
    
    .category-header h2 {
        font-size: 1.3rem;
        margin-bottom: 6px;
    }
    
    .category-header p {
        font-size: 0.9rem;
    }
    
    .category-grid {
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
        gap: 12px;
    }
    
    .category-item {
        padding: 14px 16px;
        border-radius: 8px;
    }
    
    .category-icon {
        font-size: 1.5rem;
        width: 45px;
        height: 45px;
        margin-right: 12px;
    }
    
    .category-info h3 {
        font-size: 1rem;
        margin-bottom: 3px;
    }
    
    .category-info p {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .category-nav {
        margin-bottom: 20px;
        padding: 16px;
        border-radius: 8px;
    }
    
    .category-header h2 {
        font-size: 1.2rem;
        margin-bottom: 5px;
    }
    
    .category-header p {
        font-size: 0.85rem;
    }
    
    .category-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .category-item {
        padding: 12px 14px;
        border-radius: 6px;
    }
    
    .category-icon {
        font-size: 1.3rem;
        width: 40px;
        height: 40px;
        margin-right: 10px;
    }
    
    .category-info h3 {
        font-size: 0.95rem;
        margin-bottom: 2px;
    }
    
    .category-info p {
        font-size: 0.75rem;
    }
}

/* 动态栏目列表样式 */
.dynamic-categories {
    margin-bottom: 24px;
    padding: 20px;
    background: linear-gradient(135deg, #f8faf8 0%, #f0f8f0 100%);
    border-radius: 10px;
    border: 1px solid #e0e7e9;
}

.dynamic-categories h3 {
    color: #2e8b57;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 16px;
    text-align: center;
}

.category-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 12px;
}

.category-list li {
    margin: 0;
}

.category-link {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    background: #fff;
    border: 1px solid #e0e7e9;
    border-radius: 8px;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.category-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(46,139,87,0.1), transparent);
    transition: left 0.5s ease;
}

.category-link:hover::before {
    left: 100%;
}

.category-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(46,139,87,0.15);
    border-color: #2e8b57;
    background: linear-gradient(135deg, #e8f5e8 0%, #d4edda 100%);
}

.category-link .category-icon {
    font-size: 1.2rem;
    margin-right: 10px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f0f8f0;
    border-radius: 50%;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.category-link:hover .category-icon {
    background: #2e8b57;
    color: #fff;
    transform: scale(1.1);
}

.category-link .category-name {
    font-size: 0.95rem;
    font-weight: 500;
    color: #2e8b57;
    transition: color 0.3s ease;
}

.category-link:hover .category-name {
    color: #256d46;
}

/* 当前栏目高亮 */
.category-list li.current .category-link {
    background: linear-gradient(135deg, #2e8b57 0%, #256d46 100%);
    border-color: #2e8b57;
    color: #fff;
}

.category-list li.current .category-link .category-icon {
    background: rgba(255,255,255,0.2);
    color: #fff;
}

.category-list li.current .category-link .category-name {
    color: #fff;
}

/* 动态栏目列表响应式 */
@media (max-width: 768px) {
    .dynamic-categories {
        margin-bottom: 20px;
        padding: 16px;
        border-radius: 8px;
    }
    
    .dynamic-categories h3 {
        font-size: 1.1rem;
        margin-bottom: 12px;
    }
    
    .category-list {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 10px;
    }
    
    .category-link {
        padding: 10px 12px;
        border-radius: 6px;
    }
    
    .category-link .category-icon {
        font-size: 1rem;
        width: 25px;
        height: 25px;
        margin-right: 8px;
    }
    
    .category-link .category-name {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .dynamic-categories {
        margin-bottom: 16px;
        padding: 12px;
        border-radius: 6px;
    }
    
    .dynamic-categories h3 {
        font-size: 1rem;
        margin-bottom: 10px;
    }
    
    .category-list {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    
    .category-link {
        padding: 8px 10px;
        border-radius: 5px;
    }
    
    .category-link .category-icon {
        font-size: 0.9rem;
        width: 22px;
        height: 22px;
        margin-right: 6px;
    }
    
    .category-link .category-name {
        font-size: 0.8rem;
    }
}

/* 动态文章列表样式 */
.articles-content {
    flex: 1;
    margin-right: 24px;
}

.listbox {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(46,139,87,0.08);
    padding: 24px;
    border: 1px solid #e0e7e9;
    margin-bottom: 24px;
}

.listbox .e2 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.article-list-item {
    padding: 20px 0;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.article-list-item:last-child {
    border-bottom: none;
}

.article-list-item:hover {
    background: linear-gradient(135deg, #f8faf8 0%, #f0f8f0 100%);
    border-radius: 8px;
    padding: 20px;
    margin: 0 -20px;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(46,139,87,0.1);
}

.article-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 12px;
}

.category-tag {
    background: linear-gradient(135deg, #2e8b57 0%, #256d46 100%);
    color: #fff;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.category-tag:hover {
    transform: scale(1.05);
    box-shadow: 0 2px 8px rgba(46,139,87,0.3);
}

.article-meta .title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2e8b57;
    text-decoration: none;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.article-meta .title:hover {
    color: #256d46;
    text-decoration: underline;
}

.article-meta .info {
    font-size: 0.85rem;
    color: #666;
    display: flex;
    align-items: center;
    gap: 8px;
}

.article-meta .info small {
    color: #999;
    font-weight: 500;
}

.article-list-item .intro {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* 分页导航样式 */
.pagebar {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(46,139,87,0.08);
    padding: 20px;
    border: 1px solid #e0e7e9;
    text-align: center;
}

.zzpages {
    display: inline-block;
}

.pagelist {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.pagelist li {
    margin: 0;
}

.pagelist a,
.pagelist span {
    display: inline-block;
    padding: 8px 12px;
    border: 1px solid #e0e7e9;
    border-radius: 6px;
    text-decoration: none;
    color: #666;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    min-width: 36px;
    text-align: center;
}

.pagelist a:hover {
    background: linear-gradient(135deg, #e8f5e8 0%, #d4edda 100%);
    border-color: #2e8b57;
    color: #2e8b57;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(46,139,87,0.15);
}

.pagelist .thisclass {
    background: linear-gradient(135deg, #2e8b57 0%, #256d46 100%);
    border-color: #2e8b57;
    color: #fff;
    font-weight: 600;
}

.pagelist .thisclass:hover {
    background: linear-gradient(135deg, #256d46 0%, #1e5a3a 100%);
    transform: none;
    box-shadow: none;
}

.pagelist .pre,
.pagelist .next {
    font-weight: 500;
}

.pagelist .info {
    color: #999;
    font-size: 0.85rem;
    border: none;
    padding: 8px 16px;
}

.pagelist .index,
.pagelist .end {
    background: #f8f9fa;
    color: #666;
    font-weight: 500;
}

.pagelist .index:hover,
.pagelist .end:hover {
    background: #e9ecef;
    color: #495057;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .articles-content {
        margin-right: 0;
        margin-bottom: 24px;
    }
    
    .listbox {
        padding: 16px;
        border-radius: 8px;
        margin-bottom: 16px;
    }
    
    .article-list-item {
        padding: 16px 0;
    }
    
    .article-list-item:hover {
        padding: 16px;
        margin: 0 -16px;
    }
    
    .article-meta {
        gap: 8px;
        margin-bottom: 10px;
    }
    
    .article-meta .title {
        font-size: 1.1rem;
    }
    
    .article-meta .info {
        font-size: 0.8rem;
        gap: 6px;
    }
    
    .article-list-item .intro {
        font-size: 0.9rem;
    }
    
    .pagebar {
        padding: 16px;
        border-radius: 8px;
    }
    
    .pagelist {
        gap: 6px;
    }
    
    .pagelist a,
    .pagelist span {
        padding: 6px 10px;
        font-size: 0.85rem;
        min-width: 32px;
    }
}

@media (max-width: 480px) {
    .listbox {
        padding: 12px;
        border-radius: 6px;
        margin-bottom: 12px;
    }
    
    .article-list-item {
        padding: 12px 0;
    }
    
    .article-list-item:hover {
        padding: 12px;
        margin: 0 -12px;
    }
    
    .article-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
        margin-bottom: 8px;
    }
    
    .article-meta .title {
        font-size: 1rem;
    }
    
    .article-meta .info {
        font-size: 0.75rem;
        gap: 4px;
    }
    
    .article-list-item .intro {
        font-size: 0.85rem;
    }
    
    .pagebar {
        padding: 12px;
        border-radius: 6px;
    }
    
    .pagelist {
        gap: 4px;
    }
    
    .pagelist a,
    .pagelist span {
        padding: 5px 8px;
        font-size: 0.8rem;
        min-width: 28px;
    }
}