.sjcTop,
.sjcTop2,
.sjcBottom,
.sjcLeft,
.sjcRight,
.leftWow,
.rightWow,
.bottomWow,
.mos {
  -webkit-transition: all 0.8s ease-out;
  transition: all 0.8s ease-out;
}

.jz {
  position: absolute;
  display: block;
  margin: auto;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}

.flex {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.fd:hover,
.fd:focus {
  -webkit-animation: fd 1s;
  animation: fd 1s;
  box-shadow: 0 0 0 2em rgba(255, 255, 255, 0);
  -webkit-transform: translateY(-3px);
  transform: translateY(-3px);
}

@-webkit-keyframes fd {
  0% {
    box-shadow: 0 0 0 0 var(--hover);
  }
}

@keyframes fd {
  0% {
    box-shadow: 0 0 0 0 var(--hover);
  }
}

@keyframes menu1 {
  0% {
    opacity: 0;
    transform: translateX(8px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes myfirst {

  0%,
  100% {
    -webkit-transform: translate(0, -5px) rotateZ(0);
  }

  50% {
    -webkit-transform: translate(0, 0) rotateZ(0);
  }
}

@-webkit-keyframes myfirst1 {

  0%,
  100% {
    -webkit-transform: translate(0, -10px) rotateZ(0);
  }

  50% {
    -webkit-transform: translate(0, 0) rotateZ(0);
  }
}

@keyframes myfirst2 {

  0%,
  100% {
    -webkit-transform: translate(-5px, 0);
  }

  50% {
    -webkit-transform: translate(0, 0);
  }
}

@keyframes msClock {

  0%,
  70%,
  100% {
    transform: rotate(0) scale(1);
  }

  10%,
  30% {
    transform: rotate(-15deg) scale(1.1);
  }

  20%,
  40% {
    transform: rotate(15deg) scale(1.1);
  }
}

.button.dark {
  --shadow: 0 2px 8px -1px rgba(21, 25, 36, 0.32);
  --shadow-hover: 0 4px 20px -2px rgba(21, 25, 36, 0.5);
}

.button.white {
  --shadow: 0 2px 8px -1px rgba(18, 22, 33, 0.04);
  --shadow-hover: 0 4px 20px -2px rgba(18, 22, 33, 0.12);
}

.button {
  --text: #fff;
  --font-size: 16px;
  --duration: 0.5s;
  --move-hover: -4px;
  font-family: 'Roboto';
  line-height: var(--font-size);
  display: block;
  outline: none;
  border: none;
  cursor: pointer;
  text-decoration: none;
  font-size: var(--font-size);
  background: var(--background);
  color: var(--text);
  box-shadow: var(--shadow);
  -webkit-transform: translateY(var(--y));
  transform: translateY(var(--y));
  transition: box-shadow var(--duration) ease, -webkit-transform var(--duration) ease;
  transition: transform var(--duration) ease, box-shadow var(--duration) ease;
  transition: transform var(--duration) ease, box-shadow var(--duration) ease, -webkit-transform var(--duration) ease;
  -webkit-tap-highlight-color: transparent;
  -webkit-appearance: none;
}

.button span {
  text-align: center;
}

.button span i {
  display: inline-block;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  font-style: normal;
}

.button span i:nth-child(1) {
  --d: 0.05s;
}

.button span i:nth-child(2) {
  --d: 0.1s;
}

.button span i:nth-child(3) {
  --d: 0.15s;
}

.button span i:nth-child(4) {
  --d: 0.2s;
}

.button span i:nth-child(5) {
  --d: 0.25s;
}

.button span i:nth-child(6) {
  --d: 0.3s;
}

.button span i:nth-child(7) {
  --d: 0.35s;
}

.button span i:nth-child(8) {
  --d: 0.4s;
}

.button span i:nth-child(9) {
  --d: 0.45s;
}

.button span i:nth-child(10) {
  --d: 0.5s;
}

.button span i:nth-child(11) {
  --d: 0.55s;
}

.button:hover {
  --y: var(--move-hover);
  --shadow: var(--shadow-hover);
  --move: -4px;
  --shadow-active: 0 3px 1px rgba(0, 0, 0, 0.2);
}

.button:hover i {
  -webkit-animation: move var(--duration) linear var(--d);
  animation: move var(--duration) linear var(--d);
}

.button.smoke {
  --move: 12px;
  --move-y: -8px;
  --blur: 4px;
}

.button.smoke:hover i {
  --duration: 1s;
  -webkit-animation: smoke var(--duration) linear var(--d);
  animation: smoke var(--duration) linear var(--d);
}

.button.drive {
  --move: 16px;
  --skew: 25deg;
  --skew-fast: 40deg;
  --skew-bounce: -12px;
}

.button.drive:hover i {
  --duration: 1s;
  -webkit-transform-origin: 50% 100%;
  transform-origin: 50% 100%;
  -webkit-animation: drive var(--duration) linear var(--d);
  animation: drive var(--duration) linear var(--d);
}

.btnstyle1 {
  position: relative;
  z-index: 1;
  transition: color 0.3s;
  box-sizing: border-box;
  background-color: transparent;
  cursor: pointer;
  overflow: hidden;
}

.btnstyle1::before {
  content: '';
  position: absolute;
  height: 100%;
  width: 100%;
  bottom: 100%;
  left: 0;
  z-index: -1;
  background-color: #030a5b;
  -webkit-transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  -webkit-transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
  transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
  box-sizing: border-box;
}

.btnstyle1::after {
  content: '';
  position: absolute;
  height: 100%;
  width: 100%;
  bottom: 100%;
  left: 0;
  z-index: -1;
  background-color: #030a5b;
  -webkit-transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  -webkit-transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
  transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
  box-sizing: border-box;
}

.btnstyle1:hover::after {
  -webkit-transition-delay: 0.175s;
  transition-delay: 0.175s;
  -webkit-transform: translate3d(0, 100%, 0);
  transform: translate3d(0, 100%, 0);
}

.btnstyle1:hover::before {
  -webkit-transform: translate3d(0, 100%, 0);
  transform: translate3d(0, 100%, 0);
}

.btnstyle2 {
  position: relative;
  z-index: 1;
  overflow: hidden;
  -webkit-transition: background-color 0.6s, color 0.3s;
  transition: background-color 0.6s, color 0.3s;
  box-sizing: border-box;
  border: none;
  cursor: pointer;
}

.btnstyle2::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 2px solid #030a5b;
  z-index: -1;
  border-radius: inherit;
  opacity: 0;
  -webkit-transform: scale3d(0.6, 0.6, 1);
  transform: scale3d(0.6, 0.6, 1);
  -webkit-transition: -webkit-transform 0.3s, opacity 0.3s;
  transition: transform 0.3s, opacity 0.3s;
  -webkit-transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
  transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
  box-sizing: border-box;
}

.btnstyle2:hover {
  color: #333;
  background-color: #fff;
}

.btnstyle2:hover::before {
  -webkit-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
  opacity: 1;
}

@-webkit-keyframes move {
  40% {
    -webkit-transform: translateY(var(--move));
    transform: translateY(var(--move));
    text-shadow: var(--shadow-active);
  }
}

@keyframes move {
  40% {
    -webkit-transform: translateY(var(--move));
    transform: translateY(var(--move));
    text-shadow: var(--shadow-active);
  }
}

@-webkit-keyframes smoke {

  45%,
  55% {
    -webkit-filter: blur(var(--blur));
    filter: blur(var(--blur));
  }

  50%,
  50.1% {
    opacity: 0;
  }

  25%,
  75% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  50% {
    -webkit-transform: translateX(var(--move)) translateY(var(--move-y));
    transform: translateX(var(--move)) translateY(var(--move-y));
  }

  50.1% {
    -webkit-transform: translateX(calc(var(--move) * -1));
    transform: translateX(calc(var(--move) * -1));
  }
}

@keyframes smoke {

  45%,
  55% {
    -webkit-filter: blur(var(--blur));
    filter: blur(var(--blur));
  }

  50%,
  50.1% {
    opacity: 0;
  }

  25%,
  75% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  50% {
    -webkit-transform: translateX(var(--move)) translateY(var(--move-y));
    transform: translateX(var(--move)) translateY(var(--move-y));
  }

  50.1% {
    -webkit-transform: translateX(calc(var(--move) * -1));
    transform: translateX(calc(var(--move) * -1));
  }
}

@-webkit-keyframes drive {
  40% {
    opacity: 1;
  }

  55% {
    -webkit-transform: skewX(var(--skew)) translateX(var(--move));
    transform: skewX(var(--skew)) translateX(var(--move));
  }

  56% {
    -webkit-transform: skewX(var(--skew-fast)) translateX(calc(var(--move) * -1));
    transform: skewX(var(--skew-fast)) translateX(calc(var(--move) * -1));
  }

  55%,
  56% {
    opacity: 0;
  }

  75% {
    -webkit-transform: skewX(var(--skew));
    transform: skewX(var(--skew));
  }

  85% {
    -webkit-transform: skewX(var(--skew-bounce));
    transform: skewX(var(--skew-bounce));
  }
}

@keyframes drive {
  40% {
    opacity: 1;
  }

  55% {
    -webkit-transform: skewX(var(--skew)) translateX(var(--move));
    transform: skewX(var(--skew)) translateX(var(--move));
  }

  56% {
    -webkit-transform: skewX(var(--skew-fast)) translateX(calc(var(--move) * -1));
    transform: skewX(var(--skew-fast)) translateX(calc(var(--move) * -1));
  }

  55%,
  56% {
    opacity: 0;
  }

  75% {
    -webkit-transform: skewX(var(--skew));
    transform: skewX(var(--skew));
  }

  85% {
    -webkit-transform: skewX(var(--skew-bounce));
    transform: skewX(var(--skew-bounce));
  }
}

@keyframes movec {

  0%,
  100% {
    clip: rect(0, 300px, 5px, 0);
  }

  25% {
    clip: rect(0, 300px, 210px, 295px);
  }

  50% {
    clip: rect(205px, 300px, 210px, 0);
  }

  75% {
    clip: rect(0, 5px, 210px, 0px);
  }
}

@keyframes ripple {
  0% {
    box-shadow: 0 0 0 0 rgba(24, 125, 178, 0.1), 0 0 0 10px #187db2;
  }

  100% {
    box-shadow: 0 0 0 10px #187db2, 0 0 0 15px rgba(24, 125, 178, 0);
  }
}

@keyframes ripple2 {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 204, 67, 0.1), 0 0 0 10px #ffcc43;
  }

  100% {
    box-shadow: 0 0 0 10px #ffcc43, 0 0 0 15px rgba(255, 204, 67, 0);
  }
}

@keyframes tra1 {
  0% {
    transform: scale(0);
  }

  20% {
    transform: scale(1);
  }

  100% {
    transform: scale(0);
  }
}

@keyframes tra2 {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(0.5);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes rotate {
  0% {
    transform: rotateZ(0);
  }

  50% {
    transform: rotateZ(180deg);
  }

  100% {
    transform: rotateZ(360deg);
  }
}

@keyframes ripple {
  0% {
    box-shadow: 0 0 0 0 rgba(51, 51, 51, 0.1), 0 0 0 10px rgba(51, 51, 51, 0.2);
  }

  100% {
    box-shadow: 0 0 0 10px rgba(51, 51, 51, 0.1), 0 0 0 15px rgba(51, 51, 51, 0);
  }
}

@keyframes jello {

  from,
  11.1%,
  to {
    -webkit-transform: none;
    -moz-transform: none;
    transform: none;
  }

  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    -moz-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }

  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    -moz-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
  }

  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    -moz-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }

  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    -moz-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }

  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    -moz-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }

  77.7% {
    -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
    -moz-transform: skewX(0.390625deg) skewY(0.390625deg);
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }

  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    -moz-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}

