@charset "UTF-8";
.tips_wrap,
.tips_wrap2{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: none;
}
.tips{
    width: 5.64rem;
    display:none;
    height: 2.6rem;
    position: absolute;
    top: 5rem;
    left: 0.95rem;
    background: #fff;
    border-radius:0.1rem;
    opacity: 0;
    -webkit-transform: translate(0,-15px);
    transform: translate(0,-15px);
    -webkit-animation: show 0.3s linear forwards;animation: show 0.3s linear forwards;
}
.tips .newnote,
.tips .newnote2{
    font-family: PingFangSC-Semibold;
    font-size: 0.32rem;
    color: #010101;
    width: 100%;
    height: 1.48rem;
    line-height: 1.48rem;
    text-align: center;
    display: block;
}
.tips .btncancle{
    font-family: PingFangSC-Regular;
    font-size: 0.32rem;
    color: #013365;
    display: block;
    float: left;
    width: 50%;
    text-align: center;
}
.tips .btngo,
.tips .btngo2{
    font-family: PingFangSC-Regular;
    font-size: 0.32rem;
    color: #E9B20A;
    display: block;
    float: left;
    width: 50%;
    text-align: center;
}
.tips .newsdiv{
    width: 100%;
    height: 1.08rem;
    line-height: 1.08rem;
    border-top: 1px solid #F6F6F6;
}

@-webkit-keyframes show {
    100% {
        -webkit-transform: translate(0, 0) scale(1) rotate(0) skew(0);
        transform: translate(0, 0) scale(1) rotate(0) skew(0);
        opacity: 1;
    }
}
@keyframes show {
    100% {
        -webkit-transform: translate(0, 0) scale(1) rotate(0) skew(0);
        transform: translate(0, 0) scale(1) rotate(0) skew(0);
        opacity: 1;
    }
}
