/* 宽屏适配 */
/* 全局宽度 */
.layout {
    max-width: 1900px;
  }

  /* 侧边卡片栏宽度 */
  .aside-content {
    max-width: 666px;
    min-width: 300px;
  }

  .category-bar-items {
    width: 1343px;
  }

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

  /* 除了首页以外其他页面隐藏卡片，并采用宽屏显示 */
  /* #archive,
  #page,
  #category,
  #tag {
    width: 100%;
  }
  .page:not(.page.home) .aside-content {
    display: none;
  } */