@charset "UTF-8";
@-webkit-keyframes scale {
  0% {
    transform: scale(1);
  }
  25% {
    transform: scale(1.1);
  }
  50% {
    transform: scale(1);
  }
  75% {
    transform: scale(1.1);
  }
}
@keyframes scale {
  0% {
    transform: scale(1);
  }
  25% {
    transform: scale(1.1);
  }
  50% {
    transform: scale(1);
  }
  75% {
    transform: scale(1.1);
  }
}
@-webkit-keyframes crossData {
  0% {
    left: 0%;
  }
  100% {
    left: 100%;
  }
}
@keyframes crossData {
  0% {
    left: 0%;
  }
  100% {
    left: 100%;
  }
}
.scale {
  overflow: hidden;
  -webkit-animation: scale 2s linear infinite;
          animation: scale 2s linear infinite;
}
.scale .light {
  content: "";
  display: block;
  position: absolute;
  width: 80px;
  height: 60px;
  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: crossData 1s ease-in infinite;
          animation: crossData 1s ease-in infinite;
}

.btn {
  width: 250px;
  height: 50px;
  background: #fd801f;
  border-radius: 25px;
  font-weight: 500;
  font-size: 20px;
  color: #fff;
  line-height: 50px;
  text-align: center;
  margin: 30px auto 0;
  cursor: pointer;
  transition: transform 0.2s ease;
}
.btn:hover {
  transform: translateY(-5px);
}

.box-title {
  width: 100%;
  padding-top: 55px;
  padding-bottom: 20px;
  text-align: center;
  box-sizing: border-box;
  font-size: 34px;
  color: #333;
  font-weight: bold;
  line-height: 40px;
  margin-bottom: 25px;
  position: relative;
}
.box-title::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 40px;
  height: 4px;
  background: #fd801f;
}

.box2 .content {
  width: 1200px;
  height: 100px;
  background: #f8f9fb;
  border-radius: 16px;
  font-size: 16px;
  color: #333;
  box-sizing: border-box;
  padding: 15px 45px 15px 60px;
}
.box2 .content span {
  font-size: 24px;
  color: #276cf7;
  font-weight: bold;
}

.box3 {
  padding-bottom: 60px;
}
.box3 .box-title {
  padding-top: 45px;
}
.box3 .list {
  display: flex;
  align-items: flex-end;
}
.box3 .list .item {
  width: 240px;
  transition: transform 0.2s ease;
}
.box3 .list .item:hover {
  transform: translateY(-5px);
}
.box3 .list .item:nth-child(1) {
  background: rgba(247, 75, 75, 0.1);
  height: 360px;
}
.box3 .list .item:nth-child(1) .name {
  background: #f74b4b;
}
.box3 .list .item:nth-child(2) {
  background: rgba(71, 200, 212, 0.1);
  height: 320px;
}
.box3 .list .item:nth-child(2) .name {
  background: #47c8d4;
}
.box3 .list .item:nth-child(3) {
  background: rgba(255, 148, 66, 0.1);
  height: 280px;
}
.box3 .list .item:nth-child(3) .name {
  background: #ff9442;
}
.box3 .list .item:nth-child(4) {
  background: rgba(80, 177, 243, 0.1);
  height: 240px;
}
.box3 .list .item:nth-child(4) .name {
  background: #50b1f3;
}
.box3 .list .item:nth-child(5) {
  background: rgba(81, 124, 233, 0.1);
  height: 200px;
}
.box3 .list .item:nth-child(5) .name {
  background: #517ce9;
}
.box3 .list .item .name {
  width: 100%;
  height: 110px;
  font-weight: 500;
  font-size: 20px;
  color: #fff;
  line-height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 16px 16px 0 0;
}
.box3 .list .item .des {
  font-size: 14px;
  color: #666;
  line-height: 24px;
  padding: 18px 20px;
  text-align: justify;
}

