body {
  font-family: "PingFang SC", "Helvetica Neue", "Microsoft YaHei", sans-serif;
  font-size: 15px;
  line-height: 1.7;
  color: #26282a;
  background-color: #f7f8fa;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 24px;
}

.content-wrapper {
  display: flex;
  gap: 30px;
}

.main-column {
  flex: 1;
  min-width: 0;
}

.sidebar {
  flex-basis: 350px;
  flex-shrink: 0;
}

.header {
  background: #ffffff;
  border-bottom: 1px solid #e9ecef;
  padding: 12px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}
.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header .logo-section {
  display: flex;
  align-items: center;
  gap: 12px;
}
.header .logo-section img {
  height: 40px;
}
.header .logo-section .logo-text {
  font-family: "Source Han Sans CN", "Noto Sans CJK SC", sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #4a90e2;
}
.header .nav ul {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.header .nav a {
  font-size: 16px;
  padding: 10px 18px;
  border-radius: 8px;
  color: #5f6368;
  font-weight: 500;
  transition: all 0.3s ease;
}
.header .nav a.active, .header .nav a:hover {
  background: #2c3e50;
  color: #ffffff;
  box-shadow: 0 2px 8px rgba(44, 62, 80, 0.3);
}
.header .nav .act a {
  background: #2c3e50;
  color: #ffffff;
  box-shadow: 0 2px 8px rgba(44, 62, 80, 0.3);
}
.header .search-box {
  display: flex;
  align-items: center;
}
.header .search-box input {
  border: 1px solid #e9ecef;
  border-radius: 20px 0 0 20px;
  padding: 8px 15px;
  font-size: 14px;
  transition: border-color 0.3s;
}
.header .search-box input:focus {
  border-color: #4a90e2;
}
.header .search-box button {
  background: #4a90e2;
  color: #ffffff;
  border: none;
  padding: 9px 15px;
  border-radius: 0 20px 20px 0;
  cursor: pointer;
  font-size: 16px;
}

.main-content {
  padding: 30px 0;
}

.hero-banner {
  margin-bottom: 40px;
}
.hero-banner .banner-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}
.hero-banner .banner-item a {
  display: block;
}
.hero-banner .banner-item img {
  width: 100%;
  height: 450px;
  object-fit: cover;
}
.hero-banner .banner-item .banner-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px;
  color: #ffffff;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.85) 100%);
}
.hero-banner .banner-item .banner-content .category-tag {
  background: #f5a623;
  color: #ffffff;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 12px;
}
.hero-banner .banner-item .banner-content h1 {
  font-family: "Source Han Sans CN", "Noto Sans CJK SC", sans-serif;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}
.hero-banner .banner-item .banner-content .summary {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 15px;
  max-width: 80%;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.hero-banner .banner-item .banner-content .meta-info {
  display: flex;
  gap: 20px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}

.section-title-bar {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
}
.section-title-bar h2 {
  font-family: "Source Han Sans CN", "Noto Sans CJK SC", sans-serif;
  font-size: 24px;
  font-weight: 600;
  color: #26282a;
}
.section-title-bar .title-decoration {
  height: 4px;
  width: 30px;
  background: #4a90e2;
  margin-left: 15px;
  border-radius: 2px;
}

.hot-news {
  margin-bottom: 40px;
}
.hot-news .hot-news-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: auto auto;
  gap: 25px;
}
.hot-news .hot-news-grid .hot-card {
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.hot-news .hot-news-grid .hot-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}
.hot-news .hot-news-grid .hot-card.large {
  grid-row: span 2;
  display: flex;
  flex-direction: column;
}
.hot-news .hot-news-grid .hot-card.large .card-image {
  height: 250px;
}
.hot-news .hot-news-grid .hot-card.large .card-content {
  padding: 20px;
  flex-grow: 1;
}
.hot-news .hot-news-grid .hot-card.large .card-content h3 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.hot-news .hot-news-grid .hot-card.large .card-content .excerpt {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
}
.hot-news .hot-news-grid .hot-card .card-image {
  position: relative;
  height: 160px;
}
.hot-news .hot-news-grid .hot-card .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hot-news .hot-news-grid .hot-card .card-image .image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.hot-news .hot-news-grid .hot-card .card-image .image-overlay .play-icon {
  color: #ffffff;
  font-size: 40px;
}
.hot-news .hot-news-grid .hot-card .card-image:hover .image-overlay {
  opacity: 1;
}
.hot-news .hot-news-grid .hot-card .card-content {
  padding: 15px;
}
.hot-news .hot-news-grid .hot-card .card-content .category {
  color: #4a90e2;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 8px;
}
.hot-news .hot-news-grid .hot-card .card-content h3 {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}
.hot-news .hot-news-grid .hot-card .card-content .excerpt {
  font-size: 14px;
  color: #5f6368;
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}
.hot-news .hot-news-grid .hot-card .card-content .card-meta {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 13px;
  color: #90949c;
}

