/* 全局样式 */
 :root {
    --primary-color: #000000;
            --secondary-color: #e8c97e;
            --accent-color: #8b0000;
            --light-bg: #f9f5e9;
            --dark-text: #333;
}

body {
    font-family: 'Microsoft YaHei', '微软雅黑', sans-serif;
    background-image: url('../images/theme1.jpg');
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    color: var(--dark-color);
    margin: 0;
    padding: 0;
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    background-color: #fff;
            position: relative;
}

/* 医馆服务新版独立样式 */

/* —— doctors.html 专家团队页面 —— */
.doctors-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 28px;
    margin-top: 36px;
    margin-bottom: 60px;
}
.doctor-card {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 18px rgba(139,0,0,0.09);
    display: flex;
    align-items: center;
    padding: 22px 32px 22px 22px;
    transition: box-shadow 0.3s, transform 0.3s, background 0.3s;
    cursor: pointer;
    border-left: 6px solid #8B0000;
    min-height: 120px;
    position: relative;
}
.doctor-card:hover {
    box-shadow: 0 10px 36px rgba(139,0,0,0.17);
    transform: translateY(-8px) scale(1.04);
    background: #fef7f2;
}
.doctor-avatar {
    width: 108px;
    height: 108px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 28px;
    border: 3px solid #8B0000;
    background: #f9f5f0;
    box-shadow: 0 2px 10px rgba(139,0,0,0.06);
}
.doctor-info {
    flex: 1;
    min-width: 0;
}
.doctor-name {
    font-size: 1.35rem;
    color: #8B0000;
    margin: 0 0 6px 0;
    font-weight: bold;
    letter-spacing: 1px;
}
.doctor-title {
    font-size: 1.07rem;
    color: #555;
    margin: 0 0 10px 0;
}
.doctor-desc {
    font-size: 1.05rem;
    color: #333;
    margin-bottom: 8px;
    line-height: 1.7;
}
.doctor-goodat {
    font-size: 0.98rem;
    color: #666;
    margin-bottom: 2px;
}
.doctor-goodat span {
    color: #8B0000;
    font-weight: bold;
}
.doctor-time {
    font-size: 0.95rem;
    color: #b0814f;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 6px;
}
.doctor-time i {
    margin-right: 4px;
}
.filter-section {
    margin: 30px 0 18px 0;
    text-align: center;
}
.filter-title {
    font-size: 1.13rem;
    color: #333;
    margin-bottom: 10px;
}
.filter-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 10px;
}
.filter-tag {
    background-color: #f5f5f5;
    border: 1.5px solid #ddd;
    color: #8B0000;
    padding: 8px 18px;
    border-radius: 22px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 1px;
}
.filter-tag:hover {
    background-color: #f7eae8;
    border-color: #8B0000;
    color: #fff;
}
.filter-tag.active {
    background-color: #8B0000;
    color: white;
    border-color: #8B0000;
}
@media (max-width: 900px) {
    .doctors-list {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .doctor-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 16px 8px;
    }
    .doctor-avatar {
        margin: 0 0 12px 0;
    }
}
@media (max-width: 600px) {
    .doctor-avatar {
        width: 72px;
        height: 72px;
    }
    .filter-tags {
        flex-direction: row;
        overflow-x: auto;
        padding-bottom: 8px;
        justify-content: flex-start;
    }
    .filter-tag {
        flex-shrink: 0;
    }
}

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

/* 医馆服务列表式布局 */
.list-services-section {
    background: var(--light-bg);
    background-color: rgba(249, 249, 249, 0.01);
}
.list-services {
    list-style: none;
    margin: 0 auto;
    padding: 0 20px;
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    gap: 28px;
}
.list-service-item {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 2px 12px rgba(149,43,34,0.07);
    padding: 28px 22px;
    gap: 28px;
    transition: box-shadow 0.2s, transform 0.3s, background-color 0.3s;
}
.list-service-item:hover {
    box-shadow: 0 8px 28px rgba(149,43,34,0.13);
    transform: translateY(-3px) scale(1.02);
    background-color: #fff5f0;
}
.list-service-icon {
    flex: 0 0 94px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.list-service-icon img {
    width: 82px;
    height: 82px;
    object-fit: cover;
    border-radius: 12px;
    background: #f8f1e6;
    box-shadow: 0 1px 6px rgba(149,43,34,0.06);
}
.list-service-content {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
}
.list-service-content h3 {
    font-size: 1.35rem;
    color: #952B22;
    margin: 0 0 10px 0;
    font-weight: 600;
    letter-spacing: 1px;
}
.list-service-content:hover h3 {
    color: var(--accent-color);
}
.list-service-content p {
    color: #555;
    font-size: 1.05rem;
    line-height: 1.8;
    margin: 0;
}
@media (max-width: 900px) {
    .list-service-item {
        flex-direction: column;
        text-align: center;
        gap: 12px;
        padding: 18px 8px;
    }
    .list-service-icon {
        margin-bottom: 10px;
    }
    .list-service-icon img {
        width: 64px;
        height: 64px;
    }
}



/* 图文左右分栏式布局 */

.media-services-list {
    display: flex;
    flex-direction: column;
    gap: 38px;
    padding: 0 20px;
    max-width: 950px;
    margin: 0 auto;
}
.media-service-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 2px 12px rgba(149,43,34,0.07);
    padding: 34px 24px;
    gap: 36px;
    transition: box-shadow 0.2s;
}
.media-service-row:hover {
    box-shadow: 0 8px 28px rgba(149,43,34,0.13);
}
.media-service-row.reverse {
    flex-direction: row-reverse;
}
.media-service-img-col {
    flex: 0 0 120px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.media-service-img {
    width: 94px;
    height: 94px;
    object-fit: contain;
    border-radius: 12px;
    background: #f8f1e6;
    box-shadow: 0 1px 6px rgba(149,43,34,0.06);
}
.media-service-text-col {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
}
.media-service-text-col h3 {
    font-size: 1.35rem;
    color: #952B22;
    margin: 0 0 10px 0;
    font-weight: 600;
    letter-spacing: 1px;
}
.media-service-text-col p {
    color: #555;
    font-size: 1.05rem;
    line-height: 1.8;
    margin: 0;
}
@media (max-width: 900px) {
    .media-service-row, .media-service-row.reverse {
        flex-direction: column !important;
        text-align: center;
        gap: 16px;
        padding: 24px 10px;
    }
    .media-service-img-col {
        margin-bottom: 10px;
    }
    .media-service-img {
        width: 72px;
        height: 72px;
    }
}



.clinic-section-title {
    text-align: center;
    font-size: 2.4rem;
    color: #952B22;
    letter-spacing: 3px;
    margin-bottom: 38px;
    font-weight: 700;
}

.clinic-services-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 32px 18px;
    padding: 0 30px;
}

