@charset "utf-8";

/* 视口配置 */
@viewport {
   width: device-width;
   initial-scale: 1;
}

/* 基础样式重置 */
* {
   box-sizing: border-box;
   margin: 0;
   padding: 0;
}

/* 移动端基础字体设置 */
html {
   font-size: 16px;
}

body {
   font-family: "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", Arial, sans-serif;
   background-size: 100%;
   overflow-x: hidden;
   width: 100%;
}

/* 基础链接样式 */
a {
   text-decoration: none;
   color: #313131;
}

/* 列表样式重置 */
ul,
li {
   list-style: none;
}

/* 内容溢出处理 */
.contentBox {
   display: -webkit-box;
   -webkit-box-orient: vertical;
   -webkit-line-clamp: 2;
   overflow: hidden;
   text-overflow: ellipsis;
   white-space: normal;
   line-height: 1.4rem;
   width: 95%;
   margin: 0 auto;
   /*! border-bottom: 0.15rem solid #0766b7; */
   margin-bottom: 0.7rem;
   padding-bottom: 0rem;
   margin-top: 1rem;
}

/* 图片响应式处理 */
img {
   max-width: 100%;
}

/* 头部样式 */
.site-header {
   width: 100%;
   height: 3.5rem;
   background: #0766b7;
   position: sticky;
   top: 0;
   left: 0;
   z-index: 1000;
   box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
   transition: transform 0.3s ease, box-shadow 0.3s ease;
   will-change: transform;
}

/* 头部滚动时的样式 */
.site-header.scrolled {
   background: rgba(8, 108, 190, 0.98);
   backdrop-filter: blur(10px);
   -webkit-backdrop-filter: blur(10px);
   box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
}

.swiper-slide img {
   height: ;
}

#putThePictures .swiper-slide img {
   height: 13rem;
   width: 100%;
   position: relative;
}

img {}

#putThePictures .swiper-slide p {
   background: #00000047;
   position: absolute;
   bottom: 0.2rem;
   color: #fff;
   font-size: 0.8rem;
   width: 100%;
   height: 2rem;
   line-height: 2rem;
}

/* 头部容器样式优化 */
.header-container {
   width: 95%;
   height: 100%;
   margin: 0 auto;
   display: flex;
   justify-content: space-between;
   align-items: center;
   padding: 0.5rem 0;
}

/* Logo样式优化 */
.logo-area {
   height: 100%;
   display: flex;
   align-items: center;
   transition: opacity 0.3s ease;
}

.logo-area:active {
   opacity: 0.8;
}

.header-logo {
   height: 2.5rem;
   width: auto;
   object-fit: contain;
   transition: transform 0.3s ease;
}

/* 搜索区域样式优化 */
.searchSection {
   padding: 0.75rem 1rem;
   background-color: #f5f5f5;
   margin-top: 3.5rem;
   transition: margin-top 0.3s ease;
   position: relative;
   z-index: 999;
}

.form-box {
   background: #fff;
   border-radius: 4px;
   transition: all 0.3s ease;
   border: 1px solid rgba(0, 0, 0, 0.1);
}

.form-box:focus-within {
   border-color: #0766b7;
   box-shadow: 0 0 0 3px rgba(8, 108, 190, 0.1);
}

.search-box {
   font-size: 0.9375rem;
   color: #333;
   transition: all 0.2s ease;
}

.search-box::placeholder {
   color: #999;
   transition: color 0.2s ease;
}

#cultivateSwitchDisplay {
   margin-top: -3.7rem;
}

.search-box:focus::placeholder {
   color: #bbb;
}

/* 内容区域间距优化 */
.theContentWidth {
   padding-top: 1.5rem;
   transition: padding-top 0.3s ease;
}

/* 响应式优化 */
@media screen and (max-width: 375px) {
   .site-header {
      height: 3rem;
   }

   .header-logo {
      height: 2rem;
   }

   .searchSection {
      margin-top: 3rem;
      padding: 0.625rem 0.875rem;
   }

   .form-box {
      height: 2rem;
   }

   .search-box {
      font-size: 0.875rem;
   }

   .theContentWidth {
      padding-top: 1.25rem;
   }
}

.admissionsContentBoxes {
   width: 95%;
   margin: 0 auto;
   border-top: 0.15rem solid #0766b7;
   padding-top: 1rem;
}

#shidaConnection {
   /*! border-bottom: 1rem solid #eee; */
}

#topTitle {
   margin-top: 1rem;
}

.admissionsIcon {
   width: .3125rem;
   height: .3125rem;
   background: #0766b7;
   display: inline-block;
   margin-right: .3125rem;
}

#topTouch li {
   height: 2rem;
}

