/*公用css*/
a,a:active,a:hover,a:visited{
    text-decoration: none;
}
ul{
    list-style: none;
    margin: 0;
    padding: 0;
}
h1,h2,h3,h4,h5{
    font-weight: normal;
}
button,input,select,text,textarea{
    outline: none;
}
body{
    background: #f9f9f9;
}
/*头部css*/
.header{
    position: fixed;
    z-index: 100;
    left: 0;
    top: 0;
    right: 0;
}
.header > .logo{
    float: left;
    line-height: 50px;
    text-align: center;
    padding: 0 10px;
    width: 220px;
    height: 50px;
    display: block;
	background: #07111b;;
    /*border-bottom: 1px solid #ddd;*/
    box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.1);
}
.header > .logo > img{
    max-height: 34px;
    max-width: 180px;
}

.header-nav{
    /*
	background-color: #3c8dbc;
	*/
	background-color: #07111b;
    height: 50px;
    margin: 0 0 0 220px;
}
.header-nav > .sidebar-toggle{
    float: left;
    padding: 9px 5px;
    margin-top: 8px;
    margin-right: 0;
    margin-bottom: 8px;
    margin-left: 5px;
    background-color: transparent;
    background-image: none;
    border: 1px solid transparent;
    -webkit-border-radius: 0 !important;
    -moz-border-radius: 0 !important;
    border-radius: 0 !important;
}
.header-nav > .sidebar-toggle > span{
    display: block;
    width: 22px;
    height: 2px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.8);
    margin-top: 4px;
    transition: background .3s ease;
}
.header-nav > .sidebar-toggle > span:first-child{
    margin-top: 0;
}
.header-nav > .sidebar-toggle:hover > span{
    background: rgba(255, 255, 255, 0.95);
}

.header-nav > .navbar-right{
    margin-right: 0;
}
.header-nav > .navbar-right > .nav{
    margin-right: 10px;
}
.header-nav .nav > li > a{
    padding: 15px;
    color: rgba(255, 255, 255, 0.8);
    background-color: inherit;
}
.header-nav .nav > li:hover > a,.header-nav .nav > li.open > a{
    background-color: rgba(0,0,0,.1);
}
@keyframes fadeAnimation{
    from {
        opacity: 0;
        top: 120%;
    }
    to {
        opacity: 1;
        top: 100%;
    }
}
@-webkit-keyframes fadeAnimation {
    from {
        opacity: 0;
        top: 120%;
    }
    to {
        opacity: 1;
        top: 100%;
    }
}
.header-nav .nav > li.open .dropdown-menu{
    animation-name: fadeAnimation;
    animation-duration: .6s;
    animation-iteration-count: 1;
    animation-timing-function: ease;
    animation-fill-mode: forwards;
    -webkit-animation-name: fadeAnimation;
    -webkit-animation-duration: .6s;
    -webkit-animation-iteration-count: 1;
    -webkit-animation-timing-function: ease;
    -webkit-animation-fill-mode: forwards;
    -moz-animation-name: fadeAnimation;
    -moz-animation-duration: .6s;
    -moz-animation-iteration-count: 1;
    -moz-animation-timing-function: ease;
    -moz-animation-fill-mode: forwards;
    background: #ffffff;
}

.header-nav .nav > li .label{
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    position: absolute;
    top: 7px;
    right: 2px;
    font-size: 10px;
    font-weight: normal;
    width: 15px;
    height: 15px;
    line-height: 1.0em;
    text-align: center;
    padding: 2px;
    transition: top .2s ease;
}
.header-nav .nav > li > a:hover .label{
    top: 3px;
}

