@charset "utf-8";
* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

.text-color-blue {
    color: #3872ed!important;
}

.width-full {
    width: 100%;
}

.margin-top-8 {
    margin-top: 8px;
}

.margin-top-28 {
    margin-top: 28px;
}

.iconfont {
    font-size: 12px;
    font-weight: normal;
}

.must:before {
    content: '*';
    display: inline-block;
    color: rgb(245, 60, 60);
    margin-right: 8px;
}

html, body {
    font: normal 14px/1 'Microsoft Yahei';
    color: #333;
    background-color: #f0f3fa;
}

.loading-container .loading-box {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.6);
}

.loading-container .loading-box p {
    display: flex;
    align-items: center;
    flex-direction: column;
    color: #333;
}

.loading-container .loading-box p span {
    display: inline-block;
    margin-top: 8px;
}

header {
    width: 100%;
    height: 60px;
    background-color: #fff;
}

header h1 {
    display: flex;
    align-items: center;
    width: 1200px;
    height: 100%;
    margin: 0 auto;
    font-size: 26px;
}

header h1:before {
    content: '';
    display: inline-block;
    width: 46px;
    height: 32px;
    margin-right: 12px;
    background: url("../img/login/login-logo.png");
}

main {
    width: 1200px;
    min-height: calc(100vh - 60px - 60px - 100px);
    margin: 60px auto 100px;
    padding-bottom: 40px;
    border-radius: 6px;
    background-color: #fff;
    position: relative;
}

main h2 {
    display: flex;
    align-items: center;
    height: 58px;
    padding: 0 24px;
    font-size: 20px;
    color: rgb(56, 114, 237);
    border-bottom: 1px solid #d8dde6;
}

main h2:before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 20px;
    margin-right: 15px;
    background-color: rgb(56, 114, 237);
}

main .step-number {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

main .step-number p {
    display: flex;
    align-items: center;
}

main .step-number p:nth-child(n + 2):before {
    content: '';
    display: inline-block;
    width: 166px;
    height: 2px;
    margin: 0 12px 0 16px;
    background-color: #d8dde6;
}

main .step-number p.finish:nth-child(n + 2):before,
main .step-number p.current:nth-child(n + 2):before {
    background-color: rgb(56, 114, 237);
}

main .step-number p span:nth-child(1) {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    margin-right: 8px;
    border-radius: 50%;
    color: #fff;
    font-size: 14px;
    background-color: rgb(216, 221, 230);
    position: relative;
}

main .step-number p span:nth-child(1):before {
    display: none;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: #fff;
    font-weight: bold;
    background-color: rgb(56, 114, 237);
    border-radius: 50%;
    transform: scale(0.6);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
}

main .step-number p.finish span:nth-child(1):before {
    display: flex;
}

main .step-number p.finish span:nth-child(1),
main .step-number p.current span:nth-child(1) {
    background-color: #3872ed;
}

main .step-number p span:nth-child(2) {
    font-size: 14px;
    color: rgb(90, 94, 102);
}

main .step-number p.finish span:nth-child(2),
main .step-number p.current span:nth-child(2) {
    color: #3872ed;
}

main .step-content {
    width: 400px;
    margin: 32px auto 0;
}

main .step-content .item {
    display: none;
}

main .step-content .item.active {
    display: block;
}

main .step-content .item .question {
    margin: -4px 0 12px;
    font-size: 16px;
    color: rgb(90, 94, 102);
    line-height: 22px;
}




main .step-content .item .title {
    margin-bottom: 20px;
    font-size: 16px;
    font-weight: bold;
}

main .step-content .item .form-group {
    display: flex;
    height: 40px;
    margin-bottom: 20px;
    position: relative;
}

main .step-content .item .form-group .sendSMS {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: -1px;
    border: 1px solid rgb(216, 221, 230);
    padding: 0 16px;
    font-size: 16px;
    color: rgb(56, 114, 237);
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
}

main .step-content .item .form-group label {
    display: inline-block;
    padding: 0 8px;
    background-color: #fff;
    font-size: 12px;
    opacity: 0;
    transition: opacity 0.3s ease;
    position: absolute;
    top: -6px;
    left: 8px;
    pointer-events: none;
}

main .step-content .item .form-group .form-input {
    height: 100%;
    width: 0;
    flex-grow: 1;
    padding: 0 16px;
    border: 1px solid rgb(216, 221, 230);
    border-radius: 4px;
    outline: none;
    font-size: 16px;
}

main .step-content .item .form-group.group-sendSMS .form-input {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

main .step-content .item .form-group .form-input::placeholder {
    color: rgb(190, 195, 204);
}

main .step-content .item .form-group .form-input:focus + label {
    opacity: 1;
}

main .step-content .item .form-group .verification-code {
    margin-left: 8px;
}

main .step-content .item .btn-fill-blue {
    display: inline-block;
    height: 40px;
    line-height: 40px;
    padding: 0 24px;
    border-radius: 4px;
    background-color: rgb(56, 114, 237);
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
}

main .step-content .item .btn-line-grey {
    display: inline-block;
    height: 40px;
    line-height: 40px;
    padding: 0 24px;
    border-radius: 4px;
    color: #333;
    font-size: 16px;
    font-weight: bold;
    border: 1px solid #d8dde6;
    text-align: center;
}

main .step-content .item .btn-text {
    display: inline-block;
    height: 40px;
    line-height: 40px;
    padding: 0 24px;
    border-radius: 4px;
    color: rgb(90, 94, 102);
    font-size: 16px;
    text-align: center;

}

main .step-content .item .btn-text:before {
    margin-right: 8px;
}


main .step-content .item .tab-container .tab-type {
    display: flex;
    margin-bottom: 24px;
}

main .step-content .item .tab-container .tab-type a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 0;
    flex-grow: 1;
    height: 40px;
    font-size: 16px;
    border: 1px solid #d8dde6;
    color: rgb(32, 35, 38);
}

main .step-content .item .tab-container .tab-type a:nth-child(n + 2) {
    margin-left: -1px;
}

main .step-content .item .tab-container .tab-type a:first-child {
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
}

main .step-content .item .tab-container .tab-type a:last-child {
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
}

main .step-content .item .tab-container .tab-type a.active {
    color: rgb(56, 114, 237);
    border-color: rgb(56, 114, 237);
    position: relative;
    z-index: 10;
}

main .step-content .item .tab-container .tab-content .group {
    display: none;
}

main .step-content .item .tab-container .tab-content .group.active {
    display: block;
}

main .step-content .item .fail,
main .step-content .item .success {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: calc(100% + 40px);
    margin-left: -20px;
}

main .step-content .item .success:before {
    content: '';
    display: inline-block;
    width: 96px;
    height: 96px;
    background: url("../img/login/success.png");
}

main .step-content .item .fail:before {
    content: '';
    display: inline-block;
    width: 96px;
    height: 96px;
    background: url("../img/login/fail.png");
}

main .step-content .item .result {
    margin-top: 20px;
    font-size: 16px;
    font-weight: bold;
    color: rgb(32, 35, 38);
    line-height: 24px;
}

main .step-content .item .btn-box {
    margin-top: 20px;
}

main .step-content .item .btn-box a:nth-child(n + 2) {
    margin-left: 8px;
}









