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: #46a5c1;
}

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: #f5f5f5;
  min-height: 100vh;
}

/* Header */
.header {
  background: #ff6b35;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  padding: 0 20px;
  height: 60px;
}

.logo {
  display: flex;
  align-items: center;
  color: white;
  text-decoration: none;
  font-size: 24px;
  font-weight: bold;
  margin-right: 40px;
}
.logo img {
  height: 40px;
}

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

.main-nav a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: opacity 0.3s;
  font-size: 16px;
}

.main-nav a:hover, .main-nav .act a {
  color: #333;
  font-weight: bold;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 30px;
}

/* Main Content */
.main-content {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

/* Section Header */
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  border-bottom: 2px solid #f0f0f0;
}

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

.view-more {
  color: #ff6b35;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
}

.view-more:hover {
  text-decoration: underline;
}

/* Featured Article */
.featured-article {
  position: relative;
  height: 300px;
  overflow: hidden;
  display: block;
}

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

.featured-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  padding: 30px 20px 20px;
  color: white;
}

.featured-category {
  background: #ff6b35;
  color: white;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
  display: inline-block;
  margin-bottom: 10px;
}

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

.featured-meta {
  font-size: 14px;
  opacity: 0.9;
}

/* Article List */
.article-list {
  padding: 20px;
}

.article-item {
  display: flex;
  gap: 15px;
  padding: 15px 0;
  border-bottom: 1px solid #f0f0f0;
  text-decoration: none;
  color: inherit;
  transition: background-color 0.3s;
}

.article-item:hover {
  background-color: #f9f9f9;
}

.article-item:last-child {
  border-bottom: none;
}

.article-image {
  width: 120px;
  height: 80px;
  object-fit: cover;
  border-radius: 6px;
  flex-shrink: 0;
}

.article-content {
  flex: 1;
}

.article-category {
  background: #ff6b35;
  color: white;
  padding: 2px 8px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 500;
  display: inline-block;
  margin-bottom: 8px;
}

.article-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 6px;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

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

/* Sidebar */
.sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.sidebar-section {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

/* Popular Articles */
.popular-item {
  display: flex;
  gap: 12px;
  padding: 15px 20px;
  border-bottom: 1px solid #f0f0f0;
  text-decoration: none;
  color: inherit;
  transition: background-color 0.3s;
}

.popular-item:hover {
  background-color: #f9f9f9;
}

.popular-item:last-child {
  border-bottom: none;
}

.popular-number {
  width: 24px;
  height: 24px;
  background: #ff6b35;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: bold;
  flex-shrink: 0;
}

.popular-content h4 {
  font-size: 14px;
  font-weight: 600;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Social Stats */
.social-stats {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.social-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px;
  background: #f8f9fa;
  border-radius: 6px;
}

.social-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 18px;
}

.social-icon.facebook {
  background: #1877f2;
}

.social-icon.twitter {
  background: #1da1f2;
}

.social-icon.instagram {
  background: #e4405f;
}

.social-numbers {
  text-align: right;
}

.social-count {
  font-size: 16px;
  font-weight: bold;
  color: #333;
}

.social-label {
  font-size: 12px;
  color: #666;
}

/* Categories Grid */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 15px;
  padding: 20px;
}

.category-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px;
  background: #f8f9fa;
  border-radius: 8px;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.category-card:hover {
  background: #e9ecef;
  border-color: #ff6b35;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 107, 53, 0.15);
}

.category-icon {
  font-size: 24px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  border-radius: 8px;
  flex-shrink: 0;
}

.category-info {
  flex: 1;
}

.category-name {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 2px;
  color: #333;
}

.category-count {
  font-size: 12px;
  color: #666;
}

.ad-section {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  text-align: center;
  padding: 40px 20px;
  border-radius: 8px;
}

.ad-title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 10px;
}

.ad-subtitle {
  font-size: 16px;
  margin-bottom: 20px;
  opacity: 0.9;
}

.ad-button {
  background: white;
  color: #667eea;
  padding: 12px 30px;
  border: none;
  border-radius: 25px;
  font-weight: bold;
  cursor: pointer;
  transition: transform 0.3s;
}

.ad-button:hover {
  transform: translateY(-2px);
}

/* Footer */
.footer {
  background: #2c3e50;
  color: white;
  padding: 40px 0 20px;
  margin-top: 40px;
}

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

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

.footer-title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 10px;
}

