@charset "UTF-8";
html,
body {
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
  font-size: 14px;
  line-height: 1.5;
  color: rgb(38, 40, 42);
  background: #fff;
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

p {
  margin: 0;
  padding: 0;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}
a:hover {
  color: #2c5282;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
  font-weight: normal;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  border-style: none;
}

button,
input,
select,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  outline: none;
  border: none;
  background: none;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Microsoft YaHei", "PingFang SC", -apple-system, BlinkMacSystemFont, sans-serif;
  background: #ffffff;
  color: #333333;
  min-height: 100vh;
}

/* 导航栏 */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

.logo img {
  height: 40px;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 30px;
}

.nav-item a {
  color: #333333;
  text-decoration: none;
  padding: 8px 15px;
  transition: color 0.3s ease;
}

.nav-item a:hover {
  color: #2c5282;
}

.nav-item.act a {
  color: #2c5282;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #333333;
  margin: 3px 0;
  transition: 0.3s;
}

/* 页脚 */
.footer {
  background: #f8f9fa;
  padding: 40px 0 20px;
  border-top: 1px solid #e2e8f0;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-bottom: 30px;
}

.footer-section h3 {
  margin-bottom: 15px;
  color: #2c5282;
  font-size: 16px;
}

.footer-links {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: #666666;
  text-decoration: none;
  font-size: 14px;
}

