@-webkit-keyframes circle {
  0% {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  50% {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes circle {
  0% {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  50% {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-webkit-keyframes bounce-down {
  25% {
    -webkit-transform: translateY(-10px);
  }
  50%,
  100% {
    -webkit-transform: translateY(0);
  }
  75% {
    -webkit-transform: translateY(10px);
  }
}
@keyframes bounce-down {
  25% {
    transform: translateY(-10px);
  }
  50%,
  100% {
    transform: translateY(0);
  }
  75% {
    transform: translateY(10px);
  }
}
.animate-bounce-down {
  -webkit-animation: bounce-down 1.5s linear infinite;
  animation: bounce-down 1.5s linear infinite;
}
@-webkit-keyframes bounce-up {
  25% {
    -webkit-transform: translateY(5px);
  }
  50%,
  100% {
    -webkit-transform: translateY(0);
  }
  75% {
    -webkit-transform: translateY(-5px);
  }
}
@keyframes bounce-up {
  25% {
    transform: translateY(3px);
  }
  50%,
  100% {
    transform: translateY(0);
  }
  75% {
    transform: translateY(-3px);
  }
}
.animate-bounce-up {
  -webkit-animation: bounce-up 1.4s linear infinite;
  animation: bounce-up 1.4s linear infinite;
}
.animated.delay-6s {
  -webkit-animation-delay: 1.5s;
  animation-delay: 1.5s;
}
.animated.delay-7s {
  -webkit-animation-delay: 2.5s;
  animation-delay: 2.5s;
}
.animated.delay-8s {
  -webkit-animation-delay: 3.5s;
  animation-delay: 3.5s;
}
.animated.delay-11s {
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
}
.animated.delay-12s {
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
}
.animated.delay-13s {
  -webkit-animation-delay: 1.2s;
  animation-delay: 1.2s;
}
.animated.delay-14s {
  -webkit-animation-delay: 1.6s;
  animation-delay: 1.6s;
}
.animated.delay-15s {
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
}
.animated.delay-16s {
  -webkit-animation-delay: 2.4s;
  animation-delay: 2.4s;
}
#fullpage {
  position: relative;
  z-index: 8;
}
#fullpage .section.welcome {
  display: flex;
  align-items: flex-end;
  padding: 110px 90px 80px;
  box-sizing: border-box;
  background: #084782;
  overflow: hidden;
}
#fullpage .section.welcome .content {
  width: 100%;
}
#fullpage .section.welcome .text {
  font-size: 40px;
  line-height: 1.5;
  color: #fff;
}
#fullpage .section.welcome .college {
  display: flex;
  align-items: center;
  font-weight: bold;
}
#fullpage .section.welcome .college span {
  display: block;
  width: 45px;
  height: 45px;
  margin-top: 8px;
  margin-left: 10px;
  background: url(../img/home/arrow/arrow-incline.svg) no-repeat 0 0;
  background-size: 100%;
  transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  /* IE 9 */
  -moz-transform: rotate(180deg);
  /* Firefox */
  -webkit-transform: rotate(180deg);
  /* Safari 和 Chrome */
  -o-transform: rotate(180deg);
}
#fullpage .section.welcome .welBanner {
  width: 100%;
  display: block;
}
#fullpage .section.welcome .welBanner .swiper-index-first {
  width: 100%;
  padding-top: 30px;
  margin-top: -22px;
  overflow: hidden;
}
#fullpage .section.welcome .welBanner .swiper-index-first .swiper-slide {
  position: relative;
}
#fullpage .section.welcome .welBanner .swiper-index-first .swiper-slide .img img {
  display: block;
  width: 100%;
  height: 60vh;
  object-fit: cover;
  object-position: center;
}
#fullpage .section.welcome .welBanner .swiper-index-first .swiper-slide .title {
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 20px 15px;
  font-size: 24px;
  font-weight: 600;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.5);
}
#fullpage .section.welcome .welBanner .swiper-index-first .index-first-pagination {
  display: flex;
  justify-content: flex-end;
  bottom: auto;
  top: 0px;
  left: 0;
  width: 100%;
  height: 12px;
  text-align: right;
}
#fullpage .section.welcome .welBanner .swiper-index-first .index-first-pagination .swiper-pagination-bullet {
  position: relative;
  width: 56px;
  height: 6px;
  padding: 2px;
  border-radius: 0;
  opacity: 1;
  background-color: #084782;
  border: 1px solid rgba(219, 219, 219, 0.5);
}
#fullpage .section.welcome .welBanner .swiper-index-first .index-first-pagination .swiper-pagination-bullet::before {
  content: '';
  display: block;
  position: absolute;
  left: 3px;
  top: 3px;
  width: 54px;
  height: 4px;
  background-color: rgba(219, 219, 219, 0.5);
}
#fullpage .section.welcome .welBanner .swiper-index-first .index-first-pagination .swiper-pagination-bullet-active {
  border: 1px solid #C1A861;
}
#fullpage .section.welcome .welBanner .swiper-index-first .index-first-pagination .swiper-pagination-bullet-active::before {
  background-color: #C1A861;
}
#fullpage .section.welcome .welBanner .swiper-index-first .index-first-next,
#fullpage .section.welcome .welBanner .swiper-index-first .index-first-prev {
  width: 48px;
  height: 48px;
}
#fullpage .section.welcome .welBanner .swiper-index-first .index-first-next:after,
#fullpage .section.welcome .welBanner .swiper-index-first .index-first-prev:after {
  content: '';
}
#fullpage .section.welcome .welBanner .swiper-index-first .index-first-next {
  right: 0;
  left: auto;
  background: url(../img/icon/sprite.png) no-repeat 2px -77px;
  background-color: rgba(8, 71, 130, 0.5);
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  overflow: hidden;
}
#fullpage .section.welcome .welBanner .swiper-index-first .index-first-next:hover {
  background-color: #084782;
}
#fullpage .section.welcome .welBanner .swiper-index-first .index-first-prev {
  left: 0;
  right: auto;
  background: url(../img/icon/sprite.png) no-repeat 2px -117px;
  background-color: rgba(8, 71, 130, 0.5);
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  overflow: hidden;
}
#fullpage .section.welcome .welBanner .swiper-index-first .index-first-prev:hover {
  background-color: #084782;
}
#fullpage .section.welcome .scroll {
  display: flex;
  width: 150px;
  align-items: center;
  margin-top: 16px;
  cursor: pointer;
}
#fullpage .section.welcome .scroll span.icon {
  width: 16px;
  height: 16px;
  background: url(../img/home/arrow/arrow-incline.svg) no-repeat 0 0;
  overflow: hidden;
  background-size: 100%;
  transform: rotate(225deg);
  -ms-transform: rotate(225deg);
  /* IE 9 */
  -moz-transform: rotate(225deg);
  /* Firefox */
  -webkit-transform: rotate(225deg);
  /* Safari 和 Chrome */
  -o-transform: rotate(225deg);
}
#fullpage .section.welcome .scroll span.text {
  display: block;
  height: 20px;
  line-height: 20px;
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 0 5px;
  color: #fff;
}
#fullpage .section.welcome .scroll:hover {
  color: #fff;
  text-decoration: underline;
}
#fullpage .section.home-news {
  display: flex;
  overflow: hidden;
}
#fullpage .section.home-news .news-left {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50%;
  height: 100%;
  background-color: #084782;
  background-size: 100% 100%;
}
#fullpage .section.home-news .news-left.newWidth {
  width: 645px;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
#fullpage .section.home-news .news-left .bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: url(../img/home/news-bg.png) center center no-repeat;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  background-size: cover;
  opacity: 0;
}
#fullpage .section.home-news .news-left .text {
  text-align: center;
  color: #fff;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  opacity: 0;
}
#fullpage .section.home-news .news-left .title h3 {
  font-size: 40px;
  font-weight: bold;
  color: #fff;
}
#fullpage .section.home-news .news-left span {
  font-size: 14px;
  color: #fff;
  margin-top: 15px;
  display: block;
}
#fullpage .section.home-news .news-left .more {
  display: block;
  text-align: center;
  font-size: 14px;
  line-height: 24px;
  margin-top: 48px;
  color: rgba(255, 255, 255, 0.75);
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
#fullpage .section.home-news .news-left .more:hover {
  text-decoration: underline;
}
#fullpage .section.home-news .news-right {
  display: none;
  align-items: center;
  width: calc(100% - 645px);
  height: 100%;
  padding: 110px 0 0 40px;
  /*background: url(../img/home/express-bg.png) right bottom no-repeat #fff;*/
}
#fullpage .section.home-news .news-right .newsList {
  position: relative;
  margin-top: -75px;
}
#fullpage .section.home-news .news-right .newsList:after {
  content: '';
  display: block;
  clear: both;
}
#fullpage .section.home-news .news-right .items {
  float: left;
  width: 550px;
  margin-right: 40px;
  margin-bottom: 40px;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
#fullpage .section.home-news .news-right .items .format-up {
  position: relative;
  display: block;
  overflow: hidden;
}
#fullpage .section.home-news .news-right .items .format-up .imgs {
  width: 100%;
}
#fullpage .section.home-news .news-right .items .format-up .imgs img {
  display: block;
  width: 100%;
  height: 335px;
  object-position: center;
  object-fit: cover;
}
#fullpage .section.home-news .news-right .items .format-up .texts {
  position: absolute;
  left: 0;
  bottom: -63px;
  padding: 15px;
  width: calc(100% - 30px);
  background-color: rgba(255, 255, 255, 0.8);
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
#fullpage .section.home-news .news-right .items .format-up .texts .top {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 15px;
}
#fullpage .section.home-news .news-right .items .format-up .texts .top h3 {
  width: calc(100% - 115px);
  font-size: 16px;
  line-height: 24px;
    height: 48px;
  font-weight: normal;
  color: #000;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
