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

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

/* 公共背景：整屏球场，固定在所有幻灯片之下 */
.desktop .fixed-bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    object-fit: cover;
}

/* 轮播容器 */
.swiper-slide {
    width: 100%;
    height: 100%;
    position: relative;
}

.content {
    position: relative;
    z-index: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

/* 顶部：logo + 商务合作/官方群组 */
.top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.6vw 3vw 0;
    z-index: 30;
}

.top .logo {
    width: 13vw;
    object-fit: contain;
}

.contact {
    display: flex;
    align-items: center;
    gap: 1.2vw;
}

.contact img {
    width: 11vw;
    cursor: pointer;
    transition: transform .25s ease;
}

.contact img:hover {
    transform: translateY(-3px) scale(1.04);
}

/* 主舞台：左侧标题 + 二维码，右侧人物，底部奖杯装饰 */
.stage {
    position: relative;
    flex: 1;
    overflow: hidden;
}

/* 标题（大字） */
.stage .title {
    position: absolute;
    left: 5vw;
    top: 4vw;
    width: 44vw;
    z-index: 20;
    pointer-events: none;
}

/* 人物（含背后照片卡），靠右贴底 */
.stage .renwu {
    position: absolute;
    right: 1vw;
    bottom: 0;
    height: 94%;
    width: auto;
    object-fit: contain;
    object-position: bottom right;
    z-index: 10;
    pointer-events: none;
}

/* 奖杯 + 足球装饰，底部居中偏左 */
.stage .football {
    position: absolute;
    left: 28vw;
    bottom: 0;
    width: 21vw;
    z-index: 12;
    pointer-events: none;
}

/* 扫码下载区：二维码 + 右侧说明文字 横排 */
.qr-holder {
    position: absolute;
    left: 6vw;
    bottom: 5vw;
    z-index: 20;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1vw;
}

.qrcode-box {
    width: 8vw;
    height: 8vw;
    flex-shrink: 0;
    background: #fff;
    padding: 0.4vw;
    border: 0.2vw solid #c8f53b;
    border-radius: 0.6vw;
    box-shadow: 0 0.4vw 1.4vw rgba(0, 0, 0, .45);
}

.inside {
    width: 100%;
    height: 100%;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.qrcode-target {
    width: 100% !important;
    height: 100% !important;
}

.qrcode-target img {
    width: 100% !important;
    height: 100% !important;
    display: block !important;
}

.qr-tip {
    font-size: 0.85vw;
    font-weight: 400;
    line-height: 1.7;
    color: #fff;
    text-align: left;
    text-shadow: 0 1px 4px rgba(0, 0, 0, .7);
}

/* 分页小圆点：右下角（用 !important 盖过 Swiper 自带的 left:0/width:100%） */
.mySwiper .swiper-pagination {
    z-index: 40;
    left: auto !important;
    right: 2.5vw !important;
    bottom: 2vw !important;
    width: auto !important;
    text-align: right;
}

.mySwiper .swiper-pagination-bullet {
    width: 0.55vw;
    height: 0.55vw;
    background: rgba(255, 255, 255, .5);
    opacity: 1;
}

.mySwiper .swiper-pagination-bullet-active {
    background: #fff;
    width: 1.4vw;
    border-radius: 0.3vw;
}

/* 超宽屏（比 16:9 还宽）改用 vh，避免元素被横向拉得过大 */
@media (min-aspect-ratio: 16/9) {
    .top .logo {
        width: 23vh;
    }

    .contact img {
        width: 19.5vh;
    }

    .stage .title {
        width: 78vh;
        top: 7vh;
        left: 9vh;
    }

    .stage .football {
        width: 37vh;
    }

    .qr-holder {
        bottom: 9vh;
        left: 11vh;
    }

    .qrcode-box {
        width: 14vh;
        height: 14vh;
        padding: 0.9vh;
    }

    .qr-tip {
        font-size: 1.5vh;
    }
}
