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: #667eea;
}

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;
}

/* Header */
.header {
  background: #6b46c1;
  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 Container */
.container {
  max-width: 1200px;
  margin: 2rem auto;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
}

.list-page .container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.list-page .container .container {
  margin: 0;
  padding: 0;
}

/* Main Content */
.main-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

/* Featured Section */
.featured-section {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.featured-section:hover {
  transform: translateY(-5px);
}

.section-header {
  background: linear-gradient(135deg, #6b46c1, #9333ea);
  color: white;
  padding: 1rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.section-title {
  font-size: 1.2rem;
  font-weight: bold;
}

.section-more {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.section-more:hover {
  color: white;
}

/* News Grid */
.news-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  padding: 1.5rem;
}

.news-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.news-image {
  width: 100%;
  height: 180px;
  background: linear-gradient(45deg, #e5e7eb, #f3f4f6);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6b7280;
  font-size: 0.9rem;
  overflow: hidden;
}
.news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1f2937;
  text-decoration: none;
  line-height: 1.4;
  transition: color 0.3s ease;
}

.news-title:hover {
  color: #6b46c1;
}

/* News List */
.news-list {
  padding: 1.5rem;
}

.news-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid #e5e7eb;
  transition: background 0.3s ease;
}

.news-item:hover {
  background: #f9fafb;
  border-radius: 8px;
}

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

.news-number {
  width: 24px;
  height: 24px;
  background: linear-gradient(135deg, #6b46c1, #9333ea);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: bold;
  flex-shrink: 0;
}

.news-content {
  flex: 1;
}

.news-content h3 {
  font-size: 0.95rem;
  color: #1f2937;
  margin-bottom: 0.25rem;
  cursor: pointer;
  transition: color 0.3s ease;
}

.news-content h3:hover {
  color: #6b46c1;
}

.news-meta {
  font-size: 0.8rem;
  color: #6b7280;
}

/* Sidebar */
.sidebar {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.sidebar-section {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.sidebar-header {
  background: linear-gradient(135deg, #6b46c1, #9333ea);
  color: white;
  padding: 1rem 1.5rem;
  font-weight: bold;
}

.sidebar-content {
  padding: 1.5rem;
}

.sidebar-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid #e5e7eb;
  transition: all 0.3s ease;
}

.sidebar-item:hover {
  background: #f9fafb;
  border-radius: 8px;
  padding-left: 0.5rem;
}

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

.sidebar-number {
  width: 20px;
  height: 20px;
  background: #f3f4f6;
  color: #6b7280;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: bold;
  flex-shrink: 0;
}

.sidebar-text {
  font-size: 0.9rem;
  color: #374151;
  cursor: pointer;
  transition: color 0.3s ease;
}

.sidebar-text:hover {
  color: #6b46c1;
}

.list-page {
  /* News List */
  /* Responsive Design */
}
.list-page .news-list-container {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
.list-page .list-header {
  background: linear-gradient(135deg, #6b46c1, #9333ea);
  color: white;
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.list-page .list-title {
  font-size: 1.3rem;
  font-weight: bold;
}
.list-page .list-count {
  background: rgba(255, 255, 255, 0.2);
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  font-size: 0.9rem;
}
.list-page .news-list {
  padding: 0;
}
.list-page .news-item {
  display: flex;
  gap: 1.5rem;
  padding: 1.5rem;
  border-bottom: 1px solid #e5e7eb;
  transition: all 0.3s ease;
  cursor: pointer;
}
.list-page .news-item:hover {
  background: #f9fafb;
}
.list-page .news-item:last-child {
  border-bottom: none;
}
.list-page .news-image {
  width: 200px;
  height: 120px;
  background: linear-gradient(45deg, #e5e7eb, #f3f4f6);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6b7280;
  font-size: 0.9rem;
  flex-shrink: 0;
  overflow: hidden;
}
.list-page .news-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.list-page .news-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #1f2937;
  text-decoration: none;
  line-height: 1.4;
  transition: color 0.3s ease;
  margin-bottom: 0.5rem;
}
.list-page .news-title:hover {
  color: #6b46c1;
}
.list-page .news-summary {
  color: #6b7280;
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 0.5rem;
}
.list-page .news-meta {
  display: flex;
  gap: 1rem;
  font-size: 0.85rem;
  color: #9ca3af;
}
.list-page .meta-item {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.list-page .category-tag {
  background: linear-gradient(135deg, #6b46c1, #9333ea);
  color: white;
  padding: 0.2rem 0.6rem;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 500;
}
@media (max-width: 1024px) {
  .list-page .container {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .list-page .news-image {
    width: 150px;
    height: 100px;
  }
}
@media (max-width: 768px) {
  .list-page .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #6b46c1;
    flex-direction: column;
    padding: 1rem;
    gap: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  }
  .list-page .nav-menu.active {
    display: flex;
  }
  .list-page .nav-menu li {
    width: 100%;
  }
  .list-page .nav-menu a {
    display: block;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 0.5rem;
  }
  .list-page .mobile-menu-btn {
    display: block;
  }
  .list-page .nav-container {
    position: relative;
    padding: 0 1rem;
  }
  .list-page .container {
    padding: 0 1rem;
  }
  .list-page .page-title {
    font-size: 2rem;
  }
  .list-page .news-item {
    flex-direction: column;
    gap: 1rem;
  }
  .list-page .news-image {
    width: 100%;
    height: 150px;
  }
  .list-page .filter-tags {
    gap: 0.5rem;
  }
  .list-page .footer-section .links-container {
    flex-direction: column;
    gap: 1rem;
  }
}
@media (max-width: 480px) {
  .list-page .logo {
    font-size: 1.5rem;
  }
  .list-page .page-header {
    padding: 1.5rem;
  }
  .list-page .page-title {
    font-size: 1.8rem;
  }
  .list-page .news-item {
    padding: 1rem;
  }
  .list-page .news-title {
    font-size: 1.1rem;
  }
}

/* Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.news-item,
.sidebar-section,
.category-filter {
  animation: fadeInUp 0.6s ease-out;
}

/* Hover Effects */
.news-item:hover .news-image {
  background: linear-gradient(45deg, #ddd6fe, #e9d5ff);
}

.news-item:hover .category-tag {
  transform: scale(1.05);
}

/* 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;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .container {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .news-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #6b46c1;
    flex-direction: column;
    padding: 1rem;
    gap: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  }
  .nav-menu.active {
    display: flex;
  }
  .nav-menu li {
    width: 100%;
  }
  .nav-menu a {
    display: block;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 0.5rem;
  }
  .mobile-menu-btn {
    display: block;
  }
  .nav-container {
    position: relative;
    padding: 0 1rem;
  }
  .container {
    padding: 0 1rem;
  }
  .news-image {
    height: 150px;
  }
  .news-title {
    font-size: 1rem;
  }
  .footer-content {
    flex-direction: column;
    text-align: center;
  }
  .footer-section {
    min-width: auto;
  }
}
@media (max-width: 480px) {
  .logo {
    font-size: 1.5rem;
  }
  .section-header {
    padding: 0.75rem 1rem;
  }
  .news-grid {
    padding: 1rem;
  }
  .news-image {
    height: 120px;
  }
  .sidebar-content {
    padding: 1rem;
  }
}
/* Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.news-card,
.sidebar-section {
  animation: fadeInUp 0.6s ease-out;
}

/* Hover Effects */
.news-card:hover .news-image {
  background: linear-gradient(45deg, #ddd6fe, #e9d5ff);
}

.news-item:hover .news-number {
  transform: scale(1.1);
}

.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: #667eea;
  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: #667eea;
  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 */
