.notice_popup{
    .rc-dialog {
        bottom: 50%;
    }
}
.rc-dialog-wrap.notice_popup  {
    z-index: 111050;
}
.notice-container {
    width: 300px;
    z-index: 2;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    padding: .66rem .20rem .30rem;
    border-radius: .04rem;
    background: #fff;
    font-size: 0.16rem;
    box-sizing: border-box;
    .center {
        position: absolute;
        left: 50%;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
    }
    .notice-icon {
        background: pink;
        width: .72rem;
        height: .72rem;
        top: .16rem;
        background: url('./notice.svg') no-repeat;
        background-size: contain;
    }
    .notice-title {
        font-size:22px;
        color:#3a4247;
        margin: .28rem 0 0;
    }
    .notice-content {
        position: relative;
        .notice-msg {
            font-size:16px;
            color:#6b7175;
            text-indent: 2em;
            max-height: 1.28rem;
            overflow: scroll;
            word-break: break-all;
        }
        &.canScroll {
            .topModal,.bottomModal {
                position: absolute;
                background: url('./mod.svg') no-repeat;
                width: 100%;
                height: .25rem;
                opacity: 0;
                z-index: 1;
            }
            .topModal {
                top: -1px;
                margin-left: -8px;
            }
            .bottomModal {
                bottom: 0;
                transform: rotate(180deg);
            }
            &.canShowTopModal {
                .topModal {
                    transition: opacity .2s;
                    opacity: 1;                             
                }
            }
            &.canShowBottomModal{
                .bottomModal {
                    opacity: 1;
                    transition: opacity .2s;
                }
            }
        }    
    }
    .notice-title,.notice-button {
        text-align: center;
    }

    .notice-button {
        display: inline-block;
        height: .42rem;
        width: 1.2rem;
        box-sizing: border-box;
        padding: 0 12px;
        line-height: .42rem;
        border-radius: 24px;
        margin-top: 20px;
        margin-left: .12rem;
        overflow: hidden;
        white-space:nowrap;
        text-overflow: ellipsis;
        box-sizing: border-box;
        text-align: center;
    }
    .not-show-button{
        color:#1695f0;
        border:1px solid #1695f0;
        box-sizing: border-box;
        margin-left: 4px;
    }
    .i-know-button{
        color: #fff;
        background: #1695f0;
    }
    &.lang-en {// 英文时按钮变成上下显示
        .notice-button {
            display: block;
            width: 100%;
            box-sizing: border-box;
            margin-left: 0;
        }
    }
}