@charset "utf-8";
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font: inherit;
    vertical-align: baseline;
    font-family: "微软雅黑";
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
    display: block;
}

body {
    color: #000000;
}

ol, ul {
    list-style: none;
}

blockquote, q {
    quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

a {
    text-decoration: none;
    outline: 0;
    color: #666;
    cursor: pointer;
}

a:hover, a:active {
    outline: none;
    text-decoration: none;
}

input {
    outline: none;
}

input[type="text"] {
    -webkit-appearance: none;
}

textarea {
    resize: none;
    -webkit-appearance: none;
}

img {
    width: 100%;
}

*, *:before, *:after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

::-webkit-input-placeholder {
    color: #777777;
}

:-moz-placeholder { /* Firefox 18- */
    color: #777777;
}

::-moz-placeholder { /* Firefox 19+ */
    color: #777777;
}

:-ms-input-placeholder {
    color: #777777;
}

[v-cloak] {
    display: none;
}

html, body {
    width: 100vw;
    height: 100vh;
    background: url(../images/bg.jpg) top center no-repeat;
    background-size: cover;
    overflow: hidden;
}

#app {
    width: 100vw;
    overflow: hidden;
}

.page {
    width: 100%;
    min-height: 100vh;
    /*background: url(../images/bg.jpg) bottom center no-repeat;*/
    /*background-size: cover;*/
    overflow: hidden;
}

.header {
    position: fixed;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 1rem;
    /* padding: .06rem 0; */
    background: rgba(255, 255, 255, 0.48);
    z-index: 9;
}

.header a, .header div {
    position: relative;
    margin: 0 .1rem;
    padding: .05rem .1rem;
    border-radius: 1rem;
    background: #ffefab;
    font-size: 0.18rem;
    color: #9e0005;
    cursor: pointer;
}

.header .child {
    position: absolute;
    left: 0;
    top: .4rem;
    width: 100%;
    z-index: 9;
}

.header .child a {
    display: block;
    margin-top: 0.1rem;
    font-size: 0.17rem;
}

.header img {
    width: 2rem;
    margin: 0 .1rem;
}

.page .center {
    position: relative;
    width: 6.6rem;
    height: 100vh;
    margin: 0 auto;
}

.page .tree {
    position: absolute;
    bottom: .8rem;
    width: 100%;
    height: 4.52rem;
    background: url(../images/tree.png) center no-repeat;
    background-size: cover;
    -webkit-animation: shakeDft 4s linear 0s infinite alternate;
    animation: shakeDft 4s linear 0s infinite alternate;
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
}

.page .tree.animated {
    -webkit-animation: shakeOpen 0.5s linear 0s infinite alternate;
    animation: shakeOpen 0.5s linear 0s infinite alternate;
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
}

.page .loose {
    position: absolute;
    /* top: 4rem; */
    bottom: -.1rem;
    width: 100%;
    height: 1.6rem;
    background: url(../images/loose.png) center no-repeat;
    background-size: cover;
}

.page .coin {
    position: absolute;
    left: 0;
    /* top: 2rem; */
    bottom: .6rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 100%;
    height: 3rem;
    opacity: 0;
}

.page .coin.on {
    opacity: 1;
}

.page .coin .left, .page .coin .right {
    position: relative;
    display: inline-block;
    width: 49%;
    height: inherit;
}

.page .coin i {
    position: absolute;
    top: 0;
    left: 1.4rem;
    display: block;
}

.page .coin .coin_1 {
    width: .2rem;
    height: .3rem;
    background: url(../images/coin-1.png) no-repeat;
    background-size: cover;
    -webkit-animation: dropCoin1 2s linear 0s infinite;
    animation: dropCoin1 2s linear 0s infinite;
}

.page .coin .coin_2 {
    width: .16rem;
    height: .26rem;
    background: url(../images/coin-2.png) no-repeat;
    background-size: cover;
    -webkit-animation: dropCoin2 2s linear 0s infinite;
    animation: dropCoin2 2s linear 0s infinite;
}

.page .coin .coin_3 {
    width: .22rem;
    height: .19rem;
    background: url(../images/coin-3.png) no-repeat;
    background-size: cover;
    -webkit-animation: dropCoin3 2s linear 0s infinite;
    animation: dropCoin3 2s linear 0s infinite;
}

.sharke {
    position: absolute;
    left: 50%;
    bottom: 0.2rem;
    margin-left: -1rem;
    width: 2rem;
    height: 0.7rem;
    background: url(../images/btn.png) no-repeat;
    background-size: cover;
    cursor: pointer;
}

