html, body {
    background: #fff;
    font-size: .22rem;
    color: #fff;
    line-height: 1.15; /* 1 */
    -webkit-text-size-adjust: 100%; /* 2 */
    margin: 0;
    padding: 0;
}

div, span, button,
h1, h2, h3, p, a, em, img, strong, li, ol, ul, input {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-weight: inherit;
    font-style: inherit;
    vertical-align: middle;
    list-style-type: none;
    box-shadow: none;
    background: transparent;
    font-family: Arial, Verdana, "Microsoft YaHei";
    box-sizing: border-box;
}

ol, ul {
    list-style: none
}

img {
    vertical-align: middle;
    border: none;
}

a {
    background-color: transparent;
    text-decoration: none;
}

.section-wrap {
    position: relative;
    background: #1c1c1c;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    min-height: 100vh;
}

.section-wrap .logo {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #242424;
    padding: .2rem .15rem;
    font-size: .24rem;
    color: #fdb610;
}

.section-wrap .logo img {
    width: 2.4rem;
}
.section-wrap .serve-wrap {
    position: fixed;
    top: 1rem;
    left: 50%;
    z-index: 2;
    transform: translateX(-50%);
    width: 100%;
    max-width: 600px;
    text-align: right;
}
.section-wrap .serve-wrap img {
    width: 1.15rem;
    margin-right: 2%;
 
}

button {
    cursor: pointer;
}
.section-wrap .section-content {
    position: relative;
    width: 100%;
    margin: .2rem auto 0;
}

.montante-wrap {
    background: #242424;
    font-size: .28rem;
    text-align: center;
    padding: .12rem 0;
    margin-bottom: 4px;
}
.montante-wrap p {
    padding-bottom: .12rem;
}
.montante-wrap img {
    width: 1rem;
}
.montante-wrap span {
    font-size: .3rem;
    margin-left: -.25rem;
}
.montante-wrap span b {
    font-size: .48rem;
    color: #ffc80e;
    font-weight: bolder;
    vertical-align: baseline;
}

.section-wrap .section-content .zp-wrap {
    position: relative;
    width: 7.5rem;
    height: 9rem;
    margin: 0 auto;
    background: url("../images/game-bg.png") 0 0 no-repeat;
    background-size: 100%;
}
.time-wrap {
    position: fixed;
    top: 15px;
    right: 15px;
    z-index: 1;
    background: rgba(0,0,0,.4);
    padding: 1px 10px;
    font-size: 16px;
    border-radius: 50px;
}
.wrapper {
    width: 4.35rem;
    margin: 0 auto;
    position: relative;
    top: 2.82rem;
    left: 1px;
}

.part2 {
    background: url(../images/Z1.png) left top no-repeat;
    padding-top: 100%;
    background-size: 100% 100%;
    position: relative;
    transition: transform 10.5s;
    transition-timing-function: cubic-bezier(0.42, 0, 0, 0.99); /*调整旋转速度和起始速率*/
}