/* 右侧导航 */
#fp-nav {
  _display: none;
  font-size: 12px;
  right: 0;
}

#fp-nav li {
  margin: 10px 0 0;
  vertical-align: middle;
  width: 30px !important;
  height: 22px !important;
}

#fp-nav li a {
  float: right;
  width: 21px;
  height: 21px;
  color: #000;
  text-decoration: none;
  text-align: right;
  background: url(../images/dot.png) 8px 5px no-repeat;
}

#fp-nav .active {
  background-position: 0 bottom;
}

#fp-nav span {
  display: none;
}

.fp-tooltip {
  float: left;
  top: 0;
  right: 55px;
  font: 12px "Microsoft Yahei";
  color: #333 !important;
  line-height: 22px;
  width: 80px !important;
  height: 30px;
  background: #fff;
  box-shadow: 0 0 5px 1px rgba(0, 0, 0, 0.1);
  text-align: center;
  line-height: 30px;
  border-radius: 5px;
}

/* banner */
.banner {
  width: 100%;
  position: relative;
  height: 100vh;
  box-sizing: border-box;
  padding: 120px 55px 0;
}

.banner:hover .prev1 {
  opacity: 1;
  left: 100px;
}

.banner:hover .next1 {
  opacity: 1;
  right: 100px;
}

