ul, ol {
  list-style: none;  /* 移除默认项目符号 */
  margin: 0;         /* 清除外边距 */
  padding: 0;        /* 清除内边距 */
}
a {
  color: inherit;           /* 继承父元素文字颜色，或设为 #000 / #333 等 */
  text-decoration: none;    /* 去掉下划线 */
  background-color: transparent; /* 防止某些浏览器默认背景 */
  outline: none;            /* 去掉点击/聚焦时的虚线框（可选，注意无障碍访问） */
}
html, body{
  width: 100%;
}

body.index-body {
  background-image: url('../images/index_bg.jpg');
  background-repeat: no-repeat; /* 不重复 */
  background-position: center bottom; /* 图片在页面的底部中央 */
  background-attachment: fixed; /* 背景图片固定，不会随着页面滚动 */
  background-size: initial;
}
.header-box{
  height: 120px;
  background: linear-gradient(to right, #35B5C4, #108B99);
  padding: 0;
}
.container-fluid{
  max-width: 1500px;
  margin: 0 auto;
}
.header-box .navbar-brand img {
  height: 77px;
}
.header-box .top-search-box{
  width: 210px;
  height: 34px;
  background: #B3E0E5;
  border-radius: 17px 17px 17px 17px;
  padding-left: 24px;
  padding-right: 14px;
  margin-left: 25px;
}

.header-box .top-search-box .form-control {
  flex: 1;
  height: 100%;
  padding: 0;
  font-size: 14px;
  background: #B3E0E5;
  border: none;
}
.header-box .top-search-box .form-control::placeholder {
  color: #108B99;
}
.header-box .top-search-box .form-control:focus {
  background: #B3E0E5;
  border: 0;
  outline: 0;
  box-shadow: none;
}

.header-box .top-search-box .btn-search {
  width: 20px;
  flex-shrink: 0;
  height: 100%;
  padding: 0;
}

.header-box .top-search-box .btn-search>img{
  width: 100%;
  display: block;
}

.header-box .nav-link{
  font-size: 14px;
}

.header-box .nav-img{
  width: 36px;
  height: auto;
  margin-left: 20px;
}

/* 微信图标悬停效果 */
.header-box .wechat-container {
  position: relative;
  display: inline-block;
  margin-left: 20px;
}

.header-box .wechat-qrcode {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 10px;
  background: white;
  padding: 10px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
}

.header-box .wechat-qrcode img {
  width: 150px;
  height: auto;
  display: block;
}

/* 三角形指示器 */
.header-box .wechat-qrcode::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid white;
}

.header-box .wechat-container:hover .wechat-qrcode {
  opacity: 1;
  visibility: visible;
}

/* 菜单模态框 */
.menu-modal {
  cursor: pointer;
}

.modal-content {
  border: none;
  border-radius: 0;
}

.modal-content .btn-close {
  width: 2rem;
  height: 2rem;
}

.modal-header {
  border-bottom: 2px solid #e7a634;
  background: linear-gradient(to right, #35B5C4, #108B99);
  padding: 1rem 1rem 0.5rem;
  justify-content: space-between;
  align-items: center;
}

.modal-title {
  font-size: 1.5rem;
  font-weight: bold;
  color: #333;
}

.modal-body {
  padding: 1rem;
  background-image: url('../images/index_bg.jpg');
  background-repeat: no-repeat;
  /* 不重复 */
  background-position: center bottom;
  /* 图片在页面的底部中央 */
  background-attachment: fixed;
  /* 背景图片固定，不会随着页面滚动 */
  background-size: initial;
  position: relative;
  overflow: hidden;
}

/* 覆盖一层颜色 */
.modal-body::before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(16, 139, 153, 0.9);
  /* 黑色半透明 */
  z-index: 1;
}

.modal-body .modal-body-content {
  width: 100%;
  height: 100%;
  overflow-y: auto;
}

.modal-body .modal-body-con {
  position: relative;
  z-index: 2;
  top: 1rem;
}

