html,body{
	margin:0;padding:0;
        width:100%;height:100%;
}
*,*:before,*:after{
	box-sizing: border-box;
}
*{
	font-family: STXihei, "华文细黑", Heiti, "黑体", "Microsoft YaHei", "微软雅黑", SimSun, "宋体", sans-serif;
}
a{
	text-decoration: none;
	color:inherit;
}
body{
	background-color: rgb(242, 242, 242);
}
ul{
	padding:0;
	margin: 0;
}
#home{
    height:100%;
}
#header {
    position: relative;
    width: 100%;
    height: 50%;
    background:#34495e;
    color:#fff;
}
#header h1{
    font-size:52px;
    color:#ffcc33;
}
#blogTitle {
    position: absolute;
    width: 100%;
    height: 20%;
    text-align: center;
    padding-top: 8%;
    z-index: 4;
}

/* 固定的导航栏 */
#navigator{
	position: fixed;
	width:100%;
	height:60px;
	top:0;
	background: #34495e;
	z-index: 5;
}
#navigator:before{
	content:"Web Front-End";
	color:#fff;
	display: block;
        width: 150px;
	height:40px;
	font:100 20px/40px STXihei,"华文细黑";
	position: absolute;
	top:10px;
	left:46px;
        font-size: 14px;
}

#navList{
	display: block;
	width:100%;
	list-style:none;
	text-align: right;
}
#navList li{
	display: inline-block;
	height:60px;
	line-height: 60px;
	border-radius: 18px;
	color:#fff;
	transition:all .3s;
	position: relative;
	font-size:14px;
}
#navList li:not(:last-child):after{
	content:'';
	display: block;
	width:2px;
	height:2px;
	border-radius: 50%;
	background-color: #eee;
	position:absolute;
	top:30px;
	right:-3px;
}
#navList li a{
	display: inline-block;
	height:100%;
	padding:0 20px;
}
#navList li:nth-of-type(1){
	display: none;
}
#navList li:nth-of-type(4){
	display: none;
}
#navList li:nth-of-type(5){
	display: none;
}
#navList li:nth-of-type(7){
	display: none;
}

.entrylistItem{
margin-bottom: 30px;
}

.entrylistPosttitle{
    font-weight: bold;
    font-size: 24px;
}
.entrylistItemPostDesc{
text-align: right;
}

#body{
	min-width: 1000px;
    margin: 20px 10% 20px;
}
.blogStats{
display:none;
}
.hui-main {
    float: left;
    width: 90%;
    background: #fff;
    padding: 20px;
}
.hui-main > .hui-b{
	float: none;
}
.hui-b{
	float: right;
}
.PostList a{
	font-size: 40px;
}

.postDesc2{
	text-align: right;
    margin: 10px 0;
    font-size: 16px;
}
/* 内容区 */
#mainContent{
	width:800px;
	margin:0 auto;
	background-color: #fefefe;
        padding-bottom:20px;
        padding-top:30px;
}
.dayTitle{
	display:none;
}
.postTitle{
    margin-bottom: 30px;
}
.postTitle a{
        padding:0px 30px;
	font-size:24px;
	color:#282828;
	-webkit-transition:all .2s;
	transition:all .2s;
	font-weight: bold;
}
.postTitle a:hover{
	color:#069;
}
.c_b_p_desc{
        padding:0px 30px;
	margin:20px 0;
	color:#555;
	line-height: 1.5;
	position: relative;
	font-size: 15px;
}
.c_b_p_desc_readmore{
        font-weight:bold;
        color:#53346D;
	-webkit-transition:all .2s;
	transition:all .2s;
}
.c_b_p_desc_readmore:before{
    content:"……";
    color:#53346D;
}
.c_b_p_desc_readmore:hover{
	color:#FF4E50;
}
.postDesc{
	text-align: right;
	font-size: 13px;
	color:#999;
        padding-right:30px;
        padding-bottom:20px;
        border-bottom:1px solid #eee;
        margin-bottom:20px;
}

/* 下一页 */
/* 下一页 */
#nav_next_page{
	padding:40px 0;
	background-color: #F2F2F2;
}
#nav_next_page a{
	display: block;
    width: 120px;
    height: 36px;
    line-height: 36px;
    text-align: center;
    margin: auto;
    border: 1px solid #948D8D;
    font-size: 14px;
    color: #34495e;
    -webkit-transition: all .2s;
    /* transition: all .2s; */
    /* border-radius: 100%; */
    margin-right: 20px;
}
#nav_next_page a:hover{
	background-color: #FF4E50;
	color:#fff;
}


/* 侧边 */
.catListTag h3{
	display: none;
}
.catListTag  ul li:hover{
	color: #069;
}
.catListTag  ul li{
	list-style-type: none;
        height:35px;
}

/*分类*/
.catListPostCategory ul li{
        list-style-type: none;
	height:36px;
	font:100 14px "Microsoft YaHei","微软雅黑",Helvetica;
}

/* 页脚 */
#footer{
	height:50px;
	background-color: #010101;
	text-align: center;
	line-height: 50px;
	color:#fff;
	font-size: 13px;
	letter-spacing: 3px;
	animation: blink 8s infinite;
}