#fullpage .section.home-news .news-right .items .format-up .texts .top .time {
  display: flex;
  width: 100px;
  padding-top: 2px;
  justify-content: flex-end;
}
#fullpage .section.home-news .news-right .items .format-up .texts .top .time span {
  display: block;
  font-size: 14px;
  height: 18px;
  line-height: 18px;
  color: #084782;
}
#fullpage .section.home-news .news-right .items .format-up .texts .top .time span.icon {
  display: block;
  width: 18px;
  height: 18px;
  margin-right: 5px;
  background: url(../img/home/news/time-blue.svg) no-repeat 0 0;
  background-size: cover;
  overflow: hidden;
}
#fullpage .section.home-news .news-right .items .format-up .texts .bottom {
  font-size: 14px;
  line-height: 24px;
  color: rgba(0, 0, 0, 0.5);
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
    min-height: 48px;
}
#fullpage .section.home-news .news-right .items:nth-child(1) {
  width: 402px;
}
#fullpage .section.home-news .news-right .items:nth-child(4) {
  width: 402px;
}
#fullpage .section.home-news .news-right .items:nth-child(1) .format-up .texts {
  background: linear-gradient(80.42deg, #C1A861 -2.5%, #DBC995 100%) !important;
}
#fullpage .section.home-news .news-right .items:nth-child(1) .format-up .texts .top h3 {
  color: #fff;
}
#fullpage .section.home-news .news-right .items:nth-child(1) .format-up .texts .top .time span.icon {
  background-image: url(../img/home/news/time-white.svg);
}
#fullpage .section.home-news .news-right .items:nth-child(1) .format-up .texts .top .time span {
  color: #fff;
}
#fullpage .section.home-news .news-right .items:nth-child(2) .format-up .texts {
  background-color: rgba(255, 255, 255, 0.8) !important;
}
#fullpage .section.home-news .news-right .items:nth-child(3) .format-up .texts {
  background-color: rgba(255, 255, 255, 0.8) !important;
}
#fullpage .section.home-news .news-right .items:nth-child(4) .format-up .texts {
  background-color: rgba(8, 71, 130, 0.8) !important;
}
#fullpage .section.home-news .news-right .items:nth-child(4) .format-up .texts .top h3 {
  color: #fff;
}
#fullpage .section.home-news .news-right .items:nth-child(4) .format-up .texts .top .time span {
  color: #C1A861;
}
#fullpage .section.home-news .news-right .items:nth-child(4) .format-up .texts .top .time span.icon {
  background-image: url(../img/home/news/time-gold.svg);
}
#fullpage .section.home-news .news-right .items:nth-child(4) .format-up .texts .bottom {
  color: #ffffff75;
}
#fullpage .section.home-news .news-right .items:hover {
  margin-top: -20px;
  margin-bottom: 60px;
}
#fullpage .section.home-news .news-right .items:hover .format-up .texts {
  bottom: 0;
}
#fullpage .section.home-news .news-right .items:hover .format-up .texts .top h3 {
  /*-webkit-line-clamp: inherit;*/
}
#fullpage .section.home-notice {
  display: flex;
  align-items: center;
  padding: 109px 0 0 90px;
  box-sizing: border-box;
  background-color: #fff;
  overflow: hidden;
}
#fullpage .section.home-notice .content {
  width: 100%;
  height: 68vh;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
#fullpage .section.home-notice .content .title {
  position: absolute;
  left: 0;
  top: 30px;
  display: none;
  justify-content: space-between;
  width: 1000px;
  height: 160px;
  padding: 24px 30px;
  background: linear-gradient(80.42deg, #C1A861 -2.5%, #DBC995 100%);
  backdrop-filter: blur(4px);
  box-sizing: border-box;
  z-index: 99;
}
#fullpage .section.home-notice .content .title::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: url(../img/home/title-bg.png) no-repeat center;
  z-index: 0;
}
#fullpage .section.home-notice .content .title .ft-title {
  position: relative;
  z-index: 1;
}
#fullpage .section.home-notice .content .title .ft-title span.arrow {
  display: block;
  width: 24px;
  height: 24px;
  background: url(../img/home/notice/arrow-incline.svg) no-repeat 0 0;
  background-size: cover;
}
#fullpage .section.home-notice .content .title .ft-title h3 {
  font-size: 36px;
  line-height: 60px;
  color: #fff;
}
#fullpage .section.home-notice .content .title .ft-title h6 {
  font-family: "Alternate";
  font-size: 14px;
  line-height: 24px;
  font-weight: normal;
  color: #fff;
}
#fullpage .section.home-notice .content .title .rt-more {
  position: relative;
  font-size: 14px;
  line-height: 28px;
  color: #fff;
  z-index: 1 ;
}
#fullpage .section.home-notice .content .title .rt-more a {
  color: #fff;
}
#fullpage .section.home-notice .content .notice-left {
  width: calc(50vw - 90px);
  display: none;
  flex-wrap: wrap;
  justify-content: space-between;
    background: url(../img/home/notice-bg-2.png) no-repeat right top;
    background-size: 100% 100%;
}
#fullpage .section.home-notice .content .notice-left .item {
  width: calc(50% - 30px);
  margin-right: 30px;
  margin-top: 30px;
  height: 120px;
  padding: 24px;
  background: url(../img/home/notice-bg.png) no-repeat right top;
  background: none;
  background-color: #e5e5e5;
    background: none;
  box-sizing: border-box;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
#fullpage .section.home-notice .content .notice-left .item h3 {
  font-size: 14px;
  line-height: 24px;
  height: 48px;
  font-weight: normal;
  color: #000000;
  margin-bottom: 10px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
#fullpage .section.home-notice .content .notice-left .item h3 a {
  color: #000000;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
#fullpage .section.home-notice .content .notice-left .item .time {
  display: flex;
  font-size: 14px;
  line-height: 18px;
  color: #C1A861;
}
#fullpage .section.home-notice .content .notice-left .item .time span.icon {
  display: block;
  width: 18px;
  height: 18px;
  margin-right: 5px;
  background: url(../img/home/notice/time-gold.svg) no-repeat 0 0;
  background-size: cover;
  overflow: hidden;
}
#fullpage .section.home-notice .content .notice-left .item:hover {
  background-color: #084782;
}
#fullpage .section.home-notice .content .notice-left .item:hover h3 {
  font-weight: 600;
  color: #fff;
}
#fullpage .section.home-notice .content .notice-left .item:hover h3 a {
  font-weight: 600;
  color: #fff;
}
#fullpage .section.home-notice .content .banner-right {
  display: none;
  position: fixed;
  right: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background-color: #084782;
}
#fullpage .section.home-notice .content .banner-right img {
  height: 68vh;
  width: 100%;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  opacity: 0;
    object-fit: cover;
}
#fullpage .section.home-teachers {
  position: relative;
  width: 100%;
  padding: 110px 95px 0 95px;
  box-sizing: border-box;
  background: url(../img/home/teachers-textBg.png) no-repeat 2048px 135px;
    background-size: 60%;
  background-color: #084782;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  overflow: hidden;
}
#fullpage .section.home-teachers.movebg {
  background-position-x: calc(100vw - 1420px);
}
#fullpage .section.home-teachers .content {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
#fullpage .section.home-teachers .content .power-left {
  position: fixed;
  left: 95px;
  top: 50%;
  display: none;
  align-items: center;
  flex-wrap: wrap;
  width: 345px;
  height: 640px;
  margin-top: -265px;
  padding: 40px 0 40px 48px;
  box-sizing: border-box;
  background: rgba(255, 255, 255, 0.1);
}
#fullpage .section.home-teachers .content .power-left .item {
  width: 100%;
  margin-bottom: 20px;
}
#fullpage .section.home-teachers .content .power-left .item h3 {
  font-size: 22px;
  line-height: 36px;
  font-weight: normal;
  color: #FFFFFF;
}
#fullpage .section.home-teachers .content .power-left .item h6 {
  font-size: 12px;
  line-height: 24px;
  font-weight: normal;
  color: rgba(255, 255, 255, 0.75);
}
#fullpage .section.home-teachers .content .power-left .item h2 {
  font-size: 36px;
  line-height: 56px;
  font-weight: bold;
  color: #C1A861;
}
#fullpage .section.home-teachers .content .power-left .item:last-child {
  margin-bottom: 0;
}
#fullpage .section.home-teachers .content .map-right {
  width: 1360px;
  padding-left: 40px;
  padding-top: 0;
  box-sizing: border-box;
}
#fullpage .section.home-teachers .content .map-right .imgs {
  position: relative;
  width: 100%;
}
#fullpage .section.home-teachers .content .map-right .imgs img.imgBg {
  display: block;
  width: 100%;
  opacity: 0;
}
#fullpage .section.home-teachers .content .map-right .imgs img.imgCon {
  display: block;
  position: absolute;
  left: 0;
  top: 10px;
  width: 100%;
  height: 100%;
  z-index: 2;
}
#fullpage .section.home-teachers .content .map-right .imgs .data {
  position: absolute;
  display: none;
  width: 355px;
  padding: 24px 24px 24px 32px;
  background-color: rgba(0, 0, 0, 0.6);
  box-sizing: border-box;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  z-index: 101;
}
#fullpage .section.home-teachers .content .map-right .imgs .data::before {
  content: '';
  position: absolute;
  left: -16px;
  top: 36px;
  display: block;
  width: 25px;
  height: 280px;
  background-color: transparent;
  border-top: solid 2px #C1A861;
  border-left: solid 2px #C1A861;
}
#fullpage .section.home-teachers .content .map-right .imgs .data::after {
  content: '';
  position: absolute;
  left: 10px;
  top: 32px;
  display: block;
  width: 10px;
  height: 10px;
  background-color: #C1A861;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
