.home {
    text-align: center;
    padding: 8px;
    background: #f1f5ff;
}

.home-logo {
    margin: 0 auto;
    padding-top: 12px;
    width: 75%;
}

/* 轮播图相关ui */

.swiper {
    margin-top: 12px;
    width: 100%;
    border-radius: 8px;
}

.swiper-slide img {
    display: block;
    width: 100%;
    object-fit: cover;
}

.swiper-horizontal>.swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
    bottom: 4px;
}

.swiper-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 4px;
    border-radius: 50%;
    background: #e4e4e4;
    opacity: 1;
}

.swiper-pagination .swiper-pagination-bullet-active {
    width: 18px;
    height: 4px;
    border-radius: 11px;
    background: #1f2022;
}

/* 公告 */

.announcement {
    margin: 17px auto;
    display: flex;
    align-items: center;
    font-size: 13px;
    color: #3b4f76;
}
.announcement-icon {
    margin-right: 3px;
    margin-left: 3px;
    width: 20px;
    height: 20px;
}

.announcement-text {
    flex: 1;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    text-align: left;
}

/* 点击区域 */

.main {
    display: flex;
}

.main-left {
    margin-right: 9px;
    width: 47.22%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.main-right {
    flex: 1;
}

.main-right img {
    width: 100%;
    height: 100%;
}

.main-left .left-top {
    width: 100%;
}

.main-left .left-bottom {
    width: 100%;
}

.game,
.detail {
    margin-top: 20px;
    width: 100%;
}

/* 弹窗 */

.download-dialog {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2;
    display: none;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.7);
    animation: showAnimate 0.2s linear alternate;
}

@keyframes showAnimate {
    0% {
        opacity: 0;
    }
    30% {
        opacity: 0.3;
    }
    50% {
        opacity: 0.5;
    }
    70% {
        opacity: 0.7;
    }
    100% {
        opacity: 1;
    }
}

.dialog-content {
    margin: 0 16px;
}

.dialog-title {
    width: 100%;
}

.dialog-main {
    margin-top: -3px;
    padding: 20px 18px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    background: #f1f5ff;
}

.dialog-main img {
    margin-bottom: 20px;
    width: 100%;
}

.dialog-main img:last-child {
    margin-bottom: 0;
}