.wx-box-mask{
    width: 100%;
    height: 100vh;
    /* background: red; */
  	background:rgba(255,255,255,0.8);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9998;
    display: none;
}
.wx-box{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    -moz-transform: translate(-50%,-50%);
    -webkit-transform: translate(-50%,-50%);
    -o-transform: translate(-50%,-50%);
    margin: 0;
    z-index: 9999;
    background: #fff;
    border: solid 1px #d8d8d8;
    font-size: 12px;
    padding: 15px;
    /* display: none; */
}
.wx-box .wx-box-head{
    font-size: 12px;
    text-align: left;
    line-height: 12px;
    height: 16px;
    position: relative;
    color: #000;
}
.wx-box .wx-box-close{
    width: 16px;
    height: 16px;
    position: absolute;
    right: 0;
    top: 0;
    color: #999;
    text-decoration: none;
    font-size: 16px;
}
.wx-box .wx-box-main{
    padding: 15px 10px;
    min-height: 200px;
    text-align: center;
}
.wx-box .wx-box-foot{
    font-size: 12px;
    text-align: left;
    line-height: 22px;
    color: #666;
}