.modal-body-con .menu-item {
  z-index: 2;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.modal-body-con .menu-item:hover {
  color: #e7a634;
  text-decoration: underline;
}

.modal-body-con .menu-title {
  font-weight: bold;
  margin-bottom: 2.19rem;
  color: white;
  font-size: 1.2rem;
}

.modal-body-con .menu-title::after {
  content: '';
  display: block;
  width: 48px;
  height: 6px;
  background-color: #E3BC80;
  margin-top: 10px;
}

.modal-body-con .menu-column {
  min-width: 120px;
  flex: 1;
}

@media (max-width: 576px) {
  .modal-body-con .menu-column {
    min-width: auto;
    margin-bottom: 1rem;
  }

  .modal-body-con.row {
    flex-direction: column;
  }
}

/* 菜单模态框 */

.divide-line-4 {
  width: 100%;
  height: 4px;
  background: #E3BC80;
}

.divide-line-1 {
  width: 1px;
  height: 14px;
  background: #fff;
  margin: 10px;
}

/* 菜单栏 */
.menu-box {
  padding: 0;
}

ul.menu-list {
  width: 100%;
  height: 48px;
  display: flex;
  align-items: flex-start;
  padding-left: 10px;
}

.menu-box .menu-list li.dropdown {
  flex: 1;
  height: 100%;
  text-align: center;
  display: block;
  position: relative;
}

.menu-box .menu-list li.dropdown>a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #000000;
  text-align: center;
  height: 48px;
  text-decoration: none;
}

.menu-box .menu-list li.dropdown.active {
  background: #E3BC80;
  color: #fff;
}

.menu-box .menu-list li.dropdown.active>a {
  color: #fff;
}

.menu-box .menu-list li.dropdown:has(.dropdown-menu).active>a::after {
  border-top-color: #fff;
}

.menu-box .menu-list li.dropdown:has(.dropdown-menu)>a::after {
  display: block;
  content: " ";
  float: right;
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #000;
  /* 箭头颜色 */
  margin-left: 6px;
}

.menu-box .menu-list li.dropdown .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  display: none;
  float: left;
  min-width: 160px;
  padding: 5px 0;
  text-align: left;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, .15);
  border-radius: 6px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
}

.dropdown-menu>li>a {
  display: block;
  padding: 8px 20px;
  clear: both;
  font-weight: 400;
  line-height: 1.42857143;
  color: #333;
  white-space: nowrap;
}

ul.menu-list li.dropdown .dropdown-menu .dropdown-submenu {
  position: relative;
}

ul.menu-list li.dropdown .dropdown-menu .dropdown-submenu .dropdown-menu {
  top: 0;
  left: 100%;
  margin-top: -6px;
  margin-left: -1px;
  border-radius: 6px;
}

ul.menu-list li.dropdown:hover {
  background-color: #E3BC80;
}

ul.menu-list li.dropdown:hover>.dropdown-menu {
  display: block;
}

ul.menu-list li.dropdown:hover>a {
  color: #fff;
}

.menu-box .menu-list li.dropdown:has(.dropdown-menu):hover>a::after {
  border-top-color: #fff;
}


ul.menu-list li.dropdown .dropdown-menu .dropdown-submenu:hover>.dropdown-menu {
  display: block;
}

ul.menu-list li.dropdown .dropdown-menu .dropdown-submenu>a:after {
  display: block;
  content: " ";
  float: right;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
  border-width: 5px 0 5px 5px;
  border-left-color: #ccc;
  margin-top: 5px;
  margin-right: -10px;
}

ul.menu-list li.dropdown .dropdown-menu .dropdown-submenu:hover>a:after {
  border-left-color: #aaa;
}

/* 菜单栏 */

/* 首页轮播 */
.banner-container {
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}

.slick-slider {
  background: #fff;
}

.slick-slider .slider-module {
  width: 100%;
  height: 100%;
  position: relative;
}

.slick-slider .slider-module .slider-mask {
  width: 100%;
  height: 50px;
  line-height: 50px;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('../images/banner_title_bg.png');
  background-repeat: no-repeat;
  /* 不重复 */
  background-position: center bottom;
  /* 图片在页面的底部中央 */
  background-attachment: fixed;
  /* 背景图片固定，不会随着页面滚动 */
  background-size: initial;
}

.slick-slider .slider-module .slider-mask span {
  color: #fff;
}

.slick-slide img {
  width: 100%;
  height: 100%;
    max-height: 480px;
  object-fit: cover;
}

