* {
    user-select: none;
}

body {
    background: url(../image/cz_bj_02.png);
    background-size: contain;
    background-position: center top;
    background-attachment: fixed;
    min-height: 100vh;
    margin: 0;
    padding: 0;
    position: relative;
    min-width: 1200px;
}

#container {
    width: 1200px;
    margin: 0 auto;
    /* background-color: rgba(0, 0, 0, 0.5); */
    position: relative;
}

#container > .icon {
    height: 100px;
}

#container > .content {
    display: flex;
    align-items: center;
    padding: 0 150px;
}

#container > .content > .content-left {
    flex: 4;
}

#container > .content > .content-left > .icon {
    width: 50%;
    background-color: transparent;
}

#container > .content > .content-left > .icon > img {
    /* transform: scale(1.5); */
}

#container > .content .download-body {
    padding: 15px 45px;
    margin-left: -12px;
}

#container > .content .download {
    background-color: rgba(255, 255, 255, 0.3);
    padding: 5px;
    border: 1px solid #fff;
    border-radius: 15px;
    display: flex;
    align-items: center;
}

#container > .content .download > .qrcode {
    flex: 7;
    padding: 5px;
}

#container > .content .download > .link {
    flex: 10;
    padding: 5px;
}

#container > .content .download > .link > .link-item {
    cursor: pointer;
}

#container > .content > .content-right {
    flex: 5;
}

#container > .content .content-right .game-show {
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: imgmove 1.5s linear infinite;
    cursor: pointer;
}

#container > .content .content-right .game-show > img {
    width: 400px;
}

#container > .content .content-right .game-show >span {
    font-size: 40px;
    font-weight: bold;
    color: #ccc;
    margin-top: 10px;
}

@keyframes imgmove {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

#container > .show {
    display: flex;
    align-items: center;
    padding: 70px 150px 50px;
}

#container > .show > .banner {
    flex: 5;
    overflow: hidden;
}

#container > .show > .banner .swiper {
    width: 100%;
    height: 160px;
    position: relative;
}

#container > .show > .banner .swiper img {
    width: 100%;
    height: 100%;
}

#container > .show > .banner .swiper-pagination {
    width: 90px;
    position: absolute;
    right: 0;
    bottom: 5px;
    left: auto;
    --swiper-pagination-bullet-inactive-color: #8ea2d0;
    --swiper-pagination-bullet-inactive-opacity: 1;
    --swiper-pagination-color: #fdc720;
    --swiper-pagination-bullet-size: 10px
}

#container > .show > .banner .swiper-pagination .swiper-pagination-bullet {
    box-sizing: border-box;
    transition: all 0.5s;
    border: 1px solid #333;
}

#container > .show > .banner .swiper-pagination .swiper-pagination-bullet-active {
    border: 1px solid #fff;
    transform: scale(1.1);
}

#container > .show > .tab {
    background-color: #fff;
    opacity: 0.9;
    flex: 6;
    overflow: hidden;
}

#container > .show > .tab .tab-content {
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    width: 100%;
    height: 112px;
    border-top: 1px solid #ccc;
    padding: 10px;
}

#container > .show > .tab .tab-title {
    height: 40px;
    width: 100%;
    padding: 0;
    margin: 0;
}

#container > .show > .tab .tab-title > li {
    display: block;
    text-align: center;
    width: 100px;
    float: left;
    list-style: none;
    cursor: pointer;
    height: 40px;
    line-height: 40px;
    transition: all 0.5s;
    box-sizing: border-box;
    position: relative;
    font-weight: bold;
    font-size: 15px;
}

#container > .show > .tab .tab-title > li::after {
    content: '';
    background-color: #26b5ee;
    height: 3px;
    position: absolute;
    bottom: 0;
    left: 15%;
    width: 70%;
    transition: all 0.5s;
    opacity: 0;
}

#container > .show > .tab .tab-title > .choice::after {
    opacity: 1;
}

#container > .show > .tab .tab-content > .tab-item {
    display: none;
}

#container > .show > .tab .tab-content > .show {
    display: block;
}

#container > .show > .tab .tab-item-li {
    padding: 5px;
    border-bottom: 1px dashed #ccc;
}

#container > .show > .tab .tab-item-li:last-child {
    border-bottom: 0;
}

#container > .show > .tab .tab-item-li {
    display: flex;
    font-size: 14px;
}

#container > .show > .tab .tab-item-li > .title {
    flex: 5;
}

#container > .show > .tab .tab-item-li > .time {
    flex: 2;
    color: #999;
}

#footer {
    background-color: #333;
    padding: 30px 0;
    display: flex;
    flex-direction: column;
    text-align: center;
    color: #ccc;
    font-size: 14px;
}

#footer > p {
    line-height: 25px;
    margin: 0;
}

.nopublish {
    position: relative;
}

.nopublish::after {
    content: '敬请期待';
    position: absolute;
    top: 0;
    right: 10px;
    color: #fff;
    line-height: 45px;
    font-size: 16px;
    font-weight: bolder;
    text-align: center;
    width: 80px;
    height: 45px;
    z-index: 1;
    background-color: #000;
}

/* game show */
#gameShow {
    flex-direction: column;
}

#gameShow p {
    width: 30%;
    display: inline-block;
    font-size: 20px;
    font-weight: bold;
    color: #f44336;
}

#gameShow p > img {
    width: 100%;
    /*animation: imgmove1 2s linear infinite;*/
    border-radius: 20px;
    margin-top: 10px;
    cursor: pointer;
}

@keyframes imgmove1 {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.02);
    }
    100% {
        transform: scale(1);
    }
}
