* {
    margin: 0;
    padding: 0;
}

.box {
    background-color: #fff;
    width: 100vw;
    height: 100vh;
}

    .box .content {
        width: 85vw;
        height: 90vh;
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        border-radius: 20px;
        -o-object-fit: cover;
        object-fit: cover;
        transition: 0.5s;
    }

        .box .content .login-wrapper {
            width: 500px;
            height: 80%;
            position: absolute;
            left: 35%;
            top: 50%;
            transform: translate(-50%, -50%);
            box-sizing: border-box;
        }


            .box .content .login-wrapper .mask {
                width: 100%;
                height: 100%;
                border-radius: 20px;
                border-top-left-radius: 20px;
                border-bottom-left-radius: 20px;
                position: absolute;
                background: rgba(252, 250, 250, 0.3);
                -webkit-backdrop-filter: blur(3px); /*1.5px 比较清晰*/
                backdrop-filter: blur(3px); /*1.5px 比较清晰*/
            }

            .box .content .login-wrapper .login-content {
                width: 80%;
                position: absolute;
                top: 40%;
                left: 50%;
                transform: translate(-50%, -50%);
                z-index: 10;
                margin-top: 65px;
            }

                .box .content .login-wrapper .login-content h1 {
                    font-size: 35px;
                    color: rgb(65, 64, 64);
                    text-align: center;
                    margin-bottom: 20px;
                }

                .box .content .login-wrapper .login-content h2 {
                    font-size: 25px;
                    margin-bottom: 20px;
                    margin-left:15px;
                }

                .box .content .login-wrapper .login-content .title-text {
                    font-size: 20px;
                    color: rgb(51, 50, 50);
                    text-align: right;
                    margin-bottom: 20px;
                    margin-right:15px;
                }

                .box .content .login-wrapper .login-content .other-login {
                    width: 100%;
                    height: 50px;
                    background-color: rgb(248, 182, 217);
                    border-radius: 5px;
                    transition: 1s;
                    text-align: center;
                    line-height: 50px;
                    font-weight: 600;
                    font-size: 20px;
                    margin-bottom: 20px;
                    color: rgb(41, 41, 41);
                    cursor: pointer;
                }

                    .box .content .login-wrapper .login-content .other-login img {
                        width: 35px;
                        height: 35px;
                        vertical-align: middle;
                    }

                .box .content .login-wrapper .login-content .login-form1 {
                    margin-top: 10px;
                }

                    .box .content .login-wrapper .login-content .login-form1 input {
                        width: 90%;
                        height: 45px;
                        margin: 10px 0;
                        margin-left:15px;
                        border-radius: 5px;
                        border: 0;
                        padding: 10px;
                        box-sizing: border-box;
                        font-weight: 100;
                        font-size: 16px;
                    }

                        .box .content .login-wrapper .login-content .login-form1 input:focus {
                            outline: none;
                        }


                        .box .content .login-wrapper .login-content .login-form1 input::-moz-placeholder {
                            font-weight: 500;
                            color: gray;
                        }

                        .box .content .login-wrapper .login-content .login-form1 input:-ms-input-placeholder {
                            font-weight: 500;
                            color: gray;
                        }

                        .box .content .login-wrapper .login-content .login-form1 input::placeholder {
                            font-weight: 500;
                            color: gray;
                        }

                   

                .box .content .login-wrapper .login-content .login-btn {
                    width: 100%;
                    height: 45px;
                    margin-top: 25px;
                    border-radius: 5px;
                    border: 0;
                    background-color: rgb(54, 59, 197);
                    color: #fff;
                    font-size: 22px;
                    font-weight: 600;
                }

                .box .content .login-wrapper .login-content .tips {
                    margin: 5px 0;
                    font-size: 14px;
                    color: dimgray;
                    margin-left:15px;
                }

                    .box .content .login-wrapper .login-content .tips span:nth-child(2) {
                        color: rgb(54, 59, 197);
                        font-weight: 600;
                    }




        .box .content .login-wrapper2 {
            width: 500px;
            height: 90%;
            position: absolute;
            left: 35%;
            top: 50%;
            transform: translate(-50%, -50%);
            box-sizing: border-box;
        }


        .box .content .login-wrapper2 .mask {
            width: 100%;
            height: 100%;
            border-radius: 20px;
            border-top-left-radius: 20px;
            border-bottom-left-radius: 20px;
            position: absolute;
            background: rgba(252, 250, 250, 0.3);
            -webkit-backdrop-filter: blur(1.5px);
            backdrop-filter: blur(1.5px);
        }

        .box .content .login-wrapper2 .login-content {
            width: 80%;
            position: absolute;
            top: 40%;
            left: 50%;
            transform: translate(-50%, -50%);
            z-index: 10;
            margin-top: 65px;
        }

            .box .content .login-wrapper2 .login-content h1 {
                font-size: 35px;
                color: rgb(65, 64, 64);
                text-align: center;
                margin-bottom: 20px;
            }

            .box .content .login-wrapper2 .login-content h2 {
                font-size: 25px;
                margin-bottom: 20px;
                margin-left: 15px;
            }

            .box .content .login-wrapper2 .login-content .title-text {
                font-size: 20px;
                color: rgb(51, 50, 50);
                text-align: right;
                margin-bottom: 20px;
                margin-right: 15px;
            }

            .box .content .login-wrapper2 .login-content .other-login {
                width: 100%;
                height: 50px;
                background-color: rgb(248, 182, 217);
                border-radius: 5px;
                transition: 1s;
                text-align: center;
                line-height: 50px;
                font-weight: 600;
                font-size: 20px;
                margin-bottom: 20px;
                color: rgb(41, 41, 41);
                cursor: pointer;
            }

                .box .content .login-wrapper2 .login-content .other-login img {
                    width: 35px;
                    height: 35px;
                    vertical-align: middle;
                }

            .box .content .login-wrapper2 .login-content .login-form1 {
                margin-top: 10px;
            }

                .box .content .login-wrapper2 .login-content .login-form1 input {
                    width: 90%;
                    height: 45px;
                    margin: 10px 0;
                    margin-left: 15px;
                    border-radius: 5px;
                    border: 0;
                    padding: 10px;
                    box-sizing: border-box;
                    font-weight: 100;
                    font-size: 16px;
                }


                    .box .content .login-wrapper2 .login-content .login-form1 input:focus {
                        outline: none;
                    }


                    .box .content .login-wrapper2 .login-content .login-form1 input::-moz-placeholder {
                        font-weight: 500;
                        color: gray;
                    }

                    .box .content .login-wrapper2 .login-content .login-form1 input:-ms-input-placeholder {
                        font-weight: 500;
                        color: gray;
                    }

                    .box .content .login-wrapper2 .login-content .login-form1 input::placeholder {
                        font-weight: 500;
                        color: gray;
                    }



            .box .content .login-wrapper2 .login-content .login-btn {
                width: 100%;
                height: 45px;
                margin-top: 25px;
                border-radius: 5px;
                border: 0;
                background-color: rgb(54, 59, 197);
                color: #fff;
                font-size: 22px;
                font-weight: 600;
            }

            .box .content .login-wrapper2 .login-content .tips {
                margin: 5px 0;
                font-size: 14px;
                color: dimgray;
                margin-left: 15px;
            }

                .box .content .login-wrapper2 .login-content .tips span:nth-child(2) {
                    color: rgb(54, 59, 197);
                    font-weight: 600;
                }




