/* 全局样式 */
* {
    -webkit-user-drag: none;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body,
html {
    width: 100%;
    height: 100%;
    margin: 0;
    font-family: Arial, sans-serif;
}

/* 桌面主容器 */
.desktop {
    color: #fff;
    width: 100%;
    height: 100%;
    font-size: 0;
    /* 清除间隙 */
    overflow: hidden;
    position: relative;
    background-color: #000;
    /* 备用背景色 */
}

/* 背景图片 */
.fixed-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 内容容器 */
.content {
    padding: 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;

}

/* 顶部样式 */
.top {
    padding: 0px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1;
}

.logo {
    width: 20vw;
}


/* 联系方式容器 */
.desktop .contact {
    display: flex;
    gap: 20px;
    /* 按钮间距 */
}

.contact-btn {
    width: 10vw;
    cursor: pointer;
}



.downloadArea {
    display: flex;
    justify-content: end;
    z-index: 1;
}

.text-img {
    width: 25%;
    margin-right: 10px;
}

/* 二维码区域 */
.content .qrcode-box {
    display: inline-block;
    width: 220px;
    height: 220px;
    background: #bf2954;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
}

/* 二维码内部容器 */
.inside {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* 二维码图片显示 */
#qrcode img {
    visibility: visible !important;
    width: 100%;
    /* 自动适配容器宽度 */
    height: 100%;
    /* 自动适配容器高度 */
    object-fit: contain;
    /* 确保图片不被裁切 */
}