.btn {
  cursor: pointer;
  transition: transform 0.2s ease;
}
.btn:hover {
  transform: translateY(-5px);
}

.box-title {
  width: 100%;
  padding-top: 50px;
  padding-bottom: 15px;
  text-align: center;
  box-sizing: border-box;
  font-size: 34px;
  color: #2e6df1;
  font-weight: bold;
  line-height: 40px;
  margin-bottom: 10px;
  background: url("../images/title1.png") no-repeat center bottom;
}

.box-des {
  font-size: 20px;
  color: #333333;
  text-align: center;
}

.box2 {
  background: #f5f8ff;
}
.box2 .list {
  height: 120px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 100px;
  box-sizing: border-box;
}
.box2 .list .item {
  display: flex;
  align-items: center;
}
.box2 .list .item .name {
  width: 70px;
  height: 70px;
  background: #2e6df1;
  border-radius: 50%;
  font-weight: bold;
  font-size: 28px;
  color: #fefb01;
  line-height: 70px;
  text-align: center;
}
.box2 .list .item .des {
  font-size: 16px;
  color: #333333;
  line-height: 24px;
  padding-left: 30px;
}

.box3 .content {
  height: 550px;
  background: #f5f8ff;
  border-radius: 16px;
  margin-top: 2px;
  padding: 35px 0 0 70px;
  box-sizing: border-box;
}
.box3 .content .content1 {
  box-sizing: border-box;
  height: 430px;
  border-left: 6px solid #2e6df1;
  padding-left: 20px;
  padding-top: 6px;
}
.box3 .content .content1 .title {
  width: 140px;
  height: 40px;
  background: #2e6df1;
  font-weight: bold;
  font-size: 22px;
  color: #fefb01;
  line-height: 40px;
  text-align: center;
  margin-left: -20px;
  margin-top: 16px;
  margin-bottom: 16px;
}
.box3 .content .content1 .des {
  font-size: 16px;
  color: #333333;
  line-height: 24px;
}
.box3 .content .content1 .des span {
  color: #2e6df1;
  padding-left: 20px;
  position: relative;
}
.box3 .content .content1 .des span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  background: #2e6df1;
}
.box3 .content .btn {
  width: 250px;
  height: 50px;
  background: #ff4740;
  border-radius: 25px;
  font-weight: 500;
  font-size: 20px;
  color: #fff;
  line-height: 50px;
  text-align: center;
  margin: 8px 440px 0;
}

.box4 {
  padding-bottom: 52px;
}
.box4 .list {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  padding-top: 25px;
}
.box4 .list .item {
  width: 310px;
  height: 406px;
  background: #ffffff;
  box-shadow: 0px 2px 6px 0px rgba(222, 222, 222, 0.76);
  text-align: center;
}
.box4 .list .item .img {
  width: 310px;
  height: 194px;
}
.box4 .list .item .t1 {
  font-weight: bold;
  font-size: 22px;
  color: #2e6df1;
  line-height: 60px;
  margin: 0 33px;
  border-bottom: 1px solid #dedede;
}
.box4 .list .item .t2 {
  font-size: 16px;
  color: #333333;
  line-height: 24px;
  padding-top: 20px;
  padding-bottom: 10px;
}
.box4 .list .item .btn {
  width: 160px;
  height: 40px;
  background: #ff4740;
  border-radius: 20px;
  font-weight: 500;
  font-size: 20px;
  color: #fff;
  line-height: 40px;
  text-align: center;
  margin: 0 auto;
}

.box5 {
  height: 604px;
  background: url("../images/box5-bg.png") no-repeat center;
}
.box5 .box-title {
  color: #fff;
  background-image: url("../images/title2.png");
}
.box5 .tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 33px;
  padding-top: 15px;
  padding-bottom: 30px;
}
.box5 .tabs .item {
  width: 420px;
  height: 60px;
  border-radius: 8px;
  border: 2px solid #fefb01;
  font-weight: 500;
  font-size: 26px;
  color: #fefb01;
  line-height: 60px;
  text-align: center;
  box-sizing: border-box;
  cursor: pointer;
  transition: all 0.2s ease;
}
.box5 .tabs .item.active {
  background: #fefb01;
  color: #306ff1;
}
.box5 .content {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 26px;
}
.box5 .content .item {
  width: 246px;
  height: 260px;
  background: #ffffff;
  border-radius: 16px;
  box-sizing: border-box;
  padding: 27px 0;
  text-align: center;
}
.box5 .content .item .img {
  width: 73px;
  height: 74px;
  margin: 0 auto;
}
.box5 .content .item .t1 {
  font-weight: bold;
  font-size: 22px;
  color: #2e6df1;
  line-height: 44px;
  border-bottom: 2px dashed #9dbbf8;
  margin: 8px 45px;
}
.box5 .content .item .t2 {
  font-size: 16px;
  color: #333333;
  line-height: 24px;
}
.box5 .content.show {
  display: flex;
}
.box5 .btn-flex {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin-top: 32px;
}
.box5 .btn-flex .btn {
  width: 200px;
  height: 50px;
  border-radius: 25px;
  font-weight: 500;
  font-size: 20px;
  line-height: 50px;
  text-align: center;
}
.box5 .btn-flex .btn.btn1 {
  background: #ff4740;
  color: #fff;
}
.box5 .btn-flex .btn.btn2 {
  background: #fff;
  color: #ff4740;
}

.box6 .box-title {
  padding-top: 45px;
}
.box6 .list {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 3px 2px;
  padding: 10px 100px 0;
}
.box6 .list .item {
  width: 222px;
  height: 49px;
  background: #edf2ff;
  line-height: 50px;
  text-align: center;
  font-size: 16px;
  color: #333;
}
.box6 .list .item:nth-child(4n+1) {
  background: #2e6df1;
  color: #fefb01;
}
.box6 .list .item:nth-child(-n+4) {
  font-size: 18px;
}

