/* È«¾Ö±äÁ¿ */
:root {
  --primary-red: #8B0000;
  --light-red: #f9dada;
  --dark-red: #660000;
  --text-dark: #333;
  --text-light: #666;
  --bg-white: #fff;
  --bg-light: #f8f9fa;
  --bg-dark: #1a1a1a;
  --border-color: #e9ecef;
  --base-font-size: 1.1rem; /* »ù´¡×ÖÌå´óÐ¡£¬´Ó1remÔö¼Óµ½1.1rem */
  --small-font-size: 0.95rem; /* Ð¡×ÖÌå´óÐ¡ */
  --large-font-size: 1.2rem; /* ´ó×ÖÌå´óÐ¡ */
}

/* ÉîÉ«Ä£Ê½±äÁ¿ */
@media (prefers-color-scheme: dark) {
  :root {
    --text-dark: #fff;
    --text-light: #ccc;
    --bg-white: #1a1a1a;
    --bg-light: #2d2d2d;
    --border-color: #404040;
  }
}

/* »ù´¡ÑùÊ½ */
* {
  box-sizing: border-box;
}

body {
  font-family: 'Microsoft YaHei', 'PingFang SC', 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--bg-white);
  font-size: var(--base-font-size); /* Ê¹ÓÃCSS±äÁ¿ÉèÖÃ»ù´¡×ÖÌå´óÐ¡ */
}

/* Í³Ò»Í·²¿ÈÝÆ÷ÑùÊ½ */
.unified-header {
  background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
  color: white;
  transition: all 0.3s ease;
  width: 100%;
  z-index: 1000;
}

/* ±£Ö¤ .unified-header.fixed ¸ß¶È×ÔÊÊÓ¦ header+µ¼º½À¸ */
.unified-header.fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  animation: slideDown 0.3s ease;
  width: 100%;
  max-width: 100vw;
  /* ²»ÉèÖÃ height£¬²»ÉèÖÃ overflow£¬×Ô¶¯°ü¹üÄÚÈÝ */
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}

/* body ¶¥²¿Áô³ö¿Õ¼ä£¬±ÜÃâÄÚÈÝ±»ÕÚµ² */
body.has-fixed-header {
  padding-top: 180px; /* ¸ù¾ÝÊµ¼ÊÍ·²¿¸ß¶Èµ÷Õû */
}
@media (max-width: 768px) {
  body.has-fixed-header {
    padding-top: 160px;
  }
}
@media (max-width: 576px) {
  body.has-fixed-header {
    padding-top: 140px;
  }
}

/* Ö»ÈÃ .top-header¡¢.navbar-collapse¡¢.dropdown-menu Í¸Ã÷£¬.main-navbar ²»ÔÙÇ¿ÖÆÍ¸Ã÷ */
.top-header,
.unified-header .navbar-collapse,
.unified-header .dropdown-menu {
  background: transparent !important;
  box-shadow: none !important;
}

/* ÒÆ³ýÔ­ÓÐ .unified-header.fixed .navbar-collapse µÄ´¿É«±³¾° */
/* ±£Ö¤ÏÂÀ­²Ëµ¥¡¢ÒÆ¶¯¶Ë²Ëµ¥µÈ¸¡²ã±³¾°Í¸Ã÷»ò°ëÍ¸Ã÷ */
.unified-header .dropdown-menu {
  background: var(--primary-red) !important;
  color: #fff !important;
  box-shadow: none !important;
}

/* È·±£¹Ì¶¨µ¼º½À¸²»Ó°ÏìÆäËû×é¼þµÄ¶¨Î» */
body.has-fixed-header .unified-header {
  /* ·ÀÖ¹¹Ì¶¨¶¨Î»Ó°ÏìÆäËûÔªËØµÄ²¼¾Ö */
  position: fixed;
}

/* ÏìÓ¦Ê½µ÷Õû¹Ì¶¨µ¼º½À¸µÄÆ«ÒÆÁ¿ */
@media (max-width: 768px) {
  body.has-fixed-header {
    padding-top: 160px;
  }
}

@media (max-width: 576px) {
  body.has-fixed-header {
    padding-top: 140px;
  }
}

/* È·±£ÏÂÀ­²Ëµ¥ÔÚ¹Ì¶¨×´Ì¬ÏÂÕý³£¹¤×÷ */
.unified-header.fixed .dropdown-menu {
  position: absolute;
  z-index: 1001; /* È·±£ÏÂÀ­²Ëµ¥ÔÚ¹Ì¶¨µ¼º½À¸Ö®ÉÏ */
}

/* È·±£ÒÆ¶¯¶Ëºº±¤²Ëµ¥ÔÚ¹Ì¶¨×´Ì¬ÏÂÕý³£¹¤×÷ */
.unified-header.fixed .navbar-collapse {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--primary-red);
  z-index: 1001;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* È·±£¹Ì¶¨µ¼º½À¸²»Ó°ÏìÏÖÓÐ×é¼þµÄ²¼¾Ö */
.unified-header.fixed + * {
  /* È·±£¹Ì¶¨µ¼º½À¸ºóÃæµÄÔªËØ²»»á±»Ó°Ïì */
  position: relative;
  z-index: auto;
}

/* È·±£ÂÖ²¥Í¼µÈ×é¼þÔÚ¹Ì¶¨µ¼º½À¸ÏÂÕý³£ÏÔÊ¾ */
.carousel-section {
  position: relative;
  z-index: 1; /* È·±£ÔÚ¹Ì¶¨µ¼º½À¸ÏÂ·½ */
}

/* È·±£ÄÚÈÝÇøÓòÔÚ¹Ì¶¨µ¼º½À¸ÏÂÕý³£ÏÔÊ¾ */
.content-section {
  position: relative;
  z-index: 1;
}

/* È·±£Ò³½ÅÔÚ¹Ì¶¨µ¼º½À¸ÏÂÕý³£ÏÔÊ¾ */
.main-footer {
  position: relative;
  z-index: 1;
}

/* ¶¥²¿ÇøÓòÑùÊ½ */
.top-header {
  padding: 1rem 0;
  color: white;
  max-height: 100px;
}

.header-logo {
  height: 4rem;
  max-height: 90px;
  width: auto;
  object-fit: contain;
  margin-right: 0.5rem;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  image-rendering: pixelated;
  image-rendering: -moz-crisp-edges;
  image-rendering: -o-crisp-edges;
  -ms-interpolation-mode: nearest-neighbor;
}

.college-title {
  font-size: 1.8rem;
  font-weight: bold;
  margin: 0;
  color: white;
}

