html,
body {
    height: 100%;
    margin: 0;
}

input,button {
    outline: none;
    background-color: transparent;
    border: none;
}

input::-webkit-input-placeholder {
    color: #ccc;
}

a {
    text-decoration: none;
    color: #333;
}

a:hover,
a:visited,
a:link,
a:active {
    color: #333;
}
/* 登入页样式变更*/
.header {
    width: 298px;
    line-height: 26px;
    display: flex;
    justify-content: space-between;
    position: absolute;
    right: 5%;
    /*top: 5%;*/
    top: 23px;
}
.logo-sty {
    width: 245px;height: 38px;
    display: inline-block;
    position: absolute;
    top: 14px;
    left: 10%;
    line-height: 38px;
    font-size: 18px;
    font-weight: 600;
}
.header a {
    font-size: 18px;
    font-family: AlibabaPuHuiTi-Medium, AlibabaPuHuiTi;
    font-weight: 500;
    color: #606266;
    line-height: 26px;
}
.form,.container {
    height: 100%;
    min-width: 1300px;
    background-color: #F4F8FE;
}
/* 登入页样式变更*/
.login-wraper {
    /*background-image: url("../image/login_bg.png");*/
    /*background-size: 100% 100%;*/
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}
/* 登入页样式变更*/
.login {
    width: 1200px;
    height: 600px;
    display: flex;
    /*box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.2);*/
    /*border-radius: 16px;*/
    overflow: hidden;
    margin-top: 80px;
}

.login img {
    height: 440px;
    width: 755px;
}
/* 登入页样式变更*/
.login-main {
    /*padding: 70px;*/

    /*width: 385px;*/
    width: 350px;
    height: 408px;
    /*padding: 16px;*/
    margin: 0 16px;
    background: #fff;
    padding: 50px 33px 16px;
}

.login-main_title {
    font-size: 38px;
    color: #000000;
    line-height: 1;
}

.login-main_line {
    width: 200px;
    height: 2px;
    margin: 40px auto;
    background: #8090d9;
    box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.2);
}

.login-form {
    margin: 24px auto 0;
}

.form-item {
    width: 350px;
    height: 40px;
    margin-bottom: 24px;
    position: relative;
}

.form-item-verify {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.form-item-argument {
    color: rgba(0, 0, 0, 0.65);
    font-size: 14px;
}

.form-item .form-item_icon {
    position: absolute;
    left: 13px;
    top: 10px;
    width: 17px;
    height: 17px;
}

.form-item .form-item_text {
    box-sizing: border-box;
    width: 350px;
    height: 38px;
    padding-left: 40px;
    box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.08);
    border-radius: 4px;
    border: 1px solid #bbb;
    outline: none;
}

.form-item_btn {
    width: 350px;
    height: 40px;
    border-radius: 2px;
    /*background: #8090d9;*/
    background: #1890FF;
    color: #fff;
}

.form-item_btn:hover {
    cursor: pointer;
    opacity: 0.9;
}

.login .form-item_verify {
    width: 100px;
    height: 38px;
}

.form-item_verify:hover {
    cursor: pointer;
}

.login-message {
    min-width: 380px;
    box-sizing: border-box;
    border-radius: 4px;
    border: 1px solid #ebeef5;
    position: fixed;
    left: 50%;
    top: 20px;
    transform: translateX(-50%);
    transition: opacity 0.3s, transform 0.4s, top 0.4s;
    overflow: hidden;
    padding: 15px 15px 15px 20px;
    display: flex;
    background-color: #fef0f0;
    border-color: #fde2e2;
    color: #f56c6c;
}

.login-message img {
    width: 20px;
    height: 20px;
    margin-right: 10px;
}
.login-tab {
    display: flex;
    margin: 38px 0 30px 0;
}
.login-tab_item {
    font-weight: 400;
    color: #595959;
    line-height: 24px;
    margin-right: 32px;
    position: relative;
}
.login-tab_item:hover {
    color: #6378D6;
    cursor: pointer;
}
.tab-active {
    color: #6378D6;
}
.tab-active:after {
    content: '';
    position: absolute;
    background: #6378D6;
    bottom: -8px;
    left: 0;
    width: 64px;
    height: 2px;
}
.verify-code:hover {
    cursor: pointer;
    opacity: 0.8;
}
.verify-code {
    width: 100px;
    height: 38px;
    background: #FFFFFF;
    color: #677DE2;
    box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.2);
    border-radius: 2px;
    border: 1px solid #8090D9;
}
.dialog-wraper {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.65);
    /* display: none; */

}
.dialog {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 432px;
    padding: 32px;
    background-color: #fff;
    border-radius: 4px;
}
.dialog-title {
    font-size: 16px;
    font-weight: 500;
    color: rgba(0, 0, 0, 0.85);
    line-height: 24px;
}
.dialog-body {
    font-weight: 400;
    color: #666666;
    line-height: 22px;
    font-size: 14px;
    padding: 12px 0;
}
.dialog-footer {
    padding: 12px 0 0 0;
    float: right;
}
.btn {
    padding: 5px 16px;
    font-weight: 400;
    color: #666666;
    line-height: 22px;
    font-size: 14px;
    background: #FAFAFA;
    border: 1px solid #DDDDDD;
    border-radius: 2px;
}
.btn:hover {
    opacity: 0.8;
    cursor: pointer;
}
.btn-primary {
    background: #6C83EF;
    color: #fff;
}
