@charset "UTF-8";

.cookieBar{
    position: fixed;
    // background: rgba(0,0,0,.8);
    background-image: linear-gradient(rgb(0,0,0,.9),rgb(40,40,40,.9),rgb(0,0,0,.9));
    bottom: 0;
    width: 100%;
    font-size: 14px;
    display: flex;
    padding: 25px 30px;
    color: #fff;
    z-index: 999999;
    font-weight: 600;
    .tips{
        padding-right: 20px;
        a{
            color: #00a0e8;
        }
    }
    .btnGroup{
        display: flex;
        align-items: center;
        a{
            display: flex;
            align-items: center;
            padding: 0 40px;
            font-size: 14px;
            border-radius: 0;
            height: 35px;
            &:first-child{
                margin-right: 40px;
            }
            &.anviz-btn-cancel{
                background: #dedede;
                border-color: #dedede;
                color: #333;
            }
        }
    }
}

@media (max-width:850px){
    .cookieBar{
        flex-direction: column;
        .btnGroup{
            justify-content: space-between;
            margin-top: 10px;
            a{
                padding: 20px 0;
                margin: 0;
                width: 35%;
                justify-content: center;
            }
        }
    }
}