/* 火狐浏览器滚动条样式 */
* {
  box-sizing: border-box;
}

/* 不支持`::-webkit-scrollbar-*`的浏览器 */
@supports not selector(::-webkit-scrollbar) {

  /* 火狐浏览器滚动条样式 */
  * {
    scrollbar-color: #aaa;
    scrollbar-width: thin;
  }
}

/* 谷歌浏览器滚动条样式 */
::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}

::-webkit-scrollbar-thumb {
  background-color: #aaa;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background-color: #888;
}

html,
body {
  height: 100%;
  overflow: hidden;
}

.warp-cont {
  position: fixed;
  position: -ms-device-fixed;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
}

img {
  display: block;
}


.nuxt-progress {
  background: #fff !important;
}


.el-message {
  z-index: 9999 !important;
}


.scrollbar::-webkit-scrollbar-thumb {
  /*滚动条里面小方块*/
  border-radius: 5px;
  background-color: #cbb58f;
  background-image: -webkit-linear-gradient(45deg,
      rgba(255, 255, 255, 0.2) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, 0.2) 50%,
      rgba(255, 255, 255, 0.2) 75%,
      transparent 75%,
      transparent);
}

.scrollbar::-webkit-scrollbar-track {
  /*滚动条里面轨道*/
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
  background: #ededed;
  border-radius: 5px;
}
.van-picker-column__item{
  color: #7b89a1  !important;
}
.van-picker-column__item--selected{
  color: #3f80f5 !important;
}