.clinic-service-block {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 2px 12px rgba(149,43,34,0.07);
    flex: 1 1 210px;
    max-width: 220px;
    min-width: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 32px 18px 22px 18px;
    transition: transform 0.18s, box-shadow 0.18s;
    text-align: center;
}
.clinic-service-block:hover {
    transform: translateY(-8px) scale(1.045);
    box-shadow: 0 8px 28px rgba(149,43,34,0.13);
}
.clinic-service-img {
    width: 64px;
    height: 64px;
    margin-bottom: 18px;
    object-fit: contain;
}
.clinic-service-block h3 {
    font-size: 1.25rem;
    color: #952B22;
    margin: 10px 0 8px 0;
    font-weight: 600;
    letter-spacing: 1px;
}
.clinic-service-block p {
    color: #555;
    font-size: 1rem;
    line-height: 1.7;
}

@media (max-width: 900px) {
    .clinic-services-wrapper { flex-direction: column; align-items: center; }
    .clinic-service-block { max-width: 340px; width: 100%; }
}

/* 协同发展背景样式 */
.synergy-bg-section {
    position: relative;
    padding: 40px 20px;
    margin: 50px 0;
    border-radius: 15px;
    overflow: hidden;
}

.synergy-bg-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/cu-bg.jpg') center/cover fixed;
    filter: brightness(0.9);
    z-index: -1;
}

.synergy-bg-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(251, 250, 250, 0.3);
    z-index: -1;
}

/* 头部样式 */
.header {
    background-color: #952B22;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 3px solid var(--primary-color);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1300px;
    height: 80px;
    margin: 0 auto;
    padding: 15px 20px;
}

.logo-container {
    display: flex;
    align-items: center;
}

/*.logo-img {
   
    margin-right: 15px;
    
    border: 2px solid var(--primary-color);
}*/

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-main {
    font-family: "Microsoft YaHei", 微软雅黑, sans-serif;
    font-size: 28px;
    color: #F5F5DC;
    line-height: 1;
    font-weight: bold;
}

.logo-sub {
    font-size: 14px;
    color: var(--accent-color);
    margin-top: 5px;
}

/* 导航栏样式 */
.navbar {
    display: flex;
    background-color: #952B22;
}

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

.nav-link {
    color: white;
    text-decoration: none;
    padding: 10px 15px;
    margin: 0 5px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--secondary-color);
    background-color: rgba(139, 0, 0, 0.2);
    border-radius: 4px;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* 下拉菜单样式 */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: rgba(0, 0, 0, 0.287);
    box-shadow: 0 4px 8px rgba(247, 246, 246, 0.1);
    border-radius: 0 0 5px 5px;
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    transform: translateY(10px);
    z-index: 100;
    border: 1px solid rgba(12, 12, 12, 0.903);
    font-size: 12px;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: block;
    padding: 10px 15px;
    color: #FFFFFF;
    text-decoration: none;
    transition: all 0.2s ease;
    border-bottom: 1px solid rgba(250, 247, 247, 0.05);
    text-align: center;
}

.dropdown-item:hover {
    background-color: rgba(139, 0, 0, 0.1);
    color: #FFA500;
    padding-left: 20px;
}

/* 招聘卡片样式 */
.job-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin: 20px 0;
    
}

.job-card {
    background-color: rgba(250, 250, 250, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 8px;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.job-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

.job-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.salary {
    color: var(--primary-color);
    font-weight: bold;
}

.job-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 15px;
}

.job-tag {
    background-color: var(--light-color);
    color: var(--dark-color);
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
}

.job-requirements {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.job-requirements li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 20px;
}

.job-requirements li::before {
    content: "✓";
    color: var(--accent-color);
    position: absolute;
    left: 0;
}

.apply-btn {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
}

.apply-btn:hover {
    background-color: #6d0000;
}

/* 联系我们合并版块样式 */
.combined-contact-section {
    padding: 30px 0;
    margin-bottom: 40px;
}

.contact-map-wrapper {
    display: flex;
    flex-direction: column;
    max-width: 1200px;
    margin: 0 auto;
    box-shadow: 0 5px 20px rgba(139,0,0,0.1);
    border-radius: 12px;
    overflow: hidden;
    background-color: #fff;
}

.map-container {
    width:100%;
    height: auto;
    max-height: 380px;
    overflow: hidden;
    
}

.location-map {
    width: 100%;
    height: auto;
    max-height: 380px;
    object-fit: fill;
}

.contact-info-container {
    display: flex;
    justify-content: space-between;
    padding: 30px;
    background-color: #ffffff;
    flex-wrap: wrap;
    gap: 20px;
}

.contact-card {
    flex: 1;
    min-width: 280px;
    padding: 20px;
    border-radius: 8px;
    background-color: #f9f5e9;
    box-shadow: 0 3px 10px rgba(139,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.contact-card h2 {
    color: #8b0000;
    margin-bottom: 15px;
    font-size: 1.5rem;
    border-bottom: 2px solid #e8c97e;
    padding-bottom: 8px;
}

.contact-card p {
    margin: 12px 0;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
}

.contact-card i {
    margin-right: 10px;
    color: #8b0000;
    width: 20px;
    text-align: center;
}

/* 招商合作版块样式 */
.business-section {
    max-width: 1200px;
    margin: 0 auto 40px;
    padding: 0;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(139,0,0,0.1);
    overflow: hidden;
}

.business-section .section-title {
    background-color: #8b0000;
    color: #fff;
    margin: 0;
    padding: 15px 0;
    font-size: 1.8rem;
    letter-spacing: 2px;
}

.business-content {
    display: flex;
    flex-wrap: wrap;
    padding: 0;
    background-color: #f9f5e9;
}

.business-intro {
    flex: 1;
    min-width: 280px;
    padding: 25px;
    background-color: #ffffffc3;
    border-right: 1px solid rgba(139,0,0,0.1);
}

.business-intro p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 15px;
    color: #333;
}

.business-contact {
    flex: 1;
    min-width: 280px;
    padding: 25px;
    background-color: #f9f5e9;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.business-contact p {
    margin: 10px 0;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    color: #333;
}

.business-contact i {
    margin-right: 10px;
    color: #8b0000;
    width: 24px;
    height: 24px;
    text-align: center;
    font-size: 1.2rem;
}

.qr-btn {
    background-color: #8b0000;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    font-weight: 500;
    margin-top: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 8px rgba(139,0,0,0.2);
}

.qr-btn:hover {
    background-color: #6d0000;
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(139,0,0,0.3);
}

.qr-btn i {
    margin-right: 8px;
}

@media (max-width: 768px) {
    .contact-info-container {
        flex-direction: column;
    }
    
    .map-container {
        height: 300px;
    }
    
    .business-content {
        flex-direction: column;
    }
    
    .business-intro {
        border-right: none;
        border-bottom: 1px solid rgba(139,0,0,0.1);
    }
    
    .business-section .section-title {
        font-size: 1.5rem;
        padding: 12px 0;
    }
    
    .qr-btn {
        width: 100%;
        margin-top: 20px;
    }
}

/* 模态框样式 */
.contact-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    z-index: 2000;
    justify-content: center;
    align-items: center;
}

/* 招商合作二维码弹窗样式 */
.business-qr-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.6);
    z-index: 2000;
    justify-content: center;
    align-items: center;
}