/* 暗色模式支持 */
@media (prefers-color-scheme: dark) {
   .site-header {
      background: #065a9e;
   }

   .site-header.scrolled {
      background: rgba(6, 90, 158, 0.98);
   }

   .searchSection {
      background-color: #1a1a1a;
   }

   .form-box {
      background: #2a2a2a;
      border-color: rgba(255, 255, 255, 0.1);
   }

   .search-box {
      color: #fff;
      background-color: #2a2a2a;
   }

   .search-box::placeholder {
      color: #666;
   }

   .search-box:focus::placeholder {
      color: #888;
   }

   .menuOfNav {
      background-color: #054e8a;
   }

   .subMenu {
      background-color: rgba(0, 0, 0, 0.2);
   }

   .menu-overlay {
      background-color: rgba(0, 0, 0, 0.7);
   }

   .theContentWidth {
      color: #eee;
   }

   .theSubmitButton {
      background-color: #065a9e;
   }

   .theSubmitButton:active {
      background-color: #054e8a;
   }
}

/* 暗色模式类 - 用于JavaScript控制 */
body.dark-mode {
   background-color: #121212;
   color: #eee;
}

body.dark-mode .site-header {
   background: #065a9e;
}

body.dark-mode .site-header.scrolled {
   background: rgba(6, 90, 158, 0.98);
}

body.dark-mode .searchSection {
   background-color: #1a1a1a;
}

body.dark-mode .form-box {
   background: #2a2a2a;
   border-color: rgba(255, 255, 255, 0.1);
}

body.dark-mode .search-box {
   color: #fff;
   background-color: #2a2a2a;
}

body.dark-mode .menuOfNav {
   background-color: #054e8a;
}

body.dark-mode .subMenu {
   background-color: rgba(0, 0, 0, 0.2);
}

/* 无障碍优化 */
.menu-toggle:focus {
   outline: 2px solid rgba(255, 255, 255, 0.5);
   border-radius: 4px;
}

.search-box:focus {
   outline: none;
}

/* 触摸设备优化 */
@media (hover: hover) {
   .menuItems a:hover {
      background-color: rgba(255, 255, 255, 0.1);
   }

   .subItems a:hover {
      background-color: rgba(255, 255, 255, 0.05);
   }

   .theSubmitButton:hover {
      background-color: #075da1;
   }
}

/* 动画优化 */
@media (prefers-reduced-motion: reduce) {
   * {
      transition-duration: 0.001ms !important;
      animation-duration: 0.001ms !important;
   }
}

/* 加载状态 */
.search-box.loading {
   background-image: url('/_upload/tpl/04/17/1047/template1047/images/loading.gif');
   background-repeat: no-repeat;
   background-position: right 10px center;
   background-size: 16px;
}

/* 菜单图标动画优化 */
.menu-toggle span {
   transform-origin: center;
}

.menu-toggle.active span:nth-child(1) {
   transform: translateY(0.375rem) rotate(45deg);
}

.menu-toggle.active span:nth-child(3) {
   transform: translateY(-0.375rem) rotate(-45deg);
}

/* 页面内容区域的额外调整 */
.theContentWidth {
   transition: opacity 0.3s ease;
}

body.menu-open .theContentWidth {
   opacity: 0.5;
}

.header-container {
   width: 95%;
   height: 100%;
   margin: 0 auto;
   display: flex;
   justify-content: space-between;
   align-items: center;
}

.logo-area {
   height: 100%;
   display: flex;
   align-items: center;
}

.header-logo {
   height: 2.5rem;
   width: auto;
   object-fit: contain;
}

/* 汉堡菜单按钮样式 */
.menu-toggle {
   /*! width: 2rem; */
   /*! height: 2rem; */
   /*! display: flex; */
   /*! flex-direction: column; */
   /*! justify-content: center; */
   /*! align-items: center; */
   /*! cursor: pointer; */
   /*! padding: 0.25rem; */
}

.menu-toggle span {
   display: block;
   width: 100%;
   height: 0.1875rem;
   background-color: #fff;
   margin: 0.1875rem 0;
   border-radius: 0.125rem;
   transition: all 0.3s ease;
}

/* 菜单展开时的动画效果 */
.menu-toggle.active span:nth-child(1) {
   transform: rotate(45deg) translate(0.375rem, 0.375rem);
}

.menu-toggle.active span:nth-child(2) {
   opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
   transform: rotate(-45deg) translate(0.375rem, -0.375rem);
}

/* 导航菜单样式 */
.menuOfNav {
   position: fixed;
   top: 3.5rem;
   left: 0;
   width: 100%;
   height: calc(100vh - 3.5rem);
   background-color: #0766b7;
   transform: translateX(100%);
   transition: transform 0.3s ease;
   overflow-y: auto;
   -webkit-overflow-scrolling: touch;
}

.menuOfNav.active {
   transform: translateX(0);
}

.menuOfNav ul {
   padding: 0;
   margin: 0;
}

