@font-face {
  font-family: 'sourcehanserifsc';
  src: url(../font/SOURCEHANSERIFSC-REGULAR.OTF);
}
@font-face {
  font-family: 'sourcehanserifscHeavy';
  src: url(../font/SOURCEHANSERIFSC-HEAVY.OTF);
}
/* 全局默认字号 */
html {
  font-size: 16px;
}
html body {
  line-height: 1.75;
}
main {
  overflow: hidden;
}
:root {
  --theme-color: #941f23;
  /* 字号变量（基于 16px 基准） */
  --font-size-title: 2rem;
  /* 48px */
  --font-size-sub-title: 1.5rem;
  /* 36px */
  --font-size-sub-title-1: 1.25rem;
  /* 30px */
  --font-size-sub-title-2: 1.125rem;
  /* 24px */
  --font-size-banner-h1: 2rem;
  /* 60px */
}
.title {
  font-size: var(--font-size-title);
  font-family: 'sourcehanserifscHeavy';
  line-height: 1.5;
}
.sub-title {
  font-size: var(--font-size-sub-title);
  line-height: 1.5;
}
.sub-title-1 {
  font-size: var(--font-size-sub-title-1);
  line-height: 1.5;
}
.sub-title-2 {
  font-size: var(--font-size-sub-title-2);
  line-height: 1.5;
}
.sub-banner {
  margin-bottom: 80px;
  overflow: hidden;
}
.sub-banner.sub-banner-border-bottom {
  border-bottom: 5px solid var(--theme-color);
  margin-bottom: 50px;
}
.sub-banner h1 {
  font-size: var(--font-size-banner-h1);
  line-height: 1.2;
}
.sub-banner h1::after {
  content: '';
  display: block;
  width: 1.5em;
  height: 0.1em;
  background-color: #ffffff;
  bottom: -0.75em;
  position: absolute;
}
@media (max-width: 1200px) {
  html {
    font-size: 16px;
    /* 基准字号调整，所有 rem 单位自动缩放 */
  }
  .sub-banner {
    margin-bottom: 80px;
  }
  .sub-banner.sub-banner-border-bottom {
    margin-bottom: 40px;
  }
}
@media (max-width: 992px) {
  html {
    font-size: 14px;
    /* 基准字号调整，所有 rem 单位自动缩放 */
  }
  .sub-banner {
    margin-bottom: 60px;
  }
  .sub-banner.sub-banner-border-bottom {
    margin-bottom: 30px;
  }
}
@media (max-width: 768px) {
  html {
    font-size: 12px;
    /* 基准字号调整，所有 rem 单位自动缩放 */
  }
  .sub-banner {
    margin-bottom: 40px;
  }
  .sub-banner img {
    min-height: 30vh;
  }
  .sub-banner h1 {
    font-size: 2.5rem;
  }
  .sub-banner.sub-banner-border-bottom {
    margin-bottom: 20px;
  }
}
.indent-first-2em {
  text-indent: 2em;
}
.btn-circle-more {
  width: 1.25rem;
  height: 1.25rem;
  border: 1px solid #525252;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.btn-circle-more img {
  object-fit: contain;
  max-width: 60%;
  max-height: 60%;
  transition: filter 0.3s ease;
}
@media (min-width: 768px) {
  .btn-circle-more {
    width: 2rem;
    height: 2rem;
  }
}
/* 整条链接 hover：文字变主题色，按钮变红底+红边，图标变白 */
.link-more-primary {
  color: #191919;
  transition: color 0.3s ease;
}
.link-more-primary:hover {
  color: #941f23;
}
.link-more-primary .btn-circle-more {
  /* 默认黑色按钮 */
  border-color: #191919;
  background-color: transparent;
}
.link-more-primary:hover .btn-circle-more {
  border-color: #941f23;
}
.hover-img-primary:hover,
.hover-img-primary:hover img {
  filter: brightness(0) saturate(100%) invert(25%) sepia(93%) saturate(1235%) hue-rotate(338deg) brightness(86%) contrast(90%);
}
.link-more-primary:hover .btn-circle-more img {
  filter: brightness(0) saturate(100%) invert(25%) sepia(93%) saturate(1235%) hue-rotate(338deg) brightness(86%) contrast(90%);
}
.slider-btn-group {
  display: flex;
  gap: 0;
}
.slider-btn-group .slider-btn {
  width: 60px;
  height: 60px;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.slider-btn-group .slider-btn img {
  width: 16px;
}
.slider-btn-group .slider-btn:hover {
  background-color: #cbae7c;
  border-color: #cbae7c;
}
.slider-btn-group .slider-btn:hover img {
  filter: brightness(0) invert(1);
}
@media (max-width: 1600px) {
  .slider-btn-group .slider-btn {
    width: 70px;
    height: 70px;
  }
}
@media (max-width: 1400px) {
  .slider-btn-group .slider-btn {
    width: 60px;
    height: 60px;
  }
}
@media (max-width: 1200px) {
  .slider-btn-group .slider-btn {
    width: 50px;
    height: 50px;
  }
  .slider-btn-group .slider-btn img {
    width: 12px;
  }
}
@media (max-width: 768px) {
  .slider-btn-group .slider-btn {
    width: 40px;
    height: 40px;
  }
  .slider-btn-group .slider-btn img {
    width: 10px;
  }
}
.research-center-card {
  background-color: white;
  border: solid 1px #b2b2b2;
  cursor: pointer;
}
.research-center-card .bottom-level {
  margin-top: 1em;
}
.research-center-card .title-section {
  flex-shrink: 0;
  line-height: 1.4;
}
.research-center-card .title-icon {
  display: none;
  align-self: center;
}
.research-center-card .items-start {
  border-bottom: 1px solid #b2b2b2;
}
.research-center-card h3 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.4;
  max-height: 2.82em;
  margin-top: 1em;
  margin-bottom: 1em;
}
.research-center-card .description {
  flex: 1;
  overflow: hidden;
  line-height: 1.75;
  transition: all 0.3s ease;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 6;
  height: 10.5em;
}
.research-center-card:hover {
  background-color: #951f23;
  background-image: url(../images/faculty/building-line.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.research-center-card:hover h3,
.research-center-card:hover p,
.research-center-card:hover span {
  color: white;
}
.research-center-card:hover .title-icon {
  display: block;
}
.research-center-card:hover .bottom-level {
  display: none;
  position: absolute;
}
.research-center-card:hover .description {
  overflow-y: auto;
  -webkit-line-clamp: none;
  scrollbar-width: thin;
  scrollbar-color: #ffffff transparent;
}
.research-center-card:hover .description::-webkit-scrollbar {
  width: 6px;
}
.research-center-card:hover .description::-webkit-scrollbar-track {
  background: transparent;
}
.research-center-card:hover .description::-webkit-scrollbar-thumb {
  background: #951f23;
}
.mieux-text-content {
  width: 100%;
}
.mieux-carousel {
  position: relative;
  width: 100%;
  margin-top: 2.5rem;
  z-index: 0;
  max-width: 1000px;
}
.mieux-carousel .swiper-wrapper {
  height: auto;
}
.mieux-carousel .swiper-slide {
  height: auto;
}
@media (min-width: 1024px) {
  .mieux-text-content {
    width: 48%;
  }
  .mieux-carousel {
    position: absolute;
    left: 50%;
    right: 0;
    top: 0;
    bottom: 0;
    margin-top: 0;
    height: 100%;
  }
  .mieux-carousel .swiper-wrapper {
    height: 100%;
  }
  .mieux-carousel .swiper-slide {
    height: 100%;
  }
}
@media (min-width: 1200px) {
  .mieux-text-content {
    width: 31%;
  }
  .mieux-carousel {
    position: absolute;
  }
  .mieux-carousel .swiper-slide {
    width: 800px;
  }
}
@media (min-width: 1200px) {
  .mieux-carousel {
    left: calc((100vw - 1400px) / 2 + 432px + 64px);
  }
  .mieux-carousel .swiper-slide {
    width: 800px;
  }
}
@media (min-width: 1920px) {
  .mieux-carousel {
    left: calc((100% - 1400px) / 2 + 432px + 64px);
  }
  .mieux-carousel .swiper-slide {
    width: 800px;
  }
}
.news-carousel .swiper-slide {
  width: 460px;
}
@media (max-width: 767px) {
  .news-carousel .swiper-slide {
    width: calc(100vw - 2rem);
    max-width: 460px;
  }
}
.news-card-link {
  text-decoration: none;
  color: inherit;
}
.news-card-link:hover {
  text-decoration: none;
}
.news-card-link:hover .news-card {
  background-color: #951f23;
  background-image: url(../images/news/news-card-hover.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-color: #951f23;
}
.news-card-link:hover .news-card-title {
  color: #cbae7c;
}
.news-card-link:hover .news-card-description,
.news-card-link:hover .news-card-date {
  color: #fff;
}
.news-card-link:hover .news-card-arrow {
  filter: brightness(0) invert(1);
}
.swiper-options {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
@media (max-width: 767px) {
  .swiper-options {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
  }
}
.news-swiper-button-prev::after {
  transform: rotate(-135deg);
}
@media (min-width: 1400px) {
  .swiper-options {
    max-width: calc(700px + 7%);
  }
}
.news-card-title {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.news-card-description {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.news-title-clamp {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  font-weight: bold;
}
/* News description 3-line clamp */
.news-description-clamp {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
/* News vertical divider */
.news-vertical-divider {
  width: 1px;
  height: 4rem;
  align-self: center;
  background-color: #951f23;
}
/* Events title 2-line clamp */
.events-title-clamp {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
/* Events description 3-line clamp */
.events-description-clamp {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.page-overview .tab-button {
  border: none;
  cursor: pointer;
  outline: none;
}
.page-overview .tab-button.active {
  background-color: #941f23;
  color: white;
}
.page-overview .tab-button:not(.active) {
  background-color: #e5e7eb;
  color: #333333;
}
.page-overview .tab-button:not(.active):hover {
  background-color: #d1d5db;
}
.page-overview .tab-content {
  animation: fadeIn 0.3s ease-in-out;
}
.page-overview .tab-content.hidden {
  display: none;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.contact-table {
  border: 1px solid #2b201d;
  width: 100%;
  vertical-align: middle;
}
.contact-table thead tr {
  background-color: #8f1f23;
}
.contact-table thead tr th {
  color: white;
  font-weight: 600;
  padding: 14px 16px;
  font-size: 1rem;
}
.contact-table th {
  border: 1px solid #e4c8c9;
}
.contact-table td {
  border: 1px solid #2b201d;
}
.contact-table tbody tr {
  transition: background-color 0.2s;
}
.contact-table tbody tr:nth-child(odd) {
  background-color: #f3eced;
}
.contact-table tbody tr:nth-child(even) {
  background-color: #dbcfd1;
}
.contact-table tbody tr:hover {
  background-color: #f9fafb;
}
.contact-table tbody tr td {
  padding: 12px 16px;
}
@media (max-width: 768px) {
  .contact-table {
    font-size: 14px;
  }
  .contact-table thead th,
  .contact-table tbody td {
    padding: 8px 12px;
  }
}
.section-title-decorated h3 {
  font-weight: bold;
  font-size: 1.25rem;
  color: #941f23;
  margin-bottom: 1rem;
}
.section-title-decorated .decorative-line {
  width: 80%;
  position: relative;
  height: 2px;
  background-image: linear-gradient(90deg, #951f23 0%, #ffffff 100%), linear-gradient(#951f23, #951f23);
  background-blend-mode: normal,
			normal;
  margin-bottom: 1.5rem;
}
.section-title-decorated .decorative-line .triangle {
  position: absolute;
  left: 2em;
  top: 100%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 8px solid #941f23;
}
.programs-sidebar {
  display: none;
  width: 300px;
  flex-shrink: 0;
}
@media (min-width: 1024px) {
  .programs-sidebar {
    display: block;
  }
}
.programs-sidebar nav {
  display: flex;
  flex-direction: column;
}
.programs-sidebar nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.875rem 1rem;
  color: #333333;
  background-color: #d9d9d9;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid #b3b3b3;
  border-bottom: none;
  font-size: 1rem;
  white-space: nowrap;
  position: relative;
  min-width: 0;
}
.programs-sidebar nav a:first-child {
  border-top-left-radius: 2px;
  border-top-right-radius: 2px;
}
.programs-sidebar nav a:last-child {
  border-bottom: 1px solid #e5e5e5;
  border-bottom-left-radius: 2px;
  border-bottom-right-radius: 2px;
}
.programs-sidebar nav a span {
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  min-width: 0;
}
.programs-sidebar nav a::after {
  content: '';
  display: block;
  width: 8px;
  height: 8px;
  border-right: 2px solid #333333;
  border-top: 2px solid #333333;
  border-left: none;
  border-bottom: none;
  margin-left: 0.75rem;
  flex-shrink: 0;
  transform: rotate(45deg);
  transition: border-color 0.3s ease;
}
.programs-sidebar nav a.active {
  color: #ffffff;
  background-color: #941f23;
  font-weight: 500;
  border-color: #941f23;
}
.programs-sidebar nav a.active::after {
  border-right-color: #ffffff;
  border-top-color: #ffffff;
}
.programs-sidebar nav a:not(.active):hover {
  color: #941f23;
  background-color: #f9f9f9;
}
.programs-sidebar nav a:not(.active):hover::after {
  border-right-color: #941f23;
  border-top-color: #941f23;
}
.programs-content {
  flex: 1;
  min-width: 0;
}
@media (max-width: 1023px) {
  .programs-content {
    width: 100%;
  }
}
.program-rich-content {
  width: 100%;
}
.program-rich-content article {
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #e5e5e5;
}
.program-rich-content article:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.program-rich-content h3 {
  display: flex;
  align-items: center;
  font-size: var(--font-size-sub-title-2);
  font-weight: 600;
  color: var(--theme-color);
  line-height: 1.4;
  margin-bottom: 1.5rem;
}
.program-rich-content p {
  line-height: 1.75;
  margin-bottom: 1.5rem;
  color: #333333;
}
.program-rich-content strong {
  font-weight: 600;
  color: #1a1a1a;
}
.program-rich-content section {
  margin-top: 1.5rem;
}
.program-rich-content section strong {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: #1a1a1a;
}
.program-rich-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.program-rich-content li {
  padding: 0.5rem 0;
  line-height: 1.75;
  color: #333333;
}
.program-rich-content li::before {
  content: '·';
  margin-right: 0.5rem;
  color: #941f23;
  font-weight: bold;
  font-size: 1.2rem;
}
.program-rich-content div {
  
  align-items: flex-start;
  margin-bottom: 1rem;
}
.program-rich-content div img {
  width: 1.5rem;
  height: 1.5rem;
  margin-right: 0.75rem;
  margin-top: 0.25rem;
  flex-shrink: 0;
  object-fit: contain;
}
.program-rich-content div span {
  line-height: 1.75;
  color: #333333;
}
.content-auto {
  content-visibility: auto;
}
.text-shadow {
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}
.nav-shadow {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}
.card-hover {
  transition: all 0.3s ease;
}
.card-hover:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
.submenu {
  position: absolute;
  left: 0;
  margin-top: 0.5rem;
  width: 12rem;
  background-color: white;
  border-radius: 0.375rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s;
  z-index: 50;
  transform: scale(0.95);
  transform-origin: top;
}
.nav-group:hover .submenu {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}
.nav-menu:hover {
  color: #941f23;
}
@media (max-width: 1024px) {
  .nav-menu {
    display: block;
    padding: 0.75rem 0.5rem;
    border-bottom: 1px solid #f3f4f6;
    text-align: left;
  }
  .submenu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: scale(1);
    box-shadow: none;
    width: 100%;
    margin-top: 0;
  }
}
@media (min-width: 768px) and (max-width: 1280px) {
  #mainNav {
    font-size: 0.875rem;
  }
  #mainNav .nav-menu {
    padding: 0.25rem 0.5rem;
  }
}
.news-content-swiper {
  overflow: visible !important;
}
.news-content-swiper .swiper-wrapper {
  transition-timing-function: ease-in-out !important;
}
.news-content-swiper .swiper-slide {
  position: absolute !important;
  width: 100% !important;
  opacity: 0 !important;
  transition: opacity 0.6s ease-in-out !important;
}
.news-content-swiper .swiper-slide-active {
  position: relative !important;
  opacity: 1 !important;
}
.news-image-swiper {
  aspect-ratio: 800 / 533;
  width: 100%;
}
.news-image-swiper .swiper-wrapper,
.news-image-swiper .swiper-slide {
  height: 100%;
}
.news-image-swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.banner-title-clamp {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  word-break: break-word;
}
@media (min-width: 1024px) {
  .banner-title-clamp {
    -webkit-line-clamp: 1;
    max-height: calc(1em * 1.4 * 1);
  }
}
.seminar-swiper .seminar-title {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  min-height: 3em;
}
.seminar-swiper .seminar-hover-card .seminar-title {
  -webkit-line-clamp: 3;
}
.seminar-swiper .swiper-slide {
  position: relative;
  overflow: hidden;
}
.seminar-swiper .seminar-normal-card {
  transition: opacity 0.3s ease, z-index 0s 0.3s;
}
.seminar-swiper .seminar-hover-card {
  transition: opacity 0.3s ease, z-index 0s;
}
.seminar-swiper .swiper-slide:hover .seminar-normal-card {
  opacity: 0;
  z-index: 0;
}
.seminar-swiper .swiper-slide:hover .seminar-hover-card {
  opacity: 1;
  z-index: 10;
}
.news-text-clamp {
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
#contactUsBtn,
#socialMediaBtn {
  position: relative;
}
#contactUsCard,
#socialMediaCard {
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease !important;
  transform: translateY(10px) !important;
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}
#contactUsBtn:hover #contactUsCard,
#socialMediaBtn:hover #socialMediaCard {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
  transform: translateY(0) !important;
}
.page-index .main-swiper {
  width: 100%;
}
.page-index .main-swiper .swiper {
  aspect-ratio: 1200 / 400;
}
.page-index .main-swiper .swiper-wrapper {
  height: 100%;
}
.page-index .main-swiper .swiper-slide {
  width: 100%;
  height: 100%;
}
.page-index .main-swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 1200 / 400;
}
.page-index .main-swiper .main-swiper-pagination {
  transform: none;
}
.page-index .main-swiper .main-swiper-prev,
.page-index .main-swiper .main-swiper-next {
  cursor: pointer;
}
.page-index .events-swiper-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-index .events-prev-btn,
.page-index .events-next-btn {
  cursor: pointer;
  transition: opacity 0.3s ease;
}
.page-index .events-prev-btn:hover,
.page-index .events-next-btn:hover {
  opacity: 0.7;
}
.page-index .counter-number {
  position: relative;
  font-weight: 300;
}
.page-index .counter-number::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 2px;
  background-color: white;
}
@media (max-width: 768px) {
  .page-index .counter-number::after {
    width: 40px;
    height: 1.5px;
    bottom: -6px;
  }
}
#deansMessageDrawer::-webkit-scrollbar {
  width: 8px;
}
#deansMessageDrawer::-webkit-scrollbar-track {
  background: #f1f1f1;
}
#deansMessageDrawer::-webkit-scrollbar-thumb {
  background: #cbae7c;
  border-radius: 4px;
}
#deansMessageDrawer::-webkit-scrollbar-thumb:hover {
  background: #b89a6a;
}
/* 关闭按钮动画 */
#deansMessageClose:hover {
  transform: rotate(90deg);
  transition: transform 0.3s ease;
}
/* 蒙层样式 */
#deansMessageOverlay {
  z-index: 40;
}
/* 抽屉层级，确保在蒙层之上 */
#deansMessageDrawer {
  z-index: 50;
}
/* 装饰条和图标按钮样式 */
#deansMessageToggle {
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  outline: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* 图标按钮hover效果 */
#deansMessageToggle:hover .btn-circle-more {
  border-color: #941f23;
  background-color: #941f23;
  transform: scale(1.05);
}
#deansMessageToggle:hover .btn-circle-more img {
  filter: brightness(0) invert(1);
}
/* 图标按钮点击效果 */
#deansMessageToggle:active .btn-circle-more {
  transform: scale(0.95);
}
/* 移动端优化 - 全屏弹出 */
@media (max-width: 768px) {
  #deansMessageDrawer {
    width: 100% !important;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    transform: translateY(100%) !important;
  }
  #deansMessageDrawer.open {
    transform: translateY(0) !important;
  }
}
/* PC端样式 */
@media (min-width: 769px) {
  #deansMessageDrawer {
    width: 80%;
    transform: translateX(-100%) !important;
  }
  #deansMessageDrawer.open {
    transform: translateX(0) !important;
  }
}
