@charset "utf-8";
/* CSS Document */
@-webkit-keyframes cross-data {
  0% {
    left: 0%;
  }
  100% {
    left: 100%;
  }
}
@keyframes cross-data {
  0% {
    left: 0%;
  }
  100% {
    left: 100%;
  }
}
html,
body {
  background-color: #fff;
  max-width: 1920px;
  margin: 0 auto;
}

.page {
  min-width: 1208px;
}

.wrapper {
  width: 1208px;
}

.box-title {
  width: 100%;
  text-align: center;
  box-sizing: border-box;
  padding-top: 80px;
  font-size: 40px;
  color: #000;
  font-weight: bold;
  line-height: 40px;
}
.box-title span {
  color: #1325a5;
  position: relative;
  display: inline-block;
  background: linear-gradient(to top, #f6e002 12px, transparent 12px);
}

.box2 .list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 86px;
  height: 607px;
  background: url("../images/box2-bg.png") no-repeat center;
  flex-wrap: wrap;
}
.box2 .list .item:nth-child(1) {
  background: url("../images/box2-1.png") no-repeat center;
}
.box2 .list .item:nth-child(2) {
  background: url("../images/box2-2.png") no-repeat center;
}
.box2 .list .item:nth-child(3) {
  background: url("../images/box2-3.png") no-repeat center;
}
.box2 .list .item:nth-child(4) {
  background: url("../images/box2-4.png") no-repeat center;
}
.box2 .item {
  width: 457px;
  height: 256px;
  margin-bottom: 95px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.box2 .item:hover .content2 {
  left: 0;
}
.box2 .item .content1 {
  padding: 50px 40px;
  color: #000;
}
.box2 .item .content1 .t1 {
  font-size: 20px;
}
.box2 .item .content1 .t2 {
  font-size: 32px;
  font-weight: bold;
}
.box2 .item .content2 {
  position: absolute;
  left: -100%;
  top: 0;
  z-index: 10;
  width: 100%;
  height: 100%;
  background: #1325a5;
  padding: 10px 30px;
  box-sizing: border-box;
  transition: left 0.2s ease;
}
.box2 .item .content2 .t1 {
  width: 112px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  font-size: 20px;
  color: #f6e002;
  border: 1px solid #f6e002;
  border-radius: 30px;
  margin-bottom: 8px;
  margin-top: 20px;
}
.box2 .item .content2 .t2list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.box2 .item .content2 .t2list .t2 {
  font-size: 16px;
  color: #fff;
  min-width: 150px;
  position: relative;
  padding-left: 15px;
}
.box2 .item .content2 .t2list .t2::before {
  content: "";
  width: 5px;
  height: 5px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.box3 .language-tab {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 48px 0 37px;
}
.box3 .language-tab .tab {
  width: 140px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  border-radius: 25px;
  font-size: 24px;
  color: #000;
  background: #e8e8e8;
  cursor: pointer;
  transition: all 0.2s ease;
}
.box3 .language-tab .tab.active {
  background: #1325a5;
  color: #fff;
}
.box3 .language-content .language {
  display: flex;
  flex-direction: column;
  border-radius: 20px;
  overflow: hidden;
  display: none;
}
.box3 .language-content .language.show {
  display: block;
}
.box3 .language-content .language .course {
  display: flex;
  height: 100px;
  letter-spacing: 2px;
}
.box3 .language-content .language .course:last-child .title, .box3 .language-content .language .course:last-child .des {
  border-bottom: none;
}
.box3 .language-content .language .course .title {
  width: 202px;
  background: #f6e002;
  text-align: center;
  font-size: 22px;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px dashed #fff;
}
.box3 .language-content .language .course .des {
  flex: 1;
  background: #1325a5;
  font-size: 16px;
  color: #fff;
  display: flex;
  align-items: center;
  padding: 0 20px;
  line-height: 24px;
  border-left: 1px dashed #fff;
  border-bottom: 1px dashed #fff;
}
.box3 .btn {
  width: 300px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  background: #de2910;
  margin: 70px auto 0;
  border-radius: 25px;
  font-size: 24px;
  color: #fff;
  cursor: pointer;
}

.box4 .language-tab {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  margin: 63px 0 30px;
}
.box4 .language-tab .tab {
  height: 50px;
  min-width: 81px;
  line-height: 50px;
  text-align: center;
  border-radius: 25px;
  font-size: 24px;
  color: #000;
  cursor: pointer;
  transition: color 0.2s ease;
}
.box4 .language-tab .tab.active {
  color: #f6e002;
  background: url("../images/box4-tab.png") no-repeat center bottom;
}
.box4 .language-content .language {
  display: flex;
  flex-direction: column;
  border-radius: 15px;
  border: 1px solid #e8e8e8;
  overflow: hidden;
  display: none;
}
.box4 .language-content .language.show {
  display: block;
}
.box4 .language-content .language .course {
  display: flex;
  height: 60px;
  font-size: 22px;
  color: #000;
  background-color: #f9f9f9;
  border-bottom: 1px solid #e8e8e8;
}
.box4 .language-content .language .course:last-child {
  border: none;
}
.box4 .language-content .language .course:nth-child(odd) .des {
  background: linear-gradient(to right, rgba(246, 224, 2, 0.4) 33%, rgba(246, 224, 2, 0.1));
}
.box4 .language-content .language .course .title {
  width: 140px;
  background: #f6e002;
  display: flex;
  align-items: center;
  padding-left: 40px;
  letter-spacing: 2px;
}
.box4 .language-content .language .course .des {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.box4 .language-content .language .course .des.des10 span {
  width: 8.3333333333%;
}
.box4 .language-content .language .course .des.des10 span:nth-child(5), .box4 .language-content .language .course .des.des10 span:nth-child(6), .box4 .language-content .language .course .des.des10 span:nth-child(8) {
  width: 12.5%;
}
.box4 .language-content .language .course .des.des6 span {
  width: 16.6666666667%;
}
.box4 .language-content .language .course .des.des4 span {
  width: 25%;
}
.box4 .language-content .language .course .des.des2 span {
  width: 50%;
}
.box4 .language-content .language .course .des.fs16 {
  font-size: 16px;
}
.box4 .btn {
  width: 300px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  background: #de2910;
  margin: 70px auto 0;
  border-radius: 25px;
  font-size: 24px;
  color: #fff;
  cursor: pointer;
}

.box5 {
  margin-top: 80px;
  height: 623px;
  min-width: 1400px;
  background: url("../images/box5-bg.png") no-repeat center;
}
.box5 .box-title {
  padding-top: 95px;
}
.box5 .list {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 1400px;
}
.box5 .list .item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-top: 75px;
  width: 450px;
  color: #fff;
  cursor: pointer;
  transition: transform 0.2s ease;
}
.box5 .list .item:nth-child(odd) .title {
  background: #0f346b;
}
.box5 .list .item:nth-child(even) .title {
  background: #ffa812;
  color: #000;
}
.box5 .list .item:hover {
  transform: scale(1.1);
}
.box5 .list .item .title {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  font-weight: bold;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.box5 .list .item .title .num {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  font-size: 100px;
  color: rgba(255, 255, 255, 0.1);
  line-height: 175px;
}
.box5 .list .item .title .txt {
  font-size: 24px;
  line-height: 30px;
}
.box5 .list .item .des {
  padding-top: 35px;
  font-size: 16px;
  color: #000;
}

.box6 .form-container {
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  margin-top: 56px;
  padding-top: 43px;
  width: 100%;
  height: 134px;
  background: url("../images/form-bg.png") no-repeat center;
}
.box6 .form-container .form-item {
  width: 192px;
  height: 40px;
  line-height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background-color: #fff;
  margin-bottom: 0;
  margin-right: 8px;
  font-size: 14px;
  border-radius: 5px;
}
.box6 .form-container .form-item .form_name {
  padding-left: 25px;
  background: url("../images/form-icon1.png") no-repeat left center/17px 19px;
}
.box6 .form-container .form-item .form_phoneNo {
  padding-left: 25px;
  background: url("../images/form-icon2.png") no-repeat left center/16px 19px;
}
.box6 .form-container .form-item .kaptcha-code {
  padding-left: 25px;
  background: url("../images/form-icon3.png") no-repeat left center/16px 20px;
}
.box6 .form-container .form-phone {
  width: 295px;
  height: 40px;
  line-height: 40px;
  display: flex;
  justify-content: space-between;
  margin-bottom: 0;
  margin-right: 8px;
  border-radius: 5px;
  background-color: #fff;
  overflow: hidden;
}
.box6 .form-container .form-phone .form-item {
  width: 170px;
  margin: 0;
}
.box6 .form-container .form-phone .kaptcha-btn {
  width: 100px;
  height: 24px;
  line-height: 24px;
  margin: 8px;
  background-color: #aaa;
  color: #fff;
  font-size: 14px;
  border-radius: 12px;
}
.box6 .form-container .form-phone .kaptcha-btn:hover {
  background: #919191;
}
.box6 .form-container .select-country {
  position: relative;
  cursor: pointer;
}
.box6 .form-container .select-country .current {
  display: block;
  width: 100%;
  height: 100%;
  color: #333;
}
.box6 .form-container .select-country .list {
  position: absolute;
  top: -216px;
  left: 10px;
  z-index: 10;
  display: none;
  width: 172px;
  max-height: 228px;
  overflow: auto;
  color: #333;
  background-color: #fafafa;
}
.box6 .form-container .select-country .list .option {
  padding-left: 12px;
  line-height: 36px;
  text-align: left;
  cursor: pointer;
}
.box6 .form-container .select-country .list .option:hover {
  color: #fff;
  background-color: #f6e002;
}
.box6 .form-container .select-country .down {
  width: 14px;
  height: 8px;
  position: absolute;
  right: 15px;
  top: 50%;
  margin-top: -4px;
}
.box6 .form-container .select-country .down.active {
  transform: rotate(180deg);
}
.box6 .form-container .submit {
  width: 217px;
  height: 40px;
  line-height: 40px;
  background: #f6e002;
  color: #000;
  font-size: 18px;
  font-weight: bold;
  border-radius: 5px;
  position: relative;
  overflow: hidden;
}
.box6 .form-container .submit:hover {
  background: #c3b202;
}
.box6 .form-container .submit .light {
  position: absolute;
  width: 70px;
  height: 70px;
  top: -10px;
  left: -10px;
  transform: rotate(-75deg);
  background-image: linear-gradient(rgba(255, 255, 255, 0), white, rgba(255, 255, 255, 0));
  opacity: 0.6;
  -webkit-animation: 1s cross-data ease-in infinite normal;
          animation: 1s cross-data ease-in infinite normal;
}
.box6 .form-container .form-privacy {
  position: absolute;
  bottom: 5px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 12px;
  color: #fff;
}
.box6 .form-container .form-privacy .privacy-validate {
  margin-right: 5px;
}
.box6 .form-container .form-privacy a {
  color: #f6e002;
}

.box7 {
  margin: 66px auto 91px;
  width: 1223px;
  height: 630px;
  background: url("../images/map.png") no-repeat center;
  position: relative;
}
.box7 .img {
  width: 45px;
  height: 76px;
  position: absolute;
  background-image: url("../images/location.png");
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: 33px 54px;
  box-sizing: border-box;
  cursor: pointer;
  transition: background 0.2s ease;
}
.box7 .img:hover {
  background-image: url("../images/location-active.png");
  background-size: 45px 76px;
  z-index: 2;
}
.box7 .img.jnd {
  left: 104px;
  top: 80px;
}
.box7 .img.mg {
  top: 185px;
  left: 217px;
}
.box7 .img.xby {
  top: 198px;
  left: 529px;
}
.box7 .img.fg {
  top: 176px;
  left: 560px;
}
.box7 .img.yg {
  top: 118px;
  left: 548px;
}
.box7 .img.ydl {
  top: 204px;
  left: 600px;
}
.box7 .img.rs {
  top: 167px;
  left: 612px;
}
.box7 .img.hl {
  top: 123px;
  left: 590px;
}
.box7 .img.dg {
  top: 119px;
  left: 640px;
}
.box7 .img.rd {
  top: 52px;
  left: 624px;
}
.box7 .img.rls {
  top: 42px;
  right: 331px;
}
.box7 .img.hg {
  top: 202px;
  right: 186px;
}
.box7 .img.rb {
  top: 196px;
  right: 150px;
}
.box7 .img.xjp {
  bottom: 240px;
  right: 272px;
}
.box7 .img.mlxy {
  right: 230px;
  bottom: 230px;
}
.box7 .img.adly {
  right: 165px;
  bottom: 130px;
}
.box7 .img.xxl {
  right: 32px;
  bottom: 68px;
}
.box7 .name {
  font-size: 20px;
  line-height: 20px;
  color: #000;
  position: absolute;
  cursor: pointer;
}
.box7 .name:hover + .img {
  background-image: url("../images/location-active.png");
  background-size: 45px 76px;
  z-index: 2;
}
.box7 .name.jnd {
  top: 137px;
  left: 139px;
}
.box7 .name.mg {
  top: 240px;
  left: 252px;
}
.box7 .name.xby {
  top: 245px;
  left: 476px;
}
.box7 .name.fg {
  top: 198px;
  left: 527px;
}
.box7 .name.yg {
  top: 175px;
  left: 515px;
}
.box7 .name.ydl {
  top: 260px;
  left: 635px;
}
.box7 .name.rs {
  top: 224px;
  left: 648px;
}
.box7 .name.hl {
  top: 124px;
  left: 592px;
}
.box7 .name.dg {
  top: 176px;
  left: 675px;
}
.box7 .name.rd {
  top: 109px;
  left: 660px;
}
.box7 .name.rls {
  top: 98px;
  right: 278px;
}
.box7 .name.hg {
  top: 260px;
  right: 220px;
}
.box7 .name.rb {
  top: 253px;
  right: 120px;
}
.box7 .name.xjp {
  bottom: 239px;
  right: 306px;
}
.box7 .name.mlxy {
  bottom: 231px;
  right: 160px;
}
.box7 .name.adly {
  right: 95px;
  bottom: 130px;
}
.box7 .name.xxl {
  right: 68px;
  bottom: 65px;
}

.box8 .list {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.box8 .list .item {
  width: 340px;
  height: 527px;
  box-sizing: border-box;
  background: #f9f9f9;
  cursor: pointer;
  transition: transform 0.2s ease;
}
.box8 .list .item:nth-child(1) .top {
  background-image: url("../images/box8-1.png");
  background-size: 49px 51px;
}
.box8 .list .item:nth-child(2) .top {
  background-image: url("../images/box8-2.png");
  background-size: 48px 51px;
}
.box8 .list .item:nth-child(2) .content .item1 {
  height: 33.3333333333%;
}
.box8 .list .item:nth-child(3) .top {
  background-image: url("../images/box8-3.png");
  background-size: 44px 41px;
}
.box8 .list .item:hover {
  transform: translateY(-10px);
}
.box8 .list .item .top {
  font-size: 24px;
  color: #fff;
  font-weight: bold;
  width: 100%;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #2c53d2;
  background-position: right top;
  background-repeat: no-repeat;
  border-top-left-radius: 30px;
}
.box8 .list .item .content {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
  padding: 0 58px;
  text-align: center;
  height: 370px;
}
.box8 .list .item .content .item1 {
  width: 100%;
  height: 25%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-bottom: 1px solid #d9d9d9;
}
.box8 .list .item .content .item1:last-child {
  border-bottom: none;
}
.box8 .list .item .content .item1 .t1 {
  font-size: 18px;
  color: #1325a5;
}
.box8 .list .item .content .item1 .t2 {
  font-size: 14px;
  color: #8d8d8d;
}
.box8 .list .item .btn {
  width: 162px;
  height: 38px;
  line-height: 38px;
  text-align: center;
  border-radius: 20px;
  font-size: 14px;
  color: #000;
  margin: 0 auto;
  background: #f6e002;
}

.page .campus .box-title {
  padding-top: 80px;
}
.page .campus .site-list .item {
  box-shadow: 0 0 5px rgba(26, 66, 153, 0.21);
}
.page .campus .site-list .item.active {
  color: #1a4299;
  border-color: #1a4299;
}
.page .campus .site-list .item:hover {
  color: #1a4299;
}
.page .campus .tabs .tab:hover {
  color: #1a4299;
}
.page .campus .tabs .tab.active {
  background: #1a4299;
}
.page .campus .position .t1 {
  color: #1a4299;
}
.page .campus .position .form-container .form-code .kaptcha-btn {
  background: #1a4299;
  color: #fff;
}
.page .campus .position .form-container .form-code .kaptcha-btn:active {
  background: #132f6d;
}
.page .campus .position .form-container .submit {
  background: #1a4299;
  color: #fff;
}
.page .campus .position .form-container .submit:active {
  background: #132f6d;
}
