.banner {
  position: relative;
}

.banner_box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.banner_title {
  color: #fff;
  font-size: 48px;
  font-weight: 700;
}

.tab_box {
  box-shadow: 0 0 10px rgba(18, 75, 139, 0.14);
  margin-bottom: 100px;
}

.tab_list_scroll {
  overflow-x: scroll;
}

/* 整个滚动条 */
.tab_list_scroll::-webkit-scrollbar {
  width: 0px;
  /* 滚动条的宽度 */
  height: 0px;
  /* 滚动条的高度 */
}

/* 滚动条轨道 */
.tab_list_scroll::-webkit-scrollbar-track {
  background: transparent;
  cursor: pointer;
  /* 轨道颜色 */
}

/* 滚动条滑块 */
.tab_list_scroll::-webkit-scrollbar-thumb {
  background: rgba(225, 225, 225, 0.3);
  /* 滑块颜色 */
  border-radius: 10px;
  /* 滑块圆角 */
}

/* 滚动条滑块的hover状态 */
.tab_list_scroll::-webkit-scrollbar-thumb:hover {
  background: rgba(225, 225, 225, 0.7);
  cursor: pointer;
  /* 滑块hover颜色 */
}

.tab_list {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 50px;
}

.tab_item {
  flex: 1;
  line-height: 100px;
  text-align: center;
  font-weight: 700;
  font-size: 24px;
  color: #0D1012;
  cursor: pointer;
  white-space: nowrap;
}

.tab_item:hover {
  color: #124B8B;
  /* background-color: rgba(225, 225, 225, 0.3); */
}

.tab_item_show {
  color: #124B8B;
  position: relative;
}

.tab_item_show::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 3px;
  background-color: #124B8B;
}

.module {
  margin-bottom: 100px;
}

.module_item {
  display: none;
  padding: 100px 0;
}

.module_item_show {
  display: block;
}

.module_item_cont {
  width: 1300px;
  margin: 0 auto;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 130px;
}

.module_item_img {
  flex: 1;
}

.module_item_cont_box {
  flex: 1;
}

.module_item_title {
  display: flex;
  align-items: center;
  margin-bottom: 40px;
}

.module_item_title .icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 40px;
}

.module_item_title span {
  font-weight: 700;
  font-size: 48px;
  color: #0D1012;
}

.module_item_title_tip {
  font-size: 18px;
  color: #0D1012;
  line-height: 34px;
}

.module .module_item:nth-child(2n+1) {
  background: url(../image/applyDemo/bg.png) no-repeat;
  background-size: cover;
  background-position: center;
}

@media screen and (max-width: 1300px) {
  .module_item_cont {
    width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
  }
}

@media screen and (max-width: 1100px) {
  .module_item_cont {
    gap: 60px;
  }
}

/* 手机样式 */
@media screen and (max-width: 900px) {
  .banner {
    height: 4.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .banner img {
    width: auto;
    height: 100%;
  }

  .banner_title {
    font-size: 0.58rem;
  }

  .tab_list {
    gap: 0.7rem;
  }

  .tab_box {
    margin-bottom: 0;
  }

  .tab_item {
    margin-top: 0.44rem;
    line-height: 0.8rem;
    font-size: 0.34rem;
  }

  .module {
    margin-bottom: 2rem;
  }

  .module .module_item .module_item_cont {
    flex-direction: column-reverse
  }

  .module .module_item:nth-child(2n+1) .module_item_cont {
    flex-direction: column;
  }

  .module_item {
    padding: 1.1rem 0;
  }

  .module_item_cont {
    padding: 0 0.4rem;
    gap: 0.5rem;
  }

  .module_item_title {
    margin-bottom: 0.58rem;
  }

  .module_item_title .icon {
    width: 0.6rem;
    height: 0.6rem;
    margin-right: 0.5rem;
  }

  .module_item_title span {
    font-size: 0.58rem;
  }

  .module_item_title_tip {
    font-size: 0.29rem;
    line-height: 0.55rem;
  }
}