html,
body {
    background-color: #f0f0f0;
}

body {
    padding-bottom: 9vw;
}

.headerbg {
    height: 48vw;
    background-image: linear-gradient(-45deg, #fc4344, #ff8183);
}

.regboard {
    margin: auto;
    margin-top: -16vw;
    background-color: #FFF;
    width: 90%;
    min-height: 100vw;
    border-radius: 5.6vw;
}

.stepwraper {
    padding: 9.65vw;
}

.stepwraper ul {
    display: flex;
}

.stepwraper ul li {
    flex: 1;
    text-align: center;
    line-height: 7.2vw;
    color: #FFF;
    position: relative;
    box-sizing: border-box;
    font-size: 3.3vw;
}

.stepwraper ul li .stepline {
    position: absolute;
    width: calc(100% - 8.3vw - 4vw);
    left: calc(50% + 4.15vw + 2vw);
    top: 4.15vw;
    border-top: 0.6vw solid #FFF;
}

.stepwraper ul li:last-child .stepline {
    display: none;
}

.stepwraper ul li i {
    font-style: normal;
    font-size: 5vw;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 8.3vw;
    height: 8.3vw;
    border: 0.6vw solid #FFF;
    border-radius: 50%;
    box-sizing: border-box;
}

.stepwraper ul li.curstep {
    font-weight: bold;
    font-size: 4.2vw;
}

.stepwraper ul li.curstep i {
    color: #fa3a45;
    background-color: #FFF;
}

.regboard .regwaiting {
    text-align: center;
    padding: 19vw 0 0 0;
}

.regboard .regwaiting img {
    width: 25vw;
    height: auto;
}

.regboard .regwaitinginfo h2 {
    font-size: 7.2vw;
    color: #666;
    line-height: 13vw;
    text-align: center;
}

.regboard .regwaitinginfo h3 {
    font-size: 4.2vw;
    color: #999;
    line-height: 7vw;
    text-align: center;
    font-weight: normal;
    padding-top: 2vw;
}

#sendcode {
    font-size: 3.3vw;
    color: #fa3a45;
}


.panel {
    display: none;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(720deg);
    }
}