img {
    vertical-align: bottom
}

.ylLoading {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    z-index: 999999;
    position: fixed;
    align-items: center;
    justify-content: center;
    background: #00000080
}

.ylLoading .load {
    display: flex;
    align-items: center;
    flex-direction: column
}

.ylLoading .load .loading-text {
    color: #fff;
    font-size: 18px;
    margin-top: 10px;
    font-weight: 700
}

.ylLoading .load .spinner {
    border: 6px solid rgba(255, 255, 255, .3);
    border-radius: 50%;
    border-top: 6px solid white;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite
}

#helpInfo {
    top: 0;
    z-index: 999;
    display: flex;
    position: fixed;
    overflow: hidden;
    width: 100vw;
    height: 100vh;
    align-items: center;
    justify-content: center;
    background: #00000080
}

#helpInfo .helpInfo {
    display: flex;
    margin: 0 40px;
    min-width: 280px;
    background: #fff;
    border-radius: 5px;
    align-items: center;
    flex-direction: column
}

#helpInfo .helpInfo .content {
    color: #333;
    padding: 40px 20px;
    text-align: center
}

#helpInfo .helpInfo .btn {
    width: 100%;
    display: flex;
    color: #40affe;
    line-height: 50px;
    text-align: center;
    background: #f2f2f2;
    justify-content: center;
    border-top: 1px solid #D0D0D0
}

#helpInfo .helpInfo .btn span {
    width: 50%
}

.noMobile {
    display: flex;
    width: 100vw;
    height: 100vh;
    align-items: center;
    flex-direction: column;
    justify-content: center
}

.noMobile .noOpen {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center
}

.form {
    overflow: hidden;
    margin: 60px 30px 0
}

.form .input {
    display: flex;
    overflow: hidden;
    background: #fff;
    border-radius: 5px;
    flex-direction: row;
    align-items: center;
    margin-bottom: 20px;
    border: 1px solid #67afe9;
    justify-content: space-between
}

.form .input input {
    border: none;
    outline: none;
    padding: 15px;
    width: calc(100% - 56px)
}

.form .input img {
    height: 22px;
    margin-right: 10px
}

.form .input:nth-last-child(1) {
    margin-bottom: 0
}

.form .submit {
    overflow: hidden;
    margin: 40px 20px 0
}

.form .submit button {
    width: 100%;
    color: #fff;
    border: none;
    outline: none;
    line-height: 45px;
    border-radius: 5px;
    background: linear-gradient(to bottom right, #3467d4, #3467d4)
}

@keyframes spin {
    0% {
        transform: rotate(0)
    }

    to {
        transform: rotate(360deg)
    }
}