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

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

.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 {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
}

.top {
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    z-index: 999;
}

.logo {
    width: 12vw;
    max-width: 200px;
}

.desktop .contact {
    display: flex;
    align-items: center;
}

.contact-btn {
    width: 9vw;
    max-width: 140px;
    margin-right: 1.5vw;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.contact-btn.last {
    margin-right: 0;
}

.contact-btn:hover {
    transform: scale(1.05);
}

.bottom {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    overflow: hidden;
    padding-bottom: 0;
    position: relative;
}

.left-section {
    flex: 1;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 10;
}

.title {
    width: 90%;
    max-width: 800px;
    margin-bottom: 10vh;
}

.right-section {
    flex: 1;
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    position: relative;
}

.image-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.slg {
    position: absolute;
    bottom: -6vw;
    height: 92vh;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    transition: opacity 1s ease-in-out;
}

.image-container .image-fade {
    opacity: 0;
}

.image-container .image-fade.active {
    opacity: 1;
}

.downloadArea {
    position: absolute;
    bottom: 3vh;
    right: 3vw;
    z-index: 20;
    display: flex;
    align-items: center;
}

.downloadArea .qr-wrap {
    display: flex;
    align-items: center;
}

.code-container {
    position: relative;
    display: flex;
    align-items: center;
    margin-right: 10px;
}

.qrPic {
    height: 123px;
    width: auto;
    display: block;
}

.qrcode-box {
    position: absolute;
    left: 30px;
    top: -4px;
    width: 130px;
    height: 130px;
    background: transparent;
    padding: 0;
    border-radius: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.inside {
    width: 86%;
    height: 86%;
    background: #fff;
    border-radius: 4px;
    display: flex;
    justify-content: center;
    align-items: center;
}

#qrcode {
    width: 100%;
    height: 100%;
}

#qrcode img {
    width: 100%;
    height: 100%;
    display: block;
}

.text-info {
    margin-left: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #fff;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
}

.main-text {
    font-size: 1.6vw;
    font-weight: bold;
    color: #fceea7;
    margin-bottom: 6px;
    line-height: 1.2;
}

.sub-text {
    font-size: 0.75vw;
    line-height: 1.3;
    opacity: 0.95;
    max-width: 25vw;
}