.box4 {
  height: 675px;
  background: #f5f8ff;
}
.box4 .box-title {
  padding-top: 40px;
}
.box4 .list {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.box4 .list .item {
  width: 285px;
  height: 490px;
  box-shadow: 0px 4px 10px 1px rgba(209, 227, 255, 0.53);
  border-radius: 16px;
  padding: 18px 28px;
  box-sizing: border-box;
  transition: transform 0.2s ease;
}
.box4 .list .item:hover {
  transform: translateY(-5px);
}
.box4 .list .item:nth-child(1) {
  background: linear-gradient(to bottom, rgba(230, 239, 255, 0.5), #fff);
}
.box4 .list .item:nth-child(1) .title {
  color: #276cf7;
  background: url("../images/box4-1.png") no-repeat right center;
  border-bottom: 1px solid rgba(81, 124, 233, 0.52);
}
.box4 .list .item:nth-child(1) .t1::before {
  border-left-color: #276cf7;
}
.box4 .list .item:nth-child(2) {
  background: linear-gradient(to bottom, rgba(255, 225, 225, 0.5), #fff);
}
.box4 .list .item:nth-child(2) .title {
  color: #f74b4b;
  background: url("../images/box4-2.png") no-repeat right center;
  border-bottom: 1px solid rgba(247, 75, 75, 0.52);
}
.box4 .list .item:nth-child(2) .t1::before {
  border-left-color: #f74b4b;
}
.box4 .list .item:nth-child(3) {
  background: linear-gradient(to bottom, rgba(236, 232, 255, 0.5), #fff);
}
.box4 .list .item:nth-child(3) .title {
  color: #806ac1;
  background: url("../images/box4-3.png") no-repeat right center;
  border-bottom: 1px solid rgba(128, 106, 193, 0.52);
}
.box4 .list .item:nth-child(3) .t1::before {
  border-left-color: #806ac1;
}
.box4 .list .item:nth-child(4) {
  background: linear-gradient(to bottom, rgba(255, 243, 218, 0.5), #fff);
}
.box4 .list .item:nth-child(4) .title {
  color: #ff9442;
  background: url("../images/box4-4.png") no-repeat right center;
  border-bottom: 1px solid rgba(247, 148, 23, 0.52);
}
.box4 .list .item:nth-child(4) .t1::before {
  border-left-color: #ff9442;
}
.box4 .list .item .title {
  font-weight: bold;
  font-size: 24px;
  padding: 8px 0;
  margin-bottom: 15px;
}
.box4 .list .item .t1 {
  font-weight: 500;
  font-size: 16px;
  color: #333;
  padding-left: 15px;
  margin-top: 10px;
  position: relative;
}
.box4 .list .item .t1::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  border: 7px solid transparent;
}
.box4 .list .item .t2 {
  font-weight: 400;
  font-size: 16px;
  color: #666;
  padding-left: 15px;
}
.box4 .list .item .btn {
  width: 200px;
  height: 40px;
  background: #fd801f;
  border-radius: 6px;
  line-height: 40px;
  margin-top: 25px;
  font-size: 18px;
}

.box5 .list {
  display: flex;
  justify-content: space-between;
  padding-top: 4px;
}
.box5 .list .item {
  width: 285px;
  height: 340px;
  background: rgba(39, 108, 247, 0.05);
  overflow: hidden;
}
.box5 .list .item:nth-child(1) .top {
  background: url("../images/box5-1.png") no-repeat center;
}
.box5 .list .item:nth-child(2) .top {
  background: url("../images/box5-2.png") no-repeat center;
}
.box5 .list .item:nth-child(3) .top {
  background: url("../images/box5-3.png") no-repeat center;
}
.box5 .list .item:nth-child(4) .top {
  background: url("../images/box5-4.png") no-repeat center;
}
.box5 .list .item:hover .top {
  transform: scale(1.1);
}
.box5 .list .item .top {
  width: 285px;
  height: 150px;
  font-weight: 500;
  font-size: 20px;
  color: #fff;
  line-height: 35px;
  padding-left: 18px;
  box-sizing: border-box;
  display: flex;
  align-items: flex-end;
  transition: transform 0.3s ease;
}
.box5 .list .item .des {
  font-size: 14px;
  color: #666;
  line-height: 24px;
  padding: 22px 35px;
  text-align: justify;
}

.box6 .tabs {
  display: flex;
  align-items: flex-end;
  height: 64px;
  padding-top: 5px;
}
.box6 .tabs .item {
  width: 400px;
  height: 50px;
  border-radius: 16px 16px 0px 0px;
  text-align: center;
  font-weight: bold;
  font-size: 24px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: height 0.2s ease;
}
.box6 .tabs .item:nth-child(1) {
  background: #47c8d4;
}
.box6 .tabs .item:nth-child(2) {
  background: #50b1f3;
}
.box6 .tabs .item:nth-child(3) {
  background: #517ce9;
}
.box6 .tabs .item.active {
  background: linear-gradient(-50deg, #ff9441, #fd801e);
  height: 64px;
}
.box6 .content {
  display: none;
  flex-wrap: wrap;
  align-content: flex-start;
  height: 312px;
}
.box6 .content.show {
  display: flex;
}
.box6 .content .item {
  width: 300px;
  height: 52px;
  line-height: 52px;
  text-align: center;
  font-size: 16px;
  color: #333;
  background-color: #fff;
  border-right: 1px solid #517ce9;
  border-bottom: 1px solid #517ce9;
  box-sizing: border-box;
}
.box6 .content .item:nth-child(4n+1) {
  border-left: 1px solid #517ce9;
}
.box6 .content .item-title {
  font-weight: bold;
  font-size: 20px;
  color: #276cf7;
  background-color: #f5f8ff;
}

.box7 {
  width: 1200px;
  height: 228px;
  background: url("../images/box7-bg.png") no-repeat center;
  margin-top: 30px;
  margin-bottom: 60px;
}
.box7 .form-container {
  display: flex;
  justify-content: center;
  width: 100%;
  padding-top: 140px;
}
.box7 .form-container .form-item {
  width: 200px;
  height: 48px;
  line-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  margin-right: 45px;
  margin-bottom: 0;
  font-size: 16px;
  border-radius: 24px;
  border-color: #2c82e9;
  padding-left: 18px;
  overflow: hidden;
  box-sizing: border-box;
}
.box7 .form-container .form-item input {
  font-size: 16px;
  background-color: #fff;
  background-repeat: no-repeat;
  padding-left: 30px;
  background-position: left center;
}
.box7 .form-container .form-item .form_name {
  background-image: url("../images/box7-1.png");
  background-size: 21px 24px;
}
.box7 .form-container .form-item .form_phoneNo {
  background-image: url("../images/box7-2.png");
  background-size: 17px 24px;
  background-position: 3px center;
}
.box7 .form-container .form-item .kaptcha-code {
  background-image: url("../images/box7-3.png");
  background-size: 20px 25px;
}
.box7 .form-container .form-code {
  width: 300px;
  display: flex;
  justify-content: space-between;
  margin-right: 45px;
  margin-bottom: 0;
  border-radius: 24px;
  background-color: #fff;
  overflow: hidden;
}
.box7 .form-container .form-code .form-item {
  width: 180px;
  margin: 0;
  border: none;
  padding-right: 0;
}
.box7 .form-container .form-code .kaptcha-code {
  border: none;
}
.box7 .form-container .form-code .kaptcha-btn {
  width: 120px;
  height: 24px;
  margin: 13px 0;
  line-height: 24px;
  background-color: #fff;
  color: #2c82e9;
  font-size: 16px;
  font-weight: bold;
  border-left: 1px solid #2c82e9;
  border-radius: 0;
  transition: none;
}
.box7 .form-container .form-code .kaptcha-btn:active {
  color: #11519e;
}
.box7 .form-container button.submit {
  width: 200px;
  height: 48px;
  line-height: 48px;
  background: #fd801f;
  color: #fff;
  font-size: 20px;
  border-radius: 24px;
  font-weight: 500;
  transition: none;
}
.box7 .form-container button.submit:active {
  background: #e76602;
}

.box8 {
  height: 450px;
  background: #f5f8ff;
}
.box8 .list {
  display: flex;
  padding-top: 12px;
}
.box8 .list .item {
  width: 600px;
  height: 250px;
  color: #fff;
  box-sizing: border-box;
  padding-left: 55px;
  position: relative;
  overflow: hidden;
}
.box8 .list .item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  transition: transform 0.3s ease;
}
.box8 .list .item:first-child::before {
  background: url('../images/box8-1.png') no-repeat center;
}
.box8 .list .item:last-child::before {
  background: url('../images/box8-2.png') no-repeat center;
}
.box8 .list .item:hover::before {
  transform: scale(1.1);
}
.box8 .list .item .t1 {
  font-weight: bold;
  font-size: 22px;
  padding-top: 52px;
  padding-bottom: 15px;
  position: relative;
  z-index: 2;
}
.box8 .list .item .t2 {
  font-weight: 500;
  font-size: 18px;
  line-height: 30px;
  position: relative;
  z-index: 2;
}
.box8 .list .item .t3 {
  font-size: 14px;
  line-height: 25px;
  position: relative;
  z-index: 2;
}

.page .campus .box-title {
  padding-top: 60px;
}
.page .campus .site-list .item {
  box-shadow: 0 0 5px rgba(39, 108, 247, 0.21);
}
.page .campus .site-list .item.active {
  color: #276cf7;
  border-color: #276cf7;
}
.page .campus .site-list .item:hover {
  color: #276cf7;
}
.page .campus .tabs .tab:hover {
  color: #276cf7;
}
.page .campus .tabs .tab.active {
  background: #276cf7;
}
.page .campus .position .t1 {
  color: #276cf7;
}
.page .campus .position .form-container .form-code .kaptcha-btn {
  background: #fd801f;
  color: #fff;
}
.page .campus .position .form-container .form-code .kaptcha-btn:active {
  background: #e76602;
}
.page .campus .position .form-container .submit {
  background: #fd801f;
  color: #fff;
}
.page .campus .position .form-container .submit:active {
  background: #e76602;
}