a {
  text-decoration: none;
  color: #fff;
}

/* å¯¼èˆªæ  */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  background-color: #333;
  color: #fff;
}

/* å¯¼èˆªæ ä¸­çš„é“¾æŽ¥ */
.navbar a {
  color: #fff;
  margin: 0 10px;
}

/* å¯¼èˆªæ ä¸­çš„é“¾æŽ¥æ‚¬åœçŠ¶æ€ */
.navbar a:hover {
  color: #ddd;
}

/* æ‰‹æœºç«¯ä¸‹æ‹‰èœå•ï¼šæ¡Œé¢ç«¯éšè— */
.mobile-menu-overlay {
  display: none;
}

/* è½®æ’­å®¹å™¨ */
.carousel-container {
  position: relative;
  width: 1200px;
  height: 600px;
  margin: 50px auto;
  /* overflow: hidden; */
  /* è®©å±‚å å…ƒç´ ä¸è¶…å‡ºå®¹å™¨ */
  perspective: 1500px;
  margin-top: 0px;
  margin-bottom: 0px;
  /* å¢žåŠ 3Dé€è§†æ„Ÿ */
}

/* è½®æ’­å›¾ç‰‡åˆ—è¡¨ */
.carousel-list {
  position: relative;
  width: 100%;
  height: 100%;
  list-style: none;
}

/* è½®æ’­é¡¹æ ·å¼ */
.carousel-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 80%;
  height: 80%;
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
  /* å¹³æ»‘è¿‡æ¸¡ */
  /* box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15); */
  cursor: pointer;
  /* é¼ æ ‡æ‚¬æµ®æ˜¾ç¤ºæ‰‹åž‹ */
  /* opacity: 0.8; */
  /* éžä¸»å›¾é€æ˜Žåº¦ */
  z-index: 1;
  /* é»˜è®¤å±‚çº§ */
}

/* ä¸»å›¾æ ·å¼ï¼ˆå½“å‰æ˜¾ç¤ºçš„å›¾ç‰‡ï¼‰ */
.carousel-item.active {
  left: 17%;
  top: 10%;
  width: 800px;
  height: 450px;
  opacity: 1;
  z-index: 10;
  /* ä¸»å›¾å±‚çº§æœ€é«˜ */
  transform: scale(1);
}

/* å·¦ä¾§é¢„è§ˆå›¾ */
.carousel-item.prev {
  left: -10%;
  top: 15%;
  width: 60%;
  height: 70%;
  transform: scale(0.8) rotateY(15deg);
  z-index: 5;
}

/* å³ä¾§é¢„è§ˆå›¾ */
.carousel-item.next {
  left: 50%;
  top: 15%;
  width: 60%;
  height: 70%;
  transform: scale(0.8) rotateY(-15deg);
  z-index: 5;
}

/* æ›´å¤–ä¾§çš„é¢„è§ˆå›¾ï¼ˆå¯é€‰ï¼Œå¢žåŠ å±‚æ¬¡æ„Ÿï¼‰ */
.carousel-item.prev-prev {
  left: -22%;
  top: 20%;
  width: 50%;
  height: 60%;
  transform: scale(0.7) rotateY(20deg);
  z-index: 2;
  opacity: 0.6;
}

.carousel-item.next-next {
  left: 73%;
  top: 20%;
  width: 50%;
  height: 60%;
  transform: scale(0.7) rotateY(-20deg);
  z-index: 2;
  opacity: 0.6;
}

/* å›¾ç‰‡æ ·å¼ */
.carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* ä¿æŒå›¾ç‰‡æ¯”ä¾‹ */
}

/* åˆ‡æ¢æŒ‰é’® */
.carousel-btn {
  /* åŸºç¡€é‡ç½® */
  all: unset;

  /* æˆ–åˆ†åˆ«é‡ç½® */
  background: none;
  border: none;
  margin: 0;
  padding: 0;
  font: inherit;
  color: inherit;
  line-height: inherit;
  text-align: inherit;
  cursor: pointer;
  outline: none;
  user-select: none;

  /* åŽ»é™¤ç‚¹å‡»æ•ˆæžœ */
  -webkit-tap-highlight-color: transparent;

  /* ç¡®ä¿æ­£å¸¸æ˜¾ç¤º */
  display: inline-block;
  box-sizing: border-box;


  position: absolute;
  top: 44%;
  z-index: 999999;
  /* transform: translateY(-50%); */
  /* width: 50px; */
  /* height: 50px; */
  /* background-color: rgba(255, 255, 255, 0.8);
    border: none;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    z-index: 99;
    transition: background-color 0.3s; */
}

.carousel-btn:hover,
.carousel-btn:active,
.carousel-btn:focus {
  background-color: transparent;
}

/* .prev-btn {
    left: 20px;
} */

.next-btn {
  right: 20px;
}

/* é¢„è§ˆæŒ‡ç¤ºå™¨ï¼ˆå¯é€‰ï¼‰ */
.carousel-indicators {
  position: absolute;
  bottom: 35px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 99;
}

.indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #b268b7;
  cursor: pointer;
  transition: background-color 0.3s;
}

.indicator.active {
  /* background-color: #fff; */

  width: 20px;
  height: 10px;
  background: #fff;
  border-radius: 5px;
}



/* å¤§å±å¹• */

* {
  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;
}

div {
  font-family: "Microsoft YaHei", "å¾®è½¯é›…é»‘", sans-serif;
}

a {
  font-family: "Microsoft YaHei", "å¾®è½¯é›…é»‘", sans-serif;
}

/* åŒ»é™¢å®£ä¼ é¡µé¢å®¹å™¨ */
.hospital-promo {
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

/* é¡¶éƒ¨å¯¼èˆªæ æ ·å¼ */
.site-header {
  height: 139px;
  width: 100%;
  background: #fff;
  /* padding: 20px 0; */
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  position: relative;
  z-index: 100;
}

.header-container {
  max-width: 1560px;
  margin: 0 auto;
  /* padding: 0 40px; */
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  height: 100%;
}

/* å·¦ä¾§ï¼šLogoå’ŒåŒ»é™¢åç§° */
.header-left {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.logo-wrapper {
  width: 457px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.logo-icon {
  width: 100%;
  height: 100%;
  object-fit: contain;
  cursor: pointer;
}

.hospital-name {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hospital-name-cn {
  font-size: 24px;
  font-weight: 700;
  color: #00AEEB;
  line-height: 1.2;
  font-family: "Microsoft YaHei", "å¾®è½¯é›…é»‘", sans-serif;
}

.hospital-name-en {
  font-size: 12px;
  font-weight: 400;
  color: #666;
  letter-spacing: 1px;
  line-height: 1.2;
  font-family: Arial, sans-serif;
}

/* ä¸­é—´å³ä¾§ï¼šæœç´¢æ¡† */
.header-center {
  width: 320px;
  display: flex;
  justify-content: flex-end;
  max-width: 400px;
  margin-right: 44px;
}

.search-box {
  position: relative;
  width: 100%;
  max-width: 320px;
}

.search-input {
  width: 100%;
  height: 48px;
  padding: 0 40px 0 16px;
  border: 1px solid #E5E7EB;
  border-radius: 4px;
  font-size: 18px;
  color: #091B33;
  border-radius: 24px;
  outline: none;
  transition: border-color 0.3s ease;
}

.search-input:focus {
  border-color: #00AEEB;
}

.search-input::placeholder {
  color: #9CA3AF;
}

.search-icon {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  cursor: pointer;
}

/* å³ä¾§ï¼šæŒ‰é’®ç»„ */
.header-right {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  height: 48px;
}

.header-btn {
  width: 150px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 4px;
  /* padding: 8px 16px; */
  border: none;
  border-radius: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
  background: transparent;
  min-width: 80px;
  height: 100%;
  margin-right: 20px;
}

.public-btn {
  background: #75207D;
  color: #fff;
}

/* .public-btn:hover {
  background: #7a1d82;
} */

.english-btn {
  border-right: 1px solid #e8eff7;
  color: #00AEEB;
}

.english-btn a {
  color: #00AEEB;
}

.english-btn:hover a {
  color: #fff;
}

.english-btn:hover {
  background: #00AEEB;
  color: #fff;
}

.btn-icon {
  width: 36px;
  height: 32px;
  object-fit: contain;
}

.btn-text {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
}

/* å¯¼èˆªæ æ ·å¼ */
.site-navigation {
  width: 100%;
  background: #fff;
  border-top: 1px solid #E5E7EB;
  padding: 0;
  position: relative;
  z-index: 99;
}

.nav-container {
  max-width: 1560px;
  margin: 0 auto;
  /* padding: 0 40px; */
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  height: 80px;
  line-height: 80px;
}

.nav-item {
  font-size: 20px;
  color: #091B33;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
  position: relative;
  transition: color 0.3s ease;
  font-family: "Microsoft YaHei", "å¾®è½¯é›…é»‘", sans-serif;
}

.nav-item:hover {
  color: #00AEEB;
}

.nav-item-active {
  color: #0BB1EC;
  font-weight: 500;
}

.nav-item-active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: #00AEEB;
  border-radius: 2px 2px 0 0;
}

/* é¡¶éƒ¨å¯¼èˆª - åŒ»é™¢æ¦‚å†µä¸‹æ‹‰ */
.nav-item--with-dropdown {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
}

.nav-item__link {
  font-size: 20px;
  color: #091B33;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
  position: relative;
  line-height: 80px;
}

.nav-item--with-dropdown .nav-item__link.nav-item-active {
  color: #00AEEB;
}

.nav-item--with-dropdown .nav-item__link.nav-item-active::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: #00AEEB;
  border-radius: 2px 2px 0 0;
}

.nav-dropdown {
  position: absolute;
  top: 80px;
  left: 50%;
  transform: translateX(-50%);
  padding-top: 12px;
  display: none;
  z-index: 90;
}

.nav-dropdown-inner {
  width: 180px;
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(9, 27, 51, 0.12);
  border-radius: 0 0 4px 4px;
  overflow: hidden;
  padding: 10px 0;
  box-sizing: border-box;
}

.nav-dropdown-item {
  /* height: 48px; */
  line-height: 48px;
  font-size: 16px;
  color: #091B33;
  text-align: center;
  padding: 10px 0;
  cursor: pointer;
  text-wrap: wrap;
  display: block;
  text-decoration: none;
}

.nav-dropdown-item:hover {
  background: #00AEEB;
  color: #fff;
}

.nav-dropdown-item--active {
  background: #00AEEB;
  color: #ffffff;
}

.nav-dropdown-item--active:hover {
  background: #00AEEB;
  color: #ffffff;
}

.nav-item--with-dropdown:hover .nav-dropdown {
  display: block;
}

/* æ‚¬åœå°±åŒ»æŒ‡å—ç­‰ä¸‹æ‹‰ä¸»é¡¹æ—¶ï¼Œé«˜äº®æ–‡å­—ä¸Žä¸‹åˆ’çº¿ */
.nav-item--with-dropdown:hover .nav-item__link {
  color: #00AEEB;
}

.nav-item--with-dropdown:hover .nav-item__link::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: #00AEEB;
  border-radius: 2px 2px 0 0;
}

/* é¡¶éƒ¨åŒ»é™¢ç…§ç‰‡åŒºåŸŸ */
.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;
}

