.bg {
    width: 10rem;
    height: 100vh;
    background: url(./image/bg.png) no-repeat;
    background-size: auto;
    position: relative;
}

.content {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.banner {
    width: 80%;
}

.title {
    font-size: .8rem;
    color: #333;
    font-weight: bold;
    margin-bottom: .5rem;
}

.tip {
    width: 65%;
    font-size: .45rem;
    text-align: center;
    color: #777;
    margin-bottom: 1.2rem;
    font-weight: 400;
}

.btns {
    width: 65%;

    .btn {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: .3rem 0;
        background: #FFC03E;
        margin-bottom: .5rem;
        border-radius: .12rem;
    }

    .tab {
        width: .5rem;
        margin-right: .25rem;
        margin-top: .05rem;
    }

    .btn_text {
        font-size: .48rem;
        font-weight: bold;
        color: #533C0D;
    }
}

.popupVideo {
    width: 100%;
    height: 100vh;
    background: rgba(39, 39, 39, 0.3);
    /* background: url(./image/bg3.png) no-repeat; */
    /* background-size: 100% auto; */
    position: absolute;
    top: 0;
    left: 0;
    z-index: 9;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;

    .bg2 {
        width: 62.5%;
        background: #fff;
        z-index: 99;
        margin: 0 auto;
        margin-bottom: .8rem;
        padding: .15rem;
        border-radius: .5rem;
    }

    .video {
        width: 100%;
        display: block;
        margin: 0 auto;
        border-radius: .4rem;
    }

    .close {
        width: .8rem;
    }

}