@charset "utf-8";
/* 
 * 
 * 
 *统一样式
 */
:root {
  --mainWidth: 90rem;
  --mainColor: #dd7237;
  --darkColor: #153468;
  --subColor: #dde8ff;
  --subBgColor: #eff4ff;
}
@font-face {
  font-family: 'PingFangSC';
  src: url('../fonts/PingFangSC.ttf');
  font-weight: normal;
  font-style: normal;
}
body,
input,
select,
textarea {
  font-family: PingFangSC, sans-serif, Arial, Helv, Helvetica;
}
html {
  font-size: 16px;
}
ul li {
  list-style: none;
}
i,
em {
  font-style: normal;
}
ul,
li {
  padding: 0;
  margin: 0;
}

a,
a:hover,
a:focus {
  text-decoration: none;
}
.container {
  padding: 0;
  max-width: none;
}
.h_span {
  background-image: -webkit-gradient(linear, left top, left bottom, from(currentColor), to(currentColor));
  background-image: linear-gradient(currentColor, currentColor);
  background-position: 0 100%;
  background-repeat: no-repeat;
  background-size: 0 0.25rem;
  -webkit-transition: background-size 0.3s;
  transition: background-size 0.3s;
  position: relative;
}

.h_span:hover {
  background-size: 100% 0.25rem;
}
body {
  overflow-x: hidden;
}
/* 
 * 
 * 
 *公共类 
 */
/*基础类名*/
.flex-box {
  display: flex;
  align-items: center;
}
.flex-box-center {
  display: flex;
  align-items: center;
  justify-content: center;
}
.flex-end {
  justify-content: flex-end;
}
.flex-center {
  justify-content: center;
}
.flex-around {
  justify-content: space-around;
}
.flex-between {
  justify-content: space-between;
}
.flex-wrap {
  flex-wrap: wrap;
}
.img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/*图片*/
.an_image_box {
  overflow: hidden;
}
.an_image_box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all ease-in-out 0.56s;
}
.an_image_box:hover img {
  transform: scale(1.2);
}
.text_just {
  text-align: justify;
  text-justify: distribute-all-lines;
  text-align-last: justify;
  -moz-text-align-last: justify;
  -webkit-text-align-last: justify;
}
/* 超过三行省略*/
.text-overfllow {
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.text-overfllow2 {
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
/* 更多模块按钮 */
/* input 输入框取消自带的样式*/
.input_text {
  width: 100%;
  height: 100%;
  border: none;
  background: none;
  outline: none;
}
@media screen and (-webkit-min-device-pixel-ratio: 0) {
  .text_just:after {
    content: '.';
    display: inline-block;
    width: 100%;
    overflow: hidden;
    height: 0;
  }
}
/* 文字溢出隐藏 */
.text_single_lines {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.noPictureList_list a .text-no-margin.text_single_lines {
  margin-bottom: 0
}

.text_two_lines,
.text_three_lines,
.text_four_lines {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
}
.text_two_lines {
  -webkit-line-clamp: 2;
}
.text_three_lines {
  -webkit-line-clamp: 3;
}
.text_four_lines {
  -webkit-line-clamp: 4;
}
/* 标题 */
.piblic_title {
  padding: 0 1.875rem;
  text-align: center;
  padding-top: 6.5rem;
  margin-bottom: 3.75rem;
}
.piblic_title h2 {
  font-size: 2.875rem;
  font-weight: bold;
  margin-bottom: 1.25rem;
}
.piblic_title .title_icon::before,
.piblic_title .title_icon::after {
  content: '';
  display: block;
  width: 5rem;
  height: 0.0625rem;
  background: #153468;
  margin: 0 auto;
}
.piblic_title .title_icon::before {
  width: 17.5rem;
}
.piblic_title .title_icon {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 17.5rem;
  height: 1rem;
  background: url(../images/piblic_title_icon.png) no-repeat center;
  /* background-size: 15rem auto; */
  /* cursor: pointer; */
  margin: 0 auto;
}
.piblic_title .title_icon i {
  display: block;
  width: 2.5rem;
  height: 0.25rem;
}
/* 查看更多 */
.public_more {
  padding: 1.875rem 0 0;
  justify-content: flex-end;
  display: flex;
}
.public_more a {
  position: relative;
  transition: all 0.36s;
}
.public_more a .btn {
  text-decoration: none;

  display: flex;
  align-items: center;
  justify-content: center;
}
.public_more a .btn em {
  transition: all 0.36s;
  color: var(--darkColor);
}
.public_more a:hover {
  transform: translate(0.375rem) !important;
}
.public_more a span {
  font-size: 2.125rem;
  margin-left: 1.25rem;
  transition: all 0.36s;
  color: var(--darkColor);
}

.public_more a:hover .btn em,
.public_more a:hover .btn span {
  color: var(--mainColor);
}

/* 
 * 
 * 
 *页面样式
 */
.en-pop-box {
  width: 100%;
  height: 100%;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 9999;
  display: none;
  background: rgba(0, 0, 0, 0.7);
}
.en-pop-box.active {
  display: block;
}
.en-pop-box .pop-box {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.en-pop-box .pop-box p {
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.7);
  width: 48.5rem;
  height: 5.25rem;
  border-radius: 0 1.125rem 0 1.125rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: #636363;
}
.pop-close {
  position: absolute;
  cursor: pointer;
  right: 0;
  top: 0;
  width: 5.25rem;
  height: 5.25rem;
  background: var(--mainColor);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.pop-close span {
  font-size: 1.3rem;
  color: #fff;
}

/* 页头 */
#loading {
  /* background: url(../images/loading.gif) center center no-repeat white; */
  opacity: 1;
  position: fixed;
  top: 0rem;
  left: 0rem;
  bottom: 0rem;
  right: 0rem;
  z-index: 888;
  justify-content: center;
  align-items: center;
  background: #fff;
  display: flex;
}

.header {
  position: relative;
  z-index: 100;
}
.header_fixd {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  z-index: 9;
  height: 6.25rem;
  border-top: 0.125rem solid var(--mainColor);
  justify-content: space-between;
  background: none;

  box-sizing: initial;
}
.header.active .header_fixd {
  background: #fff;
  box-shadow: 0 0.3125rem 0.625rem #ddd;
}

.header .navbar {
  padding: 0;
  justify-content: space-between;
}
.header .logo {
  height: 6.25rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.logo-box {
  margin-left: 2rem;
}
.header .logo img {
  /* height: 90%; */
}
/* 在首页才会显示倒数第二个首页得学院logo */
.header .logo-box .logo:nth-last-of-type(2) {
  display: none;
}
.index-header .logo-box .logo:nth-last-of-type(2) {
  display: block;
  display: flex;
}
.index-header .logo-box .logo:nth-last-of-type(1) {
  display: none;
}
.header .logo-box .logo:nth-last-of-type(1),
.header .logo-box .logo:nth-last-of-type(2) {
  margin-left: 1.25rem;
  align-items: center;
}
.header .logo-box .logo:nth-last-of-type(1) img,
.header .logo-box .logo:nth-last-of-type(2) img {
  width: 10rem;
}
.header .logo-box .logo:nth-of-type(1) img {
  height: 60%;
}
/* 导航 */
.header .navbar-collapse {
  flex-grow: 0;
}
.header .nav_list_cont {
  display: flex;
  align-items: center;
}
.header .nav_list {
  /* float: right; */
  list-style: none;
  display: flex;
  justify-content: end;
}

.header .nav_list li {
  position: relative;
  padding: 0;
  display: flex;
  align-items: center;
}

.header .nav_list > li {
  height: 5.9375rem;
}

.header .nav_list a {
  color: #333;
  font-size: 1rem;
  font-weight: bold;
  display: block;
  text-decoration: none;
  transition: all 0.3s;
}

.header a.nav_fir {
  padding: 0 0.9375rem;
  height: 4.375rem;
  font-size: 1.125rem;
  line-height: 4.375rem;
  word-break: keep-all;
  background-size: 0% 0.25rem;
  color: #fff;
}
.header.active a.nav_fir {
  color: #333;
}
.header .nav_list a:hover,
.header a.nav_fir.active {
  color: #fb9100;
}

/* 二级 */
.header .nav_drop {
  position: absolute;
  left: 50%;
  top: 100%;
  margin: 0;
  padding: 0 0 0.625rem;
  list-style: none;
  transform: translateX(-50%);
  white-space: nowrap;
  background: #fff;
  border-radius: 0 0 1.5rem 0;
  border-top: none;
  box-shadow: 0 0.5rem 0.5rem -0.1rem #9b9b9b;
  display: none;
}

.header .nav_drop > li {
  margin: 0;
  flex-direction: column;
}

.header a.nav_sec {
  padding: 0.5rem 1rem;
  /* height: 2.125rem;

  line-height: 2.125rem; */
  font-size: 1rem;
  border-radius: 0 0 1rem 0;
  /* font-weight: normal; */
}
.header a.nav_sec:hover,
.header a.nav_sec.active {
  color: #fff;
  background: #dd7237;
}
/* 三级 */
.header .nav_subdrop {
  position: absolute;
  left: 101%;
  top: 0;
  background: #fff;
  box-shadow: 0 0.5rem 0.5rem -0.1rem #9b9b9b;
  display: none;
}
.header a.nav_thi {
  padding: 0 1rem;
  height: 2.8125rem;
  line-height: 2.8125rem;
  font-size: 1rem;
  font-weight: normal;
}
.header a.nav_thi:hover,
.header a.nav_thi.active {
  color: #fb9100;
  background: #fef4e5;
}
/* 四级 */
.header .nav_thidrop {
  position: absolute;
  left: 101%;
  top: 0;
  background: #fff;
  box-shadow: 0 0.5rem 0.5rem -0.1rem #9b9b9b;
  display: none;
}
.header .nav_thidrop a {
  padding: 0 1rem;
  height: 2.8125rem;
  line-height: 2.8125rem;
  font-size: 1rem;
  font-weight: normal;
}
.header .nav_thidrop a:hover {
  background: #fef4e5;
}

/* 搜索 */

.nav_search {
  float: right;
  margin: 0 0.625rem 0 0.625rem;
  width: 4.4rem;
  height: 5.9375rem;
  display: flex;
  justify-content: center;
}
.nav_search_wap {
  display: none;
}
.nav_search span,
.nav_search_wap span {
  padding: 1.1875rem;
  /* background: url(../images/icons.png) no-repeat center 0.5625rem; */
  background-size: 10.3125rem auto;
  cursor: pointer;
}
.nav_search span:hover,
.nav_search_wap span:hover {
  background-position: 0.58em 0.5625rem;
}
.nav_search_fixed {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  background-color: rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
  display: none;
}
.nav_search_fixed .form {
  position: absolute;
  right: 0.125rem;
  top: 1.0625rem;
  background-color: #fff;
  display: flex;
  padding: 0 0.4375rem 0 0.4375rem;
  border-radius: 0.3125rem;
  box-shadow: 0 0.2rem 8px -0.1rem #b0b0b0;
}
.nav_search_fixed .form i {
  width: 2.5rem;
  height: 3.75rem;
  margin: 0 0.3125rem;
  /* background: url(../images/icons.png) no-repeat center 1.25rem; */
  background-size: 10.3125rem auto;
}
.nav_search_fixed .form input {
  border: 0;
  height: 3.75rem;
  width: 25rem;
  font-size: 1.25rem;
  outline: none;
}
.nav_search_fixed .form span {
  border: 0;
  margin: 0 0.3125rem;
  width: 2.5rem;
  height: 3.75rem;
  /* background: url(../images/icons.png) no-repeat -8.4rem 1.25rem; */
  background-size: 10.3125rem auto;
  cursor: pointer;
}

.nav_close {
  text-align: right;
}
.nav_close span {
  border: 0;
  width: 2.5rem;
  height: 2.5rem;
  /* background: url(../images/icons.png) no-repeat -6.55rem 0.75rem; */
  background-size: 8.3125rem auto;
  cursor: pointer;
  display: inline-block;
}

/* 首页-幻灯片 */
#topSlider {
  z-index: 1;
}
#topSlider .swiper-slide {
  width: 100% !important;
}
.topSliderVIdeo {
  width: 100%;
  height: 100%;
  background: none;
}
.topSliderVIdeo .vjs-big-play-button {
  display: none;
}
.topSliderVIdeo .vjs-poster {
  background-size: cover;
}
#topSlider .swiper-slide a {
  width: 100%;
  height: 100%;
  display: block;
}
#topSlider .swiper-pagination .swiper-pagination-bullet {
  margin: 0 0.3125rem;
  width: 2.5rem;
  height: 0.375rem;
  background: #fff;
  opacity: 0.5;
  border-radius: 0.625rem;
}
#topSlider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #fb9100;
  opacity: 1;
}
.bdi-text-icon {
  width: 27.5rem;
  position: absolute;
  left: 0;
  top: 50%;
  color: var(--darkColor);
  opacity: 0.04;
  transform: translateY(-50%);
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-size: 25rem;
  font-weight: bold;
  letter-spacing: 1rem;
  cursor: default;
  user-select: none;
}
/* 首页-新闻中心 */
.news_box {
  padding: 1rem 0 10rem;
  padding-bottom: 0;
  background-size: auto 100%;
  position: relative;
}
.news_box .public_more {
  position: absolute;
  right: 20.625rem;
  bottom: 0;
  width: auto;
  /* margin-top: -4.75rem; */
}
.news_cont {
  display: flex;
  justify-content: space-between;
}
.news_cont.container {
  width: 100%;
  box-sizing: border-box;
  justify-content: flex-end;
  /* padding-left: 13.125rem; */
}
.news_list {
  /* width: 61.625rem; */
  /* flex: 1; */
  width: 57.5rem;
  margin-left: 2.5rem;
  position: relative;
}
.news_cont .text_pic {
  position: relative;
  display: block;
}
.news_list .text_pic {
  /* width: 100%; */

  height: 27.375rem;
  position: relative;
}
.news_list .text_pic img {
  /* margin-right: 13.125rem; */
  width: calc(100% - 13.125rem);
}

