/*抽奖主界面样式*/

html{
    width: 100%;
    height: 100%;
}
body {
    width: 100%;
    height: 100%;
    background: url("../images/background1.jpg") no-repeat;
    background-size:100% 100%;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
}

h1 {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 4vw;
    font-family: SimHei, serif;
    font-weight: 700;
    color: rgb(255, 255, 0);
    text-align: center;
    margin: 0;
    padding: 20px 0;
}

h3 {
    height: 10vh;
    line-height: 10vh;
    font-family: SimSun, serif;
    font-size: 5vh;
    font-weight: 700;
    margin: 0 auto;
    color: rgb(255, 255, 0);
    text-align: center;
}

.users {
    width: 100%;
    text-align: center;
    max-height: 70vh;
    overflow: hidden;
}


ul {
    display: inline-block;
    margin: 0 auto;
    padding: 10px;
}

.user {
    padding-top: 30px;
    /*animation: move 275s linear infinite normal;*/
    /*animation-fill-mode: forwards;*/
}

.user:hover {
    animation-play-state:paused;
    -webkit-animation-play-state:paused;
}

@keyframes move {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-9500px);
    }
    100% {
        transform: translateY(0px);
    }
}

ul li {
    list-style: none;
    width: 70vw;
    height: 8vh;
    line-height: 8vh;
    font-family: SimSun, serif;
    font-size: 5vh;
    font-weight: 700;
    color: rgb(255, 255, 0);
    padding: 0 20px;
    overflow: hidden;
}
span:first-child{
    max-width: 25vw;
    margin: 0;
    /*padding-left: 20vw;*/
    float: left;
}
span:last-child{
    max-width: 45vw;
    margin: 0;
    /*padding-left: 20vw;*/
    float: right;
    text-overflow: ellipsis;
    white-space: normal;
}

.buttons {
    position: fixed;
    bottom: 3vh;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 100%;
    max-width: 160px;
    min-width: 155px;
    /* 固定定位，脱离文档流 */
    /*height: 44px;*/
}

.see {
    margin: 0 auto;
    width: 24.44vh;
    height: 5.74vh;
    background: #f9f4f208;
    border-radius: 0.74vh;
    font-size: 2.315vh;
    border: 0.0926vh solid #fff;
    color: #fff;
    cursor: pointer;
}