.footer-description {
  color: #bdc3c7;
  margin-bottom: 20px;
}

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

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

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

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #34495e;
  color: #95a5a6;
  font-size: 14px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-container {
    flex-direction: column;
    height: auto;
    padding: 15px 20px;
  }
  .logo {
    margin-right: 0;
    margin-bottom: 10px;
  }
  .main-nav {
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .container {
    grid-template-columns: 1fr;
    padding: 15px;
    gap: 20px;
  }
  .featured-article {
    height: 250px;
  }
  .featured-title {
    font-size: 20px;
  }
  .article-item {
    flex-direction: column;
    gap: 10px;
  }
  .article-image {
    width: 100%;
    height: 150px;
  }
  .social-stats {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .social-item {
    flex: 1;
    min-width: 150px;
  }
  .footer-links {
    gap: 15px;
  }
}
@media (max-width: 480px) {
  .main-nav {
    gap: 15px;
  }
  .container {
    padding: 10px;
  }
  .featured-overlay {
    padding: 20px 15px 15px;
  }
  .featured-title {
    font-size: 18px;
  }
  .ad-section {
    padding: 30px 15px;
  }
  .ad-title {
    font-size: 20px;
  }
  .categories-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 12px;
  }
  .category-card {
    padding: 12px;
    gap: 10px;
  }
  .category-icon {
    font-size: 20px;
    width: 35px;
    height: 35px;
  }
  .category-name {
    font-size: 13px;
  }
  .category-count {
    font-size: 11px;
  }
}
.list-page {
  /* Container */
  /* Page Header */
  /* Article Grid */
  /* Load More */
  /* Footer */
  /* Responsive Design */
}
.list-page .list-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}
.list-page .page-header {
  background: white;
  border-radius: 8px;
  padding: 30px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  text-align: center;
}
.list-page .page-title {
  font-size: 32px;
  font-weight: bold;
  color: #333;
  margin-bottom: 10px;
}
.list-page .page-description {
  font-size: 16px;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}
.list-page .category-stats {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 20px;
}
.list-page .stat-item {
  text-align: center;
}
.list-page .stat-number {
  font-size: 24px;
  font-weight: bold;
  color: #ff6b35;
}
.list-page .stat-label {
  font-size: 14px;
  color: #666;
  margin-top: 5px;
}
.list-page .articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 20px;
}
.list-page .article-card {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}
.list-page .article-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}
.list-page .article-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.list-page .article-content {
  padding: 20px;
}
.list-page .article-category {
  background: #ff6b35;
  color: white;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
  display: inline-block;
  margin-bottom: 12px;
}
.list-page .article-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.list-page .article-excerpt {
  font-size: 14px;
  color: #666;
  line-height: 1.5;
  margin-bottom: 15px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.list-page .article-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: #888;
}
.list-page .article-author {
  font-weight: 500;
}
.list-page .article-date {
  color: #999;
}
.list-page .load-more-section {
  text-align: center;
  margin-top: 40px;
}
.list-page .load-more-btn {
  background: #ff6b35;
  color: white;
  padding: 15px 40px;
  border: none;
  border-radius: 25px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}
.list-page .load-more-btn:hover {
  background: #e55a2b;
  transform: translateY(-2px);
}
.list-page .footer {
  background: #2c3e50;
  color: white;
  padding: 40px 0 20px;
  margin-top: 60px;
}
.list-page .footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.list-page .footer-info {
  text-align: center;
  margin-bottom: 30px;
}
.list-page .footer-title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 10px;
}
.list-page .footer-description {
  color: #bdc3c7;
  margin-bottom: 20px;
}
.list-page .footer-links {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}
.list-page .footer-links a {
  color: #bdc3c7;
  text-decoration: none;
  transition: color 0.3s;
}
.list-page .footer-links a:hover {
  color: #ff6b35;
}
.list-page .footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #34495e;
  color: #95a5a6;
  font-size: 14px;
}
@media (max-width: 768px) {
  .list-page .nav-container {
    flex-direction: column;
    height: auto;
    padding: 15px 20px;
  }
  .list-page .logo {
    margin-right: 0;
    margin-bottom: 10px;
  }
  .list-page .main-nav {
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .list-page .container {
    padding: 15px;
  }
  .list-page .page-header {
    padding: 20px;
  }
  .list-page .page-title {
    font-size: 28px;
  }
  .list-page .category-stats {
    gap: 20px;
  }
  .list-page .articles-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .list-page .article-content {
    padding: 15px;
  }
  .list-page .footer-links {
    gap: 15px;
  }
}
@media (max-width: 480px) {
  .list-page .main-nav {
    gap: 15px;
  }
  .list-page .page-header {
    padding: 15px;
  }
  .list-page .page-title {
    font-size: 24px;
  }
  .list-page .category-stats {
    flex-direction: column;
    gap: 15px;
  }
  .list-page .article-card {
    margin-bottom: 10px;
  }
}

.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: #46a5c1;
  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: #46a5c1;
  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);
}

@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: 5px !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 */
