/*默认导航消失*/
#header{display:none;}

body{
    background:#f8f8ee;
}
#sideBar {
    font-size: 15px;//右侧边栏字体
}
#blogTitle {
    height: 0px;//不显示博客title
    background: #fff;
    clear: both;
}
#home {
    margin: 0 auto;
    margin-top: 0px;
    margin-bottom: 0px;
    width: 80%;//整个博客占比
    min-width: 950px;
    background-color: #fff;
    padding: 0px;
    margin-top: 0px;
    margin-bottom: 50px;
    box-shadow: 0 2px 6px rgba(100, 100, 100, 0.3);
}
.c_b_p_desc {
    font-size: 14px;
    line-height: 2.7;//文章摘要行高
}

#sideBar {
    margin-top: -15px;
    width: 283px;//右侧边栏宽度
    min-height: 200px;
    padding: 0px 0 0px 5px;
    float: right;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    overflow: hidden;
}

#mainContent {
    min-height: 200px;
    padding: 0px 0px 10px 0;
    *padding-top: 10px;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    overflow: hidden;
    float: left;
    margin-left: -22em;
    width: 100%;//文章模块左边占比
}
#mainContent .forFlow {
    margin-left: 22em;//这是文章模块
    float: none;
    width: auto;
}
.dayTitle{
    display: flex;//这是文章摘要上面的日期信息
}
#cnzz_stat_icon_1274094756{
    margin: 0;
    padding: 0;
    text-align: center;
    display:block;
}

/*自定义导航栏*/
#headerbar ul {
	margin: 0;
	padding: 0;
        font-size:16px;
	list-style-type: none;
 	/*去除li前的标注*/
	background-color: #000;
	overflow: hidden;
 	/*隐藏溢出的部分，保持一行*/
}
#headerbar a:link {
    color: white;
    text-decoration: none;
}
#headerbar li {
	float: left;
 	/*左浮动*/
}

#headerbar li a, .dropbtn {
	display: inline-block;
 	/*设置成块*/
	color: white;
	text-align: center;
	text-decoration: #000;
	padding: 14px 16px;
}

#headerbar li a:hover, .dropdown:hover .dropbtn {
 	/*鼠标移上去，改变背景颜色*/
	background-color: blue;
}

#headerbar .dropdown {
	/*display:inline-block将对象呈递为内联对象，但是对象的内容作为块对象呈递。旁边的内联对象会被呈递在同一行内，允许空格。*/
	display: inline-block;
}

#headerbar .dropdown-content {
	display: none;
	position: absolute;
	background-color: #f9f9f9;
	min-width: 160px;
	box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
}

#headerbar .dropdown-content a {
	display: block;
	color: black;
	padding: 8px 10px;
	text-decoration: none;
}

#headerbar .dropdown-content a:hover {
	background-color: #339900;
}

#headerbar .dropdown:hover .dropdown-content {
	display: block;
}