.business-qr-popup-content {
    background-color: #fff;
    padding: 30px;
    border-radius: 12px;
    position: relative;
    text-align: center;
    max-width: 320px;
    width: 90%;
    box-shadow: 0 10px 30px rgba(139,0,0,0.2);
    border: 2px solid #e8c97e;
    animation: popup-fade 0.3s ease-in-out;
}

@keyframes popup-fade {
    from { opacity: 0; transform: scale(0.8); }
    to { opacity: 1; transform: scale(1); }
}

.business-qr-popup-content img {
    width: 200px;
    height: 200px;
    margin: 10px auto;
    border: 1px solid #eee;
    padding: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.business-qr-popup-content p {
    margin: 15px 0 5px;
    font-size: 1.1rem;
    color: #8b0000;
    font-weight: 500;
}

.business-close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
    color: #8b0000;
    transition: all 0.2s ease;
}

.business-close-btn:hover {
    color: #000;
    transform: scale(1.1);
}

.modal-content {
    background-color: #ffffff;
    border-radius: 8px;
    width: 80%;
    max-width: 700px;
    padding: 30px;
    position: relative;
    box-shadow: 0 8px 32px rgba(139, 0, 0, 0.2);
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 24px;
    cursor: pointer;
}

.modal-body {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.modal-left {
    flex: 1;
    padding: 15px;
    border-right: 1px solid rgba(139, 0, 0, 0.1);
}

.modal-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px;
    min-width: 200px;
}

.qr-code img {
    width: 180px;
    height: 180px;
    margin-bottom: 15px;
    border: 1px solid rgba(139, 0, 0, 0.1);
    padding: 10px;
    background: white;
}

/* 轮播图样式 */
.carousel {
    position: relative;
    max-width: 100%;
    margin: 20px auto;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    border: 3px solid var(--light-color);
}

.slides-container {
    position: relative;
    height: 460px;
}

.slides {
    display: flex;
    height: 100%;
    transition: transform 0.5s ease;
}

.slides img {
    width: 100%;
    height: auto;
    object-fit: cover;
    flex-shrink: 0;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(139, 0, 0, 0.7);
    color: white;
    border: none;
    cursor: pointer;
    padding: 15px;
    font-size: 18px;
    border-radius: 50%;
    transition: all 0.3s ease;
    z-index: 10;
}

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

.prev-btn {
    left: 20px;
}

.next-btn {
    right: 20px;
}

/* 新闻区域样式 */
.news-section {
    max-width: 100%;
    margin: 40px auto;
    padding: 0 20px;
}

.section-title {
    text-align: center;
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
    
}

.section-title i {
    margin-right: 15px;
    color: var(--accent-color);
}
.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.news-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

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

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

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

.news-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.news-content {
    padding: 15px;
}

.news-content h3 {
    margin: 0 0 10px;
    color: var(--primary-color);
    font-size: 18px;
}

.news-content p {
    margin: 0;
    color: var(--dark-color);
    font-size: 14px;
}
/* 通知公示版块样式 */
.notice-section {
    max-width: 100%;
    margin: 60px auto;
    padding: 20px 20px;
    background-color: rgb(250, 250, 250);
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    border: 1px solid rgba(0,0,0,0.05);
    position: relative;
    z-index: 1;
    overflow: hidden;
    clear: both;
}

.notice-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 10px;
}

.more-link {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
}

.more-link:hover {
    color: var(--accent-color);
    transform: translateX(5px);
}

.notice-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.notice-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    border-radius: 4px;
    transition: all 0.3s ease;
    border-bottom: 1px dashed #eee;
    padding-bottom: 15px;
}

.notice-item:first-child {
    flex-direction: column;
    align-items: flex-start;
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    margin-bottom: 20px;
}

.notice-item:first-child .notice-date {
    align-self: flex-end;
    margin-top: 10px;
}

.notice-item:first-child .notice-content {
    display: flex;
    width: 100%;
    height: 80px;
    gap: 20px;
}

.notice-item:first-child .notice-image {
    width: 180px;
    height: 120px;
    object-fit: cover;
    border-radius: 4px;
}

.notice-item:first-child .notice-text {
    flex: 1;
}

.notice-item:hover {
    background-color: rgba(139, 0, 0, 0.05);
    transform: translateX(5px);
}

.notice-date {
    text-align: right;
    color: #000000;
    font-weight: bold;
    min-width: 60px;
    font-family: 'Microsoft YaHei', '微软雅黑', sans-serif;
}

.notice-link {
    text-decoration: none;
    color: var(--dark-color);
    flex-grow: 1;
}

.notice-title {
    margin: 0;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 10px;
}

.notice-item:first-child .notice-title {
    font-size: 20px;
    margin-bottom: 10px;
}

.notice-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 4px;
    background-color: var(--primary-color);
    
    border-radius: 50%;
}

.notice-item:hover .notice-title {
    color: var(--primary-color);
    padding-left: 15px;
}

