html {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    -webkit-user-select: none; /* Chrome、Safari、Opera */
    -moz-user-select: none; /* Firefox */
    -ms-user-select: none; /* IE、Edge */
    user-select: none; /* 标准语法 */
    }

* {
    outline: none;
    margin: 0;
}

.grid-container {
    ::-webkit-scrollbar {
        width: 6px;
        height: 6px;
    }

    ::-webkit-scrollbar-corner {
        background-color: transparent;
    }

    ::-webkit-scrollbar-thumb {
        background-color: rgb(188, 188, 188);
        border-radius: 4px;
    }

    ::-webkit-scrollbar-track {
        background-color: transparent;
    }
}

.bg-wrapper {
    width: 100%;
    height: 100%;
    background-image: linear-gradient(to top, #fff1eb 0%, #ace0f9 100%);
    /* background-image: linear-gradient(to top, #deecff 0%, #ffffff 100%); */
}

/* .swiper-container {
width: 100%;
height: 100vh;
} */

.preview-wrapper {
    position: relative;
    display: flex;
    flex-wrap: nowrap;
    width: 320px;
    height: 568px;
    /* position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    margin: auto; */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.preview-wrapper .phone-wrapper {
    position: absolute;
    width: 320px;
    height: 568px;
    display: inline-block;
    background: #fff;
    box-sizing: content-box;
    /* border: 10px solid #f6f6f6; */
}

.preview-wrapper .float-shortcuts {
    position: absolute;
    top: 100px;
    right: 0;
}

.preview-wrapper .float-shortcuts .page-controller {
    position: absolute;
    left: 0 !important;
    display: block;
    box-sizing: border-box;
    width: 22px;
    height: 60px;
    padding: 4px;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    cursor: pointer;
    background: #2096f9;
    font-size: 12px;
    /* border: 1px solid #2096f9; */
    color: #fff;
}

.preview-wrapper .float-shortcuts .page-controller.next {
    top: 80px;
}

.preview-wrapper .work-info {
    color: #4a4a4a;
    font-size: 12px;
    margin-left: 380px;
    text-align: center;
}

.preview-wrapper .work-info .qrcode-img {
    /* background-color: #deecff; */
    padding: 8px 8px 0px 8px;
    font-family: 'Courier New', Courier, monospace;
    color: #667397;
    background-image: linear-gradient(to top, #ffffff 0%, #deecff 100%);
}
.preview-wrapper .work-info .qrcode-img .qrcode-title{
    line-height: 30px;
}

.preview-wrapper .exit {
    position: absolute;
    width: 24px;
    opacity: 0.6;
    left: 10px;
    top: 10px;
    z-index: 9999;
}

/* 动画 */
.loading {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.text {
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    font-size: 12px;
    color: #d68e24;
    text-align: center;
    margin-top: 90px;
}

.spinner {
    position: relative;
    left: 0;
    right: 0;
    margin: auto;
    width: 15px;
    height: 15px;
    -webkit-animation: ball-rotate 1s 0s cubic-bezier(.7, -.13, .22, .86) infinite;
    -moz-animation: ball-rotate 1s 0s cubic-bezier(.7, -.13, .22, .86) infinite;
    -o-animation: ball-rotate 1s 0s cubic-bezier(.7, -.13, .22, .86) infinite;
    animation: ball-rotate 1s 0s cubic-bezier(.7, -.13, .22, .86) infinite;

    border-radius: 100%;
    background-color: #ff5722;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

.spinner:before,
.spinner:after {
    position: absolute;

    width: 15px;
    height: 15px;
    margin: 2px;

    content: '';

    opacity: .8;
    border-radius: 100%;
    background-color: #ff5722;
}

.spinner:before {
    top: 0;
    left: -28px;
}

.spinner:after {
    top: 0;
    left: 25px;
}

@-webkit-keyframes ball-rotate {
    0% {
        -webkit-transform: rotate(0deg) scale(1);
        -ms-transform: rotate(0deg) scale(1);
        -o-transform: rotate(0deg) scale(1);
        transform: rotate(0deg) scale(1);
    }

    50% {
        -webkit-transform: rotate(180deg) scale(.6);
        -ms-transform: rotate(180deg) scale(.6);
        -o-transform: rotate(180deg) scale(.6);
        transform: rotate(180deg) scale(.6);
    }

    100% {
        -webkit-transform: rotate(360deg) scale(1);
        -ms-transform: rotate(360deg) scale(1);
        -o-transform: rotate(360deg) scale(1);
        transform: rotate(360deg) scale(1);
    }
}

@-moz-keyframes ball-rotate {
    0% {
        -webkit-transform: rotate(0deg) scale(1);
        -ms-transform: rotate(0deg) scale(1);
        -o-transform: rotate(0deg) scale(1);
        transform: rotate(0deg) scale(1);
    }

    50% {
        -webkit-transform: rotate(180deg) scale(.6);
        -ms-transform: rotate(180deg) scale(.6);
        -o-transform: rotate(180deg) scale(.6);
        transform: rotate(180deg) scale(.6);
    }

    100% {
        -webkit-transform: rotate(360deg) scale(1);
        -ms-transform: rotate(360deg) scale(1);
        -o-transform: rotate(360deg) scale(1);
        transform: rotate(360deg) scale(1);
    }
}

@-o-keyframes ball-rotate {
    0% {
        -webkit-transform: rotate(0deg) scale(1);
        -ms-transform: rotate(0deg) scale(1);
        -o-transform: rotate(0deg) scale(1);
        transform: rotate(0deg) scale(1);
    }

    50% {
        -webkit-transform: rotate(180deg) scale(.6);
        -ms-transform: rotate(180deg) scale(.6);
        -o-transform: rotate(180deg) scale(.6);
        transform: rotate(180deg) scale(.6);
    }

    100% {
        -webkit-transform: rotate(360deg) scale(1);
        -ms-transform: rotate(360deg) scale(1);
        -o-transform: rotate(360deg) scale(1);
        transform: rotate(360deg) scale(1);
    }
}

@keyframes ball-rotate {
    0% {
        -webkit-transform: rotate(0deg) scale(1);
        -ms-transform: rotate(0deg) scale(1);
        -o-transform: rotate(0deg) scale(1);
        transform: rotate(0deg) scale(1);
    }

    50% {
        -webkit-transform: rotate(180deg) scale(.6);
        -ms-transform: rotate(180deg) scale(.6);
        -o-transform: rotate(180deg) scale(.6);
        transform: rotate(180deg) scale(.6);
    }

    100% {
        -webkit-transform: rotate(360deg) scale(1);
        -ms-transform: rotate(360deg) scale(1);
        -o-transform: rotate(360deg) scale(1);
        transform: rotate(360deg) scale(1);
    }
}

.pageBox {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #f6f6f6;
    overflow: hidden;
    z-index: 10;
}

.pagebg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

.page {
    position: absolute;
    width: 100%;
    top: 50%;
    transform: translateY(-50%) scale(1);
    -ms-transform: translateY(-50%) scale(1);    /* IE 9 */
    -moz-transform: translateY(-50%) scale(1);    /* Firefox */
    -webkit-transform: translateY(-50%) scale(1); /* Safari 和 Chrome */
    -o-transform: translateY(-50%) scale(1);     /* Opera */
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.pageloading {
    position: relative;
    width: 100%;
    --sk-size: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.pagelogo {
    width: 100%;
    /* height: 100%; */
    object-fit: contain;
}

.pageText {
    position: relative;
    width: 100%;
    text-align: center;
}
 
.login-wrapper {
    /* background-color: #fff; */
    /* width: 358px; */
    height: 100%;
    border-radius: 5px;
    padding: 0 35px;
    position: relative;
    overflow: hidden;
    background-image: linear-gradient(to top, #ffffff 0%, #deecff 100%);
    z-index: 11;

    /* left: 50%;
    top: 50%;
    transform: translate(-50%, -50%); */
}
.login-wrapper.zjdx{
    background: url('../uploads/bg.jpg') center no-repeat;
    background-size: cover;
}
.login-wrapper.gdgydx{
    padding: 0 25px;
    background: url('../uploads/gdgydxBg.png') center no-repeat;
    background-size: cover;
}
.header {
    position: relative;
    width: 100%;
    height: 200px;    
    /* font-family: 'Courier New', Courier, monospace; */
    color: #3b445c;
    padding-top: 100px;
    box-sizing: border-box;
}
.header .header-title{
    font-size: 26px;
    font-weight: 500;
}

.login-wrapper.zkd{
    background: url('../uploads/zkd/bg.png') center no-repeat;
    background-size: cover;
    background-position: top;
    position: relative;
}
.zkd .title{
    width: 100%;
    position: absolute;
    left: 0;
    margin: 0;
}
.zkd .loginBut{
    width: 100%;
    position: absolute;
    left: 0;
    top: 27%;
    text-align: center;
}
.zkd .loginBut img{
    width: 50%;
}
.zkd .checkboxbox{
    width: 100%;
    position: absolute;
    left: 0;
    top: 33%;
}
.zkd .checkboxbox .input-tip{
    color: #3d787d;
    font-weight: bold;
}
.zkd input[type="checkbox"]::before {
    border-radius: 0;
    border-color: #3c777b;
}
.zkd input[type="checkbox"]:checked::before {
    border-radius: 0;
    background-color: #3c777b;
    border-color: #3c777b;
}

.header .header-sbu{

}
.userBox{
    display: flex;
    background-color: #fbfdff;
    border-radius: 20px;
    overflow: hidden;
    padding: 3px 10px;
    box-sizing: border-box;
}
.userBox img{
    width: 15px;
    object-fit: contain;
}
.input-item {
    display: block;
    width: 100%;
    border: 0;
    padding: 10px;
    font-size: 15px;
    outline: none;
    color: #494f61;
}

.input-item::placeholder {
    text-transform: uppercase;
    color: #667397;
    font-size: 13px;
}

.btn {
    text-align: center;
    padding: 10px;
    /* width: 100%; */
    margin-top: 100px;
    color: #fff;
    /* background: #3276e1; */
    background-image: linear-gradient(to right, #4c6fd0 0%, #71b2fc 100%);
    /* box-shadow: 0px 14px 21px 0px rgb(50 118 225 / 40%); */
    border-radius: 23px;
    font-size: 16px;
    /* font-weight: bold; */
}
.butOther{
    display: flex;
    text-align: center;
    font-size: 14px;
    margin-top: 15px;
    cursor: pointer;
    align-items: center;
}
.butOther .cas{
    flex: 1;
    color: #395ab5;
}
.butOther .line{
    height: 15px;
    width: 1px;
    background-color: #a9a9a9;
}
.butOther .wx{
    flex: 1;
    color: #3b8043;
}
.msg {
    text-align: center;
    line-height: 88px;
}

a {
    text-decoration-line: none;
    color: #abc1ee;
}

.passwordbox {
    display: flex;
    align-items: center;
}

.passwordboxx {
    display: flex;
}

.img {
    flex: 90px 0 0;
    height: 35px;
    object-fit: contain;
}

.isPassword {
    flex: 90px 0 0;
    height: 35px;
}

.qsy-style {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
}

.qsy-filter {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    background: url(../uploads/qsy.png) center no-repeat;
    background-size: 100% 100%;
    filter: blur(65px);
}

.qsy-img {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 11;
}

.qsy-logo {
    position: absolute;
    top: 2%;
    left: 5%;
    height: 4%;
    z-index: 10;
}

.noidclass {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    /* background-color: #f1f1f1; */
    background-image: linear-gradient(to top, #ffffff 0%, #deecff 100%);
    z-index: 99999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: 'Courier New', Courier, monospace;
    color: #667397;
    line-height: 25px;
    text-align: center;
}

.iconimg {
    width: 130px;
    margin-bottom: 20px;
}
.blockAnimation{
	animation-duration: 0s !important;
	.ani{
	    visibility:visible !important;
	    animation-duration: 0s !important;
    } 
}



.qsy-exit{
    position: absolute;
    width: 30%;
    text-align: center;
    margin: auto;
    left: 0;
    right: 0;
    z-index: 10;
    bottom: 6%;
}
.zjuItLogo {
    width: 50%;
    margin: 0 auto;
    margin-top: 20%;
}
.mainLogo {
    width: 100%;
    height: 72px;
    margin: 3% auto 5% auto;
    border-radius: 23px;
    background: url('../uploads/fudai.png') center no-repeat;
    /* background-size: 100% 100%; */
    background-size: contain;
}

.title {
    width: 60%;
    margin: 6% auto 3% auto;
}
.title img, .zjuItLogo img, .loginBut img {
    width: 100%;
    height: auto;
}

.subtitle {
    font-size: 13px;
    letter-spacing: 0.3em;
    color: #fff;
    margin-top: 16px;
}

.loginBut {
    width: 46%;
    cursor: pointer;
    text-decoration: none;
    margin: 0 auto;
}

.buttonBox {
    opacity: 0;
    border-radius: 22px;
    width: 0px;
    height: 0px;
    line-height: 42px;
    cursor: pointer;
    text-decoration: none;
    margin-bottom: 16px;
    background: linear-gradient(0deg, #FFDDBD 0%, #E27B5E 100%);
    box-shadow: 0px 0px 11px 0px rgba(39, 75, 60, 0.77);
    text-align: center;
    font-size: 24px;
    font-family: "xiaomai";
    font-weight: 500;
    color: #373737;
}
.checkboxbox{
    position: absolute;
    text-align: center;
    width: 100%;
    margin-top: 4%;
    left: 0;
}
.checkbox {
    position: absolute;
    font-size: 12px;
    transform: scale(0.88);
    transform-origin: 50% 0px ;
    text-align: center;
    line-height: 20px;
    color: #767070;
    width: 100%;
    display: flex;
    /* align-items: center; */
    justify-content: center;
}
.input-check{
    transform: scale(1);
    transform-origin: 50% 0px ;
}
.input-tip{
    text-align: center;
    margin-left: 5px;
    font-size: 11px;
    color:#fff;
}
.tips {
    position: absolute;
    left: 0;
    width: 100%;
    bottom: 5px;
    font-size: 10px;
    text-align: center;
    color: #fff;
    font-family: "微软雅黑";
    font-size: 12px;
    transform: scale(0.80);
    transform-origin: 50% 0px ;
}
.checkboxi{
    border-radius: 50%;
}
/* 复选框组件 */
input[type="checkbox"] {
    width: 12px;
    height: 12px;
    line-height: 12px;
    display: inline-block;
    text-align: center;
    vertical-align: middle;
    position: relative;
    top: 4px;
    box-sizing: content-box;
}

input[type="checkbox"]::before {
    content: "";
    position: absolute;
    top: -2px;
    left: -2px;
    background: #fff;
    width: 100%;
    height: 100%;
    border: 2px solid #e18760;
    border-radius: 100%;
}

input[type="checkbox"]:checked::before {
    content: "\2713";
    background-color: #e18760;
    position: absolute;
    top: -2px;
    left: -2px;
    width: 100%;
    border: 2px solid #e18760;
    border-radius: 100%;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
}
.zjdxQsy{
    background: url('../uploads/bg-3.png') center no-repeat;
    background-size: cover;
    z-index: 11;
    position: relative;
}
.zjdxQsy .qstCont{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    padding: 10% 0 20% 0;
    width: 80%;
    background-color: rgba(255,255,255,0.7);
    border-radius: 20px;
}
.zjdxQsy .qstCont p{
    font-family: HYXiaoMaiTiJ;
    text-align: center;
    font-size: 14px;
    line-height: 32px;
    margin-bottom: 0;
}
.zjdxQsy .qstCont .loginBut{
    margin-top: 10%;
}
.gdgydx_header_logo {
    position: relative;
    width: 40%;
    height: 35px;
}
.gdgydx_logo {
    position: absolute;
    top: 10px;
    left: 12px;
}
.gdgydx_logo img {
    width:100%;
    height: 100%;
}
.gdgydx_content {
    margin-top: 12px;
    font-size: 14px;
}
.gdgydx_content .gdgydx_li {
    text-align: center;
    margin-top: 5px ;
}
.gdgydx_img {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 36px;
    margin-top: 12px;
}
.gdgydx_img img {
    width: 100%;
    height: 100%;
    cursor: pointer;
}
