@media (max-width: 1280px) {
  :root {
    /* 文章标题 */
    --font-title-base: 24px;
  }
}

@media (max-width: 1024px) {
  :root {
    /* 文章标题 */
    --font-title-base: 20px;
  }
}

:root {
  /* 文章内容 */
  --font-text-base: 16px;
}

.article-header {
  margin-bottom: 28px;
}

/* 文章标题区域样式 */
.article-header .article-title {
  font-family: "Source Han Serif CN", serif;
  font-weight: 600;
  font-size: var(--font-title);
  color: #111111;
}

.article-header .article-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 6px;
}

.article-header .article-meta .article-tag {
  --fill-width: 6px;
  --fill-img-url: url('../../image/fill-bg/green-tag-border.png');
  --border-color: #3B804E;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 48px;
  height: 21px;
}

.article-header .article-meta .article-tag .tag-icon {
  position: absolute;
  left: 8px;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  background-color: #A49273;
  border-radius: 50%;
}

.tag-text {
  margin-left: -3px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  font-weight: 600;
  font-size: 12px;
  color: #3B804E;
  font-style: italic;
}

.article-date {
  font-weight: 700;
  font-size: 14px;
  color: #777777;
}

.article-content {
  font-size: var(--font-text);
}

.article-content a {
  color: #156bbc;
}

.article-content tbody td,
.article-content thead td {
  font-size: var(--font-text);
}

@media (max-width: 1024px) {
  .sidebar {
    display: none;
  }

  .article-header .article-meta {
    margin-top: 12px;
  }

  .article-header .article-meta .article-tag {
    display: none;
  }

  .date-range-wrapper {
    flex: 1;
  }

  .search-input-wrapper {
    flex: 1;
  }

  .article-content {
    width: 100%;
    overflow: hidden;
  }
}