.search-container {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.search-form {
  max-width: 300px;
  width: 100%;
}

/* ÒÆ¶¯¶ËËÑË÷ÈÝÆ÷ */
.mobile-search-container {
  position: relative;
  display: none;
  z-index: 1000;
}

/* ÒÆ¶¯¶ËËÑË÷ÇÐ»»°´Å¥ */
.mobile-search-toggle {
  background: var(--dark-red);
  border: none;
  border-radius: 50%;
  color: white;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  position: relative;
  z-index: 1001;
  pointer-events: auto;
}

.mobile-search-toggle:hover {
  background: var(--primary-red);
  transform: scale(1.1);
}

.mobile-search-toggle i {
  font-size: 1.1rem;
}

/* ÒÆ¶¯¶ËËÑË÷±íµ¥ */
.mobile-search {
  position: absolute;
  top: 50px;
  right: 0;
  z-index: 1000;
  background: white;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  padding: 0.5rem;
  min-width: 250px;
  animation: slideDown 0.3s ease;
}

.mobile-search .input-group {
  display: flex;
  align-items: center;
}

.mobile-search .search-input {
  border: 1px solid #ddd;
  border-radius: 4px 0 0 4px;
  padding: 0.5rem;
  font-size: 0.9rem;
}

.mobile-search .btn-search {
  background: var(--primary-red);
  border: none;
  border-radius: 0 4px 4px 0;
  color: white;
  padding: 0.5rem 0.8rem;
  transition: background-color 0.3s;
}

.mobile-search .btn-search:hover {
  background: var(--dark-red);
}

.mobile-search .btn-close-search {
  background: #6c757d;
  border: none;
  border-radius: 4px;
  color: white;
  padding: 0.5rem 0.8rem;
  margin-left: 0.5rem;
  transition: background-color 0.3s;
}

.mobile-search .btn-close-search:hover {
  background: #5a6268;
}

.search-input {
  border: none;
  border-radius: 20px 0 0 20px;
  padding: 0.6rem 0.8rem;
  font-size: 0.85rem;
}

.btn-search {
  background: var(--dark-red);
  border: none;
  border-radius: 0 20px 20px 0;
  color: white;
  padding: 0.6rem 0.8rem;
  transition: background-color 0.3s;
}

.btn-search:hover {
  background: var(--primary-red);
  color: white;
}

/* µ¼º½À¸ÑùÊ½ */
.main-navbar {
  padding: 0.5rem 0;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* È·±£µ¼º½À¸ÔÚ1024pxÒÔÏÂÊ±ÊÕÆð */
@media (max-width: 1199.98px) {
  .main-navbar .navbar-collapse {
    display: none !important;
  }
  
  .main-navbar .navbar-collapse.show {
    display: block !important;
  }
}

/* 1024pxÒÔÏÂÆÁÄ»µÄËÑË÷¿òÇÐ»» */
@media (max-width: 1023.98px) {
  .desktop-search {
    display: none !important;
  }
  
  .mobile-search-container {
    display: block !important;
  }
}

/* ºº±¤²Ëµ¥°´Å¥ÑùÊ½ */
.main-navbar .navbar-toggler {
  border: none;
  padding: 0.25rem 0.5rem;
}

.main-navbar .navbar-toggler:focus {
  box-shadow: none;
}

.main-navbar .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ×ÀÃæ¶Ëµ¼º½ÑùÊ½ - ÐÞ¸Ä¶¿ªÔÆ×ÛºÏappµÇÂ¼ãÎª1200px */
@media (min-width: 1200px) {
  .main-navbar .navbar-nav {
    gap: 2rem;
  }
  
  .main-navbar .nav-link {
    color: white !important;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: all 0.3s;
    white-space: nowrap; /* ·ÀÖ¹ÎÄ×Ö»»ÐÐ */
  }
  
  .main-navbar .nav-link:hover,
  .main-navbar .nav-link.active {
    background: rgba(255,255,255,0.1);
    color: white !important;
  }
}

/* ÖÐµÈÆÁÄ»µ¼º½ÑùÊ½ (1024px - 1199px) */
@media (min-width: 1024px) and (max-width: 1199px) {
  .main-navbar .navbar-nav {
    gap: 1rem;
  }
  
  .main-navbar .nav-link {
    color: white !important;
    font-weight: 500;
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    transition: all 0.3s;
    white-space: nowrap; /* ·ÀÖ¹ÎÄ×Ö»»ÐÐ */
    font-size: 0.9rem; /* ÉÔÎ¢¼õÐ¡×ÖÌå */
    overflow: hidden; /* ·ÀÖ¹ÄÚÈÝÒç³ö */
    text-overflow: ellipsis; /* ³¬³ö²¿·ÖÏÔÊ¾Ê¡Â¿ªÔÆÔÚÏßµÇÂ¼Å */
    max-width: 120px; /* ÏÞÖÆ×î´ó¿í¶È */
  }
  
  .main-navbar .nav-link:hover,
  .main-navbar .nav-link.active {
    background: rgba(255,255,255,0.1);
    color: white !important;
  }
  
  /* È·±£ÏÂÀ­²Ëµ¥°´Å¥²»»á»»ÐÐ */
  .main-navbar .dropdown-toggle::after {
    margin-left: 0.3em;
  }
}

/* ÒÆ¶¯¶Ëµ¼º½ÑùÊ½ - ÐÞ¸Ä¶¿ªÔÆ×ÛºÏappµÇÂ¼ãÎª1024pxÒÔÏÂ */
@media (max-width: 1023.98px) {
  .main-navbar .navbar-nav {
    text-align: center;
    padding: 1rem 0;
  }
  
  .main-navbar .nav-link {
    color: white !important;
    font-weight: 500;
    padding: 0.75rem 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s;
  }
  
  .main-navbar .nav-link:hover,
  .main-navbar .nav-link.active {
    background: rgba(255,255,255,0.1);
    color: white !important;
  }
  
  .main-navbar .dropdown-menu {
    background: rgba(255,255,255,0.1);
    border: none;
    border-radius: 0;
    margin: 0;
    display: none; /* ÒÆ¶¯¶ËÄ¬ÈÏÒþ²Ø£¬ÓÉBootstrap¿ØÖÆ */
  }
  
  .main-navbar .dropdown-menu.show {
    display: block; /* BootstrapÏÔÊ¾Ê±ÏÔÊ¾ */
  }
  
  .main-navbar .dropdown-item {
    color: white;
    padding: 0.5rem 1rem;
    text-align: center;
  }
  
  .main-navbar .dropdown-item:hover {
    background: rgba(255,255,255,0.2);
    color: white;
  }
}

/* ÏÂÀ­²Ëµ¥ÑùÊ½£¨×ÀÃæ¶Ë£© */
@media (min-width: 1024px) {
  .main-navbar .dropdown-menu {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    display: none; /* Ä¬ÈÏÒþ²Ø */
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.2s ease, transform 0.2s ease;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    z-index: 1000;
  }
  
  .main-navbar .dropdown-menu.show {
    display: block;
    opacity: 1;
    transform: translateY(0);
  }
  
  .main-navbar .dropdown-item {
    color: var(--text-dark);
    padding: 0.5rem 1rem;
    transition: background-color 0.2s ease, color 0.2s ease;
    white-space: nowrap;
  }
  
  .main-navbar .dropdown-item:hover,
  .main-navbar .dropdown-item.active {
    background: var(--bg-light);
    color: var(--primary-red);
  }
}

/* ÂÖ²¥Í¼ÑùÊ½ */
.carousel-section {
  height: 500px;
  overflow: hidden;
}

.main-carousel {
  height: 100%;
}

.swiper-slide {
  height: 100%;
}

.carousel-content {
  display: flex;
  height: 100%;
  position: relative;
}

.carousel-text {
  width: 30%;
  background: linear-gradient(90deg, var(--primary-red), var(--dark-red));
  color: white;
  padding: 3rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 2;
}

/* ÂÖ²¥Í¼ÎÄ×ÖÇøÓòÄÚµÄËùÓÐ¶ÎÂäºÍÎÄ×ÖÔªËØ¶¼²»ÐèÒªÊ×ÐÐËõ½ø */
.carousel-text p,
.carousel-text h1,
.carousel-text h2,
.carousel-text h3,
.carousel-text h4,
.carousel-text h5,
.carousel-text h6,
.carousel-text span,
.carousel-text div {
  text-indent: 0;
}

.carousel-title {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 1rem;
  line-height: 1.2;
  text-indent: 0; /* ÂÖ²¥Í¼±êÌâ²»ÐèÒªÊ×ÐÐËõ½ø */
}

.carousel-description {
  font-size: 1rem;
  margin-bottom: 2rem;
  line-height: 1.6;
  opacity: 0.9;
  text-indent: 0; /* ÂÖ²¥Í¼ÃèÊöÎÄ×Ö²»ÐèÒªÊ×ÐÐËõ½ø */
}

.carousel-button {
  display: inline-block;
  background: white;
  color: var(--primary-red);
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  border-radius: 25px;
  font-weight: 500;
  transition: all 0.3s;
  align-self: flex-start;
}

.carousel-button:hover {
  background: var(--bg-light);
  color: var(--primary-red);
  transform: translateY(-2px);
}

.carousel-image {
  width: 70%;
  height: 100%;
  position: relative;
  background: linear-gradient(to bottom, #8B0000 0%, #660000 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-image::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 1px;
  height: 100%;
  background: var(--dark-red);
  z-index: 3;
}

.carousel-image img {
  height: 100%;
  width: auto;
  object-fit: contain;
  object-position: center center;
}

/* Swiper ¿ØÖÆ°´Å¥ÑùÊ½ */
.swiper-button-next,
.swiper-button-prev {
  display: none; /* Òþ²ØÄ¬ÈÏ¼ýÍ· */
}

/* ×Ô¶¨Òå¼ýÍ·ÑùÊ½ */
.custom-arrow-container {
  position: absolute;
  bottom: 20px;
  right: 2rem;
  z-index: 10;
  display: flex;
  gap: 0.5rem;
}

.custom-arrow {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
  color: var(--primary-red);
  font-size: 1rem;
}

.custom-arrow:hover {
  background: white;
  transform: scale(1.1);
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.custom-arrow i {
  font-weight: bold;
}

.swiper-pagination-bullet {
  background: white;
  opacity: 0.7;
}

.swiper-pagination-bullet-active {
  opacity: 1;
  background: var(--primary-red);
}

/* ÄÚÈÝÇøÓòÑùÊ½ */
.content-section {
  padding: 2rem 0;
  background: var(--bg-white);
}

/* ×ó²àÀ¸ÑùÊ½ */
.left-panel {
  background: var(--bg-dark);
  color: white;
  padding: 1.5rem;
  position: relative;
  height: auto;
  overflow: visible;
}

.content-block {
  margin-bottom: 2rem;
}

.block-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid white;
}

.block-header h3 {
  font-size: 1.2rem;
  font-weight: bold;
  margin: 0;
  color: white;
  position: relative;
  padding-right: 20px;
}

.block-header h3::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  width: 0;
  height: 0;
  border-top: 12px solid var(--primary-red);
  border-left: 12px solid transparent;
}

.more-link {
  color: #ccc;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s;
}

.more-link:hover {
  color: var(--primary-red);
}

/* ÐÂÎÅÏîÑùÊ½ */
.news-item {
  margin-bottom: 1rem;
}

.news-item.with-image {
  background: rgba(255,255,255,0.05);
  border-radius: 8px;
  overflow: hidden;
}

.news-image {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%; /* 16:9 ¿í¸ß±È */
  overflow: hidden;
  background: #f8f9fa;
}

.news-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.news-content {
  padding: 1rem;
}

.news-title {
  color: white;
  text-decoration: none;
  font-weight: 500;
  line-height: 1.4;
  display: block;
  margin-bottom: 0.5rem;
  transition: color 0.3s;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}

.news-title:hover {
  color: var(--primary-red);
}

.news-date {
  color: #ccc;
  font-size: 0.8rem;
}

.news-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.news-list li {
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  width: 100%;
  box-sizing: border-box;
}

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

.no-content {
  color: #ccc;
  font-style: italic;
  text-align: center;
  padding: 1rem;
}

/* Áª¿ªÔÆ×ÛºÏappµÇÂ¼ÎÒÃÇ°´Å¥ÑùÊ½ */
.contact-button {
  display: block;
  color: white;
  text-decoration: none;
  padding: 0.5rem 0;
  text-align: center;
  font-weight: 500;
  transition: all 0.3s;
}

.contact-button:hover {
  color: rgba(255,255,255,0.8);
  text-decoration: underline;
}

/* ¾É°æÖ÷Ò³°´Å¥ÑùÊ½ */
.old-version-button {
  display: block;
  color: white;
  text-decoration: none;
  padding: 0.5rem 0;
  text-align: center;
  font-weight: 500;
  transition: all 0.3s;
}

.old-version-button:hover {
  color: rgba(255,255,255,0.8);
  text-decoration: underline;
}

/* Footer°´Å¥ÈÝÆ÷ÑùÊ½ */
.footer-buttons-container {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin: 3px 0;
  flex-wrap: wrap;
}

.footer-buttons-container .contact-button,
.footer-buttons-container .old-version-button {
  white-space: nowrap;
  min-width: fit-content;
}

.contact-button-section {
  margin-bottom: 0.8rem;
}

/* Ö÷Ò³ÃæFooterÑùÊ½ */
.main-footer {
  background: var(--primary-red);
  color: white;
  padding: 2.5rem 0;
  margin-top: auto;
}

.footer-content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 3rem;
  min-height: 80px;
}

.footer-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
}

.footer-item i {
  font-size: 1rem;
  opacity: 0.8;
}

.footer-link {
  color: white;
  text-decoration: none;
  transition: all 0.3s;
}

.footer-link:hover {
  color: rgba(255,255,255,0.8);
  text-decoration: underline;
}

.footer-qr {
  display: flex;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s;
}

.footer-qr:hover {
  opacity: 0.8;
}

.footer-qr .qr-code {
  padding: 0.75rem;
  background: rgba(255,255,255,0.1);
  border-radius: 8px;
  text-align: center;
  min-width: 60px;
}

.footer-qr .qr-code i {
  font-size: 1.8rem;
  color: white;
  margin-bottom: 0.5rem;
  display: block;
}

.footer-qr .qr-code p {
  margin: 0;
  color: white;
  font-size: 0.85rem;
  line-height: 1.2;
}

/* ÏìÓ¦Ê½µ÷Õû */
@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  
  .footer-item {
    justify-content: center;
  }
}

/* ×ó²àFooterÑùÊ½ */
.left-footer {
  position: relative;
  background: var(--primary-red);
  padding: 1.5rem;
  margin: 0 -1.5rem -1.5rem -1.5rem;
  overflow: hidden;
}

/* ×ó²àÒ³½ÅÄÚÈÝ°ü×°Æ÷ - ÊµÏÖ×óÓÒ²¼¾Ö */
.footer-content-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  min-height: 120px;
}

/* ×ó²à¶þÎ¬ÂëÇøÓò */
.qr-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
}

/* ÓÒ²àÁª¿ªÔÆ×ÛºÏappµÇÂ¼ÐÅÏ¢ÇøÓò */
.contact-section {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  text-align: left;
  height: 100px;
  min-width: 0; /* ·ÀÖ¹flex×ÓÔªËØÒç³ö */
}

/* ÏìÓ¦Ê½Éè¼Æ - ´óÆÁÄ»ÓÅ»¯ */
@media (min-width: 1200px) {
  .footer-content-wrapper {
    gap: 1.2rem;
    min-height: 130px;
  }
  
  .qr-section {
    width: 110px;
    height: 110px;
  }
  
  .contact-section {
    height: 110px;
  }
}

