/**
 * Eric Meyer's Reset CSS v2.0 (http://meyerweb.com/eric/tools/css/reset/)
 * http://cssreset.com
 */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header,
menu, nav, output, ruby, section, summary,
time, mark, audio, video, input {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font-weight: normal;
    vertical-align: baseline;
    font-family:"PingFang-SC-Regular","Microsoft YaHei","SimSun","宋体";
}
/*css 初始化 */
html, body, ul, li, ol, dl, dd, dt, p, h1, h2, h3, h4, h5, h6, form, fieldset, legend, img { margin:0; padding:0; }
fieldset, img,input,button { border:none; padding:0;margin:0;outline-style:none; }   /*去掉input等聚焦时的蓝色边框*/
ul, ol { list-style:none; }
input { padding-top:0; padding-bottom:0;}
select, input { vertical-align:middle;}
select, input, textarea { font-size:12px; margin:0; }
select{ color: #4c4c4c!important;}
textarea { resize:none; } /*防止拖动*/
img {border:0; vertical-align:middle; }  /*  去掉图片低测默认的3像素空白缝隙，或者用display：block也可以*/
table { border-collapse:collapse; }
.text-center{text-align: center;}
.text-right{text-align: right;}
.text-left{text-align: left;}
a{text-decoration: none;}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, menu, nav, section {
    display: block;
}

body {
    line-height: 1;
}

blockquote, q {
    quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}
.table table{
    width:100%;
}
table tr th{
    color: #212121;
    border-top: 1px solid #e9e9e9;
}
table tr th,table tr td{
    text-align: left;
    height: 50px;
    line-height: 50px;
    font-size: 14px;
    padding-left: 10px;
}
.table tr{
    border-bottom: 1px solid #e9e9e9;
}
.table tr:hover{
    background: #fafafa;
}
.table tr:hover a{
    color:#00a5fa;
}
/* custom */
a {
    color: #7e8c8d;
    text-decoration: none;
    -webkit-backface-visibility: hidden;
}

li {
    list-style: none;
}

::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}

::-webkit-scrollbar-track-piece {
    background-color: rgba(0, 0, 0, 0.2);
    -webkit-border-radius: 6px;
}

::-webkit-scrollbar-thumb:vertical {
    height: 5px;
    background-color: rgba(125, 125, 125, 0.7);
    -webkit-border-radius: 6px;
}

::-webkit-scrollbar-thumb:horizontal {
    width: 5px;
    background-color: rgba(125, 125, 125, 0.7);
    -webkit-border-radius: 6px;
}

html {
    -webkit-text-size-adjust: none;
    width: 100%;
    height: 100%;
}

body {

    -webkit-text-size-adjust: none;
    width: 100%;
    height: 100%;
    font-size: 16px;
    color: #666;
}


.loading {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 150px;
    height: 8px;
    border-radius: 4px;
    margin: auto;
    background: lightblue;
    overflow: hidden;
}

.loading span {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 3px;
    background: lightgreen;
    -webkit-animation: changePosition 4s linear infinite;
}

@-webkit-keyframes changePosition {
    0% {
        -webkit-transform: translate(-150px);
    }
    50% {
        -webkit-transform: translate(0);
    }
    100% {
        -webkit-transform: translate(150px);
    }
}

@keyframes changePosition {
    0% {
        -webkit-transform: translate(-150px);
    }
    50% {
        -webkit-transform: translate(0);
    }
    100% {
        -webkit-transform: translate(150px);
    }
}

.loading-word {
    /* font-family: Helvetica, "PingFang-SC-Regular","PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "微软雅黑", Arial, sans-serif; */
    color: #2098D1;
    width: 100px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    position: fixed;
    top: -40px;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    font-size: 15px;
}

html, body {
    background: #eeeeee;
}

.overflow {
    overflow: hidden;
}

.overflow-hidden {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.clearfix:before,.clearfix:after {  /*清楚浮动*/
    content:"";
    display:table;
}
.clearfix:after{clear:both;}
.clearfix{
    *zoom:1;/*IE/7/6*/
}
.fl{
    float: left;
}
.fr{
    float: right;
}