/* 箭头样式 */
.slick-prev,
.slick-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  background: transparent;
  border: 0;
  transition: all 0.3s ease;
}

.slick-prev img,
.slick-next img {
  width: 30px;
}

.slick-prev {
  left: 20px;
}

.slick-next {
  right: 20px;
}

/* 指示器圆点 */
.slick-dots {
  height: 12px;
  position: absolute;
  bottom: 20px;
  right: 10%;
  display: flex;
  gap: 8px;
  z-index: 10;
}

.slick-dots li button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: white;
  border: none;
  outline: none;
  cursor: pointer;
  transition: all 0.3s ease;
  opacity: 0.9;
  color: transparent;
}

.slick-dots li.slick-active button {
  width: 30px;
  border-radius: 6px;
  background-color: #E3BC80;
  opacity: 1;
}

/* 首页中间部分 */
.section-title {
  height: 3.5rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid #e0e0e0;
}

.section-title .title-txt {
  width: fit-content;
  height: 100%;
  position: relative;
}

.section-title h5 {
  font-size: 1.62rem;
  margin: 0;
}

/* 下划线只在标题下方 */
.section-title .title-txt::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 3px;
  background-color: #0066cc;
  z-index: 1;
}

.section-title .more-link>a {
  color: #999;
  text-decoration: none;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.section-title .more-link>a:hover {
  color: #666;
}

.section-title .more-circle {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.section-title .more-circle>img {
  width: 100%;
}

.news-box {
  width: 100%;
  margin-bottom: 20px;
}

.news-box img {
  width: 100%;
  height: auto;
  display: block;
}

.news-content {
  position: relative;
}

.news-content .icon-badge {
  display: flex;
  width: 56px;
  flex-shrink: 0;
}

.news-content .news-desc {
  flex: 1;
  position: relative;
  top: -30px;
  padding: 20px 30px;
  background: #FFFFFF;
  box-shadow: 3px 0px 6px 0px rgba(0, 0, 0, 0.11);
}

.news-date {
  color: #999;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.news-title {
  font-size: 1rem;
  font-weight: bold;
  color: #2F2F2F;
  line-height: 1.88rem;
  margin: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

/* 校园要闻 - Bootstrap Tabs 自定义样式 */

.headlines-header {
  height: 3.5rem;
  border-bottom: none;
  padding: 0;
}

/* 重写 Bootstrap Tabs 样式以匹配原有设计 */
.headlines-header .nav-link {
  height: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 0;
  background-color: #f8f9fa;
  color: #333;
  font-weight: 500;
  transition: all 0.3s ease;
}

.headlines-header .nav-link:hover {
  background-color: #e9ecef;
  border-color: transparent;
}

.headlines-header .nav-link.active {
  background-color: #108B99;
  color: #fff;
  border: none;
}

/* Tab content 自定义样式 */
.headlines-box {
  border: none;
  background-color: transparent;
}

.headlines-box .tab-content {
  background-color: rgba(255, 255, 255, 0.8);
}

.headlines-box .tab-pane .list-group {
  margin-bottom: 0;
}

.headlines-header .btn.active {
  background-color: #108B99;
  color: #fff;
}

.headlines-box .list-group-item {
  border: none;
  border-bottom: 4px solid #F3F3F3;
  padding-top: 2rem;
  padding-bottom: 2rem;
  position: relative;
  background-color: rgba(255, 255, 255, 0.8);
}

.headlines-box .list-group-item:last-child {
  border-bottom: none;
}

.headlines-box .list-group-item .text-muted {
  margin: 0;
  margin-bottom: 1.2rem;
}

.headlines-box .list-group-item .text-desc {
  font-size: 1.13rem;
  line-height: 1.8rem;
  margin: 0;
}

.headlines-box .list-group-item .new2-arrow {
  width: 1.63rem;
  position: absolute;
  display: block;
  right: 0;
}

.headlines-box .new2-arrow>img {
  width: 100%;
}

.headlines-box .headlines-date {
  width: 4.13rem;
  height: 4.19rem;
  background: #E8EDF4;
  border-radius: 0rem 0rem 0.63rem 0rem;
}

.headlines-box .headlines-date .headlines-date-month {
  background-color: #118895;
  color: #fff;
  font-size: 0.8rem;
  height: 1.94rem;
  line-height: 1.94rem;
  text-align: center;
}

.headlines-box .headlines-date .headlines-date-day {
  color: #118895;
  font-size: 1.5rem;
  height: 2.25rem;
  line-height: 2.25rem;
  text-align: center;
}

.headlines-box .headlines-more-btn {
  height: 2.19rem;
  background: #F3F3F3;
}

.headlines-box .headlines-more-btn a {
  color: #108B99;
}

/* 通知公告 */
.notice-timeline {
  position: relative;
  padding-left: 1.63rem;
}

.notice-timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0.25rem;
  background-color: #E0CCAC;
}

.notice-timeline .timeline-item {
  position: relative;
  padding: 0.31rem 0 2.5rem;
}

.notice-timeline .timeline-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.notice-timeline .timeline-item::before {
  content: '';
  position: absolute;
  left: -1.44rem;
  top: 1rem;
  width: 0.75rem;
  height: 0.06rem;
  background: #E0CCAC;
}

.notice-timeline .timeline-icon {
  width: 1.19rem;
  margin-right: 0.63rem;
}

.notice-timeline .timeline-date {
  color: #999999;
  font-size: 0.75em;
  padding-right: 0.88rem;
  border-right: 1px solid #999;
  margin-right: 0.88rem;
}

.notice-timeline .timeline-category {
  font-size: 0.75em;
  padding: 0.25em 0.5em;
  border-radius: 12px;
  border-bottom-left-radius: 0;
}

.notice-timeline .important {
  background-color: #DA3F3F;
  color: white;
}

.notice-timeline .student {
  color: #E79955;
  border-radius: 0;
  padding: 0;
}

.notice-timeline .teacher {
  color: #108B99;
  border-radius: 0;
  padding: 0;
}

.notice-timeline .notification-title {
  font-size: 1rem;
  color: #000000;
  line-height: 1.88rem;
  text-align: left;
  font-style: normal;
  text-transform: none;
  margin: 0;
}

/* 页脚 */
footer {
  background-color: #007784;
  opacity: 0.8;
  color: white;
  padding: 20px 0 0;
  margin-top: 30px;
}

.footer-col h5 {
  margin-bottom: 15px;
  font-size: 14px;
}

.footer-col p {
  font-size: 13px;
  margin-bottom: 5px;
}

.footer-col i {
  margin-right: 8px;
}

footer .footer-icon {
  width: 14px;
  margin-right: 8px;
}

.footer-left {
  flex: 1;
}

.qrcode {
  width: 120px;
  margin-bottom: 5px;
  flex-shrink: 0;
}

.qrcode-box p {
  font-size: 14px;
  color: #fff;
}

.copyright {
  background-color: #d7b87e;
  min-height: 36px;
}

.copyright p {
  color: #fff;
  font-size: 14px;
  text-align: left;
}

/* 内页公共样式 */
.con-page {}

.con-page .con-banner {
  width: 100%;
  position: relative;
}

.con-page .con-banner>img {
  width: 100%;
}

.con-page .con-banner .con-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}

.con-page .con-banner .con-overlay .con-title {
  width: 17.5rem;
  height: 6.25rem;
  line-height: 6.35rem;
  background: #108B99;
  border-radius: 1.25rem 1.25rem 0rem 0rem;
  opacity: 0.9;
  font-size: 1.75rem;
  color: #fff;
  font-weight: bold;
}

.con-page .con-main-content .sidebar {
  width: 17.5rem;
  margin-right: 5rem;
  flex-shrink: 0;
}

.con-page .con-main-content .sidebar .sidebar-item {
  display: block;
  width: 100%;
  height: 4rem;
  line-height: 4rem;
  font-size: 1.13rem;
  color: #333333;
  padding-left: 2.75rem;
  border-bottom: 0.06rem solid #fff;
}

.con-page .con-main-content .sidebar .sidebar-item.active {
  border-left: 0.44rem solid #E3BC80;
  background-color: #fff;
  color: #108B99;
  padding-left: 2.31rem;
  position: relative;
  border-bottom: none;
}

.con-page .con-main-content .sidebar-item.active::after {
  content: '';
  display: block;
  position: absolute;
  right: 1.06rem;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 0;
  height: 0;
  border-top: 0.44rem solid transparent;
  border-bottom: 0.44rem solid transparent;
  border-left: 0.44rem solid #20a5c7;
  /* 蓝色 */
  border-right: 0;
}

.con-page .sidebar .sidebar-item>a {
  display: block;
  width: 100%;
  height: 100%;
}

.con-page .sidebar .sidebar-top {
  padding-bottom: 2.56rem;
  background: #EFF9FA;
}

.con-page .sidebar .sidebar-bottom {
  width: 100%;
}

.con-page .sidebar .sidebar-bottom>img {
  width: 100%;
}

/* Bootstrap Accordion 自定义样式 */
.con-page .sidebar .accordion {
  --bs-accordion-bg: transparent;
  --bs-accordion-border-width: 0;
  --bs-accordion-border-color: transparent;
  --bs-accordion-btn-focus-box-shadow: none;
  --bs-accordion-active-bg: #EFF9FA;
}

.con-page .sidebar .accordion-item {
  border: none;
  background-color: transparent;
}

.con-page .sidebar .accordion-button {
  background-color: #EFF9FA;
  border: none;
  border-radius: 0;
  padding: 0;
  height: 3.5rem;
  line-height: 3.5rem;
  font-size: 1.13rem;
  color: #333333;
  padding-left: 2.75rem;
  border-bottom: 0.06rem solid #fff;
  box-shadow: none;
  transition: all 0.3s ease;
}

.con-page .sidebar .accordion-button:not(.collapsed) {
  background-color: #fff;
  color: #108B99;
  box-shadow: none;
}

.con-page .sidebar .accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23108B99'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  background-size: 1.25rem;
  width: 1.25rem;
  height: 1.25rem;
}