.banner .prev1 {
  width: 50px;
  height: 50px;
  display: block;
  background: url("../images/arrows.png") no-repeat left center;
  transition: 0.5s;
  position: absolute;
  top: 56%;
  left: 80px;
  opacity: 0;
  z-index: 999;
  transform: translateY(-25px);
  --color: #ccc;
  --hover: #ccc;
}

.banner .next1 {
  width: 50px;
  height: 50px;
  display: block;
  background: url("../images/arrows.png") no-repeat right center;
  transition: 0.5s;
  transform: translateY(-25px);
  position: absolute;
  top: 56%;
  right: 80px;
  opacity: 0;
  z-index: 999;
}

.banner .swiper-banner {
  width: 100%;
  height: 100%;
}

.banner .swiper-banner .swiper-slide a,
.banner .swiper-banner .swiper-slide a img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner .swiper-banner .swiper-pagination-bullets {
  bottom: 30px !important;
}

.banner .swiper-banner .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  margin: 0 8px !important;
  background: rgba(255, 255, 255);
  opacity: 0.8;
}

.banner .swiper-banner .swiper-pagination-bullet-active {
  background: #030a5b;
}

.about {
  width: 100%;
  height: 100%;
  padding-top: 180px;
  box-sizing: border-box;
  background: url("../images/bg1.jpg") no-repeat center bottom;
}

.about .left {
  height: 525px;
  margin: 78px 0 0 -120px;
  height: 430px;
  text-align: right;
}

.about .left p {
  font-family: arial;
  font-size: 76px;
  font-weight: 900;
  color: #fff;
  line-height: 57px;
}

.about .left p i {
  font-family: arial;
  font-size: 76px;
  font-weight: 900;
  color: #dc9924;
  margin-bottom: 28px;
  display: block;
}

.about .left em {
  display: block;
  width: 48px;
  height: 6px;
  background-color: #ffffff;
  margin: 32px 6px 30px;
  float: right;
}

.about .left h3 {
  text-align: right;
  letter-spacing: 4px;
  color: #ffffff;
  font-size: 40px;
  line-height: 40px;
}

.about .left .mo {
  display: block;
  float: right;
  margin-top: 35px;
  width: 65px;
  height: 26px;
  border-radius: 3px;
  border: solid 1px #686f93;
  text-align: center;
  line-height: 26px;
  color: #fff;
  font-family: arial;
  font-size: 15px;
  margin-right: 6px;
}

.about ul {
  float: right;
  width: 1005px;
  height: 508px;
  margin-right: -185px;
  position: relative;
}

.about ul li:first-child {
  position: absolute;
  top: 0px;
  left: 0px;
}

.about ul li.on i {
  background-color: #f3f3f3;
  border: solid 1px #eb6100;
}

.about ul li:nth-child(2) {
  height: 136px;
  padding: 50px 0 0 157px;
  position: absolute;
  top: 84px;
  left: 340px;
  text-align: left;
}

.about ul li:nth-child(2) i {
  width: 135px;
  height: 136px;
  right: auto;
  left: 0;
}

.about ul li:nth-child(2) i img {
  position: absolute;
  bottom: 12px;
  left: 12px;
}