#fullpage .section.home-teachers .content .map-right .imgs .data .ft {
  float: left;
}
#fullpage .section.home-teachers .content .map-right .imgs .data .ft .area-cn {
  font-size: 16px;
  line-height: 24px;
  color: #C1A861;
}
#fullpage .section.home-teachers .content .map-right .imgs .data .ft .area-en {
  font-size: 12px;
  line-height: 24px;
  color: #C1A861;
}
#fullpage .section.home-teachers .content .map-right .imgs .data .rt {
  float: left;
  font-size: 14px;
  line-height: 24px;
  margin-left: 20px;
  color: rgba(255, 255, 255, 0.75);
}
#fullpage .section.home-teachers .content .map-right .imgs .data .rt b {
  color: #fff;
}
#fullpage .section.home-teachers .content .map-right .imgs .data:nth-child(1) {
  left: 262px;
  top: 5px;
}
#fullpage .section.home-teachers .content .map-right .imgs .data:nth-child(2) {
  left: 742px;
  top: -7px;
}
#fullpage .section.home-teachers .content .map-right .imgs .data:nth-child(3) {
  left: 988px;
  top: 9px;
}
#fullpage .section.home-teachers .content .map-right .imgs .data:nth-child(4) {
  left: 385px;
  top: 180px;
}
#fullpage .section.home-teachers .content .map-right .imgs .data:nth-child(5) {
  left: 719px;
  top: 141px;
}
#fullpage .section.home-teachers .content .map-right .imgs .data:nth-child(6) {
  left: 801px;
  top: 233px;
}
#fullpage .section.home-teachers .content .map-right .imgs .data:nth-child(6)::before {
  left: auto;
  right: -16px;
  border-top: solid 2px #C1A861;
  border-right: solid 2px #C1A861;
  border-left: none;
}
#fullpage .section.home-teachers .content .map-right .imgs .data:nth-child(6)::after {
  left: auto;
  right: 10px;
}
#fullpage .section.home-teachers .content .map-right .imgs .markbox .mark {
  position: absolute;
  width: 110px;
  height: 55px;
  background: url(../img/icon/mark.svg) no-repeat center;
  cursor: pointer;
  z-index: 99;
}
#fullpage .section.home-teachers .content .map-right .imgs .markbox .mark:nth-child(1) {
  left: 192px;
  top: 302px;
}
#fullpage .section.home-teachers .content .map-right .imgs .markbox .mark:nth-child(2) {
  left: 672px;
  top: 290px;
}
#fullpage .section.home-teachers .content .map-right .imgs .markbox .mark:nth-child(3) {
  left: 918px;
  top: 307px;
}
#fullpage .section.home-teachers .content .map-right .imgs .markbox .mark:nth-child(4) {
  left: 315px;
  top: 475px;
}
#fullpage .section.home-teachers .content .map-right .imgs .markbox .mark:nth-child(5) {
  left: 648px;
  top: 435px;
}
#fullpage .section.home-teachers .content .map-right .imgs .markbox .mark:nth-child(6) {
  left: 1116px;
  top: 530px;
}
#fullpage .section.home-teachers .content .map-right .imgs .markbox .mark:hover {
  background-image: url(../img/home/ZJUPin.svg);
  background-size: cover;
}
#fullpage .section.home-teachers .content .map-right .imgs .markbox .markLogo {
  position: absolute;
  right: 140px;
  display: block;
  bottom: 186px;
  width: 80px;
  height: 80px;
  background: url(../img/home/ZJULogoOval.png) no-repeat center;
  z-index: 100;
}
#fullpage .section.home-teachers .content .map-right .imgs .markbox .markStart {
  position: absolute;
  left: 1018px;
  display: block;
  top: 365px;
  width: 110px;
  height: 55px;
  background: url(../img/home/ZJUPin.svg) no-repeat center;
  z-index: 99;
}
#fullpage .section.home-teachers .content .map-right .tongji {
  font-size: 14px;
  line-height: 24px;
  text-align: right;
  color: #FFFFFF;
  margin-top: 20px;
}
#fullpage .section.home-teachers .content .circle {
  position: absolute;
  left: 50%;
  margin-left: -1500px;
  width: 3000px;
  height: 3000px;
  border-radius: 100%;
  background-color: transparent;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  opacity: 0;
}
#fullpage .section.home-teachers .content .linebox {
  position: relative;
  z-index: 8;
}
#fullpage .section.home-teachers .content .bold {
  top: 500px;
  border: dashed 4px rgba(152, 152, 152, 0.6);
  -webkit-animation: circle 15s linear infinite;
  animation: circle 15s linear infinite;
}
#fullpage .section.home-teachers .content .normal {
  top: 260px;
  border: dashed 2px rgba(152, 152, 152, 0.6);
  -webkit-animation: circle 15s linear infinite;
  animation: circle 15s linear infinite;
}
#fullpage .section.home-publicty {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 110px 95px 0;
  box-sizing: border-box;
  background-color: #fff;
  overflow: hidden;
}
#fullpage .section.home-publicty .content {
  position: relative;
  width: 100%;
  height: auto;
  margin-top: 0;
  background: linear-gradient(188.62deg, #DBC995 4.41%, #8C9790 27.27%, #003F88 93.21%);
}
#fullpage .section.home-publicty .content::before {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: url(../img/home/publicty-bg.png) no-repeat left top;
  background-size: cover;
}
#fullpage .section.home-publicty .content .top {
  position: relative;
  width: 100%;
  height: 80px;
  border-bottom: dashed 1px #fff;
}
#fullpage .section.home-publicty .content .top::before {
  content: '';
  display: block;
  position: absolute;
  left: -12px;
  bottom: -12px;
  width: 24px;
  height: 24px;
  border-radius: 24px;
  background-color: #fff;
}
#fullpage .section.home-publicty .content .top::after {
  content: '';
  display: block;
  position: absolute;
  right: -12px;
  bottom: -12px;
  width: 24px;
  height: 24px;
  border-radius: 24px;
  background-color: #fff;
}
#fullpage .section.home-publicty .content .top .title {
  position: relative;
  width: 280px;
  height: 80px;
  padding-top: 6px;
  margin: 0 auto;
  text-align: center;
}
#fullpage .section.home-publicty .content .top .title::before {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  top: 39px;
  width: 80px;
  height: 1px;
  background-color: #fff;
}
#fullpage .section.home-publicty .content .top .title::after {
  content: '';
  display: block;
  position: absolute;
  right: 0;
  top: 39px;
  width: 80px;
  height: 1px;
  background-color: #fff;
}
#fullpage .section.home-publicty .content .top .title h2 {
  font-size: 26px;
  line-height: 42px;
  text-align: center;
  font-weight: normal;
  color: #fff;
}
#fullpage .section.home-publicty .content .top .title h4 {
  font-size: 14px;
  line-height: 24px;
  text-align: center;
  font-weight: normal;
  color: #fff;
}
#fullpage .section.home-publicty .content .top .more {
  position: absolute;
  right: 32px;
  top: 0;
  display: block;
  height: 80px;
  line-height: 80px;
  font-size: 14px;
  color: #fff;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  cursor: pointer;
}
#fullpage .section.home-publicty .content .top .more:hover {
  text-decoration: underline;
}
#fullpage .section.home-publicty .content .bottom {
  position: relative;
  display: flex;
  justify-content: space-between;
  padding: 5% 8% 0;
  box-sizing: border-box;
}
#fullpage .section.home-publicty .content .bottom .ft-video {
  width: 48%;
}
#fullpage .section.home-publicty .content .bottom .ft-video .swiper-video-publicty {
  position: relative;
  padding: 0 48px 0;
}
#fullpage .section.home-publicty .content .bottom .ft-video .swiper-video-publicty::after {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 144px;
  background: rgba(0, 0, 0, 0.6);
}
#fullpage .section.home-publicty .content .bottom .ft-video .swiper-video-publicty .swiper-slide {
  width: 100%;
}
#fullpage .section.home-publicty .content .bottom .ft-video .swiper-video-publicty .swiper-slide .img {
  position: relative;
  width: 100%;
}
#fullpage .section.home-publicty .content .bottom .ft-video .swiper-video-publicty .swiper-slide .img::before {
  content: '';
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  width: 78px;
  height: 56px;
  margin-top: -28px;
  margin-left: -39px;
  background: url(../img/home/play.png) no-repeat center;
}
#fullpage .section.home-publicty .content .bottom .ft-video .swiper-video-publicty .swiper-slide .img img {
  display: block;
  width: 100%;
  height: 320px;
  min-height: 320px;
  object-fit: cover;
  max-height: 320px;
}
#fullpage .section.home-publicty .content .bottom .ft-video .swiper-video-publicty .swiper-slide .img .tags {
  position: absolute;
  left: -10px;
  top: 24px;
  font-size: 12px;
  color: #fff;
  padding: 10px 10px;
  background: linear-gradient(80.42deg, #C1A861 -2.5%, #DBC995 100%);
}
#fullpage .section.home-publicty .content .bottom .ft-video .swiper-video-publicty .swiper-slide .text {
  width: 100%;
  padding: 20px 0;
  text-align: center;
}
#fullpage .section.home-publicty .content .bottom .ft-video .swiper-video-publicty .swiper-slide .text h5 {
  width: 100%;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  font-size: 14px;
  line-height: 24px;
  font-weight: bold;
  text-align: center;
  color: #FFFFFF;
  margin-bottom: 5px;
}
#fullpage .section.home-publicty .content .bottom .ft-video .swiper-video-publicty .swiper-slide .text .infos {
  font-size: 12px;
  line-height: 24px;
  color: #fff;
}
#fullpage .section.home-publicty .content .bottom .ft-video .swiper-video-publicty .swiper-slide .text .infos span {
  margin: 0 5px;
}
#fullpage .section.home-publicty .content .bottom .ft-video .swiper-video-publicty .index-video-next,
#fullpage .section.home-publicty .content .bottom .ft-video .swiper-video-publicty .index-video-prev {
  position: absolute;
  width: 48px;
  height: 48px;
  backdrop-filter: blur(4px);
}
#fullpage .section.home-publicty .content .bottom .ft-video .swiper-video-publicty .index-video-next::after,
#fullpage .section.home-publicty .content .bottom .ft-video .swiper-video-publicty .index-video-prev::after {
  content: '';
  display: none;
}
#fullpage .section.home-publicty .content .bottom .ft-video .swiper-video-publicty .index-video-next {
  left: 24px;
  right: auto;
  top: auto;
  bottom: 24px;
  background: url(../img/icon/sprite.png) no-repeat 2px -117px;
  background-color: rgba(113, 113, 113, 0.75);
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
#fullpage .section.home-publicty .content .bottom .ft-video .swiper-video-publicty .index-video-next:hover {
  background-color: #084782;
}
#fullpage .section.home-publicty .content .bottom .ft-video .swiper-video-publicty .index-video-prev {
  left: auto;
  right: 24px;
  top: auto;
  bottom: 24px;
  background: url(../img/icon/sprite.png) no-repeat 2px -77px;
  background-color: rgba(113, 113, 113, 0.75);
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
#fullpage .section.home-publicty .content .bottom .ft-video .swiper-video-publicty .index-video-prev:hover {
  background-color: #084782;
}
#fullpage .section.home-publicty .content .bottom .rt-books {
  width: 48%;
}
#fullpage .section.home-publicty .content .bottom .rt-books .swiper-books-publicty {
  position: relative;
  padding: 0 48px 0;
}
#fullpage .section.home-publicty .content .bottom .rt-books .swiper-books-publicty::after {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 144px;
  background: rgba(0, 0, 0, 0.6);
}
#fullpage .section.home-publicty .content .bottom .rt-books .swiper-books-publicty .swiper-slide {
  width: 100%;
}
#fullpage .section.home-publicty .content .bottom .rt-books .swiper-books-publicty .swiper-slide .img {
  position: relative;
  width: 100%;
}
#fullpage .section.home-publicty .content .bottom .rt-books .swiper-books-publicty .swiper-slide .img img {
  display: block;
  width: 100%;
  object-fit: cover;
  object-position: center;
  height: 320px;
}
#fullpage .section.home-publicty .content .bottom .rt-books .swiper-books-publicty .swiper-slide .img .tags {
  position: absolute;
  left: -10px;
  top: 24px;
  font-size: 12px;
  color: #fff;
  padding: 10px 10px;
  background: linear-gradient(80.42deg, #C1A861 -2.5%, #DBC995 100%);
}
#fullpage .section.home-publicty .content .bottom .rt-books .swiper-books-publicty .swiper-slide .text {
  width: 100%;
  padding: 20px 0;
  text-align: center;
}
#fullpage .section.home-publicty .content .bottom .rt-books .swiper-books-publicty .swiper-slide .text h5 {
  width: 100%;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  font-size: 14px;
  line-height: 24px;
  font-weight: bold;
  text-align: center;
  color: #FFFFFF;
  margin-bottom: 5px;
}
#fullpage .section.home-publicty .content .bottom .rt-books .swiper-books-publicty .swiper-slide .text .infos {
  font-size: 12px;
  line-height: 24px;
  color: #fff;
}
#fullpage .section.home-publicty .content .bottom .rt-books .swiper-books-publicty .swiper-slide .text .infos span {
  margin: 0 5px;
}
#fullpage .section.home-publicty .content .bottom .rt-books .swiper-books-publicty .swiper-slide-prev,
#fullpage .section.home-publicty .content .bottom .rt-books .swiper-books-publicty .swiper-slide-next + .swiper-slide {
  opacity: 0;
  cursor: not-allowed;
  pointer-events: none;
}
#fullpage .section.home-publicty .content .bottom .rt-books .swiper-books-publicty .index-books-next,
#fullpage .section.home-publicty .content .bottom .rt-books .swiper-books-publicty .index-books-prev {
  position: absolute;
  width: 48px;
  height: 48px;
  backdrop-filter: blur(4px);
}
#fullpage .section.home-publicty .content .bottom .rt-books .swiper-books-publicty .index-books-next::after,
#fullpage .section.home-publicty .content .bottom .rt-books .swiper-books-publicty .index-books-prev::after {
  content: '';
  display: none;
}
#fullpage .section.home-publicty .content .bottom .rt-books .swiper-books-publicty .index-books-next {
  left: 24px;
  right: auto;
  top: auto;
  bottom: 24px;
  background: url(../img/icon/sprite.png) no-repeat 2px -117px;
  background-color: rgba(113, 113, 113, 0.75);
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
#fullpage .section.home-publicty .content .bottom .rt-books .swiper-books-publicty .index-books-next:hover {
  background-color: #084782;
}
#fullpage .section.home-publicty .content .bottom .rt-books .swiper-books-publicty .index-books-prev {
  left: auto;
  right: 24px;
  top: auto;
  bottom: 24px;
  background: url(../img/icon/sprite.png) no-repeat 2px -77px;
  background-color: rgba(113, 113, 113, 0.75);
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
#fullpage .section.home-publicty .content .bottom .rt-books .swiper-books-publicty .index-books-prev:hover {
  background-color: #084782;
}
#fullpage .section.home-footer {
  position: relative;
  display: flex;
  align-items: flex-end;
  width: 100%;
  padding: 110px 90px 0;
  box-sizing: border-box;
  background-color: #fff;
  overflow: hidden;
}
#fullpage .section.home-footer .bg .footbg {
  position: absolute;
  left: 0;
  bottom: 0;
  display: block;
  width: 100%;
}
#fullpage .section.home-footer .bg .footbg:nth-child(1) {
  z-index: 10;
}
#fullpage .section.home-footer .content {
  position: relative;
  width: 100%;
  height: auto;
  z-index: 11;
}
#fullpage .section.home-footer .content .top {
  width: 1380px;
  margin: 0 auto;
  display: flex;
  padding-bottom: 50px;
  justify-content: space-between;
  align-items: flex-end;
}
#fullpage .section.home-footer .content .top .ft-infos .arrow {
  width: 24px;
  height: 24px;
  margin-bottom: 10px;
  background: url(../img/icon/sprite.png) no-repeat -8px -208px;
}
#fullpage .section.home-footer .content .top .ft-infos h3 {
  font-weight: 700;
  font-size: 26px;
  line-height: 42px;
  text-align: center;
  color: #FFFFFF;
  margin-bottom: 22px;
}
#fullpage .section.home-footer .content .top .ft-infos p {
  display: flex;
  justify-content: flex-start;
  height: 24px;
  line-height: 24px;
  font-size: 14px;
  color: #fff;
}
#fullpage .section.home-footer .content .top .ft-infos p span.icons {
  display: block;
  width: 24px;
  height: 24px;
  padding: 3px;
}
#fullpage .section.home-footer .content .top .ft-infos p span.icons img {
  display: block;
  width: 18px;
  height: 18px;
}
#fullpage .section.home-footer .content .top .rt-infos {
  width: 655px;
  display: flex;
  justify-content: space-between;
}
#fullpage .section.home-footer .content .top .rt-infos .nav .title {
  color: #fff;
  font-size: 16px;
  margin-bottom: 15px;
}
#fullpage .section.home-footer .content .top .rt-infos .nav a {
  display: flex;
  justify-content: flex-start;
  height: 24px;
  line-height: 24px;
  font-size: 14px;
  text-transform: uppercase;
  color: #fff;
}
#fullpage .section.home-footer .content .top .rt-infos .nav a span.icons {
  display: block;
  width: 24px;
  height: 24px;
  padding: 3px;
}
#fullpage .section.home-footer .content .top .rt-infos .nav a span.icons img {
  display: block;
  width: 18px;
  height: 18px;
}
#fullpage .section.home-footer .content .top .rt-infos .links .title {
  color: #fff;
  font-size: 16px;
  margin-bottom: 28px;
}
#fullpage .section.home-footer .content .top .rt-infos .links .select-box {
  margin-bottom: 8px;
  position: relative;
}
#fullpage .section.home-footer .content .top .rt-infos .links .select-box::after {
  content: '';
  display: block;
  position: absolute;
  right: 7px;
  top: 7px;
  width: 20px;
  height: 20px;
  background: url(../img/icon/sprite.png) no-repeat -11px -251px;
}
#fullpage .section.home-footer .content .top .rt-infos .links .select-box .input_select {
  width: 210px;
  height: 34px;
  line-height: 34px;
  padding-left: 8px;
  padding-right: 30px;
  border: 1px solid #a9c9e2;
  color: #807a62;
  cursor: pointer;
  box-sizing: border-box;
}
#fullpage .section.home-footer .content .top .rt-infos .links .select-box .input_select:focus {
  outline: none;
}
#fullpage .section.home-footer .content .top .rt-infos .links .select-box ul {
  width: calc(100% - 2px);
  background: #e8f5fe;
  border: 1px solid #a9c9e2;
  position: absolute;
  z-index: 99;
  display: none;
}
#fullpage .section.home-footer .content .top .rt-infos .links .select-box ul li {
  height: 30px;
  line-height: 30px;
  text-indent: 10px;
}
#fullpage .section.home-footer .content .top .rt-infos .links .select-box ul li a {
  display: block;
  height: 30px;
  font-size: 14px;
  color: #807a62;
  text-decoration: none;
}
#fullpage .section.home-footer .content .top .rt-infos .links .select-box ul li a:hover {
  background: #c6dbfc;
  color: #369;
}
#fullpage .section.home-footer .content .top .rt-infos .links .select-box select {
  min-width: 210px;
  height: 34px;
  padding-left: 5px;
  border-radius: 2px;
  color: #00000025;
}
#fullpage .section.home-footer .content .top .rt-infos .wx-follow {
  width: 194px;
  height: 106px;
  background: #ffffff10;
  border-radius: 4px;
  padding: 12px 12px 12px 24px;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#fullpage .section.home-footer .content .top .rt-infos .wx-follow .tips p {
  text-align: center;
  line-height: 24px;
  font-size: 12px;
}
#fullpage .section.home-footer .content .top .rt-infos .wx-follow .tips p:first-child {
  font-size: 14px;
  font-weight: 700;
}
#fullpage .section.home-footer .content .top .rt-infos .wx-follow .wx-code {
  width: 104px;
  height: 104px;
  border-radius: 4px;
}
#fullpage .section.home-footer .content .bottom-copyright {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
  width: 100%;
  padding: 24px 0;
  text-align: center;
  border-top: solid 1px #C1A861;
}
#fullpage .section.home-footer .content .bottom-copyright span {
  margin-right: 10px;
}
#fullpage .section.home-footer .content .bottom-copyright a {
  color: #C1A861;
}
#fullpage .section.home-footer .content .bottom-copyright a:hover {
  text-decoration: underline;
}

