/*遮罩*/
.shadow {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 997;
    background-color: #000;
    background-color: rgba(0, 0, 0, 0);
    display: none;
}

.shadowBox {
    z-index: 999;
    position: absolute;
    width: 360px;
    height: 210px;
    left: 50%;
    top: 50%;
    margin-left: -180px;
    margin-top: -105px;
    text-align: center;
    background: #fff;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    border-radius: 5px;
    text-align: left;
    padding: 9px 20px;

}

.shadowBox > button {
    cursor: pointer;
    padding: 9px 15px;
    text-align: right;
    border: none;
    color: #fff;
    border-radius: 5px;
    background: rgb(0, 157, 226);
    position: absolute;
    right: 0;
    margin: 60px 40px 0 0;
    box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1);
}

.shadowBox > span {
    margin-top: 30px;
    display: block;
    height: 30px;
    font-size: 18px;
    line-height: 30px;
    color: #303133;
}

.shadowBox > p {
    color: #606266;
    font-size: 16px;
    padding: 9px 15px;
    height: 24px;
    margin: 0;
    line-height: 24px;
}