body {
    margin: 0;
    font-family: 'PingFang SC', 'Microsoft YaHei', Arial, sans-serif;
    background: linear-gradient(135deg, #f6fafd 0%, #eaf3fb 100%);
    color: #2d3a4a;
    font-size: 17px;
    letter-spacing: 0.01em;
    padding-top: 60px;
    position: relative;
    min-height: 100vh;
}
body::before {
    content: '';
    position: fixed;
    left: 10vw;
    top: 10vh;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #e0e7ff 0%, #fff0 80%);
    z-index: 0;
    pointer-events: none;
    opacity: 0.5;
}
.header {
    background: #33dcdf;
    color: #f1a82a;
    padding: 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 16px rgba(51,220,223,0.15);
    border-bottom: 2px solid #2bc8cb;
    backdrop-filter: blur(10px);
}
.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    height: 80px;
    padding: 0 20px;
}
.logo-area {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    left: -50px;
}
.logo-img {
    width: 400px;
    height: 80px;
    object-fit: contain;
    border-radius: 0;
    background: transparent;
}
.slogan {
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 1.2;
    font-size: 1.5em;
    color: #f1a82a;
    font-weight: bold;
    white-space: normal;
    word-break: keep-all;
    padding: 0;
    margin: 0;
}
.slogan span {
    display: block;
    line-height: 1.2;
    padding: 0;
    margin: 0;
}
.nav-menu {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 6px;
    flex: 1 1 auto;
    margin-left: 30px;
}
.nav-menu a:last-child {
    margin-left: auto;
}

/* 语言切换按钮样式 - 汉堡菜单风格 */
.language-switcher {
    display: flex;
    align-items: center;
    margin-left: 20px;
    position: relative;
}

.language-btn {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    position: relative;
    transition: all 0.3s ease;
    overflow: hidden;
}

.language-btn span {
    width: 100%;
    height: 3px;
    background: black;
    border-radius: 2px;
    transition: all 0.3s ease;
    margin: 2px 0;
}

/* 语言下拉菜单 */
.language-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    min-width: 120px;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    margin-top: 10px;
}

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

.language-dropdown a {
    display: block;
    padding: 10px 15px;
    color: #333;
    text-decoration: none;
    font-size: 1.08em;
    transition: background 0.2s ease;
}

.language-dropdown a:hover {
    background: #f5f5f5;
}

.language-dropdown a.active {
    background: #33dcdf;
    color: white;
}

/* 当前语言显示 */
.current-language {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: transparent;
    color: white;
    padding: 2px 6px;
    border-radius: 12px;
    font-size: 0.9em;
    white-space: nowrap;
    opacity: 1;
    visibility: visible;
    transition: all 0.3s ease;
    z-index: 1;
    pointer-events: none;
}