.footer {
    position: fixed;
    left: 0;
    bottom: 0;
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: .2rem 0;
    background: #b30200;
    /*background: #2d7f37;*/
}

.footer a {
    display: flex;
    flex-direction: column;
    width: 25%;
    text-align: center;
    font-size: .26rem;
    color: #fdeba5;
    cursor: pointer;
}

.footer a i {
    font-size: 0.4rem;
}

.side {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.6);
    z-index: 11;
    opacity: 0;
}

.side.on {
    right: 0;
    opacity: 1;
}

.side .nav {
    position: absolute;
    right: 0;
    top: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 50%;
    height: 100%;
    background: #c80200;
}

.side .close {
    position: absolute;
    top: .2rem;
    right: .2rem;
    width: .6rem;
    height: .6rem;
    border-radius: 50%;
    background: url("../images/close.png") #fff;
    background-size: cover;
    cursor: pointer;
    z-index: 2;
}

.side a {
    width: 100%;
    text-align: center;
    padding: .2rem 0;
    font-size: 0.4rem;
    color: #fdeba5;
    cursor: pointer;
}

.pop {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    background: rgba(0, 0, 0, 0.6);
}

.pop .wrapper {
    display: table;
    table-layout: fixed;
    width: 100%;
    height: 100%;
    text-align: center;
}

.pop .layout {
    display: table-cell;
    vertical-align: middle;
    width: 100%;
    height: 100%;
}

.pop .box {
    position: relative;
    width: 5rem;
    margin: 0 auto;
    padding: .2rem;
    background: #fff;
    border-radius: .15rem;
}

.pop .close {
    position: absolute;
    top: -.15rem;
    right: -.15rem;
    width: .3rem;
    height: .3rem;
    border-radius: 50%;
    background: url("../images/close.png") #fff;
    background-size: cover;
    cursor: pointer;
}

.pop .title {
    margin-bottom: .2rem;
    padding-bottom: .2rem;
    border-bottom: 1px solid #e5e5e5;
    font-size: .18rem;
}

.pop .content {
    line-height: .26rem;
    text-align: left;
    font-size: .16rem;
}

.pop.login .box {
    width: 4rem;
}

.login .form input {
    display: block;
    width: 100%;
    height: .4rem;
    margin-bottom: .1rem;
    padding: 0 .2rem;
    line-height: .4rem;
    border: 1px solid #ccc;
    border-radius: .06rem;
    font-size: .16rem;
    color: #777777;
}

.login .form a {
    display: block;
    width: 3rem;
    height: .4rem;
    line-height: .4rem;
    margin: 0 auto;
    background: #debb80;
    border-radius: .06rem;
    text-align: center;
    font-size: .16rem;
    color: #fff;
    cursor: pointer;
}

.pop.win {
    background: rgba(0, 0, 0, 0.5);
}

.win .box {
    width: 8rem;
    background: none;
    color: #ffefab;
    /*display: none;*/
}

.win .box .prize {
    font-size: .5rem;
}

.win .box .desc {
    padding-bottom: .2rem;
    font-size: .2rem;
}

.win .box .wg {
    width: 50%;
    margin: 0 auto;
}

.pop.artile .box {
    width: 10rem;
}

.artile .box .content {
    max-height: 5rem;
    overflow-x: auto;
}

.artile .table {
    width: 100%;
    padding: .1rem 0;
}

.artile table {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
}

.artile th, .artile td {
    padding: .02rem 0;
    text-align: center;
    border: 1px solid #e5e5e5;
    vertical-align: middle;
}

.artile th {
    background: #e5e5e5;
}

.winlist .box {
    width: 6rem;
}