.category-news .news-tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 25px;
  border-bottom: 1px solid #e9ecef;
}
.category-news .news-tabs .tab-btn {
  padding: 12px 20px;
  font-size: 16px;
  font-weight: 600;
  color: #5f6368;
  border-bottom: 3px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}
.category-news .news-tabs .tab-btn.active {
  color: #4a90e2;
  border-bottom-color: #4a90e2;
}
.category-news .tab-content {
  display: none;
}
.category-news .tab-content.active {
  display: block;
}
.category-news .news-list-modern {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.category-news .news-list-modern .news-item-modern a {
  display: flex;
  gap: 20px;
  background: #ffffff;
  border-radius: 8px;
  padding: 15px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: box-shadow 0.3s ease;
}
.category-news .news-list-modern .news-item-modern a:hover {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.category-news .news-list-modern .news-item-modern .item-image {
  width: 150px;
  height: 110px;
  flex-shrink: 0;
}
.category-news .news-list-modern .news-item-modern .item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}
.category-news .news-list-modern .news-item-modern .item-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.category-news .news-list-modern .news-item-modern .item-content .item-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}
.category-news .news-list-modern .news-item-modern .item-content .item-header .category-badge {
  background: #50e3c2;
  color: #ffffff;
  font-size: 12px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 4px;
}
.category-news .news-list-modern .news-item-modern .item-content .item-header .trending {
  color: #f5a623;
  font-size: 12px;
  font-weight: 600;
}
.category-news .news-list-modern .news-item-modern .item-content h4 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 8px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.category-news .news-list-modern .news-item-modern .item-content .item-summary {
  font-size: 14px;
  color: #5f6368;
  flex-grow: 1;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}
.category-news .news-list-modern .news-item-modern .item-content .item-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: #90949c;
  margin-top: 10px;
}
.category-news .news-list-modern .news-item-modern .item-content .item-footer .engagement {
  display: flex;
  gap: 15px;
}

.sidebar .sidebar-widget {
  background: #ffffff;
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 25px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.sidebar .sidebar-widget .widget-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.sidebar .sidebar-widget .widget-header h3 {
  font-family: "Source Han Sans CN", "Noto Sans CJK SC", sans-serif;
  font-size: 18px;
  font-weight: 600;
}
.sidebar .sidebar-widget .widget-header .live-indicator {
  color: #e74c3c;
  font-weight: 600;
  font-size: 14px;
}
.sidebar .sidebar-widget .live-news-list .live-item {
  display: flex;
  align-items: baseline;
  gap: 15px;
  margin-bottom: 12px;
}
.sidebar .sidebar-widget .live-news-list .live-item .live-time {
  font-weight: 600;
  color: #4a90e2;
  font-size: 14px;
}
.sidebar .sidebar-widget .live-news-list .live-item p {
  font-size: 14px;
  line-height: 1.5;
}
.sidebar .sidebar-widget .trending-topics .topic-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
  font-size: 14px;
}
.sidebar .sidebar-widget .trending-topics .topic-item .topic-rank {
  font-weight: 700;
  color: #90949c;
  width: 20px;
  text-align: center;
}
.sidebar .sidebar-widget .trending-topics .topic-item .topic-text {
  font-weight: 500;
  color: #26282a;
}
.sidebar .sidebar-widget .trending-topics .topic-item .topic-count {
  margin-left: auto;
  color: #90949c;
  font-size: 13px;
}
.sidebar .sidebar-widget.ad-widget {
  background: #f0f2f5;
  text-align: center;
  padding: 40px 20px;
}
.sidebar .sidebar-widget.ad-widget .ad-content {
  color: #90949c;
}
.sidebar .sidebar-widget .recommended-list .rec-item a {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
}
.sidebar .sidebar-widget .recommended-list .rec-item img {
  width: 80px;
  height: 60px;
  object-fit: cover;
  border-radius: 8px;
}
.sidebar .sidebar-widget .recommended-list .rec-item .rec-content h4 {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 5px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.sidebar .sidebar-widget .recommended-list .rec-item .rec-content .rec-views {
  font-size: 13px;
  color: #90949c;
}

.footer {
  background: #2c3e50;
  color: #bdc3c7;
  padding: 50px 0 30px;
}
.footer .footer-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}
.footer .footer-section h4 {
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 20px;
}
.footer .footer-section ul {
  list-style: none;
}
.footer .footer-section ul li {
  margin-bottom: 10px;
}
.footer .footer-section ul li a {
  color: #bdc3c7;
  transition: color 0.3s;
}
.footer .footer-section ul li a:hover {
  color: #4a90e2;
}
.footer .footer-section .social-links {
  display: flex;
  gap: 15px;
}
.footer .footer-section .social-links .social-link {
  font-size: 14px;
  font-weight: 500;
}
.footer .footer-bottom {
  text-align: center;
  border-top: 1px solid #34495e;
  padding-top: 30px;
  font-size: 13px;
  color: #95a5a6;
}