/* banner */
/* è½®æ’­å®¹å™¨ */
.expert-banner {
  /* height: 638px; */
  width: 100%;
  max-width: 1560px;
  margin: 0px auto;
  position: relative;
  overflow: hidden;
  padding-top: 79px;
  margin-bottom: -160px;
}

.bg {
  /* æ–¹æ¡ˆAï¼šè´´åº•ï¼Œå®½åº¦100%ï¼Œé«˜åº¦è‡ªé€‚åº” */
  background: url('../../image/en/web/zjtdBg.png') no-repeat center bottom / 100% auto;
  background-size: 100%;
  height: 332px;
  display: flex;
  align-items: flex-end;
  /* åž‚ç›´æ–¹å‘åº•éƒ¨å¯¹é½ */
  justify-content: center;
  /* æ°´å¹³å±…ä¸­ï¼Œå¯æ ¹æ®éœ€è¦è°ƒæ•´ */
}

.bg img {
  width: 100%;
}

/* æ ‡é¢˜ */
.banner-title img {
  width: 216px;
  height: 87px;
}

/* è½®æ’­å†…å®¹å®¹å™¨ */
.expert-slider {
  display: flex;
  align-items: center;
  height: 530px;
  gap: 20px;
  transition: transform 0.5s ease;
  position: relative;
  z-index: 1;
}

/* ä¸“å®¶å¡ç‰‡ - æ™®é€šçŠ¶æ€ */
.expert-card {
  width: 180px;
  height: 280px;
  background: #F9F9F9;
  border-radius: 8px;
  padding: 10px;
  text-align: center;
  /* opacity: 0.8; */
  transition: all 0.3s ease;
  flex-shrink: 0;
  /* é˜²æ­¢å¡ç‰‡æ”¶ç¼© */
}

.zjtdBg {
  /* width: 100%;
  position: relative;
  z-index: 1;
  background-image: url(../../image/en/web/zjtdImgBg.png);
  background-size: 100% 30px;
  background-position: bottom left;
  background-repeat: no-repeat;
  padding-bottom: 30px; */
}

.zjtdBg img {
  width: 100%;
  height: auto;
  display: block;
}

.expert-card img {
  /* width: 120px; */
  height: 300px;
  /* background-color: #409eff; */
  /* å…³é”®ï¼šä»…è®¾ç½®åº•éƒ¨å·¦å³åœ†è§’ï¼Œå½¢æˆåº•éƒ¨å¼§å½¢è¾¹çº¿ */
  /* æ•°å€¼è¶Šå¤§ï¼Œå¼§å½¢è¶Šæ˜Žæ˜¾ï¼Œå¯æ ¹æ®éœ€è¦è°ƒæ•´ */
  border-bottom-left-radius: 50% 20px;
  border-bottom-right-radius: 50% 20px;
  margin-bottom: 30px;
}

.expert-name {
  font-size: 16px;
  font-weight: bold;
  color: #333;
  margin-bottom: 5px;
  display: flex;
  justify-content: center;
}

.expert-dept {
  font-size: 18px;
  color: #091B33;
  margin-top: 8px;
  opacity: 0.8;
  font-weight: normal;
  margin-left: 10px;
}

.expert-desc {
  font-size: 16px;
  color: #091B33;
  line-height: 1.4;
  text-align: left;
  margin-top: 15px;
  padding: 0 10px;
  box-sizing: border-box;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  /* æŽ§åˆ¶æ˜¾ç¤ºçš„è¡Œæ•° */
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-word;
  /* é˜²æ­¢é•¿å•è¯æˆ–URLç ´åå¸ƒå±€ */
}

/* ä¸“å®¶å¡ç‰‡ - å½“å‰é«˜äº®çŠ¶æ€ */
.expert-card1.active {
  width: 708px;
  height: 530px;
  background: url('../../image/en/web/zjtdImgHua.png') center no-repeat;
  background-color: #00AEEB;
  background-position: bottom right;
}

/* éžactiveçŠ¶æ€ï¼šéšè—activeCardï¼Œæ˜¾ç¤ºæ™®é€šå†…å®¹ */
.expert-card1:not(.active) .activeCard {
  display: none;
}

/* .expert-card1:not(.active) > .zjtdBg,
.expert-card1:not(.active) > .expert-name,
.expert-card1:not(.active) > .expert-dept,
.expert-card1:not(.active) > .expert-desc {
  display: block;
}
 */
/* activeçŠ¶æ€ï¼šæ˜¾ç¤ºactiveCardï¼Œéšè—æ™®é€šå†…å®¹ */
.expert-card1.active .activeCard {
  display: flex;
}

.expert-card1.active>.zjtdBg,
.expert-card1.active>.expert-name,
.expert-card1.active>.expert-dept,
.expert-card1.active>.expert-desc {
  display: none;
}

.expert-card1 .activeCard .expert-name {
  display: flex;
  justify-content: flex-start;
}

.activeCard .expert-dept {
  display: flex;
  justify-content: flex-start;
}

.activeCard .activeInfo {
  padding: 40px 33px;
  padding-bottom: 20px;
  box-sizing: border-box;
}

.activeCard .expert-desc {
  padding: 0;
  font-size: 16px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 10;
  /* æŽ§åˆ¶æ˜¾ç¤ºçš„è¡Œæ•° */
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-word;
  /* é˜²æ­¢é•¿å•è¯æˆ–URLç ´åå¸ƒå±€ */
}

.activeCard .zjtdBg {
  width: 320px;
  height: 485px;
}

.activeCard .zjtdBg img {
  width: 100%;
  height: 100%;
}