.con-page .sidebar .accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23108B99'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.con-page .sidebar .accordion-button:focus {
  box-shadow: none;
  border-color: transparent;
}

.con-page .sidebar .accordion-collapse {
  border: none;
}

.con-page .sidebar .accordion-body {
  padding: 0;
  background-color: #fff;
}

.con-page .sidebar .accordion-body .sidebar-item {
  display: block;
  width: 100%;
  height: 4rem;
  line-height: 4rem;
  font-size: 1.13rem;
  color: #333333;
  padding-left: 3.5rem;
  /* 缩进更多以显示层级 */
  border-bottom: 0.06rem solid #fff;
  background-color: #fff;
  transition: all 0.3s ease;
}

.con-page .sidebar .accordion-body .sidebar-item:hover {
  background-color: #f8f9fa;
  color: #108B99;
}

.con-page .sidebar .accordion-body .sidebar-item.active {
  border-left: 0.44rem solid #E3BC80;
  background-color: #fff;
  color: #108B99;
  padding-left: 3.06rem;
  /* 调整左边距以适应边框 */
  position: relative;
  border-bottom: none;
}

.con-page .sidebar .accordion-body .sidebar-item.active::after {
  content: '';
  display: block;
  position: absolute;
  right: 1.06rem;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 0;
  height: 0;
  border-top: 0.44rem solid transparent;
  border-bottom: 0.44rem solid transparent;
  border-left: 0.44rem solid #20a5c7;
  border-right: 0;
}