.header-nav .nav .dropdown-menu{
    width: 280px;
    padding: 0 0 0 0!important;
    margin: 0!important;
    top: 100%;
    border: 1px solid #dfdfdf;
    -webkit-border-radius: 4px !important;
    -moz-border-radius: 4px !important;
    border-radius: 4px !important;
}
.header-nav .nav .dropdown-menu > li.d-header{
    border-radius: 4px 4px 0 0;
    background-color: #ffffff;
    padding: 7px 10px;
    border-bottom: 1px solid #f4f4f4;
    color: #444444;
    font-size: 14px;
    position: relative;
}
.header-nav .nav .dropdown-menu > li.d-header:before,.header-nav .nav > li.users .dropdown-menu > li.d-users:before{
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid #ffffff;
    top: -8px;
    right: 15px;
}
.header-nav .nav .dropdown-menu > li.d-center{
    position: relative;
    overflow: hidden;
    width: auto;
    height: 200px;
}
.header-nav .nav .dropdown-menu > li.d-footer > a{
    border-radius: 0 0 4px 4px;
    background-color: #f4f4f4;
    padding: 7px 10px;
    border-bottom: 1px solid #f4f4f4;
    color: #444444;
    font-size: 12px;
    text-align: center;
}

.header-nav .nav .dropdown-menu .d-scroll-div{
    overflow-x: hidden;
    overflow-y: auto;
    height: 200px;
}
.header-nav .nav .dropdown-menu .d-scroll-div::-webkit-scrollbar/*整体部分*/
{
    width: 3px;
    height:7px;
}

.header-nav .nav .dropdown-menu .d-scroll-div::-webkit-scrollbar-track/*滑动轨道*/
{
    -webkit-box-shadow: inset 0 0 5px rgba(0,0,0,0.05);
    border-radius: 0;
    background: rgba(0,0,0,0.05);
}

.header-nav .nav .dropdown-menu .d-scroll-div::-webkit-scrollbar-thumb/*滑块*/
{
    border-radius: 0;
    -webkit-box-shadow: inset 0 0 5px rgba(0,0,0,0);
    background: rgba(0,0,0,0.15);
}

.header-nav .nav .dropdown-menu .d-scroll-div::-webkit-scrollbar-thumb:hover/*滑块效果*/
{
    border-radius: 0;
    -webkit-box-shadow: inset 0 0 5px rgba(0,0,0,0.05);
    background: rgba(0,0,0,0.1);
}


.d-scroll-div-con .messages > a{
    margin: 0;
    line-height: 20px;
    padding: 10px 5px 10px 5px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    display: block;
    white-space: nowrap;
    border-bottom: 1px solid #f4f4f4;
    text-decoration: none;
}
.d-scroll-div-con .messages > a:hover,.d-scroll-div-con .notices > a:hover{
    background-color: #f6f6f6;
}
.d-scroll-div-con .messages > a > div > img{
    margin: auto 10px auto auto;
    width: 40px;
    height: 40px;
    border: 1px solid #dddddd;
}
.d-scroll-div-con .messages > a > h4{
    padding: 0 60px 0 0;
    margin: 3px 0 0 45px;
    overflow: hidden;
    color: #444444;
    font-size: 15px;
    position: relative;
    height: 16px;
    white-space : nowrap;
}
.d-scroll-div-con .messages > a > h4 > small{
    position: absolute;
    right: 0;
    top: 0;
    color: #999;
    font-size: 12px;
}
.d-scroll-div-con .messages > a > p{
    margin: 0 0 0 45px;
    font-size: 12px;
    color: #888888;
    height: 16px;
    white-space : nowrap;
    overflow: hidden;
}

.d-scroll-div-con .notices > a{
    font-size: 12px;
    color: #444444;
    display: block;
    white-space: nowrap;
    border-bottom: 1px solid #f4f4f4;
    text-decoration: none;
}
.d-scroll-div-con .notices > a > i{
    display: inline-block;
    font-size: 20px;
    width: 50px;
    text-align: center;
    padding: 15px 0;
    margin-right: 5px;
    background: #00c0ef;
    color: #f9f9f9;
    color: rgba(255, 255, 255, 0.7);
}

