﻿
/* å¤§å±å¹• */

  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
      'Helvetica Neue', Arial, 'PingFang SC', 'Hiragino Sans GB',
      'Microsoft YaHei', sans-serif;
    overflow-x: hidden;
  
  }

  /* é¡¶éƒ¨å¯¼èˆªï¼ˆWeb + æ‰‹æœºç«¯ï¼‰ */
  .site-header {
    width: 1560px;
    margin: 0 auto;
    background: #ffffff;
    position: relative;
    box-shadow: 0 1px 0 rgba(17, 24, 39, 0.08);
  }

  .header-container {
    max-width: 1560px;
    margin: 0 auto;
    padding: 24px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
  }

  .mobile-top-actions {
    display: none;
  }

  .header-left {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
  }

  .logo-wrapper {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
  }

  .logo-icon {
    height: 68px;
    width: auto;
    display: block;
  }

  .header-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
  }

  .header-actions {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #0b5fb8;
  }

  .header-action-link {
    color: #0b5fb8;
    text-decoration: none;
    font-weight: 400;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }

  .header-action-divider {
    width: 1px;
    height: 18px;
    background: rgba(11, 95, 184, 0.25);
    display: inline-block;
  }

  .header-action-icon {
    width: 16px;
    height: 16px;
    object-fit: contain;
    display: block;
  }

  .header-icon-btn {
    border: none;
    background: transparent;
    padding: 4px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .header-center {
    display: flex;
    align-items: center;
  }

  .search-box {
    display: flex;
    align-items: center;
    border: 1px solid #e5e7eb;
    border-radius: 999px;
    padding: 6px 10px;
    gap: 8px;
    background: #ffffff;
    min-width: 320px;
  }

  .search-input {
    border: none;
    outline: none;
    font-size: 14px;
    width: 100%;
    min-width: 0;
  }

  .icon-button {
    border: none;
    background: transparent;
    cursor: pointer;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .search-icon {
    width: 16px;
    height: 16px;
    position: relative;
    display: inline-block;
  }

  .search-icon::before {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    border: 2px solid #6b7280;
    border-radius: 50%;
    left: 0;
    top: 0;
  }

  .search-icon::after {
    content: '';
    position: absolute;
    width: 7px;
    height: 2px;
    background: #6b7280;
    transform: rotate(45deg);
    right: -1px;
    bottom: 1px;
    border-radius: 2px;
  }

  .header-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 14px;
    border-radius: 999px;
    border: 1px solid #e5e7eb;
    background: #ffffff;
    color: #0b5fb8;
    font-weight: 700;
    font-size: 13px;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }

  .header-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.08);
  }

  .mobile-menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    background: #ffffff;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    gap: 5px;
    flex-direction: column;
  }

  .mobile-menu-toggle span {
    width: 20px;
    height: 2px;
    background: #111827;
    border-radius: 2px;
    display: block;
  }

  .site-navigation {
    width: 100%;
    background: #ffffff;
    box-shadow: 0 1px 0 rgba(17, 24, 39, 0.06);
  }

  .nav-container {
    max-width: 1560px;
    margin: 0 auto;
    padding: 10px 24px;
    display: flex;
    align-items: center;
    gap: 22px;
    flex-wrap: wrap;
    justify-content: space-around;
    
  }

  .nav-item {
    color: #1f2937;
    text-decoration: none;
    font-size: clamp(16px, 1vw, 20px);
    font-weight: 500;
    position: relative;
    padding: 8px 0;
    cursor: pointer;
    white-space: nowrap;
  }

  .nav-item__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #1f2937;
  }

  .nav-item--with-dropdown:hover .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }

  .nav-dropdown {
    position: absolute;
    left: 0;
    top: calc(100% + 6px);
    background: #ffffff;
    border: 1px solid rgba(17, 24, 39, 0.08);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
    border-radius: 12px;
    padding: 12px;
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(6px);
    pointer-events: none;
    transition: all 0.18s ease;
    z-index: 99999;
  }

  .nav-dropdown-inner {
    display: grid;
    gap: 8px;
  }

  .nav-dropdown-item {
    color: #111827;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    padding: 10px 10px;
    border-radius: 10px;
    transition: background 0.15s ease, color 0.15s ease;
  }

  .nav-dropdown-item:hover {
    background: rgba(11, 95, 184, 0.10);
    color: #0b5fb8;
  }

  /* æ‰‹æœºèœå•ï¼ˆé»˜è®¤éšè—ï¼Œç§»åŠ¨ç«¯æ˜¾ç¤ºï¼‰ */
  .mobile-menu-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 100000;
  }

  .mobile-menu-overlay.is-open {
    display: block;
  }

  .mobile-menu-container {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: min(92vw, 420px);
    background: #ffffff;
    display: flex;
    flex-direction: column;
  }

  .mobile-menu-header-buttons {
    display: flex;
    gap: 10px;
    padding: 12px 14px;
    border-bottom: 1px solid rgba(17, 24, 39, 0.08);
  }

  .mobile-menu-btn {
    flex: 1;
    border: 1px solid rgba(17, 24, 39, 0.10);
    background: #ffffff;
    border-radius: 12px;
    padding: 10px 12px;
    font-weight: 800;
    cursor: pointer;
    color: #0b5fb8;
  }

  .mobile-menu-logo-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 14px;
    border-bottom: 1px solid rgba(17, 24, 39, 0.08);
  }

  .mobile-menu-logo-icon {
    height: 34px;
    width: auto;
    display: block;
  }

  .mobile-menu-close {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    border: 1px solid rgba(17, 24, 39, 0.10);
    background: #ffffff;
    cursor: pointer;
    font-size: 22px;
    line-height: 1;
  }

  .mobile-menu-scrollable {
    padding: 14px;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
  }

  .mobile-menu-search-box {
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(17, 24, 39, 0.12);
    border-radius: 14px;
    padding: 10px 12px;
    margin-bottom: 14px;
  }

  .mobile-menu-search-input {
    border: none;
    outline: none;
    width: 100%;
    font-size: 14px;
  }

  .mobile-menu-search-icon {
    width: 16px;
    height: 16px;
    position: relative;
    display: inline-block;
    opacity: 0.85;
  }

  .mobile-menu-search-icon::before {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    border: 2px solid #6b7280;
    border-radius: 50%;
    left: 0;
    top: 0;
  }

  .mobile-menu-search-icon::after {
    content: '';
    position: absolute;
    width: 7px;
    height: 2px;
    background: #6b7280;
    transform: rotate(45deg);
    right: -1px;
    bottom: 1px;
    border-radius: 2px;
  }

  .mobile-menu-nav-list {
    display: grid;
    gap: 6px;
  }

  .mobile-menu-nav-item {
    display: block;
    padding: 12px 12px;
    border-radius: 12px;
    text-decoration: none;
    color: #111827;
    font-weight: 800;
    background: #f3f4f6;
  }

  .mobile-menu-nav-item--with-dropdown {
    background: transparent;
    padding: 0;
  }

  .mobile-menu-nav-item-header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 12px 12px;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    background: #f3f4f6;
    font-weight: 900;
    color: #111827;
  }

  .mobile-menu-nav-icon {
    width: 18px;
    height: 18px;
    position: relative;
    display: inline-block;
  }

  .mobile-menu-nav-icon::before,
  .mobile-menu-nav-icon::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 12px;
    height: 2px;
    background: #111827;
    transform: translate(-50%, -50%);
    border-radius: 2px;
  }

  .mobile-menu-nav-icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
    transition: transform 0.18s ease;
  }

  .mobile-menu-nav-item--open .mobile-menu-nav-icon::after {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  .mobile-menu-nav-dropdown {
    display: none;
    padding: 8px 8px 12px;
  }

  .mobile-menu-nav-item--open .mobile-menu-nav-dropdown {
    display: grid;
    gap: 8px;
  }

  .mobile-menu-nav-dropdown-item {
    display: block;
    text-decoration: none;
    color: #111827;
    background: #ffffff;
    border: 1px solid rgba(17, 24, 39, 0.10);
    border-radius: 12px;
    padding: 10px 10px;
    font-weight: 700;
  }

  div {
    font-family: "Microsoft YaHei", "å¾®è½¯é›…é»‘", sans-serif;
  }

  a {
    font-family: "Microsoft YaHei", "å¾®è½¯é›…é»‘", sans-serif;
    text-decoration: none;
  }

  /* åŒ»é™¢å®£ä¼ é¡µé¢å®¹å™¨ */
  .hospital-promo {
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
  }

  /* é¡¶éƒ¨åŒ»é™¢ç…§ç‰‡åŒºåŸŸ */
  .hospital-photo {
    width: 100%;
    height: 80vh;
    /* min-height: 400px; */
    position: relative;
    overflow: hidden;
  }

  .hospital-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  /* Swiper Banner é€‚é… */
  .banner-swiper {
    width: 100%;
    height: 100%;
    position: relative;
  }

  .banner-swiper .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
  }

  .banner-swiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .banner-swiper .swiper-pagination {
    bottom: 30px !important;
    left: 90% !important;
    transform: translateX(-50%) !important;
    width: auto !important;
    display: flex;
    justify-content: center;
    gap: 8px;
  }

  .banner-swiper .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
    border-radius: 50%;
    transition: all 0.3s ease;
    cursor: pointer;
  }

  .banner-swiper .swiper-pagination-bullet-active {
    background: #fff;
    width: 12px;
    border-radius: 6px;
  }

  /* åº•éƒ¨æœåŠ¡å¯¼èˆªåŒºåŸŸ */
  .service-navigation {
    width: 100%;
    position: relative;
    /* å¿…å¤‡ */
    height: 940px;
    overflow: hidden;
  }

  /* èƒŒæ™¯ç›’å­ï¼šå›ºå®šå·¦ä¸‹è§’ï¼Œä¸å ä½ã€ä¸å½±å“å…¶ä»–å†…å®¹ */
  .service-bg {
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: -1;
    /* å…³é”®ï¼šè‡ªåŠ¨æ²‰åœ¨æœ€åº•å±‚ */

    background-image: url(../image/jzBg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    height: 468px;
    width: 812px;
  }

  /* æ ‡é¢˜/å…¶ä»–å†…å®¹ï¼šæ­£å¸¸å†™ï¼Œä¸ç”¨åŠ ä»»ä½•å®šä½ */
  .title {
    font-family: Playfair Display;
    font-weight: bold;
    font-size: 48px;
    color: #243747;
    text-align: center;
    margin-top: 100px;
  }

  .sub-title {
    font-family: Arial;
    font-weight: 400;
    font-size: 20px;
    color: #243747;
    text-align: center;
    margin-top: 24px;
  }

  .service-img {
    width: 1075px;
    height: 600px;
    position: absolute;
    bottom: 100px;
    right: 0;
  }

  /* æœåŠ¡æ¨¡å—å®¹å™¨ */
  .service-content {
    width: 100%;
    max-width: 1560px;
    margin: 0 auto;
    /* padding: 20px; */
    position: absolute;
    right: 24px;
    bottom: 100px;
  }

  /* é€‰æ‹©å™¨å®¹å™¨ï¼ˆæ ¸å¿ƒå¸ƒå±€ï¼‰ */
  .service-select {
    display: flex;
    align-items: center;
    gap: 22px;
    /* å›¾æ ‡å’Œæ–‡å­—çš„é—´è·ï¼Œå’Œå›¾ä¸­ä¸€è‡´ */
    padding: 24px 80px;
    /* background-color: #1677ff; ä¸»è“è‰²èƒŒæ™¯ï¼ŒåŒ¹é…å›¾ä¸­è‰²è°ƒ */
    color: #ffffff;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
    width: 555px;
    height: 260px;
    background: url('../image/hzfw/tabBg.png') center/cover no-repeat;
  }

  /* å›¾æ ‡å®¹å™¨ï¼ˆè™šçº¿æ¡†æ ·å¼ï¼‰ */
  .service-select>img {
    width: 100px;
    height: 100px;
    object-fit: contain;
  }

  /* æ–‡å­—å®¹å™¨ */
  .service-select>div {
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: relative;
    z-index: 1;
    text-align: center;
  }

  /* ä¸»æ ‡é¢˜ï¼šFind a Doctor */
  .service-select>div>div:first-child {
    font-family: Playfair Display;
    font-weight: bold;
    font-size: 36px;
    color: #FFFFFF;
    text-decoration: none;
  }

  /* å‰¯æ ‡é¢˜ï¼šFind a doctor who's the perfect fit */
  .service-select>div>div:last-child {
    font-family: Arial;
    font-weight: 400;
    font-size: 18px;
    color: #FFFFFF;
  }

  .no-select {
    background: #005BAC;
    margin-top: 4px;
    margin-left: 40px;
  }

  /* Since 1952 æ–‡å­— */
  .service-navigation__year {
    position: absolute;
    top: 20%;
    left: 10%;
    font-size: 120px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.2);
    z-index: 1;
    white-space: nowrap;
    letter-spacing: 8px;
    font-family: 'Arial', sans-serif;
  }


  /* å•ä¸ªæœåŠ¡å¡ç‰‡ */
  .service-card {
    width: 160px;
    min-height: 362px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* background-color: rgba(33, 150, 243, 0.95);
    border-radius: 8px;
    padding: 24px 16px;
    justify-content: flex-start;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat; */
  }

  .service-card--bg1 {
    background-image: url('../image/tabsBg1.png');
    background-color: transparent;
  }

  .service-card--bg2 {
    background-image: url('../image/tabsBg2.png');
    background-color: transparent;
  }

  .service-card {
    cursor: pointer;
    transition: transform 0.25s ease, opacity 0.25s ease;
  }

  .service-card:hover {
    transform: translateY(-4px);
    opacity: 0.95;
  }

  .service-card:nth-child(2) {
    margin-top: 125px;
  }

  .service-card:nth-child(3) {
    margin-top: 190px;
  }

  .service-card:nth-child(4) {
    margin-top: 125px;
    width: 160px;
    height: 392px;
    background-image: url('../image/cyfw.png');
    background-color: transparent;
  }

  /* ç§‘å®¤ä»‹ç»åŒºåŸŸï¼ˆæ›¿æ¢æ–°é—»å…¬å‘Šï¼‰ */
  .news-notice-section {
    width: 100%;
    background: #e9ebec;
    padding: 96px 0 90px;
    height: 1380px;
  }

  .news-notice-container {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 20px;
  }

  .dept-title-wrap {
    text-align: center;
    margin-bottom: 56px;
  }

  .dept-title {
    font-family: Playfair Display;
    font-weight: bold;
    font-size: 48px;
    color: #243747;
  }

  .dept-subtitle {
    font-family: Arial;
    font-weight: 400;
    font-size: 20px;
    color: #243747;
    text-align: center;
    margin-top: 16px;
  }

  .dept-layout {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    align-items: start;
    gap: 56px;
  }
  .dept-layout .mobile-dept-list {
    display: none;
  }

  .dept-list {
    width: 450px;
    display: flex;
    flex-direction: column;
  }

  .dept-item {
    position: relative;
    padding: 30px 58px 26px 28px;
    border-bottom: 1px solid #dbe4ee;
    cursor: pointer;
    transition: all 0.25s ease;
  }

  .dept-item-main {
    font-family: Playfair Display;
    font-weight: bold;
    font-size: 24px;
    color: #243747;
  }

  .dept-item-sub {
    font-family: Arial;
    font-weight: 400;
    font-size: 20px;
    color: #243747;
  }

  .dept-arrow {
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    color: #7f97aa;
    font-size: 25px;
  }

  .dept-item.is-active {
    border-radius: 14px;
    border: none;
    background: #0f5da8;
    box-shadow: 0 10px 20px rgba(15, 93, 168, 0.16);
    margin-bottom: 8px;
  }

  .dept-item.is-active .dept-item-main,
  .dept-item.is-active .dept-item-sub,
  .dept-item.is-active .dept-arrow {
    color: #ffffff;
  }

  .dept-all-btn {
    margin-top: 28px;
    width: 274px;
    height: 60px;
    border-radius: 33px;
    border: 2px solid #bed0e1;
    color: #3c5770;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.25s ease;
    font-family: Arial;
    font-weight: 400;
    font-size: 18px;
    margin: 0 auto;
    cursor: pointer;
    position: relative;
    z-index: 10;
    margin-top: 40px;
  }

  .dept-all-btn:hover {
    border-color: #0f5da8;
    color: #0f5da8;
  }

  .dept-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "a b"
      "c d"
      ". d";
    align-items: start;
    gap: 22px;
    padding-top: 8px;
  }

  .dept-gallery-cell {
    border-radius: 16px;
    overflow: hidden;
    background: #e8eef5;
  }

  .dept-gallery-cell--a {
    width: 244px;
    height: 346px;
  }

  .dept-gallery-cell--b {
    width: 330px;
    height: 258px;
  }

  .dept-gallery-cell--c {
    width: 204px;
    height: 246px;
  }

  .dept-gallery-cell--d {
    width: 290px;
    height: 374px;
    margin-top: -87px;
  }

  .dept-gallery-item {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .bg {
    background: url('../image/web/zjtdBg.png') no-repeat center bottom / 100% auto;
    background-size: 100%;
    height: 332px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    margin-top: -370px;
  }

  .bg img {
    width: 100%;
  }

  /* About us */
  .about-us-section {
    position: relative;
    width: 100%;
    height: auto;
    padding: 88px 0 100px;
    background: #005bac;
    overflow: hidden;
  }

  .about-us-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('../image/web/mapBg.png') center center / min(120%, 1800px) auto no-repeat;
    pointer-events: none;
  }

  .about-us-inner {
    position: relative;
    z-index: 1;
    max-width: 1560px;
    margin: 0 auto;
    padding: 0 48px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
    gap: 56px 72px;
    align-items: center;
  }

  .about-us-heading {
    margin: 0 0 28px;
    font-family: 'Times New Roman', Times, 'Songti SC', serif;
    font-size: 56px;
    font-weight: 700;
    line-height: 1.1;
    color: #ffffff;
  }

  .about-us-text {
    margin: 0 0 36px;
    max-width: 800px;
    font-family: Arial;
    font-weight: 400;
    font-size: 18px;
    color: #FFFFFF;
    line-height: 28px;
  }

  .about-us-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 36px;
    border-radius: 999px;
    background: #ffffff;
    color: #0b5fb8;
    font-family: Arial, 'Helvetica Neue', 'PingFang SC', sans-serif;
    font-size: 17px;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }

  .about-us-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
  }

  .about-us-cta-arrow {
    font-size: 1.1em;
    line-height: 1;
  }

  .about-us-visual {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .about-us-visual img {
    width: 100%;
    max-width: 587px;
    height: auto;
    display: block;
  }

  @media (max-width: 1024px) {
    .about-us-inner {
      grid-template-columns: 1fr;
      gap: 48px;
      padding: 0 28px;
    }

    .about-us-text {
      max-width: none;
    }

    .about-us-visual img {
      max-width: 520px;
      margin: 0 auto;
    }
  }

  @media (max-width: 600px) {
    .about-us-section {
      padding: 56px 0 64px;
    }

    .about-us-heading {
      font-size: 40px;
    }

    .about-us-text {
      font-size: 16px;
    }
  }

  /* é¡µè„šï¼ˆæŒ‰è®¾è®¡å›¾ï¼‰ */
  .site-footer {
    background: #0b5fb8;
    color: rgba(255, 255, 255, 0.92);
    padding: 0;
    height: 527px;
    overflow: hidden;
  }

  .site-footer-wave {
    padding-top: 40px;
  }

  .site-footer-wave img {
    width: min(465px, 86vw);
    height: auto;
    display: block;
    margin: 0 auto;
    padding-top: 18px;
    padding-bottom: 6px;
  }

  .site-footer-inner {
    max-width: 1560px;
    margin: 0 auto;
    padding: 28px 24px 18px;
    text-align: center;
  }

  .site-footer-brand {
    display: flex;
    justify-content: center;
    margin: 6px 0 18px;
  }

  .site-footer-logo {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.2px;
    opacity: 0.95;
  }

  .site-footer-nav {
    display: flex;
    justify-content: space-between;

    font-family: Arial;
    font-weight: bold;
    font-size: 18px;
    color: #FFFFFF;
  }

  .site-footer-nav a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: opacity 0.2s ease;
    color: #fff!important;
  }

  .site-footer-nav a:hover {
    opacity: 0.85;
  }

  .site-footer-social {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin: 10px 0 16px;
    margin-top: 54px;
  }

  .site-footer-social-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.16);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, transform 0.2s ease;
  }

  .site-footer-social-btn:hover {
    background: rgba(255, 255, 255, 0.24);
    transform: translateY(-1px);
  }

  .site-footer-social-btn img {
    width: 24px;
    height: 24px;
    object-fit: contain;
    display: block;
  }

  .site-footer-contact {
    font-size: 11px;
    opacity: 0.92;
    display: grid;
    gap: 8px;
    justify-items: center;
    margin: 8px 0 14px;
  }

  .site-footer-contact span {
    font-family: Arial;
    font-weight: 400;
    font-size: 16px;
    color: #FFFFFF;
  }

  .site-footer-contact-row {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    max-width: 980px;
  }

  .site-footer-contact-icon {
    width: 12px;
    height: 12px;
    object-fit: contain;
    display: block;
    flex-shrink: 0;
    opacity: 0.95;
  }

  .site-footer-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.16);
    margin: 28px auto 12px;
    max-width: 980px;
  }

  .site-footer-copyright {
    font-size: 11px;
    opacity: 0.85;
    padding-bottom: 8px;
    height: 88px;
    line-height: 59px;
  }

  @media (max-width: 600px) {
    .site-footer-inner {
      padding: 24px 16px 16px;
    }

    .site-footer {
      height: auto;
      overflow: hidden;
    }

    .site-footer-nav {
      display: grid;
      grid-template-columns: 1fr 1fr;
      justify-items: center;
      gap: 18px 24px;
      font-size: 14px;
    }

    .site-footer-social {
      margin-top: 26px;
      gap: 12px;
      margin-bottom: 18px;
    }

    .site-footer-social-btn {
      width: 36px;
      height: 36px;
    }

    .site-footer-social-btn img {
      width: 16px;
      height: 16px;
    }

    .site-footer-wave img {
      width: min(280px, 82vw);
      padding-top: 10px;
      padding-bottom: 0;
    }

    .site-footer-contact {
      margin-top: 8px;
      margin-bottom: 10px;
      gap: 10px;
    }

    .site-footer-contact span {
      font-size: 12px;
      line-height: 1.45;
      text-align: center;
    }

    .site-footer-contact-row {
      justify-content: center;
      max-width: 340px;
    }

    .site-footer-divider {
      margin: 18px auto 12px;
      max-width: 320px;
    }

    .site-footer-copyright {
      height: auto;
      line-height: 1.6;
      padding-bottom: 0;
      max-width: 360px;
      margin: 0 auto;
      font-size: 11px;
    }
  }

  /* å…¥åœºåŠ¨ç”»åŸºç¡€æ ·å¼ */
  .section-animate {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }

  .section-animate.is-visible {
    opacity: 1;
    transform: translateY(0);
  }

  /* åŒ»é™¢æ•°æ® / ç§‘ç ” åŒå¡ç‰‡ */
  .stats-research-panel {
    width: 100%;
    background: #ffffff;
    padding: 80px 0 80px;
    height: auto;
  }

  .stats-research-wrap {
    /* max-width: 1560px; */
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: stretch;
  }

  .stats-card {
    background: #b8a46b;
    padding: 80px;
    display: flex;
    flex-direction: column;
    min-height: 520px;
    box-sizing: border-box;
  }

  .stats-card-intro {
    text-align: left;
    font-family: Playfair Display;
    font-weight: bold;
    font-size: 28px;
    color: #FFFFFF;
    line-height: 36px;
  }

  .stats-carousel {
    display: flex;
    align-items: center;
    gap: 14px;
    flex: 1;
    margin-bottom: 32px;
  }

  /* æ¸…é™¤ .stats-nav æŒ‰é’®çš„æ‰€æœ‰é»˜è®¤æ ·å¼ */
  .stats-nav {
    width: 60px;
    height: 60px;
    transition: background 0.2s ease;

    /* æ¸…é™¤é»˜è®¤æ ·å¼å¼€å§‹ */
    padding: 0;
    margin: 0;
    border: none;
    background: transparent;
    outline: none;
    box-shadow: none;
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    font: inherit;
    color: inherit;
  }

  /* æ¸…é™¤ç‚¹å‡»/èšç„¦é»˜è®¤é«˜äº® */
  .stats-nav:focus,
  .stats-nav:active {
    outline: none;
    box-shadow: none;
  }

  .stats-nav:hover {
    background: rgba(0, 0, 0, 0.42);
  }

  .stats-nav img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
  }

  .stats-slides {
    flex: 1;
    min-width: 0;
    min-height: 394px;
  }

  .stats-slide {
    display: none;
    animation: statsSlideFade 0.35s ease;
  }

  .stats-slide.is-active {
    display: block;
  }

  @keyframes statsSlideFade {
    from {
      opacity: 0;
    }

    to {
      opacity: 1;
    }
  }

  .stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    text-align: center;
    height: 394px;
  }

  .stats-cell {
    padding: 26px 14px;
    border-right: 1px solid rgba(255, 255, 255, 0.4);
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .stats-cell:nth-child(2n) {
    border-right: none;
  }

  .stats-cell:nth-child(n + 3) {
    border-bottom: none;
  }

  .stats-value {
    font-family: PlayfairDisplay;
    font-weight: 900;
    font-size: 48px;
    color: #FFFFFF;
  }

  .stats-label {
    font-family: Arial;
    font-weight: 400;
    font-size: 20px;
    color: #f0ebdf;
    line-height: 28px;
  }

  .stats-explore {
    font-family: Playfair Display;
    font-weight: bold;
    font-size: 28px;
    color: #FFFFFF;
    line-height: 36px;
    text-decoration-line: underline;
    text-align: center;
  }

  .stats-explore:hover {
    opacity: 0.92;
  }

  .research-card {
    background: #10a66f;
    padding: 80px;
    display: flex;
    flex-direction: column;
    min-height: 520px;
    box-sizing: border-box;
    position: relative;
  }

  .research-card-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
  }

  .research-card-title {
    font-family: Playfair Display;
font-weight: bold;
font-size: 48px;
color: #FFFFFF;
  }

  .research-scan-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.96);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    flex-shrink: 0;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
    transition: transform 0.2s ease;
  }

  .research-scan-btn:hover {
    transform: scale(1.05);
  }

  .research-scan-btn img {
    width: 22px;
    height: 22px;
    object-fit: contain;
    display: block;
  }

  .research-card-body {
    width: 100%;
    height: 100%;
  }

  .research-card-body img {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
  }

  /* ç§»åŠ¨ç«¯é€‚é… */
  @media (max-width: 768px) {
    .stats-research-panel {
      padding: 40px 0 56px;
    }

    .stats-research-wrap {
      grid-template-columns: 1fr;
      padding: 0 20px;
      gap: 16px;
    }

    .stats-card,
    .research-card {
      min-height: 0;
      padding: 32px 22px 28px;
    }

    .stats-card-intro {
      font-size: 18px;
      margin-bottom: 28px;
    }

    .stats-carousel {
      flex-direction: column;
      gap: 12px;
    }

    .stats-nav {
      width: 30px;
      height: 30px;
    }

    .stats-value {
      font-size: 32px;
    }

    .stats-label {
      font-size: 13px;
      max-width: none;
    }

    .research-card-title {
      font-size: 36px;
    }

    .hospital-gallery-section {
      padding: 36px 0 44px;
    }

    .hospital-gallery-inner {
      padding: 0 16px;
    }

    .hospital-gallery-swiper .swiper-slide {
      width: 600px;
      max-width: 300px;
    }
  }

  /* æ‰‹æœºç«¯ï¼ˆæŒ‰æˆªå›¾ï¼‰: stats å¡ç‰‡å¸ƒå±€ */
  @media (max-width: 600px) {
    .stats-research-wrap {
      padding: 0 16px;
      height: 990px;
    }

    .stats-card {
      padding: 10px;
      min-height: 0;
      height: 600px;
      padding-bottom: 30px;
    }

    .stats-card-intro {
      font-size: 18px;
      line-height: 26px;
      margin-bottom: 22px;
    }

    .stats-carousel {
      flex-direction: row;
      gap: 14px;
      margin-bottom: 18px;
      align-items: center;
    }

    .stats-nav {
      width: 30px;
      height: 30px;
      background: rgba(0, 0, 0, 0.28);
      border-radius: 4px;
    }
    .stats-cell .stats-value {
      font-size: 28px;
    }

    .stats-nav:hover {
      background: rgba(0, 0, 0, 0.42);
    }

    .stats-slides {
      min-height: 0;
    }

    .stats-grid {
      height: auto;
      min-height: 310px;
    }

    .stats-cell {
      padding: 22px 10px;
    }

    .stats-value {
      font-size: 40px;
    }

    .stats-label {
      font-size: 12px;
      line-height: 18px;
    }

    .stats-explore {
      font-size: 22px;
      line-height: 30px;
      margin-top: 6px;
    }
  }

  /* åŒ»é™¢é£Žé‡‡æ¨ªå‘è½®æ’­ */
  .hospital-gallery-section {
    width: 100%;
    padding: 0 0 100px;
    background: #ffffff;
    overflow: hidden;
  }

  .hospital-gallery-inner {
    /* max-width: 1560px; */
    margin: 0 auto;
    padding: 0 24px;
    height: 420px;
  }

  .hospital-gallery-swiper {
    overflow: visible;
  }

  .hospital-gallery-swiper .swiper-slide {
    width: 600px;
    height: 420px;
    height: auto;
  }

  .hospital-gallery-frame {
    border-radius: 14px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    background: #e8eef5;
    box-shadow: 0 8px 24px rgba(15, 45, 80, 0.08);
    width: 600px;
    height: 420px;
  }

  .hospital-gallery-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }