:root {
    --primary-color: #0f9994;
    --secondary-color: #0f9994;
    --accent-color: #f39c12;
    --text-light: #ffffff;
    --text-dark: #343434;
    --text-gray: #626262;
    --border-light: rgba(255, 255, 255, 0.3);
    --bg-light: #f8f9fa;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Microsoft YaHei", Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #FFFFFF;
    overflow-x: hidden;
}

/* 悬浮二维码样式 */
.floating-qrcode {
    position: fixed;
    top: 285px;
    right: 65px;
    z-index: 1000;
}

.qrcode-container {
    position: relative;
    width: 150px;
    padding: 10px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.qrcode-container img {
    width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s;
}

ul {
    list-style: none;
}

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

.container {
    max-width: 1600px;
    margin: 0 auto;
}

/* ==========================
   Navigation & Header
   ========================== */

.top-bar {
    background-color: var(--bg-light);
    color: var(--text-gray);
    font-size: 12px;
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.main-header {
    background-image: url('../assets/header/navi_background.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 46px 0;
    position: relative;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    padding: 0 15px;
}

.logo {
    display: flex;
    align-items: center;
    color: var(--text-light);
}

.logo-img {
    height: 110px;
    width: auto;
    object-fit: contain;
    margin-right: 15px;
}

.header-search {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    margin-left: 20px;
}

.header-buttons {
    display: flex;
    gap: 100px;
    margin-bottom: 20px;
}

.header-btn {
    display: flex;
    align-items: center;
    color: var(--text-light);
    font-size: 20px;
    padding: 5px 10px;
    border-radius: 4px;
    transition: background 0.3s;
}

.header-btn-icon {
    width: 22px;
    height: 22px;
    margin-right: 5px;
}

.header-btn:hover {
    background-color: rgba(255, 255, 255, 0.15);
}

.header-search form {
    display: flex;
    width: 100%;
    max-width: 350px;
}

.header-search input {
    flex-grow: 1;
    padding: 10px 15px;
    border: 1px solid var(--border-light);
    border-radius: 4px 0 0 4px;
    outline: none;
    font-size: 16px;
}

.header-search button {
    padding: 10px 20px;
    background-color: var(--accent-color);
    color: var(--text-light);
    border: none;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.3s;
}

.header-search button:hover {
    background-color: #e67e22;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10001;
    outline: none;
}

.mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--text-light);
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    transform-origin: center;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(10.5px) rotate(45deg);
}

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

.mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-10.5px) rotate(-45deg);
}

.main-nav-container {
    background-color: var(--primary-color);
    transition: all 0.3s ease;
    z-index: 1000;
}

.main-nav-container.fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin: 0 auto;
    gap: 10px;
}

.main-nav > li {
    flex: 1;
    text-align: center;
    display: flex;
    justify-content: center;
    position: relative;
}

.main-nav > li > a {
    display: block;
    padding: 16px 5px;
    color: var(--text-light);
    font-size: 22px;
    font-weight: bold;
    transition: background 0.3s;
    white-space: nowrap;
    width: 100%;
}

/*.main-nav > li > a:hover {*/
/*    background-color: rgba(255, 255, 255, 0.15);*/
/*    border-radius: 4px;*/
/*}*/

.main-nav > li.active > a {
    position: relative;
}

.main-nav > li.active > a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 30%;
    width: 40%;
    height: 3px;
    background-color: var(--accent-color);
}

.main-nav .arrow {
    font-size: 10px;
    margin-left: 5px;
    opacity: 0.7;
}

.submenu {
    position: absolute;
    top: 100%;
    left: 20%;
    width: 60%;
    background-color: #ffffff;
    min-width: 140px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1001;
    /*border-top: 3px solid var(--accent-color);*/
    border-radius: 0 0 4px 4px;
}

.submenu-simple {
    position: absolute;
    top: 100%;
    left: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1001;
}

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

