<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">* {
  padding: 0;
  margin: 0;
}

@font-face {
  font-family: Arial-BoldMT;
  src: url('../fonts/arial-boldmt.otf');
}

@keyframes zoomIn {
  0% {
    transform: scale(0.3);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes linearDown {
  0% {
    transform: translateY(-100%);
  }

  100% {
    transform: translateY(0%);
  }
}

@keyframes linearLeft {
  0% {
    transform: translateX(100%);
  }

  100% {
    transform: translateX(0%);
  }
}

@keyframes shakeY {

  0%,
  100% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }

  30% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }

  80% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
}

body {
  font-size: 12px;
  background-color: #fff;
  color: #000;
  font-family: SourceHanSansCN-Normal;
}

a {
  color: inherit;
  text-decoration: none;
}

a.full {
  display: inline-block;
  height: 100%;
  width: 100%;
}

img {
  border: none;
  max-width: 100%;
  outline: none;
}

ul,
ol {
  list-style: none;
}

span.star {
  display: inline-block;
  width: 22px;
  height: 20px;
  background: url('../img/star.png') no-repeat center;
}

.m-auto {
  margin: 0 auto;
}

.flex {
  display: flex;
}

.items-center {
  align-items: center;
}

.flex-b {
  display: flex;
  justify-content: space-around;
}

.grayBg {
  background-color: #efefef;
}
.logo{
  display: flex;
  gap: 10px;
}

.logo p {
  font-size: 18px;
  font-family: SourceHanSansCN, SourceHanSansCN;
  font-weight: bold;
  color: #0D3E82;
  line-height: 40px;
}

.menu {
  display: flex;
  gap: 55px;
}

.menu a {
  font-size: 18px;
  font-family: SourceHanSansCN, SourceHanSansCN;
  font-weight: 400;
  color: #333333;
  line-height: 24px;
}

.menu .select {
  font-size: 22px;
  font-weight: bold;
  color: #F65946;
}

.title {
  padding-top: 80px;
  text-align: center;
  padding-bottom: 12px;
  background: url('../img/line.png') no-repeat center bottom;
}

.title dt {
  height: 55px;
  line-height: 55px;
  font-family: SourceHanSansCN-Medium, SourceHanSansCN;
  font-size: 32px;
  font-weight: 500;
}

.title dt span {
  color: #B31942;
}

.title dd {
  height: 33px;
  line-height: 33px;
  font-size: 22px;
  color: #424242;
}

.title_white {
  padding-top: 80px;
  text-align: center;
  padding-bottom: 12px;
  color: #ffffff;
  background: url('../img/line_white.png') no-repeat center bottom;
}

.title_white dt {
  height: 55px;
  line-height: 55px;
  font-family: SourceHanSansCN-Medium, SourceHanSansCN;
  font-size: 32px;
  font-weight: 500;
}

.title_white dt span {
  color: #ffffff;
}

