﻿html,body,#app{
    height: 100%;
    width: 100%;
    overflow-y: auto;
    overflow-x: hidden;
    margin: 0;
}

[v-cloak]{
    display: none !important;
}
body{margin: 0;font-size: 14px;font-family: "Helvetica Neue",Helvetica,"PingFang SC","Hiragino Sans GB","Microsoft YaHei","微软雅黑",Arial,sans-serif;}
h1,h2,h3,h4,h5,h6,p{margin: 0;}
a{text-decoration: none;color: inherit;}
b{font-weight: normal;}
i{font-style: normal;}
u{text-decoration: none;}

::-webkit-scrollbar{
    width: 8px;
    background-color: #eee;
    border-radius: 1000px;
}
::-webkit-scrollbar-thumb{
    background-color: #ccc;
    border-radius: 1000px;
}
.el-icon-question{
    vertical-align: middle;
    font-size: 14px;
    position: relative;
    bottom: 1px;
    margin-left: 5px;
}
.nowrap{
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.el-form-item__content{
    text-align: left;
}


.loader-wrapper {
    width: 100%;
    height: 100%;
    position: fixed;
    left: 0;
    top: 0;
    background-color: #fff;
    z-index: 1000;
    transition: all 0.2s;
}
.loader {
    position: fixed;
    top: 50%;
    left: 40%;
    margin-left: 10%;
    transform: translate3d(-50%, -50%, 0);
}
.dot {
    width: 24px;
    height: 24px;
    background: #3ac;
    border-radius: 100%;
    display: inline-block;
    animation: slide 1s infinite;
    opacity: 0.8;
}
.dot:nth-child(1) {
    animation-delay: 0.1s;
    background: #00BFFF;
}
.dot:nth-child(2) {
    animation-delay: 0.2s;
    background: #ff6a00;
}
.dot:nth-child(3) {
    animation-delay: 0.3s;
    background: #00BFFF;
}
.dot:nth-child(4) {
    animation-delay: 0.4s;
    background: #ff6a00;
}
.dot:nth-child(5) {
    animation-delay: 0.5s;
    background: #00BFFF;
}
@-moz-keyframes slide {
    0% {transform: scale(1);}
    50% {opacity: 0.3;transform: scale(2);}
    100% {transform: scale(1);}
}
@-webkit-keyframes slide {
    0% {transform: scale(1);}
    50% {opacity: 0.3;transform: scale(2);}
    100% {transform: scale(1);}
}
@-o-keyframes slide {
    0% {transform: scale(1);}
    50% {opacity: 0.3;transform: scale(2);}
    100% {transform: scale(1);}
}
@keyframes slide {
    0% {transform: scale(1);}
    50% {opacity: 0.3;transform: scale(2);}
    100% {transform: scale(1);}
}