.box7 .box-title {
  padding-top: 45px;
}
.box7 .list {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 3px 2px;
  padding: 12px 100px 52px;
}
.box7 .list .item {
  width: 222px;
  height: 49px;
  background: #edf2ff;
  line-height: 50px;
  text-align: center;
  font-size: 16px;
  color: #333;
}
.box7 .list .item:nth-child(-n+4) {
  background: #2e6df1;
  color: #fefb01;
  font-size: 18px;
}

.box8 {
  background: url("../images/box8-bg.png") no-repeat center;
}
.box8 .form-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 120px;
}
.box8 .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;
}
.box8 .form-container .form-item input {
  font-size: 16px;
  background-color: #fff;
  background-repeat: no-repeat;
  padding-left: 30px;
  background-position: left center;
}
.box8 .form-container .form-item .form_name {
  background-image: url("../images/box8-1.png");
  background-size: 21px 24px;
}
.box8 .form-container .form-item .form_phoneNo {
  background-image: url("../images/box8-2.png");
  background-size: 17px 24px;
  background-position: 3px center;
}
.box8 .form-container .form-item .kaptcha-code {
  background-image: url("../images/box8-3.png");
  background-size: 20px 25px;
}
.box8 .form-container .form-code {
  width: 300px;
  height: 48px;
  line-height: 48px;
  display: flex;
  justify-content: space-between;
  margin-right: 45px;
  margin-bottom: 0;
  border-radius: 24px;
  background-color: #fff;
  overflow: hidden;
}
.box8 .form-container .form-code .form-item {
  width: 180px;
  margin: 0;
  border: none;
  padding-right: 0;
}
.box8 .form-container .form-code .kaptcha-code {
  border: none;
}
.box8 .form-container .form-code .kaptcha-btn {
  width: 120px;
  height: 24px;
  margin: 13px 0;
  line-height: 24px;
  background-color: #fff;
  color: #1657da;
  font-size: 16px;
  font-weight: bold;
  border-left: 1px solid #1657da;
  border-radius: 0;
  transition: none;
}
.box8 .form-container .form-code .kaptcha-btn:active {
  color: #0d327d;
}
.box8 .form-container button.submit {
  width: 200px;
  height: 48px;
  line-height: 48px;
  background: #ff4740;
  color: #fff;
  font-size: 20px;
  border-radius: 24px;
  font-weight: 500;
  transition: none;
}
.box8 .form-container button.submit:active {
  background: #ff160d;
}

.box9 {
  height: 829px;
  background: url("../images/box9-bg.jpg") no-repeat center;
}
.box9 .box-title {
  padding-top: 40px;
}
.box9 .content {
  width: 1060px;
  height: 680px;
  background: #ffffff;
  border-radius: 16px;
  margin: 15px auto;
  box-sizing: border-box;
  padding: 25px 44px 30px;
}
.box9 .content .t1 {
  font-size: 16px;
  color: #333333;
  line-height: 24px;
}
.box9 .content .books {
  margin: 25px 0 18px;
  height: 150px;
  background: url("../images/box9-books.png") no-repeat center;
}
.box9 .content .t2 {
  width: 200px;
  height: 33px;
  background: #2e6df1;
  font-weight: 500;
  font-size: 22px;
  color: #fefb01;
  line-height: 33px;
  text-align: center;
  margin-bottom: 10px;
}
.box9 .content .t3 {
  font-size: 16px;
  color: #333333;
  line-height: 24px;
  padding-left: 10px;
}
.box9 .content .content1 {
  width: 950px;
  height: 273px;
  background: #edf2ff;
  border-radius: 8px;
  margin: 10px;
  padding: 0px 55px;
  display: flex;
  justify-content: space-evenly;
  box-sizing: border-box;
}
.box9 .content .content1 .left {
  font-size: 16px;
  color: #333333;
  line-height: 32px;
  padding-top: 65px;
  margin-right: 60px;
}
.box9 .content .content1 .box9-swiper {
  width: 450px;
}
.box9 .content .content1 .box9-swiper .item {
  display: flex;
  align-items: center;
  justify-content: center;
}
.box9 .content .content1 .box9-swiper .swiper-button {
  width: 36px;
  height: 36px;
}
.box9 .content .content1 .box9-swiper .swiper-button::after {
  content: "";
}
.box9 .content .content1 .box9-swiper .swiper-button-prev {
  background: url("../images/box9-prev.png") no-repeat center;
}
.box9 .content .content1 .box9-swiper .swiper-button-next {
  background: url("../images/box9-next.png") no-repeat center;
}

.page .campus .box-title {
  padding-top: 45px;
  padding-bottom: 15px;
}
.page .campus .site-list .item {
  box-shadow: 0 0 5px rgba(46, 109, 241, 0.21);
}
.page .campus .site-list .item.active {
  color: #2e6df1;
  border-color: #2e6df1;
}
.page .campus .site-list .item:hover {
  color: #2e6df1;
}
.page .campus .tabs .tab:hover {
  color: #2e6df1;
}
.page .campus .tabs .tab.active {
  background: #2e6df1;
}
.page .campus .position .t1 {
  color: #2e6df1;
}
.page .campus .position .form-container .form-code .kaptcha-btn {
  background: #ff4740;
  color: #fff;
}
.page .campus .position .form-container .form-code .kaptcha-btn:active {
  background: #ff160d;
}
.page .campus .position .form-container .submit {
  background: #ff4740;
  color: #fff;
}
.page .campus .position .form-container .submit:active {
  background: #ff160d;
}