@charset "utf-8";

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    outline: none;
}

html,
body {
    height: 100%;
    font-family: sans-serif;
}

body {
    font-size: 14px;
    overflow-x: hidden;
    background-color: #F6F8F9;
    /* background-color: #FFF; */
}

a {
    transition: all 0.3s;
    text-decoration: none;
}

a:hover,
a:active,
a:focus {
    outline: none;
    text-decoration: none;
}

textarea {
    font: 400 13.3333px Arial;
}

::-webkit-scrollbar {
    width: 4px;
    height: 4px;
}

::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, .2);
}

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

@keyframes fadeIn {
    0% {
        transform: translate(0, 100px);
        opacity: 0;
    }

    100% {
        transform: translate(0, 0);
        opacity: 1;
    }
}

.details {
    padding: 120px 60px 60px 60px;
    animation: fadeIn .3s;
}

.details .box {
    width: 100%;
    background-color: #FFF;
    border-radius: 4px;
    padding: 50px;
    box-shadow: 0 0 4px 2px rgba(200, 200, 200, .1);
}

.details .box .tit {
    width: 100%;
    text-align: center;
    font-size: 20px;
    color: #445566;
}

.details .box .istime {
    width: 100%;
    height: 40px;
    line-height: 40px;
    text-align: center;
    font-size: 12px;
    color: #999;
}

.details .box .content {
    width: 100%;
}

.head {
    position: fixed;
    z-index: 3;
    left: 0;
    top: 0;
    right: 0;
    height: 60px;
    background-color: #FFF;
    border-bottom: 1px solid #EFEFEF;
    /* box-shadow: 0 0 4px 2px rgba(0, 0, 0, .1); */
    display: flex;
}

.head .logo {
    width: 100%;
    height: 60px;
    margin-left: 20px;
}

.head .logo img {
    height: 40px;
    margin: 10px 20px 10px 0;
    float: left;
}

.head .logo p {
    height: 60px;
    line-height: 60px;
    float: left;
    font-size: 30px;
    font-weight: bold;
    color: #409EFF;
}

.head .rbox {
    flex: 1;
    height: 60px;
    line-height: 60px;
    text-align: right;
    padding-right: 20px;
}

.right {
    position: fixed;
    z-index: 1;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height:100%;
    background-image: url('../img/login_bg.jpg');
    background-repeat: no-repeat;
    background-size: 100%;
}

.footer {
    position: fixed;
    z-index: 3;
    left: 0;
    right: 0;
    bottom: 0;
    height: 30px;
    line-height: 30px;
    text-align: center;
    font-size: 14px;
    color: #445566;
    background-color: #FFF;
    border-top: 1px solid #EFEFEF;
}

.login {
    position: fixed;
    z-index: 2;
    width: 940px;
    height: 420px;
    left: 50%;
    top: 50%;
    margin: -220px 0 0 -500px;
}

.login .left {
    width: 480px;
    height: 420px;
    float: left;
}

.login .left .tit {
    width: 100%;
    height: 50px;
    line-height: 50px;
    float: left;
    font-size: 20px;
    color: #000000;
    border-bottom: 1px solid #EFEFEF;
}

.login .left .ulit {
    width: 100%;
    height: 370px;
    overflow-x: hidden;
    overflow-y: auto;
}

.login .left .ulit li {
    list-style: none;
    margin-top: 10px;
    padding: 15px;
    background-color: #FFF;
    display: flex;
    flex-direction: row;
    align-items: center;
    transition: all 0.3s;
    border-radius: 4px;
}

.login .left .ulit li:hover {
    background-color: #E8F3FF;
}

.login .left .ulit li a {
    flex: 1;
    color: #445566;
    padding-right: 15px;
}

.login .left .ulit li p {
    width: 120px;
    height: 50px;
    line-height: 50px;
    font-size: 14px;
    color: #999;
    text-align: center;
    border-left: 1px solid #EFEFEF;
}

.login .info {
    width: 440px;
    height: 420px;
    float: right;
    background-color: #FFF;
    border-radius: 4px;
    box-shadow: 0 0 12px 2px rgba(0, 0, 0, .1);
}

.login .info .tit {
    width: 100%;
    height: 100px;
    line-height: 120px;
    text-indent: 70px;
    font-size: 20px;
    color: #445566;
}

.login .info .verify {
    width: 100%;
    height: 40px;
    border: 1px solid #DCDFE6;
    border-radius: 4px;
    cursor: pointer;
}

.login .info .onaree {
    color: #409EFF;
}

.login .info .bt {
    width: 100%;
}

.login .info .bt a {
    color: #445566;
}

.register {
    width: 760px;
    margin: 0 auto;
    padding-bottom: 70px;
    background-color: #FFF;
    border-radius: 4px;
    box-shadow: 0 0 12px 2px rgba(0, 0, 0, .1);
}

.register .top {
    width: 100%;
    height: 50px;
    line-height: 50px;
    text-align: right;
    padding-right: 20px;
}

.register .top a {
    font-size: 14px;
    color: #409EFF;
}