.loading {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  z-index: 99;
  background: url(../img/home/loading-bg.png) center bottom no-repeat #fff;
  background-size: 100% auto;
  text-align: center;
  overflow: hidden;
}
.loading.hide {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: fadeOut;
  animation-name: auto;
  z-index: 99;
}
.loading-process-blue {
  display: flex;
  width: 0;
  flex-direction: column;
  position: absolute;
  margin-top: 50vh;
  height: 120px;
  transform: translateY(-50%);
  z-index: 12;
  overflow: hidden;
}
.loading-process-blue .blue {
  position: absolute;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100vw;
  height: 120px;
  background: #084782;
}
.loading-process-white {
  display: flex;
  flex-direction: column;
  position: absolute;
  margin-top: 50vh;
  height: 120px;
  transform: translateY(-50%);
  z-index: 10;
}
.loading-process-white .white {
  position: absolute;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100vw;
  height: 120px;
  background: #fff;
}
.loading .whiteBg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  z-index: 9;
}
.loading .blueLine {
  position: absolute;
  width: 0;
  height: 120px;
  margin-top: 50vh;
  transform: translateY(-50%);
  background: #084782;
  z-index: 11;
}
.loading-logo {
  width: 100vw;
  height: 120px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 2;
}
.loading-logo img{
  width: 630px;
display:block;
}
.loading-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 20;
  padding-top: 160px;
  color: #084782;
  margin-top: 50vh;
  transform: translateY(-50%);
}
.loading-bar .loading-rate {
  width: 30px;
  animation: fadeRate 3s linear  infinite;
}
.loading-bar .loading-text {
  height: 30px;
  line-height: 30px;
  border: none;
  outline: none;
  color: #084782;
}
@keyframes fadeRate {
  100% {
    transform: rotate(360deg);
  }
}
@keyframes iconRotate {
  100% {
    transform: rotate(225deg);
  }
}
.container .service-online {
  position: fixed;
  bottom: 0;
  right: 0;
  opacity: 0;
  /* transform: scale(0); */
  /* transition: all 1s ease-out 0.5s; */
  /* transform-origin: right bottom; */
  z-index: 11;
}
.container .service-online.showdiv {
  opacity: 1;
  transform: none;
}
/*.container .service-online:hover {
  background: #fff;
}*/
.container .service-online .service-btn {
  position: relative;
  width: 168px;
  height: 55px;
  padding: 16px;
  font-weight: 600;
  color: #084782;
  padding-top: 56px;
  cursor: pointer;
  font-size: 16px;
    background-color: #ffffffc4;
}
.container .service-online .service-btn .btn-icon {
  position: absolute;
  left: 16px;
  top: 16px;
}
.container .service-online .service-page {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.container .service-online .service-page .service-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: rgba(8, 71, 130, 0.75);
}
.container .service-online .service-page .service-box {
  position: absolute;
  left: 50%;
  top: 0;
  z-index: 99;
  width: calc(50% - 80px);
  height: 100%;
  padding: 40px;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(4px);
}
.container .service-online .service-page .service-box .title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 60px;
  margin-bottom: 40px;
  border-bottom: 1px solid #084782;
  color: #084782;
}
.container .service-online .service-page .service-box .title .intro {
  display: flex;
  align-items: center;
  font-size: 24px;
  line-height: 36px;
  cursor: pointer;
}
.container .service-online .service-page .service-box .title .intro img {
  width: 24px;
  height: 24px;
  margin-right: 10px;
  transform: rotate(180deg);
}
.container .service-online .service-page .service-box .title .tips {
  font-size: 14px;
  line-height: 28px;
  cursor: pointer;
    font-weight: 600;
}
.container .service-online .service-page .service-box .title .tips:hover {
  color: #000;
}
.container .service-online .service-page .service-box .menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.container .service-online .service-page .service-box .menu li {
  position: relative;
  flex: 0 0 calc(50% - 112px);
  display: flex;
  justify-content: flex-start;
  align-items: center;
  height: 163px;
  background: rgba(255, 255, 255, 0.25);
  margin-bottom: 24px;
  padding: 32px 48px 28px 48px;
  transition: all 0.5s linear;
  font-size: 24px;
  line-height: 36px;
  font-weight: 700;
  color: #084782;
  border: 2px solid transparent;
}
.container .service-online .service-page .service-box .menu li:nth-child(2n) {
  margin-left: 24px;
}
.container .service-online .service-page .service-box .menu li:nth-child(1) {
  background: url(../img/home/menu-bg1.png) left bottom no-repeat rgba(255, 255, 255, 0.25);
}
.container .service-online .service-page .service-box .menu li:nth-child(2) {
  background: url(../img/home/menu-bg2.png) left bottom no-repeat rgba(255, 255, 255, 0.25);
}
.container .service-online .service-page .service-box .menu li:nth-child(3) {
  background: url(../img/home/menu-bg3.png) left bottom no-repeat rgba(255, 255, 255, 0.25);
}
.container .service-online .service-page .service-box .menu li:nth-child(4) {
  background: url(../img/home/menu-bg4.png) left bottom no-repeat rgba(255, 255, 255, 0.25);
}
.container .service-online .service-page .service-box .menu li:nth-child(5) {
  background: url(../img/home/menu-bg5.png) left bottom no-repeat rgba(255, 255, 255, 0.25);
}
.container .service-online .service-page .service-box .menu li:nth-child(6) {
  background: url(../img/home/menu-bg6.png) left bottom no-repeat rgba(255, 255, 255, 0.25);
}
.container .service-online .service-page .service-box .menu li .icon-jiantou {
  position: absolute;
  right: 28px;
  bottom: 28px;
  transform: rotate(45deg);
  width: 16px;
  transition: all 0.5s linear;
}
.container .service-online .service-page .service-box .menu li .txt {
  transition: all 0.4s linear;
}
.container .service-online .service-page .service-box .menu li .menu-img {
  position: absolute;
  right: 72px;
  top: 54px;
  width: 120px;
  height: auto;
  transition: all 0.4s linear;
}
.container .service-online .service-page .service-box .menu li .box {
  position: absolute;
  top: 130px;
  left: 48px;
  display: flex;
  flex-direction: column;
  margin-top: 16px;
  opacity: 0;
  transition: all 0.4s linear;
}
.container .service-online .service-page .service-box .menu li .box a {
  display: inline-block;
  width: 100%;
  font-size: 14px;
  line-height: 22px;
  color: #084782;
  text-decoration: none;
}
.container .service-online .service-page .service-box .menu li .box a:hover {
  text-decoration: underline;
}
.container .service-online .service-page .service-box .menu li:hover {
  border-image: -webkit-linear-gradient(135deg, #DBC995, #003F88, #DBC995) 30 30;
  border-image: -moz-linear-gradient(135deg, #DBC995, #003F88, #DBC995) 30 30;
  border-image: linear-gradient(135deg, #DBC995, #003F88, #DBC995) 30 30;
}
.container .service-online .service-page .service-box .menu li:hover .txt {
  margin-bottom: 127px;
}
.container .service-online .service-page .service-box .menu li:hover .icon-jiantou {
  transform: rotate(225deg);
}
.container .service-online .service-page .service-box .menu li:hover .menu-img {
  position: absolute;
  right: 32px;
  top: 24px;
  width: 64px;
}
.container .service-online .service-page .service-box .menu li:hover .box {
  display: flex;
  opacity: 1;
  top: 50%;
  left: 48px;
  margin-top: 20px;
  transform: translateY(-50%);
}
.container .home-navs {
  position: fixed;
  left: 0;
  top: calc(50% - 204px);
  z-index: 9;
}
.container .home-navs > div {
  width: 165px;
  height: 64px;
  margin-bottom: 4px;
  background: rgba(219, 219, 219, 0.8);
  backdrop-filter: blur(4px);
  cursor: pointer;
  /* margin-left: -150px; */
  transition: margin-left 0.5s;
}
.container .home-navs > div a {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 20px;
  text-decoration: none;
  color: #fff;
}
.container .home-navs > div a span {
  position: relative;
  display: block;
  line-height: 24px;
  font-size: 13px;
  font-weight: 700;
  z-index: 2;
}
.container .home-navs > div a span:first-child {
  font-size: 16px;
  font-weight: 700;
}
.container .home-navs > div:hover {
  margin-left: 0px;
}
.container .home-navs > div:hover a {
  color: #084782;
}
.container .home-navs > div:hover a::before {
  opacity: 1;
}
.container .home-navs .items a {
  position: relative;
  display: flex;
}
.container .home-navs .items a::after {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-position: 60px 12px;
  background-repeat: no-repeat;
  background-size: 64px 64px;
  z-index: 1;
  opacity: 0.4;
}
.container .home-navs .items a::before {
  content: '';
  display: block;
  position: absolute;
  right: 15px;
  top: calc(50% - 12px);
  width: 24px;
  height: 24px;
  background-image: url(../img/home/home-navs/arrow-right.svg);
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: 24px 24px;
  z-index: 1;
  opacity: 0;
}
.container .home-navs .item:hover a::before {
  opacity: 1;
}
.container .home-navs .items:nth-child(1) a::after {
  background-image: url(../img/home/home-navs/1.svg);
}
.container .home-navs .items:nth-child(2) a::after {
  background-image: url(../img/home/home-navs/2.svg);
}
.container .home-navs .items:nth-child(3) a::after {
  background-image: url(../img/home/home-navs/3.svg);
}
.container .home-navs .items:nth-child(4) a::after {
  background-image: url(../img/home/home-navs/4.svg);
}
.container .home-navs .items:nth-child(5) a::after {
  background-image: url(../img/home/home-navs/5.svg);
}
.container .home-navs .items:nth-child(6) a::after {
  background-image: url(../img/home/home-navs/6.svg);
}
.container .home-navs .active {
  background: linear-gradient(80.42deg, #C1A861 -2.5%, #DBC995 100%);
  backdrop-filter: blur(4px);
}
.container .home-navs .active:hover a {
  color: #fff;
}
.container .home-navs .active:hover a::before {
  opacity: 0;
}
@media only screen and (min-width: 1441px) and (max-width: 1600px) {
  .home-header,
  .news-header {
    width: 100%;
  }
  .header .header-box .logo {
    width: 40%;
  }
  #fullpage .section.welcome {
    padding: 110px 96px 80px;
    align-items: center;
    background: #084782;
  }
  #fullpage .section.welcome .welBanner .swiper-index-first .index-first-pagination {
    height: 12px;
  }
  #fullpage .section.welcome .text {
    font-size: 32px;
  }
  #fullpage .section.welcome .college span {
    width: 36px;
    height: 36px;
  }
  #fullpage .section.welcome .welBanner .swiper-index-first {
    padding-top: 25px;
    margin-top: -18px;
  }
  /* #fullpage .section.welcome .welBanner .swiper-index-first .swiper-slide .img img {
    height: 400px;
    min-height: 400px;
  } */
  #fullpage .section.home-news .news-left {
    width: 100%;
  }
  #fullpage .section.home-news .news-left.newWidth {
    width: 35%;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
  }
  #fullpage .section.home-news .news-right {
    width: 65%;
    padding: 110px 90px 0 30px;
  }
  #fullpage .section.home-news .news-right .items {
    width: calc(58% - 40px);
    margin-right: 30px;
    margin-bottom: 30px;
  }
  #fullpage .section.home-news .news-right .items:nth-child(1),
  #fullpage .section.home-news .news-right .items:nth-child(4) {
    width: 42%;
  }
  #fullpage .section.home-news .news-right .items:nth-child(2n) {
    margin-right: 0;
  }
  #fullpage .section.home-news .news-right .items .format-up .imgs img {
    height: 255px;
  }
  #fullpage .section.home-notice {
    background-color: #fff;
  }
  #fullpage .section.home-notice .content .title {
    top: 0;
    width: 800px;
    height: 128px;
    font-weight: 800;
    padding: 15px 24px;
  }
  #fullpage .section.home-notice .content .title .ft-title h3 {
    font-size: 30px;
    line-height: 50px;
  }
  #fullpage .section.home-notice .content .notice-left {
    width: calc(50vw - 120px);
  }
  #fullpage .section.home-notice .content .notice-left .item {
    width: calc(50% - 12px);
    margin-right: 12px;
    height: auto;
    padding: 15px 24px;
    margin-top: 22px;
  }
  #fullpage .section.home-notice .content .notice-left .item:nth-child(2n) {
    margin-right: 0;
    margin-left: 0;
  }
  #fullpage .section.home-teachers {
    background-size: 70%;
  }
  #fullpage .section.home-teachers.movebg {
    background-position-x: calc(100vw - 994px);
  }
  #fullpage .section.home-teachers .content .normal {
    top: 215px;
  }
  #fullpage .section.home-teachers .content .bold {
    top: 362px;
  }
  #fullpage .section.home-teachers .content .map-right {
    width: 980px;
  }
  #fullpage .section.home-teachers .content .map-right .imgs {
    position: relative;
    width: 100%;
  }
  #fullpage .section.home-teachers .content .map-right .imgs .data {
    padding: 24px 25px 24px 25px;
  }
  #fullpage .section.home-teachers .content .map-right .imgs .data::before {
    height: 165px;
    left: -16px;
    top: 36px;
  }
  #fullpage .section.home-teachers .content .map-right .imgs .data::after {
    left: 10px;
    top: 32px;
  }
  #fullpage .section.home-teachers .content .map-right .imgs .data .ft .area-cn {
    font-size: 16px;
  }
  #fullpage .section.home-teachers .content .map-right .imgs .data .ft .area-en {
    font-size: 12px;
  }
  #fullpage .section.home-teachers .content .map-right .imgs .data .rt {
    font-size: 14px;
    line-height: 24px;
    margin-left: 20px;
    color: rgba(255, 255, 255, 0.75);
  }
  #fullpage .section.home-teachers .content .map-right .imgs .data .rt b {
    color: #fff;
  }
  #fullpage .section.home-teachers .content .map-right .imgs .data:nth-child(1) {
    left: 192px;
    top: 25px;
  }
  #fullpage .section.home-teachers .content .map-right .imgs .data:nth-child(2) {
    left: 533px;
    top: 13px;
  }
  #fullpage .section.home-teachers .content .map-right .imgs .data:nth-child(3) {
    left: 324px;
    top: 29px;
  }
  #fullpage .section.home-teachers .content .map-right .imgs .data:nth-child(3)::before {
    left: auto;
    right: -16px;
    border-top: solid 2px #C1A861;
    border-right: solid 2px #C1A861;
    border-left: none;
  }
  #fullpage .section.home-teachers .content .map-right .imgs .data:nth-child(3)::after {
    left: auto;
    right: 10px;
  }
  #fullpage .section.home-teachers .content .map-right .imgs .data:nth-child(4) {
    left: 278px;
    top: 154px;
  }
  #fullpage .section.home-teachers .content .map-right .imgs .data:nth-child(5) {
    left: 516px;
    top: 118px;
  }
  #fullpage .section.home-teachers .content .map-right .imgs .data:nth-child(6) {
    left: 463px;
    top: 190px;
  }
  #fullpage .section.home-teachers .content .map-right .imgs .data:nth-child(6)::before {
    left: auto;
    right: -16px;
    border-top: solid 2px #C1A861;
    border-right: solid 2px #C1A861;
    border-left: none;
  }
  #fullpage .section.home-teachers .content .map-right .imgs .data:nth-child(6)::after {
    left: auto;
    right: 10px;
  }
  #fullpage .section.home-teachers .content .map-right .imgs .markbox .mark {
    position: absolute;
    width: 80px;
    height: 40px;
    background: url(../img/icon/mark.svg) no-repeat center;
    cursor: pointer;
    z-index: 99;
  }
  #fullpage .section.home-teachers .content .map-right .imgs .markbox .mark:nth-child(1) {
    left: 136px;
    top: 219px;
  }
  #fullpage .section.home-teachers .content .map-right .imgs .markbox .mark:nth-child(2) {
    left: 478px;
    top: 205px;
  }
  #fullpage .section.home-teachers .content .map-right .imgs .markbox .mark:nth-child(3) {
    left: 653px;
    top: 220px;
  }
  #fullpage .section.home-teachers .content .map-right .imgs .markbox .mark:nth-child(4) {
    left: 224px;
    top: 345px;
  }
  #fullpage .section.home-teachers .content .map-right .imgs .markbox .mark:nth-child(5) {
    left: 460px;
    top: 305px;
  }
  #fullpage .section.home-teachers .content .map-right .imgs .markbox .mark:nth-child(6) {
    left: 794px;
    top: 382px;
  }
  #fullpage .section.home-teachers .content .map-right .imgs .markbox .markLogo {
    position: absolute;
    right: 70px;
    display: block;
    top: 240px;
    width: 80px;
    height: 80px;
    z-index: 100;
  }
  #fullpage .section.home-teachers .content .map-right .imgs .markbox .markStart {
    position: absolute;
    left: 732px;
    display: block;
    top: 250px;
    width: 80px;
    height: 40px;
    z-index: 99;
    background-size: cover;
  }
  #fullpage .section.home-teachers .content .power-left {
    height: 492px;
    margin-top: 0;
    top: calc(50% - 191px);
    padding: 30px 0 30px 48px;
  }
  #fullpage .section.home-teachers .content .power-left .item {
    margin-bottom: 0;
  }
  #fullpage .section.home-teachers .content .power-left .item h2 {
    font-size: 30px;
    line-height: 48px;
  }
  #fullpage .section.home-publicty .content {
    margin-top: 0;
  }
  #fullpage .section.home-publicty .content .bottom .ft-video .swiper-video-publicty .swiper-slide .img img {
    height: 255px;
    min-height: 255px;
  }
  #fullpage .section.home-publicty .content .bottom .rt-books .swiper-books-publicty .swiper-slide .img img {
    height: 255px;
  }
  #fullpage .section.home-footer {
    padding: 110px 60px 0;
  }
  #fullpage .section.home-footer .content .top {
    width: 1200px;
    padding-bottom: 40px;
  }
  #fullpage .section.home-footer .content .bottom-copyright {
    padding: 17px 0;
  }
  .container .service-online .service-page .service-box {
    left: 42%;
    width: calc(58% - 80px);
    padding: 30px 40px 0;
  }
  .container .service-online .service-page .service-box .title {
    margin-bottom: 25px;
  }
  .container .service-online .service-page .service-box .menu {
    width: 100%;
  }
  .container .service-online .service-page .service-box .menu li {
    height: 125px;
    flex: 0 0 calc(50% - 68px);
    padding: 20px 25px 24px 25px;
  }
  .container .service-online .service-page .service-box .menu li .menu-img {
    position: absolute;
    top: 50%;
    right: 40px;
    width: 90px;
    height: 90px;
    margin-top: -45px;
  }
  .container .service-online .service-page .service-box .menu li .box {
    left: 25px;
  }
  .container .service-online .service-page .service-box .menu li:hover .txt {
    margin-bottom: 120px;
    display: none;
  }
  .container .service-online .service-page .service-box .menu li:hover .icon-jiantou {
    transform: rotate(225deg);
  }
  .container .service-online .service-page .service-box .menu li:hover .menu-img {
    position: absolute;
    right: 32px;
    top: 24px;
    width: 64px;
    height: 64px;
    margin-top: 0;
    display: none;
  }
  .container .service-online .service-page .service-box .menu li:hover .box {
    display: flex;
    opacity: 1;
    top: 15px;
    top: 50%;
    left: 25px;
    margin-top: 0;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1440px) {
  .home-header,
  .news-header {
    height: 97px;
  }
  .header .header-box {
    height: auto;
    padding: 16px 60px;
  }
  .header .header-box .logo {
    width: 40%;
  }
  .header .header-box .aside .navs {
    margin-top: 5px;
  }
  .header .header-box .aside .topnav .icon {
    height: 20px;
  }
  .header .header-box .aside .topnav .icon-search::after {
    top: 4px;
  }
  .container .service-online .service-btn {
    width: 125px;
    height: 30px;
  }
  .container .home-navs > div {
    width: 160px;
    height: 64px;
  }
  .container .service-online .service-page .service-box {
    left: 40%;
    width: calc(60% - 40px);
    padding: 20px;
  }
  .container .service-online .service-page .service-box .menu {
    width: 100%;
  }
  .container .service-online .service-page .service-box .menu li {
    height: 90px;
    flex: 0 0 calc(50% - 68px);
    padding: 20px 25px 24px 25px;
  }
  .container .service-online .service-page .service-box .menu li .txt {
    transition: all 0.4s linear;
    font-size: 24px;
  }
  .container .service-online .service-page .service-box .menu li .menu-img {
    position: absolute;
    top: 50%;
    right: 40px;
    width: 64px;
    height: 64px;
    margin-top: -32px;
  }
  .container .service-online .service-page .service-box .menu li .box {
    left: 25px;
  }
  .container .service-online .service-page .service-box .menu li .icon-jiantou {
    right: 20px;
    bottom: 20px;
    width: 16px;
  }
  .container .service-online .service-page .service-box .menu li:hover .txt {
    display: none;
  }
  .container .service-online .service-page .service-box .menu li:hover .icon-jiantou {
    transform: rotate(225deg);
  }
  .container .service-online .service-page .service-box .menu li:hover .menu-img {
    display: none;
  }
  .container .service-online .service-page .service-box .menu li:hover .box {
    display: flex;
    opacity: 1;
    top: 0;
    left: 0;
    margin-top: 0;
    padding: 10px 15px;
    transform: translateY(0);
  }
  .container .service-online .service-page .service-box .menu li:hover .box a {
    font-size: 12px;
  } 
  #fullpage .section.welcome {
    padding: 98px 60px 60px;
  }
  #fullpage .section.welcome .text {
    font-size: 28px;
    margin-bottom: 10px;
  }
  #fullpage .section.welcome .college {
    font-size: 32px;
    height: 40px;
    line-height: 40px;
  }
  #fullpage .section.welcome .college span {
    height: 34px;
    width: 34px;
    margin-top: 3px;
  }
  #fullpage .section.welcome .welBanner .swiper-index-first {
    padding-top: 20px;
  }
  #fullpage .section.welcome .welBanner .swiper-index-first .swiper-slide .img img {
    display: block;
    width: 100%;
    /* height: 380px; */
    object-fit: cover;
    object-position: center;
  }
  #fullpage .section.home-news .news-left {
    width: 100%;
  }
  #fullpage .section.home-news .news-left.newWidth {
    width: 35%;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
  }
  #fullpage .section.home-news .news-left .title h3 {
    font-size: 32px;
    font-weight: bold;
    color: #fff;
  }
  #fullpage .section.home-news .news-left .more {
    margin-top: 30px;
  }
  #fullpage .section.home-news .news-right {
    width: calc(65% - 80px);
    padding: 90px 60px 0 20px;
  }
  #fullpage .section.home-news .news-right .items {
    width: calc(55% - 15px);
    margin-right: 15px;
    margin-bottom: 30px;
  }
  #fullpage .section.home-news .news-right .items .format-up .imgs img {
    height: 240px;
  }
  #fullpage .section.home-news .news-right .items .format-up .texts .top h3 {
    width: calc(100% - 100px);
    font-size: 14px;
    line-height: 24px;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  #fullpage .section.home-news .news-right .items .format-up .texts .top .time span {
    font-size: 12px;
  }
  #fullpage .section.home-news .news-right .items:nth-child(1),
  #fullpage .section.home-news .news-right .items:nth-child(4) {
    width: calc(45% - 15px);
  }
  #fullpage .section.home-news .news-right .items:nth-child(even) {
    margin-right: 0;
    margin-left: 15px;
  }
  #fullpage .section.home-news .news-right .items:hover {
    margin-top: -19px;
    margin-bottom: 49px;
  }
  #fullpage .section.home-news .news-right .items:hover .format-up .texts {
    bottom: 0;
  }
  #fullpage .section.home-notice {
    display: flex;
    padding: 110px 60px 0;
    box-sizing: border-box;
    background-color: #fff;
  }
  #fullpage .section.home-notice .content {
    margin-top: -12px;
  }
  #fullpage .section.home-notice .content .notice-left {
    width: calc(50vw - 60px);
    padding-top: 0;
  }
  #fullpage .section.home-notice .content .notice-left .item {
    width: calc(50% - 20px);
    margin-right: 20px;
    margin-top: 20px;
    height: auto;
    padding: 12px 15px;
  }
  #fullpage .section.home-notice .content .notice-left .item h3 {
    margin-bottom: 8px;
  }
  #fullpage .section.home-notice .content .banner-right {
    margin-top: -6px;
  }
  #fullpage .section.home-notice .content .title {
    width: 750px;
    top: 0;
    height: 105px;
    padding: 20px 20px;
  }
  #fullpage .section.home-notice .content .title .ft-title h3 {
    font-size: 32px;
    line-height: 48px;
  }
  #fullpage .section.home-notice .content .title .ft-title h6 {
    display: none;
  }
  #fullpage .section.home-teachers {
    padding: 98px 60px 0;
    background-size: 60%;
  }
  #fullpage .section.home-teachers.movebg {
    background-position-x: calc(100vw - 834px);
  }
  #fullpage .section.home-teachers .content .bold {
    top: 330px;
  }
  #fullpage .section.home-teachers .content .normal {
    top: 210px;
  }
  #fullpage .section.home-teachers .content .power-left {
    width: 320px;
    height: 462px;
    top: calc(50% - 182px);
    margin-top: 0;
    padding: 15px 0 15px 20px;
  }
  #fullpage .section.home-teachers .content .power-left .item {
    margin-bottom: 15px;
  }
  #fullpage .section.home-teachers .content .power-left .item h3 {
    font-size: 20px;
  }
  #fullpage .section.home-teachers .content .power-left .item h2 {
    font-size: 26px;
    line-height: 32px;
  }
  #fullpage .section.home-teachers .content .map-right {
    width: 925px;
  }
  #fullpage .section.home-teachers .content .map-right .imgs {
    position: relative;
    width: 100%;
  }
  #fullpage .section.home-teachers .content .map-right .imgs .data {
    padding: 24px 25px 24px 25px;
  }
  #fullpage .section.home-teachers .content .map-right .imgs .data::before {
    height: 165px;
    left: -16px;
    top: 36px;
  }
  #fullpage .section.home-teachers .content .map-right .imgs .data::after {
    left: 10px;
    top: 32px;
  }
  #fullpage .section.home-teachers .content .map-right .imgs .data .ft .area-cn {
    font-size: 16px;
  }
  #fullpage .section.home-teachers .content .map-right .imgs .data .ft .area-en {
    font-size: 12px;
  }
  #fullpage .section.home-teachers .content .map-right .imgs .data .rt {
    font-size: 14px;
    line-height: 24px;
    margin-left: 20px;
    color: rgba(255, 255, 255, 0.75);
  }
  #fullpage .section.home-teachers .content .map-right .imgs .data .rt b {
    color: #fff;
  }
  #fullpage .section.home-teachers .content .map-right .imgs .data:nth-child(1) {
    left: 180px;
    top: 18px;
  }
  #fullpage .section.home-teachers .content .map-right .imgs .data:nth-child(2) {
    left: 504px;
    top: 2px;
  }
  #fullpage .section.home-teachers .content .map-right .imgs .data:nth-child(3) {
    left: 282px;
    top: 20px;
  }
  #fullpage .section.home-teachers .content .map-right .imgs .data:nth-child(3)::before {
    left: auto;
    right: -16px;
    border-top: solid 2px #C1A861;
    border-right: solid 2px #C1A861;
    border-left: none;
  }
  #fullpage .section.home-teachers .content .map-right .imgs .data:nth-child(3)::after {
    left: auto;
    right: 10px;
  }
  #fullpage .section.home-teachers .content .map-right .imgs .data:nth-child(4) {
    left: 264px;
    top: 132px;
  }
  #fullpage .section.home-teachers .content .map-right .imgs .data:nth-child(5) {
    left: 488px;
    top: 93px;
  }
  #fullpage .section.home-teachers .content .map-right .imgs .data:nth-child(6) {
    left: 415px;
    top: 168px;
  }
  #fullpage .section.home-teachers .content .map-right .imgs .data:nth-child(6)::before {
    left: auto;
    right: -16px;
    border-top: solid 2px #C1A861;
    border-right: solid 2px #C1A861;
    border-left: none;
  }
  #fullpage .section.home-teachers .content .map-right .imgs .data:nth-child(6)::after {
    left: auto;
    right: 10px;
  }
  #fullpage .section.home-teachers .content .map-right .imgs .markbox .mark {
    position: absolute;
    width: 80px;
    height: 40px;
    background: url(../img/icon/mark.svg) no-repeat center;
    cursor: pointer;
    z-index: 99;
  }
  #fullpage .section.home-teachers .content .map-right .imgs .markbox .mark:hover {
    background-image: url(../img/home/ZJUPin.svg);
  }
  #fullpage .section.home-teachers .content .map-right .imgs .markbox .mark:nth-child(1) {
    left: 125px;
    top: 206px;
  }
  #fullpage .section.home-teachers .content .map-right .imgs .markbox .mark:nth-child(2) {
    left: 448px;
    top: 190px;
  }
  #fullpage .section.home-teachers .content .map-right .imgs .markbox .mark:nth-child(3) {
    left: 613px;
    top: 208px;
  }
  #fullpage .section.home-teachers .content .map-right .imgs .markbox .mark:nth-child(4) {
    left: 209px;
    top: 322px;
  }
  #fullpage .section.home-teachers .content .map-right .imgs .markbox .mark:nth-child(5) {
    left: 432px;
    top: 282px;
  }
  #fullpage .section.home-teachers .content .map-right .imgs .markbox .mark:nth-child(6) {
    left: 745px;
    top: 356px;
  }
  #fullpage .section.home-teachers .content .map-right .imgs .markbox .markLogo {
    position: absolute;
    right: 70px;
    display: block;
    top: 228px;
    width: 80px;
    height: 80px;
    z-index: 100;
  }
  #fullpage .section.home-teachers .content .map-right .imgs .markbox .markStart {
    position: absolute;
    left: 732px;
    display: block;
    top: 236px;
    width: 80px;
    height: 40px;
    z-index: 99;
    background-size: cover;
  }
  #fullpage .section.home-publicty {
    padding: 98px 60px 0;
  }
  #fullpage .section.home-publicty .content {
    margin-top: 0;
  }
  #fullpage .section.home-publicty .content .bottom .ft-video .swiper-video-publicty .swiper-slide .img img {
    height: 235px;
    min-height: 235px;
  }
  #fullpage .section.home-publicty .content .bottom .rt-books .swiper-books-publicty .swiper-slide .img img {
    height: 235px;
    min-height: 235px;
  }
  #fullpage .section.home-footer {
    padding: 98px 60px 0;
  }
  #fullpage .section.home-footer .content .top {
    width: 1180px;
    padding-bottom: 30px;
  }
  #fullpage .section.home-footer .content .bottom-copyright {
    padding: 16px 0;
  }
}
#fullpage .section.home-notice .content .notice-left {
  position: relative;
  width: calc(50vw - 120px);
  display: none;
  flex-wrap: wrap;
  justify-content: space-between;
}
#fullpage .section.home-notice .content .notice-left .item {
  float: left;
  width: calc(50% - 30px);
  margin-right: 0;
  margin-top: 35px;
  height: 120px;
  padding: 24px;
  background: url(../img/home/notice-bg.png) no-repeat right top;
  background: none;
  background-color: #e5e5e5;
  box-sizing: border-box;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
