.column-content-box {
  display: flex;
  gap: 24px;
  position: relative;    margin-top: 16px;
}
.column-left-box {
  position: relative;
  width: 100%;
  height: fit-content;
}
/* 右侧内容 */
.column-right-box {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.global-search-left {
  width: 856px;
  margin-right: 24px;
}
/* 主容器 */
.search-container {
  max-width: 1400px;
  margin: 0 auto;
  background: white;
  box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.08), 0 1px 2px rgba(0, 0, 0, 0.02);
  overflow: hidden;
  transition: all 0.2s;
}

/* 搜索头部 */
.search-header {
  background: white;
  padding: 24px 32px;
  border-bottom: 1px solid #eef2f6;
}

.search-title {
  font-weight: 600;
  background: linear-gradient(135deg, #1f2b48, #2d3a5e);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  letter-spacing: -0.3px;
  margin-bottom: 8px;
}

.search-sub {
  color: #5b6e8c;
  margin-bottom: 20px;
}

.search-bar {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

/* 统计栏 */
.stats-bar {
  padding: 14px 16px;
  background: #fafcff;
  border-bottom: 1px solid #eef2f6;
  font-size: var(--font-size-16);
  color: #3b4a66;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.result-count {
  font-weight: 500;
  background: #eef2ff;
  padding: 4px 12px;
  border-radius: 40px;
  font-size: var(--font-size-16);
}

/* 稿件列表区域 (网格卡片) */
.articles-grid {
  /* padding: 16px 16px; */
  display: flex;
  flex-direction: column;
  /* gap: 20px; */
  background: #ffffff;
  min-height: 460px;
}

/* 卡片样式 */
.article-card {
  /* background: #ffffff; */
  /* border-radius: 8px; */
  padding: 16px 24px;
  border-bottom: 1px solid #edf2f7;
  transition: all 0.25s ease;
  box-shadow: 0 1px 2px rgba(0,0,0,0.02);
  display: flex;
  gap: 16px;
}

.article-card:hover {
  border-color: #cbdffc;
  box-shadow: 0 8px 20px -8px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}
.card-image {
    flex-shrink: 0;
    width: 120px;
    height: 80px;
    border-radius: 4px;
    background-color: #f1f5f9;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.card-image img{
      object-fit: cover;
    width: 100%;
    height: 100%;
}
.article-title {
  font-size: var(--font-size-18);
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 18px;
  gap: 8px;
  flex-wrap: wrap;
  height: 2.4em;
  line-height: 1.2em;
}
.article-title a {
  color: rgba(0, 0, 0, 1);
}
.badge-type {
  background: #eef2ff;
  font-size: var(--font-size-14);
  font-weight: 500;
  padding: 2px 10px;
  border-radius: 30px;
  color: #2563eb;
}

.article-summary {
  color: #334155;
  line-height: 1.5;
  font-size: font-size: var(--font-size-16);
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.article-meta {
  display: flex;
  gap: 24px;
  font-size: font-size: var(--font-size-14);
  color: #6c7a91;
  /* border-top: 1px solid #f0f2f5; */
  /* padding-top: 12px; */
  /* margin-top: 4px; */
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* 底部页码栏 */
.pagination-area {
  padding: 20px 16px 28px;
  background: #ffffff;
}

.flex-pagination {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

/* 自定义下拉框样式 */
.page-size-control {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #f1f5f9;
  padding: 5px 20px 5px 18px;
  border-radius: 48px;
  box-shadow: inset 0 1px 1px rgba(0,0,0,0.02), 0 1px 3px rgba(0,0,0,0.04);
}

.page-size-label {
  font-size: var(--font-size-14);
  font-weight: 550;
  color: #1e293b;
  letter-spacing: -0.2px;
}

.page-size-select {
  background-color: #ffffff;
  border: 1px solid #cbd5e6;
  border-radius: 40px;
  padding: 6px 32px 6px 18px;
  font-size: var(--font-size-14);
  font-weight: 500;
  font-family: inherit;
  color: #0f172a;
  cursor: pointer;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  transition: all 0.2s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%233b4a66' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'></polyline></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 14px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.02);
  line-height: 1.2;
  min-width: 95px;
}

.page-size-select:hover {
  border-color: #818cf8;
  background-color: #fefefe;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}

.pagination-controls {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.page-btn, .prev-next {
  min-width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: white;
  border: 1px solid #e2e8f0;
  font-size: var(--font-size-14);
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  color: #1e293b;
  padding: 0 10px;
}

.page-btn:hover:not(.active-page):not(.disabled-btn) {
  background: #f1f5f9;
  border-color: #cbd5e1;
}

.active-page {
  background: #1e293b;
  border-color: #1e293b;
  color: white;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.prev-next.disabled-btn, .page-btn.disabled-btn {
  opacity: 0.5;
  cursor: not-allowed;
  background: #f8fafc;
}

.ellipsis {
  padding: 0 6px;
  color: #6c7a91;
  font-weight: 500;
}

.jump-box {
  display: flex;
  gap: 8px;
  align-items: center;
  background: #f8fafc;
  padding: 4px 12px;
  border-radius: 48px;
  display: none;
}

.jump-input {
  width: 65px;
  padding: 6px 8px;
  border: 1px solid #cbd5e1;
  border-radius: 28px;
  text-align: center;
  font-size: var(--font-size-14);
  outline: none;
}

.jump-btn {
  background: #eef2ff;
  border: none;
  padding: 5px 14px;
  border-radius: 30px;
  font-size: var(--font-size-14);
  font-weight: 500;
  cursor: pointer;
  transition: 0.1s;
}

.jump-btn:hover {
  background: #e0e7ff;
}

.info-text {
  font-size: var(--font-size-14);
  color: #5b6e8c;
}

.empty-state {
  text-align: center;
  padding: 48px 20px;
  color: #8b9ab0;
  font-size: var(--font-size-20);
}

//@media (max-width: 720px) {
//  body {
//    padding: 16px;
//  }
//  .articles-grid {
//    padding: 20px;
//  }
//  .flex-pagination {
//    flex-direction: column;
//    align-items: stretch;
//  }
//  .pagination-controls {
//    justify-content: center;
//  }
//}