.rotate-pointer {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 9;
    width: 1.73rem;
    height: 1.95rem;
    transform: translate(-50%, -50%);
    background: url(../images/pointer.png) center center no-repeat;
    background-size: 100% 100%;
    cursor: pointer;
    font-size: .44rem;
    text-align: center;
    line-height: 2.1rem;
}
.light {
    position: absolute;
    /*top: 50%;*/
    /*left: 50%;*/
    /*transform: translate(-50%, -50%);*/
    top: -0.44rem;
    left: -.42rem;
    width: 5.2rem;
    height: 5.2rem;
    z-index: 1;
    -webkit-animation: lamp 1.6s infinite;
    animation: lamp 1.6s infinite;
}
.section-wrap .btns {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: .1rem;
}
.section-wrap .btns a {
    width: 44%;
}
.section-wrap .btns a img {
    width: 100%;
}
.link-wrap {
    display: flex;
    align-items: center;
    background: #0eb185;
    height: .64rem;
    margin: .1rem 4% 0;
}
.link-wrap p {
    flex: 1;
    font-size: .26rem;
    padding-left: .15rem;
}
.link-wrap span {
    background: #0b906c;
    width: .6rem;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.info-text {
    padding: .36rem .4rem .2rem;
}

.info-text p {
    font-size: .22rem;
    padding-bottom: .12rem;
}
.link-wrap img {
    width: .4rem;
}
.rule-tab {
    display: flex;
    font-size: .26rem;
    color: #b9b9b9;
    border-bottom: 1px solid #484848;
    margin: .32rem 4% 0;
}
.rule-tab span {
    display: flex;
    align-items: center;
    justify-content: center;
    height: .5rem;
    padding: 0 .2rem;
}
.rule-tab span.active {
    background: #444;
    color: #fff;
}
/*弹窗*/
.popup-wrap {
    position: fixed;
    left: 50%;
    top: 0;
    width: 100%;
    max-width: 600px;
    min-height: 100vh;
    transform: translateX(-50%);
    z-index: 999;
    background: rgba(0, 0, 0, .7);
    display: none;
}

.popup-wrap .popup-content {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 93%;
    transform: translate(-50%, -50%);
    background: #242424;
    font-size: .28rem;
    padding: 1.1rem 0 .3rem;
    border-radius: 12px;
}
.popup-wrap .popup-info {
    position: relative;
    width: 83%;
    margin: 0 auto;
    text-align: center;
    color: #fff121;
    padding-bottom: .35rem;
}
.popup-wrap .popup-content button {
    position: relative;
    z-index: 9999;
    display: block;
    background: linear-gradient(to bottom, #facf1f, #fdb604);
    width: 2.65rem;
    height: .55rem;
    line-height: .55rem;
    text-align: center;
    font-size: .26rem;
    color: #703402;
    border: 1px solid #ffe51e;
    border-radius: 100px;
    margin: 0 auto;
}
.popup-wrap .img1 {
    position: absolute;
    top: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 2.4rem;
}
.popup-wrap .popup-info input {
    background: #000;
    border-radius: 100px;
    width: 100%;
    padding: .15rem 1%;
    text-align: center;
    font-size: .28rem;
    color: #fff;
}

input::placeholder {
    color: #464646;
}
.popup-wrap2.popup-wrap .popup-content {
    padding-top: 0;
}
.popup-wrap2 .popup-info2 {
    text-align: center;
    color: #fff;
    padding-bottom: .25rem;
}
.popup-wrap2 .popup-info2 img {
    width: 2.7rem;
    margin: 0 auto .42rem;
}
.popup-wrap .popup-header {
    background: linear-gradient(to bottom, #facf1f, #fdb604);
    border-radius: 12px 12px 0 0;
    height: .6rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 .08rem 0 .15rem;
    font-size: .26rem;
    color: #242424;
    font-weight: bold;
    margin-bottom: .5rem;
}
.popup-wrap .popup-header img {
    width: .5rem;
    cursor: pointer;
}
.popup-close {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 9999;
    width: .5rem;
    cursor: pointer;
}
.popup-wrap .icon-question {
    position: absolute;
    top: 1px;
    right: 1px;
    z-index: 1;
    width: .56rem;
}
.popup-wrap3.popup-wrap .popup-content {
    padding-top: 0;
}
.popup-wrap3.popup-wrap .popup-header {
    margin-bottom: 0;
}
.popup-wrap.popup-wrap3 .link-info {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: .2rem 0 .28rem;
}
.popup-wrap.popup-wrap3 .link-info p {
    flex: 1;
    text-align: center;
    font-size: .24rem;
}
.popup-wrap.popup-wrap3 .link-info img {
    display: block;
    width: .6rem;
    height: .6rem;
    border-radius: 100px;
    margin: 0 auto .2rem;
}
.popup-wrap .link-box {
    position: relative;
    width: 94%;
    margin: 0 auto;
}
.popup-wrap .link-box input {
    background: #000;
    width: 100%;
    height: .6rem;
    line-height: .6rem;
    text-indent: 1em;
    font-size: .28rem;
    color: #fdb610;
    border-radius: 100px;
}
.popup-wrap .link-box button {
    position: absolute;
    top: 1px;
    right: 1px;
    z-index: 1;
    width: 1.25rem;
    height: 98%;
}
.popup-text {
    color: #fdb610;
    padding-bottom: .3rem;
    text-align: center;
}
.red-text {
    background: #b80d0d;
    height: .6rem;
    line-height: .6rem;
    font-size: .24rem;
    margin-bottom: .25rem;
    text-align: center;
}
.red-text span {
    color: #ffcc10;
}
.show .img-box {
    position: absolute;
    left: 0;
    bottom: 1.6rem;
    z-index: 999;
    width: 100%;
}
.show .img-box img {
    display: block;
    margin: 0 auto;
    max-width: 100%;
}
.show.xing img {
    width: 5.9rem;
}
.show.img-sueeces .img-box {
    bottom: 0;
}
.img-sueeces img {
    width: 80%;
}
.img-weihu {
    position: absolute;
    left: 0;
    top: -1rem;
    z-index: 999;
    width: 100%;
}
.popup-wrap .popup-info.w-text {
    color: #fff;
}
.popup-info b {
    font-size: .4rem;
    color: #fff121;
    font-weight: bolder;
}
.show.coin .img-box {
    bottom: 1.8rem;
}
.show.coin img {
    width: 5.5rem;
    max-width: 88%;
}
.show.full .img-box {
    bottom: 1.7rem;
}
.show.full .img-box img {
    width: 100%;
    max-width: 96%;
}
.show.coin444 .img-box {
    bottom: 1.7rem;
}
.show.coin444 .img-box img {
    width: 100%;
    max-width: 100%;
}
.show.coin444 .popup-info {
    width: 96%;
}
.show.coin666 {
    padding-top: .12rem;
}
.show.coin666 .img-box {
    bottom: 2.1rem;
}
.show.coin666 .img-box img {
    width: 100%;
    max-width: 83%;
}
.show.img-error .img-box {
    bottom: 1.8rem;
}
.img-error .img-box img {
    width: 2.2rem;
}
@keyframes move {
    0% {
        transform: scale(1);
    }
    25% {
        transform: scale(1.1);
    }
    50% {
        transform: scale(1);
    }
    75% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}
@-webkit-keyframes lamp {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0)
    }
    32.99% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg)
    }

    33% {
        -webkit-transform: rotate(-15deg);
        transform: rotate(-15deg)
    }
    65.99% {
        -webkit-transform: rotate(-15deg);
        transform: rotate(-15deg)
    }

    66% {
        -webkit-transform: rotate(-30deg);
        transform: rotate(-30deg)
    }

    99.99% {
        -webkit-transform: rotate(-30deg);
        transform: rotate(-30deg)
    }
}
@media screen and (min-width:600px) {
    .section-wrap {
        zoom: .9;
    }
    .section-wrap .section-content .zp-wrap {
        zoom: .5;
    }
    .img-sueeces img {
        width: 100%;
    }
    .red-text {
        font-size: 18px;
    }
    .show .popup-info {
        font-size: 22px;
    }
    .popup-wrap {
        min-height: 111vh;
    }
    .popup-wrap.popup-wrap3 .link-info p {
        font-size: 18px;
    }
    .popup-header p {
        font-size: 20px;
    }
    .link-wrap p {
        font-size: 22px;
    }
}