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: #8F2297;
  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: #8F2297;
}

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

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

/* æ¸…é™¤æŒ‰é’®é»˜è®¤æ ·å¼ï¼ˆç”¨äºŽå›¾æ ‡æŒ‰é’®ï¼‰ */
.icon-button {
  appearance: none;
  -webkit-appearance: none;
  border: 0;
  padding: 0;
  margin: 0;
  background: transparent;
  font: inherit;
  color: inherit;
  line-height: 0;
  cursor: pointer;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
}

.icon-button:focus {
  outline: none;
}

/* è®©æŒ‰é’®ä¸å½±å“ img çš„ç»å¯¹å®šä½ */
.search-icon-button {
  background: url("../image/web/top/searchIcon.png") no-repeat;
}

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

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

.public-btn {
  background: #8F2297;
  color: #fff;
}

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

.english-btn {
  border-right: 1px solid #e8eff7;
  color: #8F2297;
}
.english-btn a {
  color: #8F2297;
}
.english-btn:hover a{
  color: #fff;
}

.english-btn:hover {
  background: #8F2297;
  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: #8F2297;
}

.nav-item-active {
  color: #8F2297;
  font-weight: 500;
}

.nav-item-active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: #8F2297;
  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: #8F2297;
}

.nav-item--with-dropdown .nav-item__link.nav-item-active::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: #8F2297;
  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;
  box-sizing: border-box;
}

.nav-dropdown-item {
  height: 48px;
  line-height: 48px;
  font-size: 16px;
  color: #091B33;
  text-align: center ;
  padding: 0 32px;
  cursor: pointer;
}

.nav-dropdown-item:hover {
  background: #F5F3FF;
  color: #8F2297;
}

.nav-dropdown-item--active {
  background: #8F2297;
  color: #ffffff;
}

.nav-dropdown-item--active:hover {
  background: #8F2297;
  color: #ffffff;
}

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

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

.nav-item--with-dropdown:hover .nav-item__link::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: #8F2297;
  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/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/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/web/zjtdImgHua.png') center no-repeat;
  background-color: #8F2297;
  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 #8F2297;
  margin-top: 80px;
  position: relative;
  z-index: 10;
  cursor: pointer;
  color: #8F2297;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
}

.more-btn1:hover {
  background-color: #8F2297;
  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: 12px;
  height: 12px;
  border-radius: 50%;
  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: 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;
}

/* åº•éƒ¨æœåŠ¡å¯¼èˆªåŒºåŸŸ */
.service-navigation {
  width: 100%;
  height: 1066px;
  background: url('../image/web/searchBg.jpg') center no-repeat;
  background-size: 100% 100%;
  overflow: hidden;
  padding-top: 90px;
  box-sizing: border-box;
}

/* èƒŒæ™¯åŒ»é™¢è½®å»“å›¾ */
/* .service-navigation__bg {
  position: absolute;
  top: 60px;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('../image/jz.png');
  height: 728px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  opacity: 0.4;
  z-index: 0;
} */

/* 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-cards {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
  max-width: 1560px;
  width: 100%;
  margin: 0 auto;
}

.inquiry-title {
  width: 216px;
  height: 87px;
  margin: 0 auto;
  margin-top: 79px;
  margin-bottom: 52px;
}

.inquiry-title img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.inquiry-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.inquiry-item {
  width: 302px;
  height: 100px;
  background: #FFFFFF;
  border-radius: 8px;
  border: 10px solid #F0E7F1;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  padding: 1rem;
  /* justify-content: center; */
}

.inquiry-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.inquiry-icon img {
  width: 48px;
  height: 48px;
  margin-left: 1vw;
}

.inquiry-text {
  width: 132px;
  height: 54px;
  font-family: Microsoft YaHei;
  font-weight: 400;
  font-size: 22px;
  color: #091B33;
  line-height: 27px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 20px;
}

.inquiry-item:hover .inquiry-text {
  color: #911F99;
}

