/*侧边卡片的透明度 */
:root {
  --card-bg: rgba(255, 255, 255, 0.9);
}

[data-theme="dark"] {
  --card-bg: rgba(255, 255, 255, 0.2);
}

/* 全局宽度 */
.layout {
    max-width: 1300px;
  }
  
  /* 侧边卡片栏宽度 */
  .aside-content {
    max-width: 318px;
    min-width: 300px;
  }
  
  /* 平板尺寸自适应(不启用侧边栏宽度限制) */
  @media screen and (max-width: 900px) {
    .aside-content {
      max-width: none !important;
      padding: 0 5px 0 5px;
    }
  }

  @media screen and (max-width: 900px) {
    #page-header #post-info {
        bottom:30px;
        text-align: left;
    }
}
#aside-content .card_links .item-content table a {
  color: var(--font-color)
}

#aside-content .card_links .item-content table a:hover {
  color: #49b1f5;
}

#web_bg {
  background-image: url(/img/index.webp);
}

@media (max-width: 767px) {
  #web_bg {
    background-image: url(/img/index1.webp);
  }
}