/* 取消banner背景 */
#page-header {
  /* 采用透明的方式取消，最后一个0表示透明 */
  background-color: rgba(255, 255, 255, 0);
}
#footer {
  background: #00000000;
}
/*#aside_content .card-widget, #recent-posts>.recent-post-item, .layout_page>div:first-child:not(.recent-posts), .layout_post>#page, .layout_post>#post, .read-mode .layout_post>#post{
    background: rgba(255,255,255,.85);
}
div#aside_content{
  background: rgba(255, 255, 255, 0.85);
}
div#post{
  background: rgba(255, 255, 255, 0.85);
}
div#page{
  background: rgba(255, 255, 255, 0.85);
}
div#archive{
  background: rgba(255, 255, 255, 0.85);
}
div#tag{
  background: rgba(255, 255, 255, 0.85);
}
div#category{
  background: rgba(255, 255, 255, 0.85);
}*/

/* 滚动条优化 */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background-color: rgba(129, 41, 144, 0.2);
  border-radius: 2em;
}

::-webkit-scrollbar-thumb {
  background-color: #812990;
  background-image: -webkit-linear-gradient(
    45deg,
    rgba(255, 255, 255, 0.4) 25%,
    transparent 25%,
    transparent 50%,
    rgba(255, 255, 255, 0.4) 50%,
    rgba(255, 255, 255, 0.4) 75%,
    transparent 75%,
    transparent
  );
  border-radius: 2em;
}

::-webkit-scrollbar-corner {
  background-color: transparent;
}

::-moz-selection {
  color: #fff;
  background-color: #ec29f3;
}