/* å³ä¾§ï¼šåŒ»ç–—ä¿¡æ¯èœå• */
.medical-menu {
  flex: 1;
  max-width: 50%;
  display: flex;
  flex-wrap: wrap;
  background: rgba(118, 35, 125, 0.1);
  border-radius: 16px;
  border: 10px solid #E4D5E6;
}

.menu-item {
  background: #fff;
  border: 1px solid #E4D5E6;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  min-height: 80px;
  height: 280px;
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.menu-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 0;
}

.menu-item:nth-child(1)::before {
  background-image: url('../image/hover/1bg.png');
  border-radius: 8px 0 0 0;
}

.menu-item:first-child {
  border-radius: 8px 0 0 0;
}

.menu-item:nth-child(2) {
  border-radius: 0 8px 0 0;
}

.menu-item:nth-child(5) {
  border-radius: 0 0 0 8px;
}

.menu-item:nth-child(6) {
  border-radius: 0 0 8px 0;
}

.menu-item:nth-child(2)::before {
  background-image: url('../image/hover/2bg.png');
  border-radius: 0 8px 0 0;
}

.menu-item:nth-child(3)::before {
  background-image: url('../image/hover/3bg.png');
  border-radius: 0 0 0 0;
}

.menu-item:nth-child(4)::before {
  background-image: url('../image/hover/4bg.png');
  border-radius: 0 0 0 0;
}

.menu-item:nth-child(5)::before {
  background-image: url('../image/hover/5bg.png');
  border-radius: 0 0 0 8px;
}

.menu-item:nth-child(6)::before {
  background-image: url('../image/hover/6bg.png');
  border-radius: 0 8px 0 0;
}

.menu-item:hover::before {
  opacity: 1;
}

.menu-item:hover {
  /* border-color: #8B5CF6; */
  box-shadow: 0 4px 12px rgba(139, 92, 246, 0.15);
  /* transform: translateX(4px); */
}

.menu-icon,
.menu-content {
  position: relative;
  z-index: 1;
}

.menu-item--active::before {
  opacity: 0 !important;
}

.menu-item--active .menu-title {
  color: #fff;
}

.menu-item--active .menu-desc {
  color: rgba(255, 255, 255, 0.8);
}

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

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

.menu-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.menu-title {
  color: #091B33;
  font-family: Microsoft YaHei;
  font-size: 28px;
  font-weight: 400;
  transition: color 0.3s ease;
  text-align: center;
}

.menu-desc {
  color: #091B33;
  opacity: 0.6;
  font-family: Microsoft YaHei;
  font-size: 13px;
  font-weight: 400;
  transition: color 0.3s ease;
  text-align: center;
}

.menu-item:hover .menu-title {
  color: #fff;
  font-weight: bold;
}

.menu-item:hover .menu-desc {
  color: #fff;
}

.menu-item--active .menu-title,
.menu-item--active .menu-desc {
  color: #fff;
}

.menu-item--active:hover .menu-title,
.menu-item--active:hover .menu-desc {
  color: #fff;
}

/* æ–°é—»å…¬å‘ŠåŒºåŸŸ - æ–°é—»ä¸­å¿ƒ */
.new-notice-title {
  width: 100%;
  /* height: 155px; */
  background-color: #ecf1f8;
  display: flex;
  align-items: center;
  box-sizing: border-box;
  padding-top: 79px;
}

.new-notice-title .news-center-header {
  width: 100%;
  max-width: 1560px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.news-notice-section {
  width: 100%;
  background-image: url(../image/web/newCenterBg.png);
  background-size: cover;
  background-position: center center;
  /* æ›´æ˜Žç¡®çš„å®šä½ */
  background-repeat: no-repeat;
  position: relative;
  padding-top: 42px;
  padding-bottom: 48px;
  background-color: #ecf1f8;
  /* æ·»åŠ èƒŒæ™¯æ··åˆæˆ–å¤‡ç”¨æ–¹æ¡ˆ */
  background-blend-mode: multiply;
}

.news-center-container {
  max-width: 1560px;
  margin: 0 auto;
}

/* å¤´éƒ¨åŒºåŸŸ - åœ¨ .news-center-container å†…çš„æ ·å¼ */
.news-center-container .news-center-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 20px;
}

