﻿/*玻璃效果=============================*/
.glass-box {
    position: relative;
}

    .glass-box::before {
        content: "";
        position: absolute;
        width: 100%;
        height: 100%;
        opacity: 0.5;
        z-index: -1;
    }

    .glass-box.bg-color-gray:before {
        background-color: gray;
    }

    .glass-box.radius::before {
        border-radius: 6px;
    }

    .glass-box .glass-content {
        z-index: 1;
    }
/*====================================*/

[v-cloak] {
    display: none;
}

.valid-code {
    cursor: pointer;
}

.bg-image {
    position: absolute;
    background: url(/Images/main-bg.jpg);
    width: 100%;
    height: 1518px;
    top: -389px;
    /*background-size: contain;*/
    background-repeat: no-repeat;
    z-index: -1;
    background-position-x: center;
}

.eye {
    position: absolute;
    top: 0;
    right: 9px;
    height: 40px;
    vertical-align: middle;
    line-height: 40px;
    font-size: 20px;
    cursor: pointer;
}

.el-input.pass-show .text {
    position: absolute;
    top: 0;
    height: 40px;
    line-height: 40px;
    left: 16px;
    background: white;
}

.el-input.pass-show .hidden {
    display: none;
}