* {
  padding: 0;
  margin: 0;
}

body {
  background: #F2F5FA;
}

input, button {
  border: none;
  outline: none;
}

input {
  border-radius: 0; /* 移除圆角 */
  -webkit-appearance: none; /* 禁用iOS默认样式 */
}

ul li {
  list-style: none;
}

.header {
  background: #161616;
}

.ellipsis {
  white-space: nowrap; /* 不换行 */
  overflow: hidden; /* 超出部分隐藏 */
  text-overflow: ellipsis; /* 显示省略号 */
}

.swiper-button-next{
  position: absolute;
  width: 52px;
  height: 52px;
  top: 40%;
  right: -72px;
  background-image:url("../image/swiper_right.png");
  background-size: 100%;
}

.swiper-button-prev{
  position: absolute;
  width: 52px;
  height: 52px;
  top: 40%;
  left: -72px;
  background-image:url("../image/swiper_left.png");
  background-size: 100%;
}

.swiper-button-next::after,
.swiper-button-prev::after {
  content: none;
}

.swiper-pagination-bullet {
  width: 32px;
  height: 6px;
  background: #FFFFFF;
  opacity: 1;
  border-radius: 0;
}

.swiper-pagination-bullet-active {
  background: #FA6400;
}

::-webkit-scrollbar {
  display: none;
}

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

  .swiper-button-prev, .swiper-button-next {
    display: none;
  }
  .van-popup__close-icon {
    display: none;
  }

  .header_m {
    height: 50px;
  }


  .swiper-pagination-bullet {
    width: 10px;
  }
}