.news_list::before {
  content: '';
  display: block;
  width: 9.8rem;
  height: 41.4375rem;
  top: 12.5rem;
  position: absolute;
  left: -8rem;
  z-index: 10;
  background: url('../images/news-card-center.png') no-repeat center;
  background-size: contain;
}
.news_list .text_pic::after {
  content: '';
  display: block;
  width: 6.625rem;
  height: 14.375rem;
  top: 0;
  position: absolute;
  left: -0.0625rem;
  z-index: 3;
  background: url('../images/news-card-right.png') no-repeat center;
  background-size: cover;
}
.news_card .text_pic::after {
  content: '';
  display: block;
  width: 3.8125rem;
  height: 14.375rem;
  top: 0;
  position: absolute;
  right: -0.0625rem;
  z-index: 5;
  background: url('../images/news-card-left.png') no-repeat center 100%;
  background-size: cover;
}
.news_cont .text_pic img {
  display: block;
}
.news_cont .text_pic span {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 1.25rem 2.5rem 0.9375rem;
  color: #fff;
  font-size: 1.5rem;
  background: rgba(21, 52, 104, 0.4);
}
.news_cont .text_pic span {
  padding-right: 13.125rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.news_cont .text_pic:hover span {
  color: #ffcc84;
  text-decoration: none;
}
.news_list .text_pic {
  margin-bottom: 4.125rem;
}
.news_list .item {
  position: relative;
  margin-right: 13.125rem;
  margin-left: 6.25rem;
  padding: 1.23rem 7.5rem 1.23rem 0;
  border-bottom: 0.0625rem dashed #979797;
  justify-content: space-between;
  display: flex;
  z-index: 11;
}
.news_list .item a {
  color: #333;
  font-size: 1.125rem;
  transition: all 0.3s;
  display: block;
  cursor: pointer;
}
.news_list .item:hover {
  border-color: var(--mainColor);
}
.news_list .item:hover span {
  background-color: var(--mainColor);
}
.news_list .item:hover a {
  color: var(--mainColor);
  padding-left: 1rem;
  text-decoration: none;
}
.news_list .item span {
  position: absolute;
  left: -11.25rem;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  z-index: 10;
  font-size: 1.125rem;
  width: 9.375rem;
  height: 2.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  background: var(--darkColor);
}
.news_card {
  width: 46.875rem;
}
.news_card .text_pic {
  width: 100%;
  height: 30.625rem;
  border-radius: 200px 40px 0 0;
}
.news_card .text_pic img {
}
.news_card .card {
  padding-top: 1.875rem;
  padding-right: 12.25rem;
  border: 0;
  font-size: 0.875rem;
  text-decoration: none;
  background: none;
}
.news_card .card dl {
  margin: 0;
  /*   */
}
.news_card .card .card-body {
  display: block;
  cursor: pointer;
  padding: 0.8rem 1.1rem 0.8rem 1.15rem;
}
.news_card .card h5 {
  font-size: 1.625rem;
  color: #333333;
  transition: all 0.3s;
}
.news_card:hover h5 {
  color: var(--mainColor);
  padding-left: 1rem;
}
.news_card .next-more-icon em {
  display: inlin-block;
  width: auto;
  float: right;
}
.news_card:hover .next-more-icon em {
  color: var(--mainColor);
  /* transform: translateX(0.625rem); */
  -webkit-animation: fadeInLeft 0.36s ease 0.3s 1 both;
}
/* @-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
} */
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInLeftFy {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}
.news_card .card p {
  /* margin: 0.9375rem 0 1.25rem 0; */
  font-size: 1.125rem;
  font-weight: normal;
  color: #333;
  margin-bottom: 4.75rem;
}
.news_card .card small {
  color: #666666;
  font-size: 1rem;
  margin: 1.25rem 0;
  display: block;
}
.news_card .card dd {
  margin: 0;
}
.news_card .card dd img {
  width: 17.0625rem;
  height: 10.25rem;
  display: block;
}

/* 通知公告 */
.notice_box {
  padding: 1rem 0 8.125rem;
  padding-top: 8.125rem;
  position: relative;
}

.float-video-box {
  /* position: absolute; */
  position: fixed;
  right: 0;
  top: 50%;
  width: 18.75rem;
  height: 11.875rem;
  z-index: 99;
  opacity: 0;

  /* overflow: hidden; */
}
.float-video-box.active {
  opacity: 1;
}
.float-video-box.all {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
}
.float-video-box.all .video-win {
  height: 100%;
  border: none;
  border-radius: 0;
}
.video_icon {
  width: 7.625rem;
  height: 7.625rem;
  border: 1px solid #fff;
  border-radius: 15rem;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1000;
  cursor: pointer;
}
/* 悬浮招生视频删除按钮 */
.v-dele-btn {
  position: absolute;
  right: 0;
  top: 0;
  width: 2.5rem;
  height: 2.5rem;
  background: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0 0.925rem 0 0;
  z-index: 99;
  cursor: pointer;
}
.all .v-dele-btn {
  display: none;
}
/* //全屏按钮 */
.video-win video::-webkit-media-controls-fullscreen-button {
  display: none;
}
/* //播放按钮 */
.video-win video::-webkit-media-controls-play-button {
  display: none;
}
/* //进度条 */
.video-win video::-webkit-media-controls-timeline {
  /* display: none; */
}
/* //观看的当前时间 */
.video-win video::-webkit-media-controls-current-time-display {
  /* display: none; */
}
/* //剩余时间 */
.video-win video::-webkit-media-controls-time-remaining-display {
  display: none;
}
/* //音量按钮 */
.video-win video::-webkit-media-controls-mute-button {
  display: none;
}
.video-win video::-webkit-media-controls-toggle-closed-captions-button {
  display: none;
}
/* //音量的控制条 */
.video-win video::-webkit-media-controls-volume-slider {
  display: none;
}
/* //所有控件 */
.video-win video::-webkit-media-controls-enclosure {
  /* display: none; */
}
.video_icon {
  display: none;
  align-items: center;
  justify-content: center;
  zoom: 0.5;
}
.float-video-box:hover .video_icon {
  display: flex;
}
.pause-bg::before {
  display: block;
  content: '';
  width: 100%;
  height: 10.625rem;
  position: absolute;
  left: 0;
  top: 0;
  z-index: inherit;
  border-radius: 0.875rem 0.875rem 0 0;
  background-color: rgba(0, 0, 0, 0.56);
}
.all.pause-bg::before {
  height: 100%;
  border-radius: 0;
}

.all .video_icon {
  zoom: 1;
}
.video_icon.play-icon i {
  position: relative;
  display: inline-block;
  width: 0;
  margin-left: 0.875rem;
  height: 0;
  border-top: 1.1875rem solid transparent;
  border-bottom: 1.1875rem solid transparent;
  border-left: 1.75rem solid white;
}
.video_icon.play-icon i::before,
.video_icon.play-icon i::after {
  display: none;
}
.video_icon i {
  display: flex;
}
.video_icon i::before,
.video_icon i::after {
  width: 0.3125rem;
  height: 2.6875rem;
  display: block;
  content: '';
  background: #fff;
}
.video_icon i::before {
  margin-right: 0.875rem;
}
.float-video-box.all .text {
  display: none;
}
.float-video-box .video-win {
  height: 10.625rem;
  border-radius: 0.875rem 0.875rem 0 0;
  border: 0.125rem solid var(--mainColor);
  overflow: hidden;
}
.float-video-box .text {
  font-size: 0.75rem;
  color: #999;
  background: #faebe3;
  border-radius: 0 0 0.875rem 0.875rem;
  text-align: center;
}
.v-close-btn {
  display: none;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1000;
  width: 5.25rem;
  height: 5.25rem;
  background: rgba(255, 255, 255, 0.7);
  cursor: pointer;
}
.v-close-btn span {
  font-size: 1.375rem;
}
.float-video-box.all .v-close-btn {
  display: flex;
  align-items: center;
  justify-content: center;
}
.notice_cont {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.notice_card {
  flex: 1;
width: calc(100% - 59.625rem);
}
.notice_card .card {
  text-decoration: none;
  display: block;
  border: 0;
  background: none;
  padding-top: 5rem;
}
.notice_card .card .info {
  padding-left: 6.25rem;
}
.notice_card .card .info h5 {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--mainColor);
}
.notice_card .card .info span {
  margin: 1.25rem 0;
  color: #666;
  font-size: 1rem;
  display: block;
}
.notice_card .card .info p {
  font-size: 1.125rem;
  color: #666;
  margin-bottom: 2.5rem;
}
.notice_card .card a .an_image_box {
  height: 34rem;
  border-radius: 0 0 0 17rem;
}
#noticeSlider {
  width: 39.375rem;
}
#noticeSlider .swiper-slide a {
  background: #fff;
  display: block;
  text-decoration: none;
}
#noticeSlider .swiper-slide a img,
#noticeSlider .swiper-slide a .notice_pic {
  width: 39.375rem;
  height: 23.75rem;
  display: block;
  width: 100%;
}
#noticeSlider .swiper-slide .info {
  padding: 1rem 1.5rem 0.8rem;
  color: #666666;
  display: block;
  text-decoration: none;
}
#noticeSlider .swiper-slide .info h5 {
  font-size: 1.5rem;
  font-weight: bold;
  color: #333333;
  transition: all 0.3s;
}
#noticeSlider .swiper-slide .info:hover h5 {
  color: #fb9100;
}
#noticeSlider .swiper-slide .info p {
  margin: 0.5rem 0 0.5rem 0;
  height: 7rem;
  line-height: 1.75rem;
  font-size: 1.125rem;
  font-weight: normal;
}
#noticeSlider .swiper-slide .info small {
  font-size: 1.125rem;
}
#noticeSlider .swiper-button-prev,
#noticeSlider .swiper-button-next {
  width: 1.5rem;
  height: 1.5rem;
  right: 1.25rem;
  left: auto;
  bottom: auto;
  top: 21.75rem;
  color: #fff;
  background: #fb9100;
  display: flex;
  justify-content: center;
  align-items: center;
}
#noticeSlider .swiper-button-prev:after,
#noticeSlider .swiper-button-next:after {
  font-size: 0.75rem;
  font-weight: bold;
}
#noticeSlider .swiper-button-prev {
  right: 3rem;
}
.notice_cont.container {
  width: 100%;
  box-sizing: border-box;
  padding-right: 13.125rem;
  position: relative;
}
.notice_cont.container .notice_left,
.notice_cont.container .notice_card {
  position: relative;
  z-index: 2;
}
.notice_cont.container .pos-bg-bottom {
  width: 59.375rem;
  height: 28.75rem;
  background-image: url('../images/bg-left-logo.png');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 0;
}
.notice_list {
  width: 59.625rem;
  padding-top: 1.25rem;
  padding-bottom: 3.75rem;
  background: var(--mainColor);
  border-radius: 0 17rem 0 0;
}
.notice_list .item {
  display: flex;
  align-items: flex-end;

  position: relative;
  margin-left: 13.125rem;
  margin-right: 7.5rem;
  padding-top: 1.5rem;
  background: none;
  color: #fff;

  transition: all 0.3s;
}
.notice_list .item:hover {
  border-color: var(--darkColor);
}

