﻿html,
body {
    margin: 0;
    padding: 0;
    font-size: 12px;
    background: #f5f6f8;
    /*background: linear-gradient(60deg, #541466 0, #17b9e6 100%);*/
}

[v-cloak] {
    display: none;
}

::-webkit-scrollbar {
    width: 6Px;
    height: 6Px
}

::-webkit-scrollbar-thumb {
    border: 1PX solid #fff;
    border-radius: 6Px;
    background: #ddd
}

::-webkit-scrollbar-thumb:hover {
    background: #ddd
}

.signin-page {
    width: 100vw;
    height: 100vh;
}

.iframe-page {
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    box-sizing: border-box;
}

.iframe-page::-webkit-scrollbar {
    display: none;
}

input:-webkit-autofill {
    background: transparent !important;
    transition: background-color 500000s ease-in-out 0s !important;
    -webkit-text-fill-color: var(--el-input-text-color);
}

input:-internal-autofill-selected {
    background-color: transparent !important;
}


@media (max-width: 768px) {
    .login-wrap {
        width: 100%
    }

    .change-tab {
        top: 0;
        left: 0;
        width: 100%;
    }

    .change-tab div {
        line-height: 24px;
    }
}

@media (min-width: 768px) {
    .login-wrap {
        width: 420px;
        border: 1px solid #ddd;
        border-radius: 8px;
        box-shadow: 0 0 5px 5px rgba(0, 0, 0, .05);
    }

    .change-tab {
        width: 420px;
        top: 30px;
        left: 50%;
        margin-left: -210px;
        border-radius: 8px;
        box-shadow: 0 0 5px 5px rgba(0, 0, 0, .05);
    }

    .change-tab div {
        line-height: 60px;
    }

    .change-tab div:first-child {
        border-radius: 8px 0 0 8px;
    }

    .change-tab div:last-child {
        border-radius: 0 8px 8px 0;
    }
}

.login-wrap {
    /*position: relative;*/
    position: absolute;
    margin: 0 auto;
    background: #fff;
    /*min-height: 409px;*/
    box-sizing: border-box;
    right: 252px;
    top: 50%;
    margin-top: -252px;
}

.change-tab {
    position: absolute;
    display: flex;
    align-items: center;
    font-size: 16px;
}

.change-tab div {
    flex: 1;
    cursor: pointer;
    background: #ffffff;
    box-sizing: border-box;
    text-align: center;
}

.change-tab div.active {
    background: #007aeb;
    color: #ffffff;
}

@media (min-width: 768px) {
    .form-page {
        padding-top: 100px;
    }
}

.form-page {
    position: relative;
    min-height: 100vh;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    /*background: url(img/signinbg.jpg) no-repeat;*/
}



.login-title {
    text-align: center;
    font-size: 24px;
    padding: 16px 0;
}

.login-form {
    width: 340px;
    margin: 50px auto 15px auto;
}

.login-form .el-form-item {
    margin-bottom: 26px;
}

.login-form .el-form-item__error {
    padding-top: 4px;
}

.login-form-hadcode {
    margin-top: 18px;
}

.login-code-left {
    width: 200px;
}

.login-code-right {
    width: 100px;
    height: 38px;
    margin-left: 20px;
}

.login-code-right img {
    height: 30px;
}

.btn-clear-cache {
    position: absolute;
    right: 12px;
    bottom: 12px;
    border-radius: 50px;
    background: 0 0;
    padding: 6px 15px;
    border: 1px solid #4fa1d9;
    color: #4fa1d9;
    font-size: 12px;
    cursor: pointer;
}