.header-nav .nav > li.users > a {
    font-weight: bold;
}
.header-nav .nav > li.users .dropdown-menu {
    -webkit-border-radius: 0 !important;
    -moz-border-radius: 0 !important;
    border-radius: 0 !important;
}
.header-nav .nav > li.users .dropdown-menu > li.d-users{
    position: relative;
    height: 175px;
    padding: 10px;
    background: #3c8dbc;
    text-align: center;
}
.header-nav .nav > li.users .dropdown-menu > li.d-users > img{
    z-index: 5;
    height: 90px;
    width: 90px;
    border: 8px solid;
    border-color: rgba(255, 255, 255, 0.2);
}
.header-nav .nav > li.users .dropdown-menu > li.d-users > p{
    z-index: 5;
    color: rgba(255, 255, 255, 0.8);
    font-size: 17px;
    text-shadow: 2px 2px 3px #333333;
    margin-top: 10px;
}
.header-nav .nav > li.users .dropdown-menu > li.d-users > p > small{
    font-size: 55%;
    display: block;
}

.header-nav .nav > li.users .dropdown-menu > li.d-user-body{
    padding: 15px;
    border-bottom: 1px solid #f4f4f4;
    border-top: 1px solid #dddddd;
}
.header-nav .nav > li.users .dropdown-menu > li.d-user-body a{
    text-decoration: none;
    color: #0073b7;
}
.header-nav .nav > li.users .dropdown-menu > li.d-user-body > div{
    text-align: center;
}
.header-nav .nav > li.users .dropdown-menu > li.d-btns{
    background-color: #f9f9f9;
    padding: 10px;
}
.header-nav .nav > li.users .dropdown-menu > li.d-btns a{
    text-decoration: none;
    background-color: #f4f4f4;
    color: #666666;
    border-radius: 0;
    border-color: #ddd;
}
.header-nav .nav > li.users .dropdown-menu > li.d-btns a:hover{
    background-color: #efefef;
    box-shadow: none;
}

@media (max-width: 560px) {
    .header > .logo{
        width: 100%;
        float: none;
        position: relative!important;
    }
    .header > .header-nav{
        margin: 0;
    }
}
@media (max-width: 767px) {
    .navbar-nav > li {
        float: left;
    }
    .header-nav > .navbar-right {
        float: right;
    }
    .header-nav > .navbar-right > .nav {
        margin: 0 10px 0 0;
    }
}

@media (max-width: 480px) {
    .header-nav .nav .dropdown-menu{
        position: absolute;
    }
    .header-nav .nav > .mes-dropdown > .dropdown-menu{
        right: -140px;
    }
    .header-nav .nav .dropdown-menu > li.d-header:before{
        display: none;
    }
    .header-nav .nav > .notice-dropdown > .dropdown-menu{
        right: -100px;
    }
}



/*中间内容*/
.wrapper{
    margin-top: 50px;
    background-color: #f9f9f9;
}
@media (max-width: 560px) {
    .wrapper{
        margin-top: 100px;
    }
}
/*左边侧边栏*/
.left-side{
    background: #f4f4f4;
    position: absolute;
    width: 220px;
    -webkit-box-shadow: inset -3px 0px 8px -4px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: inset -3px 0px 8px -4px rgba(0, 0, 0, 0.1);
    box-shadow: inset -3px 0px 8px -4px rgba(0, 0, 0, 0.07);
    left: 0;
}
.left-side.collapse-left{
    left: -220px;
}

.left-side > .sidebar{
    overflow: hidden;
}
.left-side .slide-in-out{
	position:fixed;top:50%;left:205px;z-index:999;color:#fff;background:#ff5656;
}
.user-panel{
    padding: 10px;
}
.user-panel img{
    border: 1px solid #dfdfdf;
    width: 45px;
    height: 45px;
}
.user-panel .info{
    padding: 5px 5px 5px 15px;
    font-size: 14px;
    line-height: 1;
}
.user-panel .info > h4{
    margin: 0 0 8px 0;
    font-weight: 600;
    color: #555555;
}
.user-panel .info > a{
    text-decoration: none;
    font-size: 12px;
    color: #999;
}
.user-panel .info > a > i{
    margin-right: 4px;
}

