html{font-size: calc(100vw / 7.5);}
html, body{
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100vh;

    background:#000000;
}
ul,li{
    display: block;
    list-style: none;
    padding: 0px;
    margin: 0px;
}
input, select, textarea{
    border: none;
    outline: none;
}
a:hover,a:focus{
    text-decoration: none !important;
}
*{
    -webkit-tap-highlight-color: transparent;
}

.com-after-clear:after{
    content: '';
    display: block;
    clear: both;
}
.com-full{
    width: 100%;
    height: 100%;
    box-sizing: border-box;
}
#app{
    overflow: hidden;
    background-size: cover;

    font-size: 30px;
    overflow: scroll;

    -webkit-transform-origin: left top;

    overflow: hidden;
}
.index{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;

    background: rgba(7,7,7,1);


}
.index.act{
    -webkit-animation: index 5s 2s 1 both;
}
@keyframes index {
    0% {
        background: rgba(7,7,7,1);
    }
    100% {
        background: rgba(7,7,7,0.1);
    }
}
.index .txt{
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;

    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;

    color: #d9b77d;
    font-size: 40px;
}
.index.act .txt{
    -webkit-animation: index-txt 2s 1 both;
}

.index.act .txt:nth-child(2){
    -webkit-animation-delay: 2s;
}
@keyframes index-txt {
    0%,100% {
        opacity: 0;
    }
    20%,80% {
        opacity: 1;
    }
}

.notice{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;

    background: rgba(0,0,0,0.7);
}
.notice .txt{
    position: absolute;
    left: 0;
    top: 0;

    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;

    color: #d9b77d;
    font-size: 40px;
}


