/************************* 设置通用样式 *************************/
* {
    margin: 0;
    padding: 0;
    font-size: 14px;
    font-family: 'Microsoft YaHei', Arial, Helvetica, sans-serif;
}
body {
    background-color: #f4f4f4;
    color: #333;
}
a {
    text-decoration-line: none;
    color: black;
}
ul li{
    list-style: none;
}
table {
    border-collapse: collapse;
}
input {
    border: 1px solid #ccc;
}
/************************* 设置特定样式 *************************/
/* 设置顶部区域样式 */
#top {
    background-color: #25567f;
    width: 100%;
    height: 46px;
    line-height: 46px;
    position: fixed;
    top: 0;
    left: 0;
}
#top .logo{
    float: left;
    width: 140px;
    color: #fff;
    font-size: 20px;
    text-align: center;
    font-weight: bold;
    letter-spacing: 3px;
}
#top nav {
    float: left;
}
#top nav ul li a {
    color: #b5d4ea;
    padding: 10px;
}
#top nav li {
    float: left;
}
#top .login-info {
    float: right;
    margin-right: 20px;
}
#top .login-info, #top .login-info a {
    color: #b5d4ea;
}
#top .login-info .home-page {
    color: #fff;
}
/* 设置侧边栏样式 */
.sidebar {
    width: 8%;
    position: fixed;
    top: 56px;
    left: 0;
}
.sidebar h3 {
    box-sizing: border-box;
    width: 100%;
    height: 25px;
    font-weight: normal;
    line-height: 25px;
    background-color: #dddddd;
    padding-left: 15px;
}
/* 设置列表间距 */
.sidebar ul li {
    padding: 3px 0;
}
 /*设置圆圈的通用样式 */
.sidebar ul li a span.bg-circle {
    display: inline-block;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    /*background: url("../images/sprite.png") -280px -20px no-repeat;*/
    vertical-align: middle;
    margin: 0 5px 0 28px;
}
.sidebar ul li a.selected span.bg-circle {
    background: url("../images/sprite.png") -280px -20px no-repeat;
}
.sidebar ul li a span.bg-circle {
    background: url("../images/sprite.png") -280px 0 no-repeat;
}
/* 设置核心功能操作区的样式 */
.main {
    width: 91.5%;
    height: 1000px;
    /* background-color: #9a6e3a; */
    margin: 56px 0 0 8.5%;
}
.main .function-description-title {
    width: 100%;
    height: 25px;
    background-color: #dddddd;
    line-height: 25px;
    text-indent: 1em;
}
.main .function-description-content {
    padding-left: 50px;
    margin-top: 5px;
    background: url("../images/hr.png") 0 bottom repeat-x;
    /* text-indent: 50px; */
}
.main .function-description-content li {
    line-height: 200%;
}
/* 设置表格的样式 */
table.list .sort{
    width: 50px;
    height: 20px;
    text-align: center;
}
table.list td {
    width: 200px;
}
table.list {
    text-align: center;
}
table.list thead{
    height: 30px;
    background: url("../images/hr.png") 0 bottom repeat-x;
}
table.list tbody tr {
    background: url("../images/hr.png") 0 bottom repeat-x;
    height: 40px;
}
.button-sort {
    padding: 4px 15px;
    margin: 10px 0;
    background-color: #1b75b6;
    border: none;
    color: white;
    font-weight: bold;
}
/* 设置版块名称区域 */
table.forum {
    width: 600px;
    text-align: center;
}
table.forum input {
    width: 300px;
    height: 25px;
}
table.forum tr {
    height: 50px;
    background: url("../images/hr.png") 0 bottom repeat-x;
}
table.forum tr td:first-child {
    font-weight: bold;
}
/* 删除版块确认 */
.delete-confirm {
    color: red;
}
.delete-cancel {
    /*color: blue;*/
}



























