.app-header {
    height: 90px;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.app-header .logo {
    width: 316px;
    height: 70px
}

.app-header-logo {
    flex: 1;
}

.app-header-title {
    flex: 1;
    text-align: right;
    padding-right: 20px;
}

.app-header-title h3 {
    font-size: 23px;
    font-weight: 650;

    color: #000;
}


.login-content {
    background-color: #D0F6F6;
    padding: 40px 40px 80px;
    display: flex;
    justify-content: space-between;
}

.login-content-left {
    margin-top: 40px;

}

.login-content-left .login-img {
    width: 506px;
    height: 336px;
}


.login-content-right {
    width: 400px;

}



.login-content-title h3 {
    font-size: 23px;
    font-weight: 650;
    margin-bottom: 40px;
    color: #000;
    font-family: 'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
}

.login-content-body {

    background-color: #fff;
    border-radius: 5px;
    padding: 5px 65px 5px;
}

.login-content-body .tab {
    display: flex;
    height: 50px;
    align-items: center;
    margin-bottom: 5px;
}

.login-content-body .tab h3 {
    font-size: 24px;
    font-weight: 650;
}



.login-content-body .tab-item a {
    color: #7f7f7f;
}

.login-content-body .tab-item a:hover {
    color: #000;
}

.login-content-body .tab-split {
    margin-left: 20px;
    margin-right: 20px;
    font-weight: 650;
    font-size: 24px;

}

.error-message {
    display: block;
    color: red;
    padding-top: 5px;
    padding-bottom: 5px;
}

.hidden-error {
    visibility: hidden;
}

.display-error {
    visibility: visibility;
}



.login-form-item {
    width: 268px;
    margin-bottom: 5px;
}

.login-form-item input {
    width: 100%;
    height: 36px;
    border-radius: 0;
    border: 1px solid rgba(121, 121, 121, 1);
    padding-left: 10px;

}

.login-form-item input:focus {
    outline: none;
}

.login-form-item .validate-wrapper {
    display: flex;

}

.login-form-item .validate-wrapper .item {
    flex: 1;    
}

.login-form-item .validate-wrapper .code {
    padding:5px 0 0 10px;
}

.login-form-item button {
    width: 280px;
    height: 40px;
}

.login-function {
    width: 268px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 40px;
    margin-top: 10px;
}

.login-function a {
    color: #008080;
    display: block;
    margin-left: 15px;
}