.fill {
    position: absolute;
    left: 0;
    top: 0;

    display: none;
}
.fill .title{
    background: url("../image/fill_title.png") no-repeat;
    width: 352px;
    height: 117px;

    margin: 50px auto;
    -webkit-animation: fill-title 1s 1 both;
    opacity: 0;
}
@keyframes fill-title {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
.fill .ticket{
    background: url("../image/fill_ticket.png");
    width: 770px;
    height: 511px;

    position: absolute;
    left: 200px;
    bottom: 0;

    -webkit-transform: rotate(90deg);
    -webkit-transform-origin: left bottom;
    -webkit-animation: ticket 1s 1 both;

}
@keyframes ticket {
    0% {
        -webkit-transform: rotate(90deg);
    }
    100% {
        -webkit-transform: rotate(0deg);
    }
}
.fill .ticket .input{
    position: absolute;
    left: 320px;
    top: 188px;
    width: 200px;
    height: 50px;

    display: flex;
    align-items: center;
    -webkit-transform: rotate(-5deg);

}
.fill .ticket .input.none::before{
    display: block;
    content: '';
    width: 3px;
    height: 30px;
    background: #070707;

    position: absolute;
    left: -5px;
    top: 10px;
    -webkit-animation: input_before 1s infinite both;

}
@keyframes input_before {
    0%,  100% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
}
.fill .ticket input{

    font-size: 30px;
    background-color: transparent;
    outline: none;
    border: none;

}

.fill .btn{
    background: url("../image/fill_btn.png");
    width: 164px;
    height: 81px;
    position: absolute;
    top: 155px;
    left: 560px;

    -webkit-animation: btn 1s infinite both;

    display: none;
}
@keyframes btn {
    0%,  100% {
        -webkit-transform: scale(1);
    }
    50% {
        -webkit-transform: scale(0.8);
    }
}
.vertical .fill, .vertical .finash, .vertical .index, .vertical .notice, .vertical .word, .vertical .load{
    -webkit-transform-origin: top left;
    -webkit-transform: translateX(750px) rotate(90deg);
}
.horizontal .live{
    -webkit-transform-origin: top left;
    -webkit-transform: translateY(750px) rotate(-90deg);
}

.finash {
    position: absolute;
    left: 0;
    top: 0;

    display: none;

    background: url("../image/finash_bg.jpg") no-repeat;
    background-size: cover;

}
.finash .title{
    font-size: 40px;
    text-align: center;
    color: #442c10;
    margin-top: 220px;
}
.finash .title span{
    font-size: 60px;
}
.finash .btn{
    background:url("../image/finash_btn.png");
    width: 268px;
    height: 81px;

    margin: 100px auto;

    -webkit-animation: btn 1s infinite both;
}
.finash .cover{
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    position: absolute;
    left: 0;
    top: 0;

    display: none;
}
.finash .com-full{
    display: flex;
    align-items: center;
    justify-content: center;
}
.finash .content{
    position: relative;

    background: url("../image/red_bg.gif");
    background-size: cover;
    width: 745px;
    height: 663px;

    padding: 60px 175px;
    box-sizing: border-box;
}
.finash .red{
    background: url("../image/red.png");
    width: 395px;
    height: 464px;
}
.finash .red_open{
    background: url("../image/red_open.png");
    width: 395px;
    height: 462px;

    position: absolute;
    top: 60px;

    display: none;
}

.finash .red_open .txt{
    font-size: 100px;
    color: red;
    text-align: center;
    margin: 100px auto;
}
.finash .red_open.none{
    background: url("../image/red_open_none.png");
}
.finash .red_open.none .txt{
    font-size: 38px;
    color: red;
    text-align: center;
    margin: 100px auto;
}
.load .progress{
    background:url("../image/load_progress.png");
    width: 504px;
    height: 12px;

    margin-top: 50px;
}
.load .progress .part1{
    width: 0%;
    height: 100%;
    /*background: #dbb87f;*/

    position: relative;
}
.load .progress .part1::before{
    content: '';
    display: block;
    background: url("../image/load_train.png");
    width: 158px;
    height: 47px;
    position: absolute;
    right: -50px;
    top: -50px;
}
.load{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;

    background: black;

    display: flex;
    justify-content:center;
    align-items:center;
}
.load .num{
    font-size: 30px;
    color: #d9b77d;
    text-align: center;
    margin-top: 30px;
}
.load .icon{
    width: 400px;
    height: 110px;
}



.app{
    touch-action: none !important;
}
.app.vertical.enble_control .controlY{
    display: block;
}
.app.vertical.enble_control .controlX{
    display: none;
}
.app.horizontal.enble_control .controlY{
    display: none;
}
.app.horizontal.enble_control .controlX{
    display: block;
}
.control{
    position: absolute;
    left: 0;
    top: 0;

    display: none;

}

.word{
    position: absolute;
    left: 0;
    top: 0;
}
.word .txt{
    width: 100%;
    padding: 30px 50px;
    box-sizing: border-box;
    position: absolute;
    right: 50px;
    bottom: 20px;
    background: rgba(62,54,46,0.5);

    color: #fff;
    font-size: 36px;
}
.word .txt1{
    background: url("../image/word_1.png");
    width: 1020px;
    height: 152px;
}
.word .txt1 span{
    position: absolute;
    left: 100px;
    top: 10px;
    font-weight: bold;
    font-size: 35px;
    color: #442c10;
    -webkit-text-stroke: 2px #fff;
}
.word .txt1 .btn{
    top: 80px;
    right: 0px;
}
.word .txt2 .btn{
    top: 60px;
    right: 70px;
}
.word .txt3 .btn{
    top: 45px;
    right: 70px;
}
.word .txt4 .btn{
    top: 55px;
    right: 60px;
}
.word .txt5 .btn{
    top: 55px;
    right: 60px;
}
.word .txt2{
    background: url("../image/word_2.png");
    width: 867px;
    height: 129px;
}
.word .txt3{
    background: url("../image/word_3.png");
    width: 953px;
    height: 105px;
}
.word .txt4{
    background: url("../image/word_4.png");
    width: 1019px;
    height: 125px;
}
.word .txt5{
    background: url("../image/word_5.png");
    width: 870px;
    height: 137px;
}
.word .btn{
    background: url("../image/word_btn_2.png");
    width: 32px;
    height: 23px;

    position: absolute;
    right: 50px;
    top: -50px;

    -webkit-animation: btn 1s infinite both;
}

.live{
    background: url("../image/live_bg_3.jpg?v=1")no-repeat center;
    background-size: cover;

    position: absolute;
    left: 0;
    top: 0;
}
.live img{
    width: 100%;
    height: 100%;
    opacity: 0.01;
}
.live::before{
    content: '';
    display: block;
    background: url("../image/live_people.png") no-repeat;
    width: 546px;
    height: 336px;
    position: absolute;
    left: 0;
    bottom: 0;
}
.live .btn{
    display: block;
    content: '';
    background: url("../image/live_btn.png") no-repeat;
    width: 230px;
    height: 71px;
    position: absolute;
    bottom: 15%;
    right: 270px;
}
/*.app.horizontal .choose, .app.horizontal .index .txt{*/
/*    -webkit-transform: rotate(-90deg);*/
/*}*/
/*.app.horizontal .result{*/
/*    -webkit-transform-origin: top left;*/
/*    -webkit-transform: rotate(-90deg);*/
/*    margin-top:750px*/
/*}*/
.hide{
    display: none;
}