.news-center-header-left {
  display: flex;
  align-items: center;
}

.news-center-title {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.news-center-title-main {
  font-family: Microsoft YaHei;
  font-size: 48px;
  font-weight: 700;
  color: #8B5CF6;
  line-height: 1.2;
  width: 216px;
  height: 87px;
}

.news-center-title-en {
  font-family: Arial, sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #9CA3AF;
  letter-spacing: 2px;
}

.news-center-tabs {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-left: 40px;
}

.news-tab {
  font-size: 18px;
  border: 1px solid #911F99;
  width: 120px;
  height: 48px;
  line-height: 48px;
  text-align: center;
  border-radius: 8px;
  background-color: transparent;
  color: #911F99;
  cursor: pointer;
}

.news-tab:hover {
  color: #fff;
  background: #911F99;
}

.news-tab--active {
  background: #911F99;
  color: #fff;
  border-color: #911F99;
}

.news-center-more {
  display: flex;
  align-items: center;
  gap: 8px;
}

.more-text {
  color: #091B33;
  font-size: 18px;
  cursor: pointer;
}

.more-circle-btn-img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
  object-fit: contain;
}

/* å†…å®¹åŒºåŸŸ */
.news-center-content {
  display: flex;
  gap: 40px;
  justify-content: space-between;
}

/* å·¦åˆ—ï¼šä¸»æ–°é—» */
.news-main-column {
  width: 828px;
  height: 560px;
}

.news-featured-carousel {
  position: relative;
  width: 100%;
}

.news-carousel-swiper {
  width: 100%;
  margin-bottom: 0;
  position: relative;
}

.news-carousel-swiper .swiper-slide {
  width: 100%;
  overflow: hidden;
}

.news-carousel-swiper .swiper-slide img {
  width: 828px;
  height: 560px;
  object-fit: cover;
  display: block;
}

/* åˆ†é¡µå™¨æ ·å¼ - æ˜¾ç¤º1-5ç´¢å¼• */
.news-carousel-pagination {
  position: absolute;
  bottom: 10px;
  left: 50%;
  /* transform: translateX(-50%); */
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  z-index: 10;
  width: auto;
  margin-bottom: 50px;
  padding-right: 40px;
}

.news-carousel-pagination .swiper-pagination-bullet {
  /* width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  color: #8B5CF6;
  font-size: 18px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1; */
  cursor: pointer;
  transition: all 0.3s ease;
  margin: 0 !important;
  width: 50px;
  height: 60px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.59), rgba(0, 0, 0, 0));
  border-radius: 0;
  border-top: 2px solid #D7A954;
  color: #fff;
  font-weight: bold;
  font-size: 20px;
  text-align: center;
  line-height: 60px;
}

.swiper-pagination-bullet {
  opacity: 1 !important;
}

.news-carousel-pagination .swiper-pagination-bullet-active {
  /* background: #8B5CF6; */
  background: linear-gradient(180deg, rgba(215, 169, 84, 0.99), rgba(196, 177, 133, 0));
  color: #fff;
  border-color: #D7A954;
  /* transform: scale(1.15); */
}

/* åº•éƒ¨ç™½è‰²æ¡† */
.news-featured-footer {
  position: absolute;
  bottom: -80px;
  left: 40px;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  padding: 20px 24px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  backdrop-filter: blur(10px);
  border-bottom: 4px solid #911F99;
  z-index: 5;
  width: 748px;
  height: 134px;
}

.news-entry-date {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
}

.news-entry-date .research-date {
  display: flex;
  flex-direction: column;
  min-width: auto;
}

