.desktop {
    color: #fff;
    width: 100%;
    height: 100%;

    font-size: 0px;
    overflow: hidden;
}

* {
    -webkit-user-drag: none
}


#qrcode img {
    visibility: inherit;
}

.desktop .fixed-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: fill;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
    background: #000;
}

.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;
}


.desktop .contact img {
    width: 8vw;
    margin-right: 20px;
    cursor: pointer;
}

.bottom {
    position: absolute;
    left: 5vw;
    bottom: 15vw;
}

.qrcode-wrapper {
    position: relative;
    display: inline-block;
}

.qrcodeimg {
    width: 85%;
    display: block;
}

.downloadArea {
    position: absolute;
    bottom: 3.6vw;
    left: 1.6vw;
    display: flex;
}

.content .qrcode-box {
    display: inline-block;
    background: #fff;
    padding: 5px;
    box-sizing: border-box;
    border-radius: 10px;
}


.inside {
    border-radius: 10px;
    background: #fff;
    height: 100%;
}


.btn-right {
    margin-left: 2vw;
}



#qrcode img {
    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%;
}

.btn-box .btn:hover {
    transform: translateY(-4px) scale(1.05)
}