.notice-item:hover .notice-title::before {
    width: 6px;
    height: 6px;
}
/* 服务区域样式 */
.services-section {
    max-width: 100%;
    margin: 10px auto;
    padding: 10px 10px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    position: relative;
    z-index: 1;
    clear: both;
    margin-top: 60px;
    background-color: transparent;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.service-item {
    background-color: white;
    border-radius: 18px;
    padding: 10px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid rgba(0,0,0,0.05);
}

.service-item:hover {
    transform: translateY(-5px);
    color: var(--primary-color);
    box-shadow: 0 8px 16px rgba(0,0,0,0.15);
}

.service-item i {
    font-size: 36px;
    margin-bottom: 10px;
    display: block;
}

.service-item h3 {
    margin: 0 0 10px 0;
    font-size: 16px;
    padding: 0 15px 10px 0;
    border-right: 1px solid rgba(139, 0, 0, 0.1);
    border-bottom: 1px solid rgba(139, 0, 0, 0.1);
}

/* 中医馆门店样式 */
.clinic-info {
    max-width: 1200px;
    padding: 20px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.clinic-card {
    display: flex;
    margin-bottom: 30px;
}

.clinic-img {
    width: 400px;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
}

.clinic-details {
    flex: 1;
}

.clinic-details h3 {
    color: var(--primary-color);
    font-size: 24px;
    margin-bottom: 15px;
}

.clinic-details p {
    margin-bottom: 10px;
    font-size: 16px;
}

/* 食疗养生门店样式 */
.therapy-info {
    max-width: 1200px;
    margin: 40px auto;
    padding: 20px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.therapy-card {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
}

.therapy-img {
    width: 400px;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
}

.therapy-details {
    flex: 1;
}

.therapy-details h3 {
    color: var(--primary-color);
    font-size: 24px;
    margin-bottom: 15px;
}

.therapy-details p {
    margin-bottom: 10px;
    font-size: 16px;
}

/* 信息展示区样式 */
.info-section {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
}

.info-container {
    display: flex;
    justify-content: space-between;
    background-color: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    border: 1px solid rgba(0,0,0,0.05);
}

.text-carousel {
    flex: 1;
    padding: 20px;
    border-right: 1px solid rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    font-size: 24px;
    font-family: 'Hanyi SangWeiShouShu', cursive;
    color: var(--primary-color);
}

.quick-links {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    padding-left: 20px;
}

.quick-card {
    background-color: var(--light-color);
    border-radius: 8px;
    padding: 15px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid rgba(0,0,0,0.05);
}

.quick-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.quick-card img {
    width: 50px;
    height: 50px;
    margin-bottom: 10px;
}

.quick-card h3 {
    margin: 0 0 5px;
    color: var(--primary-color);
    font-size: 16px;
}

.quick-card p {
    margin: 0;
    font-size: 14px;
    color: var(--dark-color);
}

/* 表单区域样式 */
.form-section {
    max-width: 800px;
    margin: 60px auto;
    padding: 0 20px;
}

.custom-form {
    background-color: white;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    border: 1px solid rgba(0,0,0,0.05);
}

.custom-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--primary-color);
}

.custom-form input {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
}

.custom-form input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(139, 0, 0, 0.2);
}

.submit-button {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 12px 24px;
    font-size: 16px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    font-family: inherit;
}

.submit-button:hover {
    background-color: #6d0000;
    transform: translateY(-2px);
}

.error-message {
    color: #d9534f;
    font-size: 12px;
    margin-top: -15px;
    margin-bottom: 15px;
    display: none;
}

/* 日历区域样式 */
.calendar-section {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
}

.calendar-container {
    background-color: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    border: 1px solid rgba(0,0,0,0.05);
}

#calendar {
    height: 400px;
    /* 日历样式将通过JavaScript实现 */
}

.legend {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    gap: 20px;
}

.legend-item {
    display: flex;
    align-items: center;
}

.legend-color {
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-right: 8px;
    border-radius: 4px;
}

.available {
    background-color: var(--accent-color);
}

.unavailable {
    background-color: #ccc;
}

/* 页脚样式 */
.chinese-footer {
    background-color: var(--primary-color);
    background-image: url('../images/bgNavM.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: 60px;
    font-family: 'Microsoft YaHei', cursive;
}
 /* 中医风格装饰元素 */
 .chinese-pattern {
    position: absolute;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><path d="M20,20 L80,20 L80,80 L20,80 Z" fill="none" stroke="%23f0f7f3" stroke-width="2"/></svg>');
    opacity: 0.1;
    pointer-events: none;
    z-index: -1;
}

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

.footer-content p {
    margin: 5px 0;
}

/* 修改footer-wrapper样式 */
.footer-wrapper {
    flex-shrink: 0;
    background-color: var(--primary-color);
    color: white;
    padding: 20px 0;
    position: relative;
    margin-top: -60px; /* 负边距将页脚上拉 */
    height: 60px;
    clear: both;
  }
  
  .footer-wrapper:before {
    content: "";
    display: block;
    height: 10px;
    background: linear-gradient(to right, var(--secondary-color), var(--primary-color));
}

  /* 主内容容器 */
  .container {
    flex:1;
    position: relative;
    overflow: hidden;
    min-height: calc(100vh - 60px); /* 视口高度减去页脚高度 */
    padding-bottom: 60px;
  }
  /* 内容区美化 */
  .content-section {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
    position: relative;
}
/* 标题样式 */
.page-title {
    text-align: center;
    color: var(--primary-color);
    font-size: 2.8rem;
    margin-bottom: 40px;
    padding-bottom: 15px;
    position: relative;
    font-weight: 600;
    letter-spacing: 2px;
}

.page-title:after {
    content: "";
    display: block;
    width: 80px;
    height: 4px;
    background: var(--secondary-color);
    margin: 15px auto;
    border-radius: 2px;
}

/* 门店卡片样式 */
.clinics-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 60px 0;
}

.clinic-card {
    width: 100%;
    margin-bottom: 50px;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.clinic-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.clinic-header {
    background-color: var(--primary-color);
    color: white;
    padding: 20px;
    position: relative;
}

.clinic-header h2 {
    margin: 0;
    font-size: 1.8rem;
    display: flex;
    align-items: center;
}

.clinic-header h2 i {
    margin-right: 15px;
    color: var(--secondary-color);
}

.clinic-content {
    display: flex;
    flex-wrap: wrap;
}

.clinic-info {
    flex: 1;
    min-width: 300px;
    padding: 30px;
}

.clinic-info h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-top: 0;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--secondary-color);
}

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

.info-item i {
    color: var(--secondary-color);
    margin-right: 10px;
    margin-top: 3px;
}

.clinic-map {
    flex: 1;
    min-width: 300px;
    height: 400px;
    background-color: #eee;
}



.services-section h3 {
    color: rgb(255, 255, 255);
    font-size: 1.5rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.services-section h3 i {
    margin-right: 10px;
    color: var(--secondary-color);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 15px;
    margin: 2rem 0;
}

.service-item {
    background: rgba(255, 255, 255, 0.98);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.service-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 90%;
    height: 1px;
    background: rgba(139, 0, 0, 0.1);
    transform: translateX(-50%);
}

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

.service-item h3 {
    font-size: 1.1rem;
    margin: 0 0 0.8rem;
    display: flex;
    align-items: center;
    color: var(--primary-color);
}

.service-item h3 i {
    font-size: 1.4rem;
    margin-right: 0.8rem;
}

.service-item p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--dark-color);
    margin: 0;
}
.content-section h1 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    margin-top: 10px;
    color: #8B0000;
    font-family: 'Hanyi SangWeiShouShu', sans-serif;
    position: relative;
    z-index: 2;
}

.content-section h1:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #8B0000, #D4AF37);
}

.content-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: #8B0000;
    font-family: 'Hanyi SangWeiShouShu', sans-serif;
    position: relative;
    z-index: 2;
}
.content-section h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #8B0000, #D4AF37);
    
}

