@charset "utf-8";
body {
  background-color: #f2f9fe;
  overflow-x: hidden;
}

@font-face {
  font-family: FZHZGBJW;
  src: url("../fontFamily/FZHZGBJW.TTF");
}

/* 顶部蓝色背景区域 */
.top-header {
  background-color: #f2f9fe;
}

.container {
  width: 1400px;
  margin: 0 auto;
}



.pic {
    /*padding-top: 75%;*/
    position: relative;
    overflow: hidden;
}

.pic .a{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
    transition: all 0.3s ease-in;
}

.header-content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}

.header-content .header-left {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
     -moz-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 400px;
}

.header-content .header-left .logo {
  width: 1000px;
  height: 167px;
  background: url("../images/logo.png") no-repeat;
  background-size: cover;
  background-position: 50%;
}

.header-content .header-left .menu-status {
  display: none;
}

.header-content .header-right {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
     -moz-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}

.header-content .header-right .search-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}

.header-content .header-right .search-box .search-input {
  padding: 10px 16px;
  font-size: 20px;
  width: 250px;
  height: 50px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  -khtml-box-sizing: border-box;
  box-sizing: border-box;
  font-family: sans-serif;
  border: 1px solid #2e5ad9;
  background: none;
}

.header-content .header-right .search-box .search-input::-webkit-input-placeholder {
  font-family: sans-serif;
  color: #2e5ad9;
}

.header-content .header-right .search-box .search-input::-moz-placeholder {
  font-family: sans-serif;
  color: #2e5ad9;
}

.header-content .header-right .search-box .search-input:-ms-input-placeholder {
  font-family: sans-serif;
  color: #2e5ad9;
}

.header-content .header-right .search-box .search-input::-ms-input-placeholder {
  font-family: sans-serif;
  color: #2e5ad9;
}

.header-content .header-right .search-box .search-input::placeholder {
  font-family: sans-serif;
  color: #2e5ad9;
}

.header-content .header-right .search-box .search-btn {
  width: 60px;
  height: 50px;
  line-height: 50px;
  background-color: #2e5ad9;
  color: white;
  border: none;
  cursor: pointer;
  font-size: 18px;
}

.main-nav {
  background: url("../images/1.png") no-repeat;
  background-size: 100%;
  top: 0;
  z-index: 1000;
}

.main-nav .nav-menu {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0;
  padding: 0;
}