.about ul li:nth-child(3) {
  position: absolute;
  top: 40px;
  right: 0px;
  padding: 25px 0 0 112px;
}

.about ul li:nth-child(3) i {
  right: auto;
  left: 0;
}

.about ul li:nth-child(4) {
  position: absolute;
  top: 282px;
  left: 0px;
}

.about ul li:nth-child(5) {
  position: absolute;
  top: 415px;
  right: 130px;
  padding: 25px 0 0 112px;
}

.about ul li:nth-child(5) i {
  right: auto;
  left: 0;
}

.about ul li {
  box-sizing: border-box;
  padding: 25px 112px 0 0;
  height: 92px;
  text-align: right;
  font-size: 18px;
  line-height: 18px;
  z-index: 99;
}

.about ul li a {
  color: #fff;
}

.about ul li p {
  color: #727ea4;
  margin-top: 10px;
  font-family: arial;
  font-size: 12px;
  line-height: 11px;
}

.about ul li i {
  display: block;
  width: 92px;
  height: 92px;
  background-color: #27376f;
  border: solid 1px #35457d;
  border-radius: 50%;
  position: absolute;
  top: 0px;
  right: 0px;
  transition: 0.5s;
}

.about ul li i img {
  position: absolute;
  bottom: 8px;
  left: 8px;
  transition: 1s;
}

.about ul li i::after {
  content: '';
  position: absolute;
  display: block;
  margin: auto;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  border-radius: 50%;
  box-shadow: 0 0 5px 1px rgba(255, 255, 255, 0.8);
  z-index: -1;
  opacity: 0;
  transform-origin: center;
  -webkit-animation: halo 1.5s 0.9s infinite ease-out;
  -moz-animation: halo 1.5s 0.9s infinite ease-out;
  animation: halo 1.5s 0.9s infinite ease-out;
}

.about .jie {
  width: 840px;
  line-height: 40px;
  letter-spacing: 0px;
  color: #828caf;
  font-size: 16px;
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  margin-left: 135px;
}

@-webkit-keyframes halo {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.1);
  }

  50% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(1.3);
  }
}

@-moz-keyframes halo {
  0% {
    opacity: 0;
    -moz-transform: scale(0.1);
  }

  50% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    -moz-transform: scale(1.3);
  }
}

@-ms-keyframes halo {
  0% {
    opacity: 0;
  }

  50% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@-o-keyframes halo {
  0% {
    opacity: 0;
    -o-transform: scale(0.1);
  }

  50% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    -o-transform: scale(1.3);
  }
}

@keyframes halo {
  0% {
    opacity: 0;
    transform: scale(0.1);
  }

  50% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: scale(1.3);
  }
}

.course {
  width: 100%;
  height: 100%;
  padding-top: 212px;
  box-sizing: border-box;
  background: url("../images/bg2.jpg") no-repeat center bottom;
  overflow: hidden;
}

.course .left {
  width: 440px;
}

.course .left img {
  display: block;
  max-width: 100%;
}

.course .right {
  text-align: right;
  margin-top: 65px;
}

.course .right b {
  font-family: arial;
  font-size: 76px;
  font-weight: 900;
  line-height: 57px;
  color: #dc9924;
  font-style: italic;
  display: block;
}

.course .right em {
  display: block;
  margin: 22px 0 37px;
  font-family: arial;
  font-size: 80px;
  font-weight: 900;
  line-height: 60px;
  color: #fff;
  font-style: italic;
}

.course .right .xian {
  float: right;
  width: 48px;
  height: 6px;
  background-color: #ffffff;
}

.course .right p {
  letter-spacing: 4px;
  color: #ffffff;
  margin: 28px 0 58px;
  font-size: 40px;
  line-height: 40px;
  font-weight: bold;
}

.course .right span {
  display: block;
  height: 56px;
  line-height: 56px;
  font-size: 18px;
  color: #fff;
}

.course .right span i {
  display: block;
  margin-left: 15px;
  float: right;
  width: 56px;
  height: 56px;
  background-color: #dc9924;
  border-radius: 50%;
  text-align: center;
  font-weight: bold;
  font-family: simsun;
  color: #132152;
  font-size: 30px;
}

