.notice-bg, .notice{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
}
.notice-bg{
    background-color: rgba(0, 0, 0, 0.3);
}
.notice{
    width: 580px;
    height: 400px;
    background-color: #fff;
    border-radius: 10px;
    margin: 0 auto;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 20px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}
.notice-header{
    font-size: 16px;
    font-weight: bold;
    color: #f30;
}
.notice-body .title{
    /* width: 88px;display: inline-block; */
}
.notice-body p{
    line-height: 1.6;
    font-size: 14px;
}
.notice-footer{
    height: 36px;
}
.notice-footer .btn{
    width: 126px;
    height: 34px;
    line-height: 34px;
    text-align: center;
    border: 1px solid #f60;
    color: #f60;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s;
}
.notice-footer .btn:hover{
    background-color: #f60;
    color: #fff;
}