.news-entry-date .research-year {
  color: #8D2595;
  font-size: 16px;
}

.news-entry-date .research-day {
  font-size: 28px;
  font-weight: 700;
  color: #911F99;
  line-height: 1.2;
  margin-top: 4px;
}

.news-entry-date .timeLine {
  width: 2px;
  height: 60px;
  background: linear-gradient(0deg, rgba(242, 242, 242, 0), #911F99, rgba(255, 255, 255, 0));
}

.news-entry-title {
  flex: 1;
  font-family: Microsoft YaHei;
  font-size: 20px;
  font-weight: 400;
  color: #091B33;
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.news-entry-title .title-line1,
.news-entry-title .title-line2 {
  line-height: 1.6;

  display: -webkit-box;
  /* å°†å…ƒç´ è®¾ä¸ºå¼¹æ€§ä¼¸ç¼©ç›’å­ */
  -webkit-box-orient: vertical;
  /* è®¾ç½®ä¼¸ç¼©ç›’å­çš„å­å…ƒç´ æŽ’åˆ—æ–¹å¼ */
  -webkit-line-clamp: 2;
  /* é™åˆ¶æ˜¾ç¤ºçš„è¡Œæ•° */
  overflow: hidden;
  /* éšè—è¶…å‡ºçš„å†…å®¹ */
  text-overflow: ellipsis;
  /* æ˜¾ç¤ºçœç•¥ç¬¦å· */
}

/* å³åˆ—ï¼šæ–°é—»åˆ—è¡¨ */
.news-list-column {
  flex: 1;
  max-width: 40%;
  display: flex;
  flex-direction: column;
}

.news-list-item {
  display: flex;
  gap: 20px;
  padding: 0;
  background: transparent;
  border-radius: 0;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  position: relative;
  align-items: flex-start;
  margin-top: 40px;
}

.news-list-item:first-child {
  margin-top: 0px;
}

.news-list-item:hover {
  transform: translateY(-2px);
}

.news-list-image {
  width: 280px;
  height: 188px;
  flex-shrink: 0;
  border-radius: 0;
  overflow: hidden;
  background: #f0f0f0;
}

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

.news-list-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  position: relative;
  padding: 0;
  min-height: 140px;
}

.news-list-date {
  font-family: PingFans SC;
  font-size: 16px;
  color: #911F99;
  line-height: 21px;
  padding-bottom: 8px;
}

.news-list-date-span {
  font-weight: 800;
  font-size: 32px;
  color: #911F99;
  font-family: PingFans SC;
}

.news-list-title {
  font-family: Microsoft YaHei;
  font-size: 18px;
  font-weight: 400;
  color: #091B33;
  display: -webkit-box;
  /* å°†å…ƒç´ è®¾ä¸ºå¼¹æ€§ä¼¸ç¼©ç›’å­ */
  -webkit-box-orient: vertical;
  /* è®¾ç½®ä¼¸ç¼©ç›’å­çš„å­å…ƒç´ æŽ’åˆ—æ–¹å¼ */
  -webkit-line-clamp: 2;
  /* é™åˆ¶æ˜¾ç¤ºçš„è¡Œæ•° */
  overflow: hidden;
  /* éšè—è¶…å‡ºçš„å†…å®¹ */
  text-overflow: ellipsis;
  /* æ˜¾ç¤ºçœç•¥ç¬¦å· */
  margin-top: 20px;
}

.news-list-arrow {
  /* width: 100%; */
  /* height: 32px; */
  display: flex;
  justify-content: flex-end;
  border-top: 1px solid #911F99;
  margin-top: 30px;
}

.news-list-arrow img {
  height: 40px;
}

/* å››ä¸ªç™½æ¿å¡ç‰‡åŒºåŸŸ */
.hospital-formula-section .news-card {
  height: 284px;
}

.hospital-formula-section .news-cards-section {
  padding-bottom: 52px;
  margin-top: 0px;
}

.news-cards-section {
  width: 100%;
  margin-top: 72px;
  padding-bottom: 48px;
  position: relative;
}

.news-cards-container {
  max-width: 1560px;
  margin: 0 auto;
  display: flex;
  gap: 70px;
  justify-content: space-between;
}

.news-card {
  flex: 1;
  background: #fff;
  padding: 24px;
  padding-top: 0px;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition: all 0.3s ease;
  min-height: 200px;
  padding-bottom: 14px;
  box-shadow: 0px 0px 10px 0px rgba(0, 90, 163, 0.2);
  position: relative;
  overflow: hidden;
}

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

/* æ‚¬åœæ—¶çº¿æ¡é¢œè‰²å˜ä¸ºé‡‘è‰² */
.news-card:hover .news-card-line {
  background: #D4A657;
}

/* æ‚¬åœæ—¶ï¼šç´«è‰²å åŠ  + èƒŒæ™¯å›¾ */
.news-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background-color: #911F99;
  background-image: url('../image/hover/hoverBg.png');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: right;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 0;
  background-size: 177px;
}