/* 段落样式 */
.content-section p {
    font-size: 1.2rem;
    max-width: 1300px;
    line-height: 1.8;
    color:var(--dark-text);
    text-align: justify;
    margin-bottom: 20px;
    /*text-indent: 2em;*/
}

/* 特色横幅区域 */
.hero-banner {
    height: 330px;
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), 
                url('https://img2.baidu.com/it/u=1238182925,579485580&fm=253&fmt=auto&app=120&f=JPEG?w=1422&h=800');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    overflow: hidden;
}

.hero-banner:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 20px;
    background-size: cover;
}

.hero-content {
    max-width: 800px;
    padding: 0 20px;
    z-index: 1;
    line-height: 1.6;
    text-align: center;
    font-family: 'Microsoft YaHei', '微软雅黑', sans-serif;
    font-size: 1.2rem;
    color: rgb(255, 255, 255);
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    margin: 0 auto;
    padding: 60px;

}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    color: rgb(255, 255, 255);
}

.hero-content p {
    font-size: 1.3rem;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.hero-banner1 {
    height: 300px;
    background: url('../images/banner222.jpg');
    background-size: cover !important;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
}

.hero-banner1:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 20px;
    background-size: cover;
}

.hero-content1 {
    max-width: 800px;
    margin-top: 120px;
    padding: 0 20px;
    z-index: 1;
}

.hero-content1 h1 {
    font-size: 3.5rem;
    margin-bottom: 1px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    color: white;
}

.hero-content1 p {
    font-size: 1.2rem;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

/* 顶部展示图样式 */
.hero-banner2 {
    position: relative;
    width: 100%;
    height: auto;
    background: url('../images/banner12.jpeg') no-repeat center center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.hero-banner2::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /*background: linear-gradient(to top, rgba(139, 0, 0, 0.4), transparent); /* 红色渐变叠加 */
    /*z-index: 1; */
}

.hero-overlay2 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.5), rgba(0,0,0,0.1));
    z-index: 1; /* 叠加层的 z-index */
}

.hero-title2 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.hero-subtitle2 {
    font-size: 1.2rem;
    font-weight: 300;
}

.hero-banner3 {
    position: relative;
    width: 100%;
    height: auto;
    background: url('../images/banner51.jpg') no-repeat center center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.hero-banner3::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /*background: linear-gradient(to top, rgba(139, 0, 0, 0.4), transparent); /* 红色渐变叠加 */
    /*z-index: 1;*/
}

.hero-overlay3 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    z-index: 2;
}
/* 公司信息卡片样式 */
.company-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 60px 0;
}

.company-card {
    width: 380px;
    min-width: 300px;
    background: white;
    border-radius: 8px;
    padding: 0;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    overflow: hidden;
    position: relative;
}

.company-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.company-card-image {
    height: 250px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.company-card-image:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), transparent);
}

.company-card h3 {
    color: white;
    position: absolute;
    bottom: 20px;
    left: 20px;
    margin: 0;
    font-size: 1.5rem;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

.company-card-content {
    padding: 25px;
}

.company-card p {
    margin: 15px 0;
    font-size: 1rem;
    position: relative;
    padding-left: 1px;
}


/* 中医特色展示区 */
.tcm-features {
    display: flex;
    flex-wrap: row;
    margin: 32px 0;
    background: #FFFFFF;
    border-radius: 16px;
    overflow: hidden;
    align-items: stretch;
    box-shadow: 0 5px 24px rgba(0,0,0,0.05);
}

.tcm-feature-image {
    flex: 0 0 420px;
    min-width: 300px;
    min-height: 400px;
    background: url('../images/zhang.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
}

.tcm-feature-content {
    flex: 1;
    min-width: 300px;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.tcm-feature-content h2 {
    color: var(--primary-color);
    font-size: 2.2rem;
    margin-top: 0;
    position: relative;
    padding-bottom: 15px;
}

.tcm-feature-content h2:after {
    content: "";
    display: block;
    width: 600px;
    height: 3px;
    background: var(--secondary-color);
    margin-top: 15px;
    text-align: center;
    
}

.tcm-feature-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    text-indent: 2em; /* 设置首行缩进为2个字符宽度 */
}

/* 未来发展部分 */
.future-development {
    background: linear-gradient(rgba(42, 70, 92, 0.3), rgba(42,92,69,0.3)), 
                url('../images/develop-bg.png')center/cover fixed;
    background-size: cover;
    background-position: center;
    color: white;
    padding: 20px 40px;
    border-radius: 8px;
    margin: 60px 0;
    position: relative;
}

.future-development h2 {
    color: white;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

/*.future-development h2:after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    background: var(--secondary-color);
    margin: 15px auto;
}*/

.future-development p {
    color: rgba(255,255,255,0.9);
    max-width: 1100px;
    margin: 0 auto 25px;
    text-indent: 2em;
}
@media (max-width: 992px) {
    .company-card {
        width: 48%;
    }
    
    .mission-vision .item {
        width: 48%;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .company-card,
    .mission-vision .item {
        width: 100%;
    }
    
    .tcm-feature-image,
    .tcm-feature-content {
        min-width: 100%;
    }
}
/* 使命愿景部分 */
.mission-vision {
    background-color: #d2d0ca91;
    border-radius: 18px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: background 0.3s;
}

.mission-vision:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /*background: url('../images/item.png') center/cover fixed;*/
    background-color: white;
}

.mission-vision h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: #8B0000;
    font-family: 'Hanyi SangWeiShouShu', sans-serif;
    position: relative;
    z-index: 2;
}

.mission-vision h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #8B0000, #D4AF37);
}

.mission-vision .items-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.mission-vision .item {
    width: 30%;
    min-width: 300px;
    margin-bottom: 30px;
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    position: relative;
    z-index: 1;
    transition: transform 0.3s, box-shadow 0.3s;
}

.mission-vision .item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.mission-vision h3 {
    font-size: 1.3rem;
    color: #1e6bb8;
    margin-bottom: 8px;
    font-weight: bold;
    text-align: center;
    letter-spacing: 1px;
    position: relative;
}

.mission-vision h3 i {
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-size: 1.8rem;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .company-card {
        width: 100%;
    }
    .content-section h1 {
        font-size: 2rem;
    }
}
  /* 仅当内容足够长时才显示页脚 */
  @media (max-height: 800px) {
    .footer-wrapper {
      position: static;
      margin-top: 0;
    }
    .container {
      min-height: auto;
    }
  }

  @media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .clinic-info,
    .clinic-map {
        min-width: 100%;
    }
    
    .clinic-map {
        height: 300px;
    }
    
    .page-title {
        font-size: 2.2rem;
    }
}
/* 二维码弹窗样式 */
.qr-popup {
    position: fixed !important; /* 固定在页面右下角 */
    bottom: 5px !important;
    right: 10px !important;
    width: 130px; /* 设置为正方形 */
    height: 140px; /* 设置为正方形 */
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: block; /* 默认显示 */
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.qr-popup.hidden {
    opacity: 0;
    pointer-events: none;
}

.qr-popup-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 20px;
}

