/* 医馆历程版块样式修改 */
.history-timeline {
    position: relative;
    margin: 30px 0;
    padding-left: 60px;
    border-left: 3px solid #B0814F;
}

.timeline-item {
    position: relative;
    margin-bottom: 25px; /* 减小底部间距 */
    padding-left: 15px; /* 减小左侧内边距 */
    padding-bottom: 5px; /* 减小底部内边距 */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.timeline-content {
    padding: 15px; /* 减小内边距 */
}

.timeline-content h3 {
    margin-top: 0;
    margin-bottom: 8px; /* 减小标题底部间距 */
    font-size: 18px; /* 稍微减小字体大小 */
}

.timeline-content p {
    margin: 0;
    font-size: 14px; /* 减小段落字体大小 */
    line-height: 1.4; /* 减小行高 */
}

/* 特色服务卡片毛玻璃效果 */
.service-card {
    background-color: rgba(255, 255, 255, 0.7) !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* 确保特色服务卡片内容清晰可见 */
.service-content {
    z-index: 2;
    position: relative;
}

.service-title, .service-desc, .service-features li {
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.5);
}