﻿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: #8F2297;
  color: #ffffff;
}

.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: auto; */
  /* 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;
  padding-top: 40px;  
}

/* Ã¤Â¸â€œÃ¥Â®Â¶Ã¥ÂÂ¡Ã§â€°â€¡ - Ã¦â„¢Â®Ã©â‚¬Å¡Ã§Å Â¶Ã¦â‚¬Â */
.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;
}