.qr-popup img {
    width: 100px;
    height: 100px;
    margin-bottom: 0px;
}

.qr-popup p {
    text-align: center;
    margin-top: 0.1px;
    font-size: 0.9rem;
    color: #333;
}

.close-btn {
    position: absolute;
    top: 0.1px;
    right: 4px;
    font-size: 1.2em;
    color: #999;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-btn:hover {
    color: #333;
}
/* 增强导航栏效果 */
.nav-link {
    transition: all 0.3s ease;
    position: relative;
}
.nav-link:hover {
    color: #fea623;
}
.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #fea623;
    transition: width 0.3s ease;
}
.nav-link:hover::after {
    width: 100%;
}

/* 增强卡片效果 */
.news-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

/* 添加传统边框 */
.section-title {
    position: relative;
    padding-bottom: 15px;
}
.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #8B0000, #D4AF37);
}

/* 服务图标动画 */
.service-item {
    transition: all 0.3s ease;
}
.service-item:hover {
    transform: translateY(-5px);
    color: #8B0000;
}
/* 响应式设计 */
@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
    }
    
    .navbar {
        margin-top: 15px;
    }
    
    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .info-container {
        flex-direction: column;
    }
    
    .text-carousel {
        border-right: none;
        border-bottom: 1px solid rgba(0,0,0,0.1);
        padding-bottom: 20px;
        margin-bottom: 20px;
        justify-content: center;
        text-align: center;
    }
    
    .quick-links {
        padding-left: 0;
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    }
}

/* 信息展示区样式 */
.info-showcase {
    background: linear-gradient(135deg, rgba(245, 245, 220, 0.9), rgba(255, 255, 255, 0.95));
    padding: 60px 0;
    margin-top: 60px;
    position: relative;
    overflow: hidden;
}

.info-showcase::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 10px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

.info-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* 紧凑型信息展示区 */
.compact-info-showcase {
    background: linear-gradient(to right, #f9f5f0, #f0e6d6);
    padding: 40px 0;
    border-top: 3px solid var(--primary-color);
    border-bottom: 3px solid var(--primary-color);
}

.compact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1.2fr 1fr 1.2fr;
    gap: 20px;
}

/* 联系方式与二维码组合 */
.contact-qr-combo {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-card, .qr-card {
    background: white;
    border-radius: 8px;
    
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    border-left: 4px solid var(--accent-color);
}

.combo-title {
    color: var(--primary-color);
    margin: 0 0 15px;
    font-size: 18px;
    display: flex;
    align-items: center;
}

.combo-title i {
    margin-right: 8px;
    font-size: 22px;
}

.compact-contact-list {
    list-style: none;
    padding: 0;
    margin: 0 0 15px;
}

.compact-contact-list li {
    padding: 8px 0;
    display: flex;
    align-items: center;
    font-size: 14px;
    border-bottom: 1px dashed #eee;
}

.compact-contact-list i {
    color: var(--accent-color);
    margin-right: 10px;
    font-size: 18px;
    min-width: 24px;
}

.social-media {
    display: flex;
    gap: 12px;
    margin-top: 10px;
}

.social-media a {
    color: var(--primary-color);
    font-size: 20px;
    transition: all 0.2s;
}

.social-media a:hover {
    color: var(--accent-color);
    transform: translateY(-2px);
}

.qr-card {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.qr-card img {
    width: 120px;
    height: 120px;
    margin-bottom: 10px;
    border: 1px solid #eee;
    padding: 5px;
}

.qr-card p {
    margin: 0;
    font-size: 14px;
    color: #666;
}
/* 最终版信息展示区样式 */
.final-info-showcase {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 50px 0;
    border-top: 1px solid rgba(139, 0, 0, 0.1);
    border-bottom: 1px solid rgba(139, 0, 0, 0.1);
}

.final-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1.2fr 1fr 1.2fr;
}

/* 通用列样式 */
[class$="-column"] {
    padding: 0 25px;
    position: relative;
}

[class$="-column"]:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 1px;
    background: linear-gradient(to bottom, 
        transparent, 
        rgba(139, 0, 0, 0.2), 
        transparent);
}

.column-title {
    color: #8B0000;
    font-size: 20px;
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(139, 0, 0, 0.1);
    display: flex;
    align-items: center;
}

.column-title i {
    margin-right: 10px;
    font-size: 24px;
}

/* 左侧中医理念 */
.philosophy-content {
    margin-bottom: 25px;
}

.philosophy-item {
    display: flex;
    margin-bottom: 20px;
}

.philosophy-icon {
    font-size: 32px;
    margin-right: 15px;
    color: #5D4037;
    flex-shrink: 0;
}

.philosophy-text h4 {
    margin: 0 0 8px;
    color: #5D4037;
    font-size: 18px;
}

.philosophy-text p {
    margin: 0;
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    text-indent: 2em;
   
}

.classic-quote {
    background: rgba(139, 0, 0, 0.05);
    padding: 15px;
    border-left: 3px solid #8B0000;
    font-style: italic;
}

.classic-quote p {
    margin: 0;
    color: #8B0000;
    font-size: 16px;
    font-family: 'Hanyi SangWeiShouShu', cursive;
}

.classic-quote cite {
    display: block;
    text-align: right;
    font-size: 14px;
    color: #888;
    font-style: normal;
    margin-top: 5px;
}

/* 中间快速通道 */
.quick-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.quick-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100px;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(139, 0, 0, 0.1);
    border-radius: 8px;
    color: #5D4037;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 10px;
    text-align: center;
}

.quick-card:hover {
    background: #8B0000;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.quick-card i {
    font-size: 28px;
    margin-bottom: 8px;
}

.quick-card span {
    font-size: 14px;
}

/* 右侧联系方式 */
.contact-info {
    margin-bottom: 25px;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 15px;
    color: #333;
}

.contact-item i {
    color: #8B0000;
    margin-right: 12px;
    font-size: 20px;
    min-width: 24px;
}

.qrcode-section {
    text-align: center;
    margin-bottom: 20px;
    padding: 15px 0;
    border-top: 1px dashed rgba(139, 0, 0, 0.2);
    border-bottom: 1px dashed rgba(139, 0, 0, 0.2);
}

.qrcode-section img {
    width: 120px;
    height: 120px;
    margin-bottom: 10px;
    border: 1px solid #eee;
    padding: 5px;
}