.con-page .con-main-content .right-main-content {
  flex: 1;
  padding-top: 1.8rem;
}

.con-page .right-main-content-title {
  padding-bottom: 0.88rem;
  border-bottom: 0.25rem solid #E3E3E3;
}

.con-page .right-main-content-title h5 {
  font-size: 1.5rem;
  color: #108B99;
  margin-bottom: 0;
}

.con-page .right-main-content-title small {
  font-size: 0.75rem;
  color: #000000;
}

.con-page .right-main-content-title small img {
  width: 0.69rem;
  margin-right: 0.5rem;
}

/* 校区新闻页面主内容样式 */
.con-page .right-main-content .list-group .list-group-item {
  border: none;
  padding-top: 1.7rem;
  padding-bottom: 1.7rem;
}

.con-page .right-main-content .list-group .list-group-item:nth-child(2n) {
  background-color: #F5F5F5;
}

.campus-news-title {
  flex: 1;
}

.campus-news-title img {
  margin-right: 0.69rem;
}

.campus-news-date {
  flex-shrink: 0;
  margin-left: 6rem;
  font-size: 0.75rem;
  color: #999999;
}

/* 分页样式 */
.page-box {
  margin-top: 3rem;
  margin-bottom: 2.5rem;
}

.page-box .page-link {
  border: none;
  padding-top: 0;
  padding-bottom: 0;
}

