* {
    padding: 0;
    margin: 0;
}

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

h1 {
    margin-bottom: 10px;
}

.logo {
    width: 12vw;
}

.desktop {
    width: 100%;
    height: 100%;
    border-radius: 8px;
    min-height: 85vh;
    background: url("../desktop/bg.js") no-repeat center/cover;
}

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

.swiper-container {
    width: 100%;

}

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

.swiper-slide img {
    width: 55%;
    object-fit: contain;
}

.fixed {
    position: fixed;
    top: 65%;
    right: 4vw;
    width: 210px;
    height: 28vh;
    transform: translateY(-50%);
    padding: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 9;
    display: flex;
    align-items: center;
    flex-direction: column;
}

.fixed div {
    text-align: center;
}

.download {
    margin-top: 20px;
    width: 150px;

}

.service,
.commercial {
    width: 10vw;
    cursor: pointer;
}

.recommend {
    color: #d8d5b1;
    font-size: 14px;
    margin-top: 10px;
    position: absolute;
    bottom: 2vw;
    width: 100%;
    text-align: center;
}

.join {
    font-size: 15px;
    color: #fff;
    margin-top: 1vw;
}

.qrcode-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #fff;
    width: 180px;
    padding: 10px;
    box-sizing: border-box;
}

.swiper-pagination {
    position: absolute;
    right: 48%;
    display: flex;
    margin-top: 3vw;
    justify-content: center;
    align-items: center;
    height: auto;
    width: auto;
    background-color: transparent;
}

.swiper-pagination-bullet {
    background-color: #ccc !important;
    width: 15px !important;
    height: 15px !important;
    margin: 0 5px;
    /* 分页点之间的间距 */
    border-radius: 50%;
    /* 圆形分页点 */
    opacity: 1 !important;
    /* 全不透明 */
}

.swiper-pagination-bullet-active {
    background-color: #fff !important;
    /* 活跃状态红色 */
}