html,body {height: 100%;}
/*定义滚动条高宽及背景 高宽分别对应横竖滚动条的尺寸*/
::-webkit-scrollbar
{
    width: 4px;
    height: 6px;
    background-color: #F5F5F5;
}

/*定义滚动条轨道 内阴影+圆角*/
::-webkit-scrollbar-track
{
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
    border-radius: 4px;
    background-color: #F5F5F5;
}

/*定义滑块 内阴影+圆角*/
::-webkit-scrollbar-thumb
{
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3);
    background-color: #555;
}

[v-cloak] {
    display: none;
}

.layout{
    border: 1px solid #d7dde4;
    background: #f5f7f9;
    position: relative;
    overflow: hidden;
    height: 100%;
}
.layout-logo{
    width: 212px;
    height: 50px;
    line-height: 50px;
    border-radius: 3px;
    float: left;
    position: relative;
    left: 20px;
    top: 5px;
}
.layout-nav{
    float: left;
    width: calc(100% - 232px);
    margin-right: 20px;
    text-align: right;
}

.layout-nav-user {
    float: right;
}

.layout-nav-tag-box {
    text-align: left;
    float: left;
    width: calc(100% - 300px);
    min-height: 60px;
    max-height: 60px;
    overflow: hidden;
}

.layout-nav-tag-list {
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    -webkit-transition: left .3s ease;
    transition: left .3s ease;
    margin-right: 10px;
}

.search-div {
    padding: 10px 10px 0px;
    margin-bottom: 20px;
    border: 1px solid #eee;
}
.search-div.notopborder {
    border-top: none;
}
.info-tip-title {
    line-height: 40px;
    padding-left: 10px;
    background: #eee;
    font-size: 16px;
    margin-bottom: 20px;
}

.tab-box {
    position: relative;
    min-height: 41px;
    max-height: 41px;
    overflow: hidden;
    border-bottom: 1px solid #ddd;
    box-shadow: 1px 1px 1px #ccc;
}
.tab-div {
    min-height: 41px;
    background: #eee;
    border-bottom: 1px solid #ddd;
    padding: 2px 10px;
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    -webkit-transition: left .3s ease;
    transition: left .3s ease;
}

.tab-close-box {
    position: absolute;
    top: 0px;
    right: 0px;
    background: #fff;
    line-height: 41px;
    padding: 0px 5px;
    box-shadow: -2px 2px 1px #ccc;
}

.main-card {
    min-width: 244px;
    max-width: 320px;
    margin: 0 auto;
    padding-bottom: 8px;
}

.main-card-box {
    width: 180px;
    margin: 8px auto 0;
}

.main-icon-box {
    color: #FFF;
    float: left;
    width: 80px;
    height: 80px;
    line-height: 80px;
    text-align: center;
    font-size: 40px;
}

.main-number-box {
    float: left;
    text-align: center;
    width: 180px;
}

.main-number-box-num {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
}

.green {
    color: #64d572;
}

.yellow {
    color: rgb(255, 213, 114);
}

.blue {
    color: rgb(45, 140, 240);
}

.purple {
    color: #bd89d5;
}

.red {
    color: rgb(242, 94, 67);
}

.main-number-box-tip {
    font-size: 12px;
    font-weight: 500;
    color: #999;
    padding: 3px;
    width: 90%;
    margin-left: 5%;
    border-top: 1px solid #EEE;
}

.main-number-box-top {
    margin-top: 8px;
    float: right;
    margin-right: 8px;
}

.login-user-name {
    display: inline-block;
    max-width: 70px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    height: 16px;
    line-height: 16px;
    position: relative;
    top: 3px;
}

#top_card>.ivu-card-body {
    overflow: inherit;
}

.main-icon-box {
    color: #FFF;
    width: 66px;
    height: 66px;
    line-height: 66px;
    text-align: center;
    font-size: 40px;
    position: absolute;
    top: -16px;
    left: 9px;
    border-radius: 2px
}

.bg-blue {
    background-color: rgb(45, 140, 240);
}

.bg-green {
    background-color: #64d572;
}

.bg-yellow {
    background-color: rgb(255, 213, 114);
}

.bg-purple {
    background-color: #bd89d5;
}

.bg-red {
    background-color: rgb(242, 94, 67);
}

.ivu-table .tr-blue td {
    background-color: #fffae7 !important;
}

.tb-title {
    background: #f8f8f9;
    border: 1px solid #e9eaec;
    text-align: center;
}
.tb-title-white {
    border: 1px solid #e9eaec;
    text-align: center;
}
.tb-title-left-none {
    border-left: none;
}
.tb-title-top-none {
    border-top: none;
}
.td-bold {
    font-weight: bold;
}
.td-input {
    border: none;
    height: 30px;
    text-align: center;
    color: #495060;
}