/* ÏìÓ¦Ê½Éè¼Æ - ÖÐµÈÆÁÄ»ÓÅ»¯ */
@media (min-width: 768px) and (max-width: 1199px) {
  .footer-content-wrapper {
    gap: 1.2rem;
    min-height: 110px;
  }
  
  .qr-section {
    width: 90px;
    height: 90px;
  }
  
  .contact-section {
    height: 90px;
    flex: 1;
  }
  
  .contact-info {
    font-size: 0.75rem;
    gap: 0.1rem;
    text-align: center;
    align-items: center;
  }
  
  .contact-info p {
    line-height: 1.3;
    font-size: 0.7rem;
  }
}

.qr-code {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  padding: 1rem;
  background: rgba(255,255,255,0.1);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.qr-code:hover {
  background: rgba(255,255,255,0.15);
  transform: translateY(-2px);
}

.qr-code i {
  font-size: 2.5rem;
  color: white;
  margin-bottom: 0.5rem;
}

.qr-code p {
  margin: 0;
  color: white;
  font-size: 0.85rem;
  font-weight: 500;
}

.qr-label {
  margin-top: 4px;
  margin-bottom: 4px;
  font-size: 0.95rem;
  font-weight: 500;
  color: #fff;
  white-space: nowrap;
  text-align: center;
  width: auto;
  display: block;
}

.contact-info {
  color: white;
  font-size: var(--small-font-size); /* Ê¹ÓÃCSS±äÁ¿£¬´Ó0.8remÔö¼Óµ½0.95rem */
  text-align: left;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.1rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}

.contact-info p {
  margin: 0 0 0.3em 0;
  text-align: left;
  text-indent: -2.5em;
  padding-left: 2.5em;
  line-height: 1.6;
  word-break: break-all;
  font-size: var(--small-font-size); /* Ê¹ÓÃCSS±äÁ¿£¬´ÓÄ¬ÈÏ´óÐ¡Ôö¼Óµ½0.95rem */
}

/* ÖÐ¼äÀ¸ÑùÊ½ */
.center-panel {
  background: var(--bg-white);
  padding: 1.5rem;
  min-height: auto;
}

.center-panel .block-header {
  border-bottom: 2px solid var(--text-dark);
}

.center-panel .block-header h3 {
  color: var(--text-dark);
}

.center-panel .more-link {
  color: var(--text-light);
}

.center-panel .more-link:hover {
  color: var(--primary-red);
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  grid-template-rows: repeat(2, 1fr);
  min-height: auto;
}

/* ÐÂÎÅÍø¸ñ»ù´¡ÑùÊ½ - ÁÐÊýÓÉJavaScript¶¯Ì¬¿ØÖÆ */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* Ä¬ÈÏ3ÁÐ£¬JavaScript»á¸ù¾ÝÆÁÄ»³ß´çµ÷Õû */
  gap: 1rem;
  grid-template-rows: repeat(2, 1fr);
  min-height: auto;
}

.news-grid .card-image {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%; /* 16:9 ¿í¸ß±È */
  overflow: hidden;
  background: #f8f9fa;
}

.news-grid .card-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  image-rendering: pixelated;
  image-rendering: -moz-crisp-edges;
  image-rendering: -o-crisp-edges;
  -ms-interpolation-mode: nearest-neighbor;
  backface-visibility: hidden;
  transform: translateZ(0);
}

.news-card {
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  will-change: transform;
  display: flex;
  flex-direction: column;
}

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

.card-content {
  padding: 1rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 80px; /* È·±£ÓÐ×ã¹»¿Õ¼äÈÝÄÉÁ½ÐÐ±êÌâºÍÈÕÆÚ */
}

.card-image {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%; /* 16:9 ¿í¸ß±È */
  overflow: hidden;
  background: #f8f9fa;
}

.card-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  image-rendering: pixelated;
  image-rendering: -moz-crisp-edges;
  image-rendering: -o-crisp-edges;
  -ms-interpolation-mode: nearest-neighbor;
  backface-visibility: hidden;
  transform: translateZ(0);
}

.card-title {
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 500;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 0.5rem;
  transition: color 0.3s;
  /* È·±£ÔÚ²»Í¬ä¯ÀÀÆ÷ÖÐ¶¼ÄÜÕý³£¹¤×÷ */
  max-height: calc(1.4em * 2); /* Á½ÐÐµÄ¸ß¶È */
  word-wrap: break-word;
  word-break: break-word;
}

.card-title:hover {
  color: var(--primary-red);
}

.card-date {
  color: var(--text-light);
  font-size: 0.8rem;
  margin-top: auto; /* ½«ÈÕÆÚÍÆµ½µ×²¿ */
}

/* ÓÒ²àÀ¸ÑùÊ½ */
.right-panel {
  background: var(--bg-white);
  padding: 1.5rem;
  min-height: auto;
}

.right-panel .block-header {
  border-bottom: 2px solid var(--text-dark);
}

.right-panel .block-header h3 {
  color: var(--text-dark);
}

.right-panel .more-link {
  color: var(--text-light);
}

.right-panel .more-link:hover {
  color: var(--primary-red);
}

.notice-list {
  list-style: none;
  padding: 0;
  margin: 0;
  height: 100%; /* È·±£ÁÐ±íÕ¼ÂúÈÝÆ÷¸ß¶È */
  display: flex;
  flex-direction: column;
  justify-content: flex-start; /* ´Ó¶¥²¿¿ªÊ¼ÅÅÁÐ */
}

.notice-list li {
  padding: 0.6rem 0; /* ´Ó0.75rem¼õÉÙµ½0.6rem£¬ÒÔÈÝÄÉ¸ü¶à±êÌâ */
  border-bottom: 1px solid var(--border-color);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-shrink: 0; /* ·ÀÖ¹ÁÐ±íÏî±»Ñ¹Ëõ */
}

.notice-list li:last-child {
  border-bottom: none;
}

.notice-title {
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 500;
  line-height: 1.3; /* ÉÔÎ¢¼õÉÙÐÐ¸ßÒÔ½ÚÊ¡¿Õ¼ä */
  flex: 1;
  margin-right: 1rem;
  transition: color 0.3s;
  white-space: nowrap; /* ·ÀÖ¹±êÌâ»»ÐÐ */
  overflow: hidden; /* Òþ²Ø³¬³ö²¿·Ö */
  text-overflow: ellipsis; /* ÏÔÊ¾Ê¡Â¿ªÔÆÔÚÏßµÇÂ¼Å */
  max-width: 100%; /* È·±£¿í¶ÈÏÞÖÆ */
  min-width: 0; /* ÔÊÐíflexÏîÄ¿ÊÕËõ */
}

.notice-title:hover {
  color: var(--primary-red);
}

.notice-date {
  color: var(--text-light);
  font-size: 0.75rem; /* ÉÔÎ¢¼õÉÙ×ÖÌå´óÐ¡ÒÔ½ÚÊ¡¿Õ¼ä */
  white-space: nowrap;
  flex-shrink: 0; /* ·ÀÖ¹ÈÕÆÚ±»Ñ¹Ëõ */
  margin-left: 0.5rem; /* Ìí¼Ó×ó±ß¾à£¬Óë±êÌâ±£³ÖÊÊµ±¾àÀë */
}

/* ÓÒ²àÀ¸³£ÓÃÏÂÔØÑùÊ½ */
.right-panel .news-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.right-panel .news-list li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border-color);
  width: 100%;
  box-sizing: border-box;
}

.right-panel .news-list li:last-child {
  border-bottom: none;
}

.right-panel .news-list .news-title {
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 500;
  line-height: 1.4;
  display: block;
  margin-bottom: 0.5rem;
  transition: color 0.3s;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}

.right-panel .news-list .news-title:hover {
  color: var(--primary-red);
}

.right-panel .news-list .news-date {
  color: var(--text-light);
  font-size: 0.8rem;
}

.right-panel .no-content {
  color: var(--text-light);
  font-style: italic;
  text-align: center;
  padding: 1rem;
}

/* ÓÒ±ßÀ¸ÄÚÈÝ¿éÖ®¼äµÄ¼ä¾à */
.right-panel .content-block {
  margin-bottom: 6rem; /* ´Ó8rem¼õÉÙµ½6rem£¬ÎªÍ¨Öª¹«¸æÂÖ²¥Ìá¹©¸ü¶à¿Õ¼ä */
}

.right-panel .content-block:last-child {
  margin-bottom: 0;
}

/* Í¨Öª¹«¸æÂÖ²¥ÑùÊ½ */
.notice-carousel-container {
  position: relative;
  overflow: hidden;
  margin-bottom: 0.5rem; /* ¼õÉÙµ×²¿¼ä¾àÒÔ½ÚÊ¡¿Õ¼ä */
}

.notice-carousel {
  position: relative;
  width: 100%;
  height: auto;
  min-height: 320px; /* Ôö¼Ó¸ß¶ÈÒÔÈÝÄÉ6¸ö±êÌâ */
  overflow: hidden; /* È·±£³¬³ö²¿·ÖÒþ²Ø */
  display: flex; /* Ê¹ÓÃflex²¼¾Ö */
  flex-direction: column; /* ´¹Ö±ÅÅÁÐ */
  justify-content: flex-start; /* ´Ó¶¥²¿¿ªÊ¼ÅÅÁÐ */
}

.notice-carousel-group {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transform: translateX(100%);
  transition: all 0.5s ease-in-out;
  pointer-events: none;
  visibility: hidden;
  z-index: 1;
  height: 100%; /* È·±£ÂÖ²¥×éÕ¼ÂúÈÝÆ÷¸ß¶È */
  display: flex; /* Ê¹ÓÃflex²¼¾Ö */
  flex-direction: column; /* ´¹Ö±ÅÅÁÐ */
  justify-content: flex-start; /* ´Ó¶¥²¿¿ªÊ¼ÅÅÁÐ */
}

.notice-carousel-group.active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
  visibility: visible;
  z-index: 2;
  display: flex; /* Ê¹ÓÃflex²¼¾Ö */
  flex-direction: column; /* ´¹Ö±ÅÅÁÐ */
  justify-content: flex-start; /* ´Ó¶¥²¿¿ªÊ¼ÅÅÁÐ */
}

.notice-carousel-indicators {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 0.8rem; /* ÉÔÎ¢¼õÉÙ¶¥²¿¼ä¾àÒÔ½ÚÊ¡¿Õ¼ä */
  flex-shrink: 0; /* ·ÀÖ¹Ö¸Ê¾Æ÷ÈÝÆ÷±»Ñ¹Ëõ */
}

.notice-carousel-indicators .indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--border-color);
  cursor: pointer;
  transition: background-color 0.3s ease;
  flex-shrink: 0; /* ·ÀÖ¹Ö¸Ê¾Æ÷±»Ñ¹Ëõ */
}

.notice-carousel-indicators .indicator.active {
  background-color: var(--primary-red);
}