.winlist .search {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.winlist .search input {
    -webkit-box-flex: 1;
    -ms-flex: auto;
    flex: auto;
    height: 0.4rem;
    line-height: 0.4rem;
    padding: 0 .2rem;
    outline: 0;
    -webkit-appearance: none;
    background-color: #fff;
    background-image: none;
    border-radius: 4px;
    border: 1px solid #dcdfe6;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    font-size: 0.16rem;
    font-weight: 200;
}

.winlist .search a {
    height: 0.4rem;
    line-height: .4rem;
    padding: 0 .2rem;
    background: #9f1a27;
    font-size: 0.2rem;
    font-weight: 100;
    color: #fff;
    border-radius: 4px;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.winlist .search_null {
    height: 1rem;
    line-height: 1rem;
    font-size: .2rem;
    color: #ccc;
    text-align: center;
}

.winlist .search_main {
    padding-top: .2rem;
    font-size: .14rem;
}

.winlist table {
    width: 100%;
}

.winlist th, .winlist td {
    padding: .04rem 0;
    text-align: center;
}

.winlist th {
    font-size: .16rem;
    background: #9f1a27;
    border: 1px solid #9f1a27;
    color: #fff;
}

.winlist td {
    border: 1px solid #e5e5e5;
}

.winlist .mo-paging {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding-top: .1rem;
}

.winlist .mo-paging li {
    padding: .04rem .2rem;
    background: #9f1a27;
    color: #fff;
    cursor: pointer;
}

.winlist .mo-paging .paging-item--disabled {
    color: #666;
    pointer-events: none;
    cursor: default;
}

.fires {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.wap .page {
    /*background: url(../images/wbg.jpg) #cc191e top center no-repeat;*/
  background: url(../images/wbg.jpg) #c80200 top center no-repeat;
    /*background: url(../images/wbg.jpg) #407b02 top center no-repeat;*/
    background-size: contain;
}

.wap .page .header {
    border-bottom: 1px solid #fdeba5;
}

.wap .page .center {
    width: 88%;
    height: 56vh; 
}

.wap .page .tree {
    height: 4.5rem;
}

.wap .page .loose {
    bottom: 0;
    height: 1.2rem;
}

.wap .page .sharke {
    bottom: -.5rem;
    background-size: cover;
}

.wap .page .coin {
    /* bottom: 0;
    height: 2rem; */
    display: none;
}

.wap .page .coin .coin_1 {
    -webkit-animation: dropCoin4 2s linear 0s infinite;
    animation: dropCoin4 2s linear 0s infinite;
}

.wap .page .coin .coin_2 {
    -webkit-animation: dropCoin5 2s linear 0s infinite;
    animation: dropCoin5 2s linear 0s infinite;
}

.wap .page .coin .coin_3 {
    -webkit-animation: dropCoin6 2s linear 0s infinite;
    animation: dropCoin6 2s linear 0s infinite;
}

.wap .pop .box {
    width: 90%;
}

.wap .pop .title {
    font-size: .3rem;
}

.wap .pop .close {
    top: -.3rem;
    right: -.3rem;
    width: .6rem;
    height: .6rem;
}

.wap .login .form input, .wap .login .form a, .wap .winlist .search input, .wap .winlist .search a {
    height: .8rem;
    line-height: .8rem;
    font-size: .3rem;
}

.wap .winlist .search_null, .wap .winlist .search_main {
    font-size: .3rem;
}

.wap .winlist th, .wap .winlist td {
    padding: .16rem 0;
    font-size: .26rem;
}

.wap .winlist .mo-paging li {
    padding: .16rem .2rem;
}

.wap .artile .box .content {
    max-height: 60vh;
    font-size: .26rem;
    line-height: .4rem;
}

.wap .win .box .desc {
    font-size: .36rem;
}

.winBox {
    padding: .8rem 0 0 0;
    width: 80%;
    margin: 0 auto;
}

.winTitle {
    background: #a30604;
    border-top: 1px solid #fdeba5;
    /*background: #126c36;*/
    padding: .1rem 0;
    text-align: center;
    font-size: .34rem;
    color: #fdeba5;
}
.winLayout {
    padding: 0.2rem;
    background: #a3060452;
    box-shadow: inset 0 5px 5px 5px #a60101;
    text-align: center;
}
.winer {
    /*margin-top: .1rem;*/
    height: 2rem;
    overflow: hidden;
}

.winer li {
    font-size: .26rem;
    color: #fdeba5;
}
.huanh{
	display: block;
}
/*.lottieBox{*/
/*    width: 3rem;*/
/*    height: 3rem;*/
/*    margin: 0 auto;*/
/*}*/

.pop.sorry .box {
    background: none;
    width: 7rem;
    padding: 0;
}
.pop.sorry .close {
    position: relative;
    top: auto;
    right: auto;
    margin: 0.2rem auto;
}

.wap .pop.sorry .box {
    width: 80%;
}

@keyframes shakeDft {
    10% {
        -webkit-transform: rotate(.2deg);
        transform: rotate(.2deg);
    }
    20% {
        -webkit-transform: rotate(.4deg);
        transform: rotate(.4deg);
    }
    30% {
        -webkit-transform: rotate(.6deg);
        transform: rotate(.6deg);
    }
    40% {
        -webkit-transform: rotate(.8deg);
        transform: rotate(.8deg);
    }
    50% {
        -webkit-transform: rotate(1deg);
        transform: rotate(1deg);
    }
    60% {
        -webkit-transform: rotate(1.2deg);
        transform: rotate(1.2deg);
    }
    70% {
        -webkit-transform: rotate(1.4deg);
        transform: rotate(1.4deg);
    }
    80% {
        -webkit-transform: rotate(1.6deg);
        transform: rotate(1.6deg);
    }
    90% {
        -webkit-transform: rotate(1.8deg);
        transform: rotate(1.8deg);
    }
    100% {
        -webkit-transform: rotate(2deg);
        transform: rotate(2deg);
    }
}

@keyframes shakeOpen {
    from {
        -webkit-transform: rotate(3deg);
        transform: rotate(3deg);
    }
    to {
        -webkit-transform: rotate(-3deg);
        transform: rotate(-3deg);
    }
}

@keyframes dropCoin1 {
    40% {
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0);
    }
    87.5% {
        -webkit-transform: translate(50px, 250px);
        transform: translate(50px, 250px);
    }
    100% {
        -webkit-transform: translate(50px, 250px);
        transform: translate(50px, 250px);
    }
}

@keyframes dropCoin2 {
    40% {
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0);
    }
    87.5% {
        -webkit-transform: translate(80px, 260px);
        transform: translate(80px, 260px);
    }
    100% {
        -webkit-transform: translate(80px, 260px);
        transform: translate(80px, 260px);
    }
}

@keyframes dropCoin3 {
    40% {
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0);
    }
    87.5% {
        -webkit-transform: translate(-50px, 270px);
        transform: translate(-50px, 270px);
    }
    100% {
        -webkit-transform: translate(-50px, 270px);
        transform: translate(-50px, 270px);
    }
}