#fullpage .section.home-notice .content .notice-left .item h3 {
  font-size: 14px;
  line-height: 24px;
  height: 48px;
  font-weight: normal;
  color: #000000;
  margin-bottom: 10px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
#fullpage .section.home-notice .content .notice-left .item h3 a {
  color: #000000;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
#fullpage .section.home-notice .content .notice-left .item .time {
  display: flex;
  font-size: 14px;
  line-height: 18px;
  color: #C1A861;
}
#fullpage .section.home-notice .content .notice-left .item .time span.icon {
  display: block;
  width: 18px;
  height: 18px;
  margin-right: 5px;
  background: url(../img/home/notice/time-gold.svg) no-repeat 0 0;
  background-size: cover;
  overflow: hidden;
  -webkit-transition: all .1s linear;
-moz-transition: all .1s linear;
-ms-transition: all .1s linear;
-o-transition: all .1s linear;
transition: all .1s linear;
}
#fullpage .section.home-notice .content .notice-left .item:hover {
  background-color: #084782;
  transform: scale(1.1);
}
#fullpage .section.home-notice .content .notice-left .item:hover h3 {
  color: #fff;
}
#fullpage .section.home-notice .content .notice-left .item:hover h3 a {
  color: #fff;
}
#fullpage .section.home-notice .content .banner-right img {
  height: 68vh;
  width: 100%;
  object-position: center;
  object-fit: cover;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  opacity: 0;
}
#fullpage .section.home-teachers .content .map-right .imgs .markbox .markLogo {
  position: absolute;
  right: 170px;
  display: block;
  bottom: 186px;
  width: 80px;
  height: 80px;
  background: url(../img/home/ZJULogoOval.png) no-repeat center;
  z-index: 100;
}

