* {
    padding: 0;
    margin: 0;
}

/* 禁用图片拖动 */
img {
    -webkit-user-drag: none;
    /* 禁用 Safari 和 Chrome 中的拖动 */
    user-drag: none;
    /* 禁用 Firefox 中的拖动 */
    -webkit-user-select: none;
    /* 禁用选中 */
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    /* 禁用文本选择 */
}


body {
    font-family: Arial, sans-serif;
    background-color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.desktop {
    /* position: relative; */
    width: 100%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    min-height: 95vh;
    height: 100%;
    /* background-color: #0e0e0e; */
}

.top {
    position: absolute;
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* padding: 40px; */
    z-index: 99;
    width: 100%;
}

.fixed-box {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    object-fit: cover;
}

.logo {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    object-fit: fill;
    /* object-fit: cover; */
}

.tabBar {
    width: 0.6vw;
    height: 2.2vw;
    border-radius: 6px;
    background-color: rgb(92, 91, 86);
    transform-origin: bottom right;
    transform-origin: bottom right;
    transform: translateX(-50%);
    transition-duration: 0.3s;
    margin-bottom: 0.8vw;
}

.tabs {
    z-index: 10;
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 0;
    right: 0;
    height: 100vh;
    justify-content: center;
}

.bottomBox {
    display: flex;
    justify-content: space-between;
    padding: 20px 280px;
}

.phLogo {
    width: 8vw;
}

.bigsSiper {
    height: 100vh;
}

.tab {
    cursor: pointer;
    padding: 0.3vw;
    /* font-size: 20px; */
    margin-left: 2vw;
    position: relative;
    transition: color 0.3s, font-weight 0.1s;
    /* 为文字和颜色增加过渡动画 */
    margin-right: 0.6vw;
    width: 0;
    height: 1.2vw;
    margin-bottom: 4vh;
}

/* 激活的tab */
.active {
    background-color: #fff !important;

}

.fixed {
    position: absolute;
    top: 50%;
    right: 13%;
    transform: translateY(-50%);
    z-index: 9;
    border-radius: 15px;
    text-align: center;
}

.fixed-inner {
    display: flex;
    align-items: center;
    gap: 1vw;
}

/* 二维码盒子 */
.qrcode-box {
    background: #fff;
    padding: 10px;
    border: 4px solid #ef9536;
    border-radius: 15px;
}

/* 二维码尺寸 */
.qrcode-box #qrcode {
    width: 130px;
    height: 130px;
}

/* 按钮组竖排 */
.btn-group {
    display: flex;
    flex-direction: column;
    gap: 1.2vw;
}

/* 按钮图片样式 */
.btn-group .btn-icon {
    width: 10vw;
    height: 3vw;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* hover 效果 */
.btn-group .btn-icon:hover {
    transform: translateY(-3px) scale(1.05);
}



/* 按钮组 */
.btn-group {
    display: flex;
    flex-direction: column;
    gap: 1.2vw;
}

/* 下载按钮 */
.download-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #ef9536;
    border-radius: 50px;
    padding: 0.8vw 1.6vw;
    color: #fff;
    font-size: 1.2vw;
    cursor: pointer;
    transition: all 0.3s ease;
}

.download-btn:hover {
    background: rgba(239, 149, 54, 0.2);
}

/* 图标样式 */
.btn-icon {
    width: 1.6vw;
    height: 1.6vw;
    margin-right: 0.8vw;
}



.content {
    width: 100vw;
    height: 100vh;
    position: relative;

}

.content1 {
    width: 100vw;
    height: 90vh;
    position: relative;
}

.leftBack {
    transform: rotate(180deg);
    position: absolute;
    bottom: 14vh;
    left: 10vw;
    width: 3vw;
}

.rightBack {
    position: absolute;
    bottom: 14vh;
    right: 12vw;
    width: 3vw;
}

.swiperBox1 {
    width: 50vw;
    overflow: hidden;
    position: absolute;
    bottom: 1.2vw;
    left: 22%;
    padding-right: 2.51vw;
    /* border: 1px solid red; */
    z-index: 10;
    opacity: 1;
    visibility: visible;
    /* 默认可见 */
    transition: transform 0.06s ease, opacity 0s ease;
    /* 动画过渡 */

}