.title_white dd {
  height: 33px;
  line-height: 33px;
  font-size: 22px;
  color: #ffffff;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.contactBtn {
  width: 303px;
  height: 46px;
  background-image: linear-gradient(0deg, #e05f4c 0%, #eb785c 100%);
  box-shadow: 0px 3px 6px 0px rgba(75, 75, 75, 0.3);
  border-radius: 23px;
  font-family: SourceHanSansCN-Regular;
  font-size: 18px;
  color: #fff;
  text-align: center;
  line-height: 46px;
}

.headerWrapper {
  height: 85px;
  max-width: 1920px;
  align-items: center;
}

.headerWrapper .btn {
  width: 190px;
  height: 44px;
  background: url('../img/btbg.png') no-repeat center;
  border-radius: 22px;
  color: #fff;
  font-family: SourceHanSansCN-Regular;
  font-size: 18px;
  line-height: 44px;
  text-align: center;
  margin-left: 28px;
}

.headerWrapper .phone {
  height: 44px;
  display: flex;
  justify-content: space-between;
  color: #333333;
  font-family: SourceHanSansCN-Regular;
  font-size: 12px;
  flex-direction: column;
  padding-left: 50px;
  background: url('../img/phone.png') no-repeat center left;
  background-size: 40px 40px;
  line-height: 18px;
}

.headerWrapper .phone span {
  font-size: 12px;
}

.bannerWrapper {
  height: 700px;
  width: 100%;
  position: relative;
  background: url('../img/banner.png') no-repeat center;
  padding-top: 620px;
  box-sizing: border-box;
}

.bannerWrapper .btn {
  width: 481px;
  height: 67px;
  position: absolute;
  top: 400px;
  left: 50%;
  margin-left: -240px;
  z-index: 999;
}

.tabListWrapper {
  height: 80px;
  min-width: 1200px;
  background-color: rgba(179, 25, 66, 0.87);
  position: relative;
  z-index: 9;
}

.tabListWrapper.fixedTab {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
}

.tabListWrapper.fixedTab li:hover {
  background-color: #FEFEFF(0, 0, 0, 0.8);
}

.tabListWrapper .list {
  width: 1146px;
  color: #fff;
}

.tabListWrapper li {
  font-family: SourceHanSansCN-Normal;
  font-size: 18px;
  flex: 1;
  text-align: center;
  height: 70px;
  padding-top: 10px;
  line-height: 70px;
  cursor: pointer;
  position: relative;
}

.tabListWrapper li:hover {
  background-color: rgba(255, 255, 255, 0.3);
}

.tabListWrapper li::after {
  content: '';
  display: block;
  width: 2px;
  height: 25px;
  background-color: #fff;
  position: absolute;
  top: 32px;
  right: -1px;
}

.tabListWrapper li:last-child::after {
  display: none;
}

.advantageWrapper {
  height: 900px;
  /* background: url('../img/bg1.png') no-repeat center bottom; */
}

.advantageWrapper .list {
  width: 1200px;
  height: 600px;
  padding-top: 67px;
  box-sizing: border-box;
  margin-bottom: 28px;
  overflow: hidden;
}

.listItem {
  height: 234px;
  opacity: 1;
  border: 2px dashed #B31942;
  position: absolute;
}

.listItem1 {
  width: 580px;
  left: 0;
  background: url('../img/bsm.png'), linear-gradient(to top, rgba(255, 255, 255, 1), rgba(255, 255, 255, 1));
  background-repeat: no-repeat, no-repeat;
  background-position: bottom 25px right 25px, center;
}

.listItem2 {
  width: 580px;
  right: 0;
  background: url('../img/ba.png'), linear-gradient(to top, rgba(255, 255, 255, 1), rgba(255, 255, 255, 1));
  background-repeat: no-repeat, no-repeat;
  background-position: bottom 25px right 25px, center;
}

.listItem3 {
  width: 368px;
  left: 0;
  background: url('../img/jangjn.png'), linear-gradient(to top, rgba(255, 255, 255, 1), rgba(255, 255, 255, 1));
  background-repeat: no-repeat, no-repeat;
  background-position: bottom 25px right 25px, center;
}

.listItem4 {
  width: 368px;
  left: 0;
  right: 0;
  margin: 0 auto;
  background: url('../img/sz2.png'), linear-gradient(to top, rgba(255, 255, 255, 1), rgba(255, 255, 255, 1));
  background-repeat: no-repeat, no-repeat;
  background-position: bottom 25px right 25px, center;
}

.listItem5 {
  width: 368px;
  right: 0;
  background: url('../img/lm 2.png'), linear-gradient(to top, rgba(255, 255, 255, 1), rgba(255, 255, 255, 1));
  background-repeat: no-repeat, no-repeat;
  background-position: bottom 25px right 25px, center;
}

.listItem div {
  display: block;
  position: relative;
}

.listItem h2 {
  float: left;
  height: 35px;
  width: 316px;
  font-size: 20px;
  font-family: SourceHanSansCN, SourceHanSansCN;
  font-weight: 500;
  color: #000000;
  line-height: 35px;
  padding-left: 51px;
  padding-top: 24px;
  position: absolute;
  background: linear-gradient(to right, #f6e6ea 0%, #ffffff 100%);
  background-clip: content-box;
  text-indent: 10px;
}

.listItem p {
  width: 540px;
  padding-left: 51px;
  padding-top: 69px;
  font-size: 12px;
  font-family: SourceHanSansCN, SourceHanSansCN;
  font-weight: 300;
  color: #000000;
  line-height: 25px;
  position: absolute;
}

.listItem::after {
  content: '';
  width: 0;
  height: 164px;
  /* border-right: dashed 1px #909090; */
  position: absolute;
  right: 0;
  bottom: 0;
}

.listItem:last-child::after {
  display: none;
}

.listItem:hover {
  background: linear-gradient(to top, #E05F4D, #FFFFFF);
  animation: fadeIn linear 300ms;
  color: #fff;
  border: 0px dashed #B31942;
}

.listItem1:hover {
  background: url('../img/bsm 2.png'), linear-gradient(to top, #E05F4D, #FFFFFF);
  background-repeat: no-repeat, no-repeat;
  background-position: bottom 25px right 25px, center;
}

.listItem2:hover {
  background: url('../img/ba2.png'), linear-gradient(to top, #E05F4D, #FFFFFF);
  background-repeat: no-repeat, no-repeat;
  background-position: bottom 25px right 25px, center;
}

.listItem3:hover {
  background: url('../img/jangjn 2.png'), linear-gradient(to top, #E05F4D, #FFFFFF);
  background-repeat: no-repeat, no-repeat;
  background-position: bottom 25px right 25px, center;
}

.listItem4:hover {
  background: url('../img/sz.png'), linear-gradient(to top, #E05F4D, #FFFFFF);
  background-repeat: no-repeat, no-repeat;
  background-position: bottom 25px right 25px, center;
}

.listItem5:hover {
  background: url('../img/lm.png'), linear-gradient(to top, #E05F4D, #FFFFFF);
  background-repeat: no-repeat, no-repeat;
  background-position: bottom 25px right 25px, center;
}

.listItem:hover::after {
  display: none;
}

.listItem:hover .icon img:first-child {
  display: none;
}

.listItem:hover .icon img:last-child {
  display: inline-block;
}

.listItem:hover .num {
  background-color: #000;
}

.advantageWrapper .icon {
  width: 146px;
  margin: 0 auto 20px;
}

.advantageWrapper .icon img:last-child {
  display: none;
}

.advantageWrapper .item {
  padding-left: 19px;
  padding-right: 10px;
  font-family: SourceHanSansCN-Light;
  margin-bottom: 12px;
}

.advantageWrapper .msg {
  flex: 1;
  overflow: hidden;
  line-height: 20px;
}

.advantageWrapper .num {
  width: 18px;
  height: 18px;
  background-color: #e05f4c;
  border-radius: 50%;
  text-align: center;
  font-size: 13px;
  color: #fff;
  margin-right: 7px;
}

.applyWrapper {
  height: 853px;
  background: url("../img/bg1.png") no-repeat center;
}

.applyWrapper .list {
  flex-wrap: wrap;
  width: 880px;
  padding-top: 50px;
}

.applyWrapper li {
  width: 100%;
  margin-bottom: 30px;
  font-size: 14px;
  position: relative;
}

.applyWrapperDiv {
  height: 88px;
  width: 207px;
  position: absolute;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 5px 5px 5px 5px;
}

.applyWrapperDivHover {
  background: rgba(255, 255, 255, 1) !important;
}

.applyWrapperDiv span {
  font-size: 22px;
  width: 132px;
  font-family: SourceHanSansCN, SourceHanSansCN;
  font-weight: bold;
  color: rgba(255, 255, 255, 1);
  line-height: 25px;
  top: 35%;
  left: 18%;
  position: absolute;
  text-align: center;
}

.applyWrapperDivSpanHover {
  color: #B31942 !important;
}

/* .applyWrapperDiv :hover{
  height: 88px;
  width: 207px;
  background: #FFFFFF;
  border-radius: 5px 5px 5px 5px;
} */

/* .applyWrapperDiv span :hover {
    font-size: 22px;
  font-family: SourceHanSansCN, SourceHanSansCN;
  font-weight: bold;
  color: #B31942;
  line-height: 25px;
} */

.applyWrapperDiv2 {
  width: 866px;
  height: 138px;
  background: #FFFFFF;
  border-radius: 5px 5px 5px 5px;
  opacity: 1;
  display: none;
}

.applyWrapperDiv2 span {
  font-weight: bold;
  font-size: 18px;
  font-family: SourceHanSansCN, SourceHanSansCN;
  color: #B31942;
  line-height: 27px;
  padding-left: 20px;
  padding-top: 20px;
  position: absolute;
}

.applyWrapperDiv2 p {
  font-size: 18px;
  width: 770px;
  font-family: SourceHanSansCN, SourceHanSansCN;
  color: #B31942;
  line-height: 27px;
  padding-left: 20px;
  position: absolute;
  padding-top: 50px;
}

.applyWrapper-top-background {
  width: 395px;
  height: 127px;
  background: linear-gradient(to top, #13135F, #6565B9);
  box-shadow: -5px 0px 0px 0px #dadada;
  border-radius: 16px 16px 23px 16px;
  opacity: 1;
  position: relative;
  left: 52px;
}

.number {
  width: 62px;
  height: 41px;
  background: linear-gradient(to top, #E9C79A, #E7BD88);
  border-radius: 0px 0px 6px 0px;
  opacity: 1;
  text-align: center;
  align-items: center;
  position: absolute;
  left: 53px;
}

.number span {
  font-size: 26px;
  font-family: SourceHanSerifCN-Heavy, SourceHanSerifCN;
  font-weight: 800;
  color: #2A4D73;
  line-height: 25px;
  position: absolute;
  top: 25%;
  left: 25%;
}

.titleName {
  /* width: 200px; */
  height: 25px;
  font-size: 26px;
  font-family: SourceHanSansCN-Medium, SourceHanSansCN;
  font-weight: 500;
  color: #FFFFFF;
  line-height: 25px;
  position: absolute;
  /* left: 124px; */
  top: 13px;
  left: 50%;
  top: 16%;
  transform: translate(-50%, -50%);
}

.applyWrapper-bottom {
  width: 508px;
  height: 175px;
  background: #FFFFFF;
  box-shadow: 3px 7px 6px 7px #dadada;
  opacity: 1;
  position: relative;
  top: 61px;
}

.applyWrapper-bottom p {
  width: 461px;
  height: 66px;
  font-size: 16px;
  font-family: SourceHanSansCN-Normal, SourceHanSansCN;
  font-weight: 400;
  color: #000000;
  line-height: 25px;
  padding-left: 22px;
  padding-top: 25px;
  position: absolute;
}

.applyWrapper-bottom div {
  width: 294px;
  height: 30px;
  background: linear-gradient(to top, #E05F4C, #EB785C);
  box-shadow: 3px 3px 3px 3px #e6e6e6;
  border-radius: 14px 14px 14px 14px;
  opacity: 1;
  left: 107px;
  position: absolute;
  text-align: center;
  top: 130px;
}

.applyWrapper-bottom span {
  width: 139px;
  height: 17px;
  font-size: 16px;
  font-family: SourceHanSansCN-Medium, SourceHanSansCN;
  font-weight: 500;
  color: #FFFFFF;
  line-height: 25px;
}

/* .applyWrapper li .msg {
  width: 279px;
  height: 280px;
  box-sizing: border-box;
  display: none;
  padding: 29px 19px 0 29px;
}

.applyWrapper li:hover {
  background-image: linear-gradient(0deg, #1f3a59 0%, #476d97 100%);
  box-shadow: 0px 0px 3px 0px rgba(151, 151, 151, 0.48);
  animation: fadeIn linear 300ms;
}

.applyWrapper li:hover .msg {
  display: block;
  color: #fff;
}

.applyWrapper .msg p {
  line-height: 24px;
}

.applyWrapper .top {
  line-height: 20px;
  margin-bottom: 16px;
  font-size: 18px;
}

.applyWrapper .bottom {
  height: 16px;
  line-height: 16px;
  font-family: ArialMT;
  font-size: 13px;
  position: absolute;
  bottom: 22px;
  right: 20px;
  z-index: 12;
}

.applyWrapper .l1 {
  background: #fff url('../img/01.png') no-repeat center;
}

.applyWrapper .l2 {
  background: #fff url('../img/02.png') no-repeat center;
}

.applyWrapper .l3 {
  background: #fff url('../img/03.png') no-repeat center;
}

.applyWrapper .l4 {
  background: #fff url('../img/04.png') no-repeat center;
}

.applyWrapper .l5 {
  background: #fff url('../img/05.png') no-repeat center;
}

.applyWrapper .l6 {
  background: #fff url('../img/06.png') no-repeat center;
}

.applyWrapper .l7 {
  background: #fff url('../img/07.png') no-repeat center;
}

.applyWrapper .l8 {
  background: #fff url('../img/08.png') no-repeat center;
} */


.schoolWrapper {
  background: url('../img/4bg.png') no-repeat center top;
}

.schoolWrapper .swiperBin {
  height: 650px;
  width: 1200px;
  position: relative;
  overflow: hidden;
  margin-top: 0px;
}

.schoolWrapper .contactBtn {
  margin-bottom: 30px;
}

.schoolWrapper .schoolSwiperWrapper {
  height: 570px;
  width: 1090px;
  padding: 30px 5px 0;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
}

.schoolWrapper .swiper-slide {
  height: 489px;
  background-color: #ffffff;
  box-shadow: 0px 0px 8px 0px rgba(151, 151, 151, 0.76);
  box-sizing: border-box;
}

.schoolWrapper .item {
  width: 246px;
  height: 600px;
  background-color: #ffffff;
  box-shadow: 0px 0px 8px 0px rgba(151, 151, 151, 0.76);
  padding-top: 20px;
  box-sizing: border-box;
}

.schoolWrapper .item:hover {
  color: #fff;
  background: url('../img/zbg.png');
  /* background-image: linear-gradient(100deg, #eb785c 22%, #e05f4c 100%); */
  box-shadow: 0px 0px 8px 0px rgba(151, 151, 151, 0.76);
  animation: fadeIn linear 300ms;
}

.schoolWrapper .item:hover .info {
  background: none;
}

.schoolWrapper .icon {
  width: 129px;
  height: 129px;
  margin: 0 auto;
}

.schoolWrapper .name {
  height: 85px;
  text-align: center;
}

.schoolWrapper .name b {
  display: inline-block;
  width: 100%;
  font-family: SourceHanSansCN-Bold;
  font-size: 28px;
  line-height: 1;
}

.schoolWrapper .name span {
  height: 20px;
  display: inline-block;
  line-height: 20px;
  font-family: ArialMT;
  font-size: 12px;
  transform: scale(0.83);
}

.schoolWrapper .info {
  height: 366px;
  line-height: 20px;
  padding: 20px 20px 0;
  background-color: #e5e5e5;
  font-family: SourceHanSansCN-Regular;
  font-size: 14px;
  letter-spacing: 0px;
  box-sizing: border-box;
}

.schoolWrapper .info .msg {
  margin-bottom: 12px;
}

.schoolWrapper .btn {
  width: 203px;
  height: 36px;
  border: solid 2px #000000;
  margin: 20px auto 0;
  text-align: center;
  line-height: 34px;
}

.schoolWrapper .star {
  margin-right: 2px;
}

.swiperBin .schoolPagination {
  text-align: center;
  margin: 20px;
}

.swiperBin .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: #ffffff;
  margin-left: 10px;
  border: solid 1px #1f3753;
  box-sizing: border-box;
  border-radius: 50%;
  opacity: 1;
}

.swiperBin .swiper-pagination-bullet-active {
  width: 10px;
  background-color: #1f3753;
  height: 10px;
  border: none;
  opacity: 1;
}

.schoolWrapper .imgBox {
  height: 587px;
  background: url('../img/bg3.png') no-repeat center;
  color: #fff;
  font-size: 15px;
}

.schoolWrapper .imgBox .box {
  height: 587px;
  width: 1200px;
  position: relative;
  padding-top: 77px;
  box-sizing: border-box;
  padding-left: 124px;
}

.schoolWrapper .imgBox .list {
  width: 599px;
  overflow: hidden;
}

.schoolWrapper .imgBox .list li {
  margin-bottom: 22px;
  cursor: pointer;
}

.schoolWrapper .imgBox .list .t {
  height: 62px;
  line-height: 56px;
  font-size: 20px;
  border-radius: 32px;
  border: solid 3px #ffffff;
  box-sizing: border-box;
  padding-left: 46px;
  position: relative;
}

.schoolWrapper .imgBox .list .icon {
  width: 27px;
  height: 15px;
  display: inline-block;
  position: absolute;
  right: 29px;
  top: 24px;
  background: url('../img/u.png') no-repeat center;
}

.schoolWrapper .imgBox .list .msg {
  display: none;
  line-height: 23px;
  margin-top: 16px;
  padding-left: 17px;
  margin-bottom: 20px;
  overflow: hidden;
}

.schoolWrapper .imgBox .list .active {
  padding: 3px;
}

.schoolWrapper .imgBox .list .active .t {
  background-image: linear-gradient(0deg, #e0604d 0%, #eb785c 100%);
  border: none;
}

.schoolWrapper .imgBox .list .active .msg {
  display: block;
  animation: linearLeft 300ms linear;
}

.schoolWrapper .imgBox .list .active .icon {
  background: url('../img/d.png') no-repeat center;
  top: 26px;
}

.schoolWrapper .imgBox .img {
  width: 300px;
  text-align: center;
  position: absolute;
  top: 180px;
  right: 58px;
  font-size: 21px;
  line-height: 32px;
}

.schoolWrapper .imgBox .img img {
  width: 145px;
  height: 145px;
  margin-bottom: 34px;
}

.schoolWrapper .swiper-button-prev {
  left: 0;
  top: 246px;
}

.schoolWrapper .swiper-button-next {
  right: 0;
  top: 246px;
}

body .swiper-button-prev {
  width: 36px;
  height: 36px;
  background: url('../img/leftbtn.png') no-repeat center;
  background-size: 36px 36px;
}

body .swiper-button-next {
  width: 36px;
  height: 36px;
  background: url('../img/rightbtn.png') no-repeat center;
  background-size: 36px 36px;
}

.suitWrapper {
  height: 1250px;
  background: url('../img/5bg.png') no-repeat center top;
  position: relative;
}

.suitWrapper::after {
  content: '';
  display: block;
  height: 182px;
  /* background: url('../img/5-1bg.png') no-repeat center top; */
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 100%;
  transform: translateX(-50%);
}

@keyframes linearUp {
  0% {
    margin-top: 23px;
    padding-top: 0px;
  }

  100% {
    margin-top: 0;
    padding-top: 23px;
  }
}

.suitWrapper .contentBox {
  width: 1200px;
  height: 920px;
  margin: 48px auto 0;
  overflow: hidden;
}

.suitWrapper .list1 {
  align-items: baseline;
  height: 79px;
  overflow: hidden;
}

.suitWrapper .list1 li {
  height: 58px;
  width: 239px;
  margin-right: 1px;
  box-sizing: content-box;
  border-radius: 0px 22px 0px 0px;
  color: #fff;
  font-family: SourceHanSansCN-Regular;
  font-size: 22px;
  line-height: 58px;
  text-align: center;
  cursor: pointer;
  transition: all 300ms;
  margin-top: 21px;
}

.suitWrapper .list1 li:last-child {
  margin-right: 0;
}

.suitWrapper .list1 li.active {
  margin-top: 0;
  padding-top: 21px;
}

.suitWrapper .list1 .l1 {
  background-color: #1f3753;
}

.suitWrapper .list1 .l2 {
  background-color: #1e8514;
}

.suitWrapper .list1 .l3 {
  background-color: #e8c400;
}

.suitWrapper .list1 .l4 {
  background-color: #f3961d;
}

.suitWrapper .list1 .l5 {
  background-color: #8f51bf;
}

.suitWrapper .listBg1 {
  background-color: #5482b7;
}

.suitWrapper .listBg1 .tit {
  background-color: #1f3753;
}

.suitWrapper .listBg2 {
  background-color: #73af6d;
}

.suitWrapper .listBg2 .tit {
  background-color: #1e8514;
}

.suitWrapper .listBg3 {
  background-color: #eddc80;
}

.suitWrapper .listBg3 .infoList {
  color: #000;
}

.suitWrapper .listBg3 .tit {
  background-color: #e8c400;
}

.suitWrapper .listBg4 {
  background-color: #fad3a1;
}

.suitWrapper .listBg4 .infoList {
  color: #000;
}

.suitWrapper .listBg4 .tit {
  background-color: #f3961d;
}

.suitWrapper .listBg5 {
  background-color: #ad8ac9;
}

.suitWrapper .listBg5 .tit {
  background-color: #8f51bf;
}

.suitWrapper li {
  cursor: pointer;
}

.suitWrapper .contentWrapper {
  width: 1200px;
  height: 803px;
  box-shadow: 0px 3px 6px 0px rgba(75, 75, 75, 0.3);
  padding: 37px 90px 0 58px;
  box-sizing: border-box;
}

.suitWrapper .list2 {
  flex-wrap: wrap;
  display: none;
  margin-bottom: 32px;
}

.suitWrapper .list2.active {
  display: flex;
}

.suitWrapper .list2 li {
  height: 65px;
  background-color: #ffffff;
  box-shadow: 0px 3px 6px 0px rgba(75, 75, 75, 0.3);
  border-radius: 5px;
  line-height: 65px;
  text-align: center;
  font-family: SourceHanSansCN-Regular;
  font-size: 18px;
  color: #1f3753;
  margin-bottom: 10px;
}

.suitWrapper .list2 li.active {
  background-color: #ea775c;
  box-shadow: 0px 3px 6px 0px rgba(75, 75, 75, 0.3);
  color: #fff;
}

.suitWrapper .grandson {
  padding-left: 28px;
}

.suitWrapper .info {
  display: none;
}

.suitWrapper .info.active {
  display: flex;
}

.suitWrapper .info .msg {
  line-height: 23px;
  padding: 3px 0;
  font-size: 14px;
}

.suitWrapper .info .tit {
  min-width: 109px;
  height: 29px;
  padding-left: 13px;
  padding-right: 18px;
  display: inline-block;
  box-sizing: border-box;
  line-height: 29px;
  border-radius: 15px;
  font-weight: 500;
}

.suitWrapper .infoList {
  margin-right: 30px;
  flex: 1;
  overflow: hidden;
  color: #fff;
  font-family: SourceHanSansCN-Regular;
  font-size: 15px;
}

.suitWrapper .infoList li {
  margin-bottom: 4px;
}

.suitWrapper .rankList {
  width: 496px;
  height: 538px;
  border: solid 2px #ffffff;
  box-sizing: border-box;
  font-size: 18px;
  overflow: hidden;
}

.suitWrapper .rankList dt {
  width: 100%;
  height: 84px;
  background-color: #ea775c;
  text-align: center;
  line-height: 84px;
  box-sizing: border-box;
  font-family: SourceHanSerifCN-Bold;
  font-size: 24px;
  color: #fff;
}

.suitWrapper .rankList dd {
  height: 41px;
  box-sizing: border-box;
  width: 100%;
  border-top: solid 2px #ffffff;
  line-height: 41px;
  font-family: SourceHanSansCN-Regular;
  font-size: 15px;
  text-align: center;
  cursor: pointer;
}

.suitWrapper .rankList dd:nth-child(2n + 1) {
  background-color: #ebeff6;
}

.suitWrapper .rankList dd:nth-child(n + 3):hover {
  transform: scale(1.05);
}

.suitWrapper .rankList dd:nth-child(2n + 2) {
  background-color: #d4dded;
}

.suitWrapper .rankList .thead div {
  text-align: center;
  font-weight: bold;
}

.suitWrapper .rankList .tr1 {
  width: 74px;
  border-right: solid 2px #ffffff;
}

.suitWrapper .rankList .tr2 {
  width: 201px;
  border-right: solid 2px #ffffff;
  text-align: left;
  padding-left: 20px;
}

.suitWrapper .rankList .tr3 {
  flex: 1;
  padding: 0 24px;
  box-sizing: border-box;
}

.suitWrapper .rankList .p0 {
  padding: 0;
}

.suitWrapper .rankList .r {
  box-sizing: border-box;
  min-width: 34px;
  text-align: left;
  padding-left: 13px;
}

.suitWrapper .rankList .up {
  background: url('../img/up.png') no-repeat center right;
}

.suitWrapper .rankList .down {
  background: url('../img/down.png') no-repeat center right;
}

.suitWrapper .contactBtn {
  position: relative;
  z-index: 12;
}

.suitWrapper .rankList .up {
  background: url('../img/up.png') no-repeat center left;
}

.suitWrapper .rankList .down {
  background: url('../img/down.png') no-repeat center left;
}

.timelineWrapper {
  height: 1291px;
  position: relative;
  background: url('../img/6bg.png') no-repeat center bottom;
}

.timelineWrapper::after {
  content: '';
  height: 541px;
  /* background: url('../img/5-1bg.png') no-repeat center; */
  background-position-y: -182px;
  position: absolute;
  left: 0;
  width: 100%;
  top: 0;
}

.timelineWrapper .title {
  /* color: #fff; */
  position: relative;
  z-index: 9;
  margin-bottom: 55px;
}

.timelineWrapper .title dd {
  /* color: #fff; */
}

.timelineWrapper .areaBox {
  z-index: 9;
  width: 1080px;
  margin: 0 auto 50px;
  color: #fff;
  position: relative;
  font-size: 18px;
  box-sizing: border-box;
  padding-top: 15px;
  height: 164px;
}

.timelineWrapper .areaBox::after {
  height: 164px;
  content: '';
  border-right: dashed 2px #ffffff;
  position: absolute;
  left: 50%;
  margin-left: -1px;
  top: 0;
}

.timelineWrapper .areaBox .hk,
.timelineWrapper .areaBox .am {
  width: 490px;
  box-sizing: border-box;
  overflow: hidden;
}

.timelineWrapper .areaBox .hk {
  position: relative;
}

.timelineWrapper .areaBox .am {
  box-sizing: border-box;
}

.timelineWrapper .areaBox .tit {
  width: 490px;
  height: 39px;
  background-color: #074389;
  border-radius: 0px 14px 0px 0px;
  font-family: SourceHanSansCN-Bold;
  font-weight: bold;
  padding-left: 173px;
  box-sizing: border-box;
  line-height: 39px;
  font-size: 22px;
}

.timelineWrapper .areaBox p {
  width: 489px;
  height: 86px;
  background-color: rgba(0, 0, 0, 0.4);
  padding-left: 79px;
  line-height: 34px;
  padding-top: 5px;
  box-sizing: border-box;
}

.lineWrapperDiv {
  width: 212px;
  height: 88px;
  /* background: linear-gradient(to top, #12145B, #6476B8); */
  opacity: 1;
  /* background-color: #12145B; */
  border-radius: 100%;
  margin-left: 444px;
  margin-top: 45px;
}

.lineWrapperP {
  height: 19px;
  font-size: 20px;
  font-family: Arial, Arial;
  font-weight: normal;
  color: #FEFEFF;
  line-height: 28px;
  position: absolute;
  left: 47%;
  text-align: center;
  width: 72px;
}

.lineWrapperDiv p {
  width: 152px;
  height: 29px;
  font-size: 30px;
  font-family: SourceHanSerifCN, SourceHanSerifCN;
  font-weight: 800;
  color: #1F2C61;
  line-height: 37px;
}

.timelineWrapper .lineWrapper {
  width: 1300px;
  height: 924px;
  margin: 0 auto 52px;
  background: url('../img/timeline.png') no-repeat center top;
  position: relative;
  z-index: 9;
  overflow: hidden;
}

.timelineWrapper .lineWrapper li {
  width: 514px;
  height: 219px;
  background: #B31942;
  box-shadow: 2px 2px 2px 2px rgba(0, 0, 0, 0.4);
  border-radius: 16px 16px 16px 16px;
  opacity: 1;
  position: absolute;
  color: #fff;
  padding-left: 32px;
  padding-top: 19px;
  font-family: SourceHanSansCN-Regular;
  font-size: 16px;
  line-height: 26px;
  padding-right: 32px;
  box-sizing: border-box;
}

.timelineWrapper .lineWrapper li p {
  letter-spacing: 0px;
  margin-bottom: 2px;
}

.timelineWrapper .lineWrapper li:hover {
  background: url('../img/linebg.png') no-repeat center;
  color: #fff;
}

.timelineWrapper .lineWrapper li:hover .caret {
  background: url('../img/ccr.png') no-repeat center;
}

.timelineWrapper .lineWrapper .time {
  font-family: Arial-BoldMT;
  font-size: 22px;
  line-height: 28px;
  margin-bottom: 3px;
}

.timelineWrapper .lineWrapper li:nth-child(1) {
  top: 74px;
  color: #fff;
}


.timelineWrapper .lineWrapper li:nth-child(2) {
  top: 208px;
  padding-left: 32px;
}

.timelineWrapper .lineWrapper li:nth-child(3) {
  top: 341px;
}

.timelineWrapper .lineWrapper li:nth-child(4) {
  top: 475px;
  padding-left: 32px;
}

.timelineWrapper .lineWrapper li:nth-child(5) {
  top: 606px;
}

.timelineWrapper .lineWrapper li:nth-child(even) {
  left: 45px;
}

.timelineWrapper .lineWrapper li:nth-child(even) .caret {
  right: -19px;
  transform: rotate(180deg);
}

.timelineWrapper .lineWrapper li:nth-child(odd) {
  right: 45px;
}

.timelineWrapper .lineWrapper li:nth-child(odd) .caret {
  left: -19px;
}

.timelineWrapper .contactBtn {
  width: 362px;
}

.serviceWrapper {
  height: 1600px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.42), rgba(0, 0, 0, 0.4)), url('../img/bg6.png');
  background-repeat: no-repeat, no-repeat;
  background-position: bottom, center;
  background-size: 1920px 820px, 1920px 1600px;
  opacity: 0.4, 1;
}

.serviceWrapper .contactBtn {
  width: 362px;
}

.serviceWrapper .title {
  color: #fff;
  margin-bottom: 53px;
}

.serviceWrapper .title dd {
  color: #fff;
}

.serviceWrapper .title_white {
  color: #fff;
  margin-bottom: 53px;
}

.serviceWrapper .title_white dd {
  color: #fff;
}

.serviceWrapper .serverList {
  width: 1200px;
  flex-wrap: wrap;
  margin-bottom: 42px;
}

.serviceWrapper .serverList li {
  width: 390px;
  height: 147px;
  border: solid 2px #ffffff;
  box-sizing: border-box;
  text-align: center;
  padding-top: 40px;
  margin-bottom: 16px;
  font-family: SourceHanSansCN-Regular;
  font-size: 18px;
  color: #fff;
}

.serviceWrapper .serverList li:hover {
  background: url('../img/shbg.png') no-repeat center;
  background-size: 390px 147px;
  animation: shakeY 300ms linear forwards;
}

.serviceWrapper .serverList li .icon {
  height: 40px;
  width: auto;
  margin: 0 auto 20px;
}

.serviceWrapper .serverList li .icon img {
  height: 100%;
}

.serviceWrapper .serverList li .msg {
  line-height: 20px;
}

.serviceWrapper .serverList .l .icon {
  height: 32px;
  margin-bottom: 10px;
}

.serviceWrapper .serverList .l .msg {
  line-height: 25px;
}

.serviceWrapper .serviceBox {
  width: 1200px;
  margin: 0 auto 65px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.serviceWrapper .serviceBox .list {
  height: 820px;
  display: flex;
  justify-content: space-between;
}

.serviceWrapper .serviceBox li {
  width: 140px;
  height: 815px;
  /* padding-top: 40px; */
  position: relative;
  color: #fff;
  transition: width 300ms;
  overflow: hidden;
  box-sizing: border-box;
}

.serviceWrapper .serviceBox li.active {
  width: 607px;
}

.serviceWrapper .serviceBox li.active .point {
  background: url('../img/p1.png') no-repeat center;
}

.serviceWrapper .serviceBox li.active .content {
  background: url('../img/sss.png') no-repeat center;
}

.serviceWrapper .serviceBox li.active .normal {
  display: none;
}

.serviceWrapper .serviceBox li.active .acti {
  display: block;
}

.serviceWrapper .serviceBox li.active .right {
  display: block;
  animation: linearLeft linear 300ms;
}

.serviceWrapper .serviceBox li.actived {
  width: 140px;
}

.serviceWrapper .serviceBox li.actived .point {
  background: url('../img/p2.png') no-repeat center;
}

.serviceWrapper .serviceBox li.actived .right {
  display: none;
}

.serviceWrapper .serviceBox .imgBox {
  height: 516px;
  width: 0;
  overflow: hidden;
  margin-top: 24px;
  float: right;
  transition: width 400ms;
}

.serviceWrapper .serviceBox .imgBox img {
  height: 516px;
}

.serviceWrapper .serviceBox li:nth-child(n + 2) {
  margin-left: 4px;
}

.serviceWrapper .serviceBox .point {
  width: 28px;
  height: 28px;
  position: absolute;
  background: url('../img/p2.png') no-repeat center;
  top: 0;
  left: 56px;
}

.serviceWrapper .content {
  width: 100%;
  height: 800px;
  background: url('../img/ss.png') no-repeat center;
  box-sizing: border-box;
  font-family: SourceHanSansCN-Regular;
  font-size: 27px;
  line-height: 30px;
  text-align: center;
  overflow: hidden;
  display: flex;
}

.serviceWrapper .content .normal {
  width: 140px;
  padding-top: 152px;
}

.serviceWrapper .content .tit {
  width: 92px;
  margin: 0 auto;
  overflow: hidden;
}

.serviceWrapper .content .num {
  width: 140px;
  position: absolute;
  text-align: center;
  top: 440px;
  left: 0;
}

.serviceWrapper .content .num::after {
  content: '';
  position: absolute;
  width: 31px;
  height: 2px;
  background-color: #ffffff;
  left: 55px;
  bottom: -10px;
}

.serviceWrapper .content .acti {
  width: 128px;
  text-align: center;
  font-family: SourceHanSansCN-Regular;
  font-size: 27px;
  line-height: 44px;
  padding-top: 152px;
  display: none;
}

.serviceWrapper .content .acti .msg {
  width: 50px;
  margin: 20px auto 0;
}

.serviceWrapper .content .right {
  width: 445px;
  height: 700px;
  background-color: #ffffff;
  font-size: 16px;
  color: #3b4d63;
  line-height: 20px;
  overflow: hidden;
  margin-top: 50px;
  text-align: left;
  padding-left: 13px;
  box-sizing: border-box;
  padding-top: 17px;
  display: none;
}

.serviceWrapper .content .right .t {
  width: 111px;
  height: 28px;
  background-color: rgba(0, 0, 0, 0.58);
  text-align: center;
  line-height: 28px;
  font-size: 18px;
  color: #fff;
  font-weight: bold;
  margin-top: 5px;
  margin-bottom: 3px;
}

.serviceWrapper .content .right p {
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -1px;
}

.caseWrapper {
  height: 1026px;
  background: url('../img/8bg.jpg') no-repeat center top;
}


.Senior-swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  height: 680px;
  width: 250px;
}

.Senior-swiper-slide-next {
  /* right: -63px !important; */
  width: 45px !important;
  height: 45px !important;
  top: 35% !important;
  right: 5%;
  background: url(../img/Senior-right.png) no-repeat center !important;
  background-size: 45px 45px !important;
}

.Senior-swiper-slide-prev {
  /* left: -63px !important; */
  width: 45px !important;
  height: 45px !important;
  top: 35% !important;
  left: 5%;
  background: url(../img/Senior-left.png) no-repeat center !important;
  background-size: 45px 45px !important;
}

.caseWrapper .studentSwiperWrapper {
  width: 1200px;
  height: 769px;
  padding-top: 84px;
  position: relative;
  margin: 0 auto;
  overflow: hidden;
  padding-bottom: 11px;
  box-sizing: border-box;
}

.caseWrapper .studentSwiperWrapper li {
  width: 1200px;
  height: 516px;
  padding-left: 104px;
  box-sizing: border-box;
  overflow: hidden;
}

.caseWrapper .studentSwiperWrapper .imgBox {
  width: 406px;
}

.caseWrapper .studentPagination {
  position: absolute;
  width: 1200px;
  height: 161px;
  background-image: linear-gradient(to bottom, #C63446, #E6735E);
  left: 0;
  z-index: 99;
  text-align: center;
  line-height: 1;
}

.caseWrapper .studentPagination .studentName {
  display: inline-block;
  width: 100%;
  height: 30px;
  line-height: 30px;
  font-family: SourceHanSansCN-Regular;
  font-size: 19px;
  bottom: 10px;
  position: absolute;
  left: 0;
}

.caseWrapper .studentPagination .studentInfo {
  display: inline-block;
  width: 145px;
  height: 161px;
  padding-top: 21px;
  box-sizing: border-box;
  position: relative;
}

.caseWrapper .studentPagination .studentInfo img {
  width: 97px;
  height: 97px;
  border-radius: 50%;
}

.caseWrapper .name {
  height: 36px;
  line-height: 36px;
  font-family: SourceHanSansCN-Bold;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 40px;
}

.caseWrapper .info {
  flex: 1;
  overflow: hidden;
  height: 516px;
}

.caseWrapper .info:hover .info1 {
  display: none;
}

.caseWrapper .info:hover .info2 {
  display: block;
}

.caseWrapper .info2 {
  width: 585px;
  height: 516px;
  background-color: #0B3162;
  color: #fff;
  box-sizing: border-box;
  padding-left: 26px;
  padding-top: 22px;
  font-size: 14px;
  line-height: 22px;
  padding-right: 40px;
  display: none;
  animation: fadeIn 300ms linear;
}

.caseWrapper .info2 .b {
  padding-left: 9px;
  padding-right: 10px;
  height: 32px;
  background-color: #ffffff;
  display: inline-block;
  font-size: 18px;
  color: #e8755a;
  font-family: SourceHanSerifCN-Heavy;
  line-height: 32px;
  margin-bottom: 5px;
}

.caseWrapper .info2 .msg {
  margin-bottom: 10px;
  word-break: break-all;
}

.caseWrapper .info1 {
  padding-left: 48px;
  font-family: SourceHanSansCN-Regular;
  font-size: 18px;
  line-height: 36px;
  padding-right: 120px;
  padding-top: 52px;
  box-sizing: border-box;
  color: #203854;
  letter-spacing: 0;
  animation: fadeIn 300ms linear;
}

.caseWrapper .info1 .infoItem {
  margin-bottom: 24px;
}

.caseWrapper .swiper-button-next {
  right: 0px;
  width: 52px;
  height: 52px;
  background-size: 52px 52px;
  top: 301px;
  opacity: 1;
  z-index: 996;
}

.caseWrapper .swiper-button-prev {
  left: 0px;
  top: 301px;
  width: 52px;
  height: 52px;
  background-size: 52px 52px;
  opacity: 1;
  z-index: 996;
}

.caseWrapper .swiper-pagination-bullets .swiper-pagination-bullet {
  width: 145px;
  height: 161px;
  margin: 0 20px !important;
  line-height: 40px;
  box-sizing: border-box;
  border-radius: 0;
  color: #fff;
  opacity: 1;
  background: none;
  text-align: center;
  vertical-align: top;
}

.caseWrapper .swiper-pagination-bullets .swiper-pagination-bullet-active .studentInfo {
  height: 185px;
  padding-top: 33px;
  background: url('../img/tbg.png') no-repeat center;
  top: -16px;
}

.caseWrapper .swiper-pagination-bullets .swiper-pagination-bullet-active img {
  width: 113px;
  height: 113px;
}

.coverAllWrapper {
  height: 987px;
  position: relative;
  background: url("../img/bg8.png") no-repeat center;
  /* background-color: #efefef; */
}

.coverAllWrapper .title {
  position: relative;
  z-index: 5;
  /* color: #fff; */
  margin-bottom: 45px;
}

.coverAllWrapper .title dd {
  /* color: #fff; */
}

.coverAllWrapper::after {
  content: '';
  position: absolute;
  height: 448px;
  /* background-color: #203955; */
  top: 0;
  left: 0;
  width: 100%;
}

.coverAllWrapper .coverList {
  position: relative;
  z-index: 9;
  height: 105px;
  width: 980px;
  margin: 0 auto 0px;
  font-family: SourceHanSerifCN-Regular;
  font-size: 18px;
  text-align: center;
  padding-top: 40px;
}

.coverAllWrapper .coverList2 {
  position: relative;
  z-index: 9;
  width: 1214px;
  margin: 0 auto 0px;
  font-family: SourceHanSerifCN-Regular;
  font-size: 18px;
  text-align: center;
}

.Senior-head-div {
  width: 220px;
  height: 70px;
  background: #FFFFFF;
  border-radius: 5px 5px 5px 5px;
  opacity: 1;
  line-height: 70px;
}

.Senior-head-div span {
  width: 154px;
  height: 27px;
  font-size: 18px;
  font-family: SourceHanSansCN, SourceHanSansCN;
  font-weight: 400;
  color: #0B3162;
  line-height: 25px;
}

.coverAllWrapper .coverList li:hover .Senior-head-div {
  width: 215px;
  height: 60px;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 5px 5px 5px 5px;
  border: 4px solid #FFFFFF;
  line-height: 60px;
}

.coverAllWrapper .coverList li:hover .Senior-head-div span {
  width: 220px;
  height: 27px;
  font-size: 18px;
  font-family: SourceHanSansCN, SourceHanSansCN;
  font-weight: 400;
  color: #FFFFFF;
  line-height: 25px;
}

.Senior-body-div {
  width: 260px !important;
  height: 590px !important;
  background: #FFFFFF;
  box-shadow: 2px 3px 2px 3px rgba(0, 0, 0, 0.1);
  opacity: 1;
}

.Senior-body-div img {
  height: 247px;
  width: 260px;
}

.Senior-body-div h2 {
  height: 35px;
  width: 230px;
  font-size: 18px;
  font-family: SourceHanSansCN, SourceHanSansCN;
  font-weight: 1000;
  color: #000000;
  line-height: 35px;
  background: linear-gradient(to right, #f6e6ea 0%, #ffffff 100%);
  background-clip: content-box;
  text-indent: 10px;
  text-align: left;
  padding-top: 15px;
  margin-left: 7px;
}

.Senior-body-div h3 {
  width: 230px;
  height: 18px;
  font-size: 14px;
  text-align: left;
  font-family: SourceHanSansCN, SourceHanSansCN;
  font-weight: 400;
  color: #717171;
  line-height: 24px;
  padding-top: 8px;
  margin-left: 15px;
}

.Senior-body-div h4 {
  width: 77px;
  height: 18px;
  font-size: 14px;
  font-family: SourceHanSansCN, SourceHanSansCN;
  font-weight: 800;
  color: #000000;
  line-height: 24px;
  padding-top: 18px;
  margin-left: 14px;
}

.Senior-body-div p {
  width: 230px;
  height: 111px;
  font-size: 12px;
  font-family: SourceHanSansCN, SourceHanSansCN;
  font-weight: 400;
  color: #717171;
  line-height: 24px;
  padding-top: 18px;
  text-align: left;
  margin-left: 15px;
}

.Senior-body-div h5 {
  width: 200px;
  height: 30px;
  background: #2E5590;
  box-shadow: 2px 2px 2px 2px rgba(75, 75, 75, 0.2);
  border-radius: 16px 16px 16px 16px;
  opacity: 1;
  font-size: 14px;
  font-family: SourceHanSansCN, SourceHanSansCN;
  font-weight: 400;
  color: #FFFFFF;
  line-height: 30px;
  margin: auto;
  margin-top: 45px;
  text-align: center;
}

.Senior-body-div:hover h5 {
  background: linear-gradient(to top, #E1604D 0%, #EB775C 0%);
}


.swiper-father {
  position: relative;
  margin-left: auto;
  margin-right: auto;
}

.Senior-swiper-container {
  width: 1100px;
  height: 630px;
  margin: auto;
}

.Senior-BackgroupDiv {
  width: 235px;
  height: 236px;
  background: linear-gradient(to bottom, #DF5E4C, #EFC1BA);
  border-radius: 7px 7px 7px 7px;
  opacity: 1;
  position: absolute;
  z-index: 0;
  top: 128px;
}

.Senior-showImg {
  position: absolute;
  z-index: 9;
  left: 0px;
  top: 67px;
}

.Senior-Span {
  width: 235px;
  height: 26px;
  font-size: 26px;
  font-family: SourceHanSansCN-Bold, SourceHanSansCN;
  font-weight: bold;
  color: #000000;
  line-height: 57px;
  position: absolute;
  z-index: 9;
  left: 0;
  top: 380px;
}

.Senior-p {
  width: 235px;
  height: 21px;
  font-size: 22px;
  font-family: SourceHanSansCN-Regular, SourceHanSansCN;
  font-weight: 400;
  color: #282828;
  line-height: 48px;
  margin: auto;
  position: absolute;
  z-index: 9;
  left: 0;
  top: 425px;
}

.Senior-button {
  width: 176px;
  height: 40px;
  background: #FFFFFF;
  border-radius: 20px 20px 20px 20px;
  opacity: 1;
  border: 1px solid #DF5E4C;
  margin: auto;
  position: absolute;
  z-index: 9;
  top: 480px;
  left: 28px;
}

.Senior-button span {
  width: 102px;
  height: 21px;
  font-size: 22px;
  font-family: SourceHanSansCN-Regular, SourceHanSansCN;
  font-weight: 400;
  color: #DF5E4C;
  line-height: 40px;
}


.Senior-Backgroup2Div {
  width: 250px;
  height: 578px;
  background: url('../img/Mentorbg.png') no-repeat center;
  border-radius: 7px 7px 7px 7px;
  opacity: 1;
  position: absolute;
  z-index: 0;
  top: 90px;
}

.Senior-showImg2 {
  position: absolute;
  z-index: 9;
  left: 20px;
  top: 7px;
}


.Senior-Span2 {
  left: 8px;
  top: 340px;
}

.Senior-p2 {
  left: 8px;
  top: 385px;
}

.Senior-line {
  width: 185px;
  height: 2px;
  background: #DF5E4C;
  opacity: 1;
  position: absolute;
  top: 430px;
  left: 32px;
}

.Senior-Biography {
  width: 70px;
  height: 16px;
  font-size: 16px;
  font-family: SourceHanSansCN-Bold, SourceHanSansCN;
  font-weight: bold;
  color: #DF5E4C;
  line-height: 48px;
  position: absolute;
  top: 435px;
  left: 38%;
}

.Senior-Biography-Detail {
  width: 174px;
  list-style-position: outside;
  font-size: 14px;
  font-family: SourceHanSansCN-Regular, SourceHanSansCN;
  font-weight: 500;
  color: #000000;
  line-height: 22px;
  text-align: left;
  position: absolute;
  top: 480px;
  left: 21%;
}

.Senior-Biography-Detail li {
  list-style-type: disc;
}

.Senior-Biography-Detail li::marker {
  color: #DF5E4C;
  font-size: 20px;
}

.coverAllWrapper .teacherSwiperWrapper img {
  width: 100%;
}

.coverAllWrapper .teacherSwiperWrapper li {
  width: 342px;
  height: 560px;
}

.coverAllWrapper .teacherSwiperWrapper .swiper-slide {
  position: relative;
}

.coverAllWrapper .teacherSwiperWrapper .swiper-slide::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.3);
}

.coverAllWrapper .teacherSwiperWrapper .swiper-slide-active::after {
  content: '';
  background: none;
}

.coverAllWrapper .teacherSwiperWrapper .teacher-next {
  width: 57px;
  height: 57px;
  background-size: 57px 57px;
}

.coverAllWrapper .teacherSwiperWrapper .teacher-prev {
  width: 57px;
  height: 57px;
  background-size: 57px 57px;
}

.jiuniuWrapper {
  height: 1064px;
  background: url('../img/bg9.png') no-repeat center;
}

.jiuniuWrapper .title {
  margin-bottom: 70px;
}

.jiuniuWrapper .advList {
  width: 1200px;
  margin-bottom: 41px;
  height: 185px;
  overflow: hidden;
  padding-top: 3px;
}

.jiuniuWrapper .advList li {
  width: 201px;
  box-sizing: border-box;
  line-height: 22px;
}

.jiuniuWrapper .advList li:hover {
  width: 280px;
}

.jiuniuWrapper .advList li:hover .top {
  height: 96px;
  width: 275px;
}

.jiuniuWrapper .advList li:hover .info {
  height: 80px;
  display: block;
}

.jiuniuWrapper .advList li:hover .iconBox {
  width: 144px;
  height: 93px;
}

.jiuniuWrapper .advList li:hover .iconBox::after {
  width: 144px;
}

.jiuniuWrapper .advList li:hover .msg {
  flex-direction: column;
  justify-content: center;
  text-align: left;
}

.jiuniuWrapper .advList li:hover .hoverDiv {
  display: block;
}

.jiuniuWrapper .advList li:hover .lineDiv {
  display: none;
}

.jiuniuWrapper .advList .hoverDiv {
  display: none;
}

.jiuniuWrapper .advList .lineDiv {
  width: 20px;
  box-sizing: border-box;
  padding-top: 28px;
  margin-right: 5px;
}

.jiuniuWrapper .advList .last {
  line-height: 21px;
}

.jiuniuWrapper .advList .info {
  width: 275px;
  height: 0;
  transition: height 300ms;
  background-color: #1f3753;
  border-radius: 0px 0px 15px 0px;
  overflow: hidden;
  font-family: SourceHanSansCN-Regular;
  font-size: 14px;
  color: #fff;
  line-height: 20px;
  padding-left: 14px;
  padding-top: 10px;
  display: none;
  box-sizing: border-box;
  margin-right: 4px;
  animation: fadeIn linear 300ms;
}

.jiuniuWrapper .advList .top {
  width: 198px;
  height: 179px;
  border: solid 1px #bebebe;
  margin-bottom: 6px;
  margin-left: 3px;
  box-sizing: border-box;
}

.jiuniuWrapper .advList .iconBox {
  width: 98px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}

.jiuniuWrapper .advList .iconBox::after {
  content: '';
  width: 99px;
  border: solid 1px #000000;
  position: absolute;
  top: -4px;
  left: -4px;
  bottom: -4px;
}

.jiuniuWrapper .advList .msg {
  align-items: top;
  padding-left: 18px;
  flex: 1;
  font-size: 16px;
  overflow: hidden;
}

.jiuniuWrapper .creatorBox {
  width: 1200px;
  height: 533px;
}

.fourWrapper {
  height: 1000px;
  /* background: url('../img/four_bg.png') no-repeat center; */
  background-position-y: -192px;
  overflow: hidden;
}

.fourWrapper .title {
  margin-bottom: 62px;
}

.fourWrapper .contentWrapper {
  width: 1200px;
  height: 674px;
  margin: 0 auto;
}

.fourWrapper .contentWrapper .fourBox {
  width: 316px;
  height: 674px;
  color: #fff;
  font-size: 28px;
  background: url('../img/four.png') no-repeat center;
  overflow: hidden;
  margin-right: 22px;
}

.fourWrapper .contentWrapper .fourBox div {
  height: 145px;
  padding-left: 40px;
  line-height: 145px;
  margin-bottom: 30px;
}

.fourWrapper .contentWrapper .fourBox div span {
  display: inline-block;
  width: 100%;
}

.fourWrapper .contentWrapper .fourBox div:hover span {
  animation: linearLeft 300ms linear;
}

.fourWrapper .contentWrapper .fourBox div:last-child {
  margin-bottom: 0;
}

.fourWrapper .twoWrapper {
  height: 674px;
  position: relative;
  flex: 1;
}

.fourWrapper .twoWrapper::after {
  content: '';
  width: 40px;
  height: 385px;
  background: url('../img/sh.png') no-repeat center;
  position: absolute;
  left: 178px;
  top: 147px;
}

.fourWrapper .twoWrapper .item {
  height: 374px;
  width: 100%;
  position: absolute;
  left: 0;
}

.fourWrapper .twoWrapper .item .c {
  height: 374px;
  width: 375px;
  background: url('../img/c_b.png') no-repeat center;
  overflow: hidden;
}

.fourWrapper .twoWrapper .item.active {
  z-index: 6;
}

.fourWrapper .twoWrapper .item.active .c {
  background: url('../img/c_r.png') no-repeat center;
}

.fourWrapper .twoWrapper .item.active .text.active {
  color: #ea775c;
}

.fourWrapper .twoWrapper .item.active .text.active:after {
  content: '';
  width: 25px;
  height: 29px;
  background: url('../img/caret-r.png') no-repeat center;
  position: absolute;
  right: 0;
  top: 0;
}

.fourWrapper .twoWrapper .c1 {
  top: 0;
}

.fourWrapper .twoWrapper .c2 {
  bottom: 0;
  overflow: hidden;
}

.fourWrapper .twoWrapper .c2 .iconBox {
  margin-top: 48px;
}

.fourWrapper .twoWrapper .msgList {
  width: 558px;
  font-size: 24px;
  margin-left: -74px;
  position: absolute;
  right: 0;
  top: 0;
  display: flex;
  justify-content: space-between;
}

.fourWrapper .twoWrapper .msgList .textBox {
  padding-top: 107px;
}

.fourWrapper .twoWrapper .msgList .text {
  margin-bottom: 35px;
  width: 191px;
  cursor: pointer;
  position: relative;
}

.fourWrapper .twoWrapper .msgList .text.active {
  color: #4b7cc8;
  font-weight: bold;
}

.fourWrapper .twoWrapper .msgList .text.active:after {
  content: '';
  width: 25px;
  height: 29px;
  background: url('../img/caret-b.png') no-repeat center;
  position: absolute;
  right: 0;
  top: 0;
}

.fourWrapper .twoWrapper .msgList .text:last-child {
  margin-bottom: 0;
}

.fourWrapper .twoWrapper .msgList .iconBox {
  width: 340px;
  height: 320px;
  background: url('../img/blue_bg.png') no-repeat center;
  overflow: hidden;
  background-size: 359px 337px;
  background-position: -10px -6px;
}

.fourWrapper .twoWrapper .msgList .iconBox.active {
  background: url('../img/red_bg.png') no-repeat center;
  background-size: 359px 337px;
  background-position: -10px -6px;
}

.fourWrapper .twoWrapper .msgList .iconBox .icon {
  display: none;
  box-sizing: border-box;
}

.fourWrapper .twoWrapper .msgList .iconBox .icon.active {
  display: block;
  animation: linearLeft 300ms linear;
}

.recordWrapper {
  height: 726px;
  background: url('../img/bg10.png') no-repeat center bottom;
  background-size: auto 1051px;
}

.recordWrapper .title {
  margin-bottom: 49px;
  color: #fff;
}

.recordWrapper .title span {
  color: #fff;
}

.recordWrapper .title dd {
  color: #fff;
}

.recordWrapper .title_white {
  margin-bottom: 49px;
  color: #fff;
}

.recordWrapper .title_white span {
  color: #fff;
}

.recordWrapper .title_white dd {
  color: #fff;
}

.recordWrapper .list {
  width: 1200px;
  font-size: 14px;
}

.recordWrapper .list li {
  width: 264px;
  height: 268px;
  box-sizing: border-box;
  padding: 20px 25px 0;
  word-break: break-all;
  font-size: 14px;
  position: relative;
  color: #fff;
  background: url('../img/rebg.png') no-repeat center bottom;
}

.recordWrapper .list li:after {
  width: 264px;
  height: 9px;
  background-color: #ffffff;
  position: absolute;
  top: 0;
  left: 0;
  content: '';
}

.recordWrapper .list li:hover {
  animation: shakeY 300ms linear forwards;
}

.recordWrapper .list li:hover:after {
  background-color: #e46852;
}

.recordWrapper .list li:hover .t {
  font-size: 18px;
  padding-top: 10px;
  margin-bottom: 15px;
}

.recordWrapper .list li:hover .info {
  display: block;
  animation: fadeIn 300ms linear;
}

.recordWrapper .list .t {
  font-size: 24px;
  padding-top: 90px;
  text-align: center;
  line-height: 1;
}

.recordWrapper .list .info {
  display: none;
  line-height: 22px;
}

.recordWrapper .list .last {
  padding-left: 28px;
}

.recordWrapper .list .msg {
  font-family: SourceHanSansCN-Bold;
  margin-top: 10px;
  color: #e1614d;
}

.recordWrapper .list .li {
  padding-left: 14px;
  position: relative;
}

.recordWrapper .list .li::after {
  content: '';
  width: 7px;
  height: 7px;
  background-color: #fff;
  position: absolute;
  top: 10px;
  left: 0px;
  border-radius: 50%;
}

.recordWrapper .img {
  width: 1200px;
  position: relative;
}

.recordWrapper .img .iconList {
  height: 160px;
  width: 920px;
  position: absolute;
  bottom: 32px;
  display: flex;
  left: 140px;
  justify-content: space-between;
}

.recordWrapper .img .iconList li:hover .icon1 {
  display: none;
}

.recordWrapper .img .iconList li:hover .icon2 {
  display: block;
  animation: fadeIn 500ms linear;
}

.recordWrapper .img .icon1,
.recordWrapper .img .icon2 {
  width: 226px;
  height: 160px;
  box-sizing: border-box;
}

.recordWrapper .img .right {
  text-align: right;
}

.recordWrapper .img .center {
  text-align: center;
}

.recordWrapper .img .icon1 {
  animation: fadeIn 500ms linear;
}

.recordWrapper .img .icon2 {
  padding-top: 5px;
  display: none;
}

.recordWrapper .img .left .icon2 {
  padding-left: 44px;
}

.recordWrapper .img .center .icon2 {
  text-align: left;
  padding-left: 32px;
}

.recordWrapper .img .right .icon2 {
  padding-right: 33px;
}

.footerWrapper {
  height: 220px;
  color: #ebf1f8;
  background-color: #223856;
}

.footerWrapper .top {
  padding-top: 27px;
  width: 1200px;
  border-bottom: 1px solid #fff;
  height: 143px;
  box-sizing: border-box;
  align-items: center;
  font-family: SourceHanSansCN-Normal;
  font-size: 14px;
}

.footerWrapper .adr {
  height: 90px;
  line-height: 26px;
  flex: 1;
  overflow: hidden;
  margin-left: 158px;
}

.footerWrapper .code {
  align-items: center;
}

.footerWrapper .code .msg {
  line-height: 24px;
}

.footerWrapper .code img {
  margin-right: 16px;
}

.footerWrapper .copyright {
  height: 76px;
  line-height: 62px;
  font-family: SourceHanSansCN-Normal;
  font-size: 14px;
  text-align: center;
}</pre></body></html>