/* Í¨Öª¹«¸æÂÖ²¥ÏìÓ¦Ê½Éè¼Æ */
@media (max-width: 768px) {
  .notice-carousel {
    min-height: 280px; /* ÒÆ¶¯¶ËÉÔÎ¢¼õÉÙ¸ß¶È */
  }
  
  .notice-list li {
    padding: 0.5rem 0; /* ÒÆ¶¯¶Ë½øÒ»²½¼õÉÙpadding */
  }
  
  .notice-title {
    line-height: 1.2; /* ÒÆ¶¯¶Ë¼õÉÙÐÐ¸ß */
    font-size: 0.9rem; /* ÒÆ¶¯¶ËÉÔÎ¢¼õÉÙ×ÖÌå´óÐ¡ */
  }
  
  .notice-date {
    font-size: 0.7rem; /* ÒÆ¶¯¶Ë¼õÉÙÈÕÆÚ×ÖÌå´óÐ¡ */
  }
  
  .notice-carousel-indicators {
    margin-top: 0.8rem;
  }

  .notice-carousel-indicators .indicator {
    width: 6px;
    height: 6px;
  }
}

@media (max-width: 576px) {
  .notice-carousel {
    min-height: 260px; /* Ð¡ÆÁÄ»½øÒ»²½¼õÉÙ¸ß¶È */
  }
  
  .notice-list li {
    padding: 0.45rem 0; /* Ð¡ÆÁÄ»½øÒ»²½¼õÉÙpadding */
  }
  
  .notice-title {
    line-height: 1.15; /* Ð¡ÆÁÄ»½øÒ»²½¼õÉÙÐÐ¸ß */
    font-size: 0.85rem; /* Ð¡ÆÁÄ»½øÒ»²½¼õÉÙ×ÖÌå´óÐ¡ */
  }
  
  .notice-date {
    font-size: 0.65rem; /* Ð¡ÆÁÄ»½øÒ»²½¼õÉÙÈÕÆÚ×ÖÌå´óÐ¡ */
  }
  
  .notice-carousel-indicators {
    margin-top: 0.6rem;
  }

  .notice-carousel-indicators .indicator {
    width: 5px;
    height: 5px;
  }
}

/* ÏìÓ¦Ê½Éè¼Æ */
@media (max-width: 1200px) {
  .carousel-text {
    width: 30%;
    padding: 2rem 1.5rem;
  }

  .carousel-image {
    width: 70%;
  }

  .carousel-title {
    font-size: 1.5rem;
  }
}



@media (max-width: 992px) {
  .carousel-section {
    height: 400px;
  }

  .carousel-text {
    width: 40%;
    padding: 1.5rem 1rem;
  }

  .carousel-image {
    width: 60%;
  }

  .carousel-title {
    font-size: 1.3rem;
  }

  .carousel-description {
    font-size: 0.9rem;
  }

  .left-panel {
    margin-bottom: 2rem;
  }

  .left-footer {
    margin: 0 -1.5rem -1.5rem -1.5rem;
  }

  .center-panel,
  .right-panel {
    min-height: auto;
    margin-bottom: 2rem;
  }
}

