/* 全局样式 */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Arial", sans-serif;
  line-height: 1.6;
  color: #333;
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}
.video-section, .news-section, .notice-section, .teaching-student-section, .trailer-section, .research-section, .topics-section, .footer-content {
  width: 1440px;
  margin: 0 auto;
}
.primary-color {
  color: #613aa7 !important;
}
.swiper {
  --swiper-theme-color: #fff;
  --swiper-pagination-color: #613aa7;
  /* 两种都可以 */
}
/* 遮罩 */
.mask {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 10001;
  display: none;
}
.input-section {
  width: 600px;
  height: 50px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.input-section input {
  padding: 20px;
  border: none;
  background: #fff;
  width: 100%;
  height: 50px;
  border-radius: 30px;
  color: #666;
}
.input-section img {
  width: 30px;
  position: absolute;
  right: 8px;
  top: 5px;
  cursor: pointer;
}
.close-btn {
  position: absolute;
  width: 50px;
  right: 20%;
  top: 10%;
}
/* 头部导航 */
.header {
  background-color: #613aa7;
}
.header .logo, .header .nav {
  width: 1440px;
  margin: auto;
}
.logo {
  padding: 35px 0;
  display: flex;
  justify-content: space-between;
  align-items: end;
}
.logo img {
  height: 80px;
}
.nav .menu {
  display: flex;
}
.nav .menu-icon {
  display: none;
}
.nav .menu > li {
  width: 12%;
  border-right: 1px solid #fff;
  /*line-height: 160%;*/
  text-align: center;
}
.nav .menu li:last-child {
  border-right: none;
}
.nav .menu > li a {
  color: #fff;
  font-family: "微软雅黑";
  font-weight: normal;
  font-size: 20px;
}
.nav .menu li a:hover, .nav .menu li a.active {
  color: #fbcf7b;
}
.nav .menu li.submenu {
  position: relative;
}
.nav .menu li.submenu:hover .sub-menu {
  display: block;
}
.nav .menu li.submenu .sub-menu {
  position: absolute;
  background-color: #fff;
  border-top: 4px solid #fbcf7b;
  display: none;
  z-index: 999;
  top: 32px;
  width: 140px;
}
.nav .menu li.submenu .sub-menu:before {
  content: "";
  position: absolute;
  top: -9px;
  left: 50%;
  margin-left: -6px;
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid #fbcf7b;
}
.nav .menu li.submenu .sub-menu li a {
  display: block;
  padding: 20px 5px;
  color: #666;
  font-family: "Microsoft YaHei";
  font-weight: normal;
  border-bottom: 1px dotted #999;
  font-size: 14px;
}
.nav .menu li.submenu .sub-menu li a:hover {
  color: #fff;
  background: #613aa7;
  transition: all 0.08s ease-in-out;
  display: block;
}
.search {
  display: flex;
  align-items: center;
}
.search input {
  padding: 8px;
  border: none;
  background: none;
  width: 200px;
  height: 40px;
  color: #fff;
}
.search input:focus {
  outline: none;
  border-bottom: 1px solid #fff;
}
.search input::placeholder {
  color: #fff;
}
.search img {
  border: none;
  width: 40px;
  height: 40px;
  padding: 8px;
  cursor: pointer;
}
.search button i {
  color: #333;
}
.banner {
  width: 100%;
  max-height: 720px;
  max-width: 1920px;
}
.banner img {
  width: 100%;
  height: 100%;
}
/* 视频播放区域 */
body.show-video-section {
  height: 100%;
  overflow: hidden;
}
.video-section {
  position: fixed;
  /* 固定定位，覆盖整个视口 */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* 黑色背景，增强视觉效果 */
  z-index: 2000;
  /* 确保在最顶层 */
  display: flex;
  /* 使用 Flexbox 布局 */
  justify-content: center;
  /* 水平居中 */
  align-items: center;
  background: rgba(0, 0, 0, .9);
  /* 垂直居中 */
}
/* 视频样式 */
#intro-video {
  width: 100%;
  max-width: 100%;
  /* 确保视频宽度不超过容器 */
  max-height: 100%;
  /* 确保视频高度不超过容器 */
  object-fit: cover;
  /* 保持视频宽高比，充满容器 */
}
/* 跳过按钮样式 */
#skip-video {
  position: absolute;
  /* 绝对定位 */
  top: 10%;
  right: 10%;
  /* 居中对齐 */
  background-color: rgba(45, 79, 152, 0.7);
  /* 半透明背景 */
  color: #fff;
  width: 200px;
  height: 60px;
  text-align: center;
  line-height: 60px;
  border: 2px solid #fff;
  border-radius: 30px;
  cursor: pointer;
  font-size: 20px;
  font-weight: bold;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}
