.search p {
    margin: 0;
}

.loginBanner {
    margin-bottom: 0.15625rem;
    width: 100%;
}

.loginBanner img {
    width: 100%;
    height: 100%;
}

.loginArea {
    padding: 5% 5%;
    display: flex;
    flex-direction: column;
}

.loginArea input {
    display: block;
    width: 100%;
    height: 30px;
    border: 1px solid #DCDFE6;
    padding: 0 15px;
    border-radius: 4px;
    transition: border-color .2s cubic-bezier(.645, .045, .355, 1);
    outline: 0;
}

.loginArea input:focus {
    border-color: #409EFF;
    outline: 0;
}

.loginBtn {
    height: 30px;
    background-color: #C93948;
    border: 0;
    outline: none;
    color: #fff;
    border-radius: 4px;
}

.others {
    display: flex;
    flex-direction: column;
    margin-top: 40px;
    text-align: center;
}

.others a {
    display: inline-block;
    color: #C93948;
    margin-bottom: 20px;
}

.otherLogin {
    margin: 0 auto;
    width: 40%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.otherLogin a img {
    width: 30px;
    height: 30px;
}