.language-btn:hover {
    background: rgba(0, 0, 0, 0.1);
    color: black;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.language-btn.active {
    background: rgba(0, 0, 0, 0.1);
    color: black;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.language-btn:not(.active) {
    opacity: 1;
}

.language-btn:not(.active):hover {
    opacity: 1;
}

/* 移动端语言切换按钮样式 */
.mobile-language-switcher {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
    padding: 15px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.mobile-language-switcher .language-btn {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: black;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 1.08em;
    cursor: pointer;
    transition: background 0.18s, color 0.18s;
    font-weight: normal;
    min-width: 60px;
}

.mobile-language-switcher .language-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.mobile-language-switcher .language-btn.active {
    background: rgba(255, 255, 255, 0.3);
    color: black;
    border-color: rgba(255, 255, 255, 0.3);
}

.mobile-language-switcher .language-btn:not(.active) {
    opacity: 1;
}

.mobile-language-switcher .language-btn:not(.active):hover {
    opacity: 1;
}
.nav-menu a {
    color: black;
    text-decoration: none;
    font-size: 1.08em;
    font-weight: normal;
    padding: 0 8px;
    border-radius: 24px;
    transition: background 0.18s, color 0.18s;
    white-space: nowrap;
    background: none;
}
.nav-menu a.active, .nav-menu a:hover {
    background: rgba(0, 0, 0, 0.1);
    color: black;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

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

.dropdown-toggle {
    cursor: pointer;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 30px);
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    background: #33dcdf;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    border-radius: 12px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    padding: 10px 0;
    display: flex;
    flex-direction: column;
    min-width: 200px;
    text-align: left;
}

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

.dropdown-menu a {
    display: block;
    padding: 12px 20px;
    color: black;
    text-decoration: none;
    font-size: 0.9em;
    font-weight: normal;
    transition: background 0.18s, color 0.18s;
    border-radius: 0;
    background: none;
    transform: none;
    box-shadow: none;
    margin: 0;
    white-space: nowrap;
    text-align: left !important;
    line-height: 1.2;
    width: 100%;
    box-sizing: border-box;
}

.dropdown-menu a:hover {
    background: rgba(255, 255, 255, 0.2);
    color: black;
    transform: none;
    box-shadow: none;
}
.hero-section {
    background: transparent;
    text-align: center;
    padding: 0;
    margin-top: 0;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0;
    box-shadow: none;
    margin: 0 auto;
    max-width: 1200px;
    padding: 0;
}
.hero-img {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
}
.hero-img img {
    width: 100%;
    height: 500px;
    max-width: 100%;
    object-fit: cover;
    display: block;
    border-radius: 0;
    box-shadow: none;
    animation: fadein 1.2s;
    background: transparent;
}

/* 轮播控制按钮样式 */
.carousel-controls {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.carousel-controls .carousel-btn {
    width: 8px !important;
    height: 8px !important;
    border-radius: 50% !important;
    border: none !important;
    background: rgba(255, 255, 255, 0.6) !important;
    cursor: pointer !important;
    opacity: 0.6 !important;
    transition: opacity 0.3s, transform 0.3s !important;
    padding: 0 !important;
    font-size: 0 !important;
    box-shadow: none !important;
}

.carousel-controls .carousel-btn:hover {
    opacity: 0.8 !important;
    transform: scale(1.2) !important;
}

.carousel-controls .carousel-btn.active {
    opacity: 1 !important;
    background: #fff !important;
    transform: scale(1.2) !important;
}

/* 左右切换按钮样式 */
.carousel-nav-btn {
    position: absolute !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    width: 36px !important;
    height: 36px !important;
    border: none !important;
    border-radius: 50% !important;
    background: rgba(255, 255, 255, 0.7) !important;
    color: #1976d2 !important;
    font-size: 18px !important;
    font-weight: bold !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    z-index: 10 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1) !important;
}

.carousel-nav-btn:hover {
    background: rgba(255, 255, 255, 0.9) !important;
    transform: translateY(-50%) scale(1.05) !important;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15) !important;
}

.carousel-prev {
    left: 12px !important;
}

.carousel-next {
    right: 12px !important;
}

/* 了解更多按钮样式 */
.learn-more-btn {
    background: linear-gradient(90deg, #ff6b35 0%, #ff8c42 100%);
    color: white;
    border: none;
    border-radius: 25px;
    padding: 10px 25px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 15px;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.learn-more-btn:hover {
    background: linear-gradient(90deg, #ff8c42 0%, #ff6b35 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.learn-more-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(255, 107, 53, 0.3);
}
@keyframes fadein {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: none; }
}
.stats-section {
    background: linear-gradient(120deg, #ede9fe 0%, #e0ecfa 100%) !important;
    border-radius: 24px;
    box-shadow: 0 4px 24px rgba(25,118,210,0.08);
    margin-bottom: 36px;
    padding: 40px 0;
}
.stats-list {
    display: flex;
    justify-content: space-between;
    max-width: 1100px;
    margin: 0 auto;
    flex-wrap: wrap;
    z-index: 1;
    position: relative;
    background: transparent;
    box-shadow: none;
}
.stat-item {
    flex: 1 1 200px;
    text-align: center;
    margin-bottom: 20px;
    background: #eaf3fb;
    border-radius: 18px;
    box-shadow: 0 2px 8px rgba(25,118,210,0.06);
    transition: box-shadow 0.2s, transform 0.2s;
    padding: 28px 0 20px 0;
    position: relative;
    margin: 0 16px;
}
.stat-item:hover {
    box-shadow: 0 8px 32px rgba(217,79,112,0.13);
    transform: translateY(-6px) scale(1.05);
}
.stat-icon {
    font-size: 2.2em;
    color: #1976d2;
    margin-bottom: 8px;
}
.stat-num {
    font-size: 2em;
    font-weight: bold;
}
.stat-label {
    color: #888;
    margin-top: 4px;
}
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 16px;
}
.about-section {
    background: linear-gradient(120deg, rgba(255,228,239,0.9) 0%, rgba(224,236,250,0.9) 100%), url('hospital-corridor.jpg') !important;
    background-size: cover !important;
    background-position: center !important;
    background-attachment: fixed !important;
    border-radius: 24px;
    box-shadow: 0 4px 24px rgba(217,79,112,0.08);
    margin-bottom: 36px;
    padding: 40px 0;
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('hospital-corridor.jpg');
    background-size: cover;
    background-position: center;
    filter: blur(8px);
    opacity: 0.3;
    z-index: -1;
}
.about-section h2, .advantage-section h2, .medical-care-section h2 {
    color: #ffd600;
    font-size: 1.5em;
    margin-bottom: 10px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    position: relative;
    z-index: 1;
}
.en-title {
    color: #888;
    font-size: 1em;
    margin-left: 8px;
    font-weight: normal;
}
.en-title.yellow {
    color: #ffd600;
    font-weight: bold;
}
.medical-base-section {
    background: #f7f9fa;
    padding: 40px 0 20px 0;
}
.medical-base-section h2 {
    color: #888;
    font-size: 1.2em;
    margin-bottom: 18px;
}
.medical-photos {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}
.medical-photos img {
    width: 440px;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
    background: #eee;
}
.advantage-section p, .medical-care-section p, .about-section p {
    line-height: 1.8;
    color: #333;
    margin-bottom: 10px;
}

.about-section p {
    text-shadow: 0 1px 2px rgba(255,255,255,0.8);
    position: relative;
    z-index: 1;
    font-weight: 500;
}
.services-section {
    background: linear-gradient(120deg, rgba(185,246,250,0.9) 0%, rgba(224,236,250,0.9) 100%), url('medical-service.jpg') !important;
    background-size: cover !important;
    background-position: center !important;
    background-attachment: fixed !important;
    border-radius: 24px;
    box-shadow: 0 4px 24px rgba(25,118,210,0.08);
    margin-bottom: 36px;
    padding: 40px 0;
    position: relative;
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('medical-service.jpg');
    background-size: cover;
    background-position: center;
    filter: blur(8px);
    opacity: 0.3;
    z-index: -1;
}
.services-section h2 {
    color: #222;
    font-size: 1.3em;
    margin-bottom: 18px;
    text-shadow: 0 2px 4px rgba(255,255,255,0.8);
    position: relative;
    z-index: 1;
}
.services-list {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}
.service-item {
    flex: 1 1 220px;
    min-width: 220px;
    height: 260px;
    background-size: cover;
    background-position: center;
    border-radius: 24px;
    position: relative;
    display: flex;
    align-items: flex-end;
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: 0 4px 18px rgba(25,118,210,0.15);
    transition: box-shadow 0.2s, transform 0.2s;
    z-index: 1;
}
.service-item:hover {
    box-shadow: 0 12px 40px rgba(217,79,112,0.15);
    transform: translateY(-6px) scale(1.05);
}
.service-desc {
    background: linear-gradient(120deg, rgba(25,118,210,0.92) 0%, rgba(217,79,112,0.82) 100%);
    color: #fff;
    border-radius: 0 0 24px 24px;
    min-height: 180px;
    font-size: 1.08em;
}
.footer {
    background: linear-gradient(120deg, #eaf3fb 0%, #f6fafd 100%);
    color: #1976d2;
    border-top: 2px solid #eaf3fb;
    text-align: center;
    padding: 40px 0 20px 0;
    font-size: 1.08em;
    margin-top: 40px;
    border-radius: 24px 24px 0 0;
    box-shadow: 0 -2px 12px rgba(25,118,210,0.04);
}
.attachment-section {
    background: #fff;
    margin-top: 40px;
    padding: 40px 0 20px 0;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.attachment-flex {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
}
.attachment-left {
    flex: 0 0 460px;
    max-width: 460px;
    text-align: left;
}
.attachment-img {
    width: 440px;
    height: 300px;
    object-fit: cover;
    border-radius: 18px;
    box-shadow: 0 2px 12px rgba(25,118,210,0.10);
    background: #eaf3fb;
    display: block;
    margin-bottom: 10px;
}
.attachment-caption {
    font-size: 1em;
    color: #444;
    margin-top: 4px;
}
.attachment-caption .dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #e0c36a;
    border-radius: 50%;
    margin-right: 6px;
    vertical-align: middle;
}
.attachment-caption .en-caption {
    color: #888;
    font-size: 0.95em;
}
.attachment-right {
    flex: 1 1 0;
    min-width: 260px;
}
.attachment-advantage p {
    line-height: 1.8;
    color: #333;
    margin-bottom: 10px;
}
.aboutus-hero-section {
    transition: box-shadow 0.3s, background 0.3s, transform 0.3s;
    box-shadow: 0 4px 24px rgba(120,120,180,0.08);
    border-radius: 18px;
    background: rgba(255,255,255,0.96);
    position: relative;
    z-index: 1;
    background: linear-gradient(120deg, #eaf3fb 0%, #f6fafd 100%) !important;
    padding: 20px 40px 5px 40px;
    min-height: 250px;
    margin-bottom: 0px;
}
/* 移除.aboutus-hero-section的:hover等交互样式，保留基础样式 */
.aboutus-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 40px;
    flex-wrap: wrap;
}
.aboutus-left {
    flex: 1 1 420px;
    min-width: 320px;
}
.aboutus-subtitle {
    color: #bbb;
    font-size: 1.1em;
    margin-bottom: 10px;
}
.aboutus-title {
    font-size: 2.2em;
    font-weight: bold;
    margin: 0 0 8px 0;
    letter-spacing: 1px;
}
.aboutus-title-yellow {
    color: #ffd600;
    margin-right: 10px;
}
.aboutus-desc {
    font-size: 1.1em;
    color: #333;
    line-height: 1.4;
}
.aboutus-right {
    flex: 1 1 420px;
    min-width: 320px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
.aboutus-baby-img-bg {
    position: relative;
    width: 380px;
    height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.aboutus-baby-img {
    width: 340px;
    height: 340px;
    border-radius: 0;
    object-fit: cover;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    position: relative;
    z-index: 2;
}
.aboutus-baby-bgtext {
    position: absolute;
    right: -30px;
    bottom: 30px;
    font-size: 7em;
    color: #ffe9a7;
    font-weight: bold;
    letter-spacing: 10px;
    opacity: 0.7;
    z-index: 1;
    pointer-events: none;
    user-select: none;
}
.aboutus-chairman-section {
    background: #fff;
    padding: 20px 0 10px 0;
    margin-bottom: 10px;
}
.aboutus-chairman-section .aboutus-flex {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 0;
    flex-wrap: wrap;
}
.aboutus-chairman-section .aboutus-left {
    flex: 0 0 30%;
    max-width: 30%;
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    padding: 0 32px;
}
.aboutus-chairman-section .aboutus-right {
    flex: 0 0 70%;
    max-width: 70%;
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    padding: 0 32px;
}
.aboutus-chairman-img {
    width: 100%;
    height: auto;
    max-width: 600px;
    max-height: 1600px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    display: block;
    margin: 0 auto;
}
.aboutus-chairman-desc {
    font-size: 1.08em;
    color: #222;
    line-height: 2;
    max-width: 900px;
}
.aboutus-chairman-section .aboutus-subtitle,
.aboutus-chairman-section .aboutus-title {
    text-align: center;
    width: 100%;
    display: block;
    margin-left: auto;
    margin-right: auto;
}
.aboutus-baby-img,
.aboutus-chairman-img {
    width: 350px;
    height: 450px;
    max-width: 350px;
    max-height: 450px;
    border-radius: 0;
    object-fit: cover;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    position: relative;
    z-index: 2;
    display: block;
    margin: 0 auto;
}
.news-card {
    cursor: pointer;
    transition: box-shadow 0.2s, transform 0.2s;
}
.news-card:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.18);
    transform: translateY(-2px) scale(1.03);
    cursor: pointer;
}

/* 桌面端news.html卡片按钮样式 */
.news-card {
    position: relative;
    padding-bottom: 60px;
}

.news-card .learn-more-btn {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: linear-gradient(90deg, #ff6b35 0%, #ff8c42 100%);
    color: white;
    border: none;
    border-radius: 20px;
    padding: 8px 20px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.3);
    z-index: 5;
}

.news-card .learn-more-btn:hover {
    background: linear-gradient(90deg, #ff8c42 0%, #ff6b35 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.4);
}
.services-list .service-item {
    transition: box-shadow 0.25s, transform 0.25s;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(120,120,180,0.07);
}
.services-list .service-item:hover {
    box-shadow: 0 8px 32px rgba(120,120,180,0.16);
    transform: scale(1.04);
    z-index: 2;
}
.services-list .service-item:nth-child(1) {
    background: url('孕妇2.jpg') !important;
    background-size: cover !important;
    background-position: center !important;
    position: relative !important;
    overflow: hidden !important;
    background-color: transparent !important;
}

.services-list .service-item:nth-child(1)::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('孕妇2.jpg');
    background-size: cover;
    background-position: center;
    filter: none;
    opacity: 1;
    z-index: -1;
}
.services-list .service-item:nth-child(2) {
    background: url('脚丫2.jpg') !important;
    background-size: cover !important;
    background-position: center !important;
    position: relative !important;
    overflow: hidden !important;
    background-color: transparent !important;
}

.services-list .service-item:nth-child(2)::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('脚丫2.jpg');
    background-size: cover;
    background-position: center;
    filter: none;
    opacity: 1;
    z-index: -1;
}
.services-list .service-item:nth-child(3) {
    background: url('孕妇1.jpg') !important;
    background-size: cover !important;
    background-position: center !important;
    position: relative !important;
    overflow: hidden !important;
    background-color: transparent !important;
}

.services-list .service-item:nth-child(3)::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('孕妇1.jpg');
    background-size: cover;
    background-position: center;
    filter: none;
    opacity: 1;
    z-index: -1;
}
.services-list .service-item:nth-child(4) {
    background: url('脚丫3.jpg') !important;
    background-size: cover !important;
    background-position: center !important;
    position: relative !important;
    overflow: hidden !important;
    background-color: transparent !important;
}

.services-list .service-item:nth-child(4)::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('脚丫3.jpg');
    background-size: cover;
    background-position: center;
    filter: none;
    opacity: 1;
    z-index: -1;
}
.service-item {
    position: relative;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
.service-desc {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    background: rgba(0,0,0,0.7);
    color: white;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    min-height: 180px;
    box-sizing: border-box;
    border-radius: 0 0 18px 18px;
    z-index: 1;
}
button:not(.carousel-nav-btn):not(.learn-more-btn):not(.hamburger-menu):not(.mobile-dropdown-toggle), .btn, input[type=submit] {
    background: linear-gradient(90deg, #1976d2 0%, #3a6ea5 100%);
    color: #fff;
    border: none;
    border-radius: 24px;
    padding: 12px 36px;
    font-size: 1.08em;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(25,118,210,0.10);
    transition: background 0.18s, box-shadow 0.18s;
    cursor: pointer;
}
button:not(.carousel-nav-btn):not(.learn-more-btn):not(.hamburger-menu):not(.mobile-dropdown-toggle):hover, .btn:hover, input[type=submit]:hover {
    background: linear-gradient(90deg, #d94f70 0%, #ffb6c1 100%);
    color: #fff;
    box-shadow: 0 4px 18px rgba(217,79,112,0.13);
}
.icon, .stat-icon {
    color: #1976d2;
    font-size: 2.2em;
    margin-bottom: 8px;
}
.attachment-section, .about-section, .services-section, .stats-section, .aboutus-hero-section, .aboutus-chairman-section, .advantage-section, .medical-care-section {
    border-radius: 24px;
    box-shadow: 0 4px 24px rgba(25,118,210,0.08);
    background: #fff;
}
.aboutus-chairman-section:nth-of-type(2) {
    background: linear-gradient(120deg, #fff0f6 0%, #f6fafd 100%) !important;
}
.aboutus-chairman-section:nth-of-type(3) {
    background: linear-gradient(120deg, #e0f7fa 0%, #f6fafd 100%) !important;
}

/* surrogacy.html 第二section背景 */
.surrogacy-page .aboutus-chairman-section:nth-of-type(2) {
    background: linear-gradient(120deg, rgba(255,240,246,0.9) 0%, rgba(246,250,253,0.9) 100%), url('hospital3.jpg') !important;
    background-size: cover !important;
    background-position: center !important;
    background-attachment: fixed !important;
    position: relative;
    overflow: hidden;
}

.surrogacy-page .aboutus-chairman-section:nth-of-type(2)::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('hospital3.jpg');
    background-size: cover;
    background-position: center;
    filter: blur(8px);
    opacity: 0.3;
    z-index: -1;
}

/* surrogacy.html 第二section文字阴影 */
.surrogacy-page .aboutus-chairman-section:nth-of-type(2) .aboutus-subtitle,
.surrogacy-page .aboutus-chairman-section:nth-of-type(2) .aboutus-title,
.surrogacy-page .aboutus-chairman-section:nth-of-type(2) .aboutus-desc {
    text-shadow: 0 2px 4px rgba(255,255,255,0.8);
    position: relative;
    z-index: 1;
}

/* advantage.html 第二section背景 */
.advantage-page .aboutus-chairman-section:nth-of-type(2) {
    background: linear-gradient(120deg, rgba(255,240,246,0.9) 0%, rgba(246,250,253,0.9) 100%), url('hospital3.jpg') !important;
    background-size: cover !important;
    background-position: center !important;
    background-attachment: fixed !important;
    position: relative;
    overflow: hidden;
}

.advantage-page .aboutus-chairman-section:nth-of-type(2)::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('hospital3.jpg');
    background-size: cover;
    background-position: center;
    filter: blur(8px);
    opacity: 0.3;
    z-index: -1;
}

/* advantage.html 第二section文字阴影 */
.advantage-page .aboutus-chairman-section:nth-of-type(2) .aboutus-subtitle,
.advantage-page .aboutus-chairman-section:nth-of-type(2) .aboutus-title,
.advantage-page .aboutus-chairman-section:nth-of-type(2) .aboutus-desc {
    text-shadow: 0 2px 4px rgba(255,255,255,0.8);
    position: relative;
    z-index: 1;
}

/* history.html 第一section背景 */
.history-page .aboutus-hero-section {
    background: linear-gradient(120deg, rgba(255,240,246,0.9) 0%, rgba(246,250,253,0.9) 100%), url('hospital4.jpg') !important;
    background-size: cover !important;
    background-position: center !important;
    background-attachment: fixed !important;
    position: relative;
    overflow: hidden;
}

.history-page .aboutus-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('hospital4.jpg');
    background-size: cover;
    background-position: center;
    filter: none;
    opacity: 1;
    z-index: -1;
}

/* history.html 第一section文字阴影 */
.history-page .aboutus-hero-section .aboutus-subtitle,
.history-page .aboutus-hero-section .aboutus-title,
.history-page .aboutus-hero-section .aboutus-desc {
    text-shadow: 0 2px 4px rgba(255,255,255,0.8);
    position: relative;
    z-index: 1;
}

/* surrogacy.html 第三section背景 */
.surrogacy-page .aboutus-chairman-section:nth-of-type(3) {
    background: linear-gradient(120deg, rgba(255,240,246,0.9) 0%, rgba(246,250,253,0.9) 100%), url('脚丫1.jpg') !important;
    background-size: cover !important;
    background-position: center !important;
    background-attachment: fixed !important;
    position: relative;
    overflow: hidden;
}

.surrogacy-page .aboutus-chairman-section:nth-of-type(3)::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('脚丫1.jpg');
    background-size: cover;
    background-position: center;
    filter: blur(2px);
    opacity: 0.8;
    z-index: -1;
}

/* surrogacy.html 第三section文字阴影 */
.surrogacy-page .aboutus-chairman-section:nth-of-type(3) .aboutus-subtitle,
.surrogacy-page .aboutus-chairman-section:nth-of-type(3) .aboutus-title,
.surrogacy-page .aboutus-chairman-section:nth-of-type(3) .aboutus-desc {
    text-shadow: 0 2px 4px rgba(255,255,255,0.8);
    position: relative;
    z-index: 1;
}
@media (max-width: 900px) {
    body {
        font-size: 15px !important;
    }
    .stats-list {
        flex-direction: row !important;
        overflow-x: unset !important;
        gap: 2vw !important;
        justify-content: space-between !important;
        padding-bottom: 0 !important;
        width: 100% !important;
    }
    .stat-item {
        min-width: 0 !important;
        max-width: none !important;
        flex: 1 1 0 !important;
        margin: 0 !important;
        padding: 10px 0 6px 0 !important;
        border-radius: 8px !important;
        font-size: 1em !important;
        box-sizing: border-box !important;
    }
    .stat-icon {
        font-size: 1.5em !important;
        margin-bottom: 2px !important;
    }
    .stat-num {
        font-size: 1.1em !important;
    }
    .stat-label {
        font-size: 0.95em !important;
    }
    .stats-list, .services-list, .medical-photos {
        flex-direction: column !important;
        gap: 18px;
    }
    .nav-container {
        flex-direction: row;
        height: 80px;
        padding: 0 8px;
        justify-content: space-between;
        align-items: center;
    }
    .nav-menu {
        display: none !important;
    }
    .nav-menu a {
        font-size: 0.92em !important;
        padding: 0 2vw !important;
        white-space: nowrap !important;
    }
    
    /* 手机端下拉菜单样式 */
    .dropdown {
        position: relative;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: transparent;
        padding: 0;
        margin: 0;
        min-width: auto;
        display: block;
        gap: 0;
    }
    
    .dropdown-menu a {
        font-size: 0.9em !important;
        padding: 5px 15px !important;
        color: #f1a82a !important;
        background: none !important;
        border-radius: 0 !important;
        transform: none !important;
        box-shadow: none !important;
        display: block !important;
        white-space: normal !important;
    }
    
    .dropdown-menu a:hover {
        background: rgba(241, 168, 42, 0.2) !important;
        color: #f1a82a !important;
        transform: scale(1.05) !important;
    }
    
    .hamburger-menu {
        display: flex !important;
        position: relative !important;
        background: rgba(255, 255, 255, 0.1) !important;
        border-radius: 4px !important;
        padding: 5px !important;
        margin-left: auto !important;
        align-self: center !important;
        order: 3 !important;
        margin-right: 0 !important;
    }
    .logo-img {
        width: 180px;
        height: 60px;
        object-fit: contain;
    }
    .slogan {
        font-size: 1.1em;
    }
    .hero-section {
        height: 300px;
        margin-top: 60px;
    }
    .hero-img img {
        height: 300px;
    }
    .carousel-nav-btn {
        width: 36px !important;
        height: 36px !important;
        font-size: 18px !important;
        border-radius: 50% !important;
        background: rgba(255, 255, 255, 0.7) !important;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1) !important;
    }
    .carousel-prev {
        left: 12px !important;
    }
    .carousel-next {
        right: 12px !important;
    }
    .carousel-nav-btn:hover {
        background: rgba(255, 255, 255, 0.9) !important;
        transform: translateY(-50%) scale(1.05) !important;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15) !important;
    }
    .stat-item {
        margin-bottom: 12px;
        padding: 18px 0 10px 0;
        border-radius: 8px;
        font-size: 0.98em;
    }
    .service-item {
        min-height: 120px !important;
        height: 120px !important;
        align-items: stretch !important;
    }
    .service-desc {
        min-height: unset !important;
        height: 100% !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
        font-size: 0.95em !important;
        border-radius: 0 0 10px 10px !important;
        padding: 8px !important;
        box-sizing: border-box !important;
    }
    .learn-more-btn {
        padding: 8px 20px !important;
        font-size: 12px !important;
        margin-top: 10px !important;
    }
    .attachment-section, .about-section, .services-section, .stats-section, .aboutus-hero-section, .aboutus-chairman-section, .advantage-section, .medical-care-section {
        border-radius: 10px !important;
        box-shadow: 0 1px 6px rgba(80,120,200,0.06) !important;
        margin-bottom: 10px !important;
        padding: 10px 0 !important;
    }
    .container {
        padding: 0 2vw !important;
    }
    .footer {
        padding: 18px 0 10px 0;
        font-size: 0.98em;
        border-radius: 10px 10px 0 0 !important;
    }
    h1, h2, h3 {
        font-size: 1.08em !important;
    }
    
    .about-section h2 {
        font-size: 1.8em !important;
    }
    p, li {
        font-size: 0.98em !important;
    }
    .aboutus-baby-img {
        height: 180px !important;
        max-width: 100%;
    }
    .aboutus-baby-bgtext {
        font-size: 2.2em !important;
    }
    .news-card {
        padding: 10px !important;
        border-radius: 8px !important;
    }
    #newsModal > div {
        width: 96vw !important;
        max-width: 96vw !important;
        padding: 12px 6px 8px 6px !important;
    }
    #imgZoomModalImg {
        max-width: 98vw !important;
        max-height: 80vh !important;
    }
    .stats-section {
        padding: 4px 0 !important;
        min-height: 40px !important;
    }
    .header {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        z-index: 9999 !important;
        width: 100vw !important;
    }
    body {
        padding-top: 60px !important;
    }
}
@media (max-width: 600px) {
    body {
        font-size: 13.5px !important;
    }
    .logo-img {
        width: auto;
        height: 60px;
        object-fit: contain;
        margin-left: 0 !important;
        position: relative !important;
        left: 0 !important;
    }
    
    .logo-area {
        order: 1 !important;
        flex: 1 !important;
        justify-content: flex-start !important;
    }
    

    
    /* 手机端显示汉堡菜单，隐藏常规菜单 */
    .hamburger-menu {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        position: relative !important;
        background: rgba(255, 255, 255, 0.1) !important;
        border-radius: 4px !important;
        padding: 5px !important;
        margin-left: 0 !important;
        align-self: center !important;
        order: 3 !important;
        margin-right: 0 !important;
        z-index: 1002 !important;
        width: 30px !important;
        height: 30px !important;
    }
    
    .hamburger-menu span {
        background: #333 !important;
    }
    
    .nav-menu {
        display: none !important;
    }
    
    /* 移动端语言切换按钮样式调整 */
    .language-switcher {
        order: 2 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        position: relative !important;
    }
    
    /* 隐藏移动端导航覆盖层中的语言切换按钮 */
    .mobile-nav-overlay .language-switcher {
        display: none !important;
    }
    
    /* 移动端当前语言显示样式 */
    .language-switcher .current-language {
        display: none !important;
    }
    
    .language-btn {
        width: 68px !important;
        height: 18px !important;
        background: #33dcdf !important;
        border-radius: 4px !important;
        padding: 0 !important;
        border: 1px solid rgba(255, 255, 255, 0.3) !important;
        box-shadow: 0 2px 6px rgba(51, 220, 223, 0.25) !important;
        transition: all 0.3s ease !important;
        position: relative !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        margin-left: -8px !important;
        overflow: hidden !important;
    }
    
    .language-btn:hover {
        transform: translateY(-1px) !important;
        box-shadow: 0 4px 10px rgba(51, 220, 223, 0.35) !important;
        background: #2bc8cb !important;
    }
    
    /* 隐藏所有span元素 */
    .language-btn span {
        display: none !important;
    }
    
    /* 在button内部显示当前语言 */
    .language-btn::after {
        content: attr(data-current-lang) !important;
        color: white !important;
        font-size: 15px !important;
        font-weight: 600 !important;
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3) !important;
        position: absolute !important;
        top: 50% !important;
        left: 50% !important;
        transform: translate(-50%, -50%) !important;
        pointer-events: none !important;
        white-space: nowrap !important;
    }
    
    .slogan {
        font-size: 1.2em !important;
    }
    .hero-section {
        height: 260px;
        margin-top: 10px;
        margin-bottom: 10px !important;
    }
    .hero-img img {
        height: 260px !important;
        object-fit: cover !important;
        width: 100% !important;
        max-height: 260px !important;
    }
    
    /* 手机端特定图片向下移动 */
    .hero-img img[src*="大图3.jpg"],
    .hero-img img[src*="大图4.jpg"] {
        transform: translateY(10px);
    }
    .carousel-nav-btn {
        width: 30px !important;
        height: 30px !important;
        font-size: 16px !important;
        background: rgba(255, 255, 255, 0.6) !important;
        box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1) !important;
    }
    .carousel-nav-btn:hover {
        background: rgba(255, 255, 255, 0.8) !important;
        transform: translateY(-50%) scale(1.02) !important;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15) !important;
    }
    .carousel-prev {
        left: 5px !important;
    }
    .carousel-next {
        right: 5px !important;
    }
    
    /* 手机端轮播按钮样式 */
    .carousel-controls .carousel-btn {
        width: 6px !important;
        height: 6px !important;
        border-radius: 50% !important;
        border: none !important;
        background: rgba(255,255,255,0.6) !important;
        cursor: pointer !important;
        opacity: 0.6 !important;
        transition: opacity 0.3s, transform 0.3s !important;
        padding: 0 !important;
        font-size: 0 !important;
        box-shadow: none !important;
    }
    
    .carousel-controls .carousel-btn.active {
        opacity: 1 !important;
        background: #fff !important;
        transform: scale(1.2) !important;
    }
    .aboutus-baby-img {
        height: 550px !important;
        width: 100% !important;
        object-fit: contain !important;
        object-position: center !important;
        border-radius: 8px !important;
    }
    
    /* 手机端品牌之路section布局调整 */
    .aboutus-hero-section {
        margin-top: 20px !important;
        padding: 40px 15px 30px 15px !important;
        margin-bottom: 0px !important;
        min-height: auto !important;
    }
    
    /* 手机端price.html第一个section高度调整 */
    .aboutus-hero-section {
        min-height: 150px !important;
        padding: 8px 10px 0px 10px !important;
    }
    
    .aboutus-flex {
        flex-direction: column !important;
        gap: 30px !important;
    }
    
    .aboutus-left {
        flex: 1 1 100% !important;
        min-width: 0 !important;
        width: 100% !important;
        margin-top: 20px !important;
    }
    
    .aboutus-right {
        flex: 1 1 100% !important;
        min-width: 0 !important;
        width: 100% !important;
    }
    
    .aboutus-title {
        font-size: 1.3em !important;
        margin-bottom: 5px !important;
    }
    
    .aboutus-desc {
        font-size: 0.85em !important;
        line-height: 1.3 !important;
    }
    
    .aboutus-baby-img-bg {
        width: 100% !important;
        height: auto !important;
        justify-content: center !important;
        display: flex !important;
        align-items: center !important;
        margin-top: 20px !important;
        background: #f5f5f5 !important;
        border-radius: 8px !important;
    }
    
    .aboutus-baby-bgtext {
        display: none !important;
    }
    
    /* 手机端news.html卡片布局调整 */
    .news-card {
        margin-bottom: 15px !important;
    }
    
    /* 调整news.html中的grid布局为纵向排列 */
    .aboutus-desc > div[style*="grid-template-columns"] {
        display: flex !important;
        flex-direction: column !important;
        gap: 15px !important;
    }
    
    .aboutus-desc > div[style*="grid-template-columns"] > div {
        width: 100% !important;
        margin-bottom: 0 !important;
    }
    
    /* 为news.html卡片添加"了解更多"按钮 */
    .news-card {
        position: relative !important;
        padding-bottom: 50px !important;
    }
    
    .news-card::after {
        display: none !important;
    }
    
    .news-card:hover::after {
        display: none !important;
    }
    .stat-item {
        min-width: 0 !important;
        max-width: none !important;
        flex: 1 1 0 !important;
        margin: 0 !important;
        padding: 6px 0 4px 0 !important;
        border-radius: 8px !important;
        font-size: 0.98em !important;
        box-sizing: border-box !important;
    }
    .stat-icon {
        font-size: 1.1em !important;
        margin-bottom: 1px !important;
    }
    .stat-num {
        font-size: 0.98em !important;
    }
    .stat-label {
        font-size: 0.85em !important;
    }
    .stats-section {
        padding: 2px 0 !important;
        min-height: 24px !important;
    }
    .stats-list {
        flex-direction: row !important;
        overflow-x: unset !important;
        gap: 2vw !important;
        justify-content: space-between !important;
        padding-bottom: 0 !important;
        width: 100% !important;
    }
    .stats-list::-webkit-scrollbar {
        display: none;
    }
    .services-list {
        gap: 8px !important;
    }
    
    .service-item {
        min-height: 70px !important;
        height: 70px !important;
        align-items: stretch !important;
        border-radius: 15px !important;
        overflow: hidden !important;
    }
    .service-desc {
        min-height: unset !important;
        height: 100% !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
        font-size: 0.92em !important;
        border-radius: 15px !important;
        padding: 6px !important;
        box-sizing: border-box !important;
    }
    .learn-more-btn {
        display: block !important;
        position: absolute !important;
        bottom: 12px !important;
        right: 12px !important;
        background: linear-gradient(90deg, #ff6b35 0%, #ff8c42 100%) !important;
        color: white !important;
        border: none !important;
        border-radius: 12px !important;
        padding: 6px 12px !important;
        font-size: 12px !important;
        font-weight: 600 !important;
        cursor: pointer !important;
        transition: all 0.3s ease !important;
        box-shadow: 0 2px 8px rgba(255, 107, 53, 0.3) !important;
        z-index: 5 !important;
    }
    
    /* 第三个section（关于我们）的按钮样式 */
    .about-section .learn-more-btn {
        display: inline-block !important;
        position: relative !important;
        margin-top: 10px !important;
        float: right !important;
        background: linear-gradient(90deg, #ff6b35 0%, #ff8c42 100%) !important;
        color: white !important;
        border: none !important;
        border-radius: 8px !important;
        padding: 4px 8px !important;
        font-size: 10px !important;
        font-weight: 600 !important;
        cursor: pointer !important;
        transition: all 0.3s ease !important;
        box-shadow: 0 1px 4px rgba(255, 107, 53, 0.3) !important;
        z-index: 5 !important;
    }
    
    .about-section .learn-more-btn:hover {
        background: linear-gradient(90deg, #ff8c42 0%, #ff6b35 100%) !important;
        transform: translateY(-1px) !important;
        box-shadow: 0 2px 6px rgba(255, 107, 53, 0.4) !important;
    }
    
    /* 第三个section容器需要相对定位 */
    .about-section .container {
        position: relative !important;
    }
    
    .learn-more-btn:hover {
        background: linear-gradient(90deg, #ff8c42 0%, #ff6b35 100%) !important;
        transform: translateY(-1px) !important;
        box-shadow: 0 4px 12px rgba(255, 107, 53, 0.4) !important;
    }
    
    /* 移动端隐藏服务描述文本，只保留标题和按钮 */
    .service-desc .service-detail {
        display: none !important;
    }
    
    /* 移动端布局调整：标题和按钮水平排列 */
    .service-desc {
        flex-direction: row !important;
        justify-content: space-between !important;
        align-items: center !important;
        padding: 15px 20px !important;
    }
    
    .service-desc b {
        font-size: 1.4em !important;
        margin-bottom: 0 !important;
        flex: 1 !important;
        text-align: left !important;
    }
    
    /* 手机端显示按钮 */
    .service-desc .learn-more-btn {
        display: block !important;
        position: absolute !important;
        bottom: 8px !important;
        right: 8px !important;
        background: linear-gradient(90deg, #ff6b35 0%, #ff8c42 100%) !important;
        color: white !important;
        border: none !important;
        border-radius: 8px !important;
        padding: 4px 8px !important;
        font-size: 10px !important;
        font-weight: 600 !important;
        cursor: pointer !important;
        transition: all 0.3s ease !important;
        box-shadow: 0 1px 4px rgba(255, 107, 53, 0.3) !important;
        z-index: 5 !important;
    }
    
    .service-desc .learn-more-btn:hover {
        background: linear-gradient(90deg, #ff8c42 0%, #ff6b35 100%) !important;
        transform: translateY(-1px) !important;
        box-shadow: 0 2px 6px rgba(255, 107, 53, 0.4) !important;
    }
    .nav-container {
        height: 70px !important;
        min-height: 70px !important;
        align-items: center !important;
        justify-content: space-between !important;
        gap: 10px !important;
        padding: 0 15px !important;
    }
    
    .nav-menu {
        display: none !important;
    }
    .nav-menu a {
        font-size: 0.85em !important;
        padding: 0 1vw !important;
        white-space: nowrap !important;
        color: black !important;
    }
    .header {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        z-index: 9999 !important;
        width: 100vw !important;
        height: 70px !important;
        min-height: 70px !important;
    }
    body {
        padding-top: 45px !important;
    }
}
@media (max-width: 700px) {
    .logo-area {
        left: -40px;
    }
}

@media (max-width: 600px) {
    .logo-area {
        left: 0 !important;
    }
} 

/* Signing page second section background */
.signing-page .aboutus-chairman-section:nth-of-type(2) {
    background: linear-gradient(120deg, rgba(255,240,246,0.9) 0%, rgba(246,250,253,0.9) 100%), url('签约1.jpg') !important;
    background-size: cover !important;
    background-position: center !important;
    background-attachment: fixed !important;
    position: relative;
    overflow: hidden;
}

.signing-page .aboutus-chairman-section:nth-of-type(2)::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('签约1.jpg');
    background-size: cover;
    background-position: center;
    filter: blur(8px);
    opacity: 0.3;
    z-index: -1;
}

.signing-page .aboutus-chairman-section:nth-of-type(2) .aboutus-subtitle,
.signing-page .aboutus-chairman-section:nth-of-type(2) .aboutus-title,
.signing-page .aboutus-chairman-section:nth-of-type(2) .aboutus-desc {
    text-shadow: 0 2px 4px rgba(255,255,255,0.8);
    position: relative;
    z-index: 1;
} 

/* Tube page first section background */
.tube-page .aboutus-chairman-section:nth-of-type(1) {
    background: linear-gradient(120deg, rgba(255,240,246,0.9) 0%, rgba(246,250,253,0.9) 100%), url('试管2.jpg') !important;
    background-size: cover !important;
    background-position: center !important;
    background-attachment: fixed !important;
    position: relative;
    overflow: hidden;
}

.tube-page .aboutus-chairman-section:nth-of-type(1)::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('试管2.jpg');
    background-size: cover;
    background-position: center;
    filter: blur(8px);
    opacity: 0.3;
    z-index: -1;
}

.tube-page .aboutus-chairman-section:nth-of-type(1) .aboutus-subtitle,
.tube-page .aboutus-chairman-section:nth-of-type(1) .aboutus-title,
.tube-page .aboutus-chairman-section:nth-of-type(1) .aboutus-desc {
    text-shadow: 0 2px 4px rgba(255,255,255,0.8);
    position: relative;
    z-index: 1;
} 

/* Tube page second section background */
.tube-page .aboutus-chairman-section:nth-of-type(2) {
    background: linear-gradient(120deg, rgba(255,240,246,0.9) 0%, rgba(246,250,253,0.9) 100%), url('试管1.jpg') !important;
    background-size: cover !important;
    background-position: center !important;
    background-attachment: fixed !important;
    position: relative;
    overflow: hidden;
}

.tube-page .aboutus-chairman-section:nth-of-type(2)::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('试管1.jpg');
    background-size: cover;
    background-position: center;
    filter: blur(8px);
    opacity: 0.3;
    z-index: -1;
}

.tube-page .aboutus-chairman-section:nth-of-type(2) .aboutus-subtitle,
.tube-page .aboutus-chairman-section:nth-of-type(2) .aboutus-title,
.tube-page .aboutus-chairman-section:nth-of-type(2) .aboutus-desc {
    text-shadow: 0 2px 4px rgba(255,255,255,0.8);
    position: relative;
    z-index: 1;
} 

/* Cases page first section background */
.cases-page .aboutus-hero-section {
    background: linear-gradient(120deg, rgba(255,240,246,0.9) 0%, rgba(246,250,253,0.9) 100%), url('孕妇1.jpg') !important;
    background-size: cover !important;
    background-position: center !important;
    background-attachment: fixed !important;
    position: relative;
    overflow: hidden;
}

.cases-page .aboutus-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('孕妇1.jpg');
    background-size: cover;
    background-position: center;
    filter: blur(8px);
    opacity: 0.3;
    z-index: -1;
}

.cases-page .aboutus-hero-section .aboutus-subtitle,
.cases-page .aboutus-hero-section .aboutus-title,
.cases-page .aboutus-hero-section .aboutus-desc {
    text-shadow: 0 2px 4px rgba(255,255,255,0.8);
    position: relative;
    z-index: 1;
} 

/* Cases page second section background */
.cases-page .aboutus-chairman-section:nth-of-type(2) {
    background: linear-gradient(120deg, rgba(255,240,246,0.9) 0%, rgba(246,250,253,0.9) 100%), url('孕妇2.jpg') !important;
    background-size: cover !important;
    background-position: center !important;
    background-attachment: fixed !important;
    position: relative;
    overflow: hidden;
}

.cases-page .aboutus-chairman-section:nth-of-type(2)::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('孕妇2.jpg');
    background-size: cover;
    background-position: center;
    filter: blur(8px);
    opacity: 0.3;
    z-index: -1;
}

