@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: #ff4444;
}

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", Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
  min-height: 100vh;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  background: white;
}

/* 顶部边框 */
.top-border {
  border-bottom: 2px solid #e5e5e5;
}

/* 主要内容区域 */
.main-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 20px;
  padding: 20px;
  border-bottom: 1px solid #e5e5e5;
  align-items: flex-start;
  margin-bottom: 30px;
}

/* 左侧主要新闻 */
.main-news {
  display: flex;
  flex-direction: column;
}

.featured-news {
  margin-bottom: 30px;
}

.featured-article a {
  text-decoration: none;
  color: inherit;
  display: block;
}

.featured-image {
  width: 100%;
  height: 300px;
  margin-bottom: 15px;
  border-radius: 4px;
  overflow: hidden;
}

.featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.featured-title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.featured-desc {
  font-size: 14px;
  color: #666;
  line-height: 1.8;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* 团队展示区域 */
.team-section {
  margin-bottom: 30px;
}

.team-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.team-image {
  height: 200px;
  border-radius: 4px;
  overflow: hidden;
}

.team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 右侧边栏 */
.sidebar {
  background: #f9f9f9;
  padding: 20px;
  border-radius: 4px;
}

.sidebar-section {
  margin-bottom: 30px;
}

.sidebar-section:last-child {
  margin-bottom: 0;
}

.section-title {
  font-size: 18px;
  font-weight: bold;
  color: #333;
  margin-bottom: 15px;
  padding-bottom: 8px;
  border-bottom: 2px solid #ff4444;
  position: relative;
}

.sidebar-list {
  list-style: none;
}

.sidebar-item {
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px dashed #ddd;
}

.sidebar-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.sidebar-item a {
  text-decoration: none;
  color: #333;
  font-size: 14px;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.sidebar-item a:hover {
  color: #ff4444;
}

/* 底部分类新闻区域 */
.news-categories {
  padding: 0 0px 20px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.category-section {
  background: #fff;
}

.category-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  padding-bottom: 8px;
  border-bottom: 2px solid #ff4444;
}

.category-title {
  font-size: 18px;
  font-weight: bold;
  color: #333;
}

.more-btn {
  font-size: 12px;
  color: #666;
  text-decoration: none;
  padding: 4px 8px;
  border: 1px solid #ddd;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.more-btn:hover {
  color: #ff4444;
  border-color: #ff4444;
}

.category-list {
  list-style: none;
}

.category-item {
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px dashed #eee;
}

.category-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.category-item a {
  text-decoration: none;
  color: inherit;
  display: flex;
  gap: 12px;
}

.category-image {
  width: 80px;
  height: 60px;
  flex-shrink: 0;
  border-radius: 3px;
  overflow: hidden;
}

.category-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.category-content {
  flex: 1;
}

.category-item-title {
  font-size: 14px;
  font-weight: normal;
  margin-bottom: 5px;
  color: #333;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.category-item a:hover .category-item-title {
  color: #ff4444;
}

.category-desc {
  font-size: 12px;
  color: #999;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.category-meta {
  font-size: 12px;
  color: #999;
  margin-top: 5px;
}

/* 响应式设计 */
@media (max-width: 1024px) {
  .news-categories {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .main-content {
    grid-template-columns: 1fr;
    padding: 15px;
  }
  .news-categories {
    grid-template-columns: 1fr;
    padding: 0 15px 15px;
    gap: 25px;
  }
  .team-images {
    grid-template-columns: 1fr;
  }
  .banner-items {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
  .featured-title {
    font-size: 20px;
  }
  .category-item a {
    flex-direction: column;
  }
  .category-image {
    width: 100%;
    height: 120px;
  }
}
@media (max-width: 480px) {
  .container {
    margin: 0;
  }
  .top-banner,
  .main-content,
  .news-categories {
    padding-left: 10px;
    padding-right: 10px;
  }
  .featured-image {
    height: 200px;
  }
  .team-image {
    height: 150px;
  }
}
.list-page {
  padding-top: 20px;
  /* 页面头部 */
  /* 主要内容区域 */
  /* 新闻列表 */
  /* 新闻条目 */
  /* 响应式设计 */
}
.list-page .page-header {
  padding: 30px 20px;
  border-bottom: 2px solid #e5e5e5;
}
.list-page .page-title {
  font-size: 28px;
  font-weight: bold;
  color: #333;
  margin-bottom: 10px;
}
.list-page .page-subtitle {
  font-size: 14px;
  color: #666;
}
.list-page .main-content {
  padding: 20px;
}
.list-page .news-list {
  background: #fff;
}
.list-page .list-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #ff4444;
}
.list-page .list-title {
  font-size: 20px;
  font-weight: bold;
  color: #333;
}
.list-page .list-meta {
  font-size: 14px;
  color: #666;
}
.list-page .news-item {
  margin-bottom: 25px;
  padding-bottom: 25px;
  border-bottom: 1px solid #eee;
  transition: transform 0.2s ease;
}
.list-page .news-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
.list-page .news-item a {
  text-decoration: none;
  color: inherit;
  display: flex;
  gap: 20px;
}
.list-page .news-item:hover {
  transform: translateY(-2px);
}
.list-page .news-image {
  width: 200px;
  height: 130px;
  flex-shrink: 0;
  border-radius: 4px;
  overflow: hidden;
}
.list-page .news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.list-page .news-item:hover .news-image img {
  transform: scale(1.05);
}
.list-page .news-content {
  flex: 1;
}
.list-page .news-title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #333;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.list-page .news-item:hover .news-title {
  color: #ff4444;
}
.list-page .news-summary {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.list-page .news-meta {
  font-size: 12px;
  color: #999;
  display: flex;
  gap: 15px;
}
@media (max-width: 768px) {
  .list-page .news-list {
    padding: 0 10px;
  }
  .list-page .main-content {
    padding: 15px;
  }
  .list-page .news-item a {
    flex-direction: column;
  }
  .list-page .news-image {
    width: 100%;
    height: 200px;
  }
  .list-page .news-title {
    font-size: 16px;
  }
  .list-page .page-title {
    font-size: 24px;
  }
  .list-page .pagination-list {
    flex-wrap: wrap;
    justify-content: center;
  }
}
@media (max-width: 480px) {
  .list-page .container {
    margin: 0;
  }
  .list-page .breadcrumb,
  .list-page .page-header,
  .list-page .main-content {
    padding-left: 10px;
    padding-right: 10px;
  }
  .list-page .news-image {
    height: 160px;
  }
  .list-page .news-title {
    font-size: 15px;
  }
  .list-page .page-title {
    font-size: 20px;
  }
}

header {
  position: fixed;
  z-index: 333;
  left: 0;
  top: 0;
  right: 0;
}

.header-height {
  height: 70px;
}

/* 导航栏 */
.navbar {
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

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

.logo img {
  height: 40px;
}

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

.nav-menu a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s;
  font-size: 14px;
}

.nav-menu a:hover, .nav-menu .active a {
  color: #ff4444;
  border-bottom: 2px solid #ff4444;
  padding-bottom: 10px;
}

/* 移动端菜单按钮 */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background-color: #333;
  margin: 3px 0;
  transition: 0.3s;
}

/* 底部 */
.footer {
  background-color: #333;
  color: #fff;
  padding: 40px 0 20px;
}

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

.footer-info {
  text-align: center;
  margin-bottom: 30px;
}

.footer-logo {
  font-size: 28px;
  font-weight: bold;
  color: #007bff;
  margin-bottom: 10px;
}

.footer-description {
  color: #ccc;
  max-width: 600px;
  margin: 0 auto;
}

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

.footer-links a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #007bff;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #555;
  color: #999;
}

@media (max-width: 768px) {
  .nav-menu {
    display: none !important;
    flex-direction: column;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
  }
  .nav-menu.active {
    display: flex !important;
  }
  .menu-toggle {
    display: flex !important;
  }
  .footer-links {
    flex-direction: column;
    gap: 15px;
  }
}
.pagination-container {
  display: flex;
  justify-content: center;
  margin-top: 30px;
  padding-bottom: 20px;
}
.pagination-container ul {
  display: flex;
  align-items: center;
  gap: 10px;
}
.pagination-container ul.page-no li.active {
  background: #ff4444;
  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: #ff4444;
  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: 20px;
}
.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;
  }
}
@media (max-width: 768px) {
  .bread {
    margin-bottom: 20px;
    margin-left: 10px !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;
}

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