/* @keyframes dropCoin4{
    40%{-webkit-transform: translate(0, 0);transform: translate(0, 0);}
    87.5%{-webkit-transform: translate(20px, 100px);transform: translate(20px, 100px);}
    100%{-webkit-transform: translate(20px, 100px);transform: translate(20px, 100px);}
}
@keyframes dropCoin5{
   40%{-webkit-transform: translate(0, 0);transform: translate(0, 0);}
   87.5%{-webkit-transform: translate(.8rem, 4rem);transform: translate(.8rem, 4rem);}
   100%{-webkit-transform: translate(.8rem, 4rem);transform: translate(.8rem, 4rem);}
}
@keyframes dropCoin6{
    40%{-webkit-transform: translate(0, 0);transform: translate(0, 0);}
    87.5%{-webkit-transform: translate(-.5rem, 1.2rem);transform: translate(-.5rem, 1.2rem);}
    100%{-webkit-transform: translate(-.5rem, 1.2rem);transform: translate(-.5rem, 1.2rem);}
} */

@-webkit-keyframes routey {
    0% {
        -webkit-transform: rotateY(0deg);
    }
    25% {
        -webkit-transform: rotateY(90deg);
    }
    55% {
        -webkit-transform: rotateY(180deg);
    }
    75% {
        -webkit-transform: rotateY(90deg);
    }
    100% {
        -webkit-transform: rotateY(0deg);
    }
}

@-moz-keyframes routey {
    0% {
        transform: rotateY(0deg);
    }
    25% {
        transform: rotateY(90deg);
    }
    55% {
        transform: rotateY(180deg);
    }
    75% {
        transform: rotateY(90deg);
    }
    100% {
        transform: rotateY(0deg);
    }
}

@-ms-keyframes routey {
    0% {
        transform: rotateY(0deg);
    }
    25% {
        transform: rotateY(90deg);
    }
    55% {
        transform: rotateY(180deg);
    }
    75% {
        transform: rotateY(90deg);
    }
    100% {
        transform: rotateY(0deg);
    }
}

.flip {
    animation: routey .8s infinite linear;
    -webkit-animation: routey .8s infinite linear;
}

/*@media screen and (min-height: 666px) {*/
/*    .wap .page .center {*/
/*        height: 10rem;*/
/*    }*/
/*}*/

@media screen and (max-height: 820px) {
    .wap .page .center {
        height: 8.7rem;
    }
}