﻿/*滚动条美化*/
body::-webkit-scrollbar {
    width: 8px;
    height: 8px;
    background: #efefef;
}

body::-webkit-scrollbar-track {
    background: #efefef;
    border-radius: 20px;
}

body::-webkit-scrollbar-thumb {
    background: #bbb;
    border-radius: 20px;
}

    body::-webkit-scrollbar-thumb:hover {
        background: #8b93a6;
    }

body::-webkit-scrollbar-corner {
    background: #efefef;
}

.Hui-aside::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}
/*通用css*/
body {
    font-size: 14px;
}

.site-body {
    width: 100%;
}

.site-wrap {
    position: relative;
    /*width: 1200px;*/
    margin: 0px auto;
}

.site-table {
    position: relative;
    display: table;
    table-layout: fixed;
    width: 100%;
    border-collapse: separate;
    /*border-spacing: 15px;*/
}

.site-cell {
    position: relative;
    display: table-cell;
    vertical-align: top;
}

    .site-cell:first-child {
        padding-left: 0px;
    }

.site-module {
    position: relative;
}

.site-block:first-child {
    margin-top: 0px;
}

.site-empty {
    background: url(../images/nocontent.jpg) no-repeat center center;
    height: 200px;
    padding-top: 20px;
    width: 100%;
}
