/* 选框 */
.layer-global{
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: rgba(0,0,0,.3);
  z-index: 21000;
  display: flex;
  align-items: center;
  justify-content: center;
  /* display: none; */
}

.pop-up-global{
  width: 500px;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background-color: #fff;
  padding: 10px;
  box-sizing: border-box;
  position: relative;
  border-radius: 10px;
  color: #888;
}

.pop-up-global>img{
  width: 120px;
  height: 120px;
}

.pop-up-global>p{
  font-size: 20px;
  margin: 40px 0 30px;
}

.pop-up-global>.btns{
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.pop-up-global>.btns a{
  width: 120px;
  height: 50px;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.success-a{
  background-color: #67C23A;
}

.warning-a{
  background-color: #E6A23C;
}

.danger-a{
  background-color: #F56C6C;
}

.cancle-a{
  background-color: #C2C2C2;
}

.pop-up-global>.btns a:first-child{
  margin-right: 20px;
}

.close-global{
  cursor: pointer;
  position: absolute;
  top: 0;
  right: 12px;
  font-size: 30px;
  display: flex;
  color: #999;
}