#header{display:none;} /* 将默认的导航头屏蔽掉，这样才能把自己的导航栏加上去 */

/* 定制自己导航栏的样式 */
#shwtop ul {
    margin: 0;
    padding: 0;
    list-style-type: none; /*去除li前的标注*/
    background-color: transprent;
    overflow: hidden; /*隐藏溢出的部分，保持一行*/
}
#shwtop li {
    float: left; /*左浮动*/
}
#shwtop li a, .dropbtn {
    display: inline-block; /*设置成块*/
    color: white;
    text-align: center;
    text-decoration: none;
    padding: 14px 16px;
}
/*鼠标移上去，改变背景颜色*/
#shwtop li a:hover, .dropdown:hover .dropbtn {
    /* 当然颜色你可以自己改成自己喜欢的，我还是挺喜欢蓝色的 */
    background-color: bl;
}
#shwtop .dropdown {
    /*
    display:inline-block将对象呈递为内联对象，
    但是对象的内容作为块对象呈递。
    旁边的内联对象会被呈递在同一行内，允许空格。
    */
    display: inline-block;
}
#shwtop .dropdown-content {
    display: none;
    position: absolute;
    background-color: #3f4b57;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    border-radius: 15px;
}
#shwtop .dropdown-content a {
    display: block;
    color: white;
    padding: 8px 10px;
    text-decoration: none;
    border-radius: 15px;
  background-color: transprent;
}
#shwtop .dropdown-content a:hover {
    background-color: #a1a1a1;
}
#shwtop .dropdown:hover .dropdown-content{
    display: block;
}
#content {
    margin-left: 220px;
    padding-right: 0;
    border-left: 2px solid #ddd;
    border-bottom: 2px solid #ddd;
    padding: 10px;
    border-radius: 15px;
    margin-top: 8px;
    background-color: transparent;
}
body {
  
    background-color: #efefef;
    background-image:url(https://timgsa.baidu.com/timg?image&quality=80&size=b9999_10000&sec=1565169540599&di=93b3874640f9f984457c2c70c0ed1d06&imgtype=0&src=http%3A%2F%2Fimg.zcool.cn%2Fcommunity%2F01b53759ed4fc5a801202b0c040481.jpg%402o.jpg);
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center 0;
    background-size: cover;
    padding-top:0px;
    color:#d4c6c6;
}

#leftmenu {
    float: left;
    left: 0;
    width: 190px;
    padding: 0;
    padding-bottom: 5px;
    padding-left: 5px;
    overflow: hidden;
    background-color:transparent;
    border-radius: 15px;

}
element.style {
    text-align: center;
    font-size: 50px;
    color: #b94c4c;
    margin-bottom: 5px;
    margin-top: 20px;
    font-family: 楷体;

    margin-left: 255px;
}
.Cal {
    border: 1px solid #999;
    width: 180px;
    font-family: Arial;
    font-size: 13px;
    margin-top: 10px;
    margin-bottom: 10px;
    height: 180px;
    background-color: #eee;
    margin-left: 0;
    display: none;
}
/* 定制公告栏时钟位置 */
#clockdiv {
    /* left, center, right */
    text-align: center;
}
/*文章评论区宽度*/
#comment_form_container .comment_textarea {
    width: 98%;
    height: 100px;
}

/*隐藏广告区*/
.c_ad_block, .ad_text_commentbox {
    display:none;
}
#ad_t2 {
    display:none;
}
#content .post {
    font-size: 14px;
    line-height: 1.8;
    padding-left: 10px;
    background-color:#37444c;
}
a {
    color: #305bb5;
    text-decoration: none;
}