.user-login-foot-main {
    margin-bottom: 50px !important;
    width: 100% !important;
    font-size: 15px !important;
    text-align: center !important;
    color: gray !important;
    height: 60px !important;
    line-height: 60px !important;
}

.user-login-foot {
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    text-align: center;
    margin-bottom: 0px;
    color: #8c92a4;
}

    .user-login-foot a {
        margin-left: 5px;
        color: #8c92a4;
    }






/* 滑动控件容器,灰色背景 #e8e8e8*/
#dragContainer {
    position: relative;
    display: inline-block;
    background: #e8e8e8;
    width: 350px;
    height: 33px;
    border: 1px solid #e8e8e8;
    border-radius: 5px;
}
/* 滑块左边部分,绿色背景 border: 2px solid #e8e8e8;*/
#dragBg {
    position: absolute;
    background-color: #7ac23c;
    width: 0px;
    height: 100%;
}
/* 滑动验证容器文本 */
#dragText {
    position: absolute;
    width: 100%;
    height: 100%;
    /* 文字水平居中 */
    text-align: center;
    /* 文字垂直居中,这里不能用百分比,因为百分比是相对原始line-height的,而非div高度 */
    line-height: 33px;
    /* 文本不允许选中 */
    user-select: none;
    -webkit-user-select: none;
    color:gray;
}
/* 滑块 */
#dragHandler {
    position: absolute;
    width: 40px;
    height: 100%;
    cursor: move;
}
/* 滑块初始背景 */
.dragHandlerBg {
    background: #fff no-repeat center url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAA3hpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNS1jMDIxIDc5LjE1NTc3MiwgMjAxNC8wMS8xMy0xOTo0NDowMCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD0ieG1wLmRpZDo0ZDhlNWY5My05NmI0LTRlNWQtOGFjYi03ZTY4OGYyMTU2ZTYiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6NTEyNTVEMURGMkVFMTFFNEI5NDBCMjQ2M0ExMDQ1OUYiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6NTEyNTVEMUNGMkVFMTFFNEI5NDBCMjQ2M0ExMDQ1OUYiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIDIwMTQgKE1hY2ludG9zaCkiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDo2MTc5NzNmZS02OTQxLTQyOTYtYTIwNi02NDI2YTNkOWU5YmUiIHN0UmVmOmRvY3VtZW50SUQ9InhtcC5kaWQ6NGQ4ZTVmOTMtOTZiNC00ZTVkLThhY2ItN2U2ODhmMjE1NmU2Ii8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+YiRG4AAAALFJREFUeNpi/P//PwMlgImBQkA9A+bOnfsIiBOxKcInh+yCaCDuByoswaIOpxwjciACFegBqZ1AvBSIS5OTk/8TkmNEjwWgQiUgtQuIjwAxUF3yX3xyGIEIFLwHpKyAWB+I1xGSwxULIGf9A7mQkBwTlhBXAFLHgPgqEAcTkmNCU6AL9d8WII4HOvk3ITkWJAXWUMlOoGQHmsE45ViQ2KuBuASoYC4Wf+OUYxz6mQkgwAAN9mIrUReCXgAAAABJRU5ErkJggg==");
}
/* 验证成功时的滑块背景 有√*/
.dragHandlerOkBg {
    background: #fff no-repeat center url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAA3hpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNS1jMDIxIDc5LjE1NTc3MiwgMjAxNC8wMS8xMy0xOTo0NDowMCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD0ieG1wLmRpZDo0ZDhlNWY5My05NmI0LTRlNWQtOGFjYi03ZTY4OGYyMTU2ZTYiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6NDlBRDI3NjVGMkQ2MTFFNEI5NDBCMjQ2M0ExMDQ1OUYiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6NDlBRDI3NjRGMkQ2MTFFNEI5NDBCMjQ2M0ExMDQ1OUYiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIDIwMTQgKE1hY2ludG9zaCkiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDphNWEzMWNhMC1hYmViLTQxNWEtYTEwZS04Y2U5NzRlN2Q4YTEiIHN0UmVmOmRvY3VtZW50SUQ9InhtcC5kaWQ6NGQ4ZTVmOTMtOTZiNC00ZTVkLThhY2ItN2U2ODhmMjE1NmU2Ii8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+k+sHwwAAASZJREFUeNpi/P//PwMyKD8uZw+kUoDYEYgloMIvgHg/EM/ptHx0EFk9I8wAoEZ+IDUPiIMY8IN1QJwENOgj3ACo5gNAbMBAHLgAxA4gQ5igAnNJ0MwAVTsX7IKyY7L2UNuJAf+AmAmJ78AEDTBiwGYg5gbifCSxFCZoaBMCy4A4GOjnH0D6DpK4IxNSVIHAfSDOAeLraJrjgJp/AwPbHMhejiQnwYRmUzNQ4VQgDQqXK0ia/0I17wJiPmQNTNBEAgMlQIWiQA2vgWw7QppBekGxsAjIiEUSBNnsBDWEAY9mEFgMMgBk00E0iZtA7AHEctDQ58MRuA6wlLgGFMoMpIG1QFeGwAIxGZo8GUhIysmwQGSAZgwHaEZhICIzOaBkJkqyM0CAAQDGx279Jf50AAAAAABJRU5ErkJggg==");
}



/*# sourceMappingURL=style.css.map */
