/* 其他页面的tab分页 */
.sub_banner {
  position: relative;
  overflow: hidden;
}

@keyframes scaleAnim {
  0% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

.sub_banner>img {
  width: 100%;
  height: auto;
  object-fit: cover;
  animation: scaleAnim 5s ease forwards;
}

.sub_banner .pc_img {
  display: block;
}

.sub_banner .m_img {
  display: none;
}

.other_nav {
  width: 100%;
  height: 73px;
  background: #F6F9FB;
  padding: 15px 0;
  border-bottom: 1px solid #EEEEEE;
}

.other_nav .wrapper {
  position: relative;
  height: 44px;
  width: 100%;
  overflow: hidden;
  margin: 0 auto;
}

.other_nav .wrapper .scroller {
  position: unset;
  width: 100%;
  overflow-x: scroll;
  overflow-y: hidden;
}

.other_nav .wrapper.wrapper_img .scroller li a span {
  display: inline-block;
  width: 26px;
  height: auto;
  margin-right: 6px;
}

.other_nav .wrapper.wrapper_img .scroller li a span img {
  width: 100%;
  height: auto;
  display: inline-block;
}

.other_nav .wrapper.wrapper_img .scroller li a span img+img {
  display: none;
}

.other_nav .wrapper.wrapper_img .scroller li.active {
  background: #F81111;
}

.other_nav .wrapper.wrapper_img .scroller li.active a {
  color: #fff;
}

.other_nav .wrapper.wrapper_img .scroller li.active a span img {
  display: none;
}

.other_nav .wrapper.wrapper_img .scroller li.active a span img+img {
  display: inline-block;
}

.other_nav .wrapper .scroller {
  position: unset;
  width: 100%;
}

.other_nav .wrapper .scroller ul {
  width: 100%;
  display: flex;
  justify-content: left;
  align-items: center;
}

.other_nav .wrapper .scroller li {
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin-right: 20px;
  background-color: #fff;
  border-radius: 3px 3px 3px 3px;
}

.other_nav .wrapper .scroller li a {
  letter-spacing: 1px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 26px;
  width: 100%;
  height: 100%;
  line-height: 44px;
  margin: 0;
  font-size: 16px;
  color: #000000;
}

.other_nav .wrapper .scroller li.active {
  background: #F81111;
}

.other_nav .wrapper .scroller li.active a {
  color: #fff;
}

@media screen and (max-width: 768px) {
  .other_nav .wrapper .scroller li {
    width: 140px;
    flex-shrink: 0;
  }
}

@media screen and (max-width: 767px) {

  /* .other_nav .wrapper .scroller li{
    width: unset;
  } */
  .other_nav {
    width: 100%;
    position: unset;
    height: 2.2rem;
    padding: 0;
  }

  .other_nav .safe_width {
    padding: 0;
  }

  .other_nav .wrapper {
    height: 2.2rem;
    width: 100%;
  }

  .other_nav .wrapper .scroller {
    width: auto;
  }

  .other_nav .wrapper .scroller ul {
    width: auto;
  }

  .other_nav .wrapper .scroller ul li {
    width: auto;
  }

  .other_nav .wrapper .scroller ul li a {
    width: auto;
    padding:0 1rem;
  }

  .other_nav .wrapper .scroller ul li a span {
    width: 1.35rem;
    margin-right: 0.15rem;
  }

  .other_nav .wrapper .scroller {
    position: absolute;
    width: 100%;
  }

  .other_nav .wrapper .scroller ul {
    width: 100%;
    justify-content: unset;
  }

  .other_nav .wrapper .scroller li {
    height: 2.2rem;
    /* width: calc(100% / 3); */
    border-radius: 0;
    border: none;
    flex: unset;
    float: left;
    margin-right: 0;
    background: #F6F9FB;
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }

  .other_nav .wrapper .scroller li a {
    width: 100%;
    padding: 0;
    font-size: 0.7rem;
    line-height: 2.1rem;
  }

  .other_nav .wrapper .scroller li.active {
    border-radius: 0;
  }


}