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

html,
body {
    width: 100%;
    height: 100%;
    background: #000000;
}

body {
    overflow: hidden;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
    user-select: none;
    -webkit-user-select: none;
    -webkit-user-drag: none;
}

.desktop {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    color: #fff;
    background: #000000 url("../images/desktop/bg.js") no-repeat top center / cover;
    font-family: "PingFang SC", "Microsoft YaHei", "Hiragino Sans GB", sans-serif;
}

/* 1920×1080 设计舞台，JS 按 min(宽比,高比) 缩放居中，任何窗口比例不破版 */
.content {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 1920px;
    height: 1080px;
    transform: translate(-50%, -50%) scale(var(--pageScale, 1));
    transform-origin: center center;
}

.cooperationBtn,
.customerBtn,
.officialGroupBtn,
.statsDownload {
    cursor: pointer;
}

/* ===== 顶部：logo + 联系入口条 ===== */
.top {
    position: relative;
    width: 100%;
    height: 134px;
}

.logo {
    position: absolute;
    left: 50px;
    top: 38px;
    width: 307px;
}

.pillBar {
    position: absolute;
    right: 44px;
    top: 38px;
    width: 902px;
}

.pillImg {
    width: 100%;
}

/* btn.js 是三个胶囊+在线人数的合并图，用透明层做点击区 */
.zone {
    position: absolute;
    top: 0;
    height: 100%;
}

.zone.customerBtn {
    left: 0.5%;
    width: 19.5%;
}

.zone.cooperationBtn {
    left: 22%;
    width: 19.5%;
}

.zone.officialGroupBtn {
    left: 44%;
    width: 19.5%;
}

.zone:hover {
    box-shadow: 0 0 0 2px rgba(255, 144, 0, 0.5);
    border-radius: 38px;
}

/* ===== 左侧主内容 ===== */
.main {
    position: absolute;
    left: 81px;
    top: 273px;
    width: 806px;
    z-index: 2;
}

.qipao {
    position: absolute;
    left: 173px;
    top: -83px;
    width: 253px;
    z-index: 3;
    animation: qipaoFloat 3s ease-in-out infinite alternate;
}

@keyframes qipaoFloat {
    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(-8px);
    }
}

.title {
    width: 780px;
    position: relative;
}

.futitle {
    width: 680px;
    margin-top: 31px;
}

/* ===== 二维码 + 下载文案（无切图，CSS 实现） ===== */
.ctaRow {
    margin-top: 54px;
    display: flex;
    align-items: flex-start;
}

.qrCard {
    width: 221px;
    background: linear-gradient(#150c06, #150c06) padding-box,
        linear-gradient(180deg, #ffb14d, #c85a00) border-box;
    border: 2px solid transparent;
    border-radius: 23px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    flex: none;
    box-shadow: 0 0 27px rgba(255, 140, 0, 0.45);
    padding: 17px 17px 0;
}

.qrcode-box {
    width: 100%;
    height: 182px;
    background: #f2ecdf;
    border-radius: 10px;
    padding: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

#qrcode {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.qrLabel {
    color: #ffffff;
    text-align: center;
    font-size: 20px;
    font-weight: 700;
    line-height: 1;
    padding: 15px 0 17px;
    letter-spacing: 0.06em;
}

.ctaCol {
    margin-left: 31px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 6px;
}

.ctaCol>*+* {
    margin-top: 17px;
}

.ctaMain {
    font-size: 30px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
}

.ctaMain .statsDownload {
    color: #fe9001;
    margin-left: 8px;
}

.ctaMain .statsDownload:hover {
    filter: brightness(1.1);
    text-decoration: underline;
}

.ctaSub {
    font-size: 22px;
    color: #dddddd;
}

.ctaUc {
    font-size: 18px;
    color: #fe9001;
    text-decoration: underline;
    text-underline-offset: 5px;
}

.ctaNote {
    font-size: 15px;
    color: #8a8a8a;
    line-height: 1.7;
}

/* ===== 右侧人物图 + 标签气泡 ===== */
.renwuWrap {
    position: absolute;
    right: 19px;
    bottom: 73px;
    width: 1133px;
    z-index: 1;
    pointer-events: none;
}

.renwu {
    width: 100%;
}

.tag {
    position: absolute;
    display: inline-flex;
    align-items: baseline;
    font-size: 22px;
    line-height: 1;
    color: #ffffff;
    background: rgba(15, 8, 2, 0.7);
    border: 1.5px solid #ff9000;
    border-radius: 48px;
    padding: 12px 27px;
    box-shadow: 0 0 15px rgba(255, 144, 0, 0.45), inset 0 0 10px rgba(255, 144, 0, 0.25);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    white-space: nowrap;
}

.tag i {
    font-style: normal;
    font-size: 19px;
    color: #ff2e2e;
    margin-left: 10px;
}

.tagA {
    left: 4.7%;
    top: 10.5%;
}

.tagB {
    left: 42.7%;
    top: 53%;
}

.tagC {
    left: 0.5%;
    top: 88%;
}

.tagD {
    left: 81%;
    top: 6.5%;
}

.tagE {
    left: 79%;
    top: 81%;
}

/* ===== 底部特性条（静态字体图片） ===== */
.paomadeng {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 27px;
    width: 1843px;
    pointer-events: none;
    z-index: 3;
}

@media (prefers-reduced-motion: reduce) {
    .qipao {
        animation: none;
    }
}