.footer-links a:hover {
  color: #2c5282;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #e2e8f0;
  color: #888888;
  font-size: 14px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.home {
  /* 主内容区域 */
  /* 头条新闻 */
  /* 新闻网格 */
  /* 侧边栏 */
  /* 标签云 */
  /* 分类新闻模块 */
  /* 响应式设计 - 手机 */
}
.home .main-content {
  margin-top: 70px;
  padding: 30px 0;
}
.home .featured-news {
  margin-bottom: 40px;
}
.home .featured-container {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 30px;
  background: #f8f9fa;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.home .featured-main {
  position: relative;
}
.home .featured-image {
  width: 100%;
  height: 300px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 16px;
}
.home .featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.home .featured-content {
  padding: 20px;
}
.home .featured-category {
  display: inline-block;
  background: #2c5282;
  color: white;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 12px;
  margin-bottom: 12px;
}
.home .featured-title {
  font-size: 20px;
  margin-bottom: 10px;
  line-height: 1.3;
}
.home .featured-excerpt {
  font-size: 14px;
  color: #666666;
  margin-bottom: 10px;
  line-height: 1.5;
}
.home .featured-meta {
  font-size: 12px;
  color: #888888;
}
.home .featured-sidebar {
  background: #ffffff;
  padding: 20px;
  border-left: 1px solid #e2e8f0;
}
.home .featured-sidebar-title {
  font-size: 16px;
  margin-bottom: 15px;
  color: #2c5282;
  border-bottom: 2px solid #2c5282;
  padding-bottom: 8px;
}
.home .sidebar-news-list {
  list-style: none;
}
.home .sidebar-news-item {
  padding: 10px 0;
  border-bottom: 1px solid #e2e8f0;
}
.home .sidebar-news-item:last-child {
  border-bottom: none;
}
.home .sidebar-news-title {
  font-size: 14px;
  line-height: 1.4;
  margin-bottom: 5px;
}
.home .sidebar-news-title a {
  color: #333333;
  text-decoration: none;
}
.home .sidebar-news-title a:hover {
  color: #2c5282;
}
.home .sidebar-news-meta {
  font-size: 12px;
  color: #888888;
}
.home .news-section {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.home .main-news {
  display: grid;
  gap: 30px;
}
.home .news-item {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 20px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 20px;
  transition: box-shadow 0.3s ease;
}
.home .news-item:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.home .news-image {
  width: 200px;
  height: 120px;
  background: #e2e8f0;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666666;
  font-size: 14px;
}
.home .news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.home .news-content {
  flex: 1;
}
.home .news-category {
  display: inline-block;
  background: #e2e8f0;
  color: #2c5282;
  padding: 3px 8px;
  border-radius: 3px;
  font-size: 12px;
  margin-bottom: 10px;
}
.home .news-title {
  font-size: 18px;
  margin-bottom: 10px;
  line-height: 1.4;
}
.home .news-title a {
  color: #333333;
  text-decoration: none;
}
.home .news-title a:hover {
  color: #2c5282;
}
.home .news-excerpt {
  color: #666666;
  font-size: 14px;
  margin-bottom: 10px;
  line-height: 1.5;
}
.home .news-meta {
  font-size: 12px;
  color: #888888;
}
.home .sidebar {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.home .sidebar-section {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 25px;
}
.home .sidebar-title {
  font-size: 18px;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #2c5282;
  color: #2c5282;
}
.home .trending-list {
  list-style: none;
}
.home .trending-item {
  display: flex;
  align-items: flex-start;
  padding: 12px 0;
  border-bottom: 1px solid #e2e8f0;
}
.home .trending-item:last-child {
  border-bottom: none;
}
.home .trending-number {
  background: #2c5282;
  color: white;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
  font-weight: bold;
  font-size: 12px;
  flex-shrink: 0;
}
.home .trending-title {
  font-size: 14px;
  line-height: 1.4;
}
.home .trending-title a {
  color: #333333;
  text-decoration: none;
}
.home .trending-title a:hover {
  color: #2c5282;
}
.home .tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.home .tag {
  background: #f8f9fa;
  border: 1px solid #e2e8f0;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 13px;
  text-decoration: none;
  color: #333333;
  transition: all 0.3s ease;
}
.home .tag:hover {
  background: #2c5282;
  color: white;
  border-color: #2c5282;
}
.home .category-news {
  margin-bottom: 40px;
}
.home .category-tabs {
  display: flex;
  gap: 0;
  margin-bottom: 20px;
  border-bottom: 2px solid #e2e8f0;
}
.home .tab-btn {
  background: none;
  border: none;
  padding: 12px 24px;
  font-size: 16px;
  cursor: pointer;
  color: #666666;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
}
.home .tab-btn.active {
  color: #2c5282;
  border-bottom-color: #2c5282;
}
.home .tab-btn:hover {
  color: #2c5282;
}
.home .category-panel {
  display: none;
}
.home .category-panel.active {
  display: block;
}
.home .category-news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.home .category-news-item {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}
.home .category-news-item:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.home .category-news-image {
  width: 100%;
  height: 160px;
  background: #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666666;
  font-size: 14px;
}
.home .category-news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.home .category-news-content {
  padding: 15px;
}
.home .category-news-title {
  font-size: 16px;
  margin-bottom: 8px;
  line-height: 1.4;
}
.home .category-news-title a {
  color: #333333;
  text-decoration: none;
}
.home .category-news-title a:hover {
  color: #2c5282;
}
.home .category-news-excerpt {
  color: #666666;
  font-size: 13px;
  margin-bottom: 10px;
  line-height: 1.5;
}
.home .category-news-meta {
  font-size: 12px;
  color: #888888;
}
@media (max-width: 768px) {
  .home .news-section {
    flex-direction: column;
    display: flex !important;
  }
  .home .hamburger {
    display: none;
  }
  .home .container {
    padding: 0 15px;
  }
  .home .featured-container {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .home .featured-sidebar {
    border-left: none;
    border-top: 1px solid #e2e8f0;
  }
  .home .featured-image {
    height: 200px;
  }
  .home .category-news-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .home .news-item {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .home .news-image {
    width: 100%;
    height: 180px;
  }
  .home .sidebar {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .home .category-news-grid {
    grid-template-columns: repeat(1, 1fr);
    gap: 15px;
  }
  .home .footer-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .nav-container {
    padding-left: 10px;
    padding-right: 10px;
    flex-direction: column;
    gap: 10px;
  }
  .nav-menu {
    gap: 15px !important;
    flex-wrap: wrap;
  }
  .nav-menu a {
    padding-left: 0;
    padding-right: 0;
  }
}
@media (max-width: 768px) {
  .bread {
    margin-bottom: 20px;
    margin-left: 15px !important;
  }
}
.bread {
  display: flex;
  align-items: center;
  gap: 8px;
  left: 22px;
  font-size: 14px;
  line-height: 22px;
  width: min(1200px, 100%);
  margin: 0 auto;
  margin-bottom: 20px;
}
.bread .link {
  color: rgba(0, 0, 0, 0.45);
  cursor: pointer;
}
.bread .link a {
  color: rgba(0, 0, 0, 0.45);
}
.bread .text {
  color: rgb(0, 0, 0);
  font-weight: bold;
}

.list-page {
  padding-top: 90px;
  /* 主内容区域 */
  /* 面包屑导航 */
  /* 页面标题 */
  /* 排序和筛选 */
  /* 新闻列表 */
  /* 分页 */
  /* 侧边栏 */
  /* 相关分类 */
  /* 页脚 */
  /* 响应式设计 - 平板 */
  /* 响应式设计 - 手机 */
}
.list-page .main-content {
  margin-top: 70px;
  padding: 30px 0;
}
.list-page .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
}
.list-page .breadcrumb {
  margin-bottom: 30px;
  padding: 15px 0;
  border-bottom: 1px solid #e2e8f0;
}
.list-page .breadcrumb-list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}
.list-page .breadcrumb-item a {
  color: #666666;
  text-decoration: none;
}
.list-page .breadcrumb-item a:hover {
  color: #2c5282;
}
.list-page .breadcrumb-item.current {
  color: #2c5282;
  font-weight: 500;
}
.list-page .breadcrumb-separator {
  color: #888888;
}
.list-page .page-header {
  margin-bottom: 30px;
}
.list-page .page-title {
  font-size: 28px;
  color: #2c5282;
  margin-bottom: 10px;
}
.list-page .page-description {
  color: #666666;
  font-size: 16px;
}
.list-page .main-content-area {
  display: flex;
  flex-direction: column;
}
.list-page .filter-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  padding: 15px;
  background: #f8f9fa;
  border-radius: 8px;
}
.list-page .filter-left {
  display: flex;
  align-items: center;
  gap: 15px;
}
.list-page .filter-label {
  font-size: 14px;
  color: #666666;
}
.list-page .filter-tabs {
  display: flex;
  gap: 5px;
}
.list-page .filter-tab {
  background: none;
  border: 1px solid #e2e8f0;
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 13px;
  cursor: pointer;
  color: #666666;
  transition: all 0.3s ease;
}
.list-page .filter-tab.active {
  background: #2c5282;
  color: white;
  border-color: #2c5282;
}
.list-page .filter-tab:hover {
  border-color: #2c5282;
  color: #2c5282;
}
.list-page .filter-tab.active:hover {
  color: white;
}
.list-page .sort-select {
  border: 1px solid #e2e8f0;
  padding: 6px 10px;
  border-radius: 4px;
  font-size: 13px;
  background: white;
}
.list-page .news-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.list-page .news-item {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 20px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 20px;
  transition: box-shadow 0.3s ease;
}
.list-page .news-item:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.list-page .news-image {
  width: 200px;
  height: 120px;
  background: #e2e8f0;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666666;
  font-size: 14px;
}
.list-page .news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.list-page .news-content {
  flex: 1;
}
.list-page .news-category {
  display: inline-block;
  background: #e2e8f0;
  color: #2c5282;
  padding: 3px 8px;
  border-radius: 3px;
  font-size: 12px;
  margin-bottom: 10px;
}
.list-page .news-title {
  font-size: 18px;
  margin-bottom: 10px;
  line-height: 1.4;
}
.list-page .news-title a {
  color: #333333;
  text-decoration: none;
}
.list-page .news-title a:hover {
  color: #2c5282;
}
.list-page .news-excerpt {
  color: #666666;
  font-size: 14px;
  margin-bottom: 10px;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
}
.list-page .news-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: #888888;
}
.list-page .news-stats {
  display: flex;
  gap: 15px;
}
.list-page .news-stat {
  display: flex;
  align-items: center;
  gap: 3px;
}
.list-page .pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 40px;
  padding: 20px 0;
}
.list-page .pagination-btn {
  background: white;
  border: 1px solid #e2e8f0;
  padding: 8px 12px;
  border-radius: 4px;
  color: #666666;
  text-decoration: none;
  transition: all 0.3s ease;
}
.list-page .pagination-btn:hover {
  border-color: #2c5282;
  color: #2c5282;
}
.list-page .pagination-btn.active {
  background: #2c5282;
  color: white;
  border-color: #2c5282;
}
.list-page .pagination-btn.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.list-page .pagination-btn.disabled:hover {
  border-color: #e2e8f0;
  color: #666666;
}
.list-page .sidebar {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.list-page .sidebar-section {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 25px;
}
.list-page .sidebar-title {
  font-size: 18px;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #2c5282;
  color: #2c5282;
}
.list-page .trending-list {
  list-style: none;
}
.list-page .trending-item {
  display: flex;
  align-items: flex-start;
  padding: 12px 0;
  border-bottom: 1px solid #e2e8f0;
}
.list-page .trending-item:last-child {
  border-bottom: none;
}
.list-page .trending-number {
  background: #2c5282;
  color: white;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
  font-weight: bold;
  font-size: 12px;
  flex-shrink: 0;
}
.list-page .trending-title {
  font-size: 14px;
  line-height: 1.4;
}
.list-page .trending-title a {
  color: #333333;
  text-decoration: none;
}
.list-page .trending-title a:hover {
  color: #2c5282;
}
.list-page .related-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.list-page .category-tag {
  background: #f8f9fa;
  border: 1px solid #e2e8f0;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 13px;
  text-decoration: none;
  color: #333333;
  transition: all 0.3s ease;
}
.list-page .category-tag:hover {
  background: #2c5282;
  color: white;
  border-color: #2c5282;
}
.list-page .footer {
  background: #f8f9fa;
  padding: 40px 0 20px;
  border-top: 1px solid #e2e8f0;
}
.list-page .footer-content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-bottom: 30px;
}
.list-page .footer-section h3 {
  margin-bottom: 15px;
  color: #2c5282;
  font-size: 16px;
}
.list-page .footer-links {
  list-style: none;
}
.list-page .footer-links li {
  margin-bottom: 8px;
}
.list-page .footer-links a {
  color: #666666;
  text-decoration: none;
  font-size: 14px;
}
.list-page .footer-links a:hover {
  color: #2c5282;
}
.list-page .footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #e2e8f0;
  color: #888888;
  font-size: 14px;
}
@media (max-width: 1024px) {
  .list-page .content-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .list-page .sidebar {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
    display: grid;
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .list-page .container {
    padding: 0 15px;
  }
  .list-page .filter-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
  .list-page .filter-left {
    flex-wrap: wrap;
  }
  .list-page .news-item {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .list-page .news-image {
    width: 100%;
    height: 180px;
  }
  .list-page .sidebar {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .list-page .footer-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .list-page .pagination {
    flex-wrap: wrap;
    gap: 5px;
  }
}

.pagination-container {
  margin: 30px auto 20px;
  display: flex;
  justify-content: center;
}
.pagination-container ul {
  display: flex;
  align-items: center;
  gap: 10px;
}
.pagination-container ul.page-no li.active {
  background: #2c5282;
  font-weight: 600;
  color: #fff;
}
.pagination-container ul li {
  cursor: pointer;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.08);
  text-align: center;
  color: #999;
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  overflow: hidden;
}
.pagination-container ul li a {
  width: 40px;
  height: 40px;
  line-height: 40px;
  color: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pagination-container ul li a.active {
  background: #2c5282;
  font-weight: 600;
  color: #fff;
}
.pagination-container ul li.page-options {
  width: 70px;
}
.pagination-container ul li.page-options a {
  width: 70px;
}

@media (max-width: 768px) {
  .pagination-container {
    margin-top: 15px;
    transform: scale(0.8);
  }
}
.detail-page {
  width: min(750px, 100%);
  margin: 0 auto;
  min-height: calc(100vh - 70px);
  padding-bottom: 20px;
  padding-top: 90px;
}
.detail-page .detail-box .title {
  margin-top: 38px;
  margin-bottom: 20px;
  line-height: 23px;
  font-size: 20px;
  color: rgb(38, 40, 42);
  font-weight: bold;
}
.detail-page .detail-box .source {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.detail-page .detail-box .source img {
  width: 40px;
  height: 40px;
  object-fit: cover;
  border-radius: 50%;
  margin-right: 18px;
}
.detail-page .detail-box .source .name-info .name {
  margin-bottom: 8px;
  color: rgb(38, 38, 38);
  font-size: 16px;
  line-height: 18px;
}
.detail-page .detail-box .source .name-info .time {
  font-size: 14px;
  line-height: 18px;
  color: rgb(140, 140, 140);
}
.detail-page .detail-box .content {
  word-break: break-all;
}

@media (max-width: 768px) {
  .detail-page {
    padding: 0 8px;
    margin: 8px auto;
    padding-top: 20px;
  }
  .detail-page .detail-box .title {
    margin-top: 15px;
    margin-bottom: 10px;
    font-size: 16px;
  }
  .detail-page .detail-box .source {
    margin-bottom: 10px;
  }
  .detail-page .detail-box .source img {
    margin-right: 10px;
  }
  .detail-page .detail-box .source .name-info .name {
    font-size: 16px;
  }
}

/*# sourceMappingURL=index.css.map */