.course ul {
  width: 100%;
  margin-top: 60px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.course ul li.on {
  border-top: 3px solid #dc9924;
}

.course ul li {
  width: 20%;
  height: 160px;
  border-top: 3px solid rgba(255, 255, 255, 0.2);
  transition: 0.5s;
  padding-top: 35px;
  box-sizing: border-box;
  padding-right: 50px;
  transform: translateX(300px);
  opacity: 0;
}

.course ul li span {
  display: block;
  font-weight: bold;
  font-family: simsun;
  font-size: 28px;
  line-height: 21px;
  color: #fff;
}

.course ul li p {
  margin: 15px 0 10px;
  color: #abb0c6;
  font-size: 14px;
  line-height: 24px;
  height: 48px;
}

.course ul li em {
  display: block;
  font-weight: bold;
  font-family: simsun;
  color: #dc9924;
  font-size: 28px;
  line-height: 28px;
}

.course ul li:nth-child(1) {
  transition: 0.8s ease-out;
}

.course ul li:nth-child(2) {
  transition: 1s ease-out;
}

.course ul li:nth-child(3) {
  transition: 1.2s ease-out;
}

.course ul li:nth-child(4) {
  transition: 1.4s ease-out;
}

.course ul li:nth-child(5) {
  transition: 1.6s ease-out;
}

.culture {
  width: 100%;
  height: 100%;
  padding-top: 295px;
  box-sizing: border-box;
  background: url("../images/bg3.jpg") no-repeat center bottom;
  position: relative;
}

.culture .slideTxtBox {
  width: 100%;
  position: relative;
  height: 492px;
}

.culture .slideTxtBox .next {
  display: block;
  width: 65px;
  height: 26px;
  background-color: rgba(53, 69, 125, 0.1);
  border-radius: 3px;
  border: solid 1px rgba(225, 225, 225, 0.1);
  position: absolute;
  top: 345px;
  left: 350px;
  z-index: 999;
  text-align: center;
  line-height: 26px;
  color: #dc9924;
  transition: 0.5s;
}

.culture .slideTxtBox .next:hover {
  background-color: rgba(53, 69, 125, 0.5);
}

.culture .slideTxtBox .biao {
  position: absolute;
  top: 0px;
  left: 0px;
  text-align: left;
  height: 158px;
}

.culture .slideTxtBox .biao span {
  display: block;
  font-family: arial;
  font-size: 76px;
  font-weight: 900;
  line-height: 57px;
  color: #dc9924;
  font-style: italic;
}

.culture .slideTxtBox .biao em {
  display: block;
  width: 48px;
  height: 6px;
  background-color: #ffffff;
  margin: 28px 0;
}

.culture .slideTxtBox .biao h3 {
  letter-spacing: 4px;
  color: #ffffff;
  font-size: 40px;
  line-height: 40px;
  font-weight: bold;
}

.culture .slideTxtBox .bd {
  width: 410px;
  margin: 170px 0 0 350px;
  float: left;
}

.culture .slideTxtBox .bd .ti {
  line-height: 24px;
  letter-spacing: 2.4px;
  color: #ffffff;
  font-size: 24px;
  font-weight: bold;
}

.culture .slideTxtBox .bd .ti span {
  letter-spacing: 1.5px;
  color: #ffffff;
  margin-left: 15px;
  font-family: arial;
  font-size: 15px;
  font-weight: normal;
}

.culture .slideTxtBox .bd em {
  display: block;
  width: 49px;
  height: 2px;
  background-color: #dc9924;
  margin: 13px 0 28px;
}

.culture .slideTxtBox .bd .jie {
  width: 100%;
  line-height: 36px;
  letter-spacing: 0px;
  color: #b4bad6;
  font-size: 16px;
}

.culture .slideTxtBox .hd {
  width: 455px;
  float: right;
  position: relative;
  height: 440px;
  transition: 1s ease-out;
  transform: scale(0);
}

.culture .slideTxtBox .hd li:nth-child(1) {
  position: absolute;
  top: 0px;
  left: 50px;
}

.culture .slideTxtBox .hd li:nth-child(2) {
  position: absolute;
  top: 0px;
  right: 50px;
}

.culture .slideTxtBox .hd li:nth-child(3) {
  position: absolute;
  top: 153px;
  left: 0px;
}

.culture .slideTxtBox .hd li:nth-child(4) {
  position: absolute;
  top: 153px;
  right: 0px;
}

.culture .slideTxtBox .hd li:nth-child(5) {
  position: absolute;
  bottom: 0px;
  left: 130px;
}

.culture .slideTxtBox .hd li.on {
  background: rgba(220, 153, 36, 0.8);
  animation: 1.5s jello;
}

.culture .slideTxtBox .hd li {
  width: 194px;
  height: 194px;
  background: rgba(220, 153, 36, 0.2);
  border-radius: 50%;
  transition: 0.5s;
  text-align: center;
  line-height: 194px;
  letter-spacing: 2px;
  color: #ffffff;
  font-size: 20px;
  font-weight: bold;
  cursor: pointer;
}

.culture .tit {
  margin: 0 -256px 0 0;
  float: right;
  background: url("../images/bg31.jpg") no-repeat center;
  width: 1206px;
  height: 153px;
  padding-top: 55px;
  box-sizing: border-box;
  padding-right: 256px;
  text-align: right;
  letter-spacing: 1.5px;
  color: #ffffff;
  font-size: 30px;
  line-height: 30px;
  font-weight: bold;
  font-family: simsun;
}

.honour {
  width: 100%;
  height: 100%;
  padding-top: 220px;
  box-sizing: border-box;
  background: url("../images/bg4.jpg") no-repeat center bottom;
}

.honour .biaoti {
  height: 122px;
  text-align: center;
  width: 100%;
}

.honour .biaoti p {
  font-family: arial;
  font-size: 76px;
  font-weight: 900;
  line-height: 57px;
  color: #dc9924;
  text-transform: uppercase;
}

.honour .biaoti h3 {
  margin-top: 25px;
  letter-spacing: 4px;
  color: #ffffff;
  font-size: 40px;
  line-height: 40px;
  background: url("../images/bt1.png") no-repeat center;
}

.honour #multipleColumn {
  width: 100%;
  position: relative;
  margin-top: 30px;
}

.honour #multipleColumn .bd ul {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.honour #multipleColumn .bd ul li:hover .tu img {
  transform: scale(1.2);
}

.honour #multipleColumn .bd ul li:hover .ti {
  color: #dc9924;
}

.honour #multipleColumn .bd ul li {
  width: 288px;
}

.honour #multipleColumn .bd ul li .tu {
  width: 288px;
  height: 387px;
  box-sizing: border-box;
  padding: 26px;
  background: url("../images/yy.png") no-repeat center;
}

