/* body {
    margin: 0;
    background: #000;
    min-width: 1300px;
}

.page-container {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 0 30px;
    box-sizing: border-box;
}

.page-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    width: 200px;
    padding: 10px 0;
    box-sizing: border-box;
}

.logo img {
    width: 100%;
    cursor: pointer;
}
.title{
    width: 34%;
} 
.title img{
    width: 100%;
}
.connect {
    display: flex;
    align-items: center;
}

.connect img {
    width: 160px;
    margin-left: 24px;
    cursor: pointer;
}

.page-footer {
    padding: 12px 0;
}

.swiper {
    width: 100%;
    flex: 1;
    overflow: hidden;
}

.swiper-slide {
    display: flex;
    align-items: center;
}

.swiper-slide .swiper-slide-left{
    width: 100%;
    height: 100%;
}

.swiper-slide .swiper-slide-left img {
    width: 100%;
    height: 100%;
}

.qrcode-box {
    margin-top: 24px;
    width: 240px;
    height: 292px;
    background: url(../image//desktop/qr-box.png) center / 100% no-repeat;
    padding: 28px 18px 12px 20px;
    box-sizing: border-box;
    text-align: center;
    position: fixed;
    top: 50%;
    right: 5%;
    transform: translate(0px, -50%);
    z-index: 2;
}

.qrcode-box #qrcode {
    display: inline-block;
}

.qrcode-box #qrcode img {
    display: inline-block;
} */


* {
    box-sizing: border-box;
}

img {
    vertical-align: middle;
}

body {
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-width: 1300px;
}

.main {
    width: 100%;
    height: 100%;
}

header {
    position: absolute;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 4vh 5vw 0;
    height: 10vh;
    flex-shrink: 0;
    z-index: 10;
}

header .left>img:first-of-type {
    height: 8vh;
}

header .right {
    display: flex;
    flex-direction: row;
    align-items: center;

    .sw {
        height: 5vh;
        margin-bottom: 1vh;
        cursor: pointer;
    }

    .tg {
        height: 5vh;
        margin-left: 15px;
        margin-bottom: 1vh;
        cursor: pointer;
    }
}

.dec {
    position: absolute;
    left: 6vw;
    top: 15vh;
    z-index: 10;

    img {
        width: 26vw;
        height: 13vh;
    }
}

.scroll-container {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    z-index: 0;
    overflow: hidden; /* 溢出部分隐藏 */
    padding: 0;
    margin: 0;
}

.inner {
    height: 100%;
    width: 200%; /* 双倍宽度用于无缝衔接 */
    position: relative;
    background: url('../image/desktop/scroll-pic.png') 0 0 repeat-x; /* 背景横向重复 */
    animation: move 10s linear infinite; /* 速度由时间控制 */
    transform: translate3d(0, 0, 0); /* 硬件加速 */
    filter: 
    brightness(1.3)  
    contrast(1.1)     
    saturate(1.2);
}

@keyframes move {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%); /* 移动自身宽度的一半 */
    }
}

.s-bg {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 3;
}

.s-bg::before {
    content: "";
    /* 覆盖整个父容器 */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* 半透明黑色遮罩 */
    background-color: rgba(0, 0, 0, 0.78); /* 更深底色 */
    /* 确保遮罩层在背景图之上 */
    z-index: 1;
}

/* 背景图（上层） */
.s-bg::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../image/desktop/bg.png') no-repeat;
    background-size: 100% 100%;
    z-index: 2; /* 上层 */
}


.swiper-container {
    position: absolute;
    width: 100%;
    height: 52vh;
    z-index: 20;
    bottom: 20vh;
    padding: 0 6vw 0 6vw;
}

.swiper {
    width: 100%;
    height: 100%;
}

.swiper-wrapper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    width: 100%;
    height: 100%;
}

.bg-1 {
    width: 100%;
    height: 100%;
    background: url('../image/desktop/p.png') no-repeat;
    background-size: 100% 100%;
}

.qr-container {
    position: absolute;
    bottom: 2vh;
    right: 1vw;
    right: 1vw;
    z-index: 10;
    /* background-color:#FFF;
    box-shadow: 5px 5px 5px 5px rgba(0,0,0,0.1); */
    /* 0 阴影水平偏移值(可取正负值)
       10px 阴影垂直偏移值(可取正负值)
       10px 阴影模糊值
       rgba(0,0,0,0.2) 阴影颜色
    */
    /* border-radius: 15px;
    -moz-border-radius: 15px; */

    display: flex;
    align-items: center;

    .qrcode {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 10vw;
        height: 18vh;
        background:#fff;
        box-shadow: 5px 5px 5px 5px rgba(0,0,0,0.1);
        border-radius: 15px;
        -moz-border-radius: 15px;
        padding: 12px;
        
        img {
            width: 8vw;
        }

    }

    .dw-pic {
        width: 13vw;
        margin-left: 15px;
    }
}



