/* 美化select */
select {
    border: none;
    outline: none;
    appearance:none;
    -moz-appearance:none;
    -webkit-appearance:none;
    padding-right: 14px;
    background: url("../img/login/select.png") no-repeat scroll right center transparent;
    background-size: 12px;
    cursor: pointer;
}

body, html {
    height: 100%;
    padding: 0;
}

.login-wrap {
    height: calc(100% - 60px - 80px);
    background-color: #F1F5FE;
    position: relative;
    min-height: 450px;
}

.login-wrap .bg-img {
    position: absolute;
    left: 0;
    bottom: 0;
    max-height: 90%;
}

.login-wrap > .w{
    position: relative;
}

.dn {
    display: none;
}

.login-wrap a,
.login-wrap span,
.login-wrap input,
.login-wrap select {
    font-size: 13px;
}

.login-footer {
    padding: 14px 0;
    height: 80px;
    text-align: center;
}

.login-footer p, .login-footer p a{
    line-height: 26px;
    font-size: 13px;
}
.login-footer p a{
	color: #346fb5;
}

.login-containner {
    background: #fff;
    width: 400px;
    padding: 30px 0;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translate(0, -50%);
}

.login-containner.no-select {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.lf {
    float: left;
}

.err-msg {
    text-align: center;
    color: #ff0000;
}

.lr {
    float: right;
}

a.blue {
    color: #346fb5;
}

a.blue:hover {
    text-decoration: underline !important;
}

.form-group:after {
    content: ' ';
    display: table;
    clear: both;
}

.form-group {
    width: 100%;
    padding: 5px 20px;
}

.form-group-auth {
    display: flex;
    padding: 10px;
}

.form-group-auth > .title {
    line-height: 34px;
}

.form-group-auth .content {
    padding-left: 10px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex: 1;
}

.form-group-auth .content > div {
    cursor: pointer;
}

.form-group-auth .content .g-siginin {
    display: block;
    width: 34px;
    height: 34px;
    overflow: hidden;
    background: url("../img/login/google.jpg");
    background-size: contain;
    margin-left: 10px;
}

.form-group-auth .content .f-siginin {
    display: block;
    width: 34px;
    height: 34px;
    overflow: hidden;
    background: url("../img/login/34929128_2542370199321677_3462617962773479424_n.png");
    background-size: contain;
    margin-left: 10px;
}

.form-group-auth .content .l-siginin {
    display: block;
    width: 34px;
    height: 34px;
    overflow: hidden;
    background: url("../img/login/ly.jpg");
    background-size: contain;
    margin-left: 10px;
}

.mini-input {
    display: block;
    color: #666;
    border: none;
    outline: none;
    height: 36px;
    line-height: 36px;
}

input[type="text"],
input[type="password"] {
    width: 100%;
    line-height: 36px;
    height: 36px;
    padding-left: 5px;
    border: none;
    box-shadow: 0 0 0 1px #e3e3e3;
    outline: none;
    transition: all .3s;
}

input[type="text"]:focus,
input[type="password"]:focus {
    box-shadow: 0 0 3px 1px #3982dc;
}

label input[type='checkbox'] {
    display: inline-block;
    vertical-align: middle;
    margin-bottom: 2px;
}

.sub-btn {
    width: 100%;
    border-radius: 4px;
    line-height: 42px;
    font-size: 16px !important;
}

.sub-btn.white {
    background: #fff;
    color: #1da1f2;
}

.sub-btn.white:hover {
    text-decoration: underline !important;
}

/* 滑块验证CSS */
.slide-verify {
    height: 36px;
    line-height: 36px;
    text-align: center;
    width: 100%;
    background: #e0e0e0;
    border: 1px solid #e0e0e0;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.slide-verify .title {
    position: relative;
    display: inline-block;
    line-height: 36px;
    color: #fff;
    z-index: 9;
}

.slide-verify .flash-bar {
    line-height: 36px;
    font-size: 13px;
    text-align: center;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-image: -webkit-linear-gradient(-45deg, rgba(0, 0, 0, 0.6) 30%, #aff0ff 50%, rgba(0, 0, 0, 0.6) 70%);
    background-blend-mode: hard-light;
    background-size: 300%;
    -webkit-animation: shine 4s infinite;
}

.slide-verify .slide-bar {
    height: 100%;
    width: 50px;
    background: #fff;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 99;
    cursor: move;
}

.slide-verify .slide-bar i {
    line-height: 36px;
}

.slide-verify .slide-bar i.success {
    color: #7ac23c;
}

.slide-verify .slide-bg {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0;
    background: #7ac23c;
    z-index: 1;
}

@-webkit-keyframes shine {
    from {
        background-position: 100%;
    }
    to {
        background-position: 0;
    }
}