.background-grey {
  background-color: #f9f9f9;
  padding: 1px 0 100px;
}
.section-title {
  padding-left: 50px;
  background-image: url(../img/icon2.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: left center;
  color: #42003d;
  font-size: 28px;
  margin: 50px 0;
  display: flex;
  align-items: center;
  gap: 20px;
}
.section-subtitle {
  color: #936b93;
}
.more-link {
  color: #9e9e9e;
  font-size: 14px;
  font-weight: normal;
}
/* 学院要闻 */
.news-container {
  display: flex;
  gap: 20px;
}
/* 左边：图片轮播 */
.news-carousel-left {
  flex: 1;
  position: relative;
  height: 600px;
  width: 800px;
}
.carousel-slider-news {
  overflow: hidden;
  width: 100%;
  height: 500px;
  /* 设置固定高度 */
  position: relative;
  display: flex;
  transition: transform 0.5s ease-in-out;
}
.carousel-item {
  width: 100%;
  height: 100%;
}
.carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.carousel-item img:hover {
  transform: scale(1.15);
  transition: transform 0.3s ease; /* 平滑过渡 */
}
.carousel-item img:not(:hover) {
  transform: scale(1);
  transition: transform 0.3s ease;
}
.carousel-caption {
  position: absolute;
  bottom: 0px;
  padding: 100px 150px 20px 80px;
  color: #fff;
  width: 100%;
  height: 260px;
  background: url(../img/newsbg.png) repeat-x;
}
.carousel-caption2 {
  border-left: 4px solid #fbcf7b;
  padding-left: 20px;
}
.carousel-caption p {
  font-size: 20px;
  font-weight: bold;
}
.carousel-caption span {
  font-size: 12px;
  font-weight: lighter;
}
.prev-news, .next-news {
  background-color: #613aa7;
  border: none;
  width: 60px;
  text-align: center;
  padding: 10px 0;
  cursor: pointer;
  font-size: 24px;
  font-weight: bold;
  color: #fff;
  position: absolute;
  top: 500px;
}
.prev-news:hover, .next-news:hover {
  background-color: #fbcf7b;
}
.next-news {
  right: 0;
}
.prev-news {
  right: 60px;
}
/* 右边：新闻列表 */
.news-list-right {
  flex: 1;
  height: 600px;
  overflow: hidden;
}
.news-list {
  list-style: none;
  padding: 0 30px;
  font-size: 1.2em;
}
.news-list > li {
  margin-bottom: 10px;
  padding: 5px;
  border-bottom: 1px dashed #ebebeb;
}
.news-list > li:hover {
  transform: scale(1.02);
  transition: all 0.15s ease-in-out;
  font-weight: bolder;
}
.news-list > li:last-child {
  border-bottom: none;
}
.news-list > li > a {
  display: flex;
  gap: 24px;
}
.news-list li:last-child {
  margin-bottom: 0;
}
.news-list .news-time {
  width: 88px;
  height: 88px;
  border: 4px solid #613aa7;
  text-align: center;
  flex-shrink: 0;
}
.news-list .news-date {
  font-size: 30px;
  color: #613aa7;
  height: 40px;
  line-height: 40px;
}
.news-list .news-month {
  font-size: 20px;
  color: #fff;
  display: block;
  background-color: #613aa7;
  height: 40px;
  line-height: 40px;
}
.news-list li span {
  font-size: 14px;
  color: #666;
}
/* 通知公告 */
.notice-section {
  position: relative;
}
.notice {
  position: relative;
}
.notice-carousel {
  width: 1300px;
}
.notice-carousel-inner {
  display: flex;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
}
.notice-item {
  flex-shrink: 0;
  width: 360px;
}
.notice-item a {
  display: block;
  width: calc(100% - 10px);
  padding: 36px 28px;
  margin-right: 10px;
  background-color: #fff;
  color: #333;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.notice-item h3 {
  font-size: 18px;
  font-weight: normal;
  height: 90px;
}
.notice-item p {
  width: 100%;
  font-size: 14px;
  text-align: left;
}
.notice-item-hit {
  color: #676767;
}
.notice-item-hit span {
  color: #613aa7;
}
.wp_listVisitCount {
  visibility: initial;
}
.notice-item-date {
  padding-top: 28px;
  color: #613aa7;
}
.notice-item:hover a {
  background: #613aa7;
  color: #fff;
  transition: all 0.15s ease-in-out;
}
.notice-item:hover .notice-item-hit, .notice-item:hover .notice-item-date {
  color: #fff;
}
.notice-item:hover .notice-item-hit span {
  color: #fbcf7b;
}
.notice-carousel-controls {
  width: 50px;
  height: 50px;
  line-height: 50px;
  border: 1px solid #515151;
  color: #613aa7;
  border-radius: 25px;
  position: absolute;
  text-align: center;
  font-size: 30px;
  bottom: 75px;
  cursor: pointer;
  z-index: 10;
}
.prev-notice {
  left: 0;
}
.next-notice {
  right: 0;
}
.notice-carousel:hover .notice-carousel-controls {
  display: block;
}
/* 新文科建设 & 学生工作 */
.teaching-student-wrap {
  background: url("../img/bg1.png") no-repeat top center;
  position: relative;
  min-height: 991px;
}
.teaching-student-section {
  position: absolute;
  top: 212px;
  left: 50%;
  transform: translateX(-50%);
  width: 1440px;
  height: 750px;
  background: url(../img/bg2.png) no-repeat top center;
  padding: 40px 0 0 0;
  background-size: contain;
  display: flex;
  gap: 20px;
  justify-content: space-evenly;
}
.teaching-student-title {
  margin-bottom: 20px;
}
.teaching-item {
  margin-top: 20px;
}
.teaching-item a {
  padding: 10px;
  display: block;
}
.teaching-item a:hover {
  background: #613aa7;
  color: #fff;
  border-radius: 5px;
  transition: all 0.15s ease-in-out;
}
.teaching-item h3 {
  padding-top: 15px;
  max-width: 630px;
  max-height: 45px;
  overflow: hidden;
  font-weight: normal;
}
.student-item {
  display: flex;
  justify-content: center;
  gap: 20px;
}
/* 修改1 */
.student-carousel-inner {
  display: flex;
  justify-content: space-between;
  height: 495px;
}
.student-carousel {
  width: 855px;
}
.activity {
  background-color: #f9f9f9;
  box-shadow: 0 5px 5px 0px #ebebeb;
  max-width: 408px;
  overflow: hidden;
  margin-right: 28px;
  height: 440px;
}
.activity img:hover {
  transform: scale(1.05); /* 放大到1.05倍 */
  transition: transform 0.3s ease-in-out;
}
.activity img:not(:hover) {
  transform: scale(1); /* 放大到1.05倍 */
  transition: transform 0.3s ease-in-out;
}
.activity img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}
.activity h3 {
  color: #000;
  padding: 5px 25px;
  height: 70px;
  font-weight: normal;
}
.activity p {
  padding: 0 25px 20px;
  color: #666;
  overflow: hidden;
  font-size: 14px;
  font-weight: lighter;
}
.student-title {
  position: relative;
}
.student-pagination {
  max-width: 30%;
  position: absolute;
  right: 90px;
  left: auto !important;
  bottom: 0 !important;
  text-align: right;
}
.student-pagination .swiper-pagination-bullet {
  background: #613aa7;
  opacity: 1;
}
.student-pagination .swiper-pagination-bullet-active {
  background: #fbcf7b;
}
.teaching-section {
  padding-left: 70px;
  height: 570px;
  overflow: hidden;
}
/* 外院宣传片 */
/* 修改2 */
.trailer-research-wrap {
  display: flex;
  width: 1592px;
  margin: 0 auto;
}
.trailer-section {
  width: 65%;
  border-radius: 0 50px 0px 0;
  position: relative;
}
.trailer-section h2 {
  left: 100px;
}
.trailer-title {
  margin: 10px 0;
  position: absolute;
  top: -35px;
  left: 20px;
  z-index: 2;
}
.trailer-content {
  text-align: center;
  width: 100%;
  height: 565px;
  position: absolute;
  z-index: 1;
  top: -60px;
  border-radius: 0 50px 0 0;
  overflow: hidden;
}
.video-player {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.trailer-video {
  width: 100%;
  height: 100%;
  max-width: 100%;
  /* 确保视频宽度不超过容器 */
  max-height: 100%;
  /* 确保视频高度不超过容器 */
  object-fit: cover;
  /* 保持视频宽高比，充满容器 */
}
/* 修改2 */
.video-player img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#play-button {
  width: 140px;
  height: 140px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-size: contain;
  cursor: pointer;
  z-index: 9999;
}
.play-button-pause {
  background: url("../img/pause.png") no-repeat center center;
  display: none;
}
.trailer-content:hover .play-button-pause {
  display: block;
}
.play-button-play {
  background: url("../img/play-button.png") no-repeat center center;
}
.video-pagination {
  position: relative;
  top: -50px;
  z-index: 1;
}
.video-pagination .swiper-pagination-bullet-active {
  background-color: #613aa7;
}
/* 科学研究 */ /* 修改3 */
.research-section {
  width: 50%;
  position: relative;
}
.research-wrap {
  background: url("../img/bg3.png") no-repeat left center;
  background-size: contain;
  padding-top: 70px;
  padding-left: 48px;
  height: 540px;
}
/* 修改3 */
.research-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.research-item {
  padding: 25px 15px 5px;
  color: #fff;
}
.research-item h3 {
  font-size: 18px;
  font-weight: normal;
  margin-bottom: 5px;
  height: 25px;
  overflow: hidden;
}
.research-item p {
  font-size: 14px;
}
.research-item:hover {
  transform: scale(1.02);
  font-weight: bolder;
  transition: all 0.15s ease-in-out;
}
/* 专题聚焦 */
.topics-section {
  width: 100%;
  background: url(../img/bg4.png) 100% center;
  position: relative;
  height: 450px;
}
.flex-center {
  display: flex;
  justify-content: center;
}
.topics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
  width: 1440px;
  margin: 0 auto;
}
.topic-item {
  background-color: #7f4d88;
  color: #fff;
  padding: 20px;
  font-family: "宋体";
  font-size: 30px;
  line-height: 200px;
  text-align: center;
}
.topic-item:hover {
  transform: scale(1.02);
  transition: all 0.15s ease-in-out;
}
.topic-item h3 {
  font-size: 20px;
  margin-bottom: 10px;
}
.topic-item p {
  font-size: 16px;
}
/* 底部信息 */
/* Footer 样式 */
.footer {
  background-color: #613ba8;
  /* 紫色背景 */
  color: white;
  padding: 50px 0 35px;
  font-family: Arial, sans-serif;
  margin-top: 60px;
}
/* Footer 顶部 */
.footer-top {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
}
.links-select {
  width: 380px;
  height: 40px;
  line-height: 40px;
  border: 1px solid #e1d9ef;
  border-radius: 5px;
  color: #e1d9ef;
  background: none;
  font-size: 16px;
  cursor: pointer;
  position: relative;
}
.links-select > span {
  padding-left: 10px;
}
.sub-links {
  display: none;
}
.sub-links a {
  display: block;
  background-color: rgba(0, 0, 0, 0.7);
  padding-left: 10px;
}
.links-select::after {
  content: "∨";
  display: block;
  /* 下拉箭头 */
  position: absolute;
  width: 14px;
  height: 14px;
  line-height: 14px;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: #fff;
}
/* Footer 中间部分 */
.footer-middle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.contact-text {
  border-bottom: 1px solid #fff;
}
.contact-info {
  max-width: 600px;
  font-size: 1.2em;
}
.contact-info > div {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.contact-info p {
  margin: 10px 10px 0 0;
}
.footer-middle img {
  width: 300px;
}
/* Footer 底部 */
.footer-bottom {
  text-align: center;
  font-size: 14px;
}
.wp-window {
  display: block;
  width: 100px;
  height: 100px;
  background: #FF0000;
}
.input-section .search-submit {
  width: 50px;
  height: 50px;
  background: url(../img/search2.png) no-repeat center;
  position: relative;
  float: right;
  background-size: cover;
  top: -50px;
}
.nbanner1 {
  line-height: 0;
  text-align: center;
}
.nbanner1 img {
  width: 100%;
}
.nbanner2 {
  line-height: 0;
  text-align: center;
}
.nbanner2 img {
  width: 100%;
}
.onbanner {
  width: 100%;
  height: 100px;
  position: absolute;
  z-index: 2;
}
.xsgz {
  margin-right: 50px;
}
/**自定义新闻列表**/
.clear {
  width: 100%;
  height: 0;
  line-height: 0;
  font-size: 0;
  overflow: hidden;
  clear: both;
  display: block;
  _display: inline;
}
.clearfix:after {
  clear: both;
  content: ".";
  display: block;
  height: 0;
  visibility: hidden;
}
.clearfix {
  display: block;
  *zoom: 1;
}
.news_list {}
.news_list li.news {
  line-height: 50px;
  padding-left: 0px;
  border-bottom: 1px solid #eee;
} /**标题图标**/
.news_list li.news span.news_title {
  float: left;
  font-size: 16px;
  line-height: 50px;
  background: url("../img/dd.png") no-repeat left center;
  padding-left: 30px;
} /*标题*/
.news_list li.news span.news_title img {
  vertical-align: middle;
}
.news_list li.news span.news_meta {
  float: right;
  margin-left: 2px;
  color: #9C9C9C;
  font-size: 14px;
} /*属性*/
.news_list li.news .news_time, .news_list li.news .news_time span {
  color: #666;
} /*发布时间*/
.news_list li.news .news_icon {
  display: inline-block;
  margin: 0 auto;
  border: 0px solid red;
}
.news_list li.news .news_text {
  line-height: 22px;
  color: #666;
} /*默认简介*/
.news_list li.news .news_bg {
  position: absolute;
  left: 0px;
  bottom: 0px;
  right: 0px;
  height: 30px;
  background: #000;
  opacity: .7;
  filter: Alpha(opacity=70);
}
.news_list li.news p {
  line-height: 34px;
}
.post .news_list li.news .news_imgs {
  overflow: hidden;
}
.post .news_list li.news .news_imgs img {
  transition-duration: 1s;
}
.post .news_list li.news:hover .news_imgs img {
  transform: scale(1.1);
}
/*日历新闻样式2*/
.rili2 {}
.rili2 .con {
  padding: 5px 0px;
}
.rili2 .news_list li.news {
  margin-bottom: 20px;
  height: 80px;
  background: #d0dff3;
}
.rili2 .news_list li.news.n1 {}
.rili2 .news_list li.news .news_date {
  float: left;
  width: 80px;
  margin-right: -80px;
  background: #613aa7;
  text-align: center;
  padding: 10px 0;
}
.rili2 .news_list li.news .news_date .news_year {
  line-height: 36px;
  font-size: 30px;
  color: #fff;
  transition: all 0.4s ease-in-out;
}
.rili2 .news_list li.news .news_date .news_days {
  line-height: 24px;
  font-size: 14px;
  color: #fff;
}
.rili2 .news_list li.news .news_wz {
  width: 100%;
}
.rili2 .news_list li.news .news_wz .news_con {
  margin-left: 95px;
  padding: 4px 0px;
  padding-right: 25px;
}
.rili2 .news_list li.news .news_title {
  line-height: 26px;
  margin-top: 10px;
  font-size: 16px;
  color: #1d1d1d;
}
.rili2 .news_list li.news:hover .news_date .news_year {}
.rili2 .news_list li.news:hover .news_date .news_days {}
/*标题文*/
/*图列表*/
.news_tu {}
.news_tu .con {
  padding: 12px 0px;
}
.news_tu .news_list {
  margin: 0px -17px;
}
.news_tu .news_list li.news {
  float: left;
  width: 25%;
}
.news_tu .news_list li.news .news_box {
  margin: 0px 17px;
  transition: all 0.4s ease-in-out;
}
.news_tu .news_list li.news .news_box:hover {
  opacity: .85;
  filter: Alpha(opacity=85);
}
.news_tu .news_list li.news .news_imgs {
  height: 90px;
  overflow: hidden;
  vertical-align: middle;
  display: table-cell;
  border: 1px solid #613aa7;
}
.news_tu .news_list li.news .news_imgs img {
  width: 100%;
  height: auto;
  max-height: 100%;
}
.news_tu .news_list li.news .news_wz {}
.news_tu .news_list li.news .news_wz .news_con {}
.news_tu .news_list li.news .news_title {
  line-height: 45px;
  height: 45px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 14px;
}
.news_tu .news_list li.news .news_title a {}
/**列表页**/
/**主体列表页开始**/
#l-container {}
#l-container .inner {
  padding: 25px 10px;
}
/**主体文章页开始**/
#d-container {}
#d-container .inner {
  padding: 20px 60px;
  background: #fff;
}
.col_menu {
  width: 240px;
  float: left;
  margin-right: -240px;
  position: relative;
}
.col_menu .l-qh {
  margin-bottom: 10px;
}
.col_menu .col_menu_head {
  background: #613aa7 url(../img/icon3.png) no-repeat right;
  background-position: right 20px center;
  background-size: 45px;
} /**位置栏目背景**/
.col_menu .col_menu_head h3.col_name {
  font-size: 20px;
  font-weight: normal;
  color: #fff;
  max-width: 180px;
} /**位置栏目字体**/
.col_menu .col_menu_head h3.col_name .col_name_text {
  display: block;
  line-height: 50px;
  padding: 0px 5px 0px 30px;
} /**栏目名称图标**/
.col_menu .col_menu_con {
  border: 1px solid #e4e4e4;
}
/*栏目列表*/
.col_list {}
.col_list .wp_listcolumn {
  border-top: 0px solid #2867A0;
  border-bottom: 0px solid #fff;
  background: #f5f5f5;
  font-family: "微软雅黑";
}
.col_list .wp_listcolumn .wp_column a {
  color: #333;
  font-size: 16px;
  font-weight: normal;
  background: none;
  border-top: 0px solid #fff;
  border-bottom: 1px solid #F6EAEA;
}
.col_list .wp_listcolumn .wp_column a .column-name {
  padding: 5px 0px 5px 28px;
  line-height: 32px;
}
.col_list .wp_listcolumn .wp_column a:hover, .col_list .wp_listcolumn .wp_column a.selected {
  color: #613aa7;
  background: #eee;
}
.col_list .wp_listcolumn .wp_column a.selected span.column-name {
  color: #613aa7;
}
.col_list .wp_listcolumn .wp_subcolumn .wp_column a {
  color: #454545;
  font-size: 14px;
  font-weight: lighter;
  background: none;
  border-top: 1px solid #fff;
}
.col_list .wp_listcolumn .wp_subcolumn .wp_column a:hover {
  background-color: #eee;
  color: #916FCD;
}
.col_list .wp_listcolumn .wp_column.parent > a .column-name {
  font-weight: bold;
  color: #613aa7;
}
/*二级子栏目**/
.col_list .wp_listcolumn .wp_column .sub_list a {
  color: #333;
  border-top: 1px solid #eee;
  margin-top: -1px;
}
.col_list .wp_listcolumn .sub_list a .column-name {
  display: inline-block;
  line-height: 28px;
  padding: 5px 10px 5px 52px;
  cursor: pointer;
}
.col_list .wp_listcolumn .sub_list a:hover, .col_list .wp_listcolumn .wp_column a.selected {
  font-weight: bold;
  color: #613aa7;
}
/*三级子栏目**/
.col_list .wp_listcolumn .wp_column .sub_list .sub_list a {
  background: none;
}
.col_list .wp_listcolumn .sub_list .sub_list a .column-name {
  padding: 5px 10px 5px 51px;
  cursor: pointer;
}
.col_list .wp_listcolumn .sub_list .sub_list a :hover, .col_list .wp_listcolumn .sub_list .sub_list a.selected {
  font-weight: bold;
  color: #613aa7;
}
/**栏目新闻**/
.col_news {
  width: 100%;
  min-height: 500px;
  float: right;
}
.col_news .col_news_box {
  margin-left: 290px;
}
.col_news_head {
  border-bottom: 1px solid #613aa7;
  height: 50px;
}
.col_metas .col_title {
  display: inline-block;
  float: left;
  height: 48px;
  line-height: 48px;
} /**当前栏目**/
.col_metas .col_title h2 {
  display: inline-block;
  font-size: 20px;
  font-family: "Microsoft yahei";
  font-weight: normal;
  color: #613aa7;
  border-bottom: 4px solid #613aa7;
}
.col_metas .col_path {
  display: inline-block;
  float: right;
  white-space: nowrap;
  height: 46px;
  line-height: 66px;
  color: #999;
  font-size: 14px;
  font-family: "宋体";
} /**当前位置**/
.col_metas .col_path a {
  color: #999;
  font-family: "宋体";
}
.col_news_con {
  padding: 5px 0px 10px 0px;
  margin: 0 7px;
}
.col_news_list {
  margin-top: 20px;
}
.col_news_list .wp_article_list .list_item {} /**栏目新闻列表**/
.col_news_list .wp_article_list .list_item .Article_Index {} /**栏目新闻图标序号**/
.col_news_list .wp_entry, .col_news_list .wp_entry p {
  line-height: 1.75;
  font-size: 14px;
  color: #333;
}
.col_news_list .wp_entry p {
  margin-bottom: 10px;
}
.col_news_list .wp_entry table {
  margin-bottom: 4px;
}
.col_news_list .wp_entry img {
  max-width: 100%;
  _width: expression(this.width > 680 ? "680px": this.width);
}
/**列表页文章图片大小限制**/
/**文章页**/
.infobox {
  width: auto;
  margin: 0 auto;
}
.article {
  padding-top: 10px;
}
.article h1.arti_title {
  line-height: 48px;
  font-family: "Microsoft YaHei";
  font-size: 22px;
  text-align: center;
  color: #7f4d88;
} /**文章标题**/
.article h2.arti_title {
  line-height: 40px;
  font-family: "Microsoft YaHei";
  font-size: 17px;
  text-align: center;
  color: #1B1B1B;
} /**文章副标题**/
.article .arti_metas {
  padding: 5px;
  text-align: center;
  border-bottom: 1px solid #7f4d88;
  font-size: 12px;
  color: #787878;
}
.article .arti_metas span {
  margin: 0 5px;
  font-size: 12px;
  color: #787878;
} /**文章其他属性**/
.article .entry {
  margin: 0 auto;
  overflow: hidden;
  margin-top: 10px;
  min-height: 500px;
} /**文章内容**/
.article .entry .read, .article .entry .read p {
  line-height: 1.75;
  font-size: 14px;
  color: #333;
} /**阅读字体**/
.article .entry .read p {
  margin-bottom: 10px;
}
.article .entry .read img {
  margin: 0 auto;
  max-width: 940px;
  _width: expression(this.width > 940 ? "940px": this.width);
}
/**文章阅读部分图片大小限制**/
.article .entry .read table {
  margin: 0 auto;
  border: none;
}
/**页脚开始**/
#footer {
  background: url(../images/foot.png) no-repeat center #613aa7;
  background-size: 100%;
  height: 450px;
  margin-top: 40px;
}
#footer .inner {
  padding: 11px 0px;
  position: relative;
}
#footer .inner .mod {}
#footer .inner .foot-left {
  padding: 12px 0px;
  margin-top: 10px;
}
#footer .inner p {
  font-size: 14px;
  line-height: 26px;
  font-weight: normal;
  text-align: center;
  color: #fff;
}
#footer .inner p span {
  margin: 0 3px;
}
#footer .inner .copyright a {
  color: #eee;
}
.wrapper {
  width: 100%;
  margin: 0 auto;
}
.wrapper .inner {
  width: 1300px;
  margin: 0 auto;
} /**页面全局宽度**/
.col_news_con a:hover {
  color: #613aa7;
}
.news_clicks {
  font-size: 12px;
  display: inline-block;
}
.news_num {
  color: #613aa7;
}
.paging_content {
  overflow-x: auto
}
@media (max-width: 1600px) {
  body, .banner {
    width: 1600px;
    min-width: auto;
    max-width: auto;
  }
}
@media screen and (max-width: 1400px) {
  body, .banner {
    width: 100%;
  }
  .banner {
    height: auto;
  }
  .section-title {
    margin: 20px 0;
  }
  .video-section, .news-section, .notice-section, .teaching-student-section, .trailer-section, .research-section, .topics-section, .footer-content {
    width: 100%
  }
  .header .logo, .header .nav {
    width: 100%;
  }
  .news-container {
    display: block;
  }
  .news-carousel-left, .carousel-slider-news {
    width: 100%;
    height: 450px
  }
  .prev-news, .next-news {
    display: none;
  }
  .notice-carousel {
    width: 90%;
  }
  .teaching-student-wrap {
    min-height: 1450px;
  }
  .teaching-student-section {
    width: 100%;
    height: auto;
    display: block;
  }
  .trailer-research-wrap {
    width: 100%;
    display: block;
  }
  .trailer-content, .trailer-title {
    position: static;
    height: auto;
  }
  .topics-section {
    height: 660px;
  }
  .topics-grid {
    width: 100%;
  }
  .topic-item {
    line-height: 200px;
    font-size: 16px;
  }
  .footer-middle {
    display: block;
    text-align: center;
  }
  .contact-info {
    max-width: 100%;
  }
  .wrapper .inner {
    width: 100%;
    padding: 0
  }
  #d-container .inner {
    padding: 10px;
  }
  .col_menu {
    width: 100%;
  }
  .col_list .wp_listcolumn {
    display: flex;
    flex-wrap: wrap;
  }
  .wp_listcolumn .wp_column {
    width: 50%;
  }
  .col_news .col_news_box {
    margin-left: 0;
  }
  .article .entry .read img {
    width: 100%;
  }
  .nav .menu > li a {
    color: #fff;
    font-size: 1em;
    font-weight: normal;
    line-height: 40px;
  }
  .col_menu .col_menu_head h3.col_name {
    max-width: none;
  }
}
@media screen and (max-width: 780px) {
  .input-section {
    width: 90%;
  }
  .logo {
    padding: 20px 10px;
  }
  .logo a img {
    height: auto;
    max-width: 90%;
  }
  .nav .menu-icon {
    display: block;
    content: '';
    width: 40px;
    height: 40px;
    background: url(../img/caidan.svg);
    background-size: contain;
    cursor: pointer;
    position: absolute;
    z-index: 999;
    right: 10px;
    top: 60px;
  }
  .nav .menu {
    flex-wrap: wrap;
    display: none;
  }
  .nav .menu > li {
    width: 100%;
    flex-grow: 1;
    flex-shrink: 0;
  }
  .search {
    position: absolute;
    right: 10px;
    z-index: 999;
    top: 10px;
  }
  .teaching-section {
    height: 400px;
    padding: 10px;
  }
  .teaching-student-section {
    background: #fff;
  }
  .news-carousel-left, .carousel-slider-news {
    width: 100%;
    height: 350px
  }
  .news-list .news-time {
    width: 60px;
    height: 73px;
    border: 2px solid #613aa7;
  }
  .news-list .news-date {
    font-size: 1em;
    height: 40px;
    line-height: 40px;
  }
  .news-list .news-month {
    font-size: 0.5em;
    height: 30px;
    line-height: 30px;
  }
  .carousel-slider-news {
    height: 300px;
  }
  .teaching-student-wrap {
    min-height: 1200px;
  }
  .student-carousel {
    width: 100%;
  }
  .activity {
    max-width: 100%;
    margin-right: 0;
  }
  .carousel-caption {
    width: 100%;
    left: 0;
    height: 150px;
    overflow: hidden;
    padding: 0
  }
  .contact-info > div {
    grid-template-columns: repeat(1, 1fr)
  }
  .teaching-item {
    margin: 0;
  }
  .background-grey {
    padding: 1px 0 20px;
  }
  .teaching-item p {
    font-size: 0.8em;
    color: #aaa;
  }
  .teaching-item h3 {
    font-size: 1em;
    padding: 0;
  }
  .carousel-caption p {
    font-size: 1em;
  }
  .news_list li.news span.news_title {
    line-height: 2em;
  }
  .col_menu .col_menu_head h3.col_name {
    max-width: none;
  }
}
@media screen and (max-width: 460px) {
  .nav .menu > li {
    width: 100%;
    flex-grow: 1;
    flex-shrink: 0;
  }
  .teaching-student-section {
    background: url(../img/bg2.png) no-repeat top center;
    background-size: contain;
  }
  .news-list-right {
    height: auto;
  }
  .teaching-item {
    margin: 0;
  }
  .background-grey {
    padding: 1px 0 20px;
  }
  .teaching-item p {
    font-size: 0.8em;
    color: #aaa;
  }
  .teaching-item h3 {
    font-size: 1em;
    padding: 0;
  }
  .carousel-caption p {
    font-size: 1em;
  }
  .news-list p {
    font-size: 0.9em;
  }
  .section-title {
    gap: 0;
    font-size: 1.2em;
    margin: 10px;
    padding-left: 40px;
  }
  .more-link {
    font-size: 0.5em;
    padding-left: 10px;
  }
  .carousel-caption {
    padding: 0
  }
  .teaching-section {
    padding: 10px;
    background: #fff;
    height: 400px;
  }
  .student-carousel {
    width: 100%;
  }
  .student-pagination {
    right: 0;
    top: 30px;
  }
  .activity {
    max-width: 100%;
    margin-right: 0;
  }
  .research-wrap {
    background: #4f3c71;
    padding: 10px;
    height: auto;
  }
  .topics-grid {
    display: block;
  }
  .topic-item {
    line-height: 50px;
    border: 1px solid;
  }
  .topics-section {
    height: 300px;
  }
  .footer {
    margin-top: 20px;
  }
  .xsgz {
    margin: 0 10px;
  }
  .onbanner {
    display: none;
  }
  .article .arti_metas span {
    margin: 0;
  }
  .col_menu .col_menu_head h3.col_name {
    max-width: none;
  }
}