/* 轮播图 */
.banner {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
}

.wrapper {
  width: 100%;
  height: 100vh;
  position: relative;
}

.wrapper .contain {
  height: 100vh;
}

/* 5张图片叠加到一块 */
.wrapper .contain img {
  width: 100%;
  height: 100%;
  height: 100vh;
  position: absolute;
  left: 0;
  top: 0;
  display: none;
}

.wrapper .contain img:nth-of-type(1) {
  display: block;
}

/* 小圆点 */
.wrapper .btn {
  width: 150px;
  display: flex;
  justify-content: space-around;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 10px;
  z-index: 100;
}

.wrapper .btn span {
  display: block;
  width: 15px;
  height: 15px;
  border: 3px solid white;
  border-radius: 50%;
}

/* 左右箭头 */
.wrapper a {
  position: absolute;
  top: 35%;
}

.wrapper a:nth-of-type(1) {
  left: 160px;
}

.wrapper a:nth-of-type(2) {
  right: 160px;
}

.left,
.right {
  display: block;
}

.left-active,
.right-active {
  display: none;
}

.wrapper a:nth-of-type(1):hover .left {
  display: none;
}

.wrapper a:nth-of-type(1):hover .left-active {
  display: block;
}

.wrapper a:nth-of-type(2):hover .right {
  display: none;
}

.wrapper a:nth-of-type(2):hover .right-active {
  display: block;
}

.wrapper .btn .active {
  background-color: red;
}

@media only screen and (max-width: 768px) {
  .wrapper {
    height: 25rem;
  }

  .wrapper .contain {
    position: relative;
    top: 86px;
    height: calc(100% - 86px);
  }

  .wrapper .contain img {
    width: 100%;
    height: 100%;
  }

  /* 左右箭头 */
  .wrapper a {
    display: none;
  }

  /* 小圆点 */
  .wrapper .btn {
    width: 150px;
    display: flex;
    justify-content: space-around;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 23rem;
    z-index: 100;
  }
}

/* 轮播图 */

/* 新闻 */

.news {
  width: 100%;
  background-color: #f8f8fe;
}

.news-contain {
  width: 100%;
  max-width: 1600px;
  /* 设置内容宽度的最大值 */
  margin: 0 auto;
  /* 居中内容 */
  padding: 30px 0 64px;
}

.news .title {
  text-align: center;
}

.news .title img {
  max-width: 490px;
  height: auto;
  margin-bottom: 40px;
}

.news .content {
  display: flex;
}

.news .content .left {
  display: flex;
}

.news .content .left .box {
  width: 510px;
  margin-right: 35px;
}

.news .content .left .box .left-img {
  width: 100%;
  height: 400px;
}

.news .content .left .box .left-img img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* 裁剪 */
}

.news .content .left .box .title {
  padding: 0 45px;
  text-align: left;
  font-size: 24px;
  color: #292626;
  margin: 30px 0;
  display: block;
}

.news .content .left .box .title:hover {
  text-decoration: underline;
}

.news .content .left .box .cont {
  padding: 0 45px;
  font-size: 14px;
  color: #9b9b9b;
}

.news .content .left .box .tip {
  padding: 0 45px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 44px;
}

.news .content .left .box .tip .section {
  font-size: 16px;
  color: #e1414d;
}

.news .content .left .box .tip img {
  vertical-align: middle;
}

.news .content .left .box .tip .time {
  font-size: 14px;
  color: #cbcbcb;
}

.news .content .right .box {
  display: flex;
  align-items: center;
  padding-right: 5px;
  padding-bottom: 32px;
  border-bottom: 1px solid #cbcbcb;
  margin-top: 33px;
}

.news .content .right .box:first-child {
  margin-top: 0;
}

.news .content .right .box:last-child {
  border-bottom: none;
}

.news .content .right .box .right-img {
  width: 270px;
  height: 180px;
  margin-right: 22px;
}

.news .content .right .box .right-img img {
  width: 270px;
  height: 180px;
  object-fit: cover; /* 裁剪 */
}

