﻿@charset "utf-8";
.border-box {
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
}
/* 图片放大 */
.img_scale {
  overflow: hidden;
}
.img_scale img {
  transition: transform 1s;
  -ms-transition: transform 1s;
  -o-transition: transform 1s;
  -webkit-transition: transform 1s;
  -moz-transition: transform 1s;
}
.img_scale:hover img {
  transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
}
.apple-banner {
  width: 100%;
  height: 725px;
  opacity: 0;
  overflow: hidden;
  transition: opacity 0.7s;
  -ms-transition: opacity 0.7s;
  -o-transition: opacity 0.7s;
  -webkit-transition: opacity 0.7s;
  -moz-transition: opacity 0.7s;
  position: relative;
}
.apple-banner .swiper-container {
  -webkit-transform: translate3d(0px, -77px, 0px);
  -moz-transform: translate3d(0px, -77px, 0px);
  transform: translate3d(0px, -77px, 0px);
  /*margin-top: -40px;*/
  width: 100%;
  height: 725px;
}
.apple-banner .slide-img img{
  max-width: 100%;
}
.apple-banner .swiper-wrapper {
  height: 899px;
}
.apple-banner .arrow-left {
  position: absolute;
  left: 0px;
  top: 0;
  width: 15%;
  height: 100%;
  z-index: 999;
}
.apple-banner .arrow-left span {
  margin-top: -32px;
  display: block;
  left: 20px;
  top: 50%;
  position: absolute;
  width: 64px;
  height: 64px;
  -moz-border-radius: 100%;
  border-radius: 100%;
  background: rgba(180, 180, 180, 0.25) url(../images/arrows.png) no-repeat center 17px;
  opacity: 0;
  -o-transition: opacity 0.5s ease;
  -moz-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
}
.apple-banner .arrow-left:hover span {
  opacity: .6;
}
.apple-banner .arrow-right {
  position: absolute;
  right: 0px;
  top: 0;
  width: 15%;
  height: 100%;
  z-index: 999;
}
.apple-banner .arrow-right span {
  margin-top: -32px;
  display: block;
  right: 20px;
  top: 50%;
  position: absolute;
  width: 64px;
  height: 64px;
  -moz-border-radius: 100%;
  border-radius: 100%;
  background: rgba(180, 180, 180, 0.25) url(../images/arrows.png) no-repeat center -71px;
  opacity: 0;
  -o-transition: opacity 0.5s ease;
  -moz-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
}
.apple-banner .arrow-right:hover span {
  opacity: .6;
}
.apple-banner .pagination {
  position: absolute;
  left: 0;
  text-align: center;
  bottom: 35px;
  z-index: 99;
  width: 100%;
}
.apple-banner .pagination {
  font-size: 0;
}
.apple-banner .pagination li {
  display: inline-block;
  width: 22px;
  height: 22px;
  margin: 0 10px;
  cursor: pointer;
}
.apple-banner .pagination li span {
  width: 60px;
  height: 3px;
  display: block;
  background: rgba(255, 255, 255, 0.6);
}
.apple-banner .pagination li span i {
  background: #014fa2;
  height: 3px;
  display: block;
  opacity: 0;
}
.apple-banner .pagination li em {
  display: block;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  position: relative;
}
.apple-banner .pagination li em:after {
  content: "";
  width: 4px;
  height: 4px;
  background: #ffffff;
  border-radius: 50%;
  left: 50%;
  top: 50%;
  position: absolute;
  margin-left: -2px;
  margin-top: -2px;
}
.apple-banner .pagination li em:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  border: 3px solid #f8c80f;
  border-radius: 50%;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
}
.apple-banner .pagination li:hover em:before,
.apple-banner .pagination li.current em:before {
  transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
}
.apple-banner .pagination .current span i,
.pagination .firstCurrent span i {
  -o-transition: all .5s ease;
  -moz-transition: all .5s ease;
  transition: all .5s ease;
  opacity: 1;
}
.apple-banner .pagination .click span {
  background: #014fa2;
}
.apple-banner .pagination .click span i {
  display: none;
}
.apple-banner .autoplay li span i {
  -webkit-transform: scaleX(0);
  -moz-transform: scaleX(0);
  -o-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: 0;
  -moz-transform-origin: 0;
  -o-transform-origin: 0;
  transform-origin: 0;
  opacity: 1;
}
.apple-banner .autoplay .firstCurrent span i {
  -webkit-transform: scaleX(1);
  -moz-transform: scaleX(1);
  -o-transform: scaleX(1);
  transform: scaleX(1);
  -o-transition: all 5s linear;
  -moz-transition: all 5s linear;
  transition: all 5s linear;
}
.apple-banner .autoplay .current span i {
  -webkit-transform: scaleX(1);
  -moz-transform: scaleX(1);
  -o-transform: scaleX(1);
  transform: scaleX(1);
  -o-transition: all 6.5s linear;
  -moz-transition: all 6.5s linear;
  transition: all 6.5s linear;
}
.apple-banner .autoplay .replace span {
  background: #014fa2;
}
.apple-banner .autoplay .replace span i {
  -webkit-transform: scaleX(0);
  -moz-transform: scaleX(0);
  -o-transform: scaleX(0);
  transform: scaleX(0);
}
/*内容样式*/
.apple-banner .swiper-slide .title {
  position: absolute;
  width: 850px;
  text-align: center;
  right: 150px;
  top: 50%;
  transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  font-family: 'Didot';
  color: #fff;
  line-height: 1;
}
.apple-banner .swiper-slide .title .p1 {
  font-size: 80px;
  font-style: italic;
  margin-bottom: 30px;
}
.apple-banner .swiper-slide .title .p2 {
  font-family: "Microsoft YaHei";
  font-size: 28px;
  margin-bottom: 20px;
}
.apple-banner .swiper-slide .title .p3 {
  font-style: italic;
  font-size: 14px;
  color: #ffffff;
  opacity: 0.2;
  filter: alpha(opacity=20);
}
.main-tit {
  text-align: center;
  margin-top: 4.1667%;
  margin-bottom: 4.1667%;
}
.main-tit .line {
  width: 60px;
  height: 1px;
  position: relative;
  margin: 20px auto;
}
.main-tit .line:after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 50%;
  margin-left: -30px;
  top: 0;
  background: #999999;
  display: block;
}
.main-tit .tit1 {
  color: #bfbfbf;
  font-size: 32px;
  font-family: 'Didot';
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 10px;
}
.main-tit .tit2 {
  font-size: 24px;
  color: #444444;
  line-height: 1;
  letter-spacing: 3px;
}
.course {
  border-bottom: 1px solid #e2e2e2;
  padding-bottom: 4.427%;
}
.course .container {
  width: 1289px;
  margin: 0 auto;
}
.course-list ul {
  margin-left: -11px;
  margin-right: -11px;
}
.course-list ul li {
  float: left;
  width: 33.3333%;
  padding-left: 11px;
  padding-right: 11px;
  transition: all 0.6s ease 0s;
  -ms-transition: all 0.6s ease 0s;
  -o-transition: all 0.6s ease 0s;
  -webkit-transition: all 0.6s ease 0s;
  -moz-transition: all 0.6s ease 0s;
  position: relative;
  margin-bottom: 30px;
  border-radius: 4px;
}
.course-list a {
  display: block;
  overflow: hidden;
  /*  &:after{
           content: "";
           width: 100%;
           height: 0;
           background-color: rgba(0, 0, 0, 0.85);
           position: absolute;
           top: 0px;
           opacity: 0;
           transition: all 0.3s ease 0s;
           z-index: 9;
       } */
}
.course-list .course-img {
  overflow: hidden;
  position: relative;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}
.course-list .course-img img {
  transition: all 0.6s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
  -ms-transition: all 0.6s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
  -o-transition: all 0.6s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
  -webkit-transition: all 0.6s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
  -moz-transition: all 0.6s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
  max-width: 100%;
  height: auto;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}
