.auth-section {
    width: 90%;
    height: 360px;
    background: #FFF;
    border-radius: 9px;
    position: absolute;
    top: 80px;
    left: 5%;
}

.auth-section h1 {
    width: 100%;
    height: 30px;
    position: absolute;
    top: -50px;
    left: 0;
    font-size: 27px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.auth-section .number {
    width: 90%;
    height: 22px;
    position: absolute;
    top: 20px;
    left: 5%;
    font-size: 22px;
    font-weight: 500;
    color: #181818;
    display: flex;
    align-items: center;
    justify-content: center;
}

.auth-section .desc {
    width: 90%;
    height: 20px;
    position: absolute;
    top: 50px;
    left: 5%;
    font-size: 15px;
    font-weight: 300;
    color: #737373;
    display: flex;
    align-items: center;
    justify-content: center;
}

.auth-section .phone {
    width: 90%;
    height: 80px;
    position: absolute;
    top: 90px;
    left: 5%;
}

.auth-section .phone:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    z-index: 3;
    border-bottom: 1px #D8D8D8 solid;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 200%;
    height: 200%;
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
    -webkit-transform-origin: left top;
    transform-origin: left top;
    z-index: 1;
}

.auth-section .phone .text {
    width: 100%;
    height: 20px;
    color: #333;
    font-size: 18px;
    font-weight: 500;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: left;
}

.auth-section .phone .input {
    width: 90%;
    height: 50px;
    position: absolute;
    top: 30px;
    left: 0;
    z-index: 2;
}

.auth-section .phone .reset {
    width: 30px;
    height: 30px;
    position: absolute;
    top: 40px;
    right: 0;
    z-index: 2;
    display: none;
}



.auth-section .code {
    width: 90%;
    height: 80px;
    position: absolute;
    top: 190px;
    left: 5%;
}

.auth-section .code:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    border-bottom: 1px #D8D8D8 solid;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 200%;
    height: 200%;
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
    -webkit-transform-origin: left top;
    transform-origin: left top;
    z-index: 1;
}

.auth-section .code .text {
    width: 100%;
    height: 20px;
    color: #333;
    font-size: 18px;
    font-weight: 500;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: left;
}

.auth-section .code .input {
    width: 60%;
    height: 50px;
    position: absolute;
    top: 30px;
    left: 0;
    z-index: 2;
}

.auth-section .code .reset {
    width: 30px;
    height: 30px;
    position: absolute;
    top: 40px;
    right: 40%;
    z-index: 2;
    display: none;
}

.auth-section .code .btn {
    width: 40%;
    height: 50px;
    position: absolute;
    top: 30px;
    right: 0;
    z-index: 2;
    font-size: 17px;
    font-weight: 300;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: right;
}

.auth-section .code .btn .default {
    color: #999;
}

.auth-section .code .btn .primary {
    color: #FF6600;
}

.auth-section .input-text {
    width: 100%;
    height: 49px;
    line-height: 48px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 5;
    margin: 0;
    padding: 0;
    border: none;
    font-size: 22px;
    font-weight: bold;
    color: #000;
}

.auth-section .input-text::-webkit-input-placeholder {
    font-size: 17px;
    color: #999;
    font-weight: 300;
}

.auth-section .button {
    width: 90%;
    height: 50px;
    position: absolute;
    top: 290px;
    left: 5%;
    border-radius: 6px;
    font-size: 22px;
    font-weight: 500;
    background: #1e619a;
    color: #fff;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}