.has-submenu:hover .submenu-simple {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.submenu li a {
    display: block;
    padding: 12px 20px;
    color: var(--text-dark);
    font-size: 14px;
    text-align: left;
}

.submenu li a:hover {
    background-color: #f0f7f6;
    color: var(--primary-color);
    padding-left: 25px;
}

.submenu li.active a {
    background-color: #f0f7f6;
    color: var(--primary-color);
    padding-left: 25px;
}

.mobile-nav-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-nav-backdrop.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-overlay {
    position: absolute;
    top: 95%;
    left: 0;
    width: 100%;
    max-height: 0;
    visibility: hidden;
    overflow: hidden;
    background-color: rgba(42, 183, 169, 0.98);
    z-index: 9999;
    backdrop-filter: blur(5px);
    transition: max-height 0.4s ease-in-out, visibility 0.4s ease;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.mobile-nav-overlay.active {
    max-height: 60vh;
    visibility: visible;
    overflow-y: auto;
}

.mobile-nav-header {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    flex-shrink: 0;
    background-color: rgba(0, 0, 0, 0.1);
}

.mobile-nav-header .logo {
    color: var(--text-light);
}

.mobile-nav-header .logo-img {
    height: 50px;
    margin-right: 10px;
}

.mobile-nav-content {
    padding: 10px 20px 30px 20px;
    flex-grow: 1;
}

.mobile-main-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-main-nav > li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    padding: 15px 0;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
}

.mobile-main-nav > li:last-child {
    border-bottom: none;
}

.mobile-main-nav > li > a,
.mobile-main-nav > li > .mobile-parent-item {
    display: block;
    color: var(--text-light);
    font-size: 20px;
    font-weight: bold;
    width: 100%;
    margin-bottom: 10px;
}

.mobile-submenu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
    gap: 10px 20px;
    width: 100%;
    padding-left: 10px;
    margin-top: 5px;
}

.mobile-submenu-grid a {
    display: block;
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
    padding: 4px 0;
}

.mobile-submenu-grid a:hover {
    color: #fff;
    text-decoration: underline;
}

/* ==========================
   Content Area
   ========================== */

.main-content {
    background: #fff;
    min-height: auto;
}

.top-container {
    width: 100%;
    margin: 0;
    padding: 0;
    background-image: url('../assets/header/bg_1@2x.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.top-banner-container {
    padding-top: 50px;
}

.top-banner {
    height: 140px;
    width: 100%;
    overflow: hidden;
}

.top-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.news-grid-container {
    margin-top: 0;
    padding: 20px 0 40px 0;
    display: grid;
    grid-template-columns: 70% 30%;
}

.news-notice-wrapper {
    display: flex;
    align-items: stretch;
    background-color: transparent;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

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

.module-title-img {
    height: 44px;
    width: auto;
}

.view-more-img {
    height: 25px;
    width: auto;
}

.featured-news-carousel {
    margin-bottom: 20px;
    border: 1px solid #ccc;
}

/* PC 端轮播样式 */
.pc-carousel {
    display: block;
}

/* 移动端轮播样式 */
.mobile-carousel {
    display: none;
}

.mobile-carousel-container {
    display: flex;
    flex-direction: column;
}

.mobile-carousel-image {
    width: 100%;
    position: relative;
    height: 200px;
    overflow: hidden;
}

.mobile-carousel-image .swiper-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.mobile-carousel-image .swiper-slide {
    width: 100%;
    height: 100%;
}

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

.mobile-carousel-text {
    width: 100%;
    padding: 10px;
}

.mobile-carousel-text-item {
    display: none;
    flex-direction: column;
    justify-content: flex-start;
}

.mobile-carousel-text-item.active {
    display: flex;
}

.mobile-carousel-text .carousel-title {
    font-size: 18px;
    margin-bottom: 10px;
}

.mobile-carousel-text .carousel-summary {
    font-size: 16px;
    margin-bottom: 10px;
}

.mobile-carousel-text .details-link {
    font-size: 16px;
    color: #F59000;
    text-align: right;
    align-items: flex-end;
}

.details-arrow {
    width: 16px;
    height: 16px;
    margin-left: 5px;
    vertical-align: bottom;
}

.carousel-content {
    display: flex;
    gap: 20px;
    padding: 15px;
    background-color: #f9f9f9;
    border-radius: 8px;
}

.carousel-image {
    flex: 0 0 35%;
}

.carousel-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 4px;
}

.carousel-text {
    flex: 1;
}

.carousel-date {
    font-size: 16px;
    color: #666;
    margin-bottom: 10px;
}

.carousel-date-icon {
    width: 14px;
    height: 14px;
    margin-bottom: 5px;
    margin-right: 5px;
    vertical-align: bottom;
}

.carousel-title {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #364D60;
}

.carousel-summary {
    font-size: 16px;
    color: #666;
    line-height: 1.5;
    flex-wrap: wrap;
}

.details-link {
    font-size: 16px;
    color: #F59000;
    text-align: right;
    align-items: flex-end;
}

.details-arrow {
    width: 16px;
    height: 16px;
    margin-left: 1px;
    margin-bottom: 5px;
    vertical-align: bottom;
}

.bottom-container {
    width: 100%;
    margin: 0;
    padding: 0;
    /* 关键：设置相对定位，作为伪元素的定位基准 */
    position: relative;
    background: #FFFFFF;
}

/* 使用 ::before 伪元素放置背景图 */
.bottom-container::before {
    content: '';
    position: absolute;

    /* --- 核心设置 --- */
    top: 0;                /* 顶部对齐 */
    left: 0;             /* 从左边线开始算起 50% */
    /*transform: translateX(-25%); !* 向左回拉自身宽度的50%，实现水平居中 *!*/
    width: 100%;            /* 设置宽度为 55% */
    height: 100%;          /* 高度跟随容器内容撑开 (或者设为 100%) */

    /* --- 背景图设置 --- */
    background-image: url('../assets/header/bg_2.png');
    background-size: cover;   /* 或 contain，根据需求调整 */
    background-position: center;
    background-repeat: no-repeat;

    /* --- 层级设置 --- */
    z-index: 0; /* 确保它在内容下方，如果需要做卡片效果可设为 -1 */
}

.video-grid-container {
    position: relative;
    z-index: 1;

    padding: 20px 0 30px 0;
    display: grid;
    grid-template-columns: 60% 40%;
}

.news-module {
    background-color: transparent;
    display: flex;
    flex-direction: column;
}

.notice-module {
    background-color: transparent;
    display: flex;
    padding: 0 20px;
}

.module-footer {
    display: none;
    text-align: center;
    width: 100%;
}

.module-left {
    height: auto;
    width: 100%;
    overflow: hidden;
    padding: 50px 15px 0 0;
}

.module-right {
    padding: 50px 0 0 15px;
}

.module-content-service {
    margin: 5px 0 5px 5px;
    padding: 20px 80px;
    background-color: white;
    border-radius: 10px;
    border-bottom: 1px solid #f0f0f0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.service-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    border-bottom: 1px solid #f0f0f0;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.service-item:hover {
    transform: scale(1.03);
}

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

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

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

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

.service-title {
    font-size: 24px;
    font-weight: bold;
    color: #364D60;
    margin: 0;
}

.service-link {
    font-size: 16px;
    color: #F59000;
    text-decoration: none;
}

.service-link:hover {
    text-decoration: underline;
}

.service-status {
    font-size: 16px;
    color: #999;
}

.news-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.news-list-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 12px 0;
    gap: 5px;
}

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