.honour #multipleColumn .bd ul li .tu a {
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.honour #multipleColumn .bd ul li .tu a img {
  width: 100%;
  height: 100%;
  transition: 1s;
  object-fit: cover;
}

.honour #multipleColumn .bd ul li .ti {
  display: block;
  width: 100%;
  margin-top: 25px;
  font-size: 16px;
  line-height: 16px;
  color: #fff;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  text-align: center;
  transition: 0.3s;
}

.honour #multipleColumn .hd {
  width: 100%;
  height: 35px;
  margin-top: 42px;
  background: url("../images/hd1.png") no-repeat center;
}

.honour #multipleColumn .hd ul {
  width: 112px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.honour #multipleColumn .hd ul li.on {
  background: #dc9924;
}

.honour #multipleColumn .hd ul li.on::after {
  height: 17px;
}

.honour #multipleColumn .hd ul li {
  width: 8px;
  height: 8px;
  background-color: #e5e5e5;
  margin-top: 13px;
  border-radius: 50%;
  position: relative;
  font-size: 0;
  cursor: pointer;
}

.honour #multipleColumn .hd ul li::after {
  width: 35px;
  height: 0;
  background: url("../images/hd2.png") no-repeat center;
  transition: 0.5s;
  content: "";
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
}

.cooperate {
  width: 100%;
  height: 100%;
  padding-top: 212px;
  box-sizing: border-box;
  background: url("../images/bg5.jpg") no-repeat center bottom;
}

.cooperate .center {
  width: 1430px;
}

.cooperate .biaoti {
  height: 122px;
  text-align: center;
  width: 100%;
}

.cooperate .biaoti p {
  font-family: arial;
  font-size: 76px;
  font-weight: 900;
  line-height: 57px;
  color: #dc9924;
  text-transform: uppercase;
}

.cooperate .biaoti h3 {
  margin-top: 25px;
  letter-spacing: 4px;
  color: #ffffff;
  font-size: 40px;
  line-height: 40px;
  background: url("../images/bt1.png") no-repeat center;
}

.cooperate ul {
  width: 100%;
  position: relative;
  height: 562px;
  margin-top: 30px;
}

.cooperate ul::after {
  width: 100%;
  height: 100%;
  height: 560px;
  border: 1px solid #0f1c4a;
  pointer-events: none;
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  box-sizing: border-box;
}

.cooperate ul .logo {
  width: 645px;
  height: 211px;
  position: absolute;
  display: block;
  margin: auto;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  transform: skewX(90deg);
  transition: 1s ease-out;
  opacity: 0;
}

.cooperate ul .logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.culture .slideTxtBox .biao h3 {
  font-size: 36px;
  line-height: 1;
}

.cooperate ul li:nth-child(6) {
  position: absolute;
  top: 140px;
  left: 0px;
}

.cooperate ul li:nth-child(7) {
  position: absolute;
  top: 140px;
  right: 0px;
}

.cooperate ul li:nth-child(8) {
  position: absolute;
  top: 280px;
  left: 0px;
}

.cooperate ul li:nth-child(9) {
  position: absolute;
  top: 280px;
  right: 0px;
}

.cooperate ul li:nth-child(10),
.cooperate ul li:nth-child(11),
.cooperate ul li:nth-child(12),
.cooperate ul li:nth-child(13),
.cooperate ul li:nth-child(14) {
  margin-top: 280px;
}

.cooperate ul li:hover img {
  transform: scale(1.2);
}

.cooperate ul li {
  float: left;
  width: 20%;
  height: 140px;
  position: relative;
  border: 1px solid #202c58;
  box-sizing: border-box;
  overflow: hidden;
}

.cooperate ul li img {
  position: absolute;
  display: block;
  margin: auto;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  max-width: 100%;
  max-height: 100%;
  transition: 0.5s;
}

.contact {
  width: 100%;
  height: 100%;
  padding-top: 276px;
  box-sizing: border-box;
  background: url("../images/bg6.jpg") no-repeat center bottom;
  overflow: hidden;
}

.contact .center {
  width: 1830px;
  transition: 1s ease-out;
}

.contact .pic {
  position: absolute;
  top: -83px;
  left: 50%;
  margin-left: -340px;
  transform: scale(0);
  transition: 1.5s ease-out;
}

.contact ul {
  width: 100%;
  position: relative;
  height: 360px;
}

.contact ul li:nth-child(2) {
  position: absolute;
  top: 0px;
  right: 0px;
  text-align: right;
}

.contact ul li:nth-child(2) p {
  margin-right: 30px;
}

.contact ul li:nth-child(3) {
  position: absolute;
  bottom: 0px;
  left: 0px;
}

.contact ul li:nth-child(4) {
  position: absolute;
  bottom: 0px;
  right: 0px;
  text-align: right;
}

.contact ul li:nth-child(4) p {
  margin-right: 30px;
}

.contact ul li {
  width: 346px;
  height: 154px;
  box-sizing: border-box;
  padding: 30px 0 0 60px;
  float: left;
}

.contact ul li span {
  font-family: simsun;
  font-size: 62px;
  font-weight: bold;
  line-height: 43px;
  color: #fff;
  transition: 0.5s;
  display: inline-block;
  margin-bottom: 30px;
}

.contact ul li i {
  font-family: arial;
  font-size: 34px;
  line-height: 20px;
  color: #fff;
  font-weight: bold;
  margin-left: 8px;
}

.contact ul li p {
  font-size: 20px;
  line-height: 20px;
  color: #fff;
}

