@charset "UTF-8";
/**
 *  Author: ToDo Meng
 *  Date:   2020.06.30
 *  Time:   09:00
 *  Desc:   网站主体公共样式表
**/
/************      Common      ************/
html,
body {
  color: #333;
  background: #fff;
}
.container {
  margin: auto;
  width: 1200px;
  text-align: justify;
}
.container.auto-container {
  width: auto;
  max-width: 100%;
  padding: 0 1rem;
}
/************      Common      ************/
/************      Header      ************/
.header-wrap {
  padding: 1.5rem 0;
  background-color: #90332c;
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-image: url('../img/img_bg_header.png');
}
.header-wrap .logo-wrap .logo-school .logo-img {
  height: 6rem;
}
.header-wrap .logo-wrap .logo-college {
  margin-top: 1rem;
  margin-left: 10rem;
}
.header-wrap .logo-wrap .logo-college .logo-img {
  height: 5rem;
}
.header-wrap .btn-wrap .btn-item {
  background: #fff;
  border-radius: 2rem;
}
.header-wrap .btn-wrap .btn-item .btn-title {
  color: #90332c;
  display: block;
  font-size: 1.6rem;
  padding: 0.5rem 2rem;
}
.search-wrap .search-form-wrap {
  height: 3.4rem;
  padding: 0 1rem;
  background: #fff;
  border-radius: 2rem;
}
.search-wrap .search-form-wrap .search-icon {
  width: 2rem;
  height: 2rem;
  margin: 0 0.5rem;
}
.search-wrap .search-form-wrap .search-input-item {
  border: 0;
  height: 100%;
  min-width: 15rem;
}
.pc-nav-wrap .nav-list-item {
  flex: 1;
  height: 6rem;
  font-weight: 600;
  font-size: 1.6rem;
}
.pc-nav-wrap .nav-list-item:hover,
.pc-nav-wrap .nav-list-item.cur {
  color: #fff;
  background: #90332c;
}
.pc-nav-wrap .nav-list-item:hover .nav-item-a,
.pc-nav-wrap .nav-list-item.cur .nav-item-a {
  color: #fff;
}
.pc-nav-wrap .nav-list-item:hover .sub-nav-wrap {
  display: block;
}
.pc-nav-wrap .nav-list-item .sub-nav-wrap {
  top: 100%;
  z-index: 999;
  display: none;
  min-width: 100%;
  position: absolute;
  background: #ffffffc4;
  border-radius: 0 0 .5rem .5rem;
}
.pc-nav-wrap .nav-list-item .sub-nav-wrap .sub-nav-item {
  position: relative;
  padding: 0.5rem 2rem;
}
.pc-nav-wrap .nav-list-item .sub-nav-wrap .sub-nav-item:hover {
  background: #90332c;
}
.pc-nav-wrap .nav-list-item .sub-nav-wrap .sub-nav-item:hover .sub-nav-a {
  color: #fff;
}
.pc-nav-wrap .nav-list-item .sub-nav-wrap .sub-nav-item:hover .third-nav-wrap {
  display: block;
}
.pc-nav-wrap .nav-list-item .sub-nav-wrap .sub-nav-item .sub-nav-a {
  font-size: 1.4rem;
  white-space: nowrap;
}
.pc-nav-wrap .nav-list-item .sub-nav-wrap .sub-nav-item .third-nav-wrap {
  top: 0;
  left: 100%;
  display: none;
  min-width: 100%;
  position: absolute;
  background: #ffffffc4;
  border-radius: 0 0.5rem 0.5rem 0.5rem;
}
.pc-nav-wrap .nav-list-item .sub-nav-wrap .sub-nav-item .third-nav-item {
  white-space: nowrap;
  padding: 0.5rem 2rem;
}
.pc-nav-wrap .nav-list-item .sub-nav-wrap .sub-nav-item .third-nav-item:hover {
  background: #90332c;
}
.pc-nav-wrap .nav-list-item .sub-nav-wrap .sub-nav-item .third-nav-item:hover .third-nav-a {
  color: #fff;
}
.pc-nav-wrap .nav-list-item .sub-nav-wrap .sub-nav-item .third-nav-item .third-nav-a {
  font-size: 1.4rem;
}
.mobile-nav-wrap {
  height: 8rem;
  display: none;
  background: #90332c;
}
.mobile-nav-wrap .mask-nav-wrap {
  left: 0;
  right: 0;
  bottom: 0;
  top: 8rem;
  z-index: 2;
  content: '';
  display: none;
  position: fixed;
  background: #0006;
}
.mobile-nav-wrap .mask-nav-wrap.cur {
  display: block;
}
.mobile-nav-wrap .nav-con-wrap {
  left: 0;
  right: 0;
  height: 8rem;
  z-index: 999;
  position: fixed;
  background: #90332c;
}
.mobile-nav-wrap .nav-con-wrap .logo-wrap .logo-img {
  height: 5rem;
}
.mobile-nav-wrap .nav-con-wrap .btn-wrap .menu-btn-item {
  width: 4rem;
  height: 4rem;
  flex-direction: column;
  align-items: flex-start;
}
.mobile-nav-wrap .nav-con-wrap .btn-wrap .menu-btn-item .btn-line {
  height: .2rem;
  width: 1.5rem;
  margin: 0.4rem;
  background: #fff;
}
.mobile-nav-wrap .nav-con-wrap .btn-wrap .menu-btn-item .btn-line:nth-child(2) {
  width: 2.5rem;
}
.mobile-nav-wrap .nav-con-wrap .btn-wrap .menu-btn-item .btn-line:nth-child(3) {
  width: 2rem;
}
.mobile-nav-wrap .nav-list-wrap {
  right: 0;
  bottom: 0;
  top: 8rem;
  left: 100%;
  z-index: 999;
  position: fixed;
  background: #fff;
}
.mobile-nav-wrap .nav-list-wrap.cur {
  left: 50%;
}
.mobile-nav-wrap .nav-list-wrap .search-wrap .search-form-wrap {
  background: #e8e8e8;
}
.mobile-nav-wrap .nav-list-wrap .nav-list-item {
  flex: 1;
  height: 6rem;
  font-weight: 600;
  font-size: 1.6rem;
  border-bottom: 1px dashed #ddd;
}
.mobile-nav-wrap .nav-list-wrap .nav-list-item:before {
  left: 15%;
  opacity: 0;
  z-index: 2;
  content: '';
  width: 1.2rem;
  height: 1.2rem;
  display: block;
  position: absolute;
  background: #90332b;
  border-radius: 0.2rem;
  transform: rotate(45deg);
  transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
}
.mobile-nav-wrap .nav-list-wrap .nav-list-item.cur {
  background: #fff;
  position: relative;
  border-color: #90332c;
}
.mobile-nav-wrap .nav-list-wrap .nav-list-item.cur:before {
  opacity: 1;
}
.mobile-nav-wrap .nav-list-wrap .nav-list-item.cur .nav-item-a {
  color: #90332c;
}
.mobile-nav-wrap .nav-list-wrap .nav-list-item.open .sub-nav-wrap {
  display: block;
}
.mobile-nav-wrap .nav-list-wrap .nav-list-item .sub-nav-wrap {
  right: 0;
  bottom: 0;
  top: 8rem;
  left: 50%;
  z-index: 999;
  display: none;
  position: fixed;
  background: #fff;
}
.mobile-nav-wrap .nav-list-wrap .nav-list-item .sub-nav-wrap .sub-nav-item {
  padding: 0.5rem 2rem;
}
.mobile-nav-wrap .nav-list-wrap .nav-list-item .sub-nav-wrap .sub-nav-item.open .third-nav-wrap {
  display: block;
}
.mobile-nav-wrap .nav-list-wrap .nav-list-item .sub-nav-wrap .sub-nav-item .sub-nav-a {
  color: #333;
  font-size: 1.4rem;
  white-space: nowrap;
}
.mobile-nav-wrap .nav-list-wrap .nav-list-item .sub-nav-wrap .sub-nav-item .sub-nav-a.cur,
.mobile-nav-wrap .nav-list-wrap .nav-list-item .sub-nav-wrap .sub-nav-item .sub-nav-a:hover {
  color: #90332c;
  text-decoration: underline;
}
.mobile-nav-wrap .nav-list-wrap .nav-list-item .third-nav-wrap {
  right: 0;
  bottom: 0;
  top: 8rem;
  left: 50%;
  z-index: 999;
  display: none;
  position: fixed;
  background: #fff;
}
/************      Banner      ************/
.banner-wrap {
  max-height: 50rem;
}
.banner-wrap .swiper-pagination-bullet {
  width: 1.5rem;
  height: 1.5rem;
}
.banner-wrap .swiper-pagination-bullet-active {
  background: #90332c;
}
.banner-wrap .banner-list-wrap {
  max-height: 50rem;
}
.banner-wrap .banner-list-wrap .banner-item {
  max-height: 50rem;
}
.banner-wrap .banner-list-wrap .banner-item .banner-img {
  vertical-align: bottom;
  max-height: 50rem;
  object-fit: cover;
}
.banner-inner-wrap {
  height: 18rem;
}
.banner-inner-wrap .banner-img {
  object-fit: cover;
}
.banner-inner-wrap .banner-content-wrap {
  top: 0;
  left: 0;
  color: #fff;
}
.banner-inner-wrap .banner-content-wrap .title-wrap {
  margin-left: 1rem;
}
.banner-inner-wrap .banner-content-wrap .title-wrap.cur {
  color: #333;
}
.banner-inner-wrap .banner-content-wrap .title-wrap .title {
  font-size: 3rem;
}
.banner-inner-wrap .banner-content-wrap .title-wrap .subtitle {
  font-size: 2rem;
}
.banner-inner-wrap .banner-content-wrap .logo-wrap {
  margin-right: 1rem;
}
.banner-inner-wrap .banner-content-wrap .logo-wrap .logo-img {
  height: 4rem;
}
/************      Content     ************/
.content-wrap {
  min-height: 50rem;
}
.content-wrap .content-item-wrap {
  padding: 3rem 0;
}
.content-wrap .content-item-wrap .content-title-wrap {
  margin: 0 auto 3rem;
}
.content-wrap .content-item-wrap .content-title-wrap .title {
  color: #90332b;
  font-size: 2rem;
}
.content-wrap .content-item-wrap .content-title-wrap .title-line {
  height: 3px;
  width: 10rem;
  margin: 1rem auto;
  border-radius: 3px;
  background: #4a90e2;
}
.content-wrap .content-item-wrap .content-title-wrap .subtitle {
  color: #ccc;
  font-size: 1.6rem;
  margin-left: 1rem;
}
.content-wrap .content-item-bg-wrap {
  background-position: center top;
  background-repeat: no-repeat;
  padding: 5rem 0 7rem;
}
.content-wrap .content-item-bg-wrap .content-title-wrap .title {
  color: #fff;
}
.content-wrap .content-item-bg-wrap .content-title-wrap .title-line {
  background: #fff;
}
.content-wrap .content-item-bg-wrap .content-title-wrap .subtitle {
  color: #fff;
}
.content-wrap .content-item-bg-color-wrap {
  padding: 6rem 0;
  margin: -2rem auto;
  background: #f7f8f9;
}
.inner-wrap .content-nav-wrap {
  margin-bottom: 5rem;
}
.inner-wrap .content-nav-wrap .position-wrap {
  color: #666;
  font-size: 1.2rem;
}
.inner-wrap .content-nav-wrap .position-wrap a {
  color: #666;
}
.inner-wrap .content-nav-wrap .position-wrap a:last-of-type {
  color: #90332b;
}
.inner-wrap .content-nav-wrap .inner-nav-wrap.pos-a-nav-wrap {
  top: 0;
  left: 0;
  height: 100%;
}
.inner-wrap .content-nav-wrap .inner-nav-wrap .nav-item-wrap {
  height: 3rem;
  font-size: 1.2rem;
  margin-left: 1rem;
  line-height: 3rem;
  text-align: center;
  border-radius: 3rem;
  border: 1px solid #999;
}
.inner-wrap .content-nav-wrap .inner-nav-wrap .nav-item-wrap.cur,
.inner-wrap .content-nav-wrap .inner-nav-wrap .nav-item-wrap:hover {
  color: #fff;
  background: #90332b;
  border-color: #90332b;
}
.inner-wrap .content-nav-wrap .inner-nav-wrap .nav-item-wrap.cur .nav-item-a,
.inner-wrap .content-nav-wrap .inner-nav-wrap .nav-item-wrap:hover .nav-item-a {
  color: #fff;
}
.inner-wrap .content-nav-wrap .inner-nav-wrap .nav-item-wrap .nav-item-a {
  color: #777;
  padding: 0 1.5rem;
}
.inner-wrap .left-nav-content-wrap {
  width: 18rem;
  text-align: center;
}
.inner-wrap .left-nav-content-wrap .nav-title-wrap {
  background: #90332b;
  height: 5rem;
  line-height: 5rem;
  color: #fff;
  font-size: 1.8rem;
  border-radius: 0.2rem;
  margin-bottom: 1rem;
}
.inner-wrap .left-nav-content-wrap .left-nav-wrap .nav-item-wrap {
  padding: 1rem 0;
  font-size: 1.5rem;
  position: relative;
}
.inner-wrap .left-nav-content-wrap .left-nav-wrap .nav-item-wrap:before {
  left: 15%;
  opacity: 0;
  content: '';
  width: 1.2rem;
  height: 1.2rem;
  display: block;
  position: absolute;
  background: #90332b;
  border-radius: 0.2rem;
  transform: rotate(45deg);
  transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
}
.inner-wrap .left-nav-content-wrap .left-nav-wrap .nav-item-wrap.cur:before,
.inner-wrap .left-nav-content-wrap .left-nav-wrap .nav-item-wrap:hover:before {
  opacity: 1;
}
.inner-wrap .left-nav-content-wrap .left-nav-wrap .nav-item-wrap.cur .nav-item-a,
.inner-wrap .left-nav-content-wrap .left-nav-wrap .nav-item-wrap:hover .nav-item-a {
  color: #90332b;
  font-weight: 600;
}
.inner-wrap .right-content-wrap .content-title-wrap {
  height: 4.6rem;
  border-bottom: 0.4rem solid #ddd;
}
.inner-wrap .right-content-wrap .content-title-wrap .title-wrap {
  font-size: 1.8rem;
}
.inner-wrap .right-content-wrap .content-title-wrap .position-wrap span,
.inner-wrap .right-content-wrap .content-title-wrap .position-wrap a {
  font-size: 1.3rem;
  color: #666;
}
/************      Index       ************/
.index-wrap .news-content-item-wrap .content-title-wrap {
  height: 5rem;
  border-bottom: 2px solid #ddd;
}
.index-wrap .news-content-item-wrap .content-title-wrap .title-wrap .title-icon {
  height: 2rem;
  margin-right: 1rem;
}
.index-wrap .news-content-item-wrap .content-title-wrap .title-wrap .title {
  color: #90332b;
  font-size: 2rem;
  white-space: nowrap;
}
.index-wrap .news-content-item-wrap .content-title-wrap .detail-wrap .more-btn-item {
  color: #90332b;
  font-size: 2rem;
}
.index-wrap .news-content-item-wrap .hot-news-wrap {
  width: 35rem;
}
.index-wrap .news-content-item-wrap .hot-news-wrap .hot-news-item {
  overflow: hidden;
  position: relative;
}
.index-wrap .news-content-item-wrap .hot-news-wrap .hot-news-item:first-of-type {
  margin-bottom: 3rem;
}
.index-wrap .news-content-item-wrap .hot-news-wrap .hot-news-item .news-title-wrap {
  left: 0;
  right: 0;
  bottom: 0;
  color: #fff;
  position: absolute;
  background: #90332bd6;
}
.index-wrap .news-content-item-wrap .hot-news-wrap .hot-news-item .news-title-wrap .title {
  margin: 1rem 1rem;
}
.index-wrap .news-content-item-wrap .news-list-wrap .news-item-wrap {
  height: 4.8rem;
  padding: 1rem 0;
  line-height: 1.8;
  border-bottom: 1px dashed #ddd;
}
.index-wrap .news-content-item-wrap .news-list-wrap .news-item-wrap .news-title-wrap .new-symbol {
  color: #f00;
  font-weight: 600;
  font-size: 1.4rem;
  font-style: italic;
  margin-left: .2rem;
}
.index-wrap .news-content-item-wrap .news-list-wrap .news-item-wrap .create-time-wrap {
  right: 0;
  bottom: 1rem;
  background: #fff;
  padding-left: 1.3rem;
}
.index-wrap .notice-content-wrap .content-title-wrap {
  height: 5rem;
  border-bottom: 2px solid #ddd;
}
.index-wrap .notice-content-wrap .content-title-wrap .tab-title-item {
  position: relative;
}
.index-wrap .notice-content-wrap .content-title-wrap .tab-title-item.cur {
  border: 0;
}
.index-wrap .notice-content-wrap .content-title-wrap .tab-title-item.cur:after {
  width: 100%;
  content: '';
  height: .2rem;
  display: block;
  bottom: -1.05rem;
  position: absolute;
  background: #90332b;
}
.index-wrap .notice-content-wrap .content-title-wrap .tab-title-item.cur .title {
  color: #90332b;
}
.index-wrap .notice-content-wrap .content-title-wrap .title-wrap .title-icon {
  height: 2rem;
  margin-right: 1rem;
}
.index-wrap .notice-content-wrap .content-title-wrap .title-wrap .title {
  color: #999;
  font-size: 2rem;
  white-space: nowrap;
}
.index-wrap .notice-content-wrap .content-title-wrap .detail-wrap .more-btn-item {
  display: none;
}
.index-wrap .notice-content-wrap .content-title-wrap .detail-wrap .more-btn-item.cur {
  display: block;
}
.index-wrap .hot-content-item-wrap .container-con-wrap {
  min-height: 35rem;
  background: #f7f8f9;
}
.index-wrap .hot-content-item-wrap .container-con-wrap .hot-img-wrap {
  width: 50%;
}
.index-wrap .hot-content-item-wrap .container-con-wrap .hot-info-wrap {
  width: 45%;
  z-index: 9;
  color: #fff;
  right: 9rem;
  line-height: 3rem;
  font-size: 1.4rem;
  padding: 3rem 4rem;
  position: absolute;
  border-radius: 0.5rem;
  box-shadow: 3px 1px 4px #a7afb6;
  background-image: url(../img/img_cloud.png);
  background-position: right bottom;
  background-repeat: no-repeat;
  background-color: #90332ce8;
  background-size: 16rem;
}
.index-wrap .hot-content-item-wrap .container-con-wrap .hot-info-wrap .title {
  font-weight: 600;
  font-size: 1.6rem;
  margin-bottom: 1rem;
}
.index-wrap .hot-content-item-wrap .container-con-wrap .hot-info-wrap .desc {
  margin-right: 10rem;
}
.index-wrap .hot-content-item-wrap .container-con-wrap .more-btn-wrap {
  margin-right: 12rem;
}
.index-wrap .hot-content-item-wrap .container-con-wrap .more-btn-wrap .more-btn-item {
  width: 10rem;
  justify-content: flex-end;
}
.index-wrap .hot-content-item-wrap .container-con-wrap .more-btn-wrap .more-btn-item .btn-title {
  color: #fff;
  font-size: 1.6rem;
}
.index-wrap .info-content-item-wrap .container-con-wrap {
  padding: 3rem 3rem;
  background: #e1e1e1;
  border-radius: .5rem;
}
.index-wrap .info-content-item-wrap .content-title-wrap .title-wrap:before {
  content: '';
  display: block;
  width: 3px;
  height: 2rem;
  background: #90332b;
  margin-right: 1rem;
}
.index-wrap .info-content-item-wrap .content-title-wrap .detail-wrap .more-btn-item {
  color: #888;
  font-size: 2.2rem;
}
.index-wrap .info-content-item-wrap .info-con-wrap {
  max-width: 46%;
}
.index-wrap .info-content-item-wrap .info-list-wrap {
  line-height: 3;
  white-space: nowrap;
}
.index-wrap .info-content-item-wrap .info-list-wrap .info-item-wrap:hover .info-text {
  color: #123;
}
.index-wrap .info-content-item-wrap .info-list-wrap .info-item-wrap .create-time-wrap {
  color: #666;
}
.index-wrap .info-content-item-wrap .info-list-wrap .info-item-wrap .title {
  color: #666;
}
.index-wrap .person-content-item-wrap.style1 .container {
  background-size: cover;
  background-color: #fff;
  background-position: bottom;
  background-repeat: no-repeat;
  border-top: 1rem solid #90332b;
  border-bottom: 1rem solid #90332b;
  background-image: url('../img/img_bg_person.png');
}
.index-wrap .person-content-item-wrap.style1 .content-title-wrap .title-img {
  height: 4rem;
  margin-bottom: 4rem;
}
.index-wrap .person-content-item-wrap.style1 .person-wrap {
  padding: 5rem 3rem;
}
.index-wrap .person-content-item-wrap.style1 .person-wrap:before {
  top: 0;
  left: 50%;
  content: '';
  z-index: -1;
  width: 28rem;
  height: 38rem;
  position: absolute;
  background-size: 100%;
  transform: translateX(-50%);
  background-position: top center;
  transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  background-image: url(../img/img_bg_person_cur.png);
}
.index-wrap .person-content-item-wrap.style1 .person-wrap .person-list-wrap .person-item {
  transform: scale(0.8);
}
.index-wrap .person-content-item-wrap.style1 .person-wrap .person-list-wrap .person-item .person-img-wrap {
  width: 22rem;
  height: 22rem;
  padding: 1rem 1rem;
  border-radius: 50%;
  border: 1px solid #ddd;
}
.index-wrap .person-content-item-wrap.style1 .person-wrap .person-list-wrap .person-item .person-img-wrap .person-avatar-wrap {
  overflow: hidden;
  border-radius: 50%;
}
.index-wrap .person-content-item-wrap.style1 .person-wrap .person-list-wrap .person-item .person-img-wrap .person-avatar-wrap:after {
  top: 0;
  left: 0;
  opacity: 0;
  z-index: 0;
  content: '';
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  background: #00000080;
  transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
}
.index-wrap .person-content-item-wrap.style1 .person-wrap .person-list-wrap .person-item .person-img-wrap .person-avatar-wrap .subtitle {
  opacity: 0;
  z-index: 22;
  color: #fff;
  margin: 1rem 1.5rem;
}
.index-wrap .person-content-item-wrap.style1 .person-wrap .person-list-wrap .person-item .person-img-wrap .person-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.index-wrap .person-content-item-wrap.style1 .person-wrap .person-list-wrap .swiper-slide-active,
.index-wrap .person-content-item-wrap.style1 .person-wrap .person-list-wrap .swiper-slide-duplicate-active {
  transform: scale(1);
}
.index-wrap .person-content-item-wrap.style1 .person-wrap .person-list-wrap .swiper-slide-active .person-img-wrap,
.index-wrap .person-content-item-wrap.style1 .person-wrap .person-list-wrap .swiper-slide-duplicate-active .person-img-wrap {
  border: 0;
  padding: 0;
}
.index-wrap .person-content-item-wrap.style1 .person-wrap .person-list-wrap .swiper-slide-active .person-img-wrap .person-avatar-wrap:after,
.index-wrap .person-content-item-wrap.style1 .person-wrap .person-list-wrap .swiper-slide-duplicate-active .person-img-wrap .person-avatar-wrap:after,
.index-wrap .person-content-item-wrap.style1 .person-wrap .person-list-wrap .swiper-slide-active .person-img-wrap .person-avatar-wrap .subtitle,
.index-wrap .person-content-item-wrap.style1 .person-wrap .person-list-wrap .swiper-slide-duplicate-active .person-img-wrap .person-avatar-wrap .subtitle {
  opacity: 1;
}
.index-wrap .person-content-item-wrap.style2 .container {
  background-size: cover;
  background-color: #fff;
  background-position: bottom;
  background-repeat: no-repeat;
  border-top: 1rem solid #90332b;
  border-bottom: 1rem solid #90332b;
  background-image: url('../img/img_bg_person.png');
}
.index-wrap .person-content-item-wrap.style2 .content-title-wrap .title-img {
  height: 4rem;
}
.index-wrap .person-content-item-wrap.style2 .person-wrap {
  padding: 5rem 2rem;
  margin: auto 1rem;
}
.index-wrap .person-content-item-wrap.style2 .person-wrap .person-list-wrap .person-item {
  transform: scale(0.88);
}
.index-wrap .person-content-item-wrap.style2 .person-wrap .person-list-wrap .person-item:hover:before,
.index-wrap .person-content-item-wrap.style2 .person-wrap .person-list-wrap .person-item:hover .desc,
.index-wrap .person-content-item-wrap.style2 .person-wrap .person-list-wrap .person-item:hover .person-avatar-wrap:after {
  opacity: 1 !important;
}
.index-wrap .person-content-item-wrap.style2 .person-wrap .person-list-wrap .person-item:hover .person-img-wrap {
  border: 0;
  padding: 0;
}
.index-wrap .person-content-item-wrap.style2 .person-wrap .person-list-wrap .person-item:before {
  left: 50%;
  top: -5rem;
  opacity: 0;
  content: '';
  z-index: -1;
  width: 28rem;
  height: 38rem;
  position: absolute;
  background-size: 100%;
  transform: translateX(-50%);
  background-position: top center;
  transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  background-image: url(../img/img_bg_person_cur.png);
}
.index-wrap .person-content-item-wrap.style2 .person-wrap .person-list-wrap .person-item .person-img-wrap {
  width: 22rem;
  height: 22rem;
  padding: 1rem 1rem;
  border-radius: 50%;
  border: 1px solid #ddd;
}
.index-wrap .person-content-item-wrap.style2 .person-wrap .person-list-wrap .person-item .person-img-wrap .person-avatar-wrap {
  overflow: hidden;
  border-radius: 50%;
}
.index-wrap .person-content-item-wrap.style2 .person-wrap .person-list-wrap .person-item .person-img-wrap .person-avatar-wrap:after {
  top: 0;
  left: 0;
  opacity: 0;
  z-index: 0;
  content: '';
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  background: #00000080;
  transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
}
.index-wrap .person-content-item-wrap.style2 .person-wrap .person-list-wrap .person-item .person-img-wrap .person-avatar-wrap .desc {
  opacity: 0;
  z-index: 22;
  color: #fff;
  margin: 1rem 1.5rem;
  word-break: break-all;
}
.index-wrap .person-content-item-wrap.style2 .person-wrap .person-list-wrap .person-item .person-img-wrap .person-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.index-wrap .person-content-item-wrap.style2 .person-wrap .person-list-wrap .swiper-slide-active,
.index-wrap .person-content-item-wrap.style2 .person-wrap .person-list-wrap .swiper-slide-duplicate-active {
  /*transform: scale(1);*/
  /*.person-img-wrap {
                            border: 0;
                            padding: 0;
                        }*/
}
.index-wrap .person-content-item-wrap.style2 .swiper-button-next {
  right: 0;
}
.index-wrap .person-content-item-wrap.style2 .swiper-button-prev {
  left: 0;
}
.index-wrap .person-content-item-wrap.style3 .content-title-wrap .title-img {
  height: 4rem;
}
.index-wrap .person-content-item-wrap.style3 .content-title-wrap {
  height: 5rem;
  border-bottom: 2px solid #ddd;
}
.index-wrap .person-content-item-wrap.style3 .content-title-wrap .title-wrap .title-icon {
  height: 2rem;
  margin-right: 1rem;
}
.index-wrap .person-content-item-wrap.style3 .content-title-wrap .title-wrap .title {
  color: #90332b;
  font-size: 2rem;
  white-space: nowrap;
}
.index-wrap .person-content-item-wrap.style3 .content-title-wrap .detail-wrap .more-btn-item {
  color: #90332b;
  font-size: 2rem;
}
.index-wrap .person-content-item-wrap.style3 .person-wrap {
  padding: 2rem 2rem;
  margin: auto 2.4rem;
}
.index-wrap .person-content-item-wrap.style3 .person-wrap .person-list-wrap .person-item {
  overflow: hidden;
  background: #f7f8f9;
  border-radius: 0.3rem;
}
.index-wrap .person-content-item-wrap.style3 .person-wrap .person-list-wrap .person-item:hover .person-img-wrap .person-avatar-wrap:before {
  top: 3px;
  border-color: #90332c;
}
.index-wrap .person-content-item-wrap.style3 .person-wrap .person-list-wrap .person-item:hover .person-img-wrap .person-avatar-wrap .person-img {
  margin-top: -6rem;
}
.index-wrap .person-content-item-wrap.style3 .person-wrap .person-list-wrap .person-item:hover .person-info-wrap {
  height: 8rem;
}
.index-wrap .person-content-item-wrap.style3 .person-wrap .person-list-wrap .person-item:hover .person-info-wrap {
  height: auto;
  margin-top: -6rem;
  background: #90332c;
  transition: all 0.3s ease-out 0s;
}
.index-wrap .person-content-item-wrap.style3 .person-wrap .person-list-wrap .person-item:hover .person-info-wrap .title,
.index-wrap .person-content-item-wrap.style3 .person-wrap .person-list-wrap .person-item:hover .person-info-wrap .subtitle,
.index-wrap .person-content-item-wrap.style3 .person-wrap .person-list-wrap .person-item:hover .person-info-wrap .desc {
  color: #fff;
}
.index-wrap .person-content-item-wrap.style3 .person-wrap .person-list-wrap .person-item:hover .person-info-wrap .desc {
  height: 6rem;
}
.index-wrap .person-content-item-wrap.style3 .person-wrap .person-list-wrap .person-item .person-img-wrap {
  transition: all 0.3s ease-out 0s;
}
.index-wrap .person-content-item-wrap.style3 .person-wrap .person-list-wrap .person-item .person-img-wrap .person-avatar-wrap {
  padding: 0;
  width: 100%;
  height: 20rem;
  overflow: hidden;
  transition: all 0.3s ease-out 0s;
}
.index-wrap .person-content-item-wrap.style3 .person-wrap .person-list-wrap .person-item .person-img-wrap .person-avatar-wrap:before {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  position: absolute;
  transition: all 0.3s ease-out 0s;
  border: 3px solid transparent;
  -webkit-margin-before: -3px;
  border-bottom: 0;
}
.index-wrap .person-content-item-wrap.style3 .person-wrap .person-list-wrap .person-item .person-img-wrap .person-avatar-wrap .subtitle {
  z-index: 22;
  color: #fff;
  font-size: 1.2rem;
  margin: 1rem 1.5rem;
  transition: all 0.3s ease-out 0s;
}
.index-wrap .person-content-item-wrap.style3 .person-wrap .person-list-wrap .person-item .person-img-wrap .person-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease-out 0s;
}
.index-wrap .person-content-item-wrap.style3 .person-wrap .person-list-wrap .person-item .person-info-wrap {
  z-index: 9;
  position: relative;
  padding: 1rem 1rem;
  transition: all 0.3s ease-out 0s;
}
.index-wrap .person-content-item-wrap.style3 .person-wrap .person-list-wrap .person-item .person-info-wrap .title {
  color: #333;
  font-size: 1.7rem;
}
.index-wrap .person-content-item-wrap.style3 .person-wrap .person-list-wrap .person-item .person-info-wrap .subtitle {
  font-size: 1.2rem;
  margin: .5rem 0;
  transition: all 0.3s ease-out 0s;
}
.index-wrap .person-content-item-wrap.style3 .person-wrap .person-list-wrap .person-item .person-info-wrap .desc {
  -ms-word-break: break-all;
  word-break: break-all;
  height: 0;
  font-size: 1.4rem;
  transition: all 0.3s ease-out 0s;
}
.index-wrap .person-content-item-wrap .swiper-button-next:after,
.index-wrap .person-content-item-wrap .swiper-button-prev:after {
  color: #90332c;
}
.index-wrap .person-content-item-wrap.style4 .content-title-wrap .title-img {
  height: 4rem;
}
.index-wrap .person-content-item-wrap.style4 .content-title-wrap {
  height: 5rem;
  border-bottom: 2px solid #ddd;
}
.index-wrap .person-content-item-wrap.style4 .content-title-wrap .title-wrap .title-icon {
  height: 2rem;
  margin-right: 1rem;
}
.index-wrap .person-content-item-wrap.style4 .content-title-wrap .title-wrap .title {
  color: #90332b;
  font-size: 2rem;
  white-space: nowrap;
}
.index-wrap .person-content-item-wrap.style4 .content-title-wrap .detail-wrap .more-btn-item {
  color: #90332b;
  font-size: 2rem;
}
.index-wrap .person-content-item-wrap.style4 .user-info-wrap {
  flex: 1;
  flex-shrink: 0;
  max-width: 47.5%;
}
.index-wrap .person-content-item-wrap.style4 .person-wrap .person-list-wrap .person-item {
  overflow: hidden;
  background: #f7f8f9;
  border-radius: 0.3rem;
max-width: 33.33%;}
.index-wrap .person-content-item-wrap.style4 .person-wrap .person-list-wrap .person-item:first-of-type {
  margin-left: 0;
}
.index-wrap .person-content-item-wrap.style4 .person-wrap .person-list-wrap .person-item:hover .person-img-wrap .person-avatar-wrap:before {
  top: 3px;
  border-color: #90332c;
}
.index-wrap .person-content-item-wrap.style4 .person-wrap .person-list-wrap .person-item:hover .person-img-wrap .person-avatar-wrap .person-img {
  margin-top: -6rem;
}
.index-wrap .person-content-item-wrap.style4 .person-wrap .person-list-wrap .person-item:hover .person-info-wrap {
  height: 8rem;
}
.index-wrap .person-content-item-wrap.style4 .person-wrap .person-list-wrap .person-item:hover .person-info-wrap {
  height: auto;
  margin-top: -6rem;
  background: #90332c;
  transition: all 0.3s ease-out 0s;
}
.index-wrap .person-content-item-wrap.style4 .person-wrap .person-list-wrap .person-item:hover .person-info-wrap .title,
.index-wrap .person-content-item-wrap.style4 .person-wrap .person-list-wrap .person-item:hover .person-info-wrap .subtitle,
.index-wrap .person-content-item-wrap.style4 .person-wrap .person-list-wrap .person-item:hover .person-info-wrap .desc {
  color: #fff;
}
.index-wrap .person-content-item-wrap.style4 .person-wrap .person-list-wrap .person-item:hover .person-info-wrap .desc {
  height: 6rem;
}
.index-wrap .person-content-item-wrap.style4 .person-wrap .person-list-wrap .person-item .person-img-wrap {
  transition: all 0.3s ease-out 0s;
}
.index-wrap .person-content-item-wrap.style4 .person-wrap .person-list-wrap .person-item .person-img-wrap .person-avatar-wrap {
  padding: 0;
  width: 100%;
  height: 20rem;
  overflow: hidden;
  transition: all 0.3s ease-out 0s;
}
.index-wrap .person-content-item-wrap.style4 .person-wrap .person-list-wrap .person-item .person-img-wrap .person-avatar-wrap:before {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  position: absolute;
  transition: all 0.3s ease-out 0s;
  border: 3px solid transparent;
  -webkit-margin-before: -3px;
  border-bottom: 0;
}
.index-wrap .person-content-item-wrap.style4 .person-wrap .person-list-wrap .person-item .person-img-wrap .person-avatar-wrap .subtitle {
  z-index: 22;
  color: #fff;
  font-size: 1.2rem;
  margin: 1rem 1.5rem;
  transition: all 0.3s ease-out 0s;
}
.index-wrap .person-content-item-wrap.style4 .person-wrap .person-list-wrap .person-item .person-img-wrap .person-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease-out 0s;
}
.index-wrap .person-content-item-wrap.style4 .person-wrap .person-list-wrap .person-item .person-info-wrap {
  z-index: 9;
  position: relative;
  padding: 1rem 1rem;
  transition: all 0.3s ease-out 0s;
}
.index-wrap .person-content-item-wrap.style4 .person-wrap .person-list-wrap .person-item .person-info-wrap .title {
  color: #333;
  font-size: 1.6rem;
}
.index-wrap .person-content-item-wrap.style4 .person-wrap .person-list-wrap .person-item .person-info-wrap .subtitle {
  font-size: 1.2rem;
  margin: .5rem 0;
  transition: all 0.3s ease-out 0s;
}
.index-wrap .person-content-item-wrap.style4 .person-wrap .person-list-wrap .person-item .person-info-wrap .desc {
  -ms-word-break: break-all;
  word-break: break-all;
  height: 0;
  font-size: 1.4rem;
  transition: all 0.3s ease-out 0s;
}
.index-wrap .person-content-item-wrap .swiper-button-next:after,
.index-wrap .person-content-item-wrap .swiper-button-prev:after {
  color: #90332c;
}
.index-wrap .column-content-item-wrap .container-con-wrap {
  padding: 3rem 3rem;
  background: #e1e1e1;
  border-radius: .5rem;
}
.index-wrap .column-content-item-wrap .content-title-wrap .title-wrap:before {
  width: 3px;
  content: '';
  height: 2rem;
  display: block;
  margin-right: 1rem;
  background: #90332b;
}
.index-wrap .column-content-item-wrap .content-title-wrap .detail-wrap .more-btn-item .btn-item-a {
  color: #90332b;
  font-size: 1.3rem;
  border-radius: 0.4rem;
  padding: 0.4rem 0.8rem;
  border: 1px solid #90332b;
}
.index-wrap .column-content-item-wrap .column-list-wrap .column-item {
  height: 12rem;
  margin: 0 1rem;
  min-width: 16rem;
  overflow: hidden;
}
.index-wrap .column-content-item-wrap .column-list-wrap .column-item .column-item-a:after {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: '';
  width: 100%;
  height: 100%;
  display: block;
  background: #0006;
  position: absolute;
}
.index-wrap .column-content-item-wrap .column-list-wrap .column-item .column-item-a .column-img {
  height: 100%;
  object-fit: cover;
  position: absolute;
}
.index-wrap .column-content-item-wrap .column-list-wrap .column-item .column-item-a .title {
  color: #fff;
  font-size: 2.4rem;
  white-space: normal;
}
/************      Inner       ************/
.team-wrap .team-list-wrap .team-item-wrap {
  width: 15.5%;
  flex-shrink: 0;
  margin-left: 1.4%;
  margin-bottom: 1.3%;
}
.team-wrap .team-list-wrap .team-item-wrap:nth-of-type(6n+1) {
  margin-left: 0;
}
.team-wrap .team-list-wrap .team-item-wrap .team-img-wrap {
  width: 100%;
  height: 25rem;
}
.team-wrap .team-list-wrap .team-item-wrap .team-img-wrap .team-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.team-wrap .team-list-wrap .team-item-wrap .title-wrap {
  height: 4rem;
  margin: 1rem 1rem;
}
.team-wrap .team-list-wrap .team-item-wrap .title-wrap .title {
  font-size: 1.6rem;
}
.team-wrap .team-list-wrap .team-item-wrap .title-wrap .subtitle {
  color: #666;
  font-size: 1.4rem;
}
.picture-wrap .picture-list-wrap .picture-list-item {
  width: 32%;
  margin-left: 2%;
  margin-bottom: 2rem;
}
.picture-wrap .picture-list-wrap .picture-list-item:nth-child(3n+1) {
  margin-left: 0;
}
.picture-wrap .picture-list-wrap .picture-list-item .picture-list-item-a {
  display: block;
}
.picture-wrap .picture-list-wrap .picture-list-item .picture-img-wrap {
  padding: 35% 0;
  position: relative;
  overflow: hidden;
  border-radius: .5rem;
}
.picture-wrap .picture-list-wrap .picture-list-item .picture-img-wrap .picture-img {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
}
.picture-wrap .picture-list-wrap .picture-list-item .picture-info-wrap {
  margin-top: 1rem;
}
.picture-wrap .picture-list-wrap .picture-list-item .picture-info-wrap .subtitle {
  color: #999;
  font-size: 1.4rem;
}
.picture-wrap .picture-list-wrap .picture-list-item .picture-info-wrap .title {
  line-height: 1.8;
  font-size: 1.6rem;
  margin-bottom: 1rem;
}
.picture-wrap .picture-list-wrap .picture-list-item .picture-info-wrap .title-line {
  width: 5rem;
  height: 2px;
  background: #333;
  margin-bottom: 1rem;
}
.picture-wrap .picture-list-wrap .picture-list-item .picture-info-wrap .detail-btn-item {
  color: #999;
  font-size: 1.4rem;
}
.news-wrap.news-main-wrap .news-list-wrap .news-item-wrap .news-img-wrap {
  display: block;
}
.news-wrap.news-main-wrap .news-list-wrap .news-item-wrap .news-info-wrap .desc {
  min-height: initial;
}
.news-wrap.news-main-wrap .news-list-wrap .news-item-wrap .news-info-wrap .detail-btn-wrap {
  display: flex;
}
.news-wrap .news-list-wrap .news-item-wrap {
  padding: 2rem 0;
  border-bottom: 1px solid #e5e5e5;
}
.news-wrap .news-list-wrap .news-item-wrap:first-of-type {
  padding-top: 0;
}
.news-wrap .news-list-wrap .news-item-wrap .news-img-wrap {
  display: none;
  width: 27rem;
  height: 15rem;
  overflow: hidden;
  margin-right: 5rem;
  border-radius: .5rem;
}
.news-wrap .news-list-wrap .news-item-wrap .news-img-wrap .news-img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.news-wrap .news-list-wrap .news-item-wrap .news-info-wrap {
  flex: 1;
}
.news-wrap .news-list-wrap .news-item-wrap .news-info-wrap .title-wrap .title {
  font-size: 1.6rem;
}
.news-wrap .news-list-wrap .news-item-wrap .news-info-wrap .title-wrap .date {
  color: #666;
  flex-shrink: 0;
  margin-left: 1rem;
}
.news-wrap .news-list-wrap .news-item-wrap .news-info-wrap .desc {
  color: #888;
  margin: 1rem 0;
  line-height: 1.6;
}
.news-wrap .news-list-wrap .news-item-wrap .news-info-wrap .detail-btn-wrap {
  display: none;
}
.news-wrap .news-list-wrap .news-item-wrap .news-info-wrap .detail-btn-wrap .detail-btn-item {
  color: #888;
  font-size: 1.3rem;
  border-radius: .5rem;
  padding: 0.5rem 1.2rem;
  border: 1px solid #999;
}
.news-wrap .news-list-wrap .news-item-wrap .news-info-wrap .detail-btn-wrap .detail-btn-item .btn-title .btn-icon {
  font-size: 1.4rem;
  margin-top: 0.3rem;
  margin-left: .5rem;
}
.notice-wrap .news-list-wrap .news-item-wrap {
  padding: 2rem 0;
}
.notice-wrap .news-list-wrap .news-item-wrap .news-img-wrap {
  display: none;
}
.notice-wrap .news-list-wrap .news-item-wrap .news-info-wrap .desc {
  min-height: initial;
}
.notice-wrap .news-list-wrap .news-item-wrap .news-info-wrap .detail-btn-wrap {
  display: none;
}
.search-wrap .search-list-wrap .search-item-wrap {
  padding: 2rem 0;
}
.search-wrap .search-list-wrap .search-item-wrap .news-info-wrap .desc {
  min-height: auto;
  margin-bottom: 0;
}
.leader-wrap .leader-list-wrap .news-item-wrap .news-img-wrap {
  height: 27rem;
}
.leader-wrap .leader-list-wrap .news-item-wrap .news-info-wrap {
  flex: 1;
}
.leader-wrap .leader-list-wrap .news-item-wrap .news-info-wrap .title-wrap .title {
  font-size: 1.8rem;
}
.leader-wrap .leader-list-wrap .news-item-wrap .news-info-wrap .title-wrap .subtitle {
  color: #666;
  margin: 1rem 0 3rem;
}
.leader-wrap .leader-list-wrap .news-item-wrap .news-info-wrap .desc {
  color: #999;
  margin: 1rem 0;
  line-height: 1.6;
  min-height: 4rem;
}
.contact-wrap .contact-content-wrap .contact-con-wrap {
  min-height: 20rem;
  padding: 5rem 5rem;
  position: relative;
  margin-top: -10rem;
  background: #f8f9fa;
  border-radius: .5rem;
}
.contact-wrap .contact-content-wrap .contact-con-wrap .wrap-content-wrap {
  margin-top: 6rem;
}
.contact-wrap .contact-content-wrap .contact-con-wrap .wrap-content-wrap .map-wrap {
  flex: 1;
  max-width: 50%;
}
.contact-wrap .contact-content-wrap .contact-con-wrap .wrap-content-wrap .contact-info-wrap {
  flex: 1;
  margin-left: 8rem;
}
.contact-wrap .contact-content-wrap .contact-con-wrap .wrap-content-wrap .contact-info-wrap .info-title-wrap .title {
  font-size: 2rem;
  font-weight: 600;
}
.contact-wrap .contact-content-wrap .contact-con-wrap .wrap-content-wrap .contact-info-wrap .info-title-wrap .title-line {
  height: 2px;
  width: 5rem;
  background: #999;
  margin-top: 2rem;
}
.contact-wrap .contact-content-wrap .contact-con-wrap .wrap-content-wrap .contact-info-wrap .info-content-wrap .info-context-wrap .info-item-wrap {
  line-height: 2;
}
.contact-wrap .contact-content-wrap .contact-con-wrap .wrap-content-wrap .contact-info-wrap .info-content-wrap .info-context-wrap .info-item-wrap .title {
  font-size: 1.4rem;
  color: #999;
}
.contact-wrap .contact-content-wrap .contact-con-wrap .wrap-content-wrap .contact-info-wrap .info-content-wrap .info-qr-code-wrap {
  margin-left: 5rem;
  width: 12rem;
}
.contact-wrap .contact-content-wrap .contact-con-wrap .wrap-content-wrap .contact-info-wrap .info-content-wrap .info-qr-code-wrap .qr-code-title {
  color: #999;
  font-size: 1.4rem;
  margin-top: .5rem;
}
.contact-wrap .contact-content-wrap .recruitment-notice-wrap {
  margin: 5rem 0;
}
.contact-wrap .contact-content-wrap .recruitment-notice-wrap .title-wrap {
  border-bottom: 1px dashed #ccc;
  margin-bottom: 3rem;
}
.contact-wrap .contact-content-wrap .recruitment-notice-wrap .title-wrap .title {
  font-size: 1.8rem;
  margin-bottom: 2rem;
}
.contact-wrap .contact-content-wrap .recruitment-notice-wrap .context-wrap {
  color: #666;
  line-height: 1.5;
  text-align: justify;
}
.contact-wrap .contact-content-wrap .job-list-wrap .job-item-wrap {
  border-top: 1px dashed #ccc;
  padding: 2rem 0;
}
.contact-wrap .contact-content-wrap .job-list-wrap .job-item-wrap .job-img-wrap {
  width: 25rem;
  margin-right: 5rem;
}
.contact-wrap .contact-content-wrap .job-list-wrap .job-item-wrap .job-info-wrap {
  flex: 1;
}
.contact-wrap .contact-content-wrap .job-list-wrap .job-item-wrap .job-info-wrap .title-wrap {
  margin-bottom: 2rem;
}
.contact-wrap .contact-content-wrap .job-list-wrap .job-item-wrap .job-info-wrap .title-wrap .title {
  font-size: 1.6rem;
}
.contact-wrap .contact-content-wrap .job-list-wrap .job-item-wrap .job-info-wrap .context-wrap {
  color: #999;
  line-height: 1.5;
  text-align: justify;
}
/************      Article     ************/
.article-wrap .article-content-wrap {
  flex: 1;
}
.article-wrap .article-content-wrap .article-title-wrap .title {
  font-size: 2rem;
}
.article-wrap .article-content-wrap .article-title-wrap .date {
  color: #666;
  font-size: 1.2rem;
  margin: 1rem 0 1.5rem;
}
.article-wrap .article-content-wrap .article-line {
  margin: 1rem 0;
}
.article-wrap .article-content-wrap .article-detail-wrap {
  color: #3a3a3a;
  line-height: 2;
  font-size: 1.4rem;
  word-break: break-all;
}
.article-wrap .article-content-wrap .article-other-wrap {
  min-height: 6rem;
  margin: 5rem 0;
  line-height: 2;
  padding: 1rem 3rem;
  background: #f7f8f9;
  border-radius: 0.2rem;
}
.article-wrap .article-content-wrap .article-other-wrap .other-item-wrap a {
  color: #666;
}
.article-wrap .article-content-wrap .other-line {
  height: 3rem;
  margin: 0 1rem;
}
.article-wrap .article-line {
  margin: 5rem 0;
}
.article-wrap .related-con-wrap .con-title-wrap {
  overflow: hidden;
}
.article-wrap .related-con-wrap .con-title-wrap .title {
  color: #666;
  font-size: 1.6rem;
}
.article-wrap .related-con-wrap .con-nav-wrap {
  margin: 2rem 0;
}
.article-wrap .related-con-wrap .con-nav-wrap .nav-item .nav-item-a {
  color: #666;
  font-size: 1.2rem;
  margin-right: 1rem;
  padding: 0.5rem 1rem;
  border: 1px solid #999;
}
.article-wrap .related-con-wrap .con-detail-wrap .arc-list-wrap .arc-item-wrap {
  padding: 2rem 0;
  border-bottom: 1px solid #e5e5e5;
}
.article-wrap .related-con-wrap .con-detail-wrap .arc-list-wrap .arc-item-wrap .arc-item-a .title {
  color: #333;
}
.article-wrap .related-con-wrap .con-detail-wrap .arc-list-wrap .arc-item-wrap .arc-item-a .desc {
  color: #666;
  margin-top: 1rem;
  font-size: 1.3rem;
  text-align: justify;
}
.news-article-wrap .article-content-wrap {
  margin-right: 10rem;
}
.news-article-wrap .article-line {
  margin: 1rem 0 0.4rem;
}
.news-article-wrap .related-con-wrap {
  width: 30rem;
}
.news-article-wrap .related-con-wrap .con-nav-wrap {
  margin: 2rem 0;
}
.notice-article-wrap .related-con-wrap {
  display: none;
}
/************      SideBar     ************/
.sidebar-wrap {
  top: 50%;
  right: 3rem;
  width: 5rem;
  display: flex;
  background: #fff;
  align-items: center;
  border-radius: 2.5rem;
  justify-content: center;
  box-shadow: 0 2px 15px 0 rgba(0, 0, 0, 0.1);
}
.sidebar-wrap .sidebar-list-wrap {
  margin: 1rem .5rem;
}
.sidebar-wrap .sidebar-list-wrap .sidebar-item {
  margin: 6px;
  width: 36px;
  height: 36px;
  color: #3d3d3d;
  display: flex;
  cursor: pointer;
  text-align: center;
  position: relative;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  transition: all 0.2s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.sidebar-wrap .sidebar-list-wrap .sidebar-item:hover,
.sidebar-wrap .sidebar-list-wrap .sidebar-item.cur {
  color: #ff6a00;
  background: #f9f9f9;
  border-radius: 18px;
}
.sidebar-wrap .sidebar-list-wrap .sidebar-item:hover .sidebar-icon,
.sidebar-wrap .sidebar-list-wrap .sidebar-item.cur .sidebar-icon {
  color: #ff6a00;
}
.sidebar-wrap .sidebar-list-wrap .sidebar-item:hover .sidebar-con-wrap,
.sidebar-wrap .sidebar-list-wrap .sidebar-item.cur .sidebar-con-wrap {
  right: 36px;
  display: block;
}
.sidebar-wrap .sidebar-list-wrap .sidebar-item .sidebar-icon {
  color: #3d3d3d;
  font-size: 2rem;
}
.sidebar-wrap .sidebar-list-wrap .sidebar-item .sidebar-con-wrap {
  display: none;
  padding-right: 2.5rem;
}
.sidebar-wrap .sidebar-list-wrap .sidebar-item .sidebar-con-wrap .detail-wrap {
  padding: 1rem;
  min-width: 14rem;
  background: #fff;
  position: relative;
  box-shadow: 0 2px 15px 0 rgba(0, 0, 0, 0.1);
}
.sidebar-wrap .sidebar-list-wrap .sidebar-item .sidebar-con-wrap .detail-wrap:after {
  right: -6px;
  width: 12px;
  content: "";
  height: 12px;
  position: absolute;
  top: calc(43%);
  background-color: #fff;
  transform: rotate(45deg);
  box-sizing: content-box !important;
  box-shadow: 0 2px 15px 0 rgba(0, 0, 0, 0.1);
}
.sidebar-wrap .sidebar-list-wrap .sidebar-item .sidebar-con-wrap .con-title {
  color: #333;
  font-size: 1.3rem;
  margin-bottom: .5rem;
}
.sidebar-wrap .sidebar-list-wrap .sidebar-item .sidebar-con-wrap .con-subtitle .subtitle {
  color: #90332b;
  font-size: 1.4rem;
}
.sidebar-wrap .sidebar-list-wrap .sidebar-line {
  width: 2rem;
  background: #ededed;
}
.back-top-wrap {
  right: 3rem;
  bottom: 4rem;
}
.back-top-wrap .to-top-btn-item {
  height: 0;
  width: 5rem;
  overflow: hidden;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 2px 15px 0 rgba(0, 0, 0, 0.1);
}
.back-top-wrap .to-top-btn-item.cur {
  height: 5rem;
}
.back-top-wrap .to-top-btn-item .btn-icon {
  width: 2.5rem;
  color: #90332b;
  font-size: 2rem;
}
/************      Footer      ************/
.footer-wrap {
  color: #fff;
  background-size: cover;
  background-color: #90332c;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url('../img/img_bg_footer.png');
}
.footer-wrap .footer-top-wrap {
  margin: 5rem 0 3rem;
}
.footer-wrap .footer-top-wrap .links-wrap .links-item-wrap {
  position: relative;
  margin-right: 3rem;
}
.footer-wrap .footer-top-wrap .links-wrap .links-item-wrap .links-title {
  font-size: 1.8rem;
  color: #fff;
}
.footer-wrap .footer-top-wrap .links-wrap .links-item-wrap .links-list-wrap {
  position: absolute;
  background: #fff;
  min-width: 20rem;
  display: none;
  padding: 1rem;
  border-radius: .5rem;
  margin-top: 1rem;
  left: 50%;
  margin-left: -12rem;
}
.footer-wrap .footer-top-wrap .links-wrap .links-item-wrap .links-list-wrap.cur {
  display: block;
}
.footer-wrap .footer-top-wrap .links-wrap .links-item-wrap .links-list-wrap:before {
  display: block;
  content: '';
  border-bottom: 10px solid #fff;
  border-left: 10px solid #0000;
  border-right: 10px solid #0000;
  position: absolute;
  top: -10px;
  left: 50%;
  margin-left: -2.5px;
}
.footer-wrap .footer-top-wrap .links-wrap .links-item-wrap .links-list-wrap .links-list-item {
  line-height: 1.6;
}
.footer-wrap .footer-top-wrap .links-wrap .links-item-wrap .links-list-wrap .links-list-item .links-item-a:hover {
  color: #90332b;
  text-decoration: underline;
}
.footer-wrap .footer-top-wrap .logo-wrap .logo-img {
  height: 7rem;
}
.footer-wrap .footer-top-wrap .logo-wrap .phone-text {
  font-size: 2rem;
  color: #fff;
  margin-top: 2rem;
}
.footer-wrap .footer-top-wrap .college-info-wrap .qr-code-wrap {
  margin-left: 5rem;
}
.footer-wrap .footer-top-wrap .college-info-wrap .qr-code-wrap .qr-code-imgs-wrap .qr-code-img {
  width: 12rem;
  height: 12rem;
  margin-left: .2rem;
}
.footer-wrap .footer-top-wrap .college-info-wrap .qr-code-wrap .qr-code-title {
  font-size: 1.4rem;
  color: #fff;
  line-height: 1.6;
  margin-top: 1rem;
}
.footer-wrap .footer-top-wrap .powerby-en-wrap {
  color: #fff;
}
.footer-wrap .footer-bot-wrap {
  padding: 1.5rem 0;
  font-size: 1.3rem;
  border-top: 1px solid #fff;
}
.footer-wrap .footer-bot-wrap .info-item {
  color: #fff;
}
.footer-wrap .footer-bot-wrap .info-line {
  height: 1.5rem;
  margin: 0 .5rem;
}
.fixed-btn-wrap {
  right: 0;
  bottom: 15vh;
}
.fixed-btn-wrap .go-top-btn-item {
  height: 0;
  width: 5.8rem;
  overflow: hidden;
}
.fixed-btn-wrap .go-top-btn-item.cur {
  height: 3rem;
}
.fixed-btn-wrap .go-top-btn-item .btn-icon {
  width: 3rem;
  height: 3rem;
}
.entry-site-btn {
  top: 35vh;
  right: 1rem;
  width: 15rem;
}
.entry-site-btn .entry-site-img {
  width: 100%;
}
@keyframes heartBeat {
  /*定义关键帧、scaleDrew是需要绑定到选择器的关键帧名称*/
  0% {
    transform: scale(1);
    /*开始为原始大小*/
  }
  25% {
    transform: scale(1.05);
    /*放大1.1倍*/
  }
  50% {
    transform: scale(1);
  }
  75% {
    transform: scale(1.05);
  }
}
.animation-heart-beat {
  animation: heartBeat 3s ease-in-out infinite;
  /* 其它浏览器兼容性前缀 */
  -webkit-animation: heartBeat 3s ease-in-out infinite;
  -moz-animation: heartBeat 3s ease-in-out infinite;
  -ms-animation: heartBeat 3s ease-in-out infinite;
  -o-animation: heartBeat 3s ease-in-out infinite;
}
/************      Footer      ************/
/************      Layer       ************/
body .layui-layer .layui-layer-btn .layui-layer-btn0 {
  border-color: #d82e25;
  background-color: #d82e25;
}
/************      Popup       ************/
.layui-layer-content .feedback-form-wrap {
  flex: 1;
  background: #fff;
  padding: 2rem 4rem;
  border-radius: .5rem;
}
.layui-layer-content .feedback-form-wrap .wrap-title-wrap {
  color: #90332b;
  font-size: 2.5rem;
}
.layui-layer-content .feedback-form-wrap .form-wrap .form-item-wrap {
  margin: 2rem 0;
}
.layui-layer-content .feedback-form-wrap .form-wrap .form-item-wrap .input-item-wrap {
  flex: 1;
  overflow: hidden;
  margin-left: 2rem;
  border-radius: .5rem;
  border: 1px solid #ccc;
}
.layui-layer-content .feedback-form-wrap .form-wrap .form-item-wrap .input-item-wrap:first-of-type {
  margin-left: 0;
}
.layui-layer-content .feedback-form-wrap .form-wrap .form-item-wrap .input-item-wrap .input-item {
  border: 0;
  width: 100%;
  height: 3.4rem;
}
.layui-layer-content .feedback-form-wrap .form-wrap .form-item-wrap .input-item-wrap .text-area-item {
  border: 0;
  width: 100%;
  height: 100%;
  height: 8rem;
}
.layui-layer-content .feedback-form-wrap .form-wrap .form-item-wrap .text-area-wrap {
  padding: 1rem 1rem;
}
.layui-layer-content .feedback-form-wrap .form-wrap .form-btn-wrap {
  margin-top: 3rem;
}
.layui-layer-content .feedback-form-wrap .form-wrap .form-btn-wrap .submit-btn-item {
  border: 0;
  color: #fff;
  width: 16rem;
  height: 4rem;
  margin: auto;
  background: #90332b;
  border-radius: .5rem;
}
/************      Pages       ************/
.pages-wrap {
  margin: 5rem auto;
}
.pages-wrap ul {
  display: flex;
  align-items: center;
  justify-content: center;
}
.pages-wrap ul li {
  display: flex;
  margin: 0 1rem;
  font-size: 1.6rem;
  align-items: center;
  padding: 0.5rem 1rem;
  border-radius: 0.3rem;
  justify-content: center;
  border: 1px solid #e5e5e5;
}
.pages-wrap ul li.disabled {
  color: #999;
  background: #f8f8f8;
  border-color: #f8f8f8;
}
.pages-wrap ul li.active {
  color: #fff;
  background: #90332b;
  border-color: #90332b;
}
.pages-wrap ul li span {
  height: auto;
}
.pages-wrap ul li a {
  color: #999;
}