.news-list-bullet {
    color: var(--accent-color);
    font-size: 20px;
    margin-right: 5px;
    line-height: 1.5;
    flex-shrink: 0;
}

.blue-news-list-bullet {
    color: var(--primary-color);
    font-size: 20px;
    margin-right: 5px;
    line-height: 1.5;
    flex-shrink: 0;
}

.news-list-title {
    flex-grow: 1;
    font-size: 20px;
    color: #484848;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.news-list-title:hover {
    color: var(--primary-color);
}

.news-list-date {
    font-size: 16px;
    color: #666;
    margin-left: 10px;
    white-space: nowrap;
    flex-shrink: 0;
}

.notice-list {
    list-style: none;
    padding: 20px;
    margin: 0;
    border: 1px solid #ccc;
}

.notice-list-item {
    padding: 15px;
    border-bottom: 1px solid #f0f0f0;
}

.notice-list-date {
    display: block;
    font-size: 16px;
    color: #666;
}

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

.notice-list-title {
    display: block;
    font-size: 18px;
    color: #484848;
    text-decoration: none;
    margin-bottom: 5px;
}

.notice-list-title:hover {
    color: var(--primary-color);
}

.carousel-container {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.carousel-image-wrapper {
    flex: 0 0 50%;
    position: relative;
    padding-top: 28%;
    overflow: hidden;
}

.carousel-image-wrapper .swiper-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.carousel-image-wrapper .swiper-slide {
    width: 100%;
    height: 100%;
}

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

.carousel-text-wrapper {
    flex: 1;
    position: relative;
    min-height: 200px;
    margin: 44px 16px 0;
}

.carousel-text-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 97%;
    height: 100%;
    display: none;
    flex-direction: column;
    justify-content: flex-start;
}

.carousel-text-item.active {
    display: flex;
}

.carousel-date {
    font-size: 14px;
    color: #999;
}

.carousel-title {
    font-size: 22px;
    font-weight: bold;
    color: #364D60;
    margin-bottom: 10px;
    line-height: 1.4;
}