.notice_list .item span {
  padding: 0.375rem 1.25rem;
  color: var(--mainColor);
  font-size: 1.5rem;
  font-weight: bold;
  background: #fff;
  border-radius: 0 2.0625rem 0 0;
  transition: all 0.3s;
}
.notice_list .item span i {
  font-size: 0.875rem;
  color: var(--mainColor);
  font-style: normal;
  display: block;
  font-weight: normal;
  transition: all 0.3s;
}
.notice_list .item span em {
  display: none;
}
.notice_list .item h6 {
  margin: 0;
  color: #fff;
  width: 28.75rem;
  font-weight: normal;
  padding-bottom: 1.25rem;
  transition: all 0.3s;
  border-bottom: 0.0625rem dashed #fff;
}
.notice_list .item h6 > div {
  line-height: 1.75rem;
  font-size: 1rem;
  color: #fff;
  transition: all 0.3s;
}
.notice_list .item:hover span {
  background: var(--darkColor);
  color: #fff;
}
.notice_list .item:hover span i {
  color: #fff;
}
.notice_list .item:hover h6 {
  border-color: var(--darkColor);
  padding-left: 1rem;
}
.notice_list .item:hover h6 > div {
  color: var(--darkColor);
}

.notice_left .public_more {
  width: 100%;
  box-sizing: border-box;
  padding-right: 8.75rem;
  margin-top: 5rem;
  /* left: 41.25rem; */
}

/* 招聘/就业 */
.job_box {
  padding: 1rem 0 7.5rem;
  position: relative;
  width: 100%;
  overflow: hidden;
}
.job_box .bdi-text-icon,
.right-bdi {
  width: 28rem;
  font-size: 32rem;
  top: 60%;
  right: -2rem;
  left: inherit;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  writing-mode: initial;
  text-orientation: initial;
  letter-spacing: 0;
  z-index: 2;
}
.job_box .bdi-text-icon span,
.right-bdi span {
  height: 26.25rem;
  writing-mode: vertical-rl;
  text-orientation: mixed;
}

.job_block {
  width: 100%;
  /* display: flex; */
  position: relative;
  /* justify-content: space-between; */
}
.elite-box::after {
  content: '';
  display: block;
  width: 100%;
  height: 24.375rem;
  margin-top: 12.5rem;
  background: #f7f7f7;
}
.job_block .container {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  z-index: 2;
}
.job_tab {
  padding: 0 0 1rem 0;
}
.job_tab span {
  position: relative;
  float: left;
  padding: 0.5rem 0;
  width: 50%;
  text-align: center;
  color: #b1b5ba;
  font-size: 1.25rem;
  font-weight: normal;
  transition: all 0.3s;
}
.job_tab span.active {
  color: #fff;
  font-size: 1.45rem;
}
.job_tab em {
  position: relative;
  z-index: 2;
  font-style: normal;
  height: 2rem;
  display: block;
}
.job_tab i {
  position: absolute;
  z-index: 1;
  left: 50%;
  bottom: 0.6rem;
  transform: translateX(-50%);
  background: transparent;
  height: 0.5rem;
  width: 7.5rem;
  transition: all 0.3s;
}
.job_tab span.active i {
  background: #fb9100;
}
.job_block {
  width: 100%;
}
#jobSlider .carousel-item-box {
  position: relative;
}
#jobSlider .carousel-item {
  display: block;
  width: 25%;
  float: initial;
  margin: 0;
  padding: 1rem 1.1rem 0rem;
padding-left: 2.5rem;
  padding-right: 2.5rem;
  height: 23.75rem;
  background-color: #fff;
  /* background-image: url('../images/favicon.png'); */
  background-repeat: no-repeat;
  background-size: auto;
  background-position: right bottom;
  border: 1px solid #999;
