.mask {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    left: 0;
    top: 0;
    z-index: 30;
    display: none;
}

.confirmBox {
    width: 90%;
    position: fixed;
    left: 50%;
    top: 100px;
    z-index: 100;
    border-radius: .2rem;
    -moz-transform: translate(-50%, -100%);
    -ms-transform: translate(-50%, -100%);
    -webkit-transform: translate(-50%, -100%);
    transform: translate(-50%, -100%);
    -moz-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    opacity: 0;
}

.confirmMain {
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
}

.confirmBox .boxBtn {
    font-size: 18px;
    width: 100%;
    display: block;
    background: #ff6c06;
    font-size: 16px;
    color: #fff;
    padding: 10px 0;
    border-radius: 5px;
    text-align: center;
    margin: 10px;
}

.confirmBox.show {
    -moz-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    /*top: 4%;*/
    opacity: 1;
}

.confirmBox .confirmContent {
    font-size: 18px;
    color: #333;
}

/* .confirmBox .confirmContent span {
    color: #ff0000;
} */