.activeBtn {
  width: 160px;
  height: 48px;
  background: rgba(255, 255, 255, 0);
  border-radius: 8px;
  border: 1px solid #FFFFFF;
  font-size: 16px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.activeBtn img {
  width: 20px;
  height: 20px;
  margin-bottom: 0px;
  margin-left: 8px;
  display: block;
  margin-top: 4px;
}

.activeInfo {
  flex: 1;
  flex-shrink: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.expert-card.active .expert-name,
.expert-card.active .expert-dept,
.expert-card.active .expert-desc {
  color: #fff;
}

.expert-card.active .reserve-btn {
  display: block;
  margin-top: 10px;
  padding: 5px 15px;
  background: #fff;
  color: #80299A;
  border: none;
  border-radius: 20px;
  font-size: 14px;
  cursor: pointer;
}

/* é¢„çº¦æŒ‰é’®é»˜è®¤éšè— */
.reserve-btn {
  display: none;
}

/* åˆ‡æ¢æŒ‰é’® */
.slider-btn {
  position: absolute;
  top: 96px;
  width: 60px;
  height: 60px;
}

.prev-btn {
  right: 100px;
}

.next-btn {
  /* right: 10px; */
}

/* æŸ¥çœ‹æ›´å¤šæŒ‰é’® */
.more-btn1 {
  display: block;
  margin: 0 auto;
  width: 200px;
  height: 50px;
  background: rgba(130, 44, 37, 0);
  border-radius: 25px;
  border: 2px solid #00AEEB;
  margin-top: 80px;
  position: relative;
  z-index: 10;
  cursor: pointer;
  color: #00AEEB;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
}

.more-btn1:hover {
  background-color: #00AEEB;
  color: #Fff;
}

.more-btn1 img {
  width: 24px;
  height: 24px;
  display: block;
  margin-top: 4px;
}

/* é»˜è®¤æ˜¾ç¤º blueRight.pngï¼Œéšè— rightIcon1.png */
.more-btn1 .more-btn-icon-default {
  display: block;
}

.more-btn1 .more-btn-icon-hover {
  display: none;
}

/* hover æ—¶æ˜¾ç¤º rightIcon1.pngï¼Œéšè— blueRight.png */
.more-btn1:hover .more-btn-icon-default {
  display: none;
}

.more-btn1:hover .more-btn-icon-hover {
  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;
}

/* è‡ªå®šä¹‰åˆ†é¡µå™¨æ ·å¼ */
.custom-pagination {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  z-index: 10;
}

.custom-pagination-item {
  width: 90px;
  height: 4px;
  background: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: visible;
}

.custom-pagination-item:hover:not(.active) {
  background: rgba(255, 255, 255, 0.9);
  transform: scale(1.1);
}

/* æ¿€æ´»çŠ¶æ€ï¼šéšè—ç™½è‰²åœ†ç‚¹ï¼Œæ˜¾ç¤ºå›¾ç‰‡ */
.custom-pagination-item.active {
  width: 180px;
  height: 4px;
  background-color: #75207D;

  /* width: auto;
  height: auto;
  min-width: 32px;
  min-height: 32px;
  background: transparent !important;
  transform: scale(1); */
}

/* å›¾ç‰‡é»˜è®¤éšè—ï¼ˆéžæ¿€æ´»çŠ¶æ€ï¼‰ */
/* æ³¨æ„ï¼šå›¾ç‰‡çš„æ˜¾ç¤º/éšè—ç”±JavaScriptæŽ§åˆ¶ */
.custom-pagination-icon {
  display: none;
  width: auto;
  height: auto;
  max-width: 32px;
  max-height: 32px;
  object-fit: contain;
}

/* éšè—é»˜è®¤çš„Swiperåˆ†é¡µå™¨ */
.banner-swiper .swiper-pagination {
  display: none !important;
}

/* åº•éƒ¨æœåŠ¡å¯¼èˆªåŒºåŸŸ */
.bottom-service-nav {
  width: 100%;
  background: #fff;
  padding: 100px 0 120px;
}

.bottom-service-cards {
  width: 100%;
  max-width: 1560px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 22px;
}

.bottom-service-card {
  position: relative;
  height: 353px;
  width: 528px;
  border-radius: 5px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #fff;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.bottom-service-card:hover {
  transform: translateY(-3px);
  /* box-shadow: 0 12px 22px rgba(16, 56, 96, 0.16); */
}

.bottom-service-card--left {
  background: url("../../image/en/web/bannerbottom/icon1Bg.png") center/cover no-repeat;
}

.bottom-service-card--right {
  /* background: url("../../image/en/web/bannerbottom/icon2Bg.png") center/cover no-repeat; */
  background-color: #AD925E;
}

/* ç§»å…¥æ—¶éšè—åŽŸæœ¬çš„èƒŒæ™¯åº•å›¾ï¼Œä»…å±•ç¤º hover ç…§ç‰‡å±‚ */
.bottom-service-card--right:hover {
  background-image: none;
  background-color: transparent;
}

/* å³ä¾§å¡ç‰‡ï¼šhover æ—¶åˆ‡æ¢ä¸ºâ€œç…§ç‰‡å¡â€æ•ˆæžœï¼ˆæŒ‰æˆªå›¾ï¼‰ */
.bottom-service-card--right::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../../image/en/web/bannerbottom/img1.png") center/cover no-repeat;
  opacity: 0;
  transition: opacity 0.25s ease;
  z-index: 1;
  height: 100%;
  pointer-events: none;
  height: 313px;
  margin-left: -90px;
  border-radius: 5px;
}

.bottom-service-card--right>* {
  position: relative;
  z-index: 2;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.bottom-service-card--right:hover::after {
  opacity: 1;
}

.bottom-service-card--right:hover {
  width: 585px;
  margin-left: -90px;
}

.bottom-service-card--right:hover>* {
  opacity: 0;
  transform: translateY(6px);
  pointer-events: none;
}

/* é»˜è®¤â€œç§»å…¥æ€â€ï¼šç­‰ä»·äºŽ hover */
.bottom-service-card--right.is-hover {
  background-image: none;
  background-color: transparent;
  width: 585px;
  margin-left: -90px;
}

.bottom-service-card--right.is-hover::after {
  opacity: 1;
  transform: translateX(0);
}

.bottom-service-card--right.is-hover>* {
  opacity: 0;
  transform: translateY(6px);
  pointer-events: none;
}

.bottom-service-card--center {
  display: block;
  background: #fff;
  margin-left: -80px;
  height: 313px !important;
  border-radius: 15px;
}

.bottom-service-card--center img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.pcImg {
  display: none;
}

.bottom-service-card__icon {
  width: 120px;
  height: 120px;
  object-fit: contain;
  margin-bottom: 20px;
}

.bottom-service-card__title {
  margin: 0;
  font-size: 30px;
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: 0.2px;
}

.bottom-service-card__desc {
  margin: 22px 0 0;
  width: 82%;
  font-size: 18px;
  line-height: 1.45;
  text-align: center;
  color: rgba(255, 255, 255, 0.92);
}

/* ç¬¬äºŒä¸ª banner */
.overview-banner-section {
  width: 100%;
  /* background: url("../../image/en/web/bannerTow/mapBg.png") center/cover no-repeat; */
  background: url("../../image/en/web/bannerTow/mapBg.png") no-repeat left 0 top 57px / cover;
  /* background-attachment: fixed; */
  /* background-position: top; */
  background-color: #75207D;
  background-size: 100%;
  /* padding: 36px 0 48px; */
  position: relative;
  overflow: hidden;
  /* border-radius: 200px 0 0 0; */
  height: 1370px;
}

.overview-swiper {
  width: 100%;
  max-width: 1560px;
  margin: 0 auto;
  padding-bottom: 40px;
  /* background: url("../../image/en/web/bannerTow/mapBg.png") center/cover no-repeat; */
}

.overview-banner-card {
  padding: 123px 36px 20px;
  position: relative;
  /* background: linear-gradient(180deg, rgba(21, 156, 205, 0.98) 0%, rgba(14, 148, 198, 0.98) 100%); */
}

.overview-banner-title {
  margin: 0;
  color: #fff;
  text-align: center;
  font-size: 44px;
  line-height: 1.22;
  font-weight: 700;
}

.overview-banner-content {
  margin-top: 60px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 38px;
}

.overview-banner-text {
  width: 52%;
  color: rgba(255, 255, 255, 0.88);
  font-size: 16px;
  line-height: 1.9;
}

.overview-banner-text p {
  margin: 0 0 17px;
}

.overview-banner-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 40px;
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
}

.overview-banner-image-wrap {
  width: 48%;
  padding-right: 16px;
  box-sizing: border-box;
  position: relative;
}

.overview-banner-image-wrap::after {
  content: "";
  position: absolute;
  right: 4px;
  top: 18px;
  width: calc(100% - 140px);
  height: calc(100% - 2px);
  border-radius: 0 10px 10px 10px;
  background: #f3b15e;
  z-index: 0;
}

.overview-banner-image {
  width: 100%;
  height: 553px;
  object-fit: cover;
  display: block;
  position: relative;
  z-index: 1;
}

.overview-stats-row {
  margin-top: 80px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.overview-stat-item {
  text-align: center;
  color: #fff;
}

.overview-stat-icon {
  width: 180px;
  height: 180px;
  margin: 0 auto;
  border-radius: 50%;
  border: 1px dashed #fff;
}

.overview-stat-icon img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
  margin-top: 40px;
}

.overview-stat-num {
  margin-top: 35px;
  font-size: 44px;
  line-height: 1.1;
  font-weight: 800;
}

.overview-stat-desc {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 15px;
  line-height: 1.35;
}

.overview-swiper-pagination {
  position: absolute;
  left: 50%;
  bottom: 100px !important;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  gap: 8px;
}

.overview-swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: rgba(255, 255, 255, 0.45);
  opacity: 1;
  border-radius: 2px;
}

.overview-swiper-pagination .swiper-pagination-bullet-active {
  background: #fff;
}

/* overview-stats-carouselï¼šç´¢å¼•ï¼ˆæ–¹å—ï¼šæœªæ¿€æ´»ç©ºå¿ƒï¼Œæ¿€æ´»å®žå¿ƒï¼‰ */
.overview-stats-carousel-pagination {
  position: relative !important;
  left: auto !important;
  bottom: auto !important;
  transform: none !important;
  width: auto !important;
  z-index: 5;
  margin-top: 50px;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.overview-stats-carousel-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: transparent;
  opacity: 1;
  border-radius: 0;
  border: 1.5px solid rgba(255, 255, 255, 0.95);
  box-sizing: border-box;
}

.overview-stats-carousel-pagination .swiper-pagination-bullet-active {
  background: #fff;
  border-color: #fff;
}

/* ç¬¬äºŒä¸ª banner ä¸‹æ–¹ï¼šç¬¬ä¸€è¡Œ 1:1:2ï¼Œç¬¬äºŒè¡Œ 1:1:1:1 */
.banner-tow-bottom {
  width: 100%;
  /* background: #e8eef1; */
  padding: 0 0 48px;
  box-sizing: border-box;
}

.banner-tow-bottom-inner {
  width: 100%;
  /* max-width: 1560px; */
  margin: 0 auto;
  padding: 0 0;
}