.carousel-summary {
    font-size: 16px;
    color: #666;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* 轮播分页样式 */
.featured-swiper .swiper-pagination {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
}

.featured-swiper .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: rgba(0, 0, 0, 0.8);
    margin: 0 4px;
}

.featured-swiper .swiper-pagination-bullet-active {
    background: var(--primary-color);
}

.health-featured {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.health-featured img {
    width: auto;
    height: 140px;
    object-fit: cover;
    border-radius: 4px;
    flex-shrink: 0;
}

.health-featured-content {
    flex-grow: 1;
}

.health-featured-title {
    font-size: 16px;
    font-weight: bold;
    color: var(--text-dark);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 5px;
}

.health-featured-desc {
    font-size: 13px;
    color: var(--text-gray);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

@keyframes bounceRight {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(5px); }
}

.homepage-swiper {
    width: 100%;
    height: 400px;
    overflow: hidden;
    padding: 15px 0;
}

.swiper-slide {
    position: relative;
}

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

.slide-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    padding: 15px 20px;
    font-size: 18px;
}

.swiper-pagination-bullet-active {
    background: var(--primary-color) !important;
}

.partner-container {
    width: 100%;
    margin: 0;
    padding: 36px 100px;
    height: auto;
    background: #F8F8F8;
}

.partner-logos {
    margin: 0 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.partner-logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 70px;
    padding: 5px;
    flex: 0 0 auto;
    transition: transform 0.3s ease;
}

.partner-logo-item img {
    max-height: 100%;
    max-width: 220px;
    width: auto;
    object-fit: contain;
}

.partner-logo-item:hover {
    transform: translateY(-3px);
}

.video-card {
    display: block;
    text-decoration: none;
    color: var(--text-dark);
    transition: transform 0.3s;
}

.video-cover {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    overflow: hidden;
    margin-top: 15px;
    margin-bottom: 10px;
}

.video-cover img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background-image: url('../assets/list/video_icon.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.video-title {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 10px 15px;
    font-size: 15px;
    line-height: 1.4;
    font-weight: 500;
    color: #fff;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.video-swiper {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.swiper-slide {
    width: 100% !important;
    height: auto !important;
    display: block;
}

.video-swiper .swiper-button-next,
.video-swiper .swiper-button-prev {
    color: var(--primary-color);
    background: rgba(255, 255, 255, 0.8);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0s;
}

.video-swiper .swiper-button-next:after,
.video-swiper .swiper-button-prev:after {
    font-size: 18px;
    font-weight: bold;
}

.video-swiper:hover .swiper-button-next,
.video-swiper:hover .swiper-button-prev {
    opacity: 1;
    visibility: visible;
}

.breadcrumb-wrapper {
    background-color: #fff;
    padding: 15px 20px;
    border-bottom: 1px solid #eee;
}
.breadcrumb {
    font-size: 14px;
    color: #5A5965;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.breadcrumb i {
    margin-right: 5px;
    color: #5A5965;
}
.breadcrumb span {
    margin: 0 8px;
    color: #5A5965;
}
.breadcrumb a {
    color: #5A5965;
    text-decoration: none;
    transition: color 0.3s;
}
.breadcrumb a:hover {
    color: var(--primary-color);
}
.breadcrumb .current-page {
    color: #5A5965;
}

.home-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: #666;
    text-decoration: none;
}

.home-link:hover {
    color: var(--primary-color);
}

/* ==========================
   Footer
   ========================== */

footer {
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 20px 0;
    font-size: 14px;
    line-height: 1.8;
}

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

.footer-info {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 10px;
}

.footer-details {
    flex-grow: 1;
    text-align: center;
    opacity: 0.9;
}

.footer-details p {
    margin: 0 0 6px 0;
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-light);
}

/* ==========================
   Media Queries
   ========================== */

