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: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
  background: #f8f9fa;
  min-height: 100vh;
}

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

/* Header */
.header {
  background: #46a5c1;
  color: white;
  padding: 1rem 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.logo {
  font-size: 2rem;
  font-weight: bold;
  color: white;
  text-decoration: none;
}
.logo img {
  height: 40px;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-menu a {
  color: white;
  text-decoration: none;
  padding: 0.5rem 1rem;
  border-radius: 25px;
  transition: all 0.3s ease;
}

.nav-menu a:hover,
.nav-menu li.active a {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
}

/* Main Content */
.main-content {
  padding: 40px 0;
}

.content-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 30px;
  margin-bottom: 40px;
}

.featured-news {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.featured-news img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.featured-content {
  padding: 25px;
}

.featured-content h2 {
  font-size: 24px;
  margin-bottom: 15px;
  color: #2c3e50;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.featured-content p {
  color: #666;
  margin-bottom: 15px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.meta-info {
  font-size: 14px;
  color: #999;
  display: flex;
  gap: 20px;
}

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

.sidebar-section {
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.sidebar-section h3 {
  color: #2c3e50;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 2px solid #3498db;
}

.sidebar-news {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.sidebar-news-item {
  display: flex;
  gap: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #eee;
}

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

.sidebar-news-item img {
  width: 80px;
  height: 60px;
  object-fit: cover;
  border-radius: 5px;
}

.sidebar-news-content h4 {
  font-size: 14px;
  line-height: 1.4;
  margin-bottom: 5px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.sidebar-news-content .date {
  font-size: 12px;
  color: #999;
}

/* News Grid */
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 25px;
  margin-bottom: 40px;
}

.news-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.news-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.news-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.news-card-content {
  padding: 20px;
}

.news-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #2c3e50;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}

.news-card p {
  color: #666;
  font-size: 14px;
  margin-bottom: 15px;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.news-card .meta {
  font-size: 13px;
  color: #999;
  display: flex;
  justify-content: space-between;
}

/* Category Sections */
.category-sections {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 40px;
}

.category-section {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.category-header {
  background: #3498db;
  color: #fff;
  padding: 15px 20px;
  font-size: 18px;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.more-btn {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 6px 15px;
  border-radius: 15px;
  font-size: 13px;
  font-weight: normal;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.more-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.category-content {
  padding: 20px;
}

.category-news-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.category-news-item {
  display: flex;
  gap: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #eee;
  transition: background 0.3s;
}

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

.category-news-item:hover {
  background: #f8f9fa;
  margin: 0 -10px;
  padding-left: 10px;
  padding-right: 10px;
  border-radius: 5px;
}

.category-news-item img {
  width: 100px;
  height: 70px;
  object-fit: cover;
  border-radius: 5px;
  flex-shrink: 0;
}

.category-news-info {
  flex: 1;
}

.category-news-info h4 {
  font-size: 15px;
  line-height: 1.4;
  margin-bottom: 8px;
  color: #2c3e50;
  cursor: pointer;
}

.category-news-info h4:hover {
  color: #3498db;
}

.category-news-info p {
  font-size: 13px;
  color: #666;
  line-height: 1.5;
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.category-news-meta {
  font-size: 12px;
  color: #999;
  display: flex;
  gap: 15px;
}

.friends-links {
  background: #fff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: 40px;
  width: min(1200px, 100%);
  margin: 0 auto;
}

.friends-links h3 {
  color: #2c3e50;
  margin-bottom: 20px;
  text-align: center;
}

.links-container {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
}

.links-container a {
  color: #666;
  text-decoration: none;
  padding: 8px 15px;
  border: 1px solid #ddd;
  border-radius: 20px;
  transition: all 0.3s;
  font-size: 14px;
}

.links-container a:hover {
  background: #3498db;
  color: #fff;
  border-color: #3498db;
}

/* Footer */
.footer {
  background: #1f2937;
  color: #d1d5db;
  padding: 2rem 0 1rem;
  margin-top: 3rem;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  margin-bottom: 1rem;
}

.footer-section {
  text-align: center;
}

.footer-section h4 {
  color: white;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.footer-section .links-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.footer-section a {
  color: #d1d5db;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: #9333ea;
}

.footer-bottom {
  text-align: center;
  padding-top: 1rem;
  border-top: 1px solid #374151;
  font-size: 0.9rem;
}

.list-page {
  padding-top: 20px;
  min-height: calc(100vh - 170px);
  /* Main Content */
  /* News List */
  /* Pagination */
  /* Sidebar */
  /* Responsive Design */
}
.list-page .page-header {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #fff;
  padding: 25px 0;
  text-align: center;
}
.list-page .page-header h1 {
  font-size: 28px;
  margin-bottom: 8px;
  font-weight: 400;
}
.list-page .page-header p {
  font-size: 15px;
  opacity: 0.9;
}
.list-page .main-content {
  padding: 30px 0;
}
.list-page .news-list {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
}
.list-page .list-header {
  background: #3498db;
  color: #fff;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.list-page .list-title {
  font-size: 18px;
  font-weight: bold;
}
.list-page .sort-options {
  display: flex;
  gap: 10px;
}
.list-page .sort-btn {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 5px 12px;
  border-radius: 12px;
  font-size: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.list-page .sort-btn:hover,
.list-page .sort-btn.active {
  background: rgba(255, 255, 255, 0.3);
}
.list-page .news-items {
  padding: 20px;
}
.list-page .news-item {
  display: flex;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid #eee;
  transition: background 0.3s;
}
.list-page .news-item:last-child {
  border-bottom: none;
}
.list-page .news-item:hover {
  background: #f8f9fa;
  margin: 0 -20px;
  padding-left: 20px;
  padding-right: 20px;
  border-radius: 8px;
}
.list-page .news-item-image {
  width: 200px;
  height: 130px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
}
.list-page .news-item-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.list-page .news-item-title {
  font-size: 18px;
  font-weight: bold;
  color: #2c3e50;
  margin-bottom: 10px;
  line-height: 1.4;
  cursor: pointer;
  transition: color 0.3s;
}
.list-page .news-item-title:hover {
  color: #3498db;
}
.list-page .news-item-summary {
  color: #666;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 15px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.list-page .news-item-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: #999;
  margin-top: auto;
}
.list-page .news-item-info {
  display: flex;
  gap: 15px;
}
.list-page .news-item-actions {
  display: flex;
  gap: 10px;
}
.list-page .action-btn {
  background: none;
  border: 1px solid #ddd;
  color: #666;
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 12px;
  cursor: pointer;
  transition: all 0.3s;
}
.list-page .action-btn:hover {
  background: #3498db;
  color: #fff;
  border-color: #3498db;
}
.list-page .pagination {
  margin: 30px 0;
  display: flex;
  justify-content: center;
  gap: 10px;
}
.list-page .page-btn {
  background: #fff;
  border: 1px solid #ddd;
  color: #666;
  padding: 8px 15px;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
}
.list-page .page-btn:hover,
.list-page .page-btn.active {
  background: #3498db;
  color: #fff;
  border-color: #3498db;
}
.list-page .page-btn.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.list-page .sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.list-page .sidebar-section {
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.list-page .sidebar-section h3 {
  color: #2c3e50;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 2px solid #3498db;
  font-size: 16px;
}
.list-page .hot-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.list-page .tag {
  background: #f8f9fa;
  color: #666;
  padding: 5px 12px;
  border-radius: 15px;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
}
.list-page .tag:hover {
  background: #3498db;
  color: #fff;
}
.list-page .related-news {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.list-page .related-item {
  display: flex;
  gap: 10px;
  padding-bottom: 15px;
  border-bottom: 1px solid #eee;
}
.list-page .related-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.list-page .related-item img {
  width: 60px;
  height: 45px;
  object-fit: cover;
  border-radius: 4px;
}
.list-page .related-content h4 {
  font-size: 13px;
  line-height: 1.4;
  margin-bottom: 5px;
  color: #2c3e50;
  cursor: pointer;
}
.list-page .related-content h4:hover {
  color: #3498db;
}
.list-page .related-content .date {
  font-size: 11px;
  color: #999;
}
@media (max-width: 1024px) {
  .list-page .container {
    padding: 0 15px;
  }
  .list-page .content-wrapper {
    grid-template-columns: 1fr;
  }
  .list-page .news-item-image {
    width: 150px;
    height: 100px;
  }
}
@media (max-width: 768px) {
  .list-page .main-header {
    padding: 15px 0;
  }
  .list-page .main-header .container {
    flex-direction: column;
    gap: 15px;
    align-items: stretch;
  }
  .list-page .logo {
    text-align: center;
    font-size: 24px;
    padding: 15px 20px;
    margin: 0 20px;
  }
  .list-page .nav {
    width: calc(100% - 40px);
    margin: 0 20px;
    position: relative;
    border-radius: 15px;
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 50%, #e74c3c 100%);
  }
  .list-page .mobile-menu-toggle {
    display: block;
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
  }
  .list-page .nav ul {
    flex-direction: column;
    display: none;
    width: 100%;
    border-radius: 10px;
    margin-top: 50px;
    background: rgba(255, 255, 255, 0.2);
  }
  .list-page .nav.nav-open ul {
    display: flex;
  }
  .list-page .nav a {
    padding: 15px 20px;
    border-radius: 8px;
    margin: 3px 10px;
    text-align: center;
  }
  .list-page .page-header h1 {
    font-size: 24px;
  }
  .list-page .news-item {
    flex-direction: column;
    gap: 15px;
  }
  .list-page .news-item-image {
    width: 100%;
    height: 180px;
  }
  .list-page .list-header {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }
  .list-page .sort-options {
    width: 100%;
    justify-content: flex-start;
  }
}

/* Footer */
.footer {
  background: #2c3e50;
  color: #fff;
  padding: 40px 0 20px;
}

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

.footer-section h4 {
  margin-bottom: 15px;
  color: #3498db;
}

.footer-section ul {
  list-style: none;
}

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

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

.footer-section ul li a:hover {
  color: #3498db;
}

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

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  padding: 8px 12px;
  border-radius: 10px;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
}

.mobile-menu-toggle:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .container {
    padding: 0 15px;
  }
  .content-grid {
    grid-template-columns: 1fr;
  }
  .news-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
  .category-sections {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .main-header {
    padding: 15px 0;
  }
  .main-header .container {
    flex-direction: column;
    gap: 15px;
    align-items: stretch;
  }
  .logo {
    text-align: center;
    font-size: 24px;
    padding: 15px 20px;
    margin: 0 20px;
  }
  .nav {
    width: calc(100% - 40px);
    margin: 0 20px;
    position: relative;
    border-radius: 15px;
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 50%, #e74c3c 100%);
  }
  .mobile-menu-toggle {
    display: block;
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
  }
  .nav ul {
    flex-direction: column;
    display: none;
    width: 100%;
    border-radius: 10px;
    margin-top: 50px;
    background: rgba(255, 255, 255, 0.2);
  }
  .nav.nav-open ul {
    display: flex;
  }
  .nav a {
    padding: 15px 20px;
    border-radius: 8px;
    margin: 3px 10px;
    text-align: center;
  }
  .hero h1 {
    font-size: 28px;
  }
  .news-grid {
    grid-template-columns: 1fr;
  }
  .footer-content {
    grid-template-columns: 1fr;
  }
  .category-sections {
    grid-template-columns: 1fr;
  }
}
.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);
}
.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: 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 */
