body {
    margin: 0;
    padding: 0;
    color: rgb(10, 10, 10);
    background-color: rgb(255, 255, 255);
    font-family: "微软雅黑","Trebuchet MS", Helvetica, sans-serif;
}

ul {
    display: block;
    list-style-type: none;
    margin-block-start: 0;
    margin-block-end: 0;
    margin-inline-start: 0;
    margin-inline-end: 0;
    padding-inline-start: 0;
    word-break: break-all;
}

/* 链接样式 */
a {
    text-decoration: none;
    color: inherit;
}

a:link {
    color: inherit;
}

a:visited {
    color: inherit;
}

a:hover {
    color: inherit;
}

/* **************************主页***************************** */
/*不显示博客园图标*/
#top_nav {
    display: none;
}

/*顶部样式*/
/* background: url("https://api.isoyu.com/bing_images.php") fixed no-repeat; */
#header {
    background-color: rgb(10, 110, 210);
    /* 顶部背景图片 */
    background: url("https://images.cnblogs.com/cnblogs_com/blogs/726439/galleries/2176992/o_220618065248_4c9101a26c01a2cfdbd5bf27c5ac558.jpg") fixed no-repeat; 
    background-size: cover;
    box-shadow: 0px 5px 2px rgba(72, 102, 210, 0.5);
    width: 100%;
    height: 100vh;
}

#header #blogTitle {
    width: 100%;
    height: 100vh;
    text-align: center;
    font-size: 30px;
    color: aliceblue;
    font-family: "Comic Sans MS", cursive, sans-serif;
}

/*头像logo*/

#header #blogTitle #blogLogo {
    background-color: rgba(255, 255, 255, 0);
    /* 头像链接与样式 */
    background: url("https://images.cnblogs.com/cnblogs_com/blogs/726439/galleries/2176992/o_220618071805_headicon.png") no-repeat;
    background-size: cover;
    border-radius: 10vh;
    margin-top: 30vh;
    width: 20vh;
    height: 20vh;
}

/*可隐藏的操作台*/
#header #navigator {
    width: 60px;
    height: 60px;
    border-radius: 30px;
    position: absolute;
    top:0;
    left:0;
    color: rgba(0, 0, 0, 0);
    display: block;
    overflow: hidden;
    padding: 0;
    background-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0px 5px 5px rgba(50, 24, 110, 0.1);
    filter: blur(0.5px);
    transition: all 0.5s linear 0s;
}

#header #navigator:hover {
    width: 100%;
    height: 60px;
    border-radius: 0px;
    background-color: rgba(80, 100, 210, 0.7);
    color: rgb(0, 0, 0);
    filter: blur(0px);
    opacity: 100%;
}

#navigator>ul {
    margin: auto;
    overflow: hidden;
    position: relative;
    width: 600px;
    list-style: none;
}

#navigator>ul>li {
    display: inline-block;
    text-align: center;
}

#navigator>ul>li>a {
    font-size: 25px;
    line-height: 55px;
    margin: 0px 10px 0px 10px;
}


#header #navigator .blogStats {
    display: none;
}

/* ----------------------------------主体-------------------------------------- */
#main {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 50px;
    margin-bottom: 120px;
}

#main #mainContent {
    width: 70%;
    margin: 0 1% 0 7%;
    /* 主体背景颜色 */
}

/*首页随笔整体*/
#main #mainContent .day {
    padding: 10px;
    background-color: rgba(255, 255, 255, 1);
    box-shadow: 5px 5px 15px rgb(14, 14, 14, 0.2),
        -5px -5px 15px rgb(70, 70, 70, 0.2);
    transition: all 0.3s ease 0s;
    margin-bottom: 40px;
}

#main #mainContent .day:hover {
    box-shadow: 5px 5px 15px rgba(14, 14, 14, 0.1),
        -5px -5px 15px rgba(70, 70, 70, 0.1);
}

