
/*全局变量*/
:root{

    /*全局颜色*/
    /* --color:#ea2b29; */
    /* --color: rgb(37,77,164);
    --hoverColor: rgb(216, 237, 253); */
    --main--default:#254DA4;
    --main--hover:#84a1e2;
    --main--ordinary:#2E61CC;
    --main--data:#95979a;

}
/*解决vue 加载一闪问题*/
[v-cloak]{
    display: none !important;
}
v-cloak{
    display: none !important;
}

html,body{
    width: 100%;
    height: 100%;
}

*{
    margin: 0px;
    padding: 0px;
    font-family: "Microsoft YaHei",微软雅黑,"Microsoft JhengHei",华文细黑,STHeiti,MingLiu;
}

li{
    list-style: none;
}
/*包含以下四种的链接*/
a {
    text-decoration: none;
}
/*正常的未被访问过的链接*/
a:link {
    text-decoration: none;
}
/*已经访问过的链接*/
a:visited {
    text-decoration: none;
}
/*鼠标划过(停留)的链接*/
a:hover {
    text-decoration: none;
}
/* 正在点击的链接*/
a:active {
    text-decoration: none;
}
/*清除左浮动*/
.clear{
    clear: both;
}
*::-webkit-scrollbar {
    width: 6px;
    height: 6px;
    background-color: #fff;
}
*::-webkit-scrollbar-thumb {
    width: 6px;
    height: 6px;
    border-radius: 10px;
    background-color: #888;
    background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .2) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .2) 50%, rgba(255, 255, 255, .2) 75%, transparent 75%, transparent);
}
*::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.2);
    background-color: #fff;
}

.el-alert{
    position: absolute;
    width: 300px;
    bottom: 10px;
    right: 10px;
}

#app{
    min-height: calc(100vh);
}

#end {
    width: 100%;
    height: 60px;
    background-color: #F9F9F9;
    /* position: fixed;
    bottom: 0; */
}

#endtext {
    margin: 100px auto 0;
    width: 100%;
    height: 40px;
    display: flex;
    justify-content: center;
}

.end_val {
    float: left;
    color: #A2A2A2;
    font-size: 12px;
    width: 90px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    cursor: pointer;
}

.end_val:hover {
    color: #F6C736;
}