.course-list .course-img:after {
  content: "";
  width: 100%;
  height: 0;
  background-color: rgba(0, 0, 0, 0.85);
  position: absolute;
  top: 0px;
  opacity: 0;
  transition: all 0.3s ease 0s;
  z-index: 9;
}
.course-list .course-img .course-mask {
  width: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  z-index: 10;
}
.course-list .course-img .course-mask .txt1 {
  font-size: 24px;
  color: #f8c80f;
  font-family: "Didot";
  text-transform: uppercase;
  line-height: 1.2;
  text-align: center;
  padding-left: 8%;
  padding-right: 8%;
  opacity: 0;
  transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  -o-transform: translateY(-100%);
  -webkit-transform: translateY(-100%);
  -moz-transform: translateY(-100%);
  transition: all 0.6s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
  -ms-transition: all 0.6s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
  -o-transition: all 0.6s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
  -webkit-transition: all 0.6s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
  -moz-transition: all 0.6s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
}
.course-list .course-img .course-mask .txt2 {
  margin-top: 20px;
  text-align: center;
  opacity: 0;
  transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  -o-transform: translateY(-100%);
  -webkit-transform: translateY(-100%);
  -moz-transform: translateY(-100%);
  transition: all 0.6s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
  -ms-transition: all 0.6s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
  -o-transition: all 0.6s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
  -webkit-transition: all 0.6s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
  -moz-transition: all 0.6s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
}
.course-list .course-info {
  position: relative;
}
.course-list .course-info > div {
  padding: 25px 20px 35px 10px;
  transition: all 0.6s ease 0s;
  -ms-transition: all 0.6s ease 0s;
  -o-transition: all 0.6s ease 0s;
  -webkit-transition: all 0.6s ease 0s;
  -moz-transition: all 0.6s ease 0s;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}