@media (max-width: 1200px) {
  .content-wrapper {
    flex-direction: column;
  }
  .sidebar {
    flex-basis: auto;
    width: 100%;
  }
}
@media (max-width: 992px) {
  .hot-news .hot-news-grid {
    grid-template-columns: 1fr;
  }
  .footer .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
}
@media (max-width: 768px) {
  .header .container {
    flex-direction: column;
    gap: 15px;
  }
  .hero-banner .banner-item img {
    height: 350px;
  }
  .hero-banner .banner-content h1 {
    font-size: 22px;
  }
  .news-item-modern a {
    flex-direction: column;
  }
  .news-item-modern .item-image {
    width: 100%;
    height: 180px;
  }
}
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: #2c3e50;
}

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

.list-page {
  background: #fff;
  padding: 30px 0;
}
.list-page .bread {
  margin-bottom: 30px;
  font-size: 14px;
  color: #666;
}
.list-page .bread .link {
  color: #2c3e50;
  text-decoration: none;
}
.list-page .bread .link:hover {
  opacity: 0.8;
}
.list-page .bread .divider {
  margin: 0 8px;
  color: #ccc;
}
.list-page .bread .text {
  color: #333;
}

.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: #2c3e50;
  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: #2c3e50;
  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;
}

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

.header {
  background: #fff;
  padding: 15px 0;
  border-bottom: 1px solid #f0f0f0;
}
.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header .logo-section {
  display: flex;
  align-items: center;
}
.header .logo-section img {
  height: 40px;
}
.header .nav ul {
  display: flex;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.header .nav a {
  color: #333;
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 4px;
  transition: all 0.3s;
}
.header .nav a.active, .header .nav a:hover {
  background: #2c3e50;
  color: #fff;
}

.main-content {
  background: #fff;
  padding: 30px 0;
}

.headline-section {
  display: flex;
  gap: 30px;
  margin-bottom: 40px;
}
.headline-section .headline-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.headline-section .headline-right {
  flex: 1.5;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.small-news-item {
  display: flex;
  gap: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #f0f0f0;
}
.small-news-item:last-child {
  border-bottom: none;
}
.small-news-item a {
  display: flex;
  gap: 15px;
  text-decoration: none;
  color: inherit;
  width: 100%;
}
.small-news-item img {
  width: 80px;
  height: 60px;
  object-fit: cover;
  border-radius: 4px;
  flex-shrink: 0;
}
.small-news-item .news-content {
  flex: 1;
}
.small-news-item .news-content h3 {
  font-size: 14px;
  line-height: 1.5;
  color: #333;
  margin: 0 0 8px 0;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  cursor: pointer;
}
.small-news-item .news-content h3:hover {
  color: #2c3e50;
}
.small-news-item .news-content .time {
  font-size: 12px;
  color: #999;
}

.big-news {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  flex: 1;
}
.big-news a {
  display: block;
  text-decoration: none;
  color: inherit;
}
.big-news img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.big-news .big-news-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  padding: 20px 15px 15px;
  color: white;
}
.big-news .big-news-overlay h2 {
  font-size: 16px;
  margin: 0;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.small-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.small-grid .grid-item {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
}
.small-grid .grid-item a {
  display: block;
  text-decoration: none;
  color: inherit;
}
.small-grid .grid-item img {
  width: 100%;
  height: 80px;
  object-fit: cover;
}
.small-grid .grid-item h4 {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: white;
  font-size: 12px;
  margin: 0;
  padding: 15px 8px 8px;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.ad-section {
  margin: 50px 0;
}

.ad-banner {
  background: #f8f9fa;
  color: #999;
  text-align: center;
  padding: 40px 0;
  border-radius: 8px;
  font-size: 18px;
  letter-spacing: 2px;
}

.news-section {
  margin-bottom: 50px;
}
.news-section .section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 2px solid #2c3e50;
}
.news-section .section-header .section-title {
  font-size: 22px;
  font-weight: bold;
  color: #333;
  margin: 0;
}
.news-section .section-header .more-link {
  color: #2c3e50;
  text-decoration: none;
  font-size: 14px;
}
.news-section .section-header .more-link:hover {
  opacity: 0.8;
}

.news-grid-6 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.news-grid-6 .news-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}
.news-grid-6 .news-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}
.news-grid-6 .news-card a {
  display: block;
  text-decoration: none;
  color: inherit;
}
.news-grid-6 .news-card img {
  width: 100%;
  height: 140px;
  object-fit: cover;
}
.news-grid-6 .news-card h3 {
  font-size: 14px;
  color: #333;
  margin: 0;
  padding: 15px 12px 12px;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  cursor: pointer;
}
.news-grid-6 .news-card h3:hover {
  color: #2c3e50;
}
.news-grid-6 .news-card.ad-card {
  background: #f8f9fa;
  display: flex;
  align-items: center;
  justify-content: center;
}
.news-grid-6 .news-card.ad-card .ad-content {
  color: #999;
  font-size: 16px;
  letter-spacing: 1px;
}