.side-form{
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
    border: 1px solid #dbdbdb;
    margin: 10px 10px;
}
.side-form > div{
    position: relative;
}
.side-form input.form-control{
    box-shadow: none;
    background-color: #fafafa;
    border: 1px solid #fafafa;
    height: 35px;
}
.side-form input.form-control:focus{
    background-color: #ffffff;
}
.side-form button{
    position: absolute;
    right: 0;
    width: 34px;
    height: 34px;
    top: 0;
    text-align: center;
    background: none;
    color: #999;
    border: 0;
}

.sidebar-menu{
    border-top: 1px solid #dbdbdb;
}
.sidebar-menu > li{
    border-top: 1px solid #fff;
    border-bottom: 1px solid #dbdbdb;
}
.sidebar-menu > li.open,.sidebar-menu > li:hover{
    background: #f9f9f9;
}
.sidebar-menu > li > a{
    padding: 12px 5px 12px 15px;
    display: block;
    text-decoration: none;
    color: #555555;
    font-size: 15px;
}
.sidebar-menu > li > a > i{
    margin-right: 5px;
}
.sidebar-menu > li > a > i.pull-right{
    margin: 5px 5px 0 0;
    transition: transform .3s ease;
}
.sidebar-menu > li.open > a > i.pull-right{
    transform: rotate(-90deg);
}
.sidebar-menu > li .tree-view{
    display: none;
}
.sidebar-menu > li .tree-view a{
    padding: 5px 5px 5px 15px;
    display: block;
    font-size: 14px;
    margin: 0 0 0 10px;
    color: #777;
}
.sidebar-menu > li .tree-view a > i{
    margin-right: 5px;
}

.sidebar-menu > li > a > .sum{
    height: 18px;
    line-height: 18px;
    padding: 0 8px;
    border-radius: 9px;
    color: #FFFFFF;
    font-size: 12px;
    margin-top: 2px;
}


/*中间*/
.main{
    margin-left: 220px;
}
.main.strech{
    margin-left: 65px;
}

.content-header{
    background: #fbfbfb;
    box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
    position: relative;
}
.content-header > h1{
    font-size: 24px;
    color: #333;
    margin: 0;
}
.content-header > h1 > small{
    font-size: 15px;
    margin-left: 5px;
    color: #999;
}
.content-header > ol{
    color: #999;
}
.content-header > ol a{
    text-decoration: none;
    color: #444;
}
.content-header > ol > li i{
    margin-right: 3px;
}

@media (max-width: 992px) {
    body{
        overflow-x: hidden!important;
    }
    .wrapper{
        position: relative;
    }
    .wrapper.active{
        left: 220px;
    }
    .left-side{
        left: -220px;
    }
	.left-side .slide-in-out{
		display: none;
	}
    .main{
        margin-left: 0;
    }
}
@media screen and (max-width: 767px) {
    .content-header > ol {
        position: relative;
        top: 0;
        right: 0;
        float: none;
    }
}

.content-main{
    padding: 20px 15px;
    background: #f9f9f9;
}

.form-search-con{
    min-height: 20px;
    padding: 9px;
    background-color: #f5f5f5;
    border: 1px solid #e3e3e3;
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,0.05);
    box-shadow: inset 0 1px 1px rgba(0,0,0,0.05);
}

.table-common{
    width: 100%;
    table-layout:fixed;
}

.table-common thead{
    border-bottom: 1px solid #eeeeee;
	background: #fff;
}

.table-common th{
    text-align: center;
    padding: 11px 8px;
    color: #555;
    font-size: 14px;
}

.table-common tbody tr:nth-of-type(even){
    background: #f8fafc;
}
.table-common tbody tr:hover{
    background: #f2f6f9;
}
.table-common td{
    text-align: center;
    font-size: 13px;
    color: #555;
    padding: 15px 8px;
    vertical-align: top;
}

.table-common .t-left,.table-common .t-left{
    text-align: left;
}

@media (min-width: 1200px) {
	.wrapper .main .container{
		max-width: 100%;
	}
}