.main-nav .nav-menu li {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  z-index: 2;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.main-nav .nav-menu li:after {
  position: absolute;
  right: 0;
  content: '';
  width: 3px;
  height: 20px;
  background: #FFF;
}

.main-nav .nav-menu li > a {
  display: block;
  /* padding: 15px 20px; */
  color: white;
  font-size: 20px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  white-space: nowrap;
  font-weight: 400;
  font-family: FZHZGBJW;
  line-height: 60px;
}

.main-nav .nav-menu li > a:hover {
  font-family: sans-serif;
}

.main-nav .nav-menu li.active > a {
  font-family: sans-serif;
}

.main-nav .nav-menu li:last-child:after {
  display: none;
}

.main-nav .nav-menu li:hover .second-items {
  display: block;
}

.main-nav .nav-menu .second-items {
  position: absolute;
  z-index: 2;
  background: rgba(255, 255, 255, 0.6);
  width: 100%;
  top: 60px;
  display: none;
}

.main-nav .nav-menu .second-items .item {
  padding: 10px;
  line-height: 30px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.main-nav .nav-menu .second-items .item:hover {
  color: #1164e5;
}

.main-nav .separator {
  color: white;
  font-size: 18px;
  padding: 0 5px;
  opacity: 0.6;
}

/* 主要内容区 - Swiper轮播 */
.main-content {
  width: 100%;
  position: relative;
}

.swiper-container {
  width: 100%;
  height: 600px;
  position: relative;
}

.swiper-container .swiper-slide {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.swiper-container .swiper-slide .slide-image {
  width: 100%;
  height: 100%;
  position: relative;
}

.swiper-container .swiper-slide .slide-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

/* 内容区域 */
.main-content .container {
  padding: 40px 20px 0;
  margin: 0 auto;
}

.section-header {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 25px;
}

.section-header .section-title {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
}

.section-header .section-title .title-bar {
  width: 4px;
  height: 24px;
  background: #1976d2;
  border-radius: 2px;
}

.section-header .section-title h2 {
  font-size: 24px;
  font-weight: 600;
  margin: 0;
  background-image: -webkit-gradient(linear, left bottom, left top, from(#2e5ad9), to(#251155));
  background-image: -webkit-linear-gradient(bottom, #2e5ad9 0%, #251155 100%);
  background-image: linear-gradient(0deg, #2e5ad9 0%, #251155 100%);
  -webkit-background-clip: text;
  color: transparent;
}

.section-header .more-link {
  width: 118px;
  height: 24px;
  background: url("../images/3.png") no-repeat;
  background-size: 100%;
  -webkit-transform: scale(1.1);
      -ms-transform: scale(1.1);
          transform: scale(1.1);
  position: relative;
  right: 10px;
}

.section-header .more-link:hover {
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
  -webkit-transition: -webkit-transform .2s linear;
  transition: -webkit-transform .2s linear;
  transition: transform .2s linear;
  transition: transform .2s linear, -webkit-transform .2s linear;
}

.content-row {
  margin-bottom: 40px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}

.news-section {
  width: 880px;
  margin-right: 20px;
}

.notice-section {
  width: 460px;
}

.news-list {
  background: #FFF;
  border-radius: 8px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}

.news-list .news-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  padding: 6px 30px;
  border-bottom: 1px solid #2E5AD9FF;
  border-radius: 8px;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}

.news-list .news-item .news-date {
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  width: 78px;
  height: 78px;
  background: url("../images/4.png") no-repeat;
  background-size: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #2e5ad9;
  margin-right: 20px;
}

.news-list .news-item .news-date .date-day {
  font-size: 28px;
  font-weight: bold;
  line-height: 1;
}

.news-list .news-item .news-date .date-month {
  font-size: 14px;
  margin-top: 4px;
}

.news-list .news-item .news-content {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
     -moz-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.news-list .news-item .news-content .news-title {
  color: #131b26;
  font-size: 16px;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-list .current-news {
  width: 50%;
}

.news-list .current-news img {
  width: 100%;
  height: 360px;
  border-radius: 12px;
}

.news-list ul {
  width: 50%;
}

.notice-list {
  background: #FFF;
  border-radius: 8px;
  -webkit-box-shadow: 0rem 0rem 0.08333rem 0rem rgba(70, 85, 219, 0.1);
          box-shadow: 0rem 0rem 0.08333rem 0rem rgba(70, 85, 219, 0.1);
}

.notice-list .notice-item > a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 6px 0;
  border-bottom: 1px solid #2E5AD9FF;
  border-radius: 8px;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0 20px;
}

.notice-list .notice-item:nth-of-type(n+6) {
  display: none;
}

.notice-list .notice-item .notice-date {
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  width: 78px;
  height: 78px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #2e5ad9;
  margin-right: 20px;
  position: relative;
}

.notice-list .notice-item .notice-date:after {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 0;
  content: '';
  width: 1px;
  height: 56px;
  background: #E9E9E9;
}

.notice-list .notice-item .notice-date .date-day {
  font-size: 24px;
  font-weight: bold;
  line-height: 1;
}

.notice-list .notice-item .notice-date .date-month {
  font-size: 16px;
  margin-top: 4px;
  color: #8a8b99;
  text-align: left;
}

.notice-list .notice-item .notice-title {
  color: #131b26;
  font-size: 16px;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.notice-list .notice-item:hover .notice-title {
  color: #1976d2;
}

/* 科研学术 */
.research-section {
  margin-bottom: 40px;
  overflow: hidden;
}

.research-grid .swiper-slide {
  background: white;
  border-radius: 6px;
  overflow: hidden;
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  cursor: pointer;
  border: 1px solid #f0f0f0;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}

.research-grid .swiper-slide:hover {
  -webkit-transform: translateY(-3px);
      -ms-transform: translateY(-3px);
          transform: translateY(-3px);
  -webkit-box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
          box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.research-grid .swiper-slide:hover .card-image img {
  -webkit-transform: scale(1.1);
      -ms-transform: scale(1.1);
          transform: scale(1.1);
}

.research-grid .swiper-slide .card-image {
  width: 100%;
  height: 180px;
  overflow: hidden;
  background: #f0f0f0;
}

.research-grid .swiper-slide .card-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.research-grid .swiper-slide .card-content {
  padding: 15px;
}

.research-grid .swiper-slide .card-content .card-title {
  font-size: 14px;
  color: #333;
  line-height: 1.6;
  margin-bottom: 8px;
  font-weight: 400;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 44px;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}

.research-grid .swiper-slide .card-content .card-date {
  font-size: 12px;
  color: #999;
  display: block;
  margin-top: 5px;
}

.education-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.education-list, .student-list {
  list-style: none;
  padding: 20px;
  margin: 0;
  background: #FFF;
  border-radius: 8px;
  -webkit-box-shadow: 0rem 0rem 0.08333rem 0rem rgba(70, 85, 219, 0.1);
          box-shadow: 0rem 0rem 0.08333rem 0rem rgba(70, 85, 219, 0.1);
}

.education-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
  padding: 15px 0;
  border-bottom: 1px solid #333;
}

.education-item:hover .education-date-box .date-day, .education-item:hover .education-date-box .date-month {
  color: #2e5ad9;
}

.education-item:hover .education-content .education-title {
  color: #2e5ad9;
}

.education-item .education-date-box {
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  width: 65px;
  height: 65px;
  background: rgba(46, 90, 217, 0.2);
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #666;
}

.education-item .education-date-box .date-day {
  font-size: 20px;
  font-weight: bold;
  line-height: 1;
  color: #333;
}

.education-item .education-date-box .date-month {
  font-size: 11px;
  font-weight: 500;
  margin-top: 6px;
  color: #666;
}

.education-item .education-content {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
     -moz-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.education-item .education-content .education-title {
  color: #333;
  font-size: 14px;
  line-height: 1.6;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.student-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
  padding: 15px 0;
  border-bottom: 1px solid #333;
}

.student-item .student-thumbnail {
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  width: 100px;
  height: 65px;
  overflow: hidden;
}

.student-item .student-thumbnail img {
  width: 100%;
  height: 100%;
}

.student-item .student-content {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
     -moz-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.student-item .student-content .student-title {
  color: #333;
  font-size: 14px;
  line-height: 1.5;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 8px;
}

.student-item .student-content .student-date {
  font-size: 12px;
  color: #999;
  text-align: right;
}

.student-item:hover .student-content .student-title {
  color: #2e5ad9;
}

.student-item:hover .student-content .student-date {
  color: #2e5ad9;
}

.crumb {
  border-bottom: 1px solid #3d82f2;
  line-height: 50px;
}

.crumb a {
  font-size: 18px;
  font-weight: bold;
  color: #3d82f2;
}

.list-container {
  position: relative;
  padding-bottom: 92px;
}

.list-container .list-content {
  margin-top: 8px;
}

.list-container .list-content ul {
  min-height: 300px;
}

.list-container .list-content ul li {
  padding: 20px 0;
  border-bottom: 1px dashed #E9E9E9;
}

.list-container .list-content ul li a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.list-container .list-content ul li h1 {
  color: rgba(0, 0, 0, 0.8);
  font-size: 16px;
  font-weight: inherit;
}

.list-container .list-content ul li span {
  margin-left: auto;
  color: rgba(0, 0, 0, 0.4);
  font-size: 14px;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}

.details-container .details-content {
  padding: 20px 0;
}

.details-container .details-content h1 {
  font-size: 20px;
  line-height: 1.5;
  font-weight: 600;
  margin-bottom: 12px;
  text-align: center;
}

.details-container .details-content .sub {
  display: block;
  text-align: center;
  width: 100%;
  font-size: 14px;
  margin-bottom: 24px;
}

.details-container .details-content .sub span {
  display: inline-block;
  margin: 0 8px;
  color: #333;
}

.details-container .details-content .content {
  width: 100%;
  height: auto;
  font-size: 16px;
  line-height: 32px;
}

.details-container .details-content .content p {
  margin-bottom: 12px;
  color: rgba(0, 0, 0, 0.85);
}

.details-container .details-content .content table {
  margin:0 auto;
}

.details-container .details-content .content img {
  max-width: 100%;
  margin: 0 auto 10px;
  display: block;
}

.details-container .pre-next {
  border-top: 2px solid #333333;
  padding-top: 5px;
}

.details-container .pre-next .next {
  display: block;
  font-size: 14px;
  font-weight: 400;
  color: #333333;
  line-height: 30px;
}

/* 页脚 */
.footer {
  background: url("../images/1.png") no-repeat;
  background-size: 100% 100%;
  color: white;
  padding: 50px 0 0;
  margin-top: 10px;
  position: relative;
  overflow: hidden;
}

.footer .footer-content {
  display: grid;
  grid-template-columns: 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}

.footer .footer-section h3 {
  font-size: 18px;
  font-weight: 600;
  color: white;
  padding-bottom: 5px;
  position: relative;
  margin-bottom: 12px;
}

.footer .footer-section h3:after {
  position: absolute;
  left: 0;
  bottom: -24px;
  content: '';
  width: 90px;
  height: 70px;
  background: url("../images/6.png") no-repeat;
  background-size: 100%;
}

.footer .footer-section .footer-info p {
  font-size: 14px;
  line-height: 2;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

.footer .footer-section .footer-info p img{
  height: 16px;  
  margin-left: 5px;
}

.footer .links-column {
  width: 100%;
}

.footer .external-links .footer-links {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}

.footer .external-links .footer-links li {
  width: calc(100%/3);
}

.footer .footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links li {
  margin-bottom: 10px;
}

.footer .footer-links li a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  display: inline-block;
}

.footer .footer-links li a:hover {
  color: #000;
}

.footer .footer-bottom {
  text-align: center;
  padding: 10px 0;
  border-top: 2px solid #FFF;
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
  position: relative;
  z-index: 1;
}


@media (max-width: 1025px){
  .main-nav .nav-menu li > a {
    display: block;
    padding: 15px 20px;
    color: white;
    font-size: 20px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    white-space: nowrap;
    font-weight: 400;
    font-family: FZHZGBJW;
    line-height: 40px;
  }
  
}



@media only screen and (min-width: 1px) and (max-width: 926px) {
  .container {
    width: 100%;
  }
  .footer {
    background-size: cover;
  }
  .footer .footer-content {
    grid-template-columns: none;
    gap: 0;
  }
  .header-content .header-right .search-box {
    display: none;
  }
  .swiper-container {
    overflow: hidden;
    height: auto;
  }
  .swiper-container .swiper-slide {
    width: 100% !important;
  }
  .main-content .container {
    padding: 0;
  }
  .main-nav {
    display: none;
    position: absolute;
    margin-top: 0;
    right: 0;
    top: 100px;
    width: 300px;
    height: auto;
    max-height: 530px;
    overflow-y: auto;
    background: #2e5ad9;
    z-index: 100;
  }
  .main-nav .container {
    padding: 0;
  }
  .main-nav .nav-menu {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
  .main-nav .nav-menu li {
    width: 100%;
    display: block;
    -webkit-box-flex: 1;
    -webkit-flex: auto;
       -moz-box-flex: 1;
        -ms-flex: auto;
            flex: auto;
  }
  .main-nav .nav-menu li:after {
    display: none;
  }
  .main-nav .nav-menu li .second-items {
    background: #FFF;
    position: static;
  }
  .main-nav .nav-menu li .second-items .item {
    padding: 10px 20px;
  }
  .news-section, .notice-section {
    width: 100%;
    margin-right: 0;
    margin-top: 20px;
    padding: 0 16px;
  }
  .education-row {
    grid-template-columns: none;
    gap: 0;
  }
  .education-section, .student-section {
    margin-top: 20px;
    padding: 0 16px;
  }
  .research-section {
    margin-bottom: 0;
    padding: 0 16px;
  }
  .top-header {
    -webkit-box-shadow: 7px 7px 13px -6px rgba(0, 0, 0, 0.18);
            box-shadow: 7px 7px 13px -6px rgba(0, 0, 0, 0.18);
  }
  .header-content .header-left {
    position: relative;
    width: 100%;
  }
  .header-content .header-left .logo {
    width: 80%;
    height: 100px;
  }
  .header-content .header-left .menu-status {
    display: block;
    font-size: 24px;
    color: #333;
    position: absolute;
    right: 14px;
    top: 50%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}