.verifyBtn {
    cursor: pointer;
    width: 120px;
    height: 40px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #ccc;
}

.inputVerify {
    margin-bottom: 16px;
    height: 32px;
    width: 256px;
    display: block;
}




/* 滑块验证 */
.vue-puzzle-vcode {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 200ms;
}

.vue-puzzle-vcode.show_ {
    opacity: 1;
    pointer-events: auto;
}

.vue-auth-box_ {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 20px;
    background: #fff;
    user-select: none;
    border-radius: 3px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.vue-auth-box_ .auth-body_ {
    position: relative;
    overflow: hidden;
    border-radius: 3px;
}

.vue-auth-box_ .auth-body_ .loading-box_ {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 20;
    opacity: 1;
    transition: opacity 200ms;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vue-auth-box_ .auth-body_ .loading-box_ .loading-gif_ {
    flex: none;
    height: 5px;
    line-height: 0;
}

@keyframes load {
    0% {
        opacity: 1;
        transform: scale(1.3);
    }

    100% {
        opacity: 0.2;
        transform: scale(0.3);
    }
}

.vue-auth-box_ .auth-body_ .loading-box_ .loading-gif_ span {
    display: inline-block;
    width: 5px;
    height: 100%;
    margin-left: 2px;
    border-radius: 50%;
    background-color: #888;
    animation: load 1.04s ease infinite;
}

.vue-auth-box_ .auth-body_ .loading-box_ .loading-gif_ span:nth-child(1) {
    margin-left: 0;
}

.vue-auth-box_ .auth-body_ .loading-box_ .loading-gif_ span:nth-child(2) {
    animation-delay: 0.13s;
}

.vue-auth-box_ .auth-body_ .loading-box_ .loading-gif_ span:nth-child(3) {
    animation-delay: 0.26s;
}

.vue-auth-box_ .auth-body_ .loading-box_ .loading-gif_ span:nth-child(4) {
    animation-delay: 0.39s;
}

.vue-auth-box_ .auth-body_ .loading-box_ .loading-gif_ span:nth-child(5) {
    animation-delay: 0.52s;
}

.vue-auth-box_ .auth-body_ .loading-box_.hide_ {
    opacity: 0;
    pointer-events: none;
}

.vue-auth-box_ .auth-body_ .loading-box_.hide_ .loading-gif_ span {
    animation-play-state: paused;
}

.vue-auth-box_ .auth-body_ .info-box_ {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 24px;
    line-height: 24px;
    text-align: center;
    overflow: hidden;
    font-size: 13px;
    background-color: #83ce3f;
    opacity: 0;
    transform: translateY(24px);
    transition: all 200ms;
    color: #fff;
    z-index: 10;
}

.vue-auth-box_ .auth-body_ .info-box_.show {
    opacity: 0.95;
    transform: translateY(0);
}

.vue-auth-box_ .auth-body_ .info-box_.fail {
    background-color: #ce594b;
}

.vue-auth-box_ .auth-body_ .auth-canvas2_ {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
}

.vue-auth-box_ .auth-body_ .auth-canvas3_ {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 600ms;
    z-index: 3;
}

.vue-auth-box_ .auth-body_ .auth-canvas3_.show {
    opacity: 1;
}

.vue-auth-box_ .auth-body_ .flash_ {
    position: absolute;
    top: 0;
    left: 0;
    width: 30px;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.1);
    z-index: 3;
}

.vue-auth-box_ .auth-body_ .flash_.show {
    transition: transform 600ms;
}

.vue-auth-box_ .auth-body_ .reset_ {
    position: absolute;
    top: 2px;
    right: 2px;
    width: 35px;
    height: auto;
    z-index: 12;
    cursor: pointer;
    transition: transform 200ms;
    transform: rotate(0deg);
}

.vue-auth-box_ .auth-body_ .reset_:hover {
    transform: rotate(-90deg);
}

.vue-auth-box_ .auth-control_ .range-box {
    position: relative;
    width: 100%;
    background-color: #eef1f8;
    margin-top: 20px;
    border-radius: 3px;
    box-shadow: 0 0 8px rgba(240, 240, 240, 0.6) inset;
}

.vue-auth-box_ .auth-control_ .range-box .range-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 14px;
    color: #b7bcd1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: center;
    width: 100%;
}

.vue-auth-box_ .auth-control_ .range-box .range-slider {
    position: absolute;
    height: 100%;
    width: 50px;
    background-color: rgba(106, 160, 255, 0.8);
    border-radius: 3px;
}

.vue-auth-box_ .auth-control_ .range-box .range-slider .range-btn {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    right: 0;
    width: 50px;
    height: 100%;
    background-color: #fff;
    border-radius: 3px;
    box-shadow: 0 0 4px #ccc;
    cursor: pointer;
}

.vue-auth-box_ .auth-control_ .range-box .range-slider .range-btn>div {
    width: 0;
    height: 40%;
    transition: all 200ms;
    border: solid 1px #6aa0ff;
}

.vue-auth-box_ .auth-control_ .range-box .range-slider .range-btn>div:nth-child(2) {
    margin: 0 4px;
}

.vue-auth-box_ .auth-control_ .range-box .range-slider .range-btn.isDown>div:first-child {
    border: solid 4px transparent;
    height: 0;
    border-right-color: #6aa0ff;
}

.vue-auth-box_ .auth-control_ .range-box .range-slider .range-btn.isDown>div:nth-child(2) {
    border-width: 3px;
    height: 0;
    border-radius: 3px;
    margin: 0 6px;
    border-right-color: #6aa0ff;
}

.vue-auth-box_ .auth-control_ .range-box .range-slider .range-btn.isDown>div:nth-child(3) {
    border: solid 4px transparent;
    height: 0;
    border-left-color: #6aa0ff;
}

.vue-puzzle-overflow {
    overflow: hidden !important;
}
body,
ul,
li,
p,
h1,
h2,
h3,
h4,
h5,
h6,
img,
br,
hr,
table,
tr,
td,
dl,
dt,
dd,
form {
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, "微软雅黑";
    font-size: 14px;
    color: #434343;
    min-width: 1200px;
    /* max-width: 1440px; */
}

.clear {
    clear: both;
    font-size: 0px;
}

ul,
li {
    list-style: none;
}

img {
    border: none;
}

/*一般链接*/
a {
    text-decoration: none;
    color: #434343;
}

a:hover {
    color: #434343;
}

.line_feed {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.hand {
    cursor: pointer;
}

.center {
    display: flex;
    justify-content: center;
}

.centerAll {
    display: flex;
    justify-content: center;
    align-items: center;
}

html::-webkit-scrollbar {
    /*滚动条整体样式*/
    width: 6px;
    /*高宽分别对应横竖滚动条的尺寸*/
    height: 6px;
}

html::-webkit-scrollbar-thumb {
    /*滚动条里面小方块*/
    border-radius: 10px;
    background-color: #d3d2d2 !important;
    opacity: 1;
}


/*  *滚动条 */

::-webkit-scrollbar {
    width: 6px;
    margin-right: 14px;

}

/* 滚动条的滑块 */
::-webkit-scrollbar-thumb {
    background-color: #EBEBEB;
    border-radius: 4px;
}

/*  修改表格(el-table)的滚动条 */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

/*  滚动条的滑块 */
::-webkit-scrollbar-thumb {
    background-color: #EBEBEB;
    border-radius: 3px;
}