.contact ul li p em {
  font-size: 14px;
  color: #fff;
}

.contact .ti {
  margin: 70px auto 42px;
  font-size: 32px;
  line-height: 32px;
  color: #dc9924;
  text-align: center;
}

.contact .dh {
  width: 581px;
  height: 66px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  position: relative;
  line-height: 66px;
}

.contact .dh p {
  font-family: arial;
  font-size: 30px;
  font-weight: bold;
  color: #fff;
}

.contact .dh .qq {
  display: block;
  width: 66px;
  height: 66px;
  background: #ffffff url(../images/qq1.png) no-repeat center;
  border-radius: 10px;
  border: solid 1px #eaeaea;
  position: absolute;
  top: 0px;
  left: 214px;
}

.contact .dh .wx {
  width: 66px;
  height: 66px;
  background: #ffffff url(../images/wx.png) no-repeat center;
  border-radius: 10px;
  border: solid 1px #eaeaea;
  position: absolute;
  top: 0px;
  right: 225px;
  cursor: pointer;
}

.contact .dh .wx:hover img {
  height: 120px;
}

.contact .dh .wx img {
  width: 120px;
  height: 0;
  transition: 0.5s;
  position: absolute;
  bottom: 67px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 5px;
}

.news {
  width: 100%;
  height: 100%;
  padding-top: 205px;
  box-sizing: border-box;
  background: url("../images/bg7.jpg") no-repeat center bottom;
  overflow: hidden;
}

.news .biao {
  float: left;
  text-align: left;
  height: 158px;
}

.news .biao span {
  display: block;
  font-family: arial;
  font-size: 76px;
  font-weight: 900;
  line-height: 57px;
  color: #dc9924;
  font-style: italic;
  text-transform: uppercase;
}

.news .biao em {
  display: block;
  width: 48px;
  height: 6px;
  background-color: #ffffff;
  margin: 28px 0;
}

.news .biao h3 {
  letter-spacing: 4px;
  color: #ffffff;
  font-size: 40px;
  line-height: 40px;
  font-weight: bold;
}

.news .biao h3 a {
  color: #fff;
}

.news .hd {
  float: right;
  width: 420px;
  height: 72px;
  margin-top: 54px;
}