.news-list-item {
  margin-bottom: 30px;
  border-bottom: 1px solid #f0f0f0;
  padding-bottom: 30px;
}
.news-list-item:last-child {
  border-bottom: none;
}
.news-list-item .news-link {
  display: flex;
  gap: 20px;
  text-decoration: none;
  color: inherit;
}
.news-list-item .news-link:hover .news-title {
  color: #2c3e50;
}
.news-list-item .news-image {
  width: 180px;
  height: 120px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
}
.news-list-item .news-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.news-list-item .news-title {
  font-size: 18px;
  font-weight: 600;
  color: #333;
  line-height: 1.4;
  margin: 0;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  transition: color 0.3s;
}
.news-list-item .news-time {
  font-size: 14px;
  color: #999;
  margin: 0;
}
.news-list-item .news-desc {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin: 0;
  flex: 1;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}
.news-list-item .read-more {
  background: #2c3e50;
  color: white;
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 12px;
  align-self: flex-start;
  transition: background 0.3s;
}
.news-list-item .read-more:hover {
  opacity: 0.8;
}

.footer {
  background: #2c3e50;
  color: #95a5a6;
  padding: 40px 0 20px;
}
.footer .footer-links {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.footer .footer-links div {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.footer .footer-links div a {
  color: #ecf0f1;
  text-decoration: none;
  font-weight: 500;
  margin-bottom: 5px;
}
.footer .footer-links div a:hover {
  color: #2c3e50;
}
.footer .footer-links div span {
  font-size: 12px;
  color: #7f8c8d;
}
.footer .copyright {
  text-align: center;
  font-size: 13px;
  color: #7f8c8d;
}

@media (max-width: 992px) {
  .headline-section {
    flex-direction: column;
  }
  .news-grid-6 {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}
@media (max-width: 768px) {
  .header .container {
    flex-direction: column;
    gap: 20px;
  }
  .nav ul {
    gap: 15px;
  }
  .headline-section {
    gap: 20px;
  }
  .small-grid {
    grid-template-columns: 1fr;
  }
  .news-grid-6 {
    grid-template-columns: 1fr !important;
    gap: 15px;
  }
  .footer-links {
    gap: 20px;
  }
  .news-list-item .news-link {
    flex-direction: column;
  }
  .news-list-item .news-image {
    width: 100%;
    height: 200px;
  }
  .news-list-item .news-title {
    font-size: 16px;
  }
}

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