.course-list .course-info .title {
  font-size: 24px;
  line-height: 1;
  transition: all 0.6s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
  -ms-transition: all 0.6s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
  -o-transition: all 0.6s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
  -webkit-transition: all 0.6s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
  -moz-transition: all 0.6s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
  color: #222222;
  text-align: left;
  padding: 0;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  display: block;
}
.course-list .course-info .subtitle {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  color: #999999;
  font-size: 14px;
  margin-top: 13px;
  line-height: 24px;
  position: relative;
  transition: all 0.6s ease 0s;
  height: 48px;
}
.course-list ul li:hover a {
  box-shadow: 0px 12px 64px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0px 12px 64px rgba(0, 0, 0, 0.1);
}
.course-list ul li:hover .course-img img {
  transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
}
.course-list ul li:hover .course-img:after {
  height: 100%;
  opacity: 1;
}
.course-list ul li:hover .course-info > div {
  margin-left: 15px;
}
.course-list ul li:hover .course-mask .txt1 {
  transform: none;
  -ms-transform: none;
  -o-transform: none;
  -webkit-transform: none;
  -moz-transform: none;
  opacity: 1;
}
.course-list ul li:hover .course-mask .txt2 {
  transform: none;
  -ms-transform: none;
  -o-transform: none;
  -webkit-transform: none;
  -moz-transform: none;
  opacity: 1;
}
.teacher-warp {
  position: relative;
  width: 100%;
  margin-top: 8.59375%;
}
.teacher-warp .teacher-bg {
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
  background: url(../images/teach-bg.jpg) no-repeat;
  background-position: center 0;
  background-size: cover;
  will-change: transform;
}
.teacher-warp .teacher1 {
  position: absolute;
  left: 40%;
  bottom: 0;
  width: 23.6979%;
  z-index: 2;
  cursor: pointer;
}
.teacher-warp .teacher1 .teacher-txt {
  top: 10%;
  left: -62%;
  width: 396px;
  padding: 15px 22px;
  border: 1px solid #f8c80f;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  border-bottom: 0;
}
.teacher-warp .teacher1 .teacher-txt:after {
  content: '';
  background: url('../images/box-left.png') no-repeat center / cover;
  position: absolute;
  bottom: -15px;
  left: -2px;
  width: 101%;
  height: 15px;
}
.teacher-warp .teacher1 .teacher-txt h3 {
  font-size: 28px;
  color: #fff;
  font-weight: normal;
}
.teacher-warp .teacher1 .teacher-txt span {
  display: inline-block;
  font-size: 14px;
  color: #999;
  margin-bottom: 15px;
  width: 80%;
}
.teacher-warp .teacher1 .teacher-txt p {
  font-size: 14px;
  color: #999;
  line-height: 21px;
  width: 96%;
}
.teacher-warp .teacher2 {
  position: absolute;
  left: 51%;
  bottom: 0;
  width: 23.125%;
  z-index: 3;
  cursor: pointer;
}
.teacher-warp .teacher2 .teacher-txt {
  bottom: 43%;
  right: -93%;
  width: 396px;
  padding: 15px 22px;
  border: 1px solid #f8c80f;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  border-bottom: 0;
}
.teacher-warp .teacher2 .teacher-txt:after {
  content: '';
  background: url('../images/box.png') no-repeat center / cover;
  position: absolute;
  bottom: -11px;
  left: -2px;
  width: 101%;
  height: 15px;
}
.teacher-warp .teacher2 .teacher-txt h3 {
  font-size: 28px;
  color: #fff;
  font-weight: normal;
}
.teacher-warp .teacher2 .teacher-txt span {
  display: inline-block;
  font-size: 14px;
  color: #999;
  margin-bottom: 15px;
  width: 80%;
}
.teacher-warp .teacher2 .teacher-txt p {
  font-size: 14px;
  color: #999;
  line-height: 21px;
  width: 96%;
}
.teacher-warp .teacher3 {
  position: absolute;
  left: 65%;
  bottom: 0;
  width: 19.0625%;
  z-index: 2;
  cursor: pointer;
}
.teacher-warp .teacher3 .teacher-txt {
  bottom: 52%;
  right: -68%;
  width: 358px;
  padding: 15px 22px;
  border: 1px solid #f8c80f;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  border-bottom: 0;
}
.teacher-warp .teacher3 .teacher-txt:after {
  content: '';
  background: url('../images/box.png') no-repeat center;
  position: absolute;
  bottom: -10px;
  left: 0px;
  width: 100%;
  height: 15px;
}
.teacher-warp .teacher3 .teacher-txt h3 {
  font-size: 28px;
  color: #fff;
  font-weight: normal;
}
.teacher-warp .teacher3 .teacher-txt span {
  display: inline-block;
  font-size: 14px;
  color: #999;
  width: 80%;
  margin-bottom: 15px;
}
.teacher-warp .teacher3 .teacher-txt p {
  font-size: 14px;
  color: #999;
  line-height: 21px;
  width: 96%;
}
.teacher-warp .teacher-hover {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  transition: opacity 1s cubic-bezier(0.215, 0.61, 0.355, 1);
  -ms-transition: opacity 1s cubic-bezier(0.215, 0.61, 0.355, 1);
  -o-transition: opacity 1s cubic-bezier(0.215, 0.61, 0.355, 1);
  -webkit-transition: opacity 1s cubic-bezier(0.215, 0.61, 0.355, 1);
  -moz-transition: opacity 1s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.teacher-warp .teacher-txt {
  position: absolute;
  opacity: 0;
  transition: opacity 1s cubic-bezier(0.215, 0.61, 0.355, 1) 0.1s;
  -ms-transition: opacity 1s cubic-bezier(0.215, 0.61, 0.355, 1) 0.1s;
  -o-transition: opacity 1s cubic-bezier(0.215, 0.61, 0.355, 1) 0.1s;
  -webkit-transition: opacity 1s cubic-bezier(0.215, 0.61, 0.355, 1) 0.1s;
  -moz-transition: opacity 1s cubic-bezier(0.215, 0.61, 0.355, 1) 0.1s;
}
.teacher-con {

  color: #ffffff;
}
.teacher-con .tit1-1 {
  opacity: 0.1;
  color: #fff;
  font-family: "Didot";
  line-height: 1;
}
.teacher-con .tit1-1 span {
  font-size: 44px;
  opacity: 0;
  transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  transition: opacity cubic-bezier(0.57, 0.1, 0.18, 1.03) 0.8s;
  -ms-transition: opacity cubic-bezier(0.57, 0.1, 0.18, 1.03) 0.8s;
  -o-transition: opacity cubic-bezier(0.57, 0.1, 0.18, 1.03) 0.8s;
  -webkit-transition: opacity cubic-bezier(0.57, 0.1, 0.18, 1.03) 0.8s;
  -moz-transition: opacity cubic-bezier(0.57, 0.1, 0.18, 1.03) 0.8s;
}
.teacher-con .tit1-2 {
  opacity: 0.1;
  color: #fff;
  font-family: "Didot";
  line-height: 1;
  text-transform: uppercase;
}
.teacher-con .tit1-2 span {
  font-size: 90px;
  opacity: 0;
  transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  transition: opacity cubic-bezier(0.57, 0.1, 0.18, 1.03) 0.8s;
  -ms-transition: opacity cubic-bezier(0.57, 0.1, 0.18, 1.03) 0.8s;
  -o-transition: opacity cubic-bezier(0.57, 0.1, 0.18, 1.03) 0.8s;
  -webkit-transition: opacity cubic-bezier(0.57, 0.1, 0.18, 1.03) 0.8s;
  -moz-transition: opacity cubic-bezier(0.57, 0.1, 0.18, 1.03) 0.8s;
}
.teacher-con .tit2 {
  line-height: 1;
  margin-top: 10px;
  position: relative;
  width: 154px;
  height: 22px;
}
.teacher-con .tit2 span {
  font-size: 22px;
  display: block;
  position: absolute;
}
.teacher-con .txt1 {

  font-size: 14px;
  line-height: 30px;
  margin-top: 20px;

  position: relative;
}
.teacher-con .txt1 a{
  color: #fff;
}

.teacher-con .sign {
  margin: 30px 0 0 0;
}
.graduates-menu {
  text-align: right;
  margin-bottom: 48px;
  display: block;
}
.graduates-menu a {
  margin-left: 35px;
  color: #999999;
  font-size: 14px;
  padding: 0 2.5px;
  position: relative;
  padding-bottom: 10px;
  display: inline-block;
  transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
}
.graduates-menu a:after {
  content: "";
  position: absolute;
  width: 0;
  height: 3px;
  left: 0;
  bottom: 0;
  background: #f8c80f;
  transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
}
.graduates-menu a.cur,
.graduates-menu a:hover {
  color: #333333;
}
.graduates-menu a.cur:after,
.graduates-menu a:hover:after {
  width: 100%;
}
.graduates {
  padding-bottom: 5.46875%;
}
.graduates .container {
  width: 1289px;
  margin: 0 auto;
}
.graduates .swiper-slide {
  padding: 15px 10px;
  position: relative;
  cursor: pointer;
  height: 400px;
  transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
  -ms-transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
  -o-transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
  -webkit-transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
  -moz-transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
}
.graduates .header {
  margin-top: 40px;
}
.graduates .graduates-info {
  font-size: 0;
  transition: all 0.6s;
  -ms-transition: all 0.6s;
  -o-transition: all 0.6s;
  -webkit-transition: all 0.6s;
  -moz-transition: all 0.6s;
}
.graduates .graduates-info > div {
  display: inline-block;
  vertical-align: middle;
  margin-right: 15px;
}
.graduates .graduates-info > div .name {
  font-size: 20px;
  color: #333333;
  line-height: 1;
}
.graduates .graduates-info > div .name-en {
  color: #999999;
  font-size: 12px;
  line-height: 1;
  margin-top: 10px;
}
.graduates .summary {
  padding: 45px 35px 50px;
  background-color: #efefef;
  transition: all 0.4s ease 0s;
  -ms-transition: all 0.4s ease 0s;
  -o-transition: all 0.4s ease 0s;
  -webkit-transition: all 0.4s ease 0s;
  -moz-transition: all 0.4s ease 0s;
  top: 0px;
  position: relative;
  border-radius: 4px;
}
.graduates .summary:after {
  content: '';
  position: absolute;
  bottom: -7px;
  left: 36px;
  width: 0;
  height: 0;
  border-top: 10px solid #efefef;
  border-right: 10px solid transparent;
  border-left: 10px solid transparent;
  transition: all 0.36s ease;
}
.graduates .summary .title {
  font-size: 20px;
  color: #333333;
  margin-bottom: 20px;
  line-height: 1;
}
.graduates .summary .subtitle {
  font-size: 14px;
  color: #333333;
}
.graduates .summary .subtitle2{
  height: 48px;
  line-height: 24px;
  margin-top: 5px;
}
.graduates .summary .description {
  color: #999999;
  font-size: 14px;
  margin-top: 20px;
  transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  line-height: 24px;
}
.graduates .swiper-slide:hover .summary {
  background: #f8c80f;
  position: relative;
  transform: translateY(-15px);
  -ms-transform: translateY(-15px);
  -o-transform: translateY(-15px);
  -webkit-transform: translateY(-15px);
  -moz-transform: translateY(-15px);
}
.graduates .swiper-slide:hover .summary:after {
  border-top: 10px solid  #f8c80f;
}
.graduates .swiper-slide:hover .graduates-info {
  transform: translateY(-5px);
  -ms-transform: translateY(-5px);
  -o-transform: translateY(-5px);
  -webkit-transform: translateY(-5px);
  -moz-transform: translateY(-5px);
}
.graduates .swiper-slide:hover .description {
  color: #7b7458;
}
.graduates .swiper-pagination {
  position: relative;
  text-align: center;
}
.graduates .swiper-pagination span {
  display: inline-block;
  width: 22px;
  height: 22px;
  margin: 0 5px;
  border-radius: 50%;
  transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  margin-top: 60px;
  position: relative;
}
.graduates .swiper-pagination span:after {
  content: "";
  width: 4px;
  height: 4px;
  background: #999999;
  border-radius: 50%;
  left: 50%;
  top: 50%;
  position: absolute;
  margin-left: -2px;
  margin-top: -2px;
}
.graduates .swiper-pagination span:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  border: 3px solid #f8c80f;
  border-radius: 50%;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
}
.graduates .swiper-pagination span.swiper-active-switch:before,
.graduates .swiper-pagination span:hover:before {
  transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
}
/*.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  width: 50px;
  height: 50px;
  top: 36%;
  margin-top: -25px;
  border-radius: 50%;
  border: 1px solid #dcdcdc;
  background: transparent;
  text-align: center;
  line-height: 50px;
  transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
}
.swiper-button-prev span,
.swiper-button-next span {
  display: block;
  width: 100%;
  height: 100%;
  line-height: 50px;
  text-align: center;
}
.swiper-button-prev span img,
.swiper-button-next span img {
  vertical-align: top;
}
.swiper-button-prev {
  left: -80px;
}
.swiper-button-next {
  right: -80px;
}
.swiper-button-prev span:hover {
  animation: prev_hover 0.6s ease;
  -webkit-animation: prev_hover 0.6s ease;
  -moz-animation: prev_hover 0.6s ease;
  -o-animation: prev_hover 0.6s ease;
}
.swiper-button-next span:hover {
  animation: next_hover 0.6s ease;
  -webkit-animation: next_hover 0.6s ease;
  -moz-animation: next_hover 0.6s ease;
  -o-animation: next_hover 0.6s ease;
}
.swiper-button-prev:hover,
.swiper-button-next:hover {
  background: #f8c80f;
  border: 1px solid #f8c80f;
}*/
.news {
  /*padding-top: 5.2%;*/
  padding-bottom: 5.2%;
  background: #f8f8f8;
}
.news-left {
  width: 340px;
  float: left;
}
.news-left .wrap{
  display: none;
}
.news-left .active{
  display: block;
}
.news-left .line {
  width: 60px;
  background: #999999;
  height: 1px;
  margin-bottom: 35px;
}
.news-left .news-tit1 {
  font-size: 0;
  color: #999999;
  line-height: 1;
  text-transform: uppercase;
  font-family: "Didot";
}
.news-left .news-tit1 span {
  font-size: 60px;
  opacity: 0;
  transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  will-change: opacity;
  transition: opacity cubic-bezier(0.57, 0.1, 0.18, 1.03) 0.8s;
  -ms-transition: opacity cubic-bezier(0.57, 0.1, 0.18, 1.03) 0.8s;
  -o-transition: opacity cubic-bezier(0.57, 0.1, 0.18, 1.03) 0.8s;
  -webkit-transition: opacity cubic-bezier(0.57, 0.1, 0.18, 1.03) 0.8s;
  -moz-transition: opacity cubic-bezier(0.57, 0.1, 0.18, 1.03) 0.8s;
}
.news-left .news-tit2 {
  font-size: 0;
  color: #999999;
  line-height: 1;
  font-family: "Didot";
}
.news-left .news-tit2 span {
  font-size: 42px;
  opacity: 0;
  will-change: opacity;
  transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  transition: opacity cubic-bezier(0.57, 0.1, 0.18, 1.03) 0.8s;
  -ms-transition: opacity cubic-bezier(0.57, 0.1, 0.18, 1.03) 0.8s;
  -o-transition: opacity cubic-bezier(0.57, 0.1, 0.18, 1.03) 0.8s;
  -webkit-transition: opacity cubic-bezier(0.57, 0.1, 0.18, 1.03) 0.8s;
  -moz-transition: opacity cubic-bezier(0.57, 0.1, 0.18, 1.03) 0.8s;
}
.news-left .news-tit3 {
  color: #333333;
  font-size: 30px;
  margin-top: 40px;
  margin-bottom: 30px;
  position: relative;
  width: 120px;
  height: 40px;
}
.news-left .news-tit3 span {
  position: absolute;
}
.news-left .sign {
  margin: 0;
}
.news-right {
  float: left;
  width: 949px;
}
.news-right ul{display: none;}
.news-right ul.active{display: block;}
.news-right ul li {
  font-size: 0;
  margin-bottom: 30px;
  border-radius: 6px;
  overflow: hidden;
  transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
}
.news-right ul li a > div {
  display: inline-block;
  vertical-align: middle;
}
.news-right ul li .news-img {
  width: 268px;
  height: 147px;
  overflow: hidden;
  border-radius: 6px;
}
.news-right ul li .news-img img {
  transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
}
.news-right ul li .news-info {
  width: 480px;
  margin-left: 25px;
  margin-right: 96px;
  transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
}
.news-right ul li .tit {
  font-size: 18px;
  color: #221f1b;
  line-height: 1;
  margin-bottom: 30px;
  text-transform: uppercase;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 100%;
}
.time4{
  display: none;
}
.news-right ul li .summary {
  font-size: 14px;
  color: #999999;
  line-height: 24px;
}
.news-right ul li .news-btn {
  width: 70px;
  transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
}
.news-right ul li .time {
  font-size: 20px;
  color: #3b3936;
  line-height: 1;
  margin-bottom: 15px;
}
.news-right ul li .more {
  border-left: 1px solid #bababa;
  padding-left: 20px;
}
.news-right ul li:hover {
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.08);
  -webkit-box-shadow: 0 0 40px rgba(0, 0, 0, 0.08);
  background: #fff;
}
.news-right ul li:hover .news-info,
.news-right ul li:hover .news-btn {
  transform: translateX(10px);
  -ms-transform: translateX(10px);
  -o-transform: translateX(10px);
  -webkit-transform: translateX(10px);
  -moz-transform: translateX(10px);
}
.news-right ul li:hover .news-img img {
  transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
}
.news-right ul li:hover .more img {
  animation: next_hover2 0.6s ease;
  -webkit-animation: next_hover2 0.6s ease;
  -moz-animation: next_hover2 0.6s ease;
  -o-animation: next_hover2 0.6s ease;
}
.cooper {
  padding-bottom: 35px;
  position: relative;
  text-align: center;
}
.cooper .container {
  position: relative;
}
.cooper .swiper-slide {
  padding: 15px;
}
.cooper .swiper-slide > div {
  height: 70px;
  line-height: 70px;
  position: relative;
  transition: all 0.6s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
  -ms-transition: all 0.6s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
  -o-transition: all 0.6s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
  -webkit-transition: all 0.6s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
  -moz-transition: all 0.6s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
}
.cooper .swiper-slide > div:hover {
  /*box-shadow: 0 0 15px rgba(0, 0, 0, 0.15);
  -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.15);*/
}
.cooper .swiper-button-next,
.cooper .swiper-button-prev {
  top: 50%;
}
.adv {
  font-size: 0;
  width: 100%;
  padding: 11% 0 9%;
}
.adv .left .line {
  background: #7a7a7a;
  width: 60px;
  height: 1px;
  position: relative;
  margin-bottom: 44px;
}
.adv .left h3 {
  font-size: 88px;
  font-family: 'Didot';
  color: #959595;
  line-height: .7;
  font-weight: normal;
}
.adv .left span {
  font-size: 42px;
  font-family: 'Didot';
  color: #959595;
  line-height: 1;
}
.adv .left p {
  font-size: 28px;
  color: #333;
  margin: 30px 0;
}
.adv .left .sign {
  font-size: 14px;
  color: #222;
  margin-left: 0;
}
.adv .right {
  width: calc(100% - 446px);
  margin-left: 18px;
  float: right;
}
.adv-list {
  display: inline-block;
  width: 33.33%;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  cursor: pointer;
}
.adv-list:hover .desc {
  border-color: #f8c80f;
}
.adv-list:hover .desc h3 {
  color: #f8c80f;
  margin-left: 10px;
}