@media (max-width: 992px) {
    .floating-qrcode { display: none !important; }
    .top-bar { display: none !important; }
    .header-search { display: none !important; }
    .main-nav-container { display: none !important; }

    .mobile-menu-toggle { display: flex; }
    .module-footer { display: block; }
    .main-header { padding: 15px 20px; }

    .header-content {
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
    }

    .logo { order: 1; margin-right: auto; }
    .logo-img { height: 50px; margin-right: 10px; }
    .mobile-menu-toggle { order: 2; margin-left: 0; }

    .header-search {
        order: 3;
        width: 100%;
        margin-top: 15px;
        justify-content: center;
        margin-left: 0;
    }
    .header-search form { max-width: 100%; }
    .header-search input { width: 100%; }

    .notice-module { flex-direction: column; }
    .news-grid-container { margin-top: 0; grid-template-columns: 1fr; }
    .video-grid-container { margin-top: 0; grid-template-columns: 1fr; }
    .top-banner-container { padding-top: 15px;}
    .top-banner { padding: 0 15px; max-height: 40px;}
    .top-banner img {
        width: 100%;
        height: auto;
        object-fit: contain;
        display: block;
    }
    .homepage-swiper { height: 250px; padding: 0; }
    .slide-caption { font-size: 14px; padding: 10px; }
    .news-module { padding: 0 20px; }

    .module-left {
        height: auto;
        width: 100%;
        overflow: hidden;
    }

    .carousel-container {
        flex-direction: column;
    }

    .carousel-image-wrapper {
        flex: 0 0 100%;
        position: relative;
        height: 200px;
        overflow: hidden;
    }

    .carousel-image-wrapper .swiper-container {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

    .carousel-image-wrapper .swiper-slide {
        width: 100%;
        height: 100%;
    }

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

    .carousel-text-wrapper {
        flex: 1;
        position: static;
        min-height: auto;
        margin: 10px;
    }

    .carousel-text-item {
        position: static;
        width: 100%;
        height: auto;
        display: none;
        flex-direction: column;
        justify-content: flex-start;
    }

    .carousel-text-item.active {
        display: flex;
    }

    .carousel-title {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .carousel-summary {
        font-size: 14px;
        margin-bottom: 10px;
    }

    .details-link {
        font-size: 14px;
        color: #F59000;
        text-align: right;
    }

    .health-featured img { width: 100px; height: 70px; }
    .entry-text { font-size: 20px; }
    .entry-arrow { width: 24px; height: 24px; }

    /* 移动端轮播显示 */
    .pc-carousel {
        display: none;
    }

    .mobile-carousel {
        display: block;
    }

    .module-header {
        justify-content: space-between;
        gap: 15px;
    }

    .news-list-item {
        flex-wrap: wrap;
        align-items: flex-start;
        padding: 12px 0;
    }

    .news-list-bullet { font-size: 16px; }
    .blue-news-list-bullet { font-size: 16px; }
    .news-list-title {
        width: calc(100% - 20px);
        white-space: nowrap;
        overflow: hidden;
        font-size: 16px;
        text-overflow: ellipsis;
    }

    .news-list-date {
        width: 100%;
        text-align: right;
        margin-left: 0;
        padding-right: 5px;
        color: #aaa;
        font-size: 12px;
        display: none !important;
    }

    .notice-list-date {
        font-size: 14px;
        color: #666;
    }

    .notice-list-title {
        font-size: 14px;
    }

    .service-icon {
        width: 75px;
        height: 75px;
    }

    .service-title {
        font-size: 14px;
    }

    .service-link {
        font-size: 14px;
    }

    .service-status {
        font-size: 14px;
    }

    .partner-container {
        padding: 20px 0;
        height: auto;
    }

    .partner-logos {
        justify-content: center;
        padding: 0 10px;
        display: grid;
        grid-template-columns: 50% 50%;
    }
    .partner-logo-item {
        flex: 0 0 calc(33.33% - 10px);
        height: 45px;
    }

    .module-content-service {
        margin: 5px 0 5px 5px;
        padding: 10px 25px;
    }
}

@media (max-width: 768px) {
    footer { padding: 30px; }

    .footer-info {
        flex-direction: row;
        align-items: center;
        gap: 15px;
    }

    .footer-details {
        text-align: center;
        font-size: 12px;
        line-height: 1.6;
    }
    .footer-details p { margin-bottom: 4px; }

    .bottom-container {
        width: 100%;
        margin: 0;
        padding: 0;
        background-image: url('../assets/header/bg_2.png');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }
}

@media (max-width: 576px) {
    .top-bar-content {
        flex-direction: column;
        text-align: center;
        gap: 5px;
    }

    .logo-img { height: 50px; }

    .mobile-submenu-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .partner-logos {
        justify-content: center;
        padding: 0 10px;
        display: grid;
        grid-template-columns: 50% 50%;
    }

    .partner-logo-item {
        flex: 0 0 calc(50% - 10px);
    }


    .health-featured {
        flex-direction: column;
        gap: 10px;
    }
    .health-featured img {
        width: 100%;
        height: 180px;
    }
}

@media (hover: none) {
    .video-swiper .swiper-button-next,
    .video-swiper .swiper-button-prev {
        opacity: 1;
        visibility: visible;
        transition: none;
    }
}