.qrcode-section p {
    margin: 0;
    font-size: 14px;
    color: #666;
}

.social-media {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-media a {
    color: #8B0000;
    font-size: 22px;
    transition: all 0.3s ease;
}

.social-media a:hover {
    color: #D4AF37;
    transform: translateY(-2px);
}

/* 响应式设计 */
@media (max-width: 992px) {
    .final-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    [class$="-column"] {
        padding: 0;
    }
    
    [class$="-column"]::after {
        display: none;
    }
    
    .quick-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

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

@media (max-width: 576px) {
    .final-info-showcase {
        padding: 30px 0;
    }
    
    .philosophy-item {
        flex-direction: column;
        text-align: center;
    }
    
    .philosophy-icon {
        margin-right: 0;
        margin-bottom: 10px;
    }
    
    .quick-grid {
        grid-template-columns: 1fr;
    }
}
/* 服务板块样式 - 图片背景版 */
.services-section {
     background-color: #fde4c6,0,0,0,0.9;
}

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

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: #8B0000;
    font-family: 'Hanyi SangWeiShouShu', sans-serif;
    position: relative;
    z-index: 2;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
    
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 500px;
    display: flex;
    align-items: flex-end;
    transition: transform 0.3s ease;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,0.7)), 
                      var(--primary-color);
    background-size: cover;
    background-position: center;
    filter: brightness(0.8) blur(1px);
    transition: all 0.3s ease;
    z-index: 1;
}

.service-card:hover::before {
    filter: brightness(0.7) blur(0px);
}

.service-card:hover {
    transform: translateY(-10px);
}

.card-content {
    position: relative;
    z-index: 2;
    padding: 30px;
    color: white;
    width: 100%;
    background: linear-gradient(to top, rgba(139, 0, 0, 0.7), transparent);
}

.card-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.card-icon svg {
    width: 30px;
    height: 30px;
    color: white;
}

.card-title {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: white;
    font-weight: 700;
}

.card-desc {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 25px;
}

.card-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}

.card-features span {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.card-link {
    display: inline-flex;
    align-items: center;
    color: white;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.card-link svg {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.card-link:hover {
    background: rgba(255, 255, 255, 0.3);
}

.card-link:hover svg {
    transform: translateX(5px);
}

/* 响应式调整 */
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-card {
        height: 400px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .card-content {
        padding: 20px;
    }
}

/* 子公司卡片样式 */
.subsidiary-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 60px 0;
    
}

.subsidiary-card {
    width: 380px;
    min-width: 300px;
    background: white;
    border-radius: 8px;
    padding: 0;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    overflow: hidden;
    position: relative;
    text-decoration: none;
    color: inherit;
}

.subsidiary-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.subsidiary-card-image {
    height: 250px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.subsidiary-card-image:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), transparent);
}

.subsidiary-card h3 {
    color: white;
    position: absolute;
    bottom: 20px;
    left: 20px;
    margin: 0;
    font-size: 1.6rem;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

.subsidiary-card-content {
    padding: 25px;
}

.subsidiary-card p {
    margin: 15px 0;
    font-size: 1rem;
    position: relative;
    padding-left: 1px;
}


.feature-services {
    background-color: #EDEBE2;
    padding: 40px 0;
    border-radius: 8px;
    position: relative;
    /*background: url('../images/yiguan.jpg') center/cover fixed;*/
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.feature-services h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    margin-top: 10px;
    color: #8B0000;
    font-family: 'Microsoft YaHei', '微软雅黑', sans-serif;
    position: relative;
    z-index: 2;
}

.feature-services h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #8B0000, #D4AF37);
}
@media (max-width: 992px) {
    .subsidiary-card {
        width: 48%;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .subsidiary-card {
        width: 100%;
    }
}

/* 门店卡片样式 */
.clinics-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 50px;
}

.clinic-card {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    display: flex;
    flex-wrap: wrap;
}

.clinic-info {
    flex: 1;
    min-width: 300px;
   background-color: white;
}

.clinic-info h2 {
    color: var(--primary-color);
    margin-top: 0;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--secondary-color);
}

.info-item {
    margin-bottom: 15px;
    display: flex;
}

.info-item i {
    color: var(--primary-color);
    margin-right: 10px;
    min-width: 20px;
}

.clinic-map {
    flex: 1;
    min-width: auto;
    height: 350px;
    background-color: #eee;
}



.qr-btn {
    background: linear-gradient(90deg, #4e9af1, #1e6bb8);
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 10px 28px;
    font-size: 18px;
    cursor: pointer;
    margin: 16px 0;
    box-shadow: 0 2px 8px rgba(30,107,184,0.08);
    transition: background 0.3s;
}
.qr-btn:hover {
    background: linear-gradient(90deg, #1e6bb8, #4e9af1);
}

.qr-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0; top: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.4);
    justify-content: center;
    align-items: center;
}
.qr-modal img {
    background: #fff;
    padding: 16px;
    border-radius: 12px;
    max-width: 300px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.18);
}

/* 建议添加到 src/css/styles.css 末尾 */
.recruit-bg {
    position: relative;
    width: 100%;
    min-height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 32px;
}
.recruit-bg-img {
    position: absolute;
    left: 0; top: 0; width: 100%; height: 100%;
    object-fit: cover;
    z-index: 1;
    filter: blur(16px) brightness(0.9);
}
.recruit-glass {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 18px 0 16px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(8px) saturate(1.2);
    background: rgba(255,255,255,0.4);
    border-radius: 8px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}
.recruit-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: #8B0000;
    font-family: 'Hanyi SangWeiShouShu', sans-serif;
    position: relative;
    z-index: 2;
}
.recruit-subtitle {
    color: #333;
    font-size: 1.25rem;
    text-align: center;
    margin-bottom: 0;
}
.intro-highlight {
    max-width: 1300px;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-top: 5px solid #B0814F;
}
.intro-highlight p {
    font-size: 1.25rem; /* 比正文大一号 */
    color: #222;
    line-height: 2;
    margin: 0;
    font-weight: 500;
    text-indent: 2em;
}
.tcm-feature-content {
    background: rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(10px) saturate(1.2);
    -webkit-backdrop-filter: blur(10px) saturate(1.2);
    box-shadow: 0 4px 24px rgba(0,0,0,0.10);
    padding: 32px 100px 24px 28px;
}
/* 使命愿景卡片式毛玻璃效果 */
.values-grid {
    display: flex;
    gap: 32px;
    margin: 32px 0 0 0;
    flex-wrap: wrap;
    justify-content: center;
}
.value-card {
    flex: 1 1 280px;
    min-width: 260px;
    max-width: 340px;
    background: rgba(255,255,255,0.35);
    backdrop-filter: blur(10px) saturate(1.2);
    -webkit-backdrop-filter: blur(10px) saturate(1.2);
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.10);
    padding: 32px 24px 24px 24px;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: box-shadow 0.3s,
    transform 0.3s cubic-bezier(.25,.8,.25,1),
    background 0.3s;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}
