/* 定制生成博客目录的CSS样式 */
#uprightsideBar{
    font-size:16px;
    font-family:Arial, Helvetica, sans-serif;
    text-align:left;
    position:fixed;
    /*
    将div的位置固定到距离top:150px，right:0px的位置，
    这样div就会处在最右边的位置，距离顶部150px，
    当然这两个值你可以自己改。
    */
    top:150px;
    right:0px;
    width: auto;
    height: auto; 
}
#sideBarTab{
    float:left;
    width:25px; 
    box-shadow: 0 0 8px #877788;
    border:1px solid #00DDC00;
    border-right:none;
    text-align:center;
    background:rgb(0, 220, 0);
}
#sideBarContents{
    float:left;
    overflow:auto; 
    overflow-x:hidden;!important;
    width:200px;
    min-height:101px;
    max-height:460px;
    border:1px solid #e5e5e5;
    border-right:none; 
    background:#ffffff;
}
#sideBarContents dl{
    margin:0;
    padding:0;
}
#sideBarContents dt{
    margin-top:5px;
    margin-left:5px;
}
#sideBarContents dd, dt {
    cursor: pointer;
}
#sideBarContents dd:hover, dt:hover {
    color:#A7995A;
}
#sideBarContents dd{
    margin-left:20px;
}

.first {
    /* margin: 10px 0; */
    /* font-family: 'Microsoft Yahei'; */
    /* text-align: left; */
    padding: 6px 20px;
    color: #f8f8f8;
    background: #333;
    font-size: 20px;
    border-radius: 4px;
    clear: both;
}

/* 座右铭 */
.headermaintitle {
    font-family: "Trebuchet MS";
    padding-bottom: 10px;
    color: #ccc;
    font-size: 25px;
}

/* 整个body 大小*/
body{
    margin: 0px;padding:
    0px;
    background-color: #f8f8f8;
}
#main_content {
    background-color: white;
}

/* 底部背景*/
#footer{
    color: white;
    background-color: #333;
}

/*顶部背景*/
#top {
    background-color: #0a0808;
    height: 33px;
    display: none;
}

h3{
border-bottom: 0px solid #aaa;
}




/* 定制自己导航栏的样式 */
#shwtop ul {
    margin: 0;
    padding: 0;
    list-style-type: none; /*去除li前的标注*/
    background-color: #333;
    overflow: hidden; /*隐藏溢出的部分，保持一行*/
    padding-top: 15px;
    font-size: 15px;
}
#shwtop li {
    float: left; /*左浮动*/
}
#shwtop li a, .dropbtn {
    display: inline-block; /*设置成块*/
    color: white;
    text-align: center;
    text-decoration: none;
    padding: 8px 14px;
}
/*鼠标移上去，改变背景颜色*/
#shwtop li a:hover, .dropdown:hover .dropbtn { 
    /* 当然颜色你可以自己改成自己喜欢的，我还是挺喜欢蓝色的 */
}
#shwtop .dropdown {
    /*
    display:inline-block将对象呈递为内联对象，
    但是对象的内容作为块对象呈递。
    旁边的内联对象会被呈递在同一行内，允许空格。
    */
    display: inline-block;
}
#shwtop .dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
}
#shwtop .dropdown-content a {
    display: block;
    color: black;
    padding: 8px 10px;
    text-decoration:none;
}
#shwtop .dropdown-content a:hover {
    background-color: #a1a1a1;
}
#shwtop .dropdown:hover .dropdown-content{
    display: block;
}

/*文档总数字体大小*/
#sub {
    text-align: right;
    background-color: #333;
    color: #ccc;
    font-size: 11px;
    padding: 1px;
    padding-left: 10px;
}

/*隐藏左侧目录导航*/
#leftmenu ul{
   display:block}

/* 定制公告栏时钟位置 */
#clockdiv {
    /* left, center, right */
    text-align: center;
}

/* 定制公告栏文字信息 */
.gonggao{
    text-align: center;
    font-size:17px;
    color:blue;
}
.wenzi{
    text-align: center;
    font-size:15px;
}

/* 关注我圆角 背景黑色 */
#green_channel {
    border: #7c7c7c 1px dashed;
    background-color: #999;
    border-radius: 6px;
    width:100%

}