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

* {
    -webkit-user-drag: none
}

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

.top {
    padding: 0px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.desktop .contact {
    display: flex;
}

.slg {
    position: absolute;
    top: 4vw;
    width: 45vw;
    left: 60%;
    transform: translateX(-50%) !important;
}

.bottom {
    flex: 1;
    display: flex;
    justify-content: space-around;
    align-items: center;
    overflow: hidden;
}

.main-left {
    height: 100%;
    flex: 1;
    display: flex;
    flex-direction: column;
}


.downloadArea {
    display: flex;
    position: absolute;
    bottom: 12vw;
    left: 8vw;
}

.content .qrcode-box {
    position: absolute;
    right: 3vw;
    bottom: 5vw;
    font-size: 0;
    display: inline-block;
    width: 150px;
    background: #828ae2;
    padding: 5px;
    box-sizing: border-box;
    border-radius: 8px;
}

.inside {
    border-radius: 10px;
    background: #fff;
    height: 100%;
}

#qrcode img {
    visibility: visible !important;
}

.df {
    display: flex;
    align-items: center;
}

.wh {
    width: 200px;
    margin-left: 10px;
}

.btn-box .btn {
    display: inline-block;
    border: none;
    outline: none;
    cursor: pointer;
    transition: all .3s ease;
    background: transparent;
    font-size: 24px;
}

.btn-box img {
    width: 100%;
}


.btn-box .btn:hover {
    transform: translateY(-4px) scale(1.05)
}


.right {
    position: relative;
    bottom: 0;
    width: 65vw;
    right: -5vw;
    height: 100%;
    object-fit: contain
}


.saoma {
    position: absolute;
    right: 3.5vw;
    bottom: 3vw;
    font-size: 20px;
    color: #fff;
}

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

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

/* 导航按钮 */
.swiper-button-prev,
.swiper-button-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}



.swiper-button-next {
    right: 20px;
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
}

.swiper-pagination-bullet-active {
    background: #fff;
    transform: scale(1.2);
}

/* 页面切换动画效果 - 添加平滑过渡 */
.swiper-slide {
    opacity: 1;
    transition: transform 0.3s ease;
}

.swiper-slide-active {
    opacity: 1;
}

/* 添加平滑的切换效果 */
.swiper-wrapper {
    transition-timing-function: ease-in-out;
}

/* 内容区域动画 - 移除 */
.swiper-slide .content {
    transform: none;
    opacity: 1;
    transition: none;
}

.swiper-slide-active .content {
    transform: none;
    opacity: 1;
}


/* 页面指示器 - 基础样式 */
.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
}

.swiper-pagination-bullet-active {
    background: #fff;
}

/* 页面切换时的整体遮罩效果 - 移除 */
.swiper-container::before {
    display: none;
}

.swiper-container.swiper-container-animating::before {
    display: none;
}