* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
ul,
li,
ol {
  list-style: none;
}
.fl {
  float: left;
}
.fr {
  float: right;
}
/*  去掉图片低测默认的3像素空白缝隙，或者用display：block也可以*/
img {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  vertical-align: middle;
}
a {
  text-decoration: none;
}
.center {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
[v-cloak] {
  display: none !important;
}
.wrap {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99;
}
.wrap .popUp {
  z-index: 99;
}
.u-mask {
  position: absolute;
  width: 100%;
  height: 100%;
  /* top: 0;
      left: 0;
      right: 0;
      bottom: 0; */
  background-color: #000;
  opacity: 0.85;
  /* z-index: 1; */
}
.loding {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 1rem;
  height: 1rem;
  margin: -0.5rem 0 0 -0.5rem;
  z-index: 999;
  animation: lodingmove 1.5s infinite linear;
  /* background-color: #25110c; */
}
@keyframes lodingmove {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* 禁止长按全选 */
*:not(input, textarea) {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
}
#app .verify,
#app .icon_copy_b,
#app .region,
#app .phonesListBox {
  cursor: pointer;
}