.news .content .right .box .title {
  padding-right: 25px;
  text-align: left;
  font-size: 16px;
  color: #292626;
}

.news .content .right .box .cont {
  text-align: left;
  font-size: 14px;
  color: #9b9b9b;
  margin: 20px 0 30px;
}

.news .content .right .box .more {
  text-align: left;
  font-size: 14px;
  color: #9b9b9b;
  cursor: pointer;
}

.news .content .right .box .more:hover {
  text-decoration: underline;
}

@media only screen and (max-width: 768px) {
  .news {
    max-width: 768px;
    /* 设置内容宽度的最大值 */
    margin: 0 auto;
    /* 居中内容 */
    /* padding: 0 10px; */
  }

  .news .title img {
    max-width: 375px;
    height: auto;
    margin-bottom: 20px;
  }

  .news .content {
    display: block;
  }

  .news .content .left {
    display: block;
  }

  .news .content .left .box {
    width: 90%;
    margin: 0 auto;
  }

  .news .content .left .box .left-img {
    width: 100%;
    height: 400px;
  }

  .news .content .left .box .left-img img {
    width: 100%;
    height: 400px;
  }

  .news .content .right .box {
    flex-direction: column;
    width: 90%;
    margin: 0 auto;
    margin-top: 33px
  }

  .news .content .right .box:first-child {
    margin-top: 33px;
  }

  .news .content .right .box .right-img {
    text-align: center;
    margin-bottom: 10px;
  }

  .news .content .right .box .right-img img {
    text-align: center;
  }
}

/* 新闻 */

/*校园介绍*/
.school {
  width: 100%;
}

.school-contain {
  padding: 50px 0;
  max-width: 1920px;
  margin: 0 auto;
}

.school-contain .title {
  text-align: center;
  margin-bottom: 50px;
}

.school-contain .title img {
  max-width: 768px;
}

.school-contain .content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.school-contain .content .box {
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 200px;
  height: auto;
  max-height: 345px;
  width: calc(25% - 10px);
  margin: 5px;
  position: relative;
  overflow: hidden;
}

.school-contain .content .box:nth-child(1),
.school-contain .content .box:nth-child(5) {
  margin-left: 0;
}

.school-contain .content .box:nth-child(4),
.school-contain .content .box:nth-child(8) {
  margin-right: 0;
}

.school-contain .content .box:last-child::after {
  content: none;
}

.school-contain .content .box .cont {
  position: relative;
  z-index: 3;
  width: 100%;
  height: 100%;
}

.school-contain .content .box .cont .cont-wrap {
  position: absolute;
  bottom: 0;
  padding: 10px 0;
  z-index: 3;
  width: 100%;
}

.school-contain .content .box:hover .cont {
  height: 100%;
  background-color: rgba(0, 0, 0, 0.65);
}

.school-contain .content .box .cont .title {
  font-weight: 500;
  font-size: 1.5rem;
  color: #ffffff;
  margin-bottom: 8px;
  display: block;
  text-align: center;
  cursor: pointer;
}

.school-contain .content .box .cont .title:hover {
  text-decoration: underline;
}

.school-contain .content .box .cont .desc {
  font-size: 0.875rem;
  color: #ffffff;
  text-align: center;
}

.school-contain .content img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.school-contain .content .more-jump-btn {
  width: 100%;
  height: 100%;
  display: block;
  position: relative;
}

.school-contain .content .more-jump-btn:hover {
  background-color: rgba(0, 0, 0, 0.65);
}

.school-contain .content .more-jump-btn p {
  left: 50%;
  bottom: 10%;
  transform: translateX(-50%);
  font-weight: 500;
  font-size: 18px;
  color: #ffffff;
  z-index: 2;
  position: absolute;
}

.school-contain .content .more-jump-btn p:hover {
  text-decoration: underline;
}