/* 向上消失 */
.swiperBox1.slide-out-up {
    transform: translateY(-100%);
    /* 向上滑出 */
    opacity: 0;
    /* 渐变消失 */
}

/* 向下消失 */
.swiperBox1.slide-out-down {
    transform: translateY(100%);
    /* 向下滑出 */
    opacity: 0;
    /* 渐变消失 */
}



.swiperSlide1 {
    margin-right: 150px;
    transition: transform 0.2s ease, opacity 0.2s ease;
    /* 更短的过渡动画 */
}

.slideInner1>img {
    /* width: 100%; */
    width: 12vw;
    height: 34vh;
}

.swiper2 {
    width: 40vw;
    overflow: hidden;
    /* position: fixed; */
    position: absolute;
    bottom: 9vh;
    right: 15vw;

}

.swiperSlide2 {
    filter: none !important;
    transition: transform 0.2s ease, opacity 0.2s ease;
    /* 更短的过渡动画 */
}

.slideInner2>img {
    width: 40vw;
    height: 60vh;
}

.swiperContent3 {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    /* height: 100vh; */
    /* border: 1px solid green; */
    /* padding-top: 4vh; */
}

.hot {
    width: 70vw;
    margin: 0 auto;
    margin-top: 3.5vw;
}

.hot img {
    width: 20vw;
}

.swiper3 {
    width: 70vw;
    overflow: hidden;
    margin: 0 auto;
    margin-bottom: 20vh;
}

.swiperSlide3 {
    filter: none !important;
    transition: transform 0.2s ease, opacity 0.2s ease;
    /* 更短的过渡动画 */
}

.slideInner3>img {
    width: 100%;
    height: 60vh;
}

.aiGril {
    height: 80vh;
    width: 30vw;
    position: absolute;
    bottom: 5vh;
    right: 56vw;
}

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

.btn {
    color: #EC921A;
    display: flex;
    border: 1px solid #EC921A;
    justify-content: center;
    align-items: center;
    width: 100%;
    border-radius: 8px;
    height: 3vw;
    margin-top: 0.5vw;
}


#qrcode img {
    width: 130px;
    height: 130px;
}

.qrcode-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #fff;
    width: 170px;
    height: 170px;
    padding: 15px;
    box-sizing: border-box;
    border-radius: 10px;
    margin: 0 auto;
}



.tipsLogo {
    width: 2vw;
    cursor: pointer;
    margin-left: 1vw;
}

.leftBack3 {
    transform: rotate(180deg);
    /* overflow: hidden; */
    position: absolute;
    bottom: 40vh;
    left: 6vw;
    width: 3vw;

}

.rightBack3 {
    position: absolute;
    bottom: 40vh;
    right: 6vw;
    width: 3vw;

}


/* 将分页器放置在屏幕右边 */
.swiper-pagination {
    position: absolute;
    right: 1.5vw;
    /* 设置距离右侧的距离 */
    top: 40%;
    transform: translateY(-50%);
    /* 垂直居中 */
    z-index: 10;
    display: flex;
    flex-direction: column;
    /* 设置分页器为竖直排列 */
    gap: 2.5vw;
    /* 设置按钮之间的间距 */
}

/* 自定义分页器按钮的样式：长椭圆形条形 */
.swiper-pagination-bullet {
    width: 40px;
    /* 设置按钮宽度 */
    height: 15px;
    /* 设置按钮高度 */
    background-color: rgba(78, 78, 78, 0.5);
    /* 设置背景颜色 */
    border-radius: 0.6vw !important;
    /* 使按钮变为长椭圆形 */
    transition: background-color 0.3s ease;
    /* border: 1px solid red; */
    height: 2.5vw !important;
    width: 0.68vw !important;
    background-color: #ffffff90 !important
}

/* 当分页按钮被激活时，改变颜色 */
.swiper-pagination-bullet-active {
    background-color: #fff !important;
    /* 激活时的颜色 */
}