.page-box .page-number {
  margin-left: 1.6rem;
  margin-right: 0.6rem;
  color: #131313;
  font-size: 0.75rem;
}

.page-box .form-control {
  width: 2.94rem;
  height: 1.38rem;
  border-radius: 0.25rem 0.25rem 0.25rem 0.25rem;
  border: 1px solid #DCDCDC;
  color: #131313;
  padding: 0.3rem;
  font-size: 0.75rem;
}

.page-box .form-control:focus {
  background: transparent;
  box-shadow: initial;
}

.page-box .page-go-btn {
  margin-left: 0.38rem;
}

.page-box .page-go-btn .page-link {
  width: 3.56rem;
  height: 1.44rem;
  line-height: 1.44rem;
  padding: 0;
  text-align: center;
  color: #fff;
  font-size: 0.75rem;
  background: #F6A741;
  border-radius: 0.25rem 0.25rem 0.25rem 0.25rem;
}

/* 管理机构页面主内容样式 */
.org-list {
  padding-top: 1.8rem;
}

.org-list.no-pad {
  padding-top: 0;
}

.org-list h6 {
  font-weight: bold;
  font-size: 1.5rem;
  color: #484848;
  line-height: 2.44rem;
  margin-bottom: 1.8rem;
}

.org-list h6>img {
  width: 2.69rem;
  height: 2.44rem;
  margin-right: 0.69rem;
}

.org-list .card-item {
  padding-left: 1.94rem;
  padding-right: 2.06rem;
  height: 5.38rem;
  background: #F6F6F6;
  border-radius: 0.63rem 0.63rem 0.63rem 0.63rem;
  margin: 0;
  margin-bottom: 1.8rem;
}

.org-list .card-item a {
    display: flex;
    align-items: center;
  width: 100%;
  height: 100%;
  position: relative;
}

.org-list .card-item a img{
  position: absolute;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
}


.org-list .card-item .card-circle {
  color: #108B99;
  font-size: 1.38rem;
  position: relative;
  padding-left: 0.8rem;
}