/* border-left: 0; */
  transition: all 0.3s;
}
#jobSlider .carousel-item::after {
  display: block;
  content: '';
  position: absolute;
  right: 0;
  bottom: 1rem;
  width: 12.4375rem;
  height: 10.5rem;
  background-image: url('../images/jihe.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
#jobSlider::after {
  /* width: 100%; */
  margin: 0 1.875rem;
  height: 1.875rem;
  background: var(--darkColor);
display: block;
  clear: both;
  content: '';
}
/* #jobSlider .carousel-item.item1 {
  border-left: 1px solid #999;
} */
#jobSlider .carousel-item a {
  text-decoration: none;
  display: block;
}
#jobSlider .carousel-item h4,
#jobSlider .carousel-item p {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
#jobSlider .carousel-item h4 {
  margin-bottom: 0;
  padding-left: 0.35rem;
  color: #333333;
  font-size: 1.5rem;
  transition: all 0.3s;
  font-weight: bold;
  padding-bottom: 0.875rem;
  border-bottom: 0.25rem solid var(--mainColor);
}
#jobSlider .carousel-item:hover {
  background-color: var(--mainColor);
}
#jobSlider .carousel-item:hover p {
  color: #fff;
  border-color: #fff;
}
#jobSlider .carousel-item:hover p:hover {
  /* color: var(--darkColor); */
}
#jobSlider .carousel-item:hover h4 {
  color: #fff;
  border-color: var(--darkColor);
  padding-left: 1rem;
}
#jobSlider .carousel-item h4 i {
  width: 5rem;
  height: 5rem;
  margin: 0;
  margin-bottom: 1.5rem;
  border-radius: 3.75rem;
  display: block;
  background-image: url('../images/ying1.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
#jobSlider .carousel-item-box .carousel-item.item2 h4 i {
  background-image: url('../images/ying2.png');
}
#jobSlider .carousel-item-box .carousel-item.item3 h4 i {
  background-image: url('../images/ying3.png');
}
#jobSlider .carousel-item-box .carousel-item.item4 h4 i {
  background-image: url('../images/ying4.png');
}
#jobSlider .carousel-item-box .carousel-item.item5 h4 i {
  background-image: url('../images/ying5.png');
}
#jobSlider .swiper-pagination-bullet {
  background: #fff;
}
#jobSlider > .swiper-pagination-bullets {
  bottom: 6px;
}
#jobSlider .swiper-button-next,
#jobSlider .swiper-button-prev {
  color: #153468;
}
#jobSlider .carousel-item h6 {
  margin: 0;
  padding: 0 0 0 0.625rem;
  color: #666666;
  font-size: 1rem;
  line-height: 1.375rem;
  /* border: 1px solid #dfdfdf; */
  border-bottom: 0;
}
#jobSlider .carousel-item p {
  padding-top: 1.125rem;
  padding-bottom: 0.5rem;
  margin: 0;
  color: #666;
  font-size: 1rem;
  background: none;
  border-bottom: 1px solid #e6e6e6;
  border-top: 0;
  transition: all 0.3s;
}
#jobSlider .carousel-item .icon_dir {
  /* display: none; */
  text-align: right;
  height: 1.375rem;
  position: absolute;
  right: 2.5rem;
  bottom: 1rem;
}
#jobSlider .carousel-item .icon_dir i {
  font-size: 1.5rem;
  color: #fff;
  font-weight: normal;
  cursor: pointer;
  transition: all 0.3s;
  display: inline-block;
}
#jobSlider .carousel-item:hover .icon_dir i {
  margin-right: -0.625rem;
}

.job_list {
  width: 100%;
  box-sizing: border-box;
/* padding-right: 13.125rem; */
}
.job_list::after {
  display: block;
  content: '';
  clear: both;
}
.job_list .gray-bg {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 1;
  width: 73.625rem;
  height: 23.75rem;
  /* margin-top: 10.25rem; */
  background: #f7f7f7;
}
.internship-box .job_list {
  padding-bottom: 44.25rem;
}
.job_list .row-list {
  width: 100%;
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  position: absolute;
  left: 0;
  bottom: -8rem;
  z-index: 5;
}

.job_list .row-left {
  width: 61.625rem;
  margin-right: 1.75rem;
  background: var(--darkColor);
  padding: 3.125rem 0;
  padding-left: 13.125rem;
  padding-right: 3.125rem;
}

.job_list .row-right {
  /* flex: 1; */
  width: calc(100% - 63.625rem);
  padding-right: 13.125rem;
}

.job_list .list li {
  transition: all 0.3s;
  position: relative;
  padding-left: 2.75rem;
  margin-bottom: 0.875rem;
}
.job_list .list li a {
  transition: all 0.3s;
  position: relative;
  text-decoration: none;
  border-bottom: 1px solid #f7f7f7;
  padding: 1.25rem 5rem 1.25rem 1.875rem;
  display: block;
}
.job_list .list li h4 {
  width: 70%;
  margin-bottom: 0;
  color: #fff;
  font-size: 1.125rem;
  transition: all 0.3s;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.job_list .list li a::after {
  transition: all 0.3s;
  display: block;
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0.375rem;
  background: transparent;
}
.job_list .row-right .list {
  margin-top: 14.75rem;
}
.job_list .row-right li a {
  border-color: #999;
}
.job_list .row-right li a h4 {
  color: #333;
}
.job_list .row-right li a span {
  color: #666666;
}
.job_list .list li:hover {
  padding-left: 0;
}
.job_list .list li:hover a {
  background: #fff;
  border-color: var(--mainColor);
}
.job_list .row-right .list li:hover a {
  background: var(--darkColor);
}
.job_list .row-right .list li:hover a h4,
.job_list .row-right .list li:hover a span {
  color: #fff;
}

.job_list .list li:hover a::after {
  background: var(--mainColor);
}
.job_list .list li:hover a h4,
.job_list .list li:hover a span {
  color: var(--mainColor);
}
.job_list .list li:hover a span {
  padding-right: 1.25rem;
}

.job_list .list span {
  transition: all 0.3s;
  position: absolute;
  right: 1.3rem;
  top: 50%;
  transform: translateY(-50%);
  color: #fffbf6;
  font-size: 1rem;
  text-align: right;
}
.job_list .list span i {
  font-size: 1.125rem;
  color: #999999;
  font-style: normal;
  display: block;
  font-weight: normal;
}
.job_cont .public_more {
  text-align: right;
  padding: 1.25rem 0 2.5rem 0;
  position: initial;
  transform: initial;
}
.job_list .row-list .public_more {
  width: 100%;
}
.job_list .row-list .public_more a {
  margin-right: 7.5rem;
  margin-top: 6rem;
}
/* 党建工作 */
.index-dang {
  width: 100%;
  height: 67.5rem;
  background: url('../images/dang-bg.png') no-repeat center;
  background-size: cover;
}
.index-dang .piblic_title {
  padding-top: 5.5rem;
  margin-bottom: 3rem;
}
.index-dang .container {
  width: 100%;
  padding: 0 13.125rem;
  position: relative;
}
.index-dang .dang-list {
  display: flex;
  height: 49.375rem;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: space-between;
}
.index-dang .dang-item {
}
.index-dang .dang-item a {
  width: 46.25rem;
  height: 23.75rem;
  display: block;
  border-radius: 0 12rem 0 12rem;
  position: relative;
}
.index-dang .dang-item a span {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 1.25rem 2.5rem 0.9375rem;

  color: #fff;
  font-size: 1.5rem;
  background: linear-gradient(transparent 0%, rgba(0, 0, 0, 0.8) 100%);
}
.index-dang .dang-list .dang-item:nth-child(1) a span {
  padding-left: 8.75rem;
}
.index-dang .dang-list .dang-item:nth-child(2n + 1) {
  margin-right: 1.25rem;
}
.index-dang .dang-list .dang-item:nth-child(2) a {
  border-radius: 12rem 0 12rem 0;
}
.index-dang .dang-list .dang-item:nth-child(2) a span {
  padding-right: 20%;
}
.index-dang .dang-list .dang-item:nth-child(3) a {
  border-radius: 12rem 0 12rem 0;
}
.index-dang .dang-item a:has(> .info_box) {
  display: none;
  position: relative;
}
.index-dang .dang-item .info_box::before {
  position: absolute;
  content: '';
  display: block;
  width: 0.375rem;
  height: 5.875rem;
  background: var(--darkColor);
  top: -3.75rem;
  left: 1.875rem;
}

.index-dang .dang-list .dang-item:nth-child(3) a:has(> .info_box) {
  display: block;
}
.index-dang .dang-list .dang-item:nth-child(3) a > span {
  display: none;
}
.index-dang .dang-item .info_box {
  padding-left: 4.25rem;
  padding-right: 6.875rem;
  transition: all 0.36s;
}
.index-dang .dang-item .info_box h4 {
  /* color: var(--darkColor); */
  color: #333;
  font-size: 1.75rem;
  font-weight: bold;
  line-height: 1.6;
  margin-top: 2.5rem;
  margin-bottom: 1.25rem;
  transition: all 0.3s;
}
.index-dang .dang-item .info_box .sub {
  display: flex;
  align-items: center;
}
.index-dang .dang-item .info_box .sub span {
  background: none;
  position: inherit;
  color: #666;
  font-size: 1rem;
  display: flex;
  align-items: center;
  width: auto;
  padding: 0;
  margin-right: 1rem;
}
.index-dang .dang-item:hover .info_box h4 {
  color: var(--darkColor);
}
.index-dang .dang-item:hover .info_box {
  transform: translate(0.625rem, -0.875rem);
}
.index-dang .dang-item .info_box .sub span::after {
  display: block;
  content: '';
  width: 1px;
  height: 1rem;
  background: #666;
  margin-left: 1rem;
}
.index-dang .dang-item .info_box .sub span:nth-last-child(1)::after {
  display: none;
}
.index-dang .dang-item .info_box p {
  margin-top: 1.875rem;
  font-size: 1.125rem;
  color: #666;
  line-height: 1.6;
}
.index-dang .public_more {
  position: absolute;
  right: 6.875rem;
  bottom: 0;
}

/* 荣誉墙 */
.honor {
  padding: 1rem 0 5rem;
  background: url(../images/bg_honor.png) no-repeat center 0;
  background-size: cover;
}
.honor .piblic_title {
  padding-top: 5.5rem;
  margin-bottom: 3rem;
  margin-bottom: 0;
}

.honor_list {
  padding: 2.75rem 0;
  overflow: hidden;
}
.honor_list ul {
  white-space: nowrap;
}
.honor_list li {
  display: inline-block;
  vertical-align: middle;
}
.honor_list a {
  margin: 0 1.25rem;
  overflow: hidden;
  border-radius: 0.75rem;
  position: relative;
  /* min-height: 22.125rem; */
  background-color: #fff;
  border: 0.125rem solid transparent;
  box-shadow: 0 0.1875rem 0.1875rem 0 #979797;
  display: block;
  display: flex;
  align-items: center;
  transition: all 0.3s;
}
.honor_width {
  padding: 4rem 0;
}
.honor_long {
  padding: 7rem 0;
  transform: translateY(-4rem) !important;
}
.honor_long ul {
}
.honor_width a {
  /* height: 9.375rem; */
}
.honor_long a {
  /* height: 21.25rem; */
}
.honor_list a img {
  width: 13.75rem;
  display: block;
}
.honor_width a img {
  /* width: 13.75rem; */
}
.honor_list a:hover {
  border: 0.125rem solid #dd7237;
  z-index: 9;
  box-shadow: 0px 0.125rem 0.25rem 0px rgba(0, 0, 0, 0.25), 0px 0.25rem 0.5rem 0px rgba(148, 85, 0, 0.8);
  transform: scale(1.7);
}

/* 联系我们 */
.contact {
  position: relative;
  padding: 1.25rem 0 0;
  margin-top: -6rem;
}
.contact .piblic_title {
  padding-top: 5rem;
}
.contact .container {
  width: 100%;
  height: 59.0625rem;
  background: url('../images/lianxi-bg.png') no-repeat center 100%;
  background-size: cover;
  box-sizing: border-box;
  padding: 0 13.125rem;
}
.contact_map {
  height: 27.625rem;
}
#map {
  width: 50%;
  height: 100%;
}
#map .amap-info-close {
  right: 0.375rem !important;
  top: 0.375rem;
}
#map .amap-info-content {
  padding: 1rem 1.375rem;
}
.map-right {
  width: 50%;
  height: 100%;
  background: #fff;
  padding: 5rem 3.75rem;
  padding-left: 6.25rem;
}
.map-right .adress-info {
  position: relative;
}
.map-right .adress-info::before {
  position: absolute;
  left: -2.5rem;
  top: -0.25rem;
  display: block;
  content: '';
  background: url('../images/dir-marker.png') no-repeat center 100%;
  background-size: cover;
  width: 1.375rem;
  height: 2rem;
}
.map-right .adress-info h4 {
  font-size: 1.5rem;
  color: #333;
  margin-bottom: 0.625rem;
}
.map-right .adress-info p {
  margin-top: 1.25rem;
  font-size: 1.25rem;
  color: #666;
  margin-bottom: 0;
}
.relmap-info {
  width: 100%;
  overflow: hidden;
}
.relmap-info h1,
.relmap-info h6 {
  font-size: 1rem;
  color: #333;
  line-height: 1.25rem;
  font-weight: 700;
}
.relmap-info p {
  font-size: 0.8125rem;
  color: #777;
  margin-top: 0.5rem;
  line-height: 1.125rem;
}
.relmap-info a {
  font-size: 0.875rem;
  display: block;
  margin: 0.625rem auto 0;
  color: #d4a95b;
  width: 11.25rem;
  height: 2rem;
  line-height: 2rem;
  border: 0.0625rem solid #d4a95b;
  text-align: center;
  transition: all 0.3s ease;
}
.relmap-info a:hover {
  background: #d4a95b;
  color: #fff;
}
#map .amap-copyright,
#map .amap-logo {
  display: none !important;
}
.contact_info {
  display: flex;
  justify-content: space-between;
}
.contact_info_item {
  margin: 0.5rem 0;
  font-size: 1.1rem;
  align-items: center;
  font-weight: bold;
}
.contact_info_item i {
  margin: 0 1.25rem 0 0;
  width: 2.5rem;
  height: 2.5rem;
  /* background: url(../images/icons.png) no-repeat; */
  background-size: 15.625rem auto;
  transition: all 0.3s;
  display: inline-block;
}
.contact_info_item i.icon_phone {
  background-position: 0 -7.875rem;
}
.contact_info_item i.icon_email {
  background-position: right -7.875rem;
}
.contact_info_item p {
  margin: 0;
}
.contact_info_item a {
  color: #000;
}
.amap-icon img {
  width: 20px;
}

