.ly-paipan {
    max-width: 590px;
    margin: 2.7rem auto 0 auto;
}

.ly-paipan h3 {
    text-align: center;
    margin-bottom: 1.6rem;
}

.form-item {
    display: flex;
    flex-wrap: wrap;
    flex-shrink: 0;
}

.yg-content{
    margin: 2rem 0 5rem 0;
    text-align: center;
    border-radius: 0.2rem;
    padding: 2rem 0;
}

.yg-content .yg-info{
    display: none;
}


.yg-content .yg-info .yg-shu {
    display: none;
}

.yg-content .yg-info .yg-shu .num {
    color: #fd0015;
}

.yg-content .yg-info .yaogua {
    display: flex;
    justify-content: center;
    margin: 20px 0;
}

.yg-content .yg-info .yaogua .copper-cash {
    width: 90px;
    height: 90px;
    background-image: url(../images/1.png);
    background-size: 100% 100%;
    margin: 0 15px;
}

.rotate {
    width: 90px;
    height: 90px;
    position: relative;
    transform-style: preserve-3d;
    animation: rotateAnimation 0.4s linear infinite;
}

.rotate .front, .rotate .reverse {
    width: 90px;
    height: 90px;
    background-size: cover;
}

.rotate .front {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-image: url('/static/images/0.png');
    width: 90px;
    height: 90px;
}

.rotate .reverse {
    background-image: url('/static/images/1.png');
    width: 90px;
    height: 90px;
}


@keyframes rotateAnimation {
    0% {
        transform: rotateY(0deg);
    }
    100% {
        transform: rotateY(360deg);
    }
}