html, body, .main {
    height: 100%;
    /*overflow: hidden;*/
    position: relative;
    font-family:"Microsoft YaHei",微软雅黑,"MicrosoftJhengHei",华文细黑,STHeiti,MingLiu;
    font-size: 16px;
}
body{
    min-width: 800px;
}
[ng-view], [ng-view]>div{
    overflow: inherit;
    position: inherit;
}
header{
    border-bottom: 1px solid #fbeec7;
    line-height: 40px;
    padding: 0 20px;
    color: #ff8100;
    font-weight: bold;
}

header .appName{
    display: inline-block;
    font-size: 16px;
}
header .icon-user{
    line-height: 40px;
    font-weight: bold;
    margin-left: 10px;
    vertical-align: middle;
    cursor: pointer;
}
header .icon-user:before{
    margin-right: 7px;
    border-radius: 50%;
    padding: 5px;
    background: #f6f6f6;
}
header .icon-user .btn-group{
    margin-bottom: 6px;
}
header .icon-user .icon-arrow{
    display: inline-block;
    font-size: 25px;
    margin-bottom: 3px;
    vertical-align: middle;
}
main{
    height: calc(100% - 80px);
}
.menu{
    float: left;
    width: 200px;
    height: 100%;
    border-right: 1px solid #eee;
    font-size: 16px;
}
.menu .line{
    padding-left: 67px;
    height: 40px;
    line-height: 40px;
    color: #444;
    cursor: pointer;
}
.menu .line.title{
    color: #bbb;
    padding-left: 20px;
    font-size: 18px;
    cursor: default;
}
.menu .line.title:nth-child(n+2){
    border-top: 1px solid #eee;
}
.menu .line.title:before{
    margin-right: 7px;
}
.menu .line .num{
    float: right;
    height: 20px;
    line-height: 20px;
    border-radius: 10px;
    padding: 0 5px;
    font-size: 12px;
    background: #fe8862;
    color: #fff;
    margin-top: 10px;
    margin-right: 10px;
}
.menu .line.active{
    background: #ffb263;
    position: relative;
    color: #fff;
}
.menu .line.active:after{
    content: " ";
    display: block;
    border-radius: 50%;
    width: 10px;
    height: 10px;
    background: #f6f68b;
    position: absolute;
    left: 45px;
    top: 15px;
}
.content{
    padding: 30px 60px;
    width: calc(100% - 200px);
    float: right;
}

footer{
    clear: left;
    background: #444446;
    height: 40px;
    line-height: 40px;
    width: 100%;
    position: absolute;
    bottom: 0;
    font-size: 14px;
    text-align: center;
    color: white;
}


.blackBackground{
    background: rgba(0,0,0,0.5);
    position: fixed;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    color: #fff;
}
.blackBackground .body{
    position: absolute;
    right: 0;
    left: 0;
    top: 0;
    bottom: 0;
    width: 720px;
    height: 115px;
    margin: auto;
    font-size: 36px;
}
.blackBackground .line{
    display: inline-block;
    height: 1px;
    width: 205px;
    vertical-align: middle;
    background: #fff;
}
.blackBackground .againBtn{
    width: 100px;
    margin: 10px auto;
    font-size: 24px;
    color: #47d726;
}
.blackBackground .info{
    width: 270px;
    margin: 10px auto;
    font-size: 16px;
}
/*下拉列表  */
.btn-group.open .dropdown-toggle{
    -webkit-box-shadow: none;
    box-shadow: none;
}
.dropdown-menu {
    min-width: 70px;
    border: 1px solid #ddd;
    padding: 10px 0;
    line-height: 28px;
}
.dropdown-menu li{
    cursor: pointer;
    text-indent: 15px;
    font-size: 13px;
    color: #808080;
    padding-right: 25px;
    position: relative;
    white-space: nowrap;
}
.dropdown-menu li:hover{
    cursor: pointer;
    background-color: #f2f2f2;

}
.dropdown-menu li.active:after{
    content: "";
    display: block;
    width: 16px;
    height: 16px;
    position: absolute;
    top: 3px;
    right: 5px;
    background: url('../img/selected.png') no-repeat;
    z-index: 1;
}
.dropdown-menu:before{
    content: '';
    position: absolute;
    width: 14px;
    height: 14px;
    display: block;
    background: #fff;
    top: -7px;
    margin-left: -7px;
    left: 50%;
    box-shadow: 0 0 8px rgba(60,60,60,0.4);
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
}
.dropdown-menu .adjusticon{
    height: 13px;
    margin-top: -10px;
    width: 90%;
    background-color: white;
    position: relative;
}
/*下拉列表 end*/

.search-box{
    display: inline-block;
    position: relative;
}
.search-box input{
    font-size: 14px;
    width: 330px;
    height: 30px;
    border: 0;
    border-radius: 15px;
    outline-style: none;
    padding-left: 10px;
}
.search-box .icon-search{
    font-size: 18px;
    color: #00a698;
    position: absolute;
    right: 10px;
    top: 12px;
}

.list{
    width: 100%;
    margin: 40px auto 0;
    border-radius: 20px;
    border: 1px solid #f8f8f8;
    overflow: hidden;
    color: #444;
}
.list .item{
    padding: 0 20px;
    height: 40px;
    line-height: 40px;
}
.list .item *{
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    display: inline-block;
}
.list .item:first-child{
    background: #f8f8f8;
    font-size: 18px;
}
.list .item:nth-child(n+2){
    border-bottom: 1px solid #f8f8f8;
}
.page-box .page-content{
    margin-top: 60px;
    width: 140px;
    height: 32px;
    line-height: 30px;
    text-align: left;
    border: 1px solid #c6c6c6;
    display: inline-block;
}
.page-box .page-content span{
    color: #5c5c5c;
    display: inline-block;
    width: 60px;
    margin: 3px 0;
    text-align: center;
    line-height: 24px;
    border-left: 1px solid #bbb;
    border-right: 1px solid #bbb;
}

.page-box .page-content .pageBtn{
    color: #ea5c5c;
    display: inline-block;
    padding: 0 8px;
    cursor: pointer;
}
.page-box .page-content .pageBtn.dis{
    color: #eee;
    cursor: default;
}
.page-box .page-info{
    line-height: 30px;
    display: inline-block;
    margin-left: 20px;
    color: #cdcdcd;
    font-size: 14px;
}
/*提示小框*/
.alert-box{
    position: absolute;
    top: 30%;
    left: 50%;
    width: 174px;
    height: 40px;
    line-height: 40px;
    margin-left: -86px;
    text-align: center;
    display: none;
    border-radius: 10px;
    background-color: #eaeaea;
    color: #6e6e6e;
    z-index: 2000;
    overflow: hidden;
}

.loading{
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 8888;
    background: rgba(255,255,255,0.5);
}
.loading img{
    position: absolute;
    top: 40%;
    left: 50%;
    margin-left: -25px;
    width: 50px;
    height: 50px;
    animation: animate-cloud-loading 1.5s infinite linear;
    -webkit-animation: animate-cloud-loading 1.5s infinite linear;
}