.banner-tow-bottom-rows {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: rgba(255, 255, 255, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.banner-tow-bottom-row {
  display: grid;
  width: 100%;
  min-width: 0;
}

.banner-tow-bottom-row--top {
  grid-template-columns: 1fr 1fr 2fr;
}

.banner-tow-bottom-row--bottom {
  grid-template-columns: repeat(4, 1fr);
}

.banner-tow-bottom-row--top>.banner-tow-bottom-cell:not(.banner-tow-bottom-cell--wide) {
  aspect-ratio: 480 / 440;
}

.banner-tow-bottom-row--top>.banner-tow-bottom-cell--wide {
  /* aspect-ratio: 960 / 440; */
}

.banner-tow-bottom-row--bottom>.banner-tow-bottom-cell {
  aspect-ratio: 480 / 440;
}

.banner-tow-bottom-cell {
  position: relative;
  /* overflow: hidden; */
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-sizing: border-box;
}

.banner-tow-bottom-cell--photo {
  /* background: #fff; */
}

.banner-tow-bottom-cell--photo img {
  width: 100%;
  height: 100%;
  /* object-fit: cover; */
  object-fit: fill;
  display: block;
}

.banner-tow-bottom-big-half {
  width: 100%;
  height: 100%;
  background: url("../../image/en/web/bannerTowBottom/bannerBig.png") no-repeat;
  background-size: 200% 100%;
}

.banner-tow-bottom-big-half--left {
  background-position: 0% center;
}

.banner-tow-bottom-big-half--right {
  background-position: 100% center;
}

.banner-tow-bottom-label {
  position: relative;
  z-index: 1;
  font-size: 42px;
  font-weight: 700;
  color: #fff;
  text-align: center;
  letter-spacing: 0.02em;
}

.banner-tow-bottom-cell--label::before {
  content: "";
  position: absolute;
  inset: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: min(78%, 360px);
  opacity: 0.22;
  pointer-events: none;
}

.banner-tow-bottom-cell--research {
  /* background: transparent; */
}

.banner-tow-bottom-cell--research::before {
  background-image: url("../../image/en/web/bannerTowBottom/bgImg2.png");
}

.banner-tow-bottom-cell--label::before {
  content: "";
  position: absolute;
  inset: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
  opacity: 1;
  pointer-events: none;
}

.banner-tow-bottom-cell--nursing {
  background-color: #005FAC;
  background-image: url("../../image/en/web/bannerTowBottom/bgIcon.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 79%;
}

.banner-tow-bottom-cell--nursing::before {
  content: none;

  content: "";
  position: absolute;
  inset: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
  opacity: 1;
  pointer-events: none;
}

.banner-tow-bottom-cell--education {
  background: #AD925E;
  background-image: url("../../image/en/web/bannerTowBottom/bgIcon.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 79%;
}

.banner-tow-bottom-cell--education::before {}

/* é™¢åŒºå¸ƒå±€ */
.campus-layout-section {
  width: 100%;
  padding: 68px 0 50px 0;
  background: #fff;
  /* margin-bottom: -100px; */
}

.campus-layout-inner {
  width: 1560px;
  max-width: calc(100% - 160px);
  margin: 0 auto;
}

.campus-layout-title {
  text-align: center;
  margin-bottom: 40px;
}

.campus-layout-title img {
  height: 87px;
  object-fit: contain;
}

.campus-layout-cards-wrapper {
  position: relative;
}

.campus-layout-swiper {
  width: 100%;
  overflow: hidden;
}

.campus-layout-swiper .swiper-wrapper {
  display: flex;
  padding: 10px 10px;
}

.campus-layout-swiper .swiper-slide {
  width: auto;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  height: auto;
}


/* Contact Usï¼šé¡¶éƒ¨æ¨ªå‘æ»šåŠ¨å›¾ + åº•éƒ¨è”ç³»ä¿¡æ¯ */
.contact-us-section {
  width: 100%;
  background: #fff;
}

.contact-us-collage {
  width: 100%;
  height: 600px;
  overflow: hidden;
  /* clip-path: polygon(0 0, 100% 0, 100% calc(100% - 36px), 50% 100%, 0 calc(100% - 36px)); */
}

.contact-us-marquee {
  overflow: hidden;
  line-height: 0;
  height: 50%;
}

.contact-us-marquee-track {
  display: flex;
  width: max-content;
  will-change: transform;
  height: 100%;
}

.contact-us-marquee--to-left .contact-us-marquee-track {
  animation: contact-us-marquee-left 50s linear infinite;
}

.contact-us-marquee--to-right .contact-us-marquee-track {
  animation: contact-us-marquee-left 55s linear infinite reverse;
}

.contact-us-marquee img {
  height: 100%;
  width: auto;
  flex-shrink: 0;
  object-fit: cover;
  display: block;
}

@keyframes contact-us-marquee-left {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {

  .contact-us-marquee--to-left .contact-us-marquee-track,
  .contact-us-marquee--to-right .contact-us-marquee-track {
    animation: none;
    transform: translateX(0);
  }
}

.contact-us-main {
  position: relative;
  padding: 48px 24px 64px;
  /* background-color: #fff; */
  background-image: url("../../image/en/web/bottom/bottomBg.png");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  overflow: hidden;
  margin-top: -126px;
  height: 792px;
}

.contact-us-inner {
  position: relative;
  z-index: 1;
  width: 1560px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 150px;
}

.contact-us-title {
  margin: 0 0 28px;
  text-align: center;
  letter-spacing: 0.02em;
  font-family: D-DIN-PRO;
  font-weight: 800;
  font-size: 48px;
  color: #192533;
  line-height: 16px;
}

.contact-us-card {
  width: 100%;
  height: 250px;
  /* max-width: 1100px; */
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(15, 40, 80, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.04);
  padding: 36px 78px;
  box-sizing: border-box;
  display: flex;
  grid-template-columns: 2fr auto 1fr auto 1fr;
  align-items: start;
  gap: 0 28px;
  margin-top: 50px;
  justify-items: center;
  /* è®©æ¯ä¸ªç½‘æ ¼é¡¹çš„å†…å®¹æ°´å¹³å±…ä¸­ */
  justify-content: center;
  /* è®©æ•´ä¸ªç½‘æ ¼å®¹å™¨åœ¨å¯ç”¨ç©ºé—´å±…ä¸­ */
}

.contact-us-card-col {
  min-width: 0;
}

.contact-us-item-label {
  font-size: 14px;
  color: #7a8aa3;
  line-height: 1.5;
}

.contact-us-item-label--spaced {
  margin-top: 18px;
}

.contact-us-item-value {
  margin-top: 8px;
  font-size: 17px;
  font-weight: 700;
  color: #1a2b4a;
  line-height: 1.45;
  text-wrap: break-word;
}

.contact-us-card-divider {
  width: 1px;
  align-self: stretch;
  min-height: 120px;
  background: #d4d6d8;
  /* background: linear-gradient(180deg, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.06)); */
}

.contact-us-btn {
  width: 314px;
  height: 60px;
  margin-top: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 36px;
  border-radius: 999px;
  background: #00b4e6;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
}

.contact-us-btn:hover {
  background: #0095c4;
  transform: translateY(-1px);
}

/* åº•éƒ¨ä¿¡æ¯åŒº */
.bottom-info-section {
  width: 100%;
  background: #13a8dc;
  color: #fff;
}

.bottom-info-inner {
  max-width: 1560px;
  margin: 0 auto;
  padding: 46px 24px 58px;
}

.bottom-info-logo {
  display: flex;
  justify-content: center;
  margin-bottom: 48px;
}

.bottom-info-logo img {
  width: 380px;
  height: auto;
  display: block;
}

.bottom-info-links {
  display: grid;
  grid-template-columns: 1.1fr 1.25fr 1.45fr 1fr 1fr 1fr 1fr;
  gap: 18px;
}

.bottom-info-col h4 {
  margin: 0 0 14px;
  font-size: 24px;
  line-height: 1.2;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.98);
}

.bottom-info-col a {
  display: block;
  font-size: 18px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.86);
  text-decoration: none;
  margin-bottom: 4px;
}

.bottom-info-col a:hover {
  color: #fff;
}

.bottom-info-sub {
  border-top: 1px solid #22b8ee;
  padding: 22px 24px 26px;
  text-align: center;
}

.bottom-info-social {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-bottom: 14px;
}

.bottom-info-social a {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
}

.bottom-info-social a:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-1px);
}

.bottom-info-social img {
  width: 16px;
  height: 16px;
  object-fit: contain;
  display: block;
  filter: brightness(0) invert(1);
}

.bottom-info-copy {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.72);
}

/* å·¦ä¾§ï¼šåœ†å½¢å›¾å½¢ */
.department-circle-wrapper {
  flex: 1;
  max-width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.department-circle-container {
  position: relative;
  width: 500px;
  height: 500px;
}

.department-circle-svg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  border-radius: 50%;
  overflow: hidden;
}

.circle-path {
  cursor: pointer;
  transition: all 0.3s ease;
}

.circle-path:hover {
  opacity: 1 !important;
  filter: brightness(1.2);
}

.circle-path--active {
  opacity: 1 !important;
  filter: brightness(1.3);
}