@media only screen and (max-width: 768px) {
  .school-contain .title img {
    width: 375px;
    height: auto;
    margin-bottom: 20px;
  }

  .school-contain .content {
    display: block;
  }

  .school-contain .content .box {
    width: 100%;
    margin-right: 0px;
    margin-left: 0px;
    margin-bottom: 10px;
  }

  .school-contain .content .box .cont {
    background-color: transparent;
    opacity: 1;
  }

}

/*校园介绍*/

/* 集团发展 */
.devlop {
  width: 100%;
}

.devlop-contain {
  padding: 50px 0;
  max-width: 1920px;
  margin: 0 auto;
  position: relative;
}

.devlop-contain .title {
  text-align: center;
  margin-bottom: 50px;
}

.devlop-contain .title img {
  max-width: 100%;
}

.devlop-contain .devlop-section {
  padding: 98px 30px;
  max-width: 1660px;
  margin: 0 auto;
  display: flex;
  flex-wrap: nowrap;
  overflow-x: hidden;
  cursor: pointer;
  box-sizing: border-box;
  position: relative;
}

.devlop-section-line {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #cbcbcb;
  top: 13.8rem;
  left: 0;
  z-index: 1;
  position: absolute;
}

.devlop-contain .devlop-item {
  width: 20.375rem;
  margin: 0 2.5rem;
  flex-shrink: 0;
}

.devlop-contain .devlop-item:hover {}

.devlop-contain .devlop-item:last-child {
  margin-right: 0;
}

.devlop-contain .devlop-item .devlop-time {
  font-size: 4rem;
  margin-left: 2.25rem;
  color: #f56a74;
  font-weight: bold;
}

.devlop-contain .devlop-item .devlop-point {
  width: 2.25rem;
  height: 2.25rem;
  background-image: url("../imgs/home/devlop-circle.png");
  background-size: cover;
  position: relative;
  margin-top: 1.3125rem;
  left: 4.0625rem;
  position: relative;
  z-index: 2;
}

.devlop-contain .devlop-item .devlop-point::after {
  content: " ";
  position: absolute;
  width: 2px;
  height: 300%;
  left: 1.0625rem;
  top: 1rem;
  background-color: #e1414d;
  z-index: 2;
}

.devlop-contain .devlop-item .devlop-info {
  width: 100%;
  padding: 2.1875rem 1.875rem;
  margin-top: 2.1875rem;
  border-radius: 4px;
  box-shadow: 0px 8px 40px 1px #e8e3e3;
  box-sizing: border-box;
}

.devlop-contain .devlop-item .devlop-info-item {
  display: flex;
  justify-content: space-between;
  margin-top: 1.875rem;
}

.devlop-contain .devlop-item .devlop-info-item:first-child {
  margin-top: 0;
}

.devlop-contain .devlop-item .devlop-month {
  color: #434040;
  font-size: 1rem;
  height: 1.5rem;
  line-height: 1.5rem;
  font-weight: bold;
}

.devlop-contain .devlop-item .devlop-event {
  color: #9b9b9b;
  font-size: 1rem;
  width: 12rem;
  line-height: 1.25rem;
  position: relative;
}

.devlop-contain .devlop-item .devlop-event::before {
  content: " ";
  position: absolute;
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  border: 0.1rem solid #e1414d;
  background-color: #fff;
  z-index: 3;
  left: -1.75rem;
  top: 0.1rem;
}

.devlop-contain .devlop-item .devlop-event::after {
  content: " ";
  position: absolute;
  width: 2px;
  height: calc(100% + 1.875rem);
  left: -1.375rem;
  top: 0.1rem;
  background-color: #e1414d;
  z-index: 2;
}

.devlop .devlop-contain .last-devlop-info-item ::after {
  content: none;
}

.devlop .devlop-contain .devlop-scroll {
  width: 5.625rem;
  height: 0.5rem;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 2rem;
  border-radius: 10px;
  background-color: rgba(225, 65, 77, 0.1);
}

.devlop .devlop-contain .devlop-scroll .devlop-scroll-inner {
  height: 100%;
  border-radius: 10px;
  background-color: rgba(245, 106, 116, 1);
  cursor: pointer;
}

/* 集团发展 */