/*加载特效*/
/*@-webkit-keyframes loading{0%{opacity:0}to{opacity:1}}@keyframes loading{0%{opacity:0}to{opacity:1}}.dark-loading{background:#222}.light-loading{background:#fff}.dark-loading,.light-loading{position:fixed;top:0;left:0;bottom:0;right:0;display:flex;justify-content:center;align-items:center;z-index:99999}.dark-loading .box h2,.light-loading .box h2{color:#777;margin:0;font:.8em verdana;text-transform:uppercase;letter-spacing:.1em;text-align:center}.dark-loading .box span,.light-loading .box span{display:inline-block;vertical-align:middle;width:.6em;height:.6em;margin:.19em;background:#007db6;border-radius:.6em;-webkit-animation:loading 1s infinite alternate;animation:loading 1s infinite alternate}.dark-loading .box span:nth-of-type(2),.light-loading .box span:nth-of-type(2){background:#008fb2;-webkit-animation-delay:.2s;animation-delay:.2s}.dark-loading .box span:nth-of-type(3),.light-loading .box span:nth-of-type(3){background:#009b9e;-webkit-animation-delay:.4s;animation-delay:.4s}.dark-loading .box span:nth-of-type(4),.light-loading .box span:nth-of-type(4){background:#00a77d;-webkit-animation-delay:.6s;animation-delay:.6s}.dark-loading .box span:nth-of-type(5),.light-loading .box span:nth-of-type(5){background:#00b247;-webkit-animation-delay:.8s;animation-delay:.8s}.dark-loading .box span:nth-of-type(6),.light-loading .box span:nth-of-type(6){background:#5ab027;-webkit-animation-delay:1s;animation-delay:1s}.dark-loading .box span:nth-of-type(7),.light-loading .box span:nth-of-type(7){background:#a0b61e;-webkit-animation-delay:1.2s;animation-delay:1.2s}*/

/*标题字体大小*/
#cb_post_title_url{font-size:28px;}


/*添加复制按钮*/
.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;
}