@media (max-width: 768px) {
  .top-header {
    padding: 0.8rem 0;
    max-height: 80px;
  }

  .college-title {
    font-size: 1.4rem;
  }

  .header-logo {
    height: 3.5rem;
    max-height: 70px;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
  }

  /* ÒÆ¶¯¶Ëlogo¾ÓÖÐÏÔÊ¾£¬ÒÆ³ý×ó±ß¿ÕÏ¶ */
  .top-header .row {
    justify-content: center;
    margin: 0;
  }
  
  .top-header .col-md-8 {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-left: 0;
    padding-right: 0;
    flex: 0 0 auto;
    max-width: none;
    width: auto;
  }

  .top-header .col-md-8 .d-flex {
    justify-content: center;
    width: 100%;
  }
  
  /* È·±£logoÍ¼Æ¬±¾Éí¾ÓÖÐ */
  .top-header .header-logo {
    margin: 0 auto;
    display: block;
  }

  /* ÒÆ¶¯¶ËËÑË÷¿ò¿¿ÓÒ¶ÔÆë */
  .top-header .col-md-4 {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding-left: 0;
    padding-right: 0;
  }

  .search-container {
    justify-content: flex-end;
    margin-top: 0.5rem;
    width: 100%;
  }

  /* 768pxÒÔÏÂÏÔÊ¾ÒÆ¶¯¶ËËÑË÷ */
  .desktop-search {
    display: none !important;
  }
  
  .mobile-search-container {
    display: block !important;
  }

  .search-form {
    max-width: 250px;
  }

  .carousel-section {
    height: 300px;
  }

  .carousel-text {
    width: 100%;
    height: 50%;
    padding: 1rem;
  }

  .carousel-image {
    width: 100%;
    height: 100%;
  }

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

  .carousel-title {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
  }

  .carousel-description {
    font-size: 0.8rem;
    margin-bottom: 1rem;
  }

  .carousel-content {
    flex-direction: column;
  }

  .news-grid {
    grid-template-columns: 1fr;
  }

  .left-panel,
  .center-panel,
  .right-panel {
    padding: 1rem;
    min-height: auto;
  }
  
  /* ÒÆ¶¯¶ËÐÂÎÅ±êÌâÓÅ»¯ */
  .news-title {
    max-width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  
  .right-panel .news-list .news-title {
    max-width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .left-footer {
    margin: 0 -1rem -1rem -1rem;
    padding: 1rem;
  }

  /* ÒÆ¶¯¶Ë×óÓÒ²¼¾Öµ÷Õû */
  .footer-content-wrapper {
    flex-direction: column;
    gap: 2rem;
    min-height: auto;
    padding: 1rem 0;
  }

  .qr-section {
    width: 80px;
    height: 80px;
    margin: 0 auto;
  }
  
  .qr-code {
    width: 80px;
    height: 80px;
    padding: 0.8rem;
  }

  .contact-section {
    width: 100%;
    height: auto;
    align-items: center;
    text-align: center;
    flex: 1;
  }

  .contact-info {
    text-align: center;
    align-items: center;
    font-size: var(--small-font-size); /* Ê¹ÓÃCSS±äÁ¿£¬´Ó0.8remÔö¼Óµ½0.95rem */
    gap: 0.2rem;
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
  }

  .contact-info p {
    text-align: center;
    line-height: 1.5;
    font-size: var(--small-font-size); /* Ê¹ÓÃCSS±äÁ¿£¬´Ó0.75remÔö¼Óµ½0.95rem */
    word-break: normal;
    margin-bottom: 0.2rem;
    padding: 0 0.5rem;
  }
}

@media (max-width: 576px) {
  .college-title {
    font-size: 1.2rem;
  }

  .header-logo {
    height: 3rem;
    max-height: 60px;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
  }

  .top-header {
    padding: 0.6rem 0;
    max-height: 70px;
  }

  /* Ð¡ÆÁÄ»ÏÂ½øÒ»²½ÓÅ»¯logo¾ÓÖÐ */
  .top-header .row {
    justify-content: center;
    margin: 0;
  }
  
  .top-header .col-md-8 {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-left: 0;
    padding-right: 0;
    flex: 0 0 auto;
    max-width: none;
    width: auto;
  }

  .top-header .col-md-8 .d-flex {
    justify-content: center;
    width: 100%;
  }
  
  /* È·±£logoÍ¼Æ¬±¾Éí¾ÓÖÐ */
  .top-header .header-logo {
    margin: 0 auto;
    display: block;
  }

  /* Ð¡ÆÁÄ»ÏÂËÑË÷¿ò¿¿ÓÒ¶ÔÆë */
  .top-header .col-md-4 {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding-left: 0;
    padding-right: 0;
  }

  .search-container {
    justify-content: flex-end;
    width: 100%;
  }

  .search-form {
    max-width: 200px;
  }

  .left-footer {
    margin: 0 -0.8rem -0.8rem -0.8rem;
    padding: 1rem;
  }
  
  /* Ð¡ÆÁÄ»ÐÂÎÅ±êÌâÓÅ»¯ */
  .news-title {
    max-width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  
  .right-panel .news-list .news-title {
    max-width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  /* Ð¡ÆÁÄ»×ó²àÒ³½ÅÓÅ»¯ */
  .footer-content-wrapper {
    gap: 1.2rem;
    padding: 0.8rem 0;
  }

  .qr-section {
    width: 60px;
    height: 60px;
  }
  
  .qr-code {
    width: 60px;
    height: 60px;
    padding: 0.6rem;
  }

  .contact-section {
    flex: 1;
    width: 100%;
  }

  .contact-info {
    font-size: var(--small-font-size); /* Ê¹ÓÃCSS±äÁ¿£¬´Ó0.75remÔö¼Óµ½0.95rem */
    gap: 0.1rem;
    width: 100%;
    max-width: 260px;
    margin: 0 auto;
  }

  .contact-info p {
    line-height: 1.4;
    margin-bottom: 0.15rem;
    font-size: var(--small-font-size); /* Ê¹ÓÃCSS±äÁ¿£¬´Ó0.7remÔö¼Óµ½0.95rem */
    word-break: normal;
    padding: 0 0.3rem;
  }

  .carousel-section {
    height: 250px;
  }

  .carousel-text {
    padding: 0.75rem;
  }

  .carousel-title {
    font-size: 1rem;
  }

  .carousel-description {
    font-size: 0.75rem;
  }

  .carousel-button {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
  }

  .faculty-list-card {
    flex-direction: column !important;
    align-items: flex-start !important;
  }

  .left-panel,
  .center-panel,
  .right-panel {
    min-height: auto;
  }
}

/* 425-480pxÆÁÄ»ÓÅ»¯ */
@media (min-width: 426px) and (max-width: 480px) {
  .footer-content-wrapper {
    gap: 1.5rem; /* ½øÒ»²½Ôö¼Ó¼ä¾à£¬ÈÃ¶þÎ¬ÂëÓë°´Å¥ÓÐ¸üºÏÊÊµÄ¾àÀë */
    padding: 1rem 0;
  }
  
  .footer-content-wrapper .qr-section {
    margin-bottom: 0.3rem;
  }
  
  .footer-content-wrapper .contact-button,
  .footer-content-wrapper .old-version-button {
    font-size: 0.9rem;
    margin: 0.3rem auto;
    padding: 0.3em 0.8em;
  }
  
  .footer-content-wrapper .contact-info p {
    font-size: 0.9rem !important; /* Óë°´Å¥±£³ÖÒ»ÖÂ */
  }
}

/* ³¬Ð¡ÆÁÄ»ÓÅ»¯ */
@media (max-width: 425px) {
  .notice-carousel {
    min-height: 240px; /* ³¬Ð¡ÆÁÄ»½øÒ»²½¼õÉÙ¸ß¶È */
  }
  
  .notice-list li {
    padding: 0.4rem 0; /* ³¬Ð¡ÆÁÄ»½øÒ»²½¼õÉÙpadding */
  }
  
  .notice-title {
    line-height: 1.1; /* ³¬Ð¡ÆÁÄ»½øÒ»²½¼õÉÙÐÐ¸ß */
    font-size: 0.8rem; /* ³¬Ð¡ÆÁÄ»½øÒ»²½¼õÉÙ×ÖÌå´óÐ¡ */
  }
  
  .notice-date {
    font-size: 0.6rem; /* ³¬Ð¡ÆÁÄ»½øÒ»²½¼õÉÙÈÕÆÚ×ÖÌå´óÐ¡ */
  }
  
  .footer-content-wrapper {
    gap: 0.6rem;
    padding: 0.6rem 0;
  }
  
  /* ³¬Ð¡ÆÁÄ»ÐÂÎÅ±êÌâÓÅ»¯ */
  .news-title {
    max-width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  
  .right-panel .news-list .news-title {
    max-width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .qr-section {
    width: 50px;
    height: 50px;
  }

  .contact-section {
    flex: 1;
    width: 100%;
  }

  .contact-info {
    font-size: 0.7rem;
    gap: 0.1rem;
    width: 100%;
    max-width: 240px;
    margin: 0 auto;
  }

  .contact-info p {
    line-height: 1.3;
    margin-bottom: 0.1rem;
    font-size: 0.65rem;
    word-break: normal;
    padding: 0 0.2rem;
  }
}

/* ¼«Ð¡ÆÁÄ»ÓÅ»¯ (320px-400px) */
@media (max-width: 400px) {
  .notice-carousel {
    min-height: 220px; /* ¼«Ð¡ÆÁÄ»½øÒ»²½¼õÉÙ¸ß¶È */
  }
  
  .notice-list li {
    padding: 0.35rem 0; /* ¼«Ð¡ÆÁÄ»½øÒ»²½¼õÉÙpadding */
  }
  
  .notice-title {
    line-height: 1.05; /* ¼«Ð¡ÆÁÄ»½øÒ»²½¼õÉÙÐÐ¸ß */
    font-size: 0.75rem; /* ¼«Ð¡ÆÁÄ»½øÒ»²½¼õÉÙ×ÖÌå´óÐ¡ */
  }
  
  .notice-date {
    font-size: 0.55rem; /* ¼«Ð¡ÆÁÄ»½øÒ»²½¼õÉÙÈÕÆÚ×ÖÌå´óÐ¡ */
  }
  
  .left-footer {
    margin: 0 -0.8rem -0.8rem -0.8rem;
    padding: 0.8rem;
  }
  
  /* ¼«Ð¡ÆÁÄ»ÐÂÎÅ±êÌâÓÅ»¯ */
  .news-title {
    max-width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  
  .right-panel .news-list .news-title {
    max-width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .footer-content-wrapper {
    gap: 0.4rem;
    padding: 0.5rem 0;
  }

  .qr-section {
    width: 45px;
    height: 45px;
  }

  .contact-section {
    flex: 1;
    width: 100%;
  }

  .contact-info {
    font-size: 0.65rem;
    gap: 0.1rem;
    width: 100%;
    max-width: 220px;
    margin: 0 auto;
  }

  .contact-info p {
    line-height: 1.2;
    margin-bottom: 0.08rem;
    font-size: 0.6rem;
    word-break: normal;
    padding: 0 0.15rem;
  }
}

/* ÉîÉ«Ä£Ê½ÊÊÅä */
@media (prefers-color-scheme: dark) {
  .center-panel,
  .right-panel {
    background: var(--bg-dark);
    color: var(--text-dark);
  }

  .news-card {
    background: var(--bg-dark);
    border-color: var(--border-color);
  }

  .card-title {
    color: var(--text-dark);
  }

  .notice-title {
    color: var(--text-dark);
  }

  .notice-list li {
    border-color: var(--border-color);
  }
}

/* ÆäËûÒ³ÃæÑùÊ½ */
.page-content {
  padding: 2rem 0;
  background: var(--bg-white);
}

.page-content .container {
  max-width: 1200px;
  margin: 0 auto;
}

.page-content h1,
.page-content h2,
.page-content h3 {
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.page-content p {
  color: var(--text-dark);
  line-height: 1.8;
  margin-bottom: 1rem;
  text-indent: 2em;
  font-size: var(--base-font-size); /* Ê¹ÓÃ»ù´¡×ÖÌå´óÐ¡ */
}

.page-content a {
  color: var(--primary-red);
  text-decoration: none;
}

.page-content a:hover {
  text-decoration: underline;
}

/* È·±£ÆäËûÒ³ÃæÔÚÉîÉ«Ä£Ê½ÏÂÒ²ÄÜÕý³£ÏÔÊ¾ */
@media (prefers-color-scheme: dark) {
  .page-content {
    background: var(--bg-dark);
  }

  .page-content h1,
  .page-content h2,
  .page-content h3,
  .page-content p {
    color: var(--text-dark);
  }
}

/* ÐÅÏ¢Ò³ÃæºÍÐÂÎÅÒ³ÃæÄÚÈÝÑùÊ½ */
.content-container {
  max-width: 80%;
  margin: 0 auto;
  padding: 0 0 0 15%;
}

/* Ä¬ÈÏ×ó¶ÔÆë£¬ÔÊÐíÄÚÁªstyle¾ÓÖÐ/ÓÒ¶ÔÆë */
.content-body {
  text-align: left;
}
.content-body h1,
.content-body h2,
.content-body h3,
.content-body h4,
.content-body h5,
.content-body h6,
.content-body p {
  text-align: left;
}
.content-body [style*="text-align:center"] {
  text-align: center !important;
}
.content-body [style*="text-align:right"] {
  text-align: right !important;
}

.content-body h1,
.content-body h2,
.content-body h3,
.content-body h4,
.content-body h5,
.content-body h6 {
  text-align: left;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.content-body p {
  text-align: left;
  line-height: 1.8;
  margin-bottom: 1rem;
  color: var(--text-dark);
  text-indent: 2em;
  font-size: var(--base-font-size); /* Ê¹ÓÃ»ù´¡×ÖÌå´óÐ¡ */
}

.content-body img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* ¾ÓÖÐÍ¼Æ¬£ºp±êÇ©ÉèÖÃÁËtext-align:centerÊ±£¬imgÓÃinline-block */
.content-body p[style*="text-align:center"] > img {
  display: inline-block;
}

/* figure.image ½á¹¹ÏÂµÄÍ¼Æ¬£¬block²¢¾ÓÖÐ */
.content-body figure.image img {
  display: block;
  margin: 0 auto;
}

/* .content-body figure {
  text-align: center;
  margin: 1rem 0;
} */

/* .content-body figure.image {
  text-align: center;
} */

.content-body figure figcaption {
  margin-top: 0.5rem;
  font-size: 0.9rem;
  color: var(--text-light);
  font-style: italic;
}

/* CKEditor ¾ÓÖÐÍ¼Æ¬½á¹¹Ö§³Ö */
.content-body figure.image {
  text-align: center;
}

/* ÐÞ¸´£ºÈ·±£blockÑùÊ½µÄÍ¼Æ¬ÕýÈ·¾ÓÖÐ */
.content-body figure.image.image-style-block {
  display: block;
  margin: 1rem auto;
  text-align: center;
}

.content-body figure.image.image-style-block img {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  height: auto;
}

/* inlineÑùÊ½µÄÍ¼Æ¬ */
.content-body figure.image.image-style-inline {
  display: inline;
  margin: 0;
}

.content-body figure.image.image-style-inline img {
  display: inline-block;
  margin: 0;
  vertical-align: middle;
}

/* ÏìÓ¦Ê½µ÷Õû */
@media (max-width: 768px) {
  .content-container {
    max-width: 100%;
    padding: 0 5%;
  }

  .content-body {
    text-align: left;
  }

  .content-body h1,
  .content-body h2,
  .content-body h3,
  .content-body h4,
  .content-body h5,
  .content-body h6,
  .content-body p {
    text-align: left;
  }
}

/* ÁÐ±íÒ³ÃæÌØÊâÑùÊ½ */
.content-container .list-group {
  text-align: left;
}

.content-container .list-group-item {
  border: 1px solid var(--border-color);
  margin-bottom: 0.5rem;
  border-radius: 8px;
  transition: all 0.3s;
}

.content-container .list-group-item:hover {
  background-color: var(--bg-light);
  transform: translateX(5px);
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.content-container .list-group-item a {
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.content-container .list-group-item a:hover {
  color: var(--primary-red);
}

/* Í³Ò»½ÌÊ¦¿¨Æ¬ÏÂÍâ±ß¾à£¬ÓÅÑÅ¸²¸ÇËùÓÐÆÁÄ» */
.faculty-list-card {
  margin-bottom: 0.3rem;
}

.carousel-triangle {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 20%;
  height: 100%;
  background: var(--dark-red);
  clip-path: polygon(0 100%,0 0, 100% 100%);
  z-index: 2;
  opacity: 1;
  pointer-events: none;
}

.carousel-triangle-gray {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 22%;
  height: 100%;
  background: rgba(80,80,80,0.5);
  clip-path: polygon(0 100%, 0 0, 30% 0, 100% 100%);
  z-index: 1;
  pointer-events: none;
}


/* 4K´óÆÁÄ»ÓÅ»¯ (2000pxÒÔÉÏ) */
@media (min-width: 2000px) {
  .carousel-triangle {
    width: 10%;
  }
  .carousel-triangle-gray {
     width: 14%;
  }

  .header-logo {
    height: 5rem;
    max-height: 120px;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
  }

  .top-header {
    padding: 1.2rem 0;
    max-height: 120px;
  }

  /* 4K´óÆÁÄ»×ó²àÒ³½ÅÓÅ»¯ */
  .footer-content-wrapper {
    gap: 3rem;
    min-height: 150px;
  }

  .qr-section {
    width: 120px;
    height: 120px;
  }

  .contact-section {
    height: 120px;
  }

  .contact-section {
    flex: 1;
  }

  .contact-info {
    font-size: 0.9rem;
    gap: 0.2rem;
  }

  .contact-info p {
    line-height: 1.5;
    font-size: 1rem; /* Óëcontact-button±£³ÖÒ»ÖÂ */
  }
  
  /* ´óÆÁÄ»°´Å¥×ÖÌå´óÐ¡ÉèÖÃ */
  .footer-content-wrapper .contact-button,
  .footer-content-wrapper .old-version-button {
    font-size: 1rem; /* Óëcontact-info p±£³ÖÒ»ÖÂ */
  }
}


/* ´óÆÁÄ»ÓÅ»¯ (1200pxÒÔÉÏ) */
@media (min-width: 1200px) and (max-width: 1999px) {
  .carousel-triangle {
    width: 12%;
    /* ÔÚÕâÀïÌí¼Ó´óÆÁÄ»µÄÈý½ÇÐÎÓÅ»¯ */
  }
  .carousel-triangle-gray {
    width: 16%;
  }

  .header-logo {
    height: 4.5rem;
    max-height: 100px;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
  }

  .top-header {
    padding: 1rem 0;
    max-height: 110px;
  }
  
  /* µ¼º½À¸ÓÅ»¯ - ÊÊÓ¦µ÷´óºóµÄ×ÖÌå */
  .main-navbar .navbar-nav {
    gap: 1.2rem; /* ¼õÉÙ¼ä¾à£¬Îª×ÖÌåÁô³ö¸ü¶à¿Õ¼ä */
  }
  
  .main-navbar .nav-link {
    padding: 0.4rem 0.7rem; /* ¼õÉÙÄÚ±ß¾à */
  }
}

/* ÖÐµÈÆÁÄ»ÓÅ»¯ (1025px - 1199px) */
@media (min-width: 1025px) and (max-width: 1199px) {
  .carousel-triangle {
    width: 15%;
  }
  .carousel-triangle-gray {
    width: 19%;
 }
}

/* 1024px¼°ÒÔÏÂÒþ²ØÈý½ÇÐÎºÍ×ó²àÎÄ×Ö */
@media (max-width: 1024px) {
  .carousel-triangle {
    display: none;
  }

  .carousel-triangle-gray {
    display: none;
 }
  .carousel-text {
    display: none;
  }

  .carousel-image {
    width: 100% !important;
  }
}

/* Í³Ò»Í·²¿ÏÂÀ­²Ëµ¥ÑùÊ½ - ÒÆ¶¯¶Ë */
.unified-header .dropdown-menu .dropdown-item,
.unified-header .dropdown-menu .dropdown-item:hover,
.unified-header .dropdown-menu .dropdown-item.active {
  color: #fff !important;
}

.unified-header .dropdown-menu {
  border: none !important;
}

.unified-header .dropdown-menu .dropdown-item {
  color: #fff !important;
  background: transparent !important;
}

.unified-header .dropdown-menu .dropdown-item:hover,
.unified-header .dropdown-menu .dropdown-item.active {
  background: #fff !important;
  color: var(--primary-red) !important;
}

/* Ê×Ò³×ó²àÀ¸footerÊ¼ÖÕÌùµ× */
.left-panel {
  display: flex;
  flex-direction: column;
  min-height: calc(100vh - 180px); /* 180pxÎªheader+navbar¸ß¶È£¬ÐèÓëÄãÊµ¼Ê¸ß¶ÈÒ»ÖÂ */
}
.left-footer {
  margin-top: auto;
}
@media (max-width: 768px) {
  .left-panel {
    min-height: calc(100vh - 160px); /* ÒÆ¶¯¶ËÍ·²¿½Ï°« */
  }
}
@media (max-width: 576px) {
  .left-panel {
    min-height: calc(100vh - 140px);
  }
}

/* ±£Ö¤ .unified-header.fixed ÏÂËùÓÐ×ÓÔªËØ¶¼²»ÍÑÀëÎÄµµÁ÷ */
.unified-header.fixed .main-navbar,
.unified-header.fixed .navbar-collapse {
  position: static !important;
}

/* ÆäËûÒ³ÃæFooterÏìÓ¦Ê½ÓÅ»¯ */
@media (max-width: 768px) {
  .main-footer .row {
    gap: 1.2rem;
  }

  .main-footer .col-12 {
    padding: 0.5rem 0;
  }

  .main-footer .contact-button,
  .main-footer .old-version-button {
    font-size: 0.9rem;
  }

  .main-footer .qr-section {
    margin: 0 auto;
    max-width: 120px;
  }

  .main-footer .qr-code {
    margin: 0 auto;
  }

  .main-footer .qr-label {
    font-size: 0.85rem;
  }
}

@media (max-width: 576px) {
  .main-footer .row {
    gap: 0.8rem;
  }

  .main-footer .col-12 {
    padding: 0.3rem 0;
  }

  .main-footer .contact-button,
  .main-footer .old-version-button {
    font-size: 0.85rem;
  }

  .main-footer .qr-section {
    max-width: 100px;
  }

  .main-footer .qr-code img {
    width: 60px !important;
    height: 60px !important;
  }

  .main-footer .qr-label {
    font-size: 0.8rem;
  }
}

@media (max-width: 768px) {
  .main-footer .contact-button,
  .main-footer .old-version-button {
    display: inline-flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: center !important;
    width: auto !important;
    text-align: center !important;
    margin: 0.5em 0 !important;
  }
  .main-footer .contact-button i,
  .main-footer .contact-button .icon,
  .main-footer .old-version-button i,
  .main-footer .old-version-button .icon {
    margin-right: 0.5em !important;
    margin-bottom: 0 !important;
  }
}

/* Ç¿ÖÆÔÊÐíCKEditorÄÚÈÝÀïµÄÄÚÁª×ÖÌå´óÐ¡ÔÚÇ°Ì¨ÉúÐ§ */
.content-body *[style*="font-size"] {
    font-size: unset !important;
}

/* Ç¿ÖÆËùÓÐ.content-bodyÏÂµÄ±êÌâ×ó¶ÔÆë£¬¸²¸ÇÆäËûÑùÊ½ */
.content-body h1,
.content-body h2,
.content-body h3,
.content-body h4,
.content-body h5,
.content-body h6 {
    text-align: left !important;
}

/* CKEditor ×ÖÌå´óÐ¡ÀàÓ³Éä */
.content-body .text-tiny {
  font-size: 0.7em;
}
.content-body .text-small {
  font-size: 0.85em;
}
.content-body .text-big {
  font-size: 1.25em;
}
.content-body .text-huge {
  font-size: 1.6em;
}

/* --- ×ó²àÒ³½ÅÐ¡ÆÁ×ÝÏò¶ÑµþÖÕ¼«ÐÞ¸´ begin --- */
@media (max-width: 768px) {
  .footer-content-wrapper {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: flex-start !important;
    height: auto !important;
    min-height: 0 !important;
    overflow: visible !important;
    padding-bottom: 0.6rem;
    width: 100%;
  }
  .footer-content-wrapper > * {
    margin-bottom: 0.4rem;
    text-align: center !important;
    width: 100%;
  }
  .footer-content-wrapper > *:last-child {
    margin-bottom: 0;
  }
  .footer-content-wrapper .contact-button,
  .footer-content-wrapper .old-version-button {
    display: inline-flex;
    margin: 0.2rem auto;
    font-size: 1rem;
  }
  
  .footer-content-wrapper .footer-buttons-container {
    flex-direction: column;
    gap: 6px;
  }
  .footer-content-wrapper .qr-section {
    margin: 0 auto 0.1rem auto;
  }
  .footer-content-wrapper .qr-label {
    margin-bottom: 0.2rem;
  }
  .footer-content-wrapper .contact-info p {
    text-align: center !important;
    padding-left: 0 !important;
    text-indent: 0 !important;
    word-break: break-all;
    font-size: 1rem !important; /* Óëcontact-button±£³ÖÒ»ÖÂ */
  }
  .footer-content-wrapper .copyright {
    margin-top: 0.1rem;
    font-size: 0.85rem;
  }
  
  /* Ìí¼Ó¶Ôcontact-infoµÄ¼ä¾à¿ØÖÆ */
  .footer-content-wrapper .contact-info {
    margin-top: 0.1rem;
  }
}
/* --- ×ó²àÒ³½ÅÐ¡ÆÁ×ÝÏò¶ÑµþÖÕ¼«ÐÞ¸´ end --- */

/* --- ×ó²àÒ³½Å¼«Ð¡ÆÁ×ÔÊÊÓ¦ÐÞ¸´ begin --- */
@media (max-width: 425px) {
  .footer-content-wrapper {
    padding-bottom: 0.4rem;
  }
  .footer-content-wrapper > * {
    margin-bottom: 0.4rem;
    font-size: 0.9rem; /* Óë°´Å¥±£³ÖÒ»ÖÂ */
  }
  .footer-content-wrapper .qr-section {
    margin-bottom: 0.2rem;
    width: 70px;
    height: 70px;
  }
  .footer-content-wrapper .qr-code {
    width: 60px;
    height: 60px;
    padding: 0.3rem;
  }
  .footer-content-wrapper .contact-button,
  .footer-content-wrapper .old-version-button {
    font-size: 0.9rem;
    margin: 0.2rem auto;
    padding: 0.3em 0.8em;
  }
  
  .footer-content-wrapper .footer-buttons-container {
    gap: 6px;
  }
  .footer-content-wrapper .contact-info {
    margin-top: 0.1rem;
  }
  .footer-content-wrapper .contact-info p {
    font-size: 0.9rem !important; /* Óëcontact-button±£³ÖÒ»ÖÂ£¬Ê¹ÓÃ!importantÈ·±£ÓÅÏÈ¼¶ */
  }
  .footer-content-wrapper .copyright {
    margin-top: 0.1rem;
    font-size: 0.85rem;
  }
}
@media (max-width: 375px) {
  .notice-carousel {
    min-height: 200px; /* 375pxÆÁÄ»½øÒ»²½¼õÉÙ¸ß¶È */
  }
  
  .notice-list li {
    padding: 0.3rem 0; /* 375pxÆÁÄ»½øÒ»²½¼õÉÙpadding */
  }
  
  .notice-title {
    line-height: 1.0; /* 375pxÆÁÄ»½øÒ»²½¼õÉÙÐÐ¸ß */
    font-size: 0.7rem; /* 375pxÆÁÄ»½øÒ»²½¼õÉÙ×ÖÌå´óÐ¡ */
  }
  
  .notice-date {
    font-size: 0.5rem; /* 375pxÆÁÄ»½øÒ»²½¼õÉÙÈÕÆÚ×ÖÌå´óÐ¡ */
  }
  
  .footer-content-wrapper .qr-code {
    width: 50px;
    height: 50px;
    padding: 0.2rem;
  }
  
  /* 375pxÆÁÄ»ÐÂÎÅ±êÌâÓÅ»¯ */
  .news-title {
    max-width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  
  .right-panel .news-list .news-title {
    max-width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .footer-content-wrapper .contact-button,
  .footer-content-wrapper .old-version-button {
    font-size: 0.8rem;
    padding: 0.2em 0.6em;
  }
  
  .footer-content-wrapper .footer-buttons-container {
    gap: 5px;
  }
  .footer-content-wrapper > * {
    font-size: 0.8rem; /* Óë°´Å¥±£³ÖÒ»ÖÂ */
    margin-bottom: 0.25rem;
  }
  .footer-content-wrapper .contact-info {
    margin-top: 0.1rem;
  }
  .footer-content-wrapper .contact-info p {
    font-size: 0.8rem !important; /* Óëcontact-button±£³ÖÒ»ÖÂ£¬Ê¹ÓÃ!importantÈ·±£ÓÅÏÈ¼¶ */
  }
  .footer-content-wrapper .copyright {
    margin-top: 0.1rem;
  }
}
@media (max-width: 340px) {
  .notice-carousel {
    min-height: 180px; /* 340pxÆÁÄ»½øÒ»²½¼õÉÙ¸ß¶È */
  }
  
  .notice-list li {
    padding: 0.25rem 0; /* 340pxÆÁÄ»½øÒ»²½¼õÉÙpadding */
  }
  
  .notice-title {
    line-height: 0.95; /* 340pxÆÁÄ»½øÒ»²½¼õÉÙÐÐ¸ß */
    font-size: 0.65rem; /* 340pxÆÁÄ»½øÒ»²½¼õÉÙ×ÖÌå´óÐ¡ */
  }
  
  .notice-date {
    font-size: 0.45rem; /* 340pxÆÁÄ»½øÒ»²½¼õÉÙÈÕÆÚ×ÖÌå´óÐ¡ */
  }
  
  .footer-content-wrapper .qr-code {
    width: 40px;
    height: 40px;
    padding: 0.1rem;
  }
  
  /* 340pxÆÁÄ»ÐÂÎÅ±êÌâÓÅ»¯ */
  .news-title {
    max-width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  
  .right-panel .news-list .news-title {
    max-width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .footer-content-wrapper .contact-button,
  .footer-content-wrapper .old-version-button {
    font-size: 0.75rem;
    padding: 0.1em 0.4em;
  }
  
  .footer-content-wrapper .footer-buttons-container {
    gap: 4px;
  }
  .footer-content-wrapper > * {
    font-size: 0.75rem; /* Óë°´Å¥±£³ÖÒ»ÖÂ */
    margin-bottom: 0.15rem;
  }
  .footer-content-wrapper .contact-info {
    margin-top: 0.08rem;
  }
  .footer-content-wrapper .contact-info p {
    font-size: 0.75rem !important; /* Óëcontact-button±£³ÖÒ»ÖÂ£¬Ê¹ÓÃ!importantÈ·±£ÓÅÏÈ¼¶ */
  }
  .footer-content-wrapper .copyright {
    margin-top: 0.08rem;
  }
}
/* --- ×ó²àÒ³½Å¼«Ð¡ÆÁ×ÔÊÊÓ¦ÐÞ¸´ end --- */

/* Ö÷footer¶þÎ¬ÂëÇøÓòflexµ¯ÐÔ¾ÓÖÐ¼°×ÔÊÊÓ¦³ß´çÓÅ»¯ */
.main-footer .qr-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin: 0 auto;
}

.main-footer .qr-code {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 100px;
  height: 100px;
  padding: 0.8em;
  background: #fff;
  border-radius: 8px;
  box-shadow: none;
  margin: 0 auto;
}

.main-footer .qr-code img {
  max-width: 100%;
  max-height: 100%;
  display: block;
  margin: 0 auto;
}

.main-footer .qr-label {
  text-align: center;
  width: 100%;
  margin: 0.5em 0 0 0;
}

/* ¶¿ªÔÆ×ÛºÏappµÇÂ¼ã×ÔÊÊÓ¦¶þÎ¬Âë³ß´çºÍpadding */
@media (max-width: 768px) {
  .main-footer .qr-code {
    width: 80px;
    height: 80px;
    padding: 0.6em;
  }
}
@media (max-width: 576px) {
  .main-footer .qr-code {
    width: 60px;
    height: 60px;
    padding: 0.4em;
  }
}
@media (max-width: 425px) {
  .main-footer .qr-code {
    width: 50px;
    height: 50px;
    padding: 0.2em;
  }
}
@media (max-width: 375px) {
  .main-footer .qr-code {
    width: 40px;
    height: 40px;
    padding: 0.1em;
  }
}
@media (max-width: 320px) {
  .main-footer .qr-code {
    width: 32px;
    height: 32px;
    padding: 0;
  }
}

/* ÒÆ³ýÔ­ÓÐÓë¶þÎ¬Âë³ß´ç¡¢padding¡¢¾ÓÖÐÏà¹ØµÄ³åÍ»ÑùÊ½£¨ÈçÓÐ£© */
@media (max-width: 576px) {
  .main-footer .qr-code img {
    width: auto !important;
    height: auto !important;
  }
}

@media (max-width: 768px) {
  .main-footer .container,
  .main-footer .row {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
  }
  .main-footer .col-12,
  .main-footer .qr-section,
  .main-footer .contact-button,
  .main-footer .old-version-button,
  .main-footer .qr-label {
    width: 100%;
    text-align: center;
    margin: 0.5em 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}

/* Ñ§Êõ±¨¸æÂÖ²¥±êÌâÐÐ²¼¾Ö */
.report-swiper .report-title-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 0.5rem 0 0.2rem 0;
  width: 100%;
  min-height: calc(1.4em * 2 + 0.5rem); /* È·±£ÓÐ×ã¹»¸ß¶ÈÈÝÄÉÁ½ÐÐ±êÌâ */
}

/* °×É«¼ýÍ·ÑùÊ½ */
.report-swiper .swiper-button-prev,
.report-swiper .swiper-button-next {
  color: #fff;
  background: rgba(0,0,0,0.3);
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: static;
  transform: none;
  font-size: 0.8rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.report-swiper .news-title {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0 0.5rem;
  text-align: center;
  flex: 1 1 auto;
  text-decoration: none;
  transition: color 0.3s;
  /* ÏÞÖÆÎªÒ»ÐÐ²¢Ìí¼ÓÊ¡Â¿ªÔÆÔÚÏßµÇÂ¼Å */
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.4;
  max-width: 100%;
}

.report-swiper .news-title:hover {
  color: var(--primary-red, #e74c3c);
}

/* Ñ§Êõ±¨¸æÂÖ²¥Í¼Æ¬¸ß¶Èµ÷Õû - ¶¯Ì¬4:3¿í¸ß±È */
.report-swiper .news-image {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 75%; /* 4:3 ¿í¸ß±È (3/4 = 0.75) */
  overflow: hidden;
  border-radius: 8px;
  margin-bottom: 0.5rem;
}

.report-swiper .news-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

/* Ñ§Êõ±¨¸æÂÖ²¥Í¼ÕûÌå²¼¾ÖÑùÊ½ */
.report-swiper .news-item.with-image {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

/* È·±£Ñ§Êõ±¨¸æÂÖ²¥Í¼ÔÚ²»Í¬ÆÁÄ»³ß´çÏÂ¶¼ÄÜ±£³Ö4:3±ÈÀý */
@media (max-width: 768px) {
  .report-swiper .news-image {
    padding-bottom: 75%; /* ±£³Ö4:3±ÈÀý */
  }
}

@media (max-width: 576px) {
  .report-swiper .news-image {
    padding-bottom: 75%; /* ±£³Ö4:3±ÈÀý */
  }
}

.faculty-list-flex-row {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: flex-start;
}

/* »ù´¡ÑùÊ½ - ÒÆ³ýmax-widthÏÞÖÆ */
.faculty-list-flex-card {
  flex: 1 1 350px;
  min-width: 260px;
  box-sizing: border-box;
  padding: 1rem;
  margin: 0.5rem;
  min-height: 120px;
  /* ÒÆ³ýÁËmax-widthÏÞÖÆ£¬ÈÃÃ½Ìå²éÑ¯¿ØÖÆ */
}


/* ½ÌÊ¦ÏêÇéÒ³ÏìÓ¦Ê½ÑùÊ½ */
.faculty-profile-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
}

.faculty-profile-header {
  display: flex;
  flex-direction: row;
  gap: 30px;
  align-items: center;
  margin-bottom: 1.5rem !important;
  justify-content: center;
  width: 100%;
}
.faculty-profile-header .faculty-photo {
  flex-shrink: 0;
  width: 180px;
}
.faculty-profile-header .faculty-photo img {
  width: 180px;
  height: auto;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 8px;
}
.faculty-basic-info {
  flex: 1;
  min-width: 0;
  max-width: 250px;
}
.faculty-basic-info h1 {
  font-size: 1.8rem;
  line-height: 1.2;
  margin-bottom: 0.5rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
  white-space: normal;
}
.faculty-basic-info p {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  text-indent: 0;
}
.faculty-detail-content {
  padding-left: 120px;
  padding-top: 0.75rem;
  max-width: 1100px;
  text-align: left;
}
.faculty-detail-content a {
  word-break: break-all;
  overflow-wrap: break-word;
}

@media (max-width: 767.98px) {
  .faculty-profile-header {
    flex-direction: column;
    gap: 20px;
    align-items: center;
    margin-bottom: 1.5rem !important;
  }
  .faculty-profile-header .faculty-photo {
    width: 200px;
    max-width: 200px;
  }
  .faculty-basic-info {
    text-align: center;
    width: 100%;
  }
  .faculty-basic-info h1 {
    font-size: 1.5rem !important;
    line-height: 1.2 !important;
  }
  .faculty-detail-content {
    padding-left: 12px !important;
    padding-right: 12px !important;
    max-width: 100%;
    text-align: left;
  }
}
@media (max-width: 991.98px) {
  .faculty-profile-header {
    flex-direction: column !important;
    gap: 24px !important;
    align-items: center;
  }
  .faculty-photo {
  margin-bottom: 1rem;
  width: 100%;
  min-width: 40px;
  max-width: 100px;
  height: auto;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 8px;
}
  .faculty-basic-info {
    text-align: left !important;
    margin-bottom: 1.5rem;
  }
  .faculty-detail-content {
    padding-left: 12px !important;
    padding-right: 12px !important;
    max-width: 100%;
    text-align: left;
  }
}

/* ÈÃ faculty_list Ò³Ãæ email ¿É»»ÐÐ */
.faculty-list-flex-card [style*="color:#888"] {
  word-break: break-all;
  overflow-wrap: break-word;
}

/* ÒÆ¶¯¶ËËõÐ¡½ÌÊ¦¿¨Æ¬¼ä¾à */
@media (max-width: 991.98px) {
  .faculty-list-flex-row {
    gap: 0rem !important;
  }
  .faculty-list-flex-card {
    margin: 0.3rem !important;
    padding: 0.3rem !important;
  }
  .faculty-list-flex-card * {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
  }
  .faculty-list-flex-card img {
    display: block !important;
    vertical-align: top !important;
  }
  .department-section {
    margin-bottom: 0.3rem !important;
  }
}

/* ½ÌÖ°¹¤ÁÐ±íÒ³ÃæÑùÊ½ */

/* ½ÌÖ°¹¤¿¨Æ¬»ù´¡ÑùÊ½ÓÅ»¯ */
.faculty-list-flex-card {
  display: flex;
  align-items: center;
  gap: 0.2rem;
}

/* Swiper ÈÝÆ÷ÑùÊ½ */
.faculty-swiper-container {
  width: 100%;
  overflow: hidden;
}

.faculty-swiper-container .swiper-wrapper {
  display: flex;
  align-items: center;
}

.faculty-swiper-container .swiper-slide {
  width: auto;
  flex-shrink: 0;
}

.faculty-photo-container {
  width: 100%;
  max-width: 120px;
  min-width: 80px;
  flex-shrink: 0;
}

.faculty-photo {
  width: 100%;
  height: auto;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}

.faculty-info {
  flex: 1;
  margin-left: 0.2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.1rem;
}

.faculty-info strong {
  margin-bottom: 0.1rem;
  line-height: 1.2;
}

.faculty-title {
  font-size: 0.95em;
  color: #888;
  font-weight: 500;
  margin-top: 0.2rem;
  line-height: 1.2;
}

/* »ù´¡ÑùÊ½ - ÒÆ³ýmax-widthÏÞÖÆ */
.faculty-list-responsive-wrapper .faculty-list-flex-card {
  flex: 1 1 350px;
  min-width: 260px;
  box-sizing: border-box;
  padding: 1rem;
  margin: 0.5rem;
  min-height: 120px;
  /* ÒÆ³ýÁËmax-widthÏÞÖÆ£¬ÈÃÃ½Ìå²éÑ¯¿ØÖÆ */
}

/* ½ÌÖ°¹¤ÁÐ±íÏìÓ¦Ê½²¼¾Ö */
@media (min-width: 2000px) {
  .faculty-list-responsive-wrapper .content-container {
    max-width: none !important;
    width: 100% !important;
  }
  
  .faculty-list-responsive-wrapper .faculty-swiper-container {
    width: 100% !important;
  }
  
  .faculty-list-responsive-wrapper .faculty-list-flex-card {
    max-width: 260px;
    min-width: 230px;
  }
  
  .faculty-list-responsive-wrapper .faculty-photo-container {
    max-width: 90px;
  }
  
  .faculty-list-responsive-wrapper .faculty-photo {
    max-width: 70px;
  }
  
  .faculty-list-responsive-wrapper .faculty-info {
    margin-left: 0.2rem;
  }
}

@media (min-width: 1440px) and (max-width: 1999px) {
  .faculty-list-responsive-wrapper .faculty-list-flex-card {
    max-width: 380px;
    min-width: 240px;
  }
  
  .faculty-list-responsive-wrapper .faculty-photo-container {
    max-width: 100px;
  }
  
  .faculty-list-responsive-wrapper .faculty-photo {
    max-width: 80px;
  }
  
  .faculty-list-responsive-wrapper .faculty-info {
    margin-left: 0.15rem;
  }
  
  /* 1440px-1999pxµ¼º½À¸ÓÅ»¯ */
  .main-navbar .navbar-nav {
    gap: 1rem; /* ½øÒ»²½¼õÉÙ¼ä¾à */
  }
  
  .main-navbar .nav-link {
    padding: 0.35rem 0.6rem; /* ½øÒ»²½¼õÉÙÄÚ±ß¾à */
  }
}

@media (min-width: 1200px) and (max-width: 1439px) {
  .faculty-list-responsive-wrapper .faculty-list-flex-card {
    max-width: 240px;
    min-width: 180px;
  }
  
  .faculty-list-responsive-wrapper .faculty-photo-container {
    max-width: 110px;
  }
  
  .faculty-list-responsive-wrapper .faculty-photo {
    max-width: 90px;
  }
  
  .faculty-list-responsive-wrapper .faculty-info {
    margin-left: 0.15rem;
  }
  
  /* 1200px-1439pxµ¼º½À¸ÓÅ»¯ */
  .main-navbar .navbar-nav {
    gap: 0.8rem; /* ½øÒ»²½¼õÉÙ¼ä¾à */
  }
  
  .main-navbar .nav-link {
    padding: 0.3rem 0.5rem; /* ½øÒ»²½¼õÉÙÄÚ±ß¾à */
  }
}

@media (min-width: 768px) and (max-width: 1199px) {
  .faculty-list-responsive-wrapper .faculty-list-flex-card {
    max-width: 240px;
    min-width: 180px;
  }
  
  .faculty-list-responsive-wrapper .faculty-photo-container {
    max-width: 120px;
  }
  
  .faculty-list-responsive-wrapper .faculty-photo {
    max-width: 100px;
  }
  
  .faculty-list-responsive-wrapper .faculty-info {
    margin-left: 0.15rem;
  }
}

@media (max-width: 767px) {
  .faculty-list-responsive-wrapper .faculty-list-flex-card {
    max-width: none;
    min-width: 280px;
    padding: 0.8rem;
    margin: 0.3rem;
  }
  
  .faculty-list-responsive-wrapper .faculty-photo-container {
    max-width: 100px;
  }
  
  .faculty-list-responsive-wrapper .faculty-photo {
    max-width: 80px;
  }
  
  .faculty-list-responsive-wrapper .faculty-info {
    margin-left: 0.25rem;
  }
}

@media (max-width: 576px) {
  .faculty-list-responsive-wrapper .faculty-title-row {
    flex-direction: column !important;
    align-items: flex-start !important;
  }
  
  .faculty-list-responsive-wrapper .faculty-list-flex-card {
    min-width: 250px;
    padding: 0.6rem;
    margin: 0.2rem;
  }
  
  .faculty-list-responsive-wrapper .faculty-photo-container {
    max-width: 80px;
  }
  
  .faculty-list-responsive-wrapper .faculty-photo {
    max-width: 70px;
  }
  
  .faculty-list-responsive-wrapper .faculty-info {
    margin-left: 0.2rem;
    font-size: 0.9em;
  }
}

/* È«¾Ö¶ÎÂäÊ×ÐÐËõ½ø - ¸²¸ÇBootstrapÄ¬ÈÏÑùÊ½ */
p {
  text-indent: 2em;
  font-size: var(--base-font-size); /* Ê¹ÓÃ»ù´¡×ÖÌå´óÐ¡ */
}

/* ÌØÊâÇé¿öÏÂ²»ÐèÒªËõ½øµÄ¶ÎÂä */
p.no-indent,
p[style*="text-align:center"],
p[style*="text-align:right"] {
  text-indent: 0;
}

/* ÐÂÎÅÒ³Ãæ·¢²¼Ê±¼ä²»ÐèÒªÊ×ÐÐËõ½ø */
.content-container p.text-muted {
  text-indent: 0;
}

/* ½ÌÊ¦ÏêÇéÒ³ÃæÖ°³ÆºÍemail²»ÐèÒªÊ×ÐÐËõ½ø */
.faculty-basic-info p.text-muted,
.faculty-basic-info p {
  text-indent: 0;
}

/* ÏìÓ¦Ê½×ÖÌå´óÐ¡µ÷Õû */
@media (max-width: 768px) {
  :root {
    --base-font-size: 1.05rem; /* ÖÐµÈÆÁÄ»ÉÔÎ¢¼õÐ¡ */
    --small-font-size: 0.9rem;
    --large-font-size: 1.15rem;
  }
}

@media (max-width: 576px) {
  :root {
    --base-font-size: 1rem; /* Ð¡ÆÁÄ»±£³Ö1rem */
    --small-font-size: 0.85rem;
    --large-font-size: 1.1rem;
  }
}

@media (min-width: 1200px) {
  :root {
    --base-font-size: 1.15rem; /* ´óÆÁÄ»ÉÔÎ¢Ôö´ó */
    --small-font-size: 1rem;
    --large-font-size: 1.25rem;
  }
}

/* ½ÌÖ°¹¤ÁÐ±íÒ³Ãæ×¨ÓÃÑùÊ½ */
.faculty-title-list-page .faculty-list-grid-container {
  display: grid;
  gap: 1rem;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  min-height: 600px; /* È·±£ÓÐ×ã¹»µÄ¸ß¶ÈÈÝÄÉ4ÐÐ */
  grid-auto-rows: 1fr; /* ×Ô¶¯ÐÐ¸ß£¬È·±£Ã¿ÐÐ¸ß¶ÈÒ»ÖÂ */
  /* Ä¬ÈÏÁÐÊýÉèÖÃ£¬JavaScript»á¸ù¾ÝÆÁÄ»³ß´ç¶¯Ì¬µ÷Õû */
  grid-template-columns: repeat(2, 1fr);
}

.faculty-title-list-page .faculty-list-flex-card {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  padding: 1rem;
  min-height: 120px;
  width: 100%;
  /* È·±£¿¨Æ¬ÌîÂúGridµ¥Ôª¸ñ */
}

.faculty-title-list-page .faculty-photo-container {
  width: 100%;
  max-width: 120px;
  min-width: 80px;
  flex-shrink: 0;
}

.faculty-title-list-page .faculty-photo {
  width: 100%;
  height: auto;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}

.faculty-title-list-page .faculty-info {
  flex: 1;
  margin-left: 0.2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.1rem;
}

.faculty-title-list-page .faculty-info strong {
  margin-bottom: 0.1rem;
  line-height: 1.2;
}

.faculty-title-list-page .faculty-title {
  font-size: 0.95em;
  color: #888;
  font-weight: 500;
  margin-top: 0.2rem;
  line-height: 1.2;
}

/* ¿Õ°×Õ¼Î»·ûÑùÊ½ */
.faculty-title-list-page .faculty-placeholder {
  min-height: 120px;
  background: transparent;
  border: none;
}

/* ½ÌÖ°¹¤ÁÐ±íÒ³ÃæÏìÓ¦Ê½Éè¼Æ */
@media (min-width: 2000px) {
  .faculty-title-list-page .faculty-list-grid-container {
    grid-template-columns: repeat(4, 1fr);
    max-width: none;
  }
  
  .faculty-title-list-page .faculty-list-flex-card {
    max-width: 260px;
    min-width: 230px;
  }
  
  .faculty-title-list-page .faculty-photo-container {
    max-width: 90px;
  }
  
  .faculty-title-list-page .faculty-photo {
    max-width: 70px;
  }
  
  .faculty-title-list-page .faculty-info {
    margin-left: 0.2rem;
  }
}

@media (min-width: 1440px) and (max-width: 1999px) {
  .faculty-title-list-page .faculty-list-grid-container {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .faculty-title-list-page .faculty-list-flex-card {
    max-width: 260px;
    min-width: 230px;
  }
  
  .faculty-title-list-page .faculty-photo-container {
    max-width: 90px;
  }
  
  .faculty-title-list-page .faculty-photo {
    max-width: 70px;
  }
  
  .faculty-title-list-page .faculty-info {
    margin-left: 0.2rem;
  }
}

@media (min-width: 1200px) and (max-width: 1439px) {
  .faculty-title-list-page .faculty-list-grid-container {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .faculty-title-list-page .faculty-list-flex-card {
    max-width: 240px;
    min-width: 180px;
  }
  
  .faculty-title-list-page .faculty-photo-container {
    max-width: 110px;
  }
  
  .faculty-title-list-page .faculty-photo {
    max-width: 90px;
  }
  
  .faculty-title-list-page .faculty-info {
    margin-left: 0.15rem;
  }
}

@media (min-width: 768px) and (max-width: 1199px) {
  .faculty-title-list-page .faculty-list-grid-container {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .faculty-title-list-page .faculty-list-flex-card {
    max-width: 240px;
    min-width: 180px;
  }
  
  .faculty-title-list-page .faculty-photo-container {
    max-width: 120px;
  }
  
  .faculty-title-list-page .faculty-photo {
    max-width: 100px;
  }
  
  .faculty-title-list-page .faculty-info {
    margin-left: 0.15rem;
  }
}

@media (max-width: 767px) {
  .faculty-title-list-page .faculty-list-grid-container {
    grid-template-columns: 1fr;
  }
  
  .faculty-title-list-page .faculty-list-flex-card {
    max-width: none;
    min-width: 280px;
    padding: 0.8rem;
    margin: 0.3rem;
  }
  
  .faculty-title-list-page .faculty-photo-container {
    max-width: 100px;
  }
  
  .faculty-title-list-page .faculty-photo {
    max-width: 80px;
  }
  
  .faculty-title-list-page .faculty-info {
    margin-left: 0.25rem;
  }
}

@media (max-width: 576px) {
  .faculty-title-list-page .faculty-list-grid-container {
    gap: 0.5rem;
  }
  
  .faculty-title-list-page .faculty-list-flex-card {
    min-width: 250px;
    padding: 0.6rem;
    margin: 0.2rem;
  }
  
  .faculty-title-list-page .faculty-photo-container {
    max-width: 80px;
  }
  
  .faculty-title-list-page .faculty-photo {
    max-width: 70px;
  }
  
  .faculty-title-list-page .faculty-info {
    margin-left: 0.2rem;
    font-size: 0.9em;
  }
}