/*首页随笔日期标题*/
#main #mainContent .dayTitle {
    display: none;
}

/*首页随笔标题*/
#main #mainContent .postTitle {
    width: auto;
    height: 40px;
    padding-left: 5px;
    border-left: 3px solid rgb(130, 130, 230);
    font-size: 30px;
    line-height: 40px;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    overflow: hidden;
    transition: all 0.5s ease;
}

#main #mainContent .postTitle:hover {
    border-color: rgba(130, 130, 230,0.5);
}

/*首页随笔摘要*/
#main #mainContent .postCon {
    margin: 15px 5px 0px 5px;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    font-size: 18px;
    color: #4F4F4F;
    overflow: hidden;
}

/*首页随笔阅读全文按钮*/
#main #mainContent .postCon .c_b_p_desc_readmore {
    display: block;
    float: right;
    border-radius: 10px;
    background-color: rgba(51, 48, 221, 0.1);
    margin-top: 15px;
    height: 50px;
    width: 80px;
    line-height: 50px;
    font-size: 15px;
    text-align: center;
}

/*首页随笔日期*/
#main #mainContent .postDesc {
    margin-bottom: 15px;
    text-align: left;
    font-size: 15px;
    color: rgba(0, 0, 0, 0.3);
    overflow: hidden;
    white-space: nowrap;
}

/* 下一页 */
#main #mainContent #nav_next_page {
    text-align: right;
}

#main #mainContent #nav_next_page a {
    font-size: 15px;
    padding: 10px 15px 10px 15px;
    background-color: rgba(80, 100, 210, 0.3);
    border: 3px double rgba(89, 59, 219, 0);
    border-radius: 10px;
    transition: all 0.5s linear;
}

#main #mainContent #nav_next_page a:hover {
    font-size: 15px;
    padding: 10px 15px 10px 15px;
    border: 3px solid rgba(89, 59, 219, 0.5);
    border-radius: 10px;
}

/* ----------------------------------主体-------------------------------------- */








/* ----------------------------------侧边栏-------------------------------------- */
/*侧边栏*/
#main #sideBar {
    width: 20%;
    /* 默认字体大小 */
    font-size: 20px;
}

/* 公告栏 */
/* 总体 */
#main #sideBar #sidebar_news {
    width: 90%;
    text-align: center;
    margin: 0 auto 15px auto;
    overflow: hidden;
    background-color: rgba(51, 48, 221, 0.2);   
}

/* 标题 */
#main #sideBar #sidebar_news .catListTitle {
    font-size: 20px;
}

/* 内容 */
#main #sideBar #sidebar_news #blog-news {
    display: block;
    float: left;
    font-size: 18px;
    text-align: left;
    margin: 0 0 10px 10px;
}


/* 日历 */
#main #sideBar #blog-calendar {
    overflow: hidden;
    width: 90%;
    margin: 0 auto 15px auto;
    font-size: 15px;
    background-color: rgba(51, 48, 221, 0.2);   
}

#main #sideBar #blog-calendar #blogCalendar {
    width: 100%;
    margin: 5px auto 10px auto;
    overflow: hidden;
    text-align: center;
}

#main #sideBar #blog-calendar #blogCalendar .CalTitle {
    overflow: hidden;
    margin: auto;
    font-size: 20px;
}


/* 后续所有组件的div公用设置 */
#main #sideBar .sidebar-block {
    width: 90%;
    overflow: hidden;
    margin: 0 auto 15px auto;
    background-color: rgba(51, 48, 221, 0.2);   
    text-align: center;
    font-size: 20px;
}

/* 后续所有标题通用设置 */
#main #sideBar h3 {
    margin: 5px 0 10px 0;
}

/* 后续所有ul li 通用设置 */
#main #sideBar ul {
    margin-bottom: 10px;
}

#main #sideBar li {
    margin-left: 10px;
    text-align: left;
    font-size: 18px;
    border-radius: 20px;
}

#main #sideBar li:hover {
    background-color: rgba(0, 0, 0, 0.1);
}