.department-circle-inner {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.department-circle-image {
  position: absolute;
  width: 65%;
  height: 65%;
  border-radius: 50%;
  overflow: hidden;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.department-circle-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.department-circle-segments {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 2;
}

.circle-segment {
  position: absolute;
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  white-space: nowrap;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
  font-family: Microsoft YaHei;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 4;
}

.circle-segment:hover {
  transform: scale(1.1);
}

.circle-segment.segment--active {
  color: #ffeb3b;
  text-shadow: 0 2px 8px rgba(255, 235, 59, 0.8);
}

.circle-segment.segment-1 {
  top: 8%;
  left: 35%;
  transform: rotate(-10deg);
}

.circle-segment.segment-2 {
  top: 8%;
  right: 35%;
  transform: rotate(10deg);
}

.circle-segment.segment-3 {
  top: 50%;
  right: 12%;
  transform: translateY(-50%) rotate(90deg);
}

.circle-segment.segment-4 {
  bottom: 8%;
  left: 50%;
  transform: translateX(-50%) rotate(180deg);
}

.circle-segment.segment-5 {
  bottom: 8%;
  left: 12%;
  transform: rotate(-90deg);
}

.department-circle-label {
  position: absolute;
  bottom: 22%;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  font-size: 28px;
  font-weight: 600;
  z-index: 4;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
  font-family: Microsoft YaHei;
}

.department-more-btn {
  position: absolute;
  bottom: 8%;
  left: 50%;
  transform: translateX(-50%);
  background: #7b1fa2;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 20px;
  font-size: 14px;
  cursor: pointer;
  z-index: 4;
  transition: all 0.3s ease;
  font-weight: 500;
  font-family: Microsoft YaHei;
}

.department-more-btn:hover {
  background: #9c27b0;
  transform: translateX(-50%) translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* å³ä¾§ï¼šéƒ¨é—¨åˆ—è¡¨å’Œæè¿° */
.right-department {
  flex: 1;
  max-width: 50%;
  border-left: 1px solid rgb(255, 255, 255, 0.2);
  padding-left: 32px;
  height: 992px;
}

.department-content {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.department-header {
  /* display: flex;
  justify-content: flex-end;
  gap: 12px; */
  position: absolute;
  display: flex;
  align-items: center;
  padding-top: 100px;
}

.department-title-icon {
  width: 72px;
  height: 72px;
  object-fit: contain;
}

.xdtLine {
  width: 600px;
  height: 37px;
}

.department-title {
  color: #fff;
  font-size: 28px;
  font-weight: 800;
  margin: 0;
  font-family: Source Han Serif SC;
  margin-left: 14px;
  margin-right: 14px;
}

.department-list-wrapper {
  display: flex;
  gap: 20px;
  margin-top: 190px;
}

.department-list-column {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.department-list-item {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 5px;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 8px;
  height: 52px;
  line-height: 52px;
}

.department-list-item:hover {
  background: #fff;
  height: 52px;
  line-height: 52px;
  border-top: 4px solid #00AEEB;
  border-radius: 0px 0px 16px 16px;
}

.department-list-item:hover .department-item-name {
  color: #00AEEB;
  font-weight: bold;
}

.department-list-item--active {
  background: #fff;
  height: 52px;
  line-height: 52px;
  border-top: 4px solid #00AEEB;
  border-radius: 0px 0px 16px 16px;
}

.department-list-item--active .department-item-name {
  color: #00AEEB;
  font-weight: bold;
}

.department-active-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  margin-left: auto;
  object-fit: contain;
}

.department-item-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.department-item-name {
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  font-family: Microsoft YaHei;
}

/* æè¿°æ¡† */
.department-description-box {
  border-radius: 16px;
  padding: 23px 19px;
  transition: all 0.3s ease;
  background-color: rgb(39, 114, 175, 0.4);
}

.department-desc-title {
  color: #fff;
  font-size: 28px;
  font-weight: bold;
  margin: 0 0 18px 0;
  font-family: Microsoft YaHei;
}

.department-desc-content {
  color: #fff;
  font-size: 16px;
  line-height: 28px;
  margin: 0;
  font-family: Microsoft YaHei;

  /* è¶…è¿‡ä¸¤è¡Œæ˜¾ç¤ºçœç•¥å· */
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-all;
  padding-right: 56px;
  /* ç»™â€œè¯¦æƒ…>â€ç•™ä½ç½®ï¼Œé¿å…é®æŒ¡æ–‡å­— */
}

.department-desc-content-wrap {
  position: relative;
}

.department-desc-more {
  display: inline-block;
  /* webç«¯å§‹ç»ˆæ˜¾ç¤º */
  position: absolute;
  right: 0;
  bottom: 0;
  height: 28px;
  line-height: 28px;
  color: #89c5ed;
  cursor: pointer;
  user-select: none;
  background: transparent;
  margin-right: 15px;
}

/* å±•å¼€åŽæ˜¾ç¤ºå…¨éƒ¨å†…å®¹ */
.department-desc-content-wrap.is-expanded .department-desc-content {
  display: block;
  -webkit-line-clamp: unset;
  line-clamp: unset;
  overflow: visible;
  padding-right: 0;
}

.department-desc-content-wrap.is-expanded .department-desc-more {
  display: none !important;
}

.department-desc-content .detail-link {
  color: #89c5ed;
}

/* ä¸“å®¶å›¢é˜Ÿéƒ¨åˆ† */
.expert-team-section {
  background: #f7fbff;
  padding: 80px 0 100px;
}

.expert-team-container {
  max-width: 1560px;
  margin: 0 auto;
  padding: 0 40px;
}

.expert-team-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}

.expert-team-title-box {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.expert-team-title {
  font-size: 32px;
  color: #4b1f8c;
  font-weight: 600;
  margin: 0;
}

.expert-team-subtitle {
  font-size: 14px;
  color: #b9b9c8;
  letter-spacing: 2px;
  margin: 0;
}

.expert-team-nav {
  display: flex;
  align-items: center;
  gap: 16px;
}

.expert-nav-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #d4c7ff;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #7c3aed;
  font-size: 20px;
  transition: all 0.3s ease;
}

.expert-nav-btn:hover {
  background: #7c3aed;
  color: #fff;
  box-shadow: 0 8px 20px rgba(124, 58, 237, 0.3);
}

.expert-team-carousel {
  position: relative;
}

.expert-swiper {
  overflow: visible;
  padding: 20px 0 40px;
}

.expert-swiper .swiper-wrapper {
  align-items: stretch;
}

.expert-swiper .swiper-slide {
  width: 320px;
  transition: all 0.3s ease;
  opacity: 0.6;
  transform: scale(0.92);
}

.expert-swiper .swiper-slide-active {
  opacity: 1;
  transform: scale(1);
}

.expert-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: all 0.3s ease;
}

.expert-card1 {
  width: 264px;
  height: 490px;
}

.expert-image {
  width: 100%;
  background: #e5f2ff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.expert-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.expert-info {
  padding: 24px 24px 28px;
  text-align: center;
}

.expert-name {
  font-size: 24px;
  font-weight: bold;
  color: #111827;
  margin: 0 0 4px 0;
}

.expert-department {
  font-size: 18px;
  color: #091B33;
  margin: 0 0 4px 0;
}

.expert-title {
  font-size: 14px;
  color: #7c3aed;
  margin: 0 0 12px 0;
}

.expert-specialty {
  font-size: 13px;
  color: #6b7280;
  line-height: 1.7;
  margin: 0;
}

/* ä¸­é—´é«˜äº®å¡ç‰‡æ ·å¼ */
.expert-swiper .swiper-slide-active .expert-card {
  background: #7c3aed;
  display: grid;
  grid-template-columns: 260px auto;
  padding: 32px 32px 36px;
  box-shadow: 0 16px 40px rgba(124, 58, 237, 0.45);
}

.expert-swiper .swiper-slide-active .expert-image {
  background: transparent;
  height: 100%;
  border-radius: 12px;
  overflow: hidden;
}

.expert-swiper .swiper-slide-active .expert-image img {
  height: 100%;
  object-fit: cover;
}

.expert-swiper .swiper-slide-active .expert-info {
  text-align: left;
  padding-left: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.expert-swiper .swiper-slide-active .expert-name {
  color: #fff;
  font-size: 22px;
}

.expert-swiper .swiper-slide-active .expert-department,
.expert-swiper .swiper-slide-active .expert-title,
.expert-swiper .swiper-slide-active .expert-specialty {
  color: #f3e8ff;
}

.expert-detail-btn {
  margin-top: 20px;
  align-self: flex-start;
  padding: 8px 20px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  background: transparent;
  color: #fff;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.expert-detail-btn:hover {
  background: #fff;
  color: #7c3aed;
}

.expert-team-footer {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.expert-divider {
  width: 90%;
  height: 1px;
  background-image: linear-gradient(to right,
      rgba(148, 163, 184, 0),
      rgba(148, 163, 184, 0.8),
      rgba(148, 163, 184, 0));
}

.expert-more-btn {
  min-width: 180px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid #7c3aed;
  background: #fff;
  color: #7c3aed;
  font-size: 14px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: all 0.3s ease;
}

.expert-more-btn::after {
  content: 'â†’';
  font-size: 14px;
}

.expert-more-btn:hover {
  background: #7c3aed;
  color: #fff;
  box-shadow: 0 10px 25px rgba(124, 58, 237, 0.35);
}

.news-notice-container {
  max-width: 1560px;
  margin: 0 auto;
  /* padding: 0 40px; */
  display: flex;
  gap: 40px;
  justify-content: space-between;
  padding-top: 334px;
}

/* æ–°é—»å’Œå…¬å‘Šé€šç”¨æ ·å¼ */
.news-section {
  flex: 2;
}

.line {
  width: 1px;
  height: 780px;
  background: #E6F4FC;
  opacity: 0.3;
  margin-top: 50px;
}

.news-section,
.notice-section {
  /* flex: 1; */
  /* background: #fff; */
  border-radius: 8px;
  padding: 0;
  /* box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08); */
  overflow: hidden;
}

.notice-section {
  flex: 1;
}

/* æ ‡é¢˜åŒºåŸŸ */
.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 0;
  /* padding: 20px 30px; */
  /* background: linear-gradient(135deg, #64b5f6 0%, #42a5f5 100%); */
  position: relative;
}

.section-title-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
}

.section-icon {
  width: 275px;
  height: 95px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

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

.section-title-en {
  font-size: 12px;
  color: #fff;
  font-weight: 400;
  letter-spacing: 2px;
  opacity: 0.9;
}

.section-title-cn {
  font-size: 24px;
  color: #fff;
  font-weight: 600;
  line-height: 1.2;
}

.more-btn {
  display: flex;
  align-items: flex-end;
  line-height: 45px;
  gap: 6px;
  /* padding: 8px 20px; */
  background: transparent;
  /* border: 1px dashed rgba(255, 255, 255, 0.8); */
  /* border-radius: 20px; */
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  white-space: nowrap;
}

.more-btn img {
  width: 48px;
  height: 48px;
  /* filter: brightness(0) invert(1); */
  margin-left: 5px;
}

/* .more-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
} */

/* æ–°é—»å†…å®¹åŒºåŸŸ */
.news-content {
  /* padding: 30px; */
  margin-top: 40px;
  padding-right: 0px;
}

/* æ–°é—»ä¸»æ–‡ç«  */
.news-featured {
  margin-bottom: 30px;
}

.news-featured-image {
  overflow: hidden;
  margin-bottom: 16px;
  display: flex;
  justify-content: space-between;
}

.news-left {
  flex: 2;
  cursor: pointer;
}

.news-featured-image img {
  width: 828px;
  height: 560px;
  object-fit: cover;
}

.news-featured-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  width: 48px;
  height: 48px;
  background: rgba(33, 150, 243, 0.95);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.news-featured-date {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #A8E8F7;
  color: #247EB3;
  font-size: 16px;
  padding: 0px 16px;
  border-radius: 0 0 4px 4px;
  margin-bottom: 16px;
  margin-top: 16px;
  width: 152px;
  height: 36px;
  line-height: 36px;
  font-family:
    "DIN",
    /* æ ‡å‡†DIN */
    "DIN Alternate",
    /* DINäº¤æ›¿ä½“ */
    "DIN Condensed",
    /* DINç´§ç¼©ä½“ */
    "DIN 1451",
    /* å¾·å›½æ ‡å‡†å­—ä½“ */
    "FF DIN",
    /* FontFontç‰ˆæœ¬ */
    Arial,
    /* å¤‡ç”¨ */
    sans-serif;
}

.news-featured-date img {
  width: 24px;
  height: 24px;
  /* filter: brightness(0) invert(1); */
}

.news-featured-title {
  font-size: 20px;
  color: #fff;
  font-weight: 600;
  margin-bottom: 12px;
  line-height: 1.5;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.news-featured-content {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  font-size: 15px;
  color: #b6cde1;
  line-height: 1.8;
  padding-right: 10px;
}

/* æ–°é—»åˆ—è¡¨ */
.news-list {
  list-style: none;
  padding-left: 32px;
}

.news-item {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  /* align-items: center; */
  /* gap: 12px; */
  /* padding: 16px 0; */
  height: 133px;
  /* line-height: 133px; */
  border-bottom: 1px solid #4394c3;
  cursor: pointer;
  transition: all 0.3s ease;
}

.news-item:first-child {
  border-top: 1px solid #4394c3;
}

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

.news-item:hover {
  padding-left: 8px;
}

.news-item:hover .news-item-title {
  color: #A8E8F7;
}

.news-item-date {
  display: flex;
  align-items: center;
  gap: 4px;
  color: #fff;
  font-size: 16px;
  white-space: nowrap;
  min-width: 110px;
  flex-shrink: 0;
  font-family:
    "DIN",
    /* æ ‡å‡†DIN */
    "DIN Alternate",
    /* DINäº¤æ›¿ä½“ */
    "DIN Condensed",
    /* DINç´§ç¼©ä½“ */
    "DIN 1451",
    /* å¾·å›½æ ‡å‡†å­—ä½“ */
    "FF DIN",
    /* FontFontç‰ˆæœ¬ */
    Arial,
    /* å¤‡ç”¨ */
    sans-serif;
}

.news-item-date img {
  width: 24px;
  height: 24px;
}

.news-item-title {
  font-size: 18px;
  color: #fff;
  line-height: 1.6;
  /* flex: 1; */
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

/* å…¬å‘Šå†…å®¹åŒºåŸŸ */
.notice-content {
  padding-top: 40px;
  padding-left: 0px;
}

/* å…¬å‘Šåˆ—è¡¨ */
.notice-list {
  list-style: none;
}

.notice-item {
  display: flex;
  align-items: center;
  gap: 20px;
  /* padding: 20px 0; */
  height: 133px;
  line-height: 133px;
  border-bottom: 1px solid #368cbe;
  cursor: pointer;
  transition: all 0.3s ease;
}

.notice-item:first-child {
  border-top: 1px solid #368cbe;
}

.notice-item:last-child {
  border-bottom: none;
  border-bottom: 1px solid #368cbe;
}

.notice-item:hover {
  padding-left: 8px;
}

.notice-item:hover .notice-item-title {
  color: #A8E8F7;
}

.notice-date-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 100px;
  height: 100px;
  background-image: url('../image/timeBg.png');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  padding: 8px;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.notice-item:hover .notice-date-box {
  background-image: url('../image/timeBg-select.png');
}

.notice-date-year {
  font-size: 16px;
  color: #fff;
  margin-bottom: 4px;
  line-height: 1.2;
  font-family:
    "DIN",
    /* æ ‡å‡†DIN */
    "DIN Alternate",
    /* DINäº¤æ›¿ä½“ */
    "DIN Condensed",
    /* DINç´§ç¼©ä½“ */
    "DIN 1451",
    /* å¾·å›½æ ‡å‡†å­—ä½“ */
    "FF DIN",
    /* FontFontç‰ˆæœ¬ */
    Arial,
    /* å¤‡ç”¨ */
    sans-serif;
}

.notice-date-day {
  font-size: 24px;
  color: #fff;
  font-weight: 600;
  line-height: 1.2;
  font-family:
    "DIN",
    /* æ ‡å‡†DIN */
    "DIN Alternate",
    /* DINäº¤æ›¿ä½“ */
    "DIN Condensed",
    /* DINç´§ç¼©ä½“ */
    "DIN 1451",
    /* å¾·å›½æ ‡å‡†å­—ä½“ */
    "FF DIN",
    /* FontFontç‰ˆæœ¬ */
    Arial,
    /* å¤‡ç”¨ */
    sans-serif;
}

.notice-item:hover .notice-date-year,
.notice-item:hover .notice-date-day {
  color: #247EB3;
}

.notice-item-title {
  font-size: 18px;
  color: #fff;
  line-height: 1.6;
  flex: 1;
  padding-top: 8px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

/* ç§‘ç ”æ•™å­¦ / æŠ¤ç†é£Žé‡‡ åŒºåŸŸ */
.research-nursing-section {
  width: 100%;
  padding: 80px 0;
  background: #ECF1F8;
  height: 1075px;
}

.research-nursing-container {
  max-width: 1560px;
  margin: 0 auto;
  display: flex;
  gap: 40px;
}

.research-column,
.nursing-column {
  flex: 1;
}

.research-header,
.nursing-header {
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.research-title-box {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.research-title {
  font-size: 30px;
  color: #5b21b6;
  font-weight: 600;
}

.research-title img {
  width: 216px;
  height: 87px;
}

.research-list {
  list-style: none;
  margin: 0;
  padding: 16px 0;
}

.research-item {
  display: flex;
  gap: 24px;
  border-bottom: 1px dashed #8D2595;
  padding-bottom: 35px;
  padding-top: 37px;
  position: relative;
}

.timeLine {
  width: 2px;
  height: 60px;
  background: linear-gradient(0deg, rgba(242, 242, 242, 0), #000000, rgba(255, 255, 255, 0));
  opacity: 0.2;
}

.research-item:first-child {
  padding-top: 0;
}

.research-date {
  min-width: 90px;
  text-align: center;
  color: #091B33;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.lineIcon {
  position: absolute;
  left: -20px;
  bottom: -10px;
}

.research-day {
  font-size: 28px;
  font-weight: 800;
  color: #8D2595;
}

.research-item:last-child .research-dot {
  display: none;
}

.research-content {
  flex: 1;
}

.research-title-link {
  font-size: 20px;
  color: #091B33;
  font-weight: 500;
  text-decoration: none;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.research-title-link:hover {
  color: #8D2595;
}

.research-desc {
  margin-top: 18px;
  color: #6b7280;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  /* é™åˆ¶2è¡Œ */
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 15px;
  line-height: 1.5;
}

.nursing-panel {
  position: relative;
}

.showCard {
  position: relative;
  z-index: 101;
}

.nursing-main-card {
  width: 768px;
  height: 290px;
  display: flex;
  background-color: #fff;
  border-radius: 16px;
  box-shadow: 0px 0px 10px 0px rgba(0, 90, 163, 0.2);
  padding: 20px;
  box-sizing: border-box;
  transition: transform 0.8s ease, box-shadow 0.8s ease;
  /* é»˜è®¤æ‰€æœ‰å¡ç‰‡å¤„äºŽ transform çŠ¶æ€ï¼ˆå †å é€è§†æ•ˆæžœï¼‰ */
  transform: perspective(1500px) rotateX(38deg);
  position: relative;
  z-index: 100;
}

.nursing-main-card:nth-child(2) {
  transition: transform 0.8s ease, box-shadow 0.8s ease;
  transform: perspective(1500px) rotateX(38deg);
  top: -200px;
  /* zoom: 0.96;
  margin-left: 20px; */
  position: relative;
  z-index: 98;
}

.nursing-main-card:nth-child(3) {
  transition: transform 0.8s ease, box-shadow 0.8s ease;
  transform: perspective(1500px) rotateX(38deg);
  top: -420px;
  /* zoom: 0.96;
  margin-left: 20px; */
  position: relative;
  z-index: 97;
}

.nursing-main-card:nth-child(4) {
  transition: transform 0.8s ease, box-shadow 0.8s ease;
  transform: perspective(1500px) rotateX(38deg);
  top: -620px;
  /* zoom: 0.96;
  margin-left: 20px; */
  position: relative;
  z-index: 96;
}

.nursing-main-card:nth-child(5) {
  transition: transform 0.8s ease, box-shadow 0.8s ease;
  transform: perspective(1500px) rotateX(38deg);
  top: -820px;
  /* zoom: 0.96;
  margin-left: 20px; */
  position: relative;
  z-index: 95;
}

/* ç‚¹å‡»é€‰ä¸­/é¼ æ ‡æ‚¬åœï¼šå–æ¶ˆ transformï¼Œå¹¶æŠŠå¡ç‰‡æ¢å¤åˆ°é¡¶éƒ¨å¤§å¡ç‰‡çš„ä½ç½®/å°ºå¯¸ */
.nursing-main-card.showCard,
.nursing-main-card:hover {
  transform: none;
  margin-top: 0;
  margin-left: 0;
  zoom: 1;
  position: relative;
  z-index: 100;
}

.nursing-main-thumb {
  width: 376px;
  height: 250px;
  overflow: hidden;
  flex-shrink: 0;
  margin-right: 32px;
}

.rightThumb {
  margin-left: 32px;
  margin-right: 0px;
}

.nursing-main-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.nursing-main-body {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.nursing-main-title {
  font-size: 20px;
  color: #091B33;
  font-weight: 400;
  margin-bottom: 30px;
  margin-top: 23px;
}

.nursing-main-desc {
  font-size: 14px;
  color: #091B33;
  line-height: 1.7;
  margin-bottom: 60px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  /* æŽ§åˆ¶æ˜¾ç¤ºçš„è¡Œæ•° */
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-word;
}

.nursing-main-meta {
  font-size: 15px;
  color: #8D2595;
}

.nursing-stack-list {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  height: 320px;
  transform-origin: center bottom;
  /* transform: perspective(1500px) rotateX(20deg); */
  transition: transform 0.8s ease;
}

.nursing-panel:hover .nursing-stack-card {
  transform: perspective(1500px) rotateX(10deg);
}

.nursing-stack-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #f8fafc;
  border-radius: 12px;
  padding: 10px 16px;
  box-shadow: 0 4px 12px rgba(148, 163, 184, 0.3);
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: 3;
  transition: transform 0.8s ease, box-shadow 0.8s ease;
  transform: perspective(1500px) rotateX(20deg);
}

.nursing-stack-card--second {
  top: 70px;
  transform: translateX(10px);
  box-shadow: 0 3px 10px rgba(148, 163, 184, 0.25);
  z-index: 2;
}

.nursing-stack-card--third {
  top: 140px;
  transform: translateX(20px);
  box-shadow: 0 2px 8px rgba(148, 163, 184, 0.2);
  z-index: 1;
}

.nursing-stack-thumb {
  width: 160px;
  height: 90px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
}

.nursing-stack-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.nursing-stack-body {
  flex: 1;
}

.nursing-stack-title {
  font-size: 14px;
  color: #111827;
  line-height: 1.6;
  margin-bottom: 6px;
}

.nursing-stack-date {
  font-size: 12px;
  color: #6b7280;
}

.campus-layout-title {
  text-align: center;
  margin-bottom: 55px;
  font-family: Playfair Display;
  font-weight: bold;
  font-size: 48px;
  color: #091B33;
  line-height: 16px;
}

.swiper-button-lock {
  display: block !important;
}

.centerText {
  position: absolute;
  width: 200px;
  left: 50%;
  margin-left: -100px;
  text-align: center;
  bottom: 160px;
  z-index: 1000;
}

.centerText div:first-child {
  font-family: Source Han Serif SC;
  font-weight: 800;
  font-size: 28px;
  color: #FFFFFF;
}

.centerText div:last-child {
  font-family: Microsoft YaHei;
  font-weight: 400;
  font-size: 16px;
  color: #F3D3F5;
  margin-top: 20px;
  cursor: pointer;
}

.campus-card {
  width: 100%;
  height: 100%;
  background: #f3f6fe;
  border-radius: 2px 2px 0 0;
  display: flex;
  flex-direction: column;
}

.campus-card-image img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}

.campus-card-body {
  padding: 0px 40px 0px;
  background: #f3f6fe;

}

.campus-card-body:hover {
  background: #ffffff;
  box-shadow: 0px 0px 10px 0px rgba(0, 90, 163, 0.2);
}

.campus-card-body-content {
  height: 232px;
}

.campus-card-name {
  padding-top: 35px;
  font-size: 24px;
  font-weight: bold;
  color: #091B33;
  box-sizing: border-box;
}

/* é¼ æ ‡ç§»å…¥å¡ç‰‡æ—¶ï¼šæ ‡é¢˜å˜è‰² */
.campus-card:hover .campus-card-name,
.campus-card-body:hover .campus-card-name {
  color: #8D2595;
}

.campus-card-info {
  display: flex;
  flex-direction: column;
  font-size: 13px;
  color: #4b5563;
}

.campus-card-row {
  display: flex;
  align-items: flex-start;
  margin-top: 28px;
}

.campus-card-row span {
  color: #091B33;
  font-size: 18px;
}

.campus-card-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-right: 9px;
  display: block;
  margin-top: 2px;
}

.campus-card-footer {
  height: 100px;
  line-height: 100px;
  border-top: 1px solid #e5e7eb;
}

.campus-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #8D2595;
  cursor: pointer;
}

.campus-card-link:hover {
  color: #7c3aed;
}

/* é™¢åŒºè½®æ’­æŒ‰é’® */
.campus-swiper-button-prev,
.campus-swiper-button-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease;
}

.campus-swiper-button-prev {
  left: 10px;
}

.campus-swiper-button-next {
  right: 0px;
}

.campus-swiper-button-prev img,
.campus-swiper-button-next img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.campus-swiper-button-prev:hover,
.campus-swiper-button-next:hover {
  opacity: 0.8;
}

.campus-swiper-button-prev.swiper-button-disabled,
.campus-swiper-button-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

/* åº•éƒ¨é‡‘è‰²å¿«æ·å…¥å£åŒºåŸŸ */
.quick-access-section {
  width: 100%;
  /* padding: 0px 0 80px; */
  background: #ffffff;
}

/* åº•éƒ¨ç´«è‰²ç‰ˆæƒåŒºåŸŸ */
.site-footer {
  width: 100%;
  background: #76237D;
  color: #fff;
  margin-top: 0;
}

/* é»˜è®¤ä»…å±•ç¤º PC ç‰ˆ footerï¼Œç§»åŠ¨ç‰ˆåœ¨æ¡Œé¢éšè— */
.site-footer-mobile {
  display: none;
}

.footer-main {
  max-width: 1560px;
  margin: 0 auto;
  /* padding: 60px 40px 40px; */
  display: flex;
  justify-content: center;
  /* gap: 80px; */
  text-align: center;
  padding: 30px;
  font-size: 16px;
}

.footer-left {
  display: flex;
  flex-direction: column;
  gap: 32px;
  /* width: 420px; */
  border-right: 1px solid #813487;
  padding-top: 70px;
  padding-right: 120px;
}

.footer-logo-block {
  width: 320px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.footer-logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer-worktime-card {
  width: 399px;
  background: rgba(139, 92, 246, 0.25);
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  overflow: hidden;
  font-family: "Microsoft YaHei", "å¾®è½¯é›…é»‘", sans-serif;
}

.worktime-header {
  background: #914d96;
  padding: 12px 24px;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
}

.worktime-row {
  display: flex;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background-color: #84398a;
}

.worktime-label {
  width: 96px;
  padding: 12px 24px;
  font-size: 14px;
  color: #FDE68A;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  opacity: 0.5;
  text-align: center;
}

.worktime-time {
  flex: 1;
  padding: 12px 24px;
  font-size: 14px;
  color: #F9FAFB;
  color: #fff;
  opacity: 0.5;
  text-align: center;
}

.footer-center {
  flex: 1;
  display: flex;
  flex-direction: row;
  gap: 24px;
  font-family: "Microsoft YaHei", "å¾®è½¯é›…é»‘", sans-serif;
  padding-top: 90px;
}

.footer-contact-item {
  color: #F9FAFB;
  font-size: 16px;
  line-height: 1.8;
}

.footer-contact-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
  margin-top: 10px;
}

.footer-contact-item:first-child .footer-contact-title {
  margin-top: 0px;
}

.footer-contact-text {
  opacity: 0.5;
  color: #fff;
  font-size: 16px;
}

.footer-right {
  width: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.footer-qr-box {
  width: 142px;
  height: 142px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 83px;
}

.footer-qr-img {
  width: 160px;
  height: 160px;
  object-fit: cover;
}

.footer-qr-text {
  font-size: 14px;
  opacity: 0.95;
  margin-top: 10px;
}

.footer-bottom {
  border-bottom: 1px solid #813487;
  height: 100px;
  background: #76237D;
}

.footer-bottom-inner {
  max-width: 1560px;
  margin: 0 auto;
  /* padding: 0 40px; */
  display: flex;
  justify-content: space-between;
  gap: 8px;
  font-size: 12px;
  color: #E5E7EB;
  font-family: "Microsoft YaHei", "å¾®è½¯é›…é»‘", sans-serif;
  align-items: center;
  height: 100px;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

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

.footer-link-sep {
  opacity: 0.7;
}

.footer-copy {
  color: #fff;
  font-size: 16px;
}

/* é¡µè„šå†…éƒ¨åº•éƒ¨ç‰ˆæƒæ¡ï¼ˆç¬¬äºŒè¡Œï¼‰ */
.footer-bottom-bar {
  margin-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 30px;
}

.footer-bottom-bar-inner {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 14px;
  color: #F9FAFB;
  opacity: 0.9;
}

.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.footer-bottom-link {
  color: #F9FAFB;
  text-decoration: none;
  font-size: 16px;
}

.footer-bottom-sep {
  opacity: 0.7;
}

.footer-bottom-copy2 {
  font-size: 14px;
  color: #E5E7EB;
  opacity: 0.5;
  text-align: center;
  padding-bottom: 41px;
  margin-top: 10px;
}

.quick-access-bg {
  width: 100%;
  height: 598px;
  position: relative;
  overflow: hidden;
  background: #ecf1f8;
}

.quick-access-inner {
  text-align: center;
  color: #fff;
}

.quick-bg {
  position: absolute;
  background: url('../image/ljBg.png') center/cover no-repeat;
  background-size: 100% 100%;
  width: 637px;
  height: 410px;

}

.quick-access-title {
  margin-bottom: 70px;
  padding-top: 60px;
}

.quick-access-title img {
  height: 67px;
  object-fit: contain;
}

.quick-access-list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  width: 1560px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.quick-access-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  color: #6b21a8;
  cursor: pointer;
  transition: transform 0.25s ease, opacity 0.25s ease, color 0.25s ease;
}

.quick-access-item:hover {
  transform: translateY(-4px);
}

.quick-access-item:hover .quick-access-icon {
  background: #8d2595;
  box-shadow: 0 0 0 9px #bc8bc6;
}

.quick-access-item:hover .quick-access-text {
  color: #fff;
}

.quick-access-icon {
  width: 240px;
  height: 240px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  background: radial-gradient(circle at 30% 30%, #ffffff, #f9fafb);
  box-shadow: 0 0 0 9px #f6f8fc;
}

.quick-access-icon::before {
  content: '';
  position: absolute;
  inset: -14px;
  border-radius: 50%;
  border: 1px dashed rgba(156, 163, 175, 0.5);
}

/* .quick-access-icon::after {
  content: '';
  position: absolute;
  inset: 30px;
  border-radius: 50%;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.12);
  background: #ffffff;
  z-index: -1;
} */
#sliderBtn {
  position: absolute;
  top: 0px;
}

#zjtdPrev {}

#prevBtn {
  left: 95px;
}

.next-btn {
  /* right: 95px; */
}

.quick-access-icon img {
  width: 120px;
  height: 120px;
  object-fit: contain;
  position: relative;
  z-index: 1;
}

.quick-access-text {
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 1px;
  color: #091B33;
}

/* é€‰ä¸­æ€ */
.quick-access-item--active .quick-access-icon {
  background: radial-gradient(circle at 30% 30%, #b95be8, #7b1fa2);
  box-shadow: 0 0 0 9px #bc8bc6;
}

/* .quick-access-item--active .quick-access-icon::before {
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, 0.25);
} */

.quick-access-item--active .quick-access-icon::after {
  display: none;
}

.quick-access-item--active .quick-access-text {
  color: #fff;
}

/* å…¥åœºåŠ¨ç”»åŸºç¡€æ ·å¼ */
.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);
}

/* å–æ¶ˆ quick-access-section çš„åŠ¨ç”»æ•ˆæžœ */
.quick-access-section.section-animate,
.quick-access-section.section-animate.is-visible {
  opacity: 1;
  transform: none;
  transition: none;
}

/* åº•éƒ¨å¥åº·ç§‘æ™® Banner åŒºåŸŸ */
.health-banner-section {
  width: 100%;
  background: #0096CC url('../../image/en/web/jkkpBg.png') center/cover no-repeat;
  padding: 80px 0 100px;
  position: relative;
  background-size: 100% 100%;
  height: 935px;
}

.health-banner-container {
  max-width: 1560px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
}

.health-banner-title {
  width: 216px;
  height: 87px;
  margin: 0 auto 40px;
  margin-bottom: 0px;
}

.health-banner-title img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.health-banner-main {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}

.health-banner-carousel {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  position: relative;
}

.health-banner-card {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  background: #fff;
  transition: box-shadow 0.35s ease, transform 0.35s ease;
  cursor: pointer;
}

.health-banner-card--side {
  width: 220px;
  height: 260px;
  opacity: 0.9;
  transform: translateY(12px);
}

.health-banner-card--center {
  width: 800px;
  height: 450px;
  z-index: 2;
}

.health-banner-card--center:hover {
  box-shadow: 0 18px 40px rgba(0, 91, 172, 0.25);
  transform: translateY(-6px);
}

.health-banner-card--side:hover {
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.12);
  transform: translateY(4px);
}

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

.health-banner-mascot {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  pointer-events: none;
  margin-left: 246px;
  margin-top: -36px;
}

.health-banner-mascot img {
  width: 198px;
  height: 255px;
  object-fit: contain;
  margin-top: -118px;
  filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.18));
}

.health-banner-footer {
  width: 800px;
  margin: 24px auto 0;
  position: relative;
  z-index: 9;
  cursor: pointer;
}

.health-date {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: -80px;
}

.health-banner-info {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  font-family:
    "DIN",
    /* æ ‡å‡†DIN */
    "DIN Alternate",
    /* DINäº¤æ›¿ä½“ */
    "DIN Condensed",
    /* DINç´§ç¼©ä½“ */
    "DIN 1451",
    /* å¾·å›½æ ‡å‡†å­—ä½“ */
    "FF DIN",
    /* FontFontç‰ˆæœ¬ */
    Arial,
    /* å¤‡ç”¨ */
    sans-serif;
}

.health-banner-info img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.health-banner-desc {
  font-family: Microsoft YaHei;
  font-weight: bold;
  font-size: 22px;
  color: #fff;
  margin-top: 22px;
}

.health-banner-btn {
  width: 120px;
  height: 30px;
  background: rgba(36, 126, 179, 0);
  border-radius: 15px;
  border: 1px solid #fff;
  font-family: Microsoft YaHei;
  font-weight: 400;
  font-size: 16px;
  color: #fff;
  line-height: 24px;
  cursor: pointer;
  text-align: center;
}

.health-swiper {
  width: 100%;
  padding-bottom: 40px;
}

.health-swiper .swiper-slide {
  width: 720px;
  max-width: 80%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-bottom: 30px;
}

.health-swiper .swiper-pagination {
  margin-top: 18px;
  position: static;
}

/* footer çŽ°åœ¨åœ¨ swiper å¤–éƒ¨ï¼Œå§‹ç»ˆå±…ä¸­æ˜¾ç¤º */
.health-banner-footer {
  /* width: 650px;
  max-width: 90%;
  margin: 24px auto 0;
  opacity: 1;
  visibility: visible;
  margin-top: -47px; */
}

/* ç§»åŠ¨ç«¯é€‚é… */
@media (max-width: 768px) {
  .health-banner-section {
    padding: 40px 0 60px;
  }

  .health-banner-container {
    padding: 0 0;
  }

  .health-banner-title {
    width: 200px;
    height: 60px;
    margin-bottom: 30px;
  }

  .health-swiper {
    padding: 0 0 30px;
    overflow: visible;
  }

  .health-swiper .swiper-wrapper {
    align-items: center;
  }

  .health-swiper .swiper-slide {
    width: 280px;
    max-width: 280px;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
  }

  .health-swiper .swiper-slide-active {
    width: 320px;
    max-width: 320px;
  }

  .health-banner-main {
    width: 100%;
    margin: 0;
  }

  .health-banner-card {
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  }

  .health-banner-card--center {
    width: 100%;
    height: auto;
    min-height: 400px;
  }

  .health-banner-card img {
    width: 100%;
    height: auto;
    min-height: 400px;
    object-fit: cover;
  }

  .health-swiper .swiper-pagination {
    margin-top: 20px;
    position: static;
  }

  .health-swiper .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: rgba(0, 0, 0, 0.3);
    opacity: 1;
  }

  .health-swiper .swiper-pagination-bullet-active {
    background: #247EB3;
    width: 20px;
    border-radius: 4px;
  }

  .health-banner-footer {
    width: 100%;
    max-width: 100%;
    padding: 0 20px;
    margin-top: -80px;
  }

  .health-date {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    margin-top: 20px;
  }

  .health-banner-info {
    font-size: 13px;
  }

  .health-banner-desc {
    font-size: 16px;
    margin-top: 12px;
    text-align: left;
    line-height: 1.6;
  }

  .health-banner-btn {
    width: 100px;
    height: 28px;
    font-size: 14px;
    line-height: 26px;
  }

  .health-banner-mascot {
    display: none;
  }

  /* æŠ¤ç†ä¸“åŒºï¼šç§»åŠ¨ç«¯åªæ˜¾ç¤º mobile å®¹å™¨ */
  .pc-nurse-party-container {
    display: none !important;
  }

  .mobile-nurse-party-container {
    display: flex !important;
    flex-direction: column;
    gap: 16px;
    width: 100%;
    padding: 0 20px;
  }

  .nurse-party-section {
    height: auto;
    margin-top: 40px;
  }
}

@media (max-width: 1200px) {
  .health-swiper .swiper-slide {
    width: 640px;
    max-width: 86%;
  }
}

/* çŽ¯å½¢å›¾ */

.circle-wrap {
  width: 780px;
  height: 780px;
  position: relative;
  margin: 50px auto;
  margin-top: 107px;
  border-radius: 50%;
  /* æ•´ä½“æ‰‹åž‹æç¤º */
  /* æ ¸å¿ƒï¼šç”¨èƒŒæ™¯ç›´æŽ¥æ¸²æŸ“5ä¸ªæ‰‡å½¢ï¼Œé¿å…å…ƒç´ å åŠ  */
  background: conic-gradient(#DDA8E0 0deg 72deg,
      #F3D3F5 72deg 144deg,
      #EABEED 144deg 216deg,
      #DDA8E0 216deg 288deg,
      #D294D6 288deg 360deg);
  transition: background 0.2s ease;
  /* é€‰ä¸­å˜è‰²å¹³æ»‘è¿‡æ¸¡ */
}

/* é¡¶éƒ¨ 0-50% é€æ˜Žæ¸å˜é»‘è‰²é®ç½©ï¼ˆç›–åœ¨å›¾ç‰‡ä¸Šæ–¹ï¼‰ */
.circle-wrap-img::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  pointer-events: none;
  z-index: 101;
  width: 642px;
  height: 642px;
  background: linear-gradient(to bottom,
      rgba(0, 0, 0, 0) 0%,
      rgba(0, 0, 0, 0) 40%,
      rgba(0, 0, 0, 0.6) 100%);
  margin: 0 auto;
  margin-top: 67px;
}

.circle-wrap img {
  display: block;
  margin: 0 auto;
  margin-top: 65px;
  position: relative;
  z-index: 100;
  pointer-events: auto;
  border-radius: 50%;
}

.sector-text {
  color: #00AEEB;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}

#text1 {
  transform: rotate(-41deg);
  position: absolute;
  top: 100px;
  left: 106px;
}

#text2 {
  transform: rotate(41deg);
  position: absolute;
  top: 100px;
  right: 106px;
}

#text3 {
  transform: rotate(108deg);
  position: absolute;
  bottom: 275px;
  right: -30px;
}

#text4 {
  text-align: center;
  height: 70px;
  line-height: 65px;
}

#text5 {
  transform: rotate(-115deg);
  position: absolute;
  bottom: 260px;
  left: -3px;
}

.pcShow {
  display: block;
}

.sjShow {
  display: none;
}