#header{display:none;} /* 将默认的导航头屏蔽掉，这样才能把自己的导航栏加上去 */

/* cursor: 'https://pic.cnblogs.com/avatar/2355125/20210411202630.png',auto; */

/* 定制自己导航栏的样式 */
#shwtop ul {
    margin: 0px;
    padding: 0;
    list-style-type: none; /*去除li前的标注*/
    background-color: #333;
    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: blue;
}
#shwtop .dropdown {
    /*
    display:inline-block将对象呈递为内联对象，
    但是对象的内容作为块对象呈递。
    旁边的内联对象会被呈递在同一行内，允许空格。
    */
    display: inline-block;
}
#shwtop .dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 150px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
}

#shwtop .dropdown-content a {
    display: block;
    color: black;
    /* padding: 8px 10px; */
    padding: 8px 10px;
    text-decoration:none;
}
#shwtop .dropdown-content a:hover {
    background-color: #a1a1a1;
}
#shwtop .dropdown:hover .dropdown-content{
    display: block;
}

/* 定制生成博客目录的CSS样式 */
#uprightsideBar{
    font-size:14px;
    font-family:Arial, Helvetica, sans-serif;
    text-align:left;
    position:fixed;
    /*
    将div的位置固定到距离top:150px，right:0px的位置，
    这样div就会处在最右边的位置，距离顶部150px，
    当然这两个值你可以自己改。
    */
    top:150px;
    right:10px;
    width: auto;
    height: auto; 
}
#sideBarTab{
    float:left;
    width:25px; 
    box-shadow: 0 0 8px #efefef;
    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;
}

/* 快速返回顶部 */
/* 定制返回顶部按键 */
#toTop {
    background: url(https://images.cnblogs.com/cnblogs_com/shwee/1218109/o_toTop.bmp) no-repeat 0px top;
    width: 57px;
    height: 57px;
    overflow: hidden;
    position: fixed;
    right: 20px;
    bottom: 20px;
    cursor: pointer;
}

/* 定制页面扩大按键 */
#divExpandViewArea{
    position: fixed;
    color: white;
    padding: 10px 10px;
    left: 0px;
    top: 400px;
    cursor: pointer;
    opacity: 0.8;
    background-color: #68228B;
}
/* 定制页面缩小按键 */
#divCollapseViewArea{
    position: fixed;
    color: white;
    padding: 10px 10px;
    left: 0px;
    top: 445px;
    cursor: pointer;
    opacity: 0.8;
    background-color: #68228B;
}

/* 字体 */
/*文章内容详情页面的标h2、h3的样式*/
/* url */
#cb_post_title_url{
    font: 0.875em/1.5em "微软雅黑" , "PTSans" , "Arial" ,sans-serif;
    margin-left: 10px;
    margin-right: 10px;
    margin-top: 0.5em;
    /* background-color: blue; */
    /* link:pink;
    alink:blue;
    vlink:red; */
}

#cnblogs_post_body
{
    color: black;      
    font: 0.875em/1.5em "微软雅黑" , "PTSans" , "Arial" ,sans-serif;
    font-size: 15px;
    line-height: 28px; /* 行间距 */
    margin-left: 12px;
    margin-right: 12px;
}

#cnblogs_post_body h2 {
    background: #2B6695;
    border-radius: 6px 6px 6px 6px;
    box-shadow: 0 0 0 1px #5F5A4B, 1px 1px 6px 1px rgba(10, 10, 0, 0.5);
    color: #FFFFFF;
    font-family: "微软雅黑" , "宋体" , "黑体" ,Arial;
    font-size: 17px;
    font-weight: bold;
    height: 25px;
    line-height: 25px;
    margin: 18px 0 !important;
    padding: 8px 0 5px 5px;
    text-shadow: 2px 2px 3px #222222;
}

#cnblogs_post_body h3 {
    background: #2B6600;
    border-radius: 6px 6px 6px 6px;
    box-shadow: 0 0 0 1px #5F5A4B, 1px 1px 6px 1px rgba(10, 10, 0, 0.5);
    color: #eb3223;
    font-family: "微软雅黑" , "宋体" , "黑体" ,Arial;
    font-size: 13px;
    font-weight: bold;
    height: 24px;
    line-height: 23px;
    margin: 12px 0 !important;
    padding: 5px 0 5px 10px;
    text-shadow: 2px 2px 3px #222222;
}

/* 定制博客背景图片，url里面是你的图片位置信息 */

#main_container{
    margin-left: -154px;
    margin-right: 100px;
}

#leftmenu{
    display: none;
}

/* 去除广告 */
#cnblogs_c1 {
    display: none !important;
}

#ad_t2 {
    display: none !important;
}

#under_post_card1{
   display: none !important;
}

#under_post_card2{
   display: none !important;
}

/* #footer_site_link{
    display: none !important;
} */

/* #poweredby{
    display: none !important;
} */

#footer{
display:none;
}

.footer-des{
padding-top: 20px;
padding-bottom: 20px;
text-align: center;
color: #034fd8;
font-size: 12px;
/* background-color:black; */
}
.postTitle, .postTitl2, .entrylistPosttitle{
border-left-width:8px;
border-left-color:black;
}
/* a:link, a:visited{
/*color:#396;*/
color:rgb(174,18,29); */
}

body { 
    background-color: #efefef;
    background-image:url(https://images.cnblogs.com/cnblogs_com/blogs/677960/galleries/2037550/t_210929142043HuYan.png); 
    background-repeat: no-repeat; 
    background-attachment: fixed; 
    background-position: center 0; 
    background-size: cover; 
    padding-top:0px;
    opacity: 0.85;
  }

/*添加复制按钮*/
.cnblogs-markdown pre {
  position: relative;
}

.cnblogs-markdown pre > span {
  position: absolute;
  top: 0;
  right: 0;
  border-radius: 2px;
  padding: 0 10px;
  font-size: 12px;
  background: rgba(0, 0, 0, 0.4);
  color: #fff;
  cursor: pointer;
  display:none;
}
.cnblogs-markdown pre:hover > span {
  display:block;
}
.cnblogs-markdown pre > .copyed {
  background: #67c23a;
}

/* Code 大小 */
#cnblogs_post_body pre {
    /* font-family: Courier New!important; */
    font-size: 13px!important;
    /* word-wrap: break-word;
    white-space: pre-wrap; */
}

/* .cnblogs-post-body code {
    font-size: 10px;
} */