.value-card:hover {
    box-shadow: 0 8px 32px rgba(30,107,184,0.13);
    transform: translateY(-8px) scale(1.04);
    background: rgba(255,255,255,0.55);
}
.value-icon {
    font-size: 2.2rem;
    color: #1e6bb8;
    margin-bottom: 16px;
}
.value-card h3 {
    font-size: 1.3rem;
    color: #000000;
    margin-bottom: 16px;
    font-weight: bold;
    text-align: center;
    letter-spacing: 1px;
    position: relative;
}
.value-divider {
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #e8c97e 0%, #1e6bb8 100%);
    border: none;
    margin: 0 auto 18px auto;
    border-radius: 2px;
    opacity: 0.7;
}
.value-card p {
    font-size: 1rem;
    color: #333;
    text-align: left;
    line-height: 1.8;
    margin: 0;
    
}
@media (max-width: 900px) {
    .values-grid {
        flex-direction: column;
        gap: 18px;
        align-items: center;
    }
    .value-card {
        width: 100%;
        max-width: 100%;
    }
}
/* 旗下门店标题样式 */
.store-title {
    font-weight: bold;
    color: #8B0000;
    font-size: 2rem;
    margin-top: 48px;
    margin-bottom: 18px;
    letter-spacing: 2px;
    text-align: center;
}
.section-title.store-title {
    font-weight: bold !important;
    color: #8B0000 !important;
}
/* 分隔线样式 */
.section-divider {
    border: none;
    border-top: 2px solid #e8c97e;
    width: 60px;
    margin: 0 0 24px 0;
    opacity: 0.8;
}

/* 未来发展规划标题加粗 */
.future-title {
    font-weight: bold;
    font-size: 2rem;
    margin-top: 48px;
    margin-bottom: 18px;
    letter-spacing: 2px;
    text-align: center;
}
.subsidiary-intro {
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-top: 5px solid #B0814F;
}

.store-desc-centered {
    text-align: center;
    margin-bottom: 28px;
    font-size: 1.08rem;
}

/* 医馆历程版块样式 */
.history-section {
    padding: 10px 60px;
    max-width: 1200px;
    background-color: rgba(249, 249, 249, 0.01); /* 背景透明度改为 0.1 */
    border-radius: 12px;
    margin-top: 10px;
    

}

.history-timeline {
    position: relative;
    margin: 40px 0;
    padding-left: 60px;
    border-left: 3px solid #8B0000;
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
    padding-left: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-item:hover {
    transform: translateY(-5px); /* 鼠标悬停时上移 */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2); /* 鼠标悬停时阴影 */
}

.timeline-date {
    position: absolute;
    left: -60px;
    top: 0;
    font-size: 1.2rem;
    font-weight: bold;
    color: #8B0000;
    background-color: #fff;
    padding: 5px 10px;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.timeline-content {
    background-color: rgba(255, 255, 255, 0.7); /* 半透明背景 */
    backdrop-filter: blur(10px); /* 毛玻璃效果 */
    -webkit-backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.timeline-content:hover {
    background-color: rgba(255, 255, 255, 0.9); /* 鼠标悬停时背景更亮 */
    transform: scale(1.02); /* 鼠标悬停时放大 */
}

.timeline-content h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 10px;
}

.timeline-content p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}
/* 名医团队样式 */
.doctors-section {
    
    background-color: rgba(255, 255, 255, 0);
    padding: 10px 0;
}

.doctors-list {
    display: flex;
    padding-top: 30px;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.doctor-card {
    width: 160px;
    text-align: center;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.doctor-card:hover {
    transform: translateY(-10px);
}

.doctor-img-container {
    width: 110px;
    height: 110px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--accent-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

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

.doctor-card:hover .doctor-img {
    transform: scale(1.05);
}

.doctor-name {
    font-size: 1.2rem;
    color: var(--primary-color);
    font-weight: 600;
    margin: 10px 0 5px;
}

.doctor-specialty {
    color: var(--accent-color);
    font-size: 0.9rem;
}

.doctor-more {
    display: flex;
    align-items: center;
    justify-content: center;
    
}

.more-btn {
    display: flex;
    align-items: center;
    gap: 5px;
    background: #c00;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s;
}

.more-btn:hover {
    background: #900;
}
/* 看诊流程 */
.process-timeline {
    display: flex;
    padding-top: 40px;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: 0 auto;
    max-width: 1200px;
}

.process-item {
    width: 18%;
    min-width: 150px;
    text-align: center;
    margin-bottom: 30px;
    position: relative;
}

.process-item:not(:last-child)::after {
    content: "→";
    position: absolute;
    right: -15px;
    top: 40px;
    color: var(--accent-color);
    font-size: 2.1rem;
}

.process-icon {
    width: 80px;
    height: 80px;
    background: var(--accent-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    box-shadow: 0 5px 15px rgba(139, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.process-item:hover .process-icon {
    transform: scale(1.1);
}

.process-item h3 {
    color: var(--primary-color);
    margin: 0 0 10px;
    font-size: 1.2rem;
}
/* 主视觉区域 */
.culture-hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 92, 54, 0.3);
}

.culture-hero-content {
    position: relative;
    z-index: 10;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    text-align: center;
    padding: 0 20px;
}

.culture-hero h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    max-width: 800px;
}
/* 预约挂号专用弹窗 */
.appointment-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.appointment-popup-content {
    background: white;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    position: relative;
}

.appointment-popup-content img {
    max-width: 300px;
    height: auto;
    display: block;
}

.appointment-close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 24px;
    cursor: pointer;
    color: #666;
    transition: color 0.3s;
}

.appointment-close-btn:hover {
    color: #333;
}
/* 招商合作专用二维码弹窗 */
.business-qr-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}
.business-content {
    padding: 30px;
    margin: 20px auto;
    max-width: 1200px;
    background-color: white;
    background: linear-gradient(rgba(42, 70, 92, 0.3), rgba(42,92,69,0.3)), 
                url('../images/career-bg.jpg')center/cover fixed;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    gap: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}
.business-qr-popup-content {
    background: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    position: relative;
    max-width: 300px;
}

.business-qr-popup-content img {
    width: 200px;
    height: 200px;
    margin-bottom: 15px;
}

.business-close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
    color: #666;
    transition: color 0.3s;
}

.business-close-btn:hover {
    color: #333;
}
@media (max-width: 480px) {
    /* 针对超小屏幕的样式调整 */
    body {
        font-size: 14px;
    }
    .header-container {
        height: 60px;
    }
    .logo-img {
        height: 40px;
    }
}