@media only screen and (min-width: 1441px) and (max-width: 1600px){
  #fullpage .section.home-notice .content .notice-left .item {
    width: calc(50% - 12px);
    height: auto;
    padding: 15px 24px;
    margin-top: 15px;
  }
  /* #fullpage .section.home-notice .content .notice-left .item:nth-child(2n) {
    margin-right: 0;
    margin-left: 0;
  } */
  #fullpage .section.home-teachers .content .map-right .imgs .markbox .markLogo {
    position: absolute;
    right: 105px;
    display: block;
    top: 240px;
    width: 80px;
    height: 80px;
    z-index: 100;
  }
  #fullpage .section.home-teachers.movebg {
    background-position-x: calc(100vw - 1065px);
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1440px) {
  #fullpage .section.home-notice .content .notice-left {
    width: calc(50vw - 80px);
    padding-top: 0;
  }
  #fullpage .section.home-notice .content .notice-left .item {
    width: calc(50% - 10px);
    height: auto;
    padding: 12px 15px;
    margin-top: 15px;
  }
  #fullpage .section.home-teachers .content .map-right .imgs .markbox .markLogo {
    position: absolute;
    right: 95px;
    display: block;
    top: 228px;
    width: 80px;
    height: 80px;
    z-index: 100;
  }
}
#fullpage .section.home-publicty .content {
  opacity: 0;
}
#fullpage .section.home-footer {
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  opacity: 0;
}
#fullpage .section.home-footer .bg .footbg {
  opacity: 0;
}
#fullpage .section.home-footer .content {
  opacity: 0;
}