.org-list .card-item .card-circle::before {
  content: '';
  display: block;
  width: 0.4rem;
  height: 0.4rem;
  background-color: #108B99;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}

/* 详情页 */
.detail-content {
  padding-top: 3rem;
}

.detail-content h3 {
  font-weight: bold;
  font-size: 1.5rem;
  color: #000000;
  margin-bottom: 2.13rem;
}

.detail-content .sub-detail-title {
  color: #666666;
  font-size: 0.75rem;
  margin-bottom: 3.1rem;
}

.detail-content .sub-detail-title .small-line {
  margin: 0 1rem;
}

.detail-content .detail-con p {
  font-size: 1rem;
  color: #010101;
  line-height: 1.88rem;
  margin-bottom: 2.7rem;
  text-indent: 2rem;
}

.detail-content .img-fluid {
  width: 100%;
  max-width: 44rem;
}

.detail-content .img-tip {
  font-size: 1rem;
  color: #000000;
  line-height: 1.88rem;
}

/* 校园风光 */
.imglist-con {
  padding-top: 1.44rem;
}

.imglist-con .img-card-box {
  margin-bottom: 2.75rem;
}

.imglist-con .img-card {
  position: relative;
  padding-bottom: 3.13rem;
}

.imglist-con .img-card .card-img-top {
  width: calc(100% - 1rem);
}

.imglist-con .img-card .card-body {
  width: calc(100% - 1rem);
  height: 100%;
  background: #EAF5F6;
  transform: translateX(1rem);
  position: absolute;
  z-index: -1;
  top: 1rem;
}

.imglist-con .img-card .card-body .card-text {
  height: 4.13rem;
  line-height: 4.13rem;
  font-size: 1rem;
  color: #000000;
  padding-left: 1.25rem;
}

.imglist-con .img-card .card-body .card-text::before {
  content: "|";
  color: #108B99;
  font-weight: bold;
  font-size: 1.25rem;
  margin-right: 0.75rem;
}

.page-box.imglist-page {
  margin-top: 2rem;
}

/* 移动端适配 */

/* 当屏幕宽度大于等于600px且小于1024px时，改变元素字体大小 */
@media screen and (min-width: 600px) and (max-width: 1024px) {
  .con-page .con-banner .con-overlay .con-title {
    width: 12rem;
    height: 4rem;
    line-height: 4rem;
    font-size: 1.3rem;
  }

  .con-page .con-main-content .sidebar {
    width: 12rem;
    margin-right: 3rem;
  }

  .con-page .con-main-content .right-main-content {
    width: 100%;
  }

  .header-box .navbar-nav {
    flex-direction: row;
  }
}

/* 当屏幕宽度大于等于750px且小于800px时，改变元素字体大小 */
@media screen and (min-width: 750px) and (max-width: 900px) {
  .header-box .navbar-nav {
    flex-direction: row;
  }

  .header-box .navbar-brand img {
    height: 50px;
  }

  .modal-dialog .modal-header .navbar-brand>img {
    height: 50px;
  }
}

/* 当屏幕宽度大于等于500px且小于750px时，改变元素字体大小 */
@media screen and (min-width: 500px) and (max-width: 750px) {
  .header-box .navbar-nav {
    flex-direction: row;
  }

  .header-box .container-fluid {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .header-box .navbar-brand img {
    height: 50px;
  }

  .modal-dialog .modal-header .navbar-brand>img {
    height: 50px;
  }
}

/* 当屏幕宽度小于600px时，改变元素字体大小 */
@media screen and (max-width: 600px) {
  .menu-box {
    display: none;
  }

  .con-page .con-banner .con-overlay .con-title {
    width: 40%;
    height: 3rem;
    line-height: 3rem;
    font-size: 0.9rem;
  }

  .con-page .con-main-content .sidebar {
    display: none;
  }

  .con-page .con-main-content .right-main-content {
    width: 100%;
  }

  footer .container-fluid {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .header-box .container-fluid {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .header-box .navbar-nav {
    flex-direction: row;
  }

  .header-box .navbar-brand img {
    height: 50px;
  }

  .modal-dialog .modal-header .navbar-brand>img {
    height: 50px;
  }

  .header-box .top-search-box {
    width: 130px;
    padding-left: 12px;
    padding-right: 10px;
  }

  /* 手机版 Tabs 样式优化 */
  .headlines-header .nav-link {
    height: 3rem;
    font-size: 0.9rem;
  }

  .headlines-box .tab-pane .list-group .list-group-item {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .headlines-box .tab-pane .list-group .list-group-item .col-4,
  .headlines-box .tab-pane .list-group .list-group-item .col-8 {
    padding: 0 5px;
  }

  .headlines-box .tab-pane .list-group .list-group-item .col-3,
  .headlines-box .tab-pane .list-group .list-group-item .col-9 {
    padding: 0 5px;
  }

  .headlines-box .headlines-date {
    width: 3rem;
    height: 3rem;
  }

  .headlines-box .headlines-date .headlines-date-month {
    height: 1.5rem;
    line-height: 1.5rem;
    font-size: 0.7rem;
  }

  .headlines-box .headlines-date .headlines-date-day {
    height: 1.5rem;
    line-height: 1.5rem;
    font-size: 1.2rem;
  }

  .headlines-box .tab-pane .list-group .list-group-item .text-desc {
    font-size: 0.9rem;
    line-height: 1.4rem;
  }

  .headlines-box .new2-arrow {
    width: 1.2rem;
  }
}

/* 当屏幕宽度小于400px时，改变元素字体大小 */
@media screen and (max-width: 400px) {
  .header-box .nav-link {
    font-size: 12px;
  }

  .header-box .top-search-box {
    width: 100px;
    height: 26px;
    padding-left: 6px;
    padding-right: 6px;
  }

  .header-box .nav-img {
    width: 25px;
  }

  .modal-dialog .modal-header .navbar-brand>img {
    height: 50px;
  }
}

/* 兼容移动端的模态框 */
@media (min-width: 992px) {
  .phone-modal {
    display: none;
  }

  .pc-modal {
    display: block;
  }
}

@media (max-width: 992px) {
  .phone-modal {
    display: block;
  }

  .pc-modal {
    display: none;
  }

  .modal {
    width: 90%;
    right: 0;
    left: initial;
  }

  .modal.show .modal-dialog {
    width: auto;
  }
}

.phone-modal {
  position: relative;
  z-index: 100;
}

.phone-modal .list-group-item {
  border: none;
  border-bottom: 1px solid #eee;
  padding: 16px 20px;
  font-weight: 500;
  transition: all 0.3s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: white;
  color: #2c3e50;
  position: relative;
}

.phone-modal .list-group-item:hover {
  background-color: #f1f8ff;
}

.phone-modal .list-group-item.active {
  background-color: #e3f2fd;
  color: #1a6bb3;
  border-left: 4px solid #1a6bb3;
}

.phone-modal .dropdown-toggle::after {
  transition: transform 0.3s ease;
  border-top: 0.4em solid;
  border-right: 0.4em solid transparent;
  border-left: 0.4em solid transparent;
}

.phone-modal .dropdown-toggle[aria-expanded="true"]::after {
  transform: rotate(180deg);
}

.phone-modal .dropdown-menu {
  border: none;
  border-radius: 0;
  box-shadow: none;
  margin: 0;
  padding: 0;
  background-color: #f8fafc;
  width: 100%;
  position: static !important;
  transform: none !important;
  display: none;
}

.phone-modal .dropdown-menu.show {
  display: block;
}

.phone-modal .dropdown.show>.dropdown-menu {
  display: block;
}

.phone-modal .dropdown-item {
  padding: 14px 20px 14px 40px;
  border-bottom: 1px solid #e9ecef;
  transition: all 0.2s ease;
  position: relative;
  display: flex;
  align-items: center;
  color: #495057;
  cursor: pointer;
  text-decoration: none;
}

.phone-modal .dropdown-item:hover {
  background-color: #e3f2fd;
  padding-left: 45px;
  color: #1a6bb3;
  text-decoration: none;
}

.phone-modal .dropdown-item:last-child {
  border-bottom: none;
}

.phone-modal .dropdown-item i {
  margin-right: 10px;
  color: #1a6bb3;
  width: 20px;
  text-align: center;
}

/* 三级菜单样式 */
.phone-modal .dropdown-submenu {
  position: relative;
}

.phone-modal .dropdown-submenu>.dropdown-menu {
  top: 0;
  left: 100%;
  margin-top: -6px;
  margin-left: -1px;
  display: none;
  position: absolute;
  z-index: 1000;
  min-width: 220px;
  border-radius: 5px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.phone-modal .dropdown-submenu.active>.dropdown-menu {
  display: block;
}

.phone-modal .dropdown-submenu>.dropdown-menu>li {
  padding-left: 15px;
}

/* 四级菜单样式 */
.phone-modal .dropdown-submenu-level3 {
  position: relative;
}

.phone-modal .dropdown-submenu-level3>.dropdown-menu {
  top: 0;
  left: 100%;
  margin-top: -6px;
  margin-left: -1px;
  display: none;
  position: absolute;
  z-index: 1001;
  min-width: 200px;
  border-radius: 5px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  background-color: #e9ecef;
}

.phone-modal .dropdown-submenu-level3.active>.dropdown-menu {
  display: block;
}

.phone-modal .dropdown-submenu-level3 .dropdown-menu .dropdown-item {
  padding-left: 80px;
}

/* 页面链接样式 */
.phone-modal .page-link {
  color: #495057;
  text-decoration: none;
  display: block;
  width: 100%;
}

.phone-modal .page-link:hover {
  color: #1a6bb3;
}
.wp_paging li input {
     width: 2.94rem;
    height: 1.38rem;
    border-radius: 0.25rem 0.25rem 0.25rem 0.25rem;
    border: 1px solid #DCDCDC;
    color: #131313;
    padding: 0.3rem;
    font-size: 0.75rem;
}
.pagingJump {
    width: 3.56rem;
  height: 1.44rem;
  line-height: 1.44rem;
  padding: 0;
  text-align: center;
  color: #fff;
  font-size: 0.75rem;
  background: #F6A741;
  border-radius: 0.25rem 0.25rem 0.25rem 0.25rem;
}

.wp_paging li a {
    color: #fff;
}