.cases-page .aboutus-chairman-section:nth-of-type(2) .aboutus-subtitle,
.cases-page .aboutus-chairman-section:nth-of-type(2) .aboutus-title,
.cases-page .aboutus-chairman-section:nth-of-type(2) .aboutus-desc {
    text-shadow: 0 2px 4px rgba(255,255,255,0.8);
    position: relative;
    z-index: 1;
}

/* 汉堡菜单按钮 */
.hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    position: relative;
}

.hamburger-menu span {
    width: 100%;
    height: 3px;
    background: black;
    border-radius: 2px;
    transition: all 0.3s ease;
    margin: 2px 0;
}

.hamburger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger-menu.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* 移动端导航覆盖层 */
.mobile-nav-overlay {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    width: 100vw;
    height: auto;
    background: linear-gradient(135deg, rgba(51, 220, 223, 0.95) 0%, rgba(43, 200, 203, 0.95) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 0;
    box-shadow: 0 4px 16px rgba(51, 220, 223, 0.3);
    border: none;
}

.mobile-nav-overlay.active {
    display: flex;
    opacity: 1;
}

.mobile-nav-menu {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 20px;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.mobile-nav-menu a {
    color: black !important;
    text-decoration: none;
    font-size: 1.08em;
    font-weight: normal !important;
    padding: 5px 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.2) !important;
    width: 100%;
    text-align: left;
    box-sizing: border-box;
}

.mobile-nav-menu a:hover {
    background: rgba(0, 0, 0, 0.1) !important;
    transform: scale(1.05);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

/* 移动端下拉菜单样式 */
.mobile-dropdown {
    width: 100%;
}

.mobile-dropdown-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    color: black !important;
    text-decoration: none;
    font-size: 1.08em;
    font-weight: normal !important;
    padding: 5px 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.2) !important;
    border: none;
    cursor: pointer;
    box-sizing: border-box;
}

.mobile-dropdown-toggle:hover {
    background: rgba(0, 0, 0, 0.1) !important;
    transform: scale(1.05);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.mobile-dropdown-menu {
    display: none;
    flex-direction: column;
    gap: 3px;
    padding: 5px 0;
    margin-top: 3px;
    width: 100%;
}

.mobile-dropdown-menu.active {
    display: flex;
}

.mobile-dropdown-menu a {
    color: black !important;
    text-decoration: none;
    font-size: 1.08em;
    font-weight: normal !important;
    padding: 5px 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.2) !important;
    margin: 0;
    text-align: left;
    width: 100%;
    box-sizing: border-box;
}

.mobile-dropdown-menu a:hover {
    background: rgba(0, 0, 0, 0.1) !important;
    transform: scale(1.05);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
} 