/* 搜索框 */

/* 站内搜索框 */
#main #sideBar #q {
    width: 90%;
    height: 25px;
    margin: 5px 0 0 0;
    background-color: rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 10px;
    color: rgb(230, 230, 230);
}

/* 谷歌搜索框 */
#main #sideBar #google_q {
    width: 90%;
    height: 25px;
    margin: 0;
    background-color: rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 10px;
    color: rgb(230, 230, 230);
}

/* 搜索按钮 */
#main #sideBar .btn_my_zzk {
    float: right;
    margin: 5px;
    width: 80px;
    height: 30px;
    text-align: center;
    font-size: 15px;
    font-weight: bolder;
    color: rgb(230, 230, 230);
    background-color: rgba(0, 0, 0, 0.1);
    border: 3px solid rgba(89, 59, 219, 0.5);
    border-radius: 10px;
    transition: all 0.5s ease;
}

#main #sideBar .btn_my_zzk:hover {
    background-color: rgba(89, 59, 219, 0.5);
}

/* ----------------------------------侧边栏-------------------------------------- */

/* 底部信息 */
#footer {
    width: 100%;
    height: 100px;
    text-align: center;
    font-size: 20px;
    padding: 40px 0 0 0;
    background-color: rgb(130, 120, 230);
    color: aliceblue;
}

/* **************************随笔正文***************************** */
/* 正文主体 */
#post_detail{
    padding: 20px 30px 20px 30px;
    background-color: rgba(255, 255, 255, 1);
    box-shadow: 5px 5px 15px rgb(14, 14, 14, 0.2),
        -5px -5px 15px rgb(70, 70, 70, 0.2);
}
/* 复制键 */
#green_channel{
    display: none;
}
/* 上一篇/下一篇 */
#post_next_prev{
    margin: 5px;
    font-size: 18px;
    font-weight: bolder;
}

/*************************评论区******************************/
#blog-comments-placeholder{
    margin-top: 30px;
    background-color: rgba(130, 130, 230,0.3);
    box-shadow: 5px 5px 15px rgb(14, 14, 14, 0.2),
        -5px -5px 15px rgb(70, 70, 70, 0.2);
}
/* 不显示顶部空行 */
#blog-comments-placeholder br{
    display: none;
}
/* 评论列表标题 */
#blog-comments-placeholder .feedback_area_title{
    height: 50px;
    width: 100%;
    text-align: center;
    font-size: 25px;
    line-height: 50px;
    margin: 0;
    padding: 0;
}
/* 楼层 */
#blog-comments-placeholder .feedbackListSubtitle
{
    background-color: rgba(130, 130, 230,0.3);
    font-size: 16px;
    margin: 0;
}
/* 楼层号 */
#blog-comments-placeholder .feedbackListSubtitle .layer
{
    border-left: 3px solid rgba(20, 20, 230, 0.5);
    padding-left: 5px;
}
/* 内容 */
#blog-comments-placeholder .feedbackCon{
    font-size: 18px;
    margin: 0;
    padding: 10px;
}
/* 回复引用删除 */
#blog-comments-placeholder .comment_actions a
{
    font-size: 15px;
    line-height: 25px;
}
/* 支持 */
#blog-comments-placeholder .comment_digg{
    height: 25px;
    width: auto;
    margin: 5px;
    padding: 0 5px 0 5px;
    font-size: 15px;
    line-height: 25px;
    border-radius: 5px;
    background-color: rgb(40, 100, 170);
    color: aliceblue;
}
/* 反对 */
#blog-comments-placeholder .comment_burry
{
    height: 20px;
    width: auto;
    margin: 5px;
    padding: 0 5px 0 5px;
    font-size: 15px;
    line-height: 20px;
    border-radius: 5px;
    background-color: rgb(135, 95, 195);
    color: aliceblue;
}
#comment_form {
    display: none;
    /* 隐藏广告 */
}