.desktop {
    color: #fff;
    width: 100%;
    height: 100%;
    font-size: 0px;
    overflow: hidden;
}

* {
    -webkit-user-drag: none;
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

.desktop .fixed-bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    object-fit: cover;
}

.desktop .fixed-bg * {
    object-fit: cover;
}

.content {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
}

.top {
    padding: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.desktop .contact {
    display: flex;
}

.slg {
    position: relative;
    top: -2vw;
    max-width: 80%;
    max-height: 100%;
    left: 50%;
    transform: translateX(-50%);
}

.rightPic {
    position: relative;
    left: 20vw;
    top: 1vw;
    width: 55vw;
    height: 100%;
    object-fit: contain;
    pointer-events: none;
}

.bottom {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    overflow: hidden;
    position: relative;
}

.main-left {
    height: 100%;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.slg-wrap {
    position: absolute;
    margin-top: 4vh;
    margin-bottom: 3vh;
}


.downloadArea {
    position: absolute;
    left: 50%;
    bottom: 4vh;
    transform: translateX(-50%);
    margin: 0;
    display: inline-block;
    width: clamp(200px, 15vw, 260px);
}


.content .downloadArea .qrcode-box {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-75%, -110%);
    width: 61%;
    height: auto;
    background: #ffffff;
    padding: 10px;
    border-radius: 12px;
    box-sizing: border-box;
    aspect-ratio: 1 / 1;
}

.inside {
    border-radius: 12px;
    background: #ffffff;
    height: 100%;
    padding: 0 !important;
}

.downloadArea #qrcode {
    width: 100% !important;
    height: 100% !important;
    padding: 0 !important;
}

#qrcode img {
    width: 100% !important;
    height: 100% !important;
    visibility: visible !important;
}

.btn-box {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: space-around;
}

.btn-box .btn {
    display: inline-block;
    border: none;
    outline: none;
    cursor: pointer;
    transition: all .3s ease;
    background: transparent;
    font-size: 24px;
}

.btn-box img {
    width: 100%;
}