.adv-list:hover .img {
  transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
}
.adv-list .pro {
  width: 100%;
  height: 172px;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  border-bottom-left-radius: 2px;
  border-bottom-right-radius: 2px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  position: relative;
}
.adv-list .pro>img{
  display: block;
  width: 30px;
  height: 30px;
  position: absolute;
  right: 3%;
  bottom: 3%;
}
.adv-list .img {
  position: absolute;
  transition: all 0.6s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
  -ms-transition: all 0.6s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
  -o-transition: all 0.6s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
  -webkit-transition: all 0.6s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
  -moz-transition: all 0.6s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
}
.adv-list .desc {
  padding: 30px 20px;
  border: 1px solid #e1e1e1;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  position: relative;
  z-index: 0;
  top: -1px;
  transition: border 0.4s;
  -ms-transition: border 0.4s;
  -o-transition: border 0.4s;
  -webkit-transition: border 0.4s;
  -moz-transition: border 0.4s;
}
.adv-list .desc h3 {
  font-size: 18px;
  margin: 0px 0 30px;
  color: #333;
  font-weight: normal;
  transition: 0.4s;
  -ms-transition: 0.4s;
  -o-transition: 0.4s;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
}
.adv-list .desc p {
  font-size: 13px;
  line-height: 24px;
  color: #999;
  transition: 0.4s;
  -ms-transition: 0.4s;
  -o-transition: 0.4s;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  height: 72px;
}
.adv-list .desc p  a{
   color: #999;
}
.map {
  width: 100%;
  height: 649px;
  position: relative;
}
.map .desc {
  padding-top: 150px;
  padding-left: 2%;
}
.map .num {
  text-align: center;
}
.map .area {
  text-align: center;
  font-size: 0;
}
.map .sign {
  width: 225px;
  height: 47px;
  line-height: 47px;
  position: relative;
  display: inline-block;
  padding-left: 43px;
  margin-right: 90px;
  margin-top: 162px;
}
.map .sign:hover:nth-child(2) i:before {
  opacity: 1;
}
.map .sign:hover:nth-child(3) i:before {
  opacity: 1;
}
.map .sign:after {
  background: #fff;
}
.map .sign:nth-child(2) i {
  top: -10px;
}
.map .sign:nth-child(2) i:after {
  top: 33px;
}
.map .sign:nth-child(2) i:before {
  content: '';
  /*background: url('../images/icon2-c.png') no-repeat center / contain;*/
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity .4s;
}
.map .sign:last-child {
  margin-right: 0;
}
.map .sign:last-child i {
  top: -10px;
}
.map .sign:last-child i:after {
  top: 31px;
}
.map .sign:last-child i:before {
  content: '';
  /*background: url('../images/icon3-c.png') no-repeat center / contain;*/
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity .4s;
}
.map .sign i {
  position: absolute;
  left: 13px;
  top: -11px;
  width: 37px;
  height: 60px;
}
.map .sign i:after {
  content: '';
  width: 1px;
  background: #deb30e;
  height: 24px;
  position: absolute;
  right: -22px;
  top: 20px;
}
.map .sign span {
  top: 21px;
  left: 134px;
}
.num-list {
  display: inline-block;
  margin-right: 11.32%;
}
.num-list:last-child {
  margin-right: 0;
}
.num-list p {
  display: inline-block;
  font-size: 120px;
  color: #fff;
  font-family: 'arialnb';
  line-height: 1;
  letter-spacing: -3px;
}
.num-list span {
  display: block;
  font-size: 16px;
  color: #fff;
  letter-spacing: 4px;
}
.point-list {
  position: absolute;
}
.point-list.animate span {
  animation: pointShow 1.6s 1 alternate forwards;
  -webkit-animation: pointShow 1.6s 1 alternate forwards;
  -moz-animation: pointShow 1.6s 1 alternate forwards;
  -o-animation: pointShow 1.6s 1 alternate forwards;
}
.point-list.animate .point_name {
  opacity: 1;
}
.point-list span {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fff;
  position: relative;
  transform: scale(0);
}
.point-list span:after {
  content: '';
  position: absolute;
  width: 12px;
  height: 12px;
  top: -50%;
  left: 50%;
  margin-left: -6px;
  margin-right: -6px;
  background: rgba(248, 200, 15, 0.2);
  animation: wave 3s ease infinite;
  -webkit-animation: wave 3s ease infinite;
  -moz-animation: wave 3s ease infinite;
  -o-animation: wave 3s ease infinite;
  border-radius: 50%;
}
.point-list .point_name {
  position: absolute;
  font-size: 14px;
  color: #959393;
  left: -36px;
  top: 3px;
  width: 30px;
  font-style: normal;
  transition: .6s;
}
.point_1 {
  top: 43% !important;
  left: 66% !important;
}
.point_1 span {
  animation-delay: 2600ms!important;
}
.point_2 {
  top: 39% !important;
  left: 78% !important;
}
.point_2 span {
  animation-delay: 2600ms!important;
}
.point_3 {
  top: 31% !important;
  left: 15% !important;
}
.point_3 span {
  animation-delay: 2900ms!important;
}
.point_4 {
  top: 32% !important;
  left: 13% !important;
}
.point_4 span {
  animation-delay: 2900ms!important;
}
.point_5 {
  top: 40% !important;
  left: 18% !important;
}
.point_5 span {
  animation-delay: 2600ms!important;
}
.point_6 {
  top: 43% !important;
  left: 21% !important;
}
.point_6 span {
  animation-delay: 2600ms!important;
}
.point_7 {
  top: 42% !important;
  left: 16% !important;
}
.point_7 span {
  animation-delay: 2600ms!important;
}
.point_8 {
  top: 54% !important;
  left: 79% !important;
}
.point_8 span {
  animation-delay: 2300ms!important;
}
.point_9 {
  top: 39% !important;
  left: 11% !important;
}
.point_9 span {
  animation-delay: 2300ms!important;
}
.point_10 {
  top: 38% !important;
  left: 18% !important;
}
.point_10 span {
  animation-delay: 2300ms!important;
}
.point_11 {
  top: 92% !important;
  left: 56% !important;
}
.point_11 span {
  animation-delay: 2000ms!important;
}
.point_12 {
  top: 92% !important;
  left: 56% !important;
  display: none;
}
.point_12 span {
  animation-delay: 1500ms!important;
}
.point_13 {
  top: 92% !important;
  left: 56% !important;
  display: none;
}
.point_13 span {
  animation-delay: 300ms!important;
}
.point_13 .point_name {
  opacity: 0;
  transition-delay: 300ms;
}
.point_14 {
  top: 92% !important;
  left: 56% !important;
  display: none;
}
.point_14 span {
  animation-delay: 1800ms!important;
}
.point_15 {
  top: 92% !important;
  left: 56% !important;
  display: none;
}
.point_15 span {
  animation-delay: 1500ms!important;
}
.point_16 {
  top: 92% !important;
  left: 56% !important;
  display: none;
}
.point_16 span {
  animation-delay: 1200ms!important;
}
.point_17 {
  top: 92% !important;
  left: 56% !important;
  display: none;
}
.point_17 span {
  animation-delay: 600ms!important;
}
.point_17 .point_name {
  top: 19px;
  left: -5px;
  opacity: 0;
  transition-delay: 600ms;
}
.point_18 {
  top: 92% !important;
  left: 56% !important;
  display: none;
}
.point_18 span {
  animation-delay: 900ms!important;
}
.point_18 .point_name {
  opacity: 0;
  transition-delay: 900ms;
}
.point_19 {
  top: 92% !important;
  left: 56% !important;
  display: none;
}
.point_19 span {
  animation-delay: 1200ms!important;
}
.point_20 {
  top: 92% !important;
  left: 56% !important;
  display: none;
}
.point_20 span {
  animation-delay: 1200ms!important;
}
.point_21 {
  top: 92% !important;
  left: 56% !important;
  display: none;
}
.point_21 span {
  animation-delay: 1200ms!important;
}
.point_22 {
  top: 92% !important;
  left: 56% !important;
  display: none;
}
.point_22 span {
  animation-delay: 1500ms!important;
}
.point_23 {
  top: 92% !important;
  left: 56% !important;
  display: none;
}
.point_23 span {
  animation-delay: 1500ms!important;
}
.point_24 {
  top: 92% !important;
  left: 56% !important;
  display: none;
}
.point_24 span {
  animation-delay: 1800ms!important;
}
.point_25 {
  top: 92% !important;
  left: 56% !important;
  display: none;
}
.point_25 span {
  animation-delay: 1800ms!important;
}
.point_26 {
  top: 92% !important;
  left: 56% !important;
  display: none;
}
.point_26 span {
  animation-delay: 1800ms!important;
}
.point_27 {
  top: 92% !important;
  left: 56% !important;
  display: none;
}
.point_27 span {
  animation-delay: 2100ms!important;
}
.point_28 {
  top: 92% !important;
  left: 56% !important;
  display: none;
}
.point_28 span {
  animation-delay: 2100ms!important;
}
.point_29 {
  top: 92% !important;
  left: 56% !important;
  display: none;
}
.point_29 span {
  animation-delay: 2100ms!important;
}
.teacher {
  font-size: 0;
}
.teacher .teacher-warp {
  height: 560px;
}
.teacher .teacher-con {
  display: inline-block;
  width: 400px;
  vertical-align: middle;
  position: relative;
  z-index: 66;
  padding-bottom: 6%;
}
.teacher .ef-warrper {
  display: inline-block;
  width: 839px;
  height: 652px;
  top: -88px;
  vertical-align: middle;
  position: relative;
}
.teacher .teacher-ef {
  position: relative;
  width: 100%;
  height: 100%;
}
.teacher .teacher-ef img {
  max-height: 100%;
  width: auto;
}
.teacher .teacher-ef .mask {
  opacity: 1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: opacity 1s cubic-bezier(0.215, 0.61, 0.355, 1);
  -ms-transition: opacity 1s cubic-bezier(0.215, 0.61, 0.355, 1);
  -o-transition: opacity 1s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.teacher .teacher-ef > div.active .mask {
  opacity: 0;
}
.teacher .img_bottom1 {
  left: -400px;
  top: 50px;
  height: 583px;
  z-index: 8;
  position: absolute;
  opacity: 0;
}
.teacher .img_bottom2 {
  left: 800px;
  top: 50px;
  height: 583px;
  z-index: 8;
  position: absolute;
  opacity: 0;
}
.teacher .img_left {
  left: 9px;
  top: 64px;
  height: 583px;
  z-index: 9;
  position: absolute;
  opacity: 1;
}
.teacher .img_center {
  left: 200px;
  top: 0px;
  height: 648px;
  z-index: 10;
  position: absolute;
  opacity: 1;
}
.teacher .img_right {
  left: 441px;
  top: 64px;
  height: 583px;
  z-index: 9;
  opacity: 1;
  position: absolute;
}
.teacher .btn_left,
.teacher .btn_right {
  position: absolute;
  display: block;
  z-index: 99;
  text-align: center;
  bottom: 13%;
  width: 49px;
  height: 49px;
  border-radius: 50%;
  border: 1px solid #dcdcdc;
  cursor: pointer;
  transition: all .4s ease;
}
.teacher .btn_left i,
.teacher .btn_right i {
  display: inline-block;
}
.teacher .btn_left:hover,
.teacher .btn_right:hover {
  background: #f8c80f;
  border: 1px solid #f8c80f;
}
.teacher .btn_left:hover i,
.teacher .btn_right:hover i {
  animation: prev_hover .6s ease;
}
.teacher .btn_left {
  left: -2%;
}
.teacher .btn_right {
  right: -2%;
}
.teacher .desc {
  top: 28%;
  left: 97%;
  position: absolute;
  width: 396px;
  padding: 15px 22px;
  border: 1px solid #f8c80f;
  border-radius: 5px;
  opacity: 0;
  transition: opacity 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
  -ms-transition: opacity 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
  -o-transition: opacity 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.active .desc{
  opacity: 1;
}
.teacher .desc:after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: -2px;
  width: 101%;
  height: 15px;
}
.teacher .desc img{
  width: 20%;
  position: absolute;
  right: 20%;
  top: 8%
}
.teacher .desc h3 {
  font-size: 28px;
  color: #fff;
  font-weight: normal;
}
.teacher .desc span {
  display: inline-block;
  font-size: 14px;
  color: #999;
  margin: 10px auto;
  width: 80%;
}
.teacher .desc p {
  font-size: 14px;
  color: #999;
  line-height: 21px;
  width: 96%;
}
.t-list:nth-child(1) .teacher1 {
  width: 18.15%;
  left: 42.5%;
}
.t-list:nth-child(1) .teacher1 .teacher-txt {
  left: -95%;
}
.t-list:nth-child(1) .teacher2 {
  width: 21.125%;
}
.t-list:nth-child(1) .teacher3 {
  width: 20.85%;
  left: 63%;
}
.prev,
.next {
  font-size: 50px;
  color: red;
  position: relative;
  top: -120px;
  z-index: 11;
}
.index-photo{
  width: 98px;
  height: auto;
  border-radius: 50%;
}

@media (max-width: 1800px) {
  .teacher-warp .teacher-person .teacher-txt p {
    display: none;
  }
  .teacher-warp .teacher1 .teacher-txt:after {
    bottom: -10px;
    left: 0px;
    width: 100%;
  }
}
@media (max-width: 1680px) {
  .apple-banner .pagination{
    bottom: 45px;
  }
  .teacher-con .tit1-2 span,
  .news-left .news-tit1 span {
    font-size: 78px;
  }
  .teacher-con .tit1-1 span {
    font-size: 40px;
  }
  .news-left .news-tit2 span {
    font-size: 38px;
  }
  .teacher-warp .teacher-person .teacher-txt h3 {
    font-size: 20px;
  }
  .teacher-warp .teacher2 .teacher-txt:after {
    height: 12px;
  }
}
@media (max-width: 1440px) {
  .apple-banner .swiper-slide .title .p1 {
    font-size: 64px;
    margin-bottom: 25px;
  }
  .apple-banner .swiper-slide .title .p2 {
    font-size: 24px;
    margin-bottom: 15px;
  }
  .apple-banner .swiper-slide .title {
    width: 660px;
    top: 53%;
    right: 100px;
  }
  .apple-banner .pagination{
    bottom: 145px;
  }
  .main-tit .tit1 {
    font-size: 32px;
  }
  .main-tit .tit2 {
    font-size: 32px;
  }
  .teacher-con .tit1-2 span,
  .news-left .news-tit1 span {
    font-size: 68px;
  }
  .teacher-con .tit1-1 span {
    font-size: 36px;
  }
  .news-left .news-tit2 span {
    font-size: 32px;
  }
  .teacher-con .txt1 {
    margin-top: 15px;
  }
  .teacher-con .sign {
    margin-top: 25px;
  }
  .teacher-warp {
    margin-top: 7.59375%;
  }
  .graduates-list .swiper-button-next {
    right: -55px;
  }
  .graduates-list .swiper-button-prev {
    left: -55px;
  }
  .cooper .swiper-button-next {
    right: -25px;
  }
  .cooper .swiper-button-prev {
    left: -25px;
  }
  .adv .sign{
    width: 140px;
  }
  .news-left .sign{
    width: 120px;
  }
  .news-left .news-tit3 {
    margin-top: 30px;
  }
 
  .teacher-warp .teacher3 .teacher-txt:after {
    background-size: cover!important;
  }
}
@media (max-width: 1366px) {
  .graduates .swiper-slide{
    height: 380px;
  }
  .environment .environment-tit .txt .txt2{
    font-size: 64px;
  }
  .apple-banner .swiper-slide .title {
    right: auto;
    left: 30%;
  }
  .apple-banner .swiper-slide .title .p1 {
    font-size: 54px;
    margin-bottom: 20px;
  }
  .apple-banner .swiper-slide .title .p2 {
    font-size: 22px;
  }
  .course .container {
    width: 1200px;
  }
  .course-list .course-info .title {
    font-size: 20px;
  }
  .news-left .news-tit1 span,
  .teacher-con .tit1-2 span {
    font-size: 64px;
  }
  .sign {
    font-size: 16px;
  }
  .teacher-con .tit1-1 span {
    font-size: 32px;
  }
  .teacher-con .tit2 span {
    font-size: 20px;
  }
  .teacher-con .txt1 {
    line-height: 22px;
  }
  .teacher-con .sign {
    margin-top: 20px;
  }
  .teacher .desc h3 {
    margin-bottom: 15px;
  }
  .graduates .container {
    width: 1140px;
  }
  .graduates-menu {
    width: 1080px;
    margin: 0 auto 24px;
    padding-right: 10px;
  }
  .news-left {
    width: 300px;
  }
  .news-right {
    width: 780px;
  }
  .news-right ul li .news-img {
    width: 200px;
    height: auto;
  }
  .news-right ul li .news-img img {
    max-width: 100%;
    height: auto;
  }
  .news-right ul li .news-info {
    margin-right: 30px;
    margin-left: 20px;
    width: 460px;
  }
  .news-right ul li .tit {
    margin-bottom: 15px;
    font-size: 17px;
  }
  .news-right ul li .time {
    font-size: 18px;
  }
  .news-right ul li .more img {
    width: 16px;
    height: auto;
  }
  .adv .left h3 {
    font-size: 64px;
  }
  .adv .right {
    margin-left: 50px;
    width: calc(100% - 361px);
  }
  .num-list p {
    font-size: 64px;
  }
  .teacher .desc {
    width: 320px;
    left: 80%;
    padding: 10px 15px;
  }
  .teacher .desc span {
    width: 100%;
  }
  .teacher .desc p {
    width: 100%;
  }
  .adv-list .desc {
    padding: 20px 15px;
  }
  .adv-list .desc h3 {
    margin-bottom: 15px;
  }
  .graduates .summary .title {
    font-size: 18px;
  }
  .graduates .header {
    top: 25px;
  }
  .graduates .summary {
    padding: 35px 30px 20px;
  }

  .graduates-list {
    margin-top: 3%;
  }
}

@media (max-width: 1200px) {
  .map .sign{
    width: 180px;
    height: 40px;
    line-height: 40px;
    font-size: 14px;
  }
  .map .sign:hover{
    padding-right: 20px;
  }
  .map .sign:hover span {
  
    transform: translateX(10px);
 }
  .map .sign i:after{
    right: -12px
  }
  .map .sign span{
    top: 18px;
  }
  .course .container,.graduates .container{
    width: 90%;
  }
  .teacher-con .txt1{
    font-size: 13px;
    margin-bottom: 25px;
  }
  .news-left .news-tit1 span, .teacher-con .tit1-2 span{
    font-size: 56px;
  }
  .teacher-warp{
    margin-top: 5%;
  }
  .teacher-con .sign{
    margin-top: 0px;
  }
  .teacher-con .tit2 span{
    font-size: 18px;
  }
  .graduates .summary{
    padding:30px 25px 20px 25px;
  }
  .graduates .summary .title{
    font-size: 16px;
  }
  .subtitle{
    height: 28px;
  }
  .graduates .header{
    margin-top: 30px;
  }
  .news-left{
    width: 180px;
  }
  .news-right{
      width:calc(100% - 180px);
      width:-webkit-calc(100% - 180px);
      padding-left: 8%;
  }
  .news-con{
    margin-top: 4%;
  }
  .main-tit .tit1{
    font-size: 18px;
  }
  

  .apple-banner .swiper-container{
    height: auto;
  }
  .apple-banner .swiper-container {
    -webkit-transform: none;
    -moz-transform: none;
    transform: none;
    width: 100%;
 
  }
  .apple-banner .swiper-slide .title{
    width: auto;
  }
  .apple-banner .swiper-wrapper {
    height: auto;
  }
  .apple-banner{
    height: auto;
    width: 100%;
    opacity: 1;
  }
  .apple-banner .swiper-slide .title .p1{
    font-size: 48px;
  }
  .apple-banner .pagination{
    bottom: 20px;
  }
  .apple-banner .swiper-slide .title .p2{
    font-size: 20px;
  }
  .apple-banner .swiper-container{
    transform: none;
    -webkit-transform: none;
  }
  .slide-img img{
    max-width: 100%;
    height: auto;
  }
  .adv .left h3{
    font-size: 54px;
  }
  .adv .left span{
    font-size: 36px;
  }
  .adv .left .line{
    margin-bottom: 25px;
  }
  .adv .left p{
    font-size: 24px;
    margin:20px 0;
  }
  .adv .right {
    margin-left: 0px;
    padding-left: 5%;
    width: calc(100% - 263px);
    width: -webkit-calc(100% - 263px);
  }
  .adv{
    padding: 7% 0 7%;
  }
  .map{
    background: url(../images/map-index.jpg) no-repeat center/cover !important;
    height: auto !important;
    padding-top: 8.3333%;
    padding-bottom: 8.3333%;
  }
  .map-point{
    display: none;
  }
  .map .desc{
    padding-top: 0 !important;
  }
  .num-list p{
    font-size: 56px;
  }
  .teacher .ef-warrper{
    display: block;
    top:auto!important;
    margin:0 auto;
  }
  .teacher-con .tit2,.teacher-con .sign{
    margin:0 auto;
    text-align: center;
  }
  .teacher-con .tit2{
    margin-top: 10px;
  }
  .teacher-warp{
    height: auto!important;
  }
  .teacher .teacher-con{
    display: block;
    margin:0 auto;
    text-align: center;
    width: 80%;
    padding-top: 5%;
  }
  .teacher .btn_left{
    left: -10%;
  }
  .teacher .btn_right{
    right: -10%;
  }
  .graduates-menu{
    width: 100%;
  }
  .graduates .swiper-slide{
    height: 320px;
  }
  .graduates-list .swiper-button-prev{
    left: -50px;
  }
  .graduates-list .swiper-button-next{
    right: -50px;
  }
  .news-right ul li .news-info{
    width: calc(100% - 200px);
    width: -webkit-calc(100% - 200px);
    margin:0;
    padding-left: 5%;
  }
  .news-right ul li .tit{
    margin-bottom: 10px;
  }
  .news-right ul li .news-btn{
    display: none;
  }
  .time4{
    font-size: 12px;
    color: #999;
    display: block;
    margin-bottom: 5px;
  }
}

@media (max-width: 992px) {
  .num-list p{
    font-size: 48px;
  }
  .graduates .swiper-slide{
    height: 320px;
  }
  .graduates .summary .title{
    font-size: 14px;
  }
  .swiper-button-prev, .swiper-button-next,.swiper-button-prev span img, .swiper-button-next span img{
    width: 40px;
    height: 40px;
  }
  .graduates-list .swiper-button-prev{
    left: -35px;
  }
  .graduates-list .swiper-button-next{
    right: -35px;
  }
  .subtitle{
    height: 42px;
  }
  .adv .left h3{
    font-size: 36px;
    display: inline-block;
    vertical-align: bottom;
    line-height: 1;
  }
  .adv .left .line{
    margin:0 auto 15px;
  }
  .adv .left p{
    margin-top: 5px;
  }
  .adv .left span{
    display: inline-block;
    vertical-align: bottom;
    text-transform: uppercase;
  }
  .ib-middle{
    display: block;
    text-align: center;
  }
  .adv .left{
    margin-bottom: 5%;
  }
  .teacher-con .tit2 span{
    font-size: 16px;
    left: 50%;
    transform:translateX(-50%);
    -webkit-transform:translateX(-50%);
    -moz-ransform:translateX(-50%);
  }
  .adv .right{
    width: 100%;
    padding:0;
    padding-bottom: 10%;
  }
  .adv .left .sign{
    position: absolute;
    bottom: 0;
    left: 50%;
    margin-left: -87.5px;
  }
  .course-list .course-info .title{
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .apple-banner .swiper-slide .title{
    top: 50%;
  }
  .adv .left h3,.adv .left span{
    font-size: 24px;
    display: none;
  }
  .sign:hover{
    padding-left: 0;
    span{
      display: none;
    }
  }
  .adv .left p{
    font-size: 18px;
  }
  .adv .left{
    margin-bottom: 7%;
  }
  .map .sign{
    margin:0 3%;
  }
  .num-list p{
    font-size: 36px;
  }
  .num-list span{
    font-size: 14px;
  }
  .map .sign{
    padding:0;
    width: 120px;
    margin-top: 7% !important;
  }
  .map .sign i,.map .sign span{
    display: none;
  }
  .course-list ul li{
    width: 50%;
    margin-bottom: 20px;
  }
  .course-list .course-info .title{
    font-size: 16px;
  }
  .course-list .course-info .subtitle{
    font-size: 13px;
    line-height: 22px;
  }
  .course-list .course-info > div{
    padding:15px 10px 20px 10px;
  }
  .main-tit .line{
    margin-bottom: 10px;
  }
  .main-tit .tit1{
    display: none;
    font-size: 22px;
    margin-bottom: 5px;
  }
  .main-tit .tit2{
    font-size: 24px;
  }
  .teacher .desc{
    left: 55%;
    top: 25%;
  }
  .rectLeft2{
    display: none;
  }
  .graduates .swiper-slide{
    height: 350px;
  }
  .news-right,.news-left{
    width: 100%;
    padding:0;
  }
  .news-left{
    text-align: center;

  }
  .news-left{
    margin-bottom: 7%;
  }
  .news-right{
    padding-bottom: 10%;
  }
  .graduates-menu{
    display: none;
  }
  .news-left .line{
      margin:0 auto 15px;
  }
  .news-left .news-tit3{
    text-align: center;
    margin:-5px auto 0;
    width: auto;
    height: auto;
  }
  .loading {
    display: none;
  }
  .news-left .news-tit3 span{
    font-size: 18px;
    opacity: 1;position: relative;
  }
  .teacher-con .tit1-2 span{
    font-size: 36px;
    opacity: 1;
  }
  .news-left .news-tit1 span,.news-left .news-tit2 span{
    font-size: 36px;
   
    opacity: 1;
  }
  .news-left .news-tit1{
    display: inline-block;
    vertical-align: bottom;
    
  }
  .news-left .news-tit2{
    display: inline-block;
    vertical-align: bottom;
    text-transform: uppercase;
    margin-left: 10px;
  }
  .news-left .sign{
    position: absolute;
    bottom: 0;
    left: 50%;
    margin-left: -50px;
  }
  .teacher-con .txt1{
    width:100%;
    margin-right: 0;
    height: auto;
    margin-bottom: 5%;
  }
  .teacher-con .txt1 div{
     position: relative;
     animation-name:none;
     width: 100%;
     height: auto;
  }
  .teacher .desc p,.teacher  .desc span{
    display: none;
  }
  .teacher .desc{
    padding: 10px;
    width: 150px;
  }
  .teacher .desc img{
    display: none;
  }
  .teacher .desc h3{
    margin:0;
  }
  .adv-list{
    width: 100%;
    margin-bottom: 5%;
  }
  .adv-list .desc p{
    height: auto;
    text-align: left;
  }
  .teacher .teacher-con{
    width: 100%;
  }
  .teacher-con .tit1-1,.teacher-con .tit1-2{
    opacity: 0.1;
    display: inline-block;
    vertical-align: middle;
    text-transform: uppercase;
  }
  .adv-list .desc h3{
    font-size: 16px;
    margin-bottom: 10px;
  }

  .teacher-con .tit1-1 span,.teacher-con .tit1-2 span{
    opacity: 1;
    font-size: 24px;
    margin:5px 0 ;
  }
  .apple-banner .swiper-slide .title .p1{
    font-size: 24px;
  }
  .apple-banner .swiper-slide .title .p2{
    font-size: 16px;
  }
  .apple-banner .swiper-slide .title{
    width: 100%;
    left: 50%;
    right: auto;
    transform: translateX(-50%)translateY(-50%);
    -webkit-transform: translateX(-50%)translateY(-50%);
    -moz-transform: translateY(-50%)translateX(-50%);
    top: 50%
  }
  .teacher-con .tit2{
    width: 100%;
  }
  .sign{
    width: 100px;
    margin-top: 15px;
    font-size: 14px;
    height: 35px;
    line-height: 35px;
  }
  .adv .left .sign{
    margin-left: -50px;
  }
  .adv .right{
    padding-bottom: 65px;
  }
  .graduates .summary{
    padding:15px;
    padding-bottom: 10px;
    margin-left: 40px;
    margin-right: 40px;
    background: #f8c80f;
  }
  .graduates .summary:after{
    border-top: 10px solid #f8c80f;
  }
  .graduates .graduates-info{
    margin-left: 40px;
  }
  .graduates .graduates-info > div .name{
    font-size: 16px;
  }
  .graduates-list .swiper-button-prev{
    left: 0px;
  }
  .graduates-list .swiper-button-next{
    right: 0px
  }
  .index-photo{
    width: 80px;

  }
  .map .desc{
    padding-left: 0;
  }
  .apple-banner .pagination{
    bottom: 5px;
  }
  .apple-banner .pagination li em{
    width: 16px;
    height: 16px;
  }
  .apple-banner .pagination li em:before{
    border:1px solid #f8c80f;
  }
  .apple-banner .pagination li em:after{
    width: 3px;
    height: 3px;
    margin-left: -1.5px;
    margin-right: -1.5px;
  }
}

@media (max-width: 480px) {
  .main-tit .tit1{
    display: none;
    font-size: 18px;
  }
  .apple-banner .pagination{
    bottom: 10px;
  }
  .map .sign{
    margin:7% 2% 0 2%;
  }
  .main-tit{
    margin-top: 8%;
    margin-bottom: 8%;
  }
  .course-list ul{
    margin-left: -5px;
    margin-right: -5px;
  }
  .course-list .course-info .subtitle{
    margin-top: 8px;
  }
  .graduates .swiper-slide{
    height: 280px;
  }
  .course .container, .graduates .container{
    width: 94%;
  }

  .course-list ul li{
    padding-left: 5px;
    padding-right: 5px;
    margin-bottom: 12px;
  }
  .course-list .course-img .course-mask{
    display: none;
  }
  .map .sign{
    width: 100px;
  }
  .news-right ul li .news-img{
    text-align: center;
  }
  .news-right ul li .news-img,.news-right ul li .news-info{
    width: 100%;
  }
  .news-right ul li .tit{
    font-size: 16px;
    margin-top: 5%;
  }
  .news-left .news-tit1 span, .news-left .news-tit2 span{
    font-size: 20px;
  }
  .news-left .news-tit3{
    font-size: 0;
  }
  .news-left .news-tit3 span{
    font-size: 14px;
  }
  .cooper .container{
    width: 84%;
  }
  .graduates .summary .title{
    margin-bottom: 10px;
  }  
  .subtitle{
    height: auto;
    margin-bottom: 8px;
  }
  .news-right ul li:hover .news-info, .news-right ul li:hover .news-btn{
    .transform(none);
  }
  .news-right ul li{
    background: #fff;
    padding: 5% 0;
    margin-bottom: 20px;
  }
  .teacher .desc h3{
    font-size: 14px !important;
  }
  .teacher .desc {
    left: 95%;
    top: 38%;
  }
  .adv .right{
    padding-bottom: 45px;
  }
}

@media (max-width: 420px){
  .teacher .desc {
      left: 82%;
      top: 32%;
  }
   .teacher .desc {
	    padding: 5px;
	    width: 120px;
	}
}
@media (max-width: 480px){
  .teacher .teacher-ef>div{
    max-height: 233px;
  }
}
@media (max-width: 420px){
  .teacher .teacher-ef>div{
    max-height: 227px;
  }
}
@media (max-width: 411px){
  .teacher .teacher-ef>div{
    max-height: 223.31px;
  }
}
@media (max-width: 375px){
  .teacher .teacher-ef>div{
    max-height: 203px;
  }
}
@media (max-width: 360px){
  .teacher .teacher-ef>div{
    max-height: 194px;
  }
}
@media (max-width: 320px){
  .teacher .teacher-ef>div{
    max-height: 173px;
  }
}




/*改动*/


/*引入boostrap后样式错乱调整*/
.news .container{
  padding: 0;
}


/*添加视频弹窗*/

.videos video{
  display: none;
  width: 50%;
  height: 50%;
  position: fixed;
  top: 20%;
  left: 25%;
  z-index: 999;
  border: 10px solid #eee;
  border-radius: 5px;
  background-color: #000;
}
.videos .close{
  display: none;
  width: 35px;
  height: 35px;
  position: fixed;
  right: 24%;
  top: 18%;
  background-color: #eee;
  border-radius: 50%;
  z-index: 1000;
  opacity: 1;
  text-align: center;
  line-height: 35px;
  cursor: pointer;
  transition: all 0.6s ease;
}
.videos .close:hover{
  background: #f8c80f;
  color: #eee;
}
.close:after, .close:before{
  color: #000;
}
@media (max-width: 1200px){
  .videos .videos video{
    width: 80%;
    left: 10%;
  }
  .videos .close{
    right: 9%;
  }
}
@media (max-width: 768px){
  .videos .videos video{
    width: 94%;
    left: 3%;
  }
  .videos .close{
    right: 0%;
  }
}


/*弹出层*/
.videos .black{
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: #000;
    z-index: 998;
    -moz-opacity: 0.9; 
    opacity:.90; 
    filter: alpha(opacity=90); 
}