/* 友情链接 */
.friendship {
  padding-top: 6.25rem;
  padding-bottom: 8.125rem;
}
.friendship .container {
  width: 100%;
  box-sizing: border-box;
  padding-left: 13.125rem;
  padding-right: 13.125rem;
}
.friendship .title {
  color: #333333;
  text-align: center;
}
.friendship .title i {
  width: 9.75rem;
  height: 0.0625rem;
  display: inline-block;
  background: #e5e5e5;
  vertical-align: middle;
}
.friendship .title span {
  margin: 0 1.25rem;
  font-size: 1rem;
  display: inline-block;
}
.friendship .list {
  text-align: left;
  display: flex;
  justify-content: center;
  align-items: center;
  justify-content: space-between;
}
.friendship .list a {
  flex: 1;
  padding: 0 0.6rem;
  display: flex;
  align-items: flex-end;
  position: relative;
  /* transition: all 0.3s; */
  color: #666;
}
.friendship .list a:hover {
  color: #ffaa35;
  text-decoration: auto;
}
.friendship .list a:hover:after {
  /* position: absolute;
  content: '';
  width: 96%;
  height: 2px;
  background: #ffaa35;
  bottom: -5px; */
}
.friendship .list a i {
  width: 6.5625rem;
  height: 5rem;
  background: #f7f7f7;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.5);
  border-radius: 0px 2.5rem 0px 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.36s;
}

.friendship .list a i em::before {
  content: '';
  width: 2.8125rem;
  height: 2.8125rem;
  display: block;
  background-image: url('../images/teacher.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: all 0.3s;
}
.friendship .list a:nth-child(2) i em::before {
  background-image: url('../images/studentemail.png');
}
.friendship .list a:nth-child(3) i em::before {
  background-image: url('../images/plan.png');
}
.friendship .list a:nth-child(4) i em::before {
  background-image: url('../images/educational.png');
}
.friendship .list a:nth-child(5) i em::before {
  background-image: url('../images/studentswork.png');
}
.friendship .list a:nth-child(6) i em::before {
  background-image: url('../images/develop.png');
}

.friendship .list a span {
  flex: 1;
  height: 5rem;
  margin-left: 2px;
  font-size: 1.125rem;
  border-bottom: 1px dashed #999;
  transition: all 0.3s;
  padding-left: 1rem;
  margin-left: 0.375rem;
  display: flex;
  align-items: center;
}
.friendship .list a:nth-last-child(1) {
  width: 5.125rem;
  flex: auto;
}
.friendship .list a:nth-child(3) {
  width: 2.125rem;
  flex: auto;
}
.friendship .list a:hover span {
  border-color: var(--mainColor);
}
.friendship .list a:hover i {
  background-color: var(--mainColor);
}
.friendship .list a:hover i em::before {
  background-image: url('../images/teacher2.png');
}
.friendship .list a:hover:nth-child(2) i em::before {
  background-image: url('../images/studentemail2.png');
}
.friendship .list a:hover:nth-child(3) i em::before {
  background-image: url('../images/plan2.png');
}
.friendship .list a:hover:nth-child(4) i em::before {
  background-image: url('../images/educational2.png');
}
.friendship .list a:hover:nth-child(5) i em::before {
  background-image: url('../images/studentswork2.png');
}
.friendship .list a:hover:nth-child(6) i em::before {
  background-image: url('../images/develop2.png');
}

/* 页脚 */
.footer {
  background-color: var(--darkColor);
  border-bottom: 0.625rem solid var(--mainColor);
  padding: 1.25rem 0;
  padding-top: 1.875rem;
}
.footer .container {
  width: 80rem;
}
.footer_section {
  position: relative;
}
.footer .qr_box {
  display: flex;
}
.ft-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 3.5rem;
}
.ft-top .ft-left {
  display: flex;
  align-items: center;
}
.ft-left .footer-logo {
  margin-right: 1.25rem;
}

.footer-logo a {
  display: block;
  width: 17rem;
  text-align: left;
}
.footer-logo a img {
  max-width: 100%;
}
.adress-info {
  display: flex;
  flex-wrap: wrap;
}
.adress-info .item {
  color: #fff;
  font-size: 1rem;
}
.adress-info .item:nth-child(2n + 1) {
  margin-right: 2.25rem;
}
.adress-info .item span {
  color: #4576c7;
  padding-right: 1.25rem;
}

.footer .qr_box span {
  width: 6.25rem;
  height: 6.25rem;
  color: #ffff;
  font-size: 0.875rem;
  text-align: center;
}

.footer .qr_box span:nth-child(2) {
  margin-left: 2.5rem;
}

.footer .qr_box span img {
  width: 6.25rem;
  height: 6.25rem;
  margin-bottom: 0.625rem;
}

.footer .copyright {
  border-top: 1px solid #4576c7;
  padding: 1.25rem 0;
  font-size: 1rem;
  text-align: center;
  color: #4576c7;
}