.menuItems {
   border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.menuItems a {
   display: block;
   padding: 1rem;
   color: #fff;
   font-size: 1rem;
   position: relative;
}

.menuItems a:after {
   content: '';
   position: absolute;
   right: 1rem;
   top: 50%;
   width: 0.5rem;
   height: 0.5rem;
   border-right: 2px solid #fff;
   border-bottom: 2px solid #fff;
   transform: translateY(-50%) rotate(45deg);
   transition: transform 0.3s ease;
}

.menuItems.active a:after {
   transform: translateY(-50%) rotate(-135deg);
}

/* 子菜单样式 */
.subMenu {
   background-color: rgba(255, 255, 255, 0.1);
   display: none;
}

.subMenu.active {
   display: block;
}

.subItems a {
   padding-left: 2rem;
   font-size: 0.9rem;
}

/* 调整页面内容，为固定定位的头部留出空间 */
.searchSection {
   margin-top: 3.5rem;
}

/* 响应式调整和交互优化 */
@media screen and (max-width: 375px) {
   .site-header {
      height: 3rem;
   }

   .header-logo {
      height: 2rem;
   }

   .menuOfNav {
      top: 3rem;
      height: calc(100vh - 3rem);
   }

   .searchSection {
      margin-top: 3rem;
   }

   .menuItems a {
      padding: 0.875rem 1rem;
      font-size: 0.9375rem;
   }

   .subItems a {
      padding: 0.75rem 1.75rem;
      font-size: 0.875rem;
   }
}

/* 触摸反馈效果 */
.menuItems a:active {
   background-color: rgba(255, 255, 255, 0.1);
}

.subItems a:active {
   background-color: rgba(255, 255, 255, 0.05);
}

/* 子菜单展开/收起动画 */
.subMenu {
   max-height: 0;
   overflow: hidden;
   transition: max-height 0.3s ease-out;
   background-color: rgba(255, 255, 255, 0.1);
}

.subMenu.active {
   max-height: 500px;
   /* 足够大的值以容纳内容 */
   transition: max-height 0.5s ease-in;
}

/* 搜索框交互优化 */
.search-box:focus {
   border: 1px solid #0766b7 !important;
}

.theSubmitButton {
   transition: background-color 0.3s ease;
}

.theSubmitButton:active {
   background-color: #065a9e;
}

/* 滚动条样式优化 */
.menuOfNav::-webkit-scrollbar {
   width: 4px;
}

.menuOfNav::-webkit-scrollbar-track {
   background: rgba(255, 255, 255, 0.1);
}

.menuOfNav::-webkit-scrollbar-thumb {
   background: rgba(255, 255, 255, 0.2);
   border-radius: 2px;
}

.menuOfNav::-webkit-scrollbar-thumb:hover {
   background: rgba(255, 255, 255, 0.3);
}

/* 防止页面滚动当菜单打开时 */
body.menu-open {
   overflow: hidden;
}

/* 菜单展开时的遮罩层 */
.menu-overlay {
   display: none;
   position: fixed;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background-color: rgba(0, 0, 0, 0.5);
   z-index: 999;
}

.menu-overlay.active {
   display: block;
}

/* Logo区域优化 */
.logo-area {
   padding: 0.5rem 0;
}

.header-logo {
   transition: transform 0.3s ease;
}

.header-logo:active {
   transform: scale(0.95);
}

/* 搜索框容器阴影效果 */
.searchSection {
   box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.form-box {
   background-color: #fff;
   transition: box-shadow 0.3s ease;
}

.form-box:focus-within {
   box-shadow: 0 2px 8px rgba(8, 108, 190, 0.2);
}

/* 内容区域样式 */
.theContentWidth {
   width: 95vw;
   margin: 0 auto;
   padding-top: 1rem;
   margin-top: 3.2rem;
}

.theContentWidth-header {
   background: url(/_upload/tpl/04/17/1047/template1047/images/bg.jpg) no-repeat;
   background-size: 100%;
   position: relative;
   width: 100%;
   height: 8rem;
   /* 减小高度 */
   background-position-y: -1rem;
   margin-top: 1rem;
}

/* 搜索框样式 */
.searchSection {
   width: 100%;
   padding: 0.75rem 0.5rem;
   background-color: #f5f5f5;
   margin-top: 3.5rem;
}

.form-box {
   width: 100%;
   height: 2.25rem;
   position: relative;
   display: flex;
   box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
   border-radius: 0.3125rem;
   overflow: hidden;
}

.search-box {
   width: 80%;
   height: 100%;
   border: none !important;
   padding-left: 0.75rem;
   font-size: 0.9rem;
   outline: none;
}

.theSubmitButton {
   width: 20%;
   height: 100%;
   border: none !important;
   background-color: #0766b7;
   background-image: url(/_upload/tpl/04/17/1047/template1047/images/search.png);
   background-size: 30% !important;
   background-repeat: no-repeat;
   background-position: center center;
   cursor: pointer;
}

/* LOGO区域 */
.threeLOGO {
   width: 100%;
   height: 6rem;
   /* 减小高度 */
   text-align: center;
}

.threeLOGO ul {
   padding-top: 1rem;
   /* 减小上边距 */
   margin: 0 auto;
   width: 95vw;
   display: flex;
   justify-content: center;
}

.threeLOGO ul li {
   height: 100%;
   margin-right: .5rem;
   float: left;
}

/* 最新动态区域 */
.theLatestDevelopmentOf {
   width: 95vw;
   display: flex;
   /*! border-bottom: .0625rem solid #eee; */
   margin: 0 auto;
   margin-bottom: 0.5rem;
   /*! flex-direction: column; */
   /* 改为垂直排列 */
}

.dynamicLeft {
   /*! width: 100%; */
   /* 全宽 */
   height: auto;
   margin-bottom: 0.5rem;
}

.dynamicLeft img {
   /*! width: 100%; */
   height: auto;
}

.dynamicRight {
   width: 100%;
   /* 全宽 */
}

.dynamicRightTitle {
   font-size: 1.1rem;
   /* 减小字体 */
   margin-bottom: .5rem;
   display: -webkit-box;
   -webkit-box-orient: vertical;
   -webkit-line-clamp: 3;
   overflow: hidden;
   margin-left: 0.5rem;
}

.dynamicContentRight {
   font-size: 1.2rem;
   line-height: 1.4rem;
   position: relative;
}

/* 轮播图区域 */
.dynamicRoundFigure {
   width: 100%;
   margin-bottom: 0;
}

/* 项目概况区域 */
.projectOverview {
   width: 100%;
   display: flex;
   flex-direction: column;
   /* 改为垂直排列 */
   margin-bottom: 1rem;
}

.projectOverview .wp_nav tr {
   display: flex;
   flex-wrap: wrap;
   /* 允许换行 */
   background: #DAECFB;
   width: 100%;
}

.projectOverview .wp_nav tr td {
   flex: 0 0 50%;
   /* 每行两个项目 */
   width: 50%;
   height: 6rem;
   /* 减小高度 */
   text-align: center;
   position: relative;
}

.profilePicture {
   margin-top: .5rem;
   width: 100%;
   height: 3.5rem;
   /* 减小高度 */
   overflow: hidden;
}

.generalSituationOfTheTitle a {
   font-size: 1rem;
   /* 减小字体 */
   color: #0766b7;
   position: absolute;
   top: 0;
   right: 0;
   bottom: 0;
   left: 0;
   line-height: 9rem;
   /* 调整行高 */
}

/* 公共服务区域 */
.ggfw-box {
   background-image: url(/_upload/tpl/04/17/1047/template1047/images/ggfw.jpg);
   background-size: 100% 100%;
   width: 100%;
}

.ggfw-right {
   width: 80%;
   height: 4.5rem;
   margin: 0.5rem 2% 0.5rem auto;
   background-color: #fff;
   display: flex;
   align-items: center;
   flex-wrap: wrap;
   /* 允许换行 */
}

.ggfw-info-box {
   width: 16.33%;
   /* 每行三个项目 */
   display: flex;
   justify-content: center;
   margin: 0.3rem 0;
}

.ggfw-info {
   height: 100%;
   display: flex;
   flex-direction: column;
   align-items: center;
   text-align: center;
}

.serviceColor {
   color: #0766b7;
   width: 2.75rem;
   margin: 0 auto;
   line-height: 1.4rem;
   margin-top: 0.2rem !important;
   text-align: center;
   font-size: 1.1rem !important;
   /* 减小字体 */
   /*! margin-top: 0.9rem !important; */
   margin-left: 0;
}


.publicArticle {
   background: #0766b7;
   height: 0.2rem;
   margin-top: 1.1rem;
   width: 2.05rem;
   margin-left: 0.4rem;
}

.titleColor {
   color: #0766b7;
   font-size: 0.6rem;
}

/* 师大新闻区域 */
.admissions {
   width: 100%;
   display: flex;
   flex-direction: column;
   margin-bottom: .9375rem;
}

.theRecruitmentOfStudentsLeft {
   width: 100%;
   height: 100%;
   display: flex;
   flex-direction: column;
}

.theRecruitmentOfStudentsLeftHead {
   width: 100%;
   height: 3.5rem;
   /* 减小高度 */
   border-bottom: .125rem solid #82c4c3;
   display: flex;
   align-items: center;
   justify-content: space-between;
}

.admissionsHeadUl {
   height: 3rem;
   flex: 1;
   display: flex;
   align-items: center;
   margin-right: 1rem;
}

.admissionsHeadUl-icon {
   float: left;
   /*! margin: 0 0.625rem 0 0.625rem; */
   width: 2rem;
   /* 减小图标 */
   height: 2rem;
}

.shidaIcon {
   float: left;
   /*! margin: 0 0.625rem 0 0.625rem; */
   width: 2rem;
   /* 减小图标 */
   height: 2rem;
   margin-
   margin-right: 0.4rem;
}

.news_tag_li.selected {
   float: left;
   font-family: Microsoft YaHei;
   font-weight: bold;
   font-size: 1.2rem;
   /* 减小字体 */
   color: #0766b7;
   display: flex;
   align-items: center;
   margin-left: 0.7rem;

}

#rmico {
   width: 2rem;
   height: 2rem;
}

.admissionsHeadMore a {
   color: #0766b7;
   font-size: 0.9rem;
   /* 减小字体 */
}

.contentLeftHeader {
   width: 100%;
   height: 7rem;
   /* 减小高度 */
   background-color: #0766b7;
   position: relative;
}

.sdywLeftImgBox {
   position: relative;
   width: 95%;
   margin: 0 auto;
   display: -webkit-box;
   -webkit-box-orient: vertical;
   -webkit-line-clamp: 1;
   overflow: hidden;
   text-overflow: ellipsis;
   white-space: normal;
   /*! line-height: 1.4rem; */
   top: 0;
   /* 调整位置 */
   margin-top: 0rem;
}

.sdywLeftImgBox img {
   width: 100%;
   height: auto;
   max-height: 9rem;
}

/* 江南网页版公告区域 */
.tzgg-box {
   width: 100%;
   /*! height: 3.4375rem; */
   border-bottom: .0625rem dashed #ccc;
   padding: .625rem 0;
   display: flex;
}

.tzgg-time-box {
   width: 3rem;
   /* 减小宽度 */
   height: 3rem;
   border-radius: .625rem 0 .625rem 0;
   background-color: #0766b7;
   display: inline-block;
   text-align: center;
}

.time-day-size {
   height: 2rem;
   line-height: 2rem;
   font-size: 1.5rem;
   /* 减小字体 */
   color: #fff;
   font-weight: bold;
}

.time-year-size {
   height: .9375rem;
   line-height: 0.438rem;
   color: #fff;
   font-size: .75rem;
}

.notifyNewTitle {
   padding-top: 0.431rem;
   flex: 1;
   margin-left: 0.8rem;
   display: inline-block;
   width: 100%;
   text-align: justify;
   overflow: hidden;
   text-overflow: ellipsis;
   display: -webkit-box;
   -webkit-box-orient: vertical;
   -webkit-line-clamp: 2;
   font-size: 0.9rem;
   /* 减小字体 */
}

/* 校园文化区域 */
.culturalNewVersion {
   background: #f9fafc;
   display: flex;
   flex-direction: column;
   /* 改为垂直排列 */
   width: 100%;
}

.onTheRightSideOfCulture {
   display: flex;
   flex: 1;
   flex-direction: column;
}

.culturalRightLeft {
   flex: 1;
   height: 100%;
   padding: 0.5rem;
}

.culturalRightLeft ul li {
   display: flex;
   align-items: center;
   height: 2rem;
   margin-bottom: 0.3rem;
}

.articleContent {
   flex: 1;
   font-size: 0.9rem;
   /* 减小字体 */
   display: -webkit-box;
   -webkit-box-orient: vertical;
   -webkit-line-clamp: 1;
   overflow: hidden;
   flex: 1;
   /*! display: flex; */
}

.culturalCircle {
   width: .3125rem;
   height: .3125rem;
   background: #0766b7;
   display: inline-block;
   margin-right: .3125rem;
}

.newCultureDate {
   color: #848484;
   font-size: .75rem;
}

.landscapeCarousel {
   width: 100%;
   height: auto;
   margin: 0.5rem 0;
}

.landscapeCarousel img {
   width: 100%;
   height: auto;
}

/* 媒体师大区域 */
.shenyang-normal-university-frame {
   display: flex;
   flex-direction: column;
   /* 改为垂直排列 */
   width: 100%;
   margin-top: 1rem;
}

.left-side-of-university {
   width: 100%;
}

.university-news {
   border: .0625rem solid #eee;
   flex: 1;
   /*! margin-right: 1rem; */
   padding: 1rem 1rem 0 1rem;
   height: auto;
   position: relative;
   background: #FFF;
}

.news-item {
   width: 100%;
   display: flex;
   align-items: center;
}

.university-news ul li {
   height: 1.875rem;
   display: flex;
   align-items: center;
   margin-bottom: .875rem;
   border-image: linear-gradient(to right, #fff1a5, #fffadf) 1;
   border-top: .0625rem solid;
}

.news-title {
   font-size: 0.9rem;
   /* 减小字体 */
   text-indent: .625rem;
   height: 100%;
   display: flex;
   align-items: center;
   flex: 1;
   width:70%;
}
.news-title a {
	display: block;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	flex: 1;
}
.shidaMore a {
   color: #085091;
   font-size: 0.9rem;
   /* 减小字体 */
}

.bottomThreePieces {
   display: flex;
   flex-direction: column;
   /* 改为垂直排列 */
   gap: 1rem;
}

.university-concert {
   width: 100%;
   height: auto;
   border: .0625rem solid #eee;
   margin-top: 1rem;
   display: flex;
   flex-direction: column;
}

.concert-image {
   width: 100%;
   height: auto;
}

.concert-image img {
   width: 100%;
   height: auto;
}

.concert-title {
   display: flex;
   align-items: center;
   height: 3rem;
   padding: 0.5rem;
}

.douyin-title {
   font-size: .875rem;
   display: -webkit-box;
   -webkit-box-orient: vertical;
   -webkit-line-clamp: 2;
   overflow: hidden;
   text-overflow: ellipsis;
}

.douyin-icon {
   margin-right: .3125rem;
   width: 2rem;
   height: 2rem;
}

.douyin-icon img {
   width: 100%;
   height: 100%;
}

.university-poster {
   width: 100%;
   height: auto;
   margin-top: 1rem;
}

.university-poster img {
   width: 100%;
   height: auto;
}

/* 专题聚焦区域 */
.topicUi {
   display: grid;
   grid-template-columns: repeat(2, 1fr);
   /* 两列布局 */
   grid-gap: 1rem;
   /* 增加图片之间的间距 */
   padding: 1rem;
   margin: 0;
   max-width: 100%;
}

.topicUi li {
   width: 100%;
   padding: 0;
   margin: 0;
   aspect-ratio: 16/9;
   /* 设置固定的宽高比 */
   overflow: hidden;
}

.topicUi img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   border-radius: 8px;
   /* 增加圆角 */
   box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
   /* 增强阴影效果 */
   transition: transform 0.3s ease;
   /* 添加悬停动画 */
}

.topicUi img:hover {
   transform: scale(1.05);
   /* 悬停时轻微放大 */
}

/* 专题聚焦区域的响应式调整 */
@media screen and (max-width: 768px) {
   .topicUi {
      grid-gap: 0.5rem;
      padding: 0.5rem;
   }

   .topicUi li {
      aspect-ratio: 4/3;
      /* 移动端调整宽高比 */
   }
}

/* 页脚区域 */
.shenShiSTail {
   background: url('/_upload/tpl/04/17/1047/template1047/images/footer.png');
   border-top: .625rem solid #82c4c3;
}

.tailFrame {
   width: 95vw;
   margin: 0 auto;
   padding-top: 1rem;
   height: auto;
}

.friendshipLink {
   display: flex;
   flex-direction: column;
   /* 改为垂直排列 */
   align-items: flex-start;
   border-bottom: .0625rem solid #eee;
   height: auto;
   padding-bottom: 1rem;
}

.friendshipTitle {
   width: 100%;
   font-family: Microsoft YaHei;
   font-weight: bold;
   font-size: 1.5rem;
   /* 减小字体 */
   color: #FFFFFF;
   text-align: start;
   margin-bottom: 1rem;
}

.friendshipContent ul {
   display: flex;
   flex-wrap: wrap;
   justify-content: flex-start;
}

.friendshipContent ul li {
   width: 45%;
   height: 3rem;
   background: #0764B8;
   text-align: center;
   line-height: 3rem;
   border-left: .125rem solid #458cc9;
   border-right: .125rem solid #458cc9;
   margin: 0.3rem;
   color: #FFF;
}

.friendshipContent ul li a {
   color: #FFF;
   font-size: 0.8rem;
   /* 减小字体 */
}

.newVersionOfBaseMap {
   display: flex;
   flex-direction: column;
   /* 改为垂直排列 */
   align-items: center;
   height: auto;
   padding: 1rem 0;
}

.tailLogo {
   width: 80%;
   margin-bottom: 1rem;
}

.tailLogo img {
   width: 100%;
}

.bottomAbout {
   color: #FFF;
   width: 100%;
   text-align: center;
}

.topIcon {
   background: url('/_upload/tpl/04/17/1047/template1047/images/zqbxcycx.png') no-repeat;
   width: 100%;
   height: 2.5rem;
   background-size: contain;
   background-position: center;
   margin-bottom: 0.5rem;
}

.fourPiecesOfDisplay {
   /*! position: relative; */
   bottom: .5625rem;
   display: flex;
   justify-content: center;
   gap: 1.875rem;
}

.videoIcon {
   position: relative;
}

.picture {
   position: absolute;
   width: 9rem;
   left: -1.6rem;
}

.picture img {
   width: 100%;
}

.picture {
   display: none;
}

.videoIcon:hover .picture {
   display: block;
}


.belowHoude {
   display: flex;
   flex-direction: column;
   margin-top: 0.4rem;
   width: 100%;
}

.aboutUs {
   margin-bottom: 0.325rem;
   font-size: 0.9rem;
   /* 减小字体 */
}

.footerBigBox {
   width: 100%;
   height: auto;
   background: #0660b2;
   color: #FFF;
   padding: 1rem 0;
}

.footerContent {
   width: 95vw;
   margin: 0 auto;
   text-align: center;
   color: #FFF;
   font-size: .875rem;
}

.footerCenter {
   display: flex;
   flex-direction: column;
   /* 改为垂直排列 */
   align-items: center;
}

.leftCopyright {
   margin-bottom: 0.5rem;
}

.recordImage {
   margin-left: 0;
   display: flex;
   align-items: center;
   justify-content: center;
}

.recordImage img {
   width: 1.5rem;
   margin-right: 0.3rem;
}

.recordImage a {
   color: #FFF;
}

/* 导航菜单 - 折叠式 */
.theCoreOfClassHead {
   width: 100%;
   height: 3.125rem;
   background-color: #0766b7;
}

.MenuNavigation {
   width: 100%;
   height: 100%;
   margin: 0 auto;
   position: relative;
}

/* 汉堡菜单按钮 */
.menu-toggle {
   display: block;
   width: 1.5rem;
   height: 2rem;
   position: absolute;
   top: 1rem;
   right: 1rem;
   z-index: 1001;
   cursor: pointer;
}

.menu-toggle span {
   display: block;
   width: 100%;
   height: 0.25rem;
   background-color: #fff;
   margin-bottom: 0.3rem;
   border-radius: 0.125rem;
}

/* 折叠菜单样式 */
.menuOfNav {
   margin: 0;
   padding: 0;
   width: 100%;
   height: calc(100vh - 3.5rem);
   display: flex;
   flex-direction: column;
   position: fixed;
   top: 3.5rem;
   left: 0;
   background-color: #0766b7;
   z-index: 1000;
   transform: translateX(-100%);
   transition: transform 0.3s ease;
   visibility: visible;
   opacity: 1;
   overflow-y: auto;
   -webkit-overflow-scrolling: touch;
}

.menuOfNav.active {
   transform: translateX(0);
}

/* 菜单列表样式 */
.menuOfNav>ul {
   margin: 0;
   padding: 0;
   list-style: none;
   width: 100%;
}

/* 菜单项样式 */
.menuItems {
   margin: 0;
   padding: 0;
   border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.menuItems>a {
   display: block;
   padding: 1rem 1.5rem;
   color: #fff;
   text-decoration: none;
   font-size: 1rem;
   position: relative;
}

.menuItems>a:after {
   content: '';
   position: absolute;
   right: 1.5rem;
   top: 50%;
   transform: translateY(-50%);
   width: 0.5rem;
   height: 0.5rem;
   border-right: 2px solid rgba(255, 255, 255, 0.7);
   border-bottom: 2px solid rgba(255, 255, 255, 0.7);
   transform: translateY(-50%) rotate(45deg);
   transition: transform 0.3s ease;
}

.menuItems.active>a:after {
   transform: translateY(-50%) rotate(-135deg);
}

/* 子菜单样式 */
.subMenu {
   margin: 0;
   padding: 0;
   list-style: none;
   background-color: rgba(0, 0, 0, 0.1);
   max-height: 0;
   overflow: hidden;
   transition: max-height 0.3s ease;
}

.subMenu.active {
   max-height: 500px;
}

.subItems {
   margin: 0;
   padding: 0;
}

.subItems a {
   display: block;
   padding: 0.75rem 2.5rem;
   color: rgba(255, 255, 255, 0.9);
   text-decoration: none;
   font-size: 0.9rem;
   border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* 菜单按钮样式 */
@media screen and (max-width: 768px) {
   .menu-toggle {
      /*! display: flex; */
      /*! flex-direction: column; */
      /*! justify-content: space-between; */
      /*! width: 24px; */
      /*! height: 20px; */
      /*! background: none; */
      /*! border: none; */
      /*! padding: 0; */
      /*! margin: 0; */
      /*! cursor: pointer; */
      /*! position: relative; */
      /*! z-index: 1001; */
   }

   .menu-toggle span {
      display: block;
      width: 100%;
      height: 2px;
      background-color: #fff;
      transition: transform 0.3s ease, opacity 0.3s ease;
   }

   .menu-toggle.active span:nth-child(1) {
      transform: translateY(9px) rotate(45deg);
   }

   .menu-toggle.active span:nth-child(2) {
      opacity: 0;
   }

   .menu-toggle.active span:nth-child(3) {
      transform: translateY(-9px) rotate(-45deg);
   }
}

@media screen and (min-width: 769px) {
   .menu-toggle {
      display: none;
   }
}

/* 移动端头部样式 */
@media screen and (max-width: 768px) {
   .site-header {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 3.5rem;
      background-color: #0766b7;
      z-index: 1000;
      display: flex;
      align-items: center;
      padding: 0 1rem;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
   }

   .site-header .logo {
      flex: 1;
   }

   .site-header .logo img {
      height: 2.5rem;
      width: auto;
   }
}

.menu-toggle span {
   display: block;
   width: 100%;
   height: 2px;
   background-color: #fff;
   transition: transform 0.3s ease, opacity 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
   transform: translateY(9px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
   opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
   transform: translateY(-9px) rotate(-45deg);
}


.menu-overlay.active {
   opacity: 1;
   visibility: visible;
}

.newsContent {
   display: none;
}

.topImage {
   display: none;
}

.admissionsTitle1 {
   font-size: 0.9rem;
   /*! margin-bottom: .5rem; */
   display: -webkit-box;
   -webkit-box-orient: vertical;
   -webkit-line-clamp: 1;
   overflow: hidden;
   flex: 1;
}

.dateOfEnrollment1 {
   color: #262626;
   font-size: 0.8rem;
}

.recruitStudentsLeftContentLeft {
   /*! height: 24rem; */
}

.menuOfNav .menuItems a {
   display: block;
   text-decoration: none;
   font-size: .9375rem;
   color: #FFFFFF;
   width: 100%;
   padding-left: 1rem;
}

/* 子菜单样式 */
.subMenu {
   margin: 0;
   padding: 0;
   display: none;
   width: 100%;
   background-color: #4247ab;
}

.subMenu.active {
   display: block;
}

.subMenu .subItems {
   position: relative;
   vertical-align: top;
   white-space: nowrap;
   background-color: #207ac4;
   border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.subMenu .subItems a {
   display: block;
   font-size: .9375rem;
   color: #ffffff;
   /*! line-height: 3rem; */
   padding-left: 2rem;
}

/* 搜索框样式 */
.searchSection {
   width: 100%;
   padding: 0.5rem;
}

.form-box {
   width: 100%;
   height: 2.25rem;
   position: relative;
   display: flex;
}

.search-box {
   width: 80%;
   height: 100%;
   border: .0625rem solid #eee !important;
   padding-left: .625rem;
   border-top-left-radius: .3125rem;
   border-bottom-left-radius: .3125rem;
   font-size: 1rem;
}

.theSubmitButton {
   width: 20%;
   height: 100%;
   border: .0625rem solid #eee !important;
   border-top-right-radius: .3125rem;
   border-bottom-right-radius: .3125rem;
   background-color: #fff;
   background-image: url(/_upload/tpl/04/17/1047/template1047/images/search.png);
   background-size: 30% !important;
   background-repeat: no-repeat;
   background-position: center center;
}

/* 隐藏滚动条 */
::-webkit-scrollbar {
   display: none;
}

* {
   scrollbar-width: none;
   -ms-overflow-style: none;
}

/* 主题切换按钮 */
.themeBox {
   position: fixed;
   top: 5.8rem;
   height: 4rem;
   /* 减小高度 */
   right: 0;
   z-index: 9999;
   background: #086dbf;
   border-top-left-radius: 1rem;
   border-bottom-left-radius: 1rem;
}

.themeSwitching {
   display: flex;
   flex-direction: column;
   width: 4rem;
   /* 减小宽度 */
   height: 100%;
   justify-content: center;
   align-items: center;
   color: #FFF;
}

.themeText {
   font-size: 0.8rem;
   margin-top: 0.1rem;
}

/* 响应式调整 */
@media screen and (max-width: 375px) {
   html {
      font-size: 14px;
      /* 在更小的屏幕上减小基础字体大小 */
   }

   .theRecruitmentOfStudentsLeftHead {
      height: 3rem;
   }

   .admissionsHeadUl-icon {
      width: 1.8rem;
      height: 1.8rem;
      /*! margin-top: 0.7rem; */
   }

   .notifyNewTitle a font {
      font-weight: normal !important;
      color: #000 !important;
   }



   .news_tag_li.selected {
      font-size: 1.1rem;
      margin-left: 0.4rem;
   }

   .friendshipContent ul li {
      width: 95%;
      margin: 0.2rem auto;
   }

   #rmico {
      width: 1.8rem;
      height: 1.8rem;
   }
}

.ggfw-info-box .publicMap {
   width: 2.5rem;
   height: 2.5rem;
   /* 根据需要调整高度 */
   background-size: cover;
   /* 确保背景图覆盖整个元素 */
   background-position: center;
   /* 背景图居中 */
}

.ggfw-info-box[data-index="1"] .publicMap {
   background-image: url('/_upload/tpl/04/17/1047/template1047/images/oa.png');
}


.ggfw-info-box[data-index="2"] .publicMap {
   background-image: url('/_upload/tpl/04/17/1047/template1047/images/jxjyl.png');
}


.ggfw-info-box[data-index="3"] .publicMap {
   background-image: url('/_upload/tpl/04/17/1047/template1047/images/dag-un.png');
}

.ggfw-info-box[data-index="4"] .publicMap {
   background-image: url('/_upload/tpl/04/17/1047/template1047/images/bwg-un.png');
}

.ggfw-info-box[data-index="5"] .publicMap {
   background-image: url('/_upload/tpl/04/17/1047/template1047/images/xyy-un.png');
}

.ggfw-info-box[data-index="6"] .publicMap {
   background-image: url('/_upload/tpl/04/17/1047/template1047/images/zhcg-un.png');
}

.notifyNewTitle a font {
   color: #000 !important;
   font-weight: normal !important;
}

.swiper-button-prev {
   display: none !important;
}

.swiper-button-next {
   display: none !important;
}

.sdyw-box-1 {
   display: none;
}









    
#videoPath {
  /*! position: relative; */
}
.atTheBottomOfTheVideo {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 2.5rem;
  background: #000000bf;
  /*! color: #FFF; */
  /*! display: flex; */
  /*! line-height: 2.1rem; */
}

#videoPath video {
  width: 100% !important;
  margin: 0 auto !important;
}
.videoDisplay {
  position: relative;
}
.bottomBackground {
  display: flex;
  align-items: center;
}
.videoTitle {
  flex: 1;
  padding-left: 0.8rem;
  font-size: 0.9rem;
}
.videoTitle a {
  color: #FFF;
}
.moreVideosAvailable {
  background: #0766b7;
  padding-left: 0.7rem;
  padding-right: 0.7rem;
  color: #FFF;
  height: 2.5rem;
  line-height: 2.5rem;
}
.moreStyles a,.moreTopics{
	font-size: 1rem;
	font-weight: normal;
	color: #0766b7;
	margin-left: 1.3rem;
	position: relative;
	top: 0.2rem;
}
