#alert-pc-1 {
  position: fixed;
  z-index: 10000000;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(0);
  min-width: 100px;
  min-height: 40px;
  line-height: 40px;
  padding: 0 20px;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  font-size: 14px;
  text-align: center;
  transition: 0.5s;
  opacity: 0;
}

#alert-pc-1.shown {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}


/*空列表*/
.empty-box {
    text-align: center;  
    padding: 30px;
}



[class*="page-"] button {
  outline: none;
}

.qianru-inner button {
  outline: none;
}

[class*="page-"] button:focus {
  outline: none;
}

.qianru-inner button:focus {
  outline: none;
}

[class*="page-"] * {
  /* margin: 0;  */
}

/* 密码清除功能 */
.input-clearable-box {}

.img-clear-box {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  display: none;
}

.input-clearable-box:hover .img-clear-box {
  display: flex;
}

.img-clearable {
  width: 20px;
  cursor: pointer;
}




/*loading 开始*/

.w-loading-box {
  display: none;
}

#w-loading {
  display: block;
  position: absolute;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  color: white;
  background: #5fc4d6;
  background: rgba(0, 0, 0, .7);
  font-size: 1em;
  text-align: center;
  overflow: hidden;
  z-index: 9999;
}

.w-spinner {
  margin: 0 auto;
  width: 60px;
  height: 60px;
  position: relative;
  top: 40%;
}

.w-container1>div,
.w-container2>div,
.w-container3>div {
  width: 15px;
  height: 15px;
  background-color: #fff;
  border-radius: 100%;
  position: absolute;
  -webkit-animation: bouncedelay 1.2s infinite ease-in-out;
  animation: bouncedelay 1.2s infinite ease-in-out;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.w-spinner .w-spinner-container {
  position: absolute;
  width: 100%;
  height: 100%;
}

.w-container2 {
  -webkit-transform: rotateZ(45deg);
  transform: rotateZ(45deg);
}

.w-container3 {
  -webkit-transform: rotateZ(90deg);
  transform: rotateZ(90deg);
}

.w-circle1 {
  top: 0;
  left: 0;
}

.w-circle2 {
  top: 0;
  right: 0;
}

.w-circle3 {
  right: 0;
  bottom: 0;
}

.w-circle4 {
  left: 0;
  bottom: 0;
}

.w-container2 .w-circle1 {
  -webkit-animation-delay: -1.1s;
  animation-delay: -1.1s;
}

.w-container3 .w-circle1 {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}

.w-container1 .w-circle2 {
  -webkit-animation-delay: -0.9s;
  animation-delay: -0.9s;
}

.w-container2 .w-circle2 {
  -webkit-animation-delay: -0.8s;
  animation-delay: -0.8s;
}

.w-container3 .w-circle2 {
  -webkit-animation-delay: -0.7s;
  animation-delay: -0.7s;
}

.w-container1 .w-circle3 {
  -webkit-animation-delay: -0.6s;
  animation-delay: -0.6s;
}

.w-container2 .w-circle3 {
  -webkit-animation-delay: -0.5s;
  animation-delay: -0.5s;
}

.w-container3 .w-circle3 {
  -webkit-animation-delay: -0.4s;
  animation-delay: -0.4s;
}

.w-container1 .w-circle4 {
  -webkit-animation-delay: -0.3s;
  animation-delay: -0.3s;
}

.w-container2 .w-circle4 {
  -webkit-animation-delay: -0.2s;
  animation-delay: -0.2s;
}

.w-container3 .w-circle4 {
  -webkit-animation-delay: -0.1s;
  animation-delay: -0.1s;
}

@-webkit-keyframes bouncedelay {

  0%,
  80%,
  100% {
    -webkit-transform: scale(0);
  }

  40% {
    -webkit-transform: scale(1);
  }
}

@keyframes bouncedelay {

  0%,
  80%,
  100% {
    transform: scale(0);
    -webkit-transform: scale(0);
  }

  40% {
    transform: scale(1);
    -webkit-transform: scale(1);
  }
}


/*loading 结束*/