body {
    box-sizing: border-box;
    width: 100vw;
    height: 100vh;
    background-color: #F2F2F2;
}

.container {
    margin: 0;
    padding: 0;
    max-width: 100% !important;
    height: 100%;
}

.navbar {
    height: 10vh;
    padding: 0;
}

#banner {
    margin: 0;
    padding: 0;
    position: relative;
    text-align: center;
    color: #FFFFFF;
    height: 34vh;
}

#banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

#text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
}

#text h1 {
    font-size: 40px;
    line-height: 49px;
    padding: 0 5px;
}

#text .description {
    font-size: 20px;
    line-height: 24px;
    padding: 0 5px;
}

#body {
    height: 56vh;
    padding: 40px 0 30px;
}

#body .img-wrapper {
    flex-direction: column;
    gap: 30px;
}

#body .img-wrapper>div {
    margin: 0 auto;
    flex-direction: column;
    background: #FFF 0% 0% no-repeat padding-box;
    box-shadow: 0px 3px 6px #00000029;
    border-radius: 34px;
}

#body .qr-title {
    text-align: center;
    font-size: 40px;
    line-height: 49px;
    padding: 25px 0 10px;
}

#body .qr-subtitle {
    text-align: center;
    font-size: 25px;
    line-height: 30px;

}

#body img {
    width: 50%;
    height: auto;
    object-fit: cover;
    padding: 15px 0 30px;
    border-radius: 30px;
    margin: auto;
}

span.footer {
    font-size: 14px;
    line-height: 16px;
    color: #4E4E4E;
    max-width: 200px;
    margin: auto;
    padding: 15px 0 30px;
    flex-wrap: wrap;
    justify-content: flex-start;
}

img.logo-beian {
    width: 1rem !important;
    margin: 0 !important;
    padding: 0 !important;
}

span.footer a {
    text-decoration: none;
    color: #4E4E4E;
}

span.footer a:hover {
    color: #000000;
}

@media only screen and (min-width: 992px) {

/*
    html {
        overflow: hidden;
    }
*/
    #body .img-wrapper {
        flex-direction: row;
    }

    #body img {
        max-height: 36vh;
        max-width: 36vh;
    }

    span.footer {
        margin: auto auto 0;
        padding: 0;
        max-width: 100%;
        justify-content: center;
    }

    span.pv-tab {
        padding-right: 1.5rem;
    }

}