/* 内页 -page_list_pic */
.page_list_pic {
  background-color: #fff;
}
.page_list_pic .banner {
  height: 34.375rem;
}
.page_list_pic .banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.seat_box {
  width: 100%;
  background: #fff;
  padding: 2.5rem 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;

  justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.seat_box .bread_text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.seat_box .bread_text span,
.seat_box .bread_text a {
  font-size: 1.5rem;
  color: #333;
}
.seat_box .bread_text ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.seat_box .bread_text ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.seat_box .bread_text ul li a {
  font-size: 0.875rem;
  color: #333;
}
.seat_box .bread_text ul li i {
  margin: 0 0.75rem;
  color: #333;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-line-pack: start;
  align-content: flex-start;
  font-style: normal;
}
.seat_box .bread_text ul li i::before {
  content: '>>';
}
.seat_box .bread_text ul li a {
  transition: all ease-in-out 0.5s;
}
.seat_box .bread_text ul li:hover a,
.seat_box .bread_text ul li:last-of-type a {
  color: var(--mainColor);
  font-weight: bold;
}

.seat_box .bread_text ul li:last-of-type > i {
  display: none;
}
.page_cont {
  padding: 3.125rem 0 3.75rem;
  padding-top: 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
}
.page_side {
  width: 17.375rem;
  background-color: #fff;
}
.page_side .side_head {
  margin: 0 1.25rem;
  padding: 1rem 0;
  border-bottom: none;
}
.side_head .piblic_title {
  margin-top: 0;
  padding-top: 0;
  margin-bottom: 0;
}
.side_head .piblic_title .title_icon {
  width: 100%;
  margin-bottom: 1.25rem;
}
.piblic_title .title_icon::before {
  width: 100%;
}
.page_side .side_head h3 {
  font-size: 1.5rem;
  margin: 0;
  margin-bottom: 1rem;
}
.page_side .side_nav > ul > li {
  /* border-top: 1px solid #f1f0f0; */
}
.page_side .side_nav > ul > li:first-child {
  border-top: 0;
}
.page_side .side_cont {
  border: 1px solid #ddd;
  border-radius: 0 28px 0 0;
  overflow: hidden;
}
.page_side .nav_fir {
  padding: 0 1.3125rem;
  height: 3.4375rem;
  line-height: 3.4375rem;
  color: #000;
  font-size: 1rem;
  display: block;
  text-decoration: none;
  position: relative;
  border-left: 0.25rem solid transparent;
}
.page_side .nav_fir::after {
  display: block;
  content: '';
  width: calc(100% - 2.625rem);
  position: absolute;
  bottom: -0.125rem;
  height: 0.0625rem;
  border-bottom: 0.0625rem dashed #ddd;
}
.page_side .nav_fir:hover {
  color: #fa9000;
}
.page_side .nav_fir.active,
.page_side .nav_fir.active:hover {
  color: #fff;
}
.page_side .nav_fir.active {
  background-color: var(--mainColor);
  border-color: var(--darkColor);
}
.page_side .nav_fir i {
  border: 0;
  transform: rotate(-90deg);
  position: absolute;
  right: 3rem;
  top: 0.75rem;
  display: block;
  width: 1.875rem;
  height: 1.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.page_side .nav_fir i::before {
  content: '\e85d';
  font-family: 'iconfont' !important;
  font-size: 1rem;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.page_side .nav_fir.open i {
  transform: rotate(180deg);
}
.page_side .nav_drop {
  margin-left: 1.5rem;
  display: none;
}
.page_side .nav_drop a {
  padding: 0 1.5rem 0 1.5rem;
  height: 2.5rem;
  line-height: 2.5rem;
  color: #000;
  font-size: 0.875rem;
  display: block;
  text-decoration: none;
}
.page_side .nav_drop a:hover,
.page_side .nav_drop a.active,
.page_side .nav_drop .nav_drop a.active {
  color: var(--mainColor);
}
.page_side .nav_drop .nav_drop a {
  height: 2.1rem;
  line-height: 2.1rem;
  color: #6d7278;
  font-size: 0.875rem;
}
.page_main {
  padding-bottom: 5.375rem;
  padding-left: 4.125rem;
  padding-top: 2rem;
  /* width: 62.625rem; */
  flex: 1;
  background-color: none;
  z-index: 5;
  position: relative;
}
.main_head {
  padding: 3.125rem 0;
  text-align: center;
  font-size: 1.5rem;
  font-weight: bold;
}
.list_pic_box {
  display: flex;
  flex-wrap: wrap;
}
.list_pic .item {
  position: relative;
  margin-right: 2.75rem;
  margin-bottom: 1.875rem;
  color: #000;
  text-decoration: none;
  overflow: hidden;
}
.leader-container .right-bdi {
  /* zoom: 0.8; */
  font-size: 23.25rem;
}
.leader-container .right-bdi span {
  height: 17rem;
}
.leader-container .right-bdi span:nth-last-child(1) {
  /* display: none; */
}
.leader_teacher .list_pic .item {
  width: calc((100% - 1.875rem) / 2);
  margin-right: 1.875rem;
  margin-bottom: 2.5rem;
  height: 20rem;
  background: #faebe3;
  border-radius: 0 2.5rem 0 0;
  box-sizing: border-box;
  padding: 1.25rem;
}
.leader_teacher .list_pic .item a {
  display: flex;
  align-items: flex-start;
  height: 100%;
  width: 100%;
  border: 1px solid var(--mainColor);
  border-radius: 0 2.125rem 0 0;
}
.leader_teacher .list_pic .item a img {
  width: 12.5rem;
  height: 100%;
  object-fit: cover;
}
.leader_teacher .list_pic .name {
  margin-bottom: 1.25rem;
}
.leader_teacher .list_pic .name h5 {
  color: var(--mainColor);
  font-size: 1.25rem;
}
.leader_teacher .list_pic .name h6 {
  font-size: 0.875rem;
}

.list_teacher,
.leader_teacher {
  margin-top: 1.6rem;
}
.leader_teacher .item a li {
  line-height: 1.2;
  margin-bottom: 0.875rem;
}
.leader_teacher .item a li span {
  font-size: 0.75rem;
  color: #444;
}
.leader_teacher .item .row-right {
  padding: 1.75rem 1.25rem;
}
.leader_teacher .item .info p {
  color: #444;
  font-size: 0.875rem;
  margin-bottom: 3.125rem;
}

.list_teacher .list_pic .item {
  width: calc((100% - 1.625rem * 5) / 6);
  height: 13.75rem;
  overflow: hidden;
  border-radius: 0 1.875rem 0 0;
  margin-right: 1.625rem;
  margin-bottom: 2.5rem;
}
.list_teacher .list_pic .item:nth-child(6n) {
  margin-right: 0;
}
.list_teacher .list_pic .item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.list_teacher .list_pic .item a {
  display: block;
  height: 100%;
  width: 100%;
  position: relative;
}
.list_teacher .list_pic .item a .row-right {
  width: 100%;
  padding: 0.375rem 0.375rem;
  box-sizing: border-box;
  position: absolute;
  bottom: 0;
  left: 0;
  background: rgba(221, 114, 55, 0.5);
  transition: all 0.36s;
  border-radius: 0 1rem 0 0;
}
.list_teacher .list_pic .item a .row-right .name {
  justify-content: center;
}
.list_teacher .list_pic .item a .row-right h5 {
  color: #fff;
  font-size: 1rem;
  text-align: center;
  margin-bottom: 0;
  font-weight: normal;
  transition: all 0.36s;
}
.list_teacher .list_pic .item a:hover .row-right {
  background: var(--mainColor);
}
.list_teacher .list_pic .item a:hover .row-right .name h5 {
  color: #fff;
}
.leader_teacher .list_pic .item:nth-child(2n) {
  margin-right: 0;
}
.ordinary_teacher_list .list_pic .item {
  margin: 0 0 1.8rem 1.8rem;
}
.ordinary_teacher_list .list_pic .list_pic_box:nth-child(6n + 1) .item {
  margin-left: 0;
}
.ordinary_teacher_list .list_pic .item img {
  width: 8.48rem;
  height: 13.75rem;
  display: block;
  object-fit: cover;
}
.list_pic .name {
  /* position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.8);
  text-align: center;
  padding: 0.75rem 0 0.3125rem; */
  transition: all 0.36s;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.list_pic .name h5 {
  font-size: 1rem;
  color: #333;
  margin-right: 1.25rem;
}
.list_pic .name h6 {
  font-size: 0.75rem;
  color: #444;
  font-weight: normal;
}
.list_pic .item:hover .name {
  color: var(--mainColor);
}
.list_pic.unhover .item:hover .name {
  transform: translateY(0);
}
.list_pic .name h5 {
  font-size: 1rem;
  font-weight: bold;
}
.list_pic .name h6 {
  font-size: 0.75rem;
}
.list_pic .info {
  /* position: absolute;
  left: 0;
  right: 0;
  bottom: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.8); */
  transition: all 0.3s;
}
.list_pic .item:hover .info {
  bottom: 0;
}
.list_pic.unhover .item:hover .info {
  bottom: 100%;
}
.list_pic .info h5 {
  padding: 2.5rem 1rem 0 1rem;
  font-size: 1rem;
  font-weight: bold;
}

.list_pic .info ul {
  /* position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  border-top: 1px solid #c2c2c2;
  padding: 0.75rem 0 0.5rem 0; */
}

.list_pic .info i {
  /* margin: 0 0.3rem 0 0;
  width: 0.625rem;
  height: 0.85rem;
  background: url(../images/icons.png) no-repeat 0 -1.5rem;
  background-size: 7.875rem auto;
  display: inline-block;
  vertical-align: middle; */
}

.path {
  padding: 0.625rem 1.25rem;
  color: #8a8e99;
  font-size: 0.75rem;
}
.path a {
  margin: 0 0.25rem;
  color: #8a8e99;
  font-size: 0.75rem;
}

.tab_nav {
  padding-bottom: 1rem;
}
.tab_btns {
  padding-top: 0.3125rem;
  border-bottom: 1px solid #dfe1e6;
  display: flex;
  text-align: center;
}
.tab_btns span {
  padding: 0.9375rem 0 0.625rem;
  width: 50%;
  border-bottom: 2px solid #fff;
  color: #6f7481;
  font-size: 1.15rem;
}
.tab_btns span.active {
  border-bottom-color: #fb9100;
  color: #252b3a;
  font-weight: bold;
}
/* 二级 */

.tab_fir {
  position: relative;
  margin: 0 auto 1.125rem;
  height: 50px;
  width: 100%;
  overflow: hidden;
}
.tab_fir .scroller {
  position: absolute;
  border-bottom: 1px solid #dfe1e6;
}
.tab_fir a {
  float: left;
  padding: 0 40px;
  height: 47px;
  line-height: 47px;
  display: block;
  border-radius: 0.125rem;
  border-bottom: 2px solid #fff;
  color: #6f7481;
  font-size: 1.15rem;
}
.tab_fir a.active {
  border-bottom-color: #fb9100;
  color: #252b3a;
  font-weight: bold;
}
/* 三级 */
.tab_list .tab_item {
  position: relative;
  margin: 1.125rem auto;
  height: 2.1875rem;
  width: 100%;
  overflow: hidden;
  display: none;
}
.tab_list .tab_item.active {
  display: block;
}
.tab_list .tab_item .scroller {
  position: absolute;
}
.tab_list .tab_item a {
  float: left;
  padding: 0 1rem;
  height: 2.1875rem;
  line-height: 2.1875rem;
  display: block;
  border-radius: 0.125rem;
  background: #f5f5f6;
  color: #575d6c;
  font-size: 1.1rem;
  border: 1px solid #f5f5f6;
}
.tab_list .tab_item a.active {
  background: #fef4e5;
  color: #fb9100;
  border-color: #fb9100;
}
/* 四级 */
.tab_list_child .tab_item {
  position: relative;
  margin: 1.125rem auto 0;
  width: 100%;
  padding-top: 2px;
  height: 2.3125rem;
  overflow: hidden;
  display: none;
}
.tab_list_child .tab_item.active {
  display: block;
}
.tab_list_child .tab_item .scroller {
  position: absolute;
  border-bottom: 1px solid #fb9100;
  height: 2.125rem;
}
.tab_list_child .tab_item a {
  float: left;
  padding: 0 1rem;
  height: 2.1875rem;
  line-height: 2.1875rem;
  color: #575d6c;
  font-size: 1.1rem;
  border: 1px solid #fff;
  border-bottom: 1px solid transparent;
  transform: translateY(-1px);
}
.tab_list_child .tab_item a.active {
  color: #fb9100;
  border-color: #fb9100;
  border-bottom: 1px solid #fff;
}

.list_pic_detial {
  padding: 3.125rem 4.375rem 0;
}
.introduction .avatar {
  float: left;
  margin: 0 2.5rem 0 0;
}
.introduction .avatar img {
  width: 8.75rem;
  height: 11.25rem;
  display: block;
}
.introduction h3 {
  padding: 0.625rem 0 0 0;
}
.intro_title {
  margin: 1.875rem 0 1.5625rem;
  height: 1.5625rem;
  line-height: 1.5625rem;
  /* background: url(../images/icons.png) repeat-x 0 -10rem; */
  /* background-size: 7.875rem auto; */
}
.intro_title span {
  padding-left: 0.625rem;
  min-width: 11.25rem;
  height: 1.25rem;
  line-height: 1.25rem;
  border-left: 4px solid #c87400;
  display: inline-block;
  background: #fff;
  font-size: 1.25rem;
}
.list_pic_detial .dateInfo {
  margin: 0 0 1.25rem 0;
}
.list_pic_detial .dateInfo p {
  margin: 0 0 0.625rem 0;
  padding: 0 0 0 0.9375rem;
  overflow: hidden;
  font-size: 0.875rem;
}
.list_pic_detial .dateInfo span {
  float: left;
  margin: 0 1.25rem 0 0;
  color: #c87400;
}
.list_pic_detial .content {
  padding: 0 0.9375rem 0.625rem;
  font-size: 14px;
}

.page_path {
  padding: 2.5rem 0 1.25rem;
  color: #000;
  font-size: 0.85rem;
}
.page_path a {
  margin: 0 0.25rem;
  color: #000;
  font-size: 0.85rem;
}
.page_path span {
  color: #fb9100;
}
.page_content {
  padding-bottom: 3.75rem;
}
.page_content_main {
  /* border-top: 6px solid #ffaa35; */
  background: none;
}
.page_content_head {
  padding: 1.25rem 0;
  border-bottom: 0.125rem solid #999;
  text-align: left;
  margin-bottom: 1.875rem;
}
.page_content_head h1 {
  margin-bottom: 1.875rem;
  font-size: 2.25rem;
}
.page_content_head span {
  color: #888;
  font-size: 0.875rem;
  margin-right: 3.125rem;
}
.page_content_head span i {
  padding-left: 1.25rem;
}
.page_content_detail {
  /* margin: 1.875rem 5rem; */
  padding-bottom: 3.125rem;
}
.page_content_detail p,
.page_content_detail span {
  font-family: '宋体' !important;
}
.page_content_detail img {
  max-width: 100%;
}
.page_content_foot {
  padding: 1.875rem 0;
  border-top: 1px solid #999;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}
.page_content_foot span {
  font-size: 0.875rem;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  margin-bottom: 1.25rem;
}
.page_content_foot a {
  color: #000;
  text-decoration: none;
  transition: all 0.36s;
}
.page_content_foot a:hover {
  color: var(--mainColor);
}
.page_content_teacher {
  display: flex;
}
.page_content_teacher .teacher-img {
/* width: 8.75rem;
  height: 11.25rem; */
  width: 9.875rem;
  height: 13.75rem;
}
.page_content_teacher .teacher-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.content_teacher_box {
  flex: 1;
  padding-left: 2.5rem;
}
.content_teacher_box h2 {
  font-size: 1.75rem;
  color: #222;
  margin-bottom: 5.625rem;
}
.content_teacher_box .page_content_detail {
  padding-bottom: 3.75rem;
}

.noPictureList {
}
.noPictureList4 {
  margin-top: 1.6rem;
}
.noPictureList_head h4 {
  font-size: 1.25rem;
  padding: 0.625rem 0;
  border-bottom: 1px solid #c87400;
}
.noPictureList_head span {
  padding-left: 0.625rem;
  border-left: 4px solid #c87400;
  font-size: 1.25rem;
  display: inline-block;
}
.noPictureList_list a {
  padding: 1.875rem 0;
  /* padding-bottom: 1.25rem; */
  border-bottom: 1px dashed #cccccc;
  color: #000;
  font-size: 0.9375rem;
  display: block;
  text-decoration: none;
}
.noPictureList2 .noPictureList_list a {
  display: flex;
  justify-content: space-between;
}
.noPictureList2 .left-date {
  width: 6.875rem;
  border-radius: 0 10px 0 0;
  margin-right: 2.5rem;
  text-align: right;
  color: #999;
}
.noPictureList2 .left-date::before {
  display: block;
  content: '';
  width: 100%;
  height: 0.375rem;
  background: var(--mainColor);
  border-radius: 0 1.125rem 0 0;
  margin-bottom: 0.75rem;
}
.noPictureList2 .left-date span {
  display: block;
  margin-bottom: 0.625rem;
  font-size: 1.375rem;
  color: var(--mainColor);
  float: initial;
}
.noPictureList2 .info_plate,
.noPictureList3 .info_plate {
  flex: 1;
}
.noPictureList2 .info_plate h4 {
  margin-bottom: 1.75rem;
  transition: all 0.36s;
  color: #222;
}
.noPictureList_list a .tag {
  margin-bottom: 0;
}
.noPictureList_list a:hover {
  color: #fb7600;
}
.noPictureList2 .noPictureList_list a:hover {
  color: #222;
}
.noPictureList2 .noPictureList_list a:hover .info_plate h4 {
  color: var(--mainColor);
}
.noPictureList3 .left-icon-box {
  width: 6rem;
  height: 5.5rem;
  border-radius: 0 1.125rem 0 0;
  background: #d3d3d3;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.36s;
  margin-right: 3.375rem;
}
.noPictureList3 .noPictureList_list a:hover .left-icon-box {
  background: var(--mainColor);
}
.noPictureList3 .noPictureList_list {
  display: flex;
  flex-wrap: wrap;
}
.noPictureList3 .noPictureList_list a {
  width: calc((100% - 2.5rem) / 2);
  display: flex;
  border-bottom: 1px solid #ddd;
  padding-top: 1.875rem;
  padding-bottom: 1rem;
  margin-right: 2.5rem;
}
.noPictureList3 .noPictureList_list a:nth-child(2n) {
  margin-right: 0;
}
.noPictureList3 .noPictureList_list a .left-icon-box .icon {
  width: 4.6875rem;
  height: 2.0625rem;
  background: url('../images/shiyan-icon.png') no-repeat center;
  background-size: cover;
}
.noPictureList3 .noPictureList_list a .left-icon-box .digitize-item-icon {
  width: 3.6875rem;
  height: 3.0875rem;
  background: url('../images/kejigan-icon.png') no-repeat center;
  background-size: 100% 100%;
}
.noPictureList3 .bdi-text-icon span:nth-last-child(1) {
  display: none;
}
.noPictureList_list a h4 {
  font-size: 1.25rem;
  color: #333;
  margin-bottom: 2.1875rem;
  transition: all 0.36s;
}
.noPictureList_list a:hover h4 {
  color: var(--mainColor);
  padding-left: 1rem;
}
.noPictureList_list a i {
  margin-right: 0.625rem;
  color: #a7a7a7;
  font-style: normal;
}
.noPictureList_list a span {
  float: right;
  color: #a7a7a7;
}
.right-bdi {
  font-size: 35rem;
  right: -19rem;
  opacity: 0.2;
  top: 5%;
  transform: initial;
}
.right-bdi span {
  /* -webkit-text-stroke: 4px #dd7237;
  -webkit-text-fill-color: transparent;
  color: #dd7237; */
  color: #fff;

  text-shadow: 0.0625rem 0.0625rem var(--mainColor), -0.0625rem -0.0625rem var(--mainColor), 0.0625rem -0.0625rem var(--mainColor),
    -0.0625rem 0.0625rem var(--mainColor);
}
.twoColumn li {
  float: left;
  width: 50%;
}
.twoColumn li a {
  margin: 0 20px;
}
.pages {
  padding: 1.875rem 0 0;
  text-align: center;
  font-size: 0.875rem;
}
.pages a,
.pages span,
.pages i {
  margin: 0 0.125rem;
  padding: 0 0.625rem;
  min-width: 1.875rem;
  height: 1.875rem;
  line-height: 1.875rem;
  border: 1px solid #dfe2e5;
  font-size: 0.875rem;
  display: inline-block;
  text-align: center;
  color: #000;
  text-decoration: none;
}
.pages a:hover {
  background: #e78600;
  color: #fff;
  border-color: #e78600;
}
.pages em {
  padding-right: 0.625rem;
  font-style: normal;
}
.pages span {
  background: #e78600;
  color: #fff;
}
.pages i {
  background: #fff;
  color: #61656e;
  border: 0;
  margin: 0;
}
.filterList {
  /* padding: 1.25rem 2.5rem; */
}
.filterList_tab {
  text-align: left;
  border-bottom: 1px solid #999999;
}
.filterList_tab a {
  margin: 0 0.375rem;
  padding: 0.75rem 1.875rem;
  color: #000;
  background: transparent;
  border-radius: 0 1.6875rem 0 0;
  font-size: 1.25rem;
  display: inline-block;
}
.filterList_tab a:first-child {
  margin-left: 1.25rem;
}
.filterList_tab a.active {
  color: #fff;
  background: var(--mainColor);
}

.filterList_form {
  padding: 3.125rem 0 1.875rem;
}
.filterList_form .date {
}
.filterList_form .date b {
  font-weight: normal;
}
.filterList_form .date span {
  position: relative;
  margin: 0 8px;
  color: #a7a7a7;
  display: inline-block;
}
.filterList_form .date span i {
  font-style: normal;
}
.filterList_form .date em {
  font-style: normal;
}
#date_start,
#date_end {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  opacity: 0;
}
.filterList_form .date .calendar-icon {
  display: none;
}
.calendar-wrap {
  box-shadow: 0 0.2rem 0.5rem -0.1rem #9b9b9b;
}
.calendar-content {
  width: 18.75rem;
  height: 18.75rem;
}
.filterList_form .date,
.filterList_form .title {
  float: left;
  padding: 0.625rem 0.625rem 0.625rem 0.9375rem;
  height: 2.625rem;
  background: none;
  font-size: 1rem;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-radius: 0.125rem;
  border: 0.0625rem solid var(--mainColor);
  border-radius: 0 1.6875rem 0 0;
}
.filterList_form .title {
  position: relative;
  margin: 0 1.875rem;
}
.filterList_form .title span {
  margin: 0 0.5rem;
}
.filterList_form .title input {
  background: none;
  border: 0;
  outline: none;
}
.filterList_form .title input::-webkit-input-placeholder {
  /* 使用webkit内核的浏览器 */
  color: #a7a7a7;
}
.filterList_form .title input:-moz-placeholder {
  /* Firefox版本4-18 */
  color: #a7a7a7;
}
.filterList_form .title input::-moz-placeholder {
  /* Firefox版本19+ */
  color: #a7a7a7;
}
.filterList_form .title input:-ms-input-placeholder {
  /* IE浏览器 */
  color: #a7a7a7;
}
.filterList_form .btns {
  float: left;
  padding: 0 0.96rem;
  height: 2.625rem;
  line-height: 2.625rem;
  border: 0;
  font-size: 0.9375rem;
  border-radius: 2px;
  background: #fb7600;
  border-radius: 0 1.6875rem 0 0;
}
.filterList_form .btns .btn_submit span {
  font-size: 1.375rem;
}
.filterList_form .btns button {
  background: none;
  border: 0;
  color: #fff;
}
.filterList_form .btns button.btn_reset {
  display: none;
}
.filterList_row.rwo_head {
  background-color: #faebe3;
  font-size: 1rem;
  font-weight: bold;
  padding: 1.125rem 0.875rem;
  padding-right: 1.5rem;
}
.filterList_row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  font-size: 1rem;
  padding: 0.625rem 0.875rem;
  text-decoration: none;
  color: #000;
  background: #fff;
  border-radius: 0 1.875rem 0 0;
  border-bottom: 0.0625rem dashed #ccc;
}
.filterList_row:not(.rwo_head):hover {
  color: var(--mainColor);
  background: #faebe3;
  text-decoration: none;
}
.filterList_row.rwo_head:hover {
  color: #000;
}
.filterList_row:not(.rwo_head):hover h5 {
  transform: translateX(1rem);
}
.filterList_row:not(.rwo_head):hover dl > dd {
  color: var(--mainColor);
}
.filterList_row:nth-child(2n-1) {
  /* background-color: #f8f8f8; */
}
.filterList_row i {
  min-width: 6.25rem;
  font-style: normal;
}
.filterList_row h5 {
  margin: 0;
  font-size: 0.9375rem;
  text-align: left;
  flex: 1;
  transition: all 0.36s;
}
.filterList_row.rwo_head h5 {
  font-size: 1rem;
  font-weight: bold;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.filterList_row p {
  margin: 0;
  display: none;
}
.filterList_row dl {
  min-width: 12.5rem;
  margin: 0 1.25rem 0 0;
}
.filterList_row dl dd {
  float: right;
  /* width: 6.25rem; */
  font-size: 1rem;
  margin-top: 0.725rem;
  margin-bottom: 0;
  color: #242424;
  transition: all 0.3s;
}
.filterList_row dl dd:nth-child(2) {
  display: none;
}
.filterList_row.rwo_head dl dd {
  margin-top: 0.525rem;
}
.List_row .filterList_row:not(.rwo_head) dl dt {
  background: var(--mainColor);
  color: #fff;
  border-radius: 0 1.6875rem 0 0;
  padding: 0.625rem 1.125rem;
  font-weight: normal;
}
.filterList_row dt {
  float: left;
  padding: 1px 0.4375rem;
  border: 1px solid #f8f8f8;
  border-radius: 2px;
  font-style: normal;
}
.filterList_row.rwo_head dt {
  padding: 0 0 0 0.25rem;
  margin-top: 0.525rem;
  color: #000 !important;
  border-color: transparent !important;
}
.calendar-wrap {
  z-index: 99;
}

.havePictureList {
  /* margin: 0 0 -2.5rem; */
}
.havePictureList_list {
  margin: 0;

  padding: 0;
}
.havePictureList_list a {
  position: relative;
  display: block;
  text-decoration: none;
  overflow: hidden;
  padding: 1.2rem 0;
  display: flex;
}
.havePictureList_list a:hover .an_image_box img {
  transform: scale(1.2);
}
.havePictureList_list a .an_image_box {
  width: 23.5rem;
  height: 15.75rem;
}
.havePictureList_list a .info_plate {
  width: 46.5rem;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background: #faebe3;
  border-radius: 0 5.875rem 0 0;
  padding: 1.25rem 2.125rem 0.625rem 1.875rem;
}
.info_plate .tag {
  font-size: 0.875rem;
  color: var(--mainColor);
  margin-bottom: 0.625rem;
}
.havePictureList_list a h4 {
  margin-bottom: 0.625rem;
  font-weight: bold;
  color: #333333;
  transition: all 0.36s;
  font-size: 1.25rem;
}
.havePictureList_list a:hover h4 {
  color: var(--mainColor);
  transform: translateX(0.625rem);
}
.havePictureList_list a h4 span {
  margin-left: 0.625rem;
  color: #a7a7a7;
  font-size: 0.875rem;
}
.havePictureList_list a:hover h4 span {
  color: #a7a7a7;
}
.havePictureList_list a p {
  margin: 0;
  line-height: 1.5;
  color: #666666;
  font-size: 0.9375rem;
}
.havePictureList_list a h4 span i {
  font-style: normal;
}
.time-more {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.time-more .next {
  color: var(--mainColor);
  font-size: 1.6rem;
}
.havePictureList_list a .date {
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  color: #666;
}
.havePictureList_list a .date .iconfont {
  font-size: 0.875rem;
  margin-right: 0.5rem;
  color: var(--mainColor);
}
/* 有图列表2 */
.havePictureList2 .havePictureList_list {
  display: flex;
  flex-wrap: wrap;
}
.havePictureList2 .item {
  padding: 0;
  margin-right: 1.875rem;
  margin-bottom: 2.5rem;
  box-sizing: border-box;
  padding: 0.0625rem;
  display: block;
  width: calc((100% - 1.875rem * 3) / 4);
  height: 15.625rem;
  background: #f8e3d7;
  transition: all 0.36s;
  box-shadow: 0px 0px 0.625rem rgba(0, 0, 0, 0.1);
}
.havePictureList2 .item:nth-child(4n) {
  margin-right: 0;
}
.havePictureList2 .item .an_image_box {
  height: 11rem;
  width: 100%;
  background: #fff;
}
.havePictureList2 .item .an_image_box img {
  object-fit: contain;
}
.havePictureList2 .item .info_plate {
  border-radius: 0;
  background: none;
  position: initial;
  width: auto;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
justify-content: center;
  padding-top: 0.75rem;
  transform: initial;
}
.havePictureList2 .item .info_plate p {
  margin: 0;
  color: #555;
  font-size: 0.875rem;
  text-align: center;
  padding: 0 1.625rem;
  transition: all 0.36s;
}
.havePictureList2 .item:hover {
  background: var(--mainColor);
}
.havePictureList2 .item:hover .info_plate p {
  color: #fff;
}
.content_teacher_box img {
  display: none;
}
.search {
  padding: 0 0 70px 0;
  background-color: #f3f3f3;
}
.search .banner {
  position: relative;
}
.search .banner img {
  width: 100%;
  display: block;
}
.search_form {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.search_form form {
  padding-left: 1.25rem;
  width: 53.125rem;
  height: 4.125rem;
  background-color: #fff;
  border-radius: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.search_form form input {
  width: 100%;
  height: 4.125rem;
  border: 0;
  outline: none;
  flex: 1;
  font-size: 1.125rem;
}
.search_form form button {
  display: flex;
  width: 5rem;
  height: 4.125rem;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  border: 0;
  background: none;
}
.search_form form button i,
.search_form form i {
  width: 1.875rem;
  height: 1.875rem;
  /* background: url(../images/icons.png) no-repeat center 0.28rem;
  background-size: 10.3125rem auto; */
}
.search_form form i {
  margin-right: 5px;
}

.search_result {
  padding: 2.1875rem 5rem;
  background-color: #fff;
}
.search-list .new_search_box {
  width: 100%;
  height: auto;
  display: block;
  position: initial;
  background: var(--mainColor);
  margin-top: -4.475rem;
  margin-bottom: 5rem;
}
.search-list .new_search_box .search_border {
  width: auto;
  flex: 1;
  height: 5.625rem;
  background: none;
}
.search-list .new_search_box .search_border input {
  background: none;
}
.search-list .new_search_box .search_border input::placeholder {
  color: #fff;
}
.search-list .new_search_box .search_box_img {
  width: auto;
  padding: 0 1.875rem;
}
.search-list .new_search_box .search_box_img span {
  font-size: 2.125rem;
  color: #fff;
  width: auto;
  height: auto;
}
.search-list .noPictureList_list .info_plate h4 {
  font-size: 1.25rem;
  transition: all 0.36s;
  font-weight: bold;
}
.search-list .noPictureList_list a {
  border-bottom: none;
  padding-bottom: 0.625rem;
}
.search-list .noPictureList_list a .info_plate {
  padding-right: 7.5rem;
  position: relative;
}
.search-list .noPictureList_list a .date {
  text-align: left;
}
.search-list .noPictureList_list a .date span {
  float: initial;
}

.search-list .noPictureList_list a .next {
  position: absolute;
  right: 0;
  top: 0;
  transition: all 0.36s;
}
.search-list .noPictureList_list a p {
  transition: all 0.36s;
  margin-bottom: 2.25rem;
}
.search-list .noPictureList_list a:hover .info_plate h4 {
  color: var(--mainColor);
}
.search-list .noPictureList_list a:hover .info_plate p {
  color: var(--mainColor);
}
.search-list .noPictureList_list a:hover .next {
  -webkit-animation: fadeInLeft 0.36s ease 0.3s 1 both;
}
.search_result ul {
}
.search_result li {
}
.search_result h4 {
  font-size: 1.25rem;
}
.search_result h4 a {
  text-decoration: underline;
}
.search_result .date {
  color: #a7a7a7;
  font-size: 0.875rem;
}
.search_result p {
  padding: 0.375rem 0 2.1875rem;
  margin: 0;
  line-height: 1.25rem;
}
.search_foot {
  padding: 0 0 1.875rem;
  border-top: 1px solid #eae8e8;
  background-color: #fff;
}