.news-card:hover::before {
  opacity: 1;
}

.news-card-line,
.news-card-title,
.news-card-footer,
.news-card-divider {
  position: relative;
  z-index: 1;
}

/* èƒŒæ™¯å˜æ·±æ—¶æé«˜æ–‡å­—å¯è¯»æ€§ */
.news-card:hover .news-card-title {
  color: #ffffff;
}

.news-card:hover .news-list-date,
.news-card:hover .news-list-date-span {
  color: #ffffff;
}

.news-card:hover .news-card-arrow img {
  filter: none;
}

.news-card-line {
  width: 48px;
  height: 4px;
  background: #911F99;
  margin-bottom: 35px;
}

.news-card-title {
  font-family: Microsoft YaHei;
  font-size: 18px;
  font-weight: 500;
  color: #091B33;
  line-height: 1.6;
  flex: 1;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-card-divider {
  width: 100%;
  height: 1px;
  background: #E5E7EB;
  margin-bottom: 16px;
}

.news-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.news-card-date {
  font-family: "DIN", Arial, sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #8B5CF6;
}

.news-card-arrow {
  width: 40px;
}

.news-card-arrow img {
  width: 40px;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(27%) sepia(95%) saturate(7498%) hue-rotate(280deg) brightness(90%) contrast(101%);
}

/* åŒ»é™¢å…¬å¼åŒºåŸŸï¼šPC é»˜è®¤ä½¿ç”¨ pc ç‰ˆæœ¬ï¼Œéšè— mobile ç‰ˆæœ¬ */
.hospital-formula-section-mobile {
  display: none;
}

/* åŒ»æŠ€ç§‘å®¤éƒ¨åˆ† */
.department-section {
  width: 100%;
  height: 992px;
  background: url(../image/web/yjksBg.jpg) center no-repeat;
  background-size: 100% 100%;
  overflow: hidden;
  /* padding-top: 90px; */
  position: relative;
  box-sizing: border-box;
}

.department-container {
  max-width: 1560px;
  margin: 0 auto;
  /* padding: 0 40px; */
  display: flex;
  gap: 72px;
  align-items: flex-start;
  /* position: relative;
  z-index: 1; */
}

/* å·¦ä¾§ï¼šåœ†å½¢å›¾å½¢ */
.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: row;
  gap: 5px;
  flex-wrap: wrap;
}

.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;
  text-decoration: none;
  color: inherit;
  width: 32%;
}

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

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

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

.department-list-item--active .department-item-name {
  color: #8F2297;
  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-section {
  width: 100%;
  padding: 80px 0 0 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;
}

.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: space-between;
  /* gap: 80px; */
}

.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: #e5f4ff url('../image/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: #8F2297;
  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;

  position: absolute;
  bottom: 3px;
  left: 342px;
  
}

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