.register .info {
    width: 760px;
    padding: 0 100px 0 50px;
}

.register .info .tit {
    font-size: 20px;
    height: 70px;
    line-height: 50px;
    text-indent: 120px;
    color: #445566;
}

.register .info .el-form-item__label {
    padding-bottom: 0 !important;
}

.register .info .verify {
    width: 100%;
    height: 40px;
    border: 1px solid #DCDFE6;
    border-radius: 4px;
    cursor: pointer;
}

.register .info .onaree {
    color: #409EFF;
}

.pc-hide { display: none; }

@media screen and (max-width: 769px) {
    .pc-hide { display: inherit; }

    #app{
        width: 100%;
        overflow-x: hidden;
        overflow-y: auto;

        padding-top: constant(safe-area-inset-top);
        padding-top: env(safe-area-inset-top);
        padding: 0 !important;
    }

    #app{
        display: flex;
        align-items: flex-start;
        justify-content: center;
        background-color: #FFF;
    }

    .register {
        width: 100%;
        padding-bottom: 70px;
        background-color: #FFF;
        border-radius: 4px;
        box-shadow: 0 0 12px 2px rgb(0 0 0 / 10%);
        
        padding-top: 60px;
    }

    .register .info {
        width: 100%;
        padding: 0 10px 0 10px;
    }

    .register .info .tit {
        font-size: 20px;
        height: 70px;
        line-height: 50px;
        text-indent: unset;
        color: #445566;

        text-align: center;
    }

    .el-row {
        display: flex;
        align-items: flex-end;
        margin-bottom: 10px;
    }
    .el-row .el-form-item {
        margin-bottom: 5px;
    }
    .register .top {
        line-height: 72px;
    }
    .register .info .el-form .el-form-item {
        margin-bottom: 2px !important; 
    }

    .register .info .el-form .el-form-item:nth-child(9) .el-form-item__content{
        margin-left: 0px !important;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .register .info .el-form .el-form-item:nth-of-type(10) .el-form-item__content{
        margin-left: 0px !important;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .register .info .el-form-item__label {
        font-size: 12px !important;
        width: 100px !important;
        line-height: 36px !important;
        text-align: left;
    }

    .register .info .el-form-item__content {
        margin-left: 0px !important;
        line-height: 32px;
        position: relative;
        font-size: 12px !important;
    }

    .el-input {
        font-size: 12px !important;
    }

    .el-input__inner {
        height: 36px !important;
        line-height: 36px !important;
    }
    
    .el-dialog {
        width: 90vw !important;
    }

    .el-dialog__body {
        padding: 20px 15px;
    }

    .el-form {
        padding: 0px 15px 0px 15px !important;
    }

    .details {
        padding: 80px 20px 20px 20px;
    }

    .details .box {
        padding: 20px;
        padding-top: 40px;
    }

    .head .logo {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: flex-start;
    }

    .head .logo img {
        margin: 0;
        height: 36px;
        width: 36px;
        display: none;
    }

    .head .logo p  {
        height: 20px;
        width: 100%;
        line-height: 20px;
        float: unset;
        font-size: 20px;
        font-weight: bold;
        color: #ffffff;
        text-align: center;
        letter-spacing: 2px;
    }

    .login {
        z-index: 2;
        position: relative;
        width: 100vw;
        height: unset;
        left: unset;
        top: unset;
        margin: unset;

        display: flex;
        flex-direction: column-reverse;
        align-items: center;

        padding-top: 35%;
    }

    .login .left {
        width: 100%;
        height: unset;
        float: unset;
        background-color: #F6F8F9;
        padding: 0 20px 40px;
    }

    .login .left .ulit {
        height: unset;
    }

    .login .left .ulit li {
        padding: 5px;
        margin-top: 5px;
    }

    .login .left .ulit li a {
        color: #4B5C6D;
        font-size: 0.8rem;
    }

    .login .left .ulit li p {
        color: 999999;
        font-size: 0.8rem;
    }
    
    .login .left .tit {
        color: #666666;
        height: 46px;
    }

    .login .info {
        width: 80%;    
        height: 340px;
        margin-bottom: 80px;
        float: unset;
        background-color: #FFF;
        border-radius: 4px;
        /* box-shadow: unset; */
    }

    .login .info .tit {
        width: 100%;
        height: 60px;
        line-height: 60px;
        font-size: 1rem;
        color: #445566;
        text-align: center;
        text-indent: unset;
    }

    .login .info .el-form {
        padding: 0px 1rem !important;
    }
    
    .right {
        position: fixed;
        z-index: 1;
        top: 0;
        right: 0;
        bottom: 0;
        width: 100vw;
        height: 10vh;
        background-image: url(../img/head_bg.jpg);
        background-repeat: no-repeat;
        background-size: 100% 10vh;
    }

    .head {
        position: fixed;
        z-index: 3;
        left: 0;
        top: 0;
        right: 0;
        height: 60px;
        background-color: transparent;
        border-bottom: none;
        display: flex;
    }

}