.news .hd ul {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.news .hd ul li.on {
  background: #dc9924;
  border: 1px solid #dc9924;
}

.news .hd ul li.on a {
  color: #fff;
}

.news .hd ul li {
  width: 50%;
  height: 72px;
  border: solid 1px #bfbfbf;
  box-sizing: border-box;
  transition: 0.5s;
  text-align: center;
}

.news .hd ul li a {
  display: block;
  width: 100%;
  height: 100%;
  line-height: 72px;
  font-size: 20px;
  color: #fff;
  transition: 0.5s;
}

.news .bd ul {
  width: 1515px;
  margin-top: 57px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.news .bd ul li:hover .tu img {
  transform: scale(1.2);
}

.news .bd ul li:hover .ti {
  color: #dc9924;
}

.news .bd ul li {
  width: 440px;
  position: relative;
}

.news .bd ul li .shi {
  writing-mode: tb-rl;
  position: absolute;
  top: 0px;
  left: -33px;
  color: #97a1c6;
  font-family: arial;
  font-size: 20px;
  line-height: 16px;
}

.news .bd ul li .tu {
  width: 100%;
  height: 296px;
  background: #f3f3f3;
  box-sizing: border-box;
  padding: 5px;
}

.news .bd ul li .tu a {
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.news .bd ul li .tu a img {
  width: 100%;
  height: 100%;
  transition: 1s;
  object-fit: cover;
}

.news .bd ul li .ti {
  display: block;
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin: 23px 0 20px;
  font-size: 18px;
  line-height: 19px;
  color: #fff;
  font-weight: bold;
  transition: 0.5s;
}

.news .bd ul li .jie {
  width: 335px;
  line-height: 27px;
  letter-spacing: 0px;
  color: #747b96;
  font-size: 15px;
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.news .bd ul li .mo {
  display: block;
  position: absolute;
  bottom: 26px;
  right: 0px;
  text-align: center;
  width: 65px;
  height: 26px;
  border-radius: 3px;
  border: solid 1px #344272;
  line-height: 26px;
  color: #fff;
  font-family: arial;
  font-size: 15px;
}

.section7.active .contact .center {
  width: 1430px;
}

.section7.active .contact .pic {
  transform: scale(1);
  
}

.section3.active .course ul li {
  transform: translateX(0);
  opacity: 1;
}

.section4.active .culture .slideTxtBox .hd {
  transform: scale(1);
}

.section6.active .cooperate ul .logo {
  transform: skewX(0);
  opacity: 1;
}

@media(max-width:1680px) {

  .about,
  .course,
  .culture,
  .honour,
  .cooperate,
  .contact,
  .news {
    background-size: 110% 200% !important;
  }
}

@media(max-width:1660px) {

  .about,
  .course,
  .culture,
  .honour,
  .cooperate,
  .contact,
  .news {
    background-size: 110% 200% !important;
  }

  .about .jie {
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    margin-left: 135px;
    position: absolute;
    bottom: 0;
  }

  .course {
    padding-top: 170px;
  }

  .course .left {
    width: 340px;
  }

  .course .right {
    margin-top: 0;
  }

  .course ul {
    margin-top: 30px;
  }

  .culture {
    padding-top: 155px;
  }

  .cooperate {
    padding-top: 152px;
  }

  .cooperate ul li {
    height: 110px;
  }

  .cooperate ul li:nth-child(6),
  .cooperate ul li:nth-child(7) {
    top: 110px;
  }

  .cooperate ul li:nth-child(8),
  .cooperate ul li:nth-child(8) {
    top: 220px;
  }

  .cooperate ul li:nth-child(10),
  .cooperate ul li:nth-child(11),
  .cooperate ul li:nth-child(12),
  .cooperate ul li:nth-child(13),
  .cooperate ul li:nth-child(14) {
    margin-top: 220px;
  }

  .cooperate ul .logo {
    top: -22%;
  }

  .contact {
    padding-top: 216px;
  }

  .contact ul {
    height: 360px;
  }

  .news {
    padding-top: 175px;
  }

  .news .bd ul li .jie {
    display: none;
  }

  .news .bd ul li .mo {
    display: none;
  }


  .news .bd ul {
    margin-top: 30px;
  }

  .cooperate ul li:nth-child(9) {
    top: 220px;
  }

  .honour #multipleColumn .bd ul li .ti {
    display: block;
  }

  .contact .ti {
    margin: 0px auto 42px;
  }

  .honour #multipleColumn .bd ul li .tu {
    width: 181px;
    height: 247px;
    box-sizing: border-box;
    padding: 26px;
    background: #fff url(../images/yy.png) no-repeat center;
    background-size: contain;
    margin: 0 auto;
  }

  .about ul li:nth-child(3) {
    right: 170px;
  }

}

.tableCell {
  height: 100vh !important;
}


@media(max-width:1366px) {
  .about .left p i {
    font-size: 36px;
    margin-bottom: 0;
  }

  .about .left p {
    font-size: 36px;
    line-height: 1;
  }

  .about .left {
    margin-left: 0;
    margin-top: 0;
    height: 270px;
  }

  .about {
    padding-top: 150px;
  }

  .about ul li:nth-child(4) {
    top: 142px;
  }

  .about ul li:nth-child(5) {
    top: 225px;
    right: 280px;
  }

  .about ul {
    height: 428px;
  }

  .course .left {
    width: 250px;
  }

  .course .right b {
    font-size: 36px;
    line-height: 1;
  }

  .course .right em {
    font-size: 36px;
    line-height: 1;
  }

  .course .right p {
    letter-spacing: 4px;
    color: #ffffff;
    margin: 18px 0 8px;
    font-size: 30px;
    line-height: 40px;
    font-weight: bold;
  }

  .course {
    padding-top: 150px;
  }

  .course ul {
    margin-top: 20px;
  }

  .culture .slideTxtBox .biao span {
    font-size: 30px;
    line-height: 1;
  }

  .honour {
    padding-top: 150px;
  }

  .honour .biaoti p {
    font-size: 30px;
  }

  .honour .biaoti h3 {
    font-size: 30px;
    margin-top: 0;
  }

  .honour #multipleColumn {
    margin-top: 0;
  }

  .cooperate .biaoti p {
    font-size: 30px;
  }

  .cooperate {
    padding-top: 150px;
  }

  .cooperate .biaoti h3 {
    font-size: 30px;
    margin-top: 0;
  }

  .cooperate ul {
    margin-top: 0;
  }

  .cooperate ul li {
    height: 70px;
    width: 19%;
  }



  .cooperate ul li:nth-child(6),
  .cooperate ul li:nth-child(7) {
    top: 70px;
  }

  .cooperate ul li:nth-child(8),
  .cooperate ul li:nth-child(9) {
    top: 140px;
  }

  .cooperate ul li:nth-child(7),.cooperate ul li:nth-child(9){
    right: 71px;
  }

  .cooperate ul li:nth-child(10),
  .cooperate ul li:nth-child(11),
  .cooperate ul li:nth-child(12),
  .cooperate ul li:nth-child(13),
  .cooperate ul li:nth-child(14) {
    margin-top: 140px;
  }

  .cooperate ul .logo {
    top: -52%;
    height: 81px;

  }

  .cooperate ul .logo {
    object-fit: contain;
  }

  .cooperate ul li img {
    min-width: 80%;
    min-height: 80%;
  }

  .section7.active .contact .center {
    width: 1180px;
  }

  .contact .dh {
    width: 581px;
    height: 66px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    position: relative;
    line-height: 66px;
    position: absolute;
    top: 270px;
    left: 50%;
    transform: translateX(-50%);
  }

  .contact ul li:nth-child(2),
  .contact ul li:nth-child(4) {
    right: 160px;
  }

  .news .biao span {
    font-size: 30px;
    line-height: 1;
  }

  .news .biao em {
    margin: 10px 0;
  }

  .news .biao h3 {
    font-size: 36px;
    line-height: 1;
  }

  .news .hd ul li {
    height: 42px;
  }

  .news .hd ul li a {
    line-height: 42px;
  }

  .news .hd {
    margin-top: 24px;
  }

  .news .biao {
    height: auto;
  }


  .news .bd ul li {
    width: 360px;
  }

  .news .bd ul {
    width: 1300px !important;
  }

  .news .bd ul li .tu {
    height: 236px !important;
  }

  .footer .er .tu {
    width: 99px;
    height: 99px;
    background-size: contain;
  }

  .footer .er .yy {
    height: 99px;
    width: auto;
  }

  .footer .er {
    width: 280px;
    height: 125px;
  }

  .footer .ly input {
    height: 40px;
  }

  .footer .ly #contant {
    height: 155px;
  }

  .culture .tit{
    display: none;
  }
}