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: #333;
  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: #1890ff;
}

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

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

.header {
  background: #fff;
  padding: 10px 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;
  gap: 10px;
}
.header .logo-section img {
  height: 40px;
}
.header .nav ul {
  display: flex;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}
.header .nav .act a {
  background: #1890ff;
  color: #fff;
}
.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: #1890ff;
  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;
}

.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: 1;
  overflow: hidden;
  cursor: pointer;
}
.small-news-item .news-content h3:hover {
  color: #1890ff;
}
.small-news-item .news-content .time {
  font-size: 12px;
  color: #999;
}

.big-news {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}
.big-news a {
  display: block;
  text-decoration: none;
  color: inherit;
}
.big-news img {
  width: 100%;
  height: 350px;
  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: 40px 20px 20px;
  color: white;
}
.big-news .big-news-overlay h2 {
  font-size: 20px;
  margin: 0 0 10px 0;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.big-news .big-news-overlay .time {
  font-size: 12px;
  opacity: 0.8;
  margin-bottom: 8px;
  display: block;
}
.big-news .big-news-overlay p {
  font-size: 14px;
  margin: 0;
  opacity: 0.9;
  line-height: 1.5;
}

.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 #1890ff;
}
.news-section .section-header .section-title {
  font-size: 22px;
  font-weight: bold;
  color: #333;
  margin: 0;
}
.news-section .section-header .more-link {
  color: #1890ff;
  text-decoration: none;
  font-size: 14px;
}
.news-section .section-header .more-link:hover {
  opacity: 0.8;
}
.news-section .news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.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-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}
.news-card a {
  display: block;
  text-decoration: none;
  color: inherit;
}
.news-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.news-card .card-content {
  padding: 20px;
}
.news-card .card-content h3 {
  font-size: 16px;
  color: #333;
  margin: 0 0 12px 0;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  cursor: pointer;
}
.news-card .card-content h3:hover {
  color: #1890ff;
}
.news-card .card-content p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin: 0 0 12px 0;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.news-card .card-content .time {
  font-size: 12px;
  color: #999;
}

.news-list-item {
  margin-bottom: 20px;
  border-bottom: 1px solid #f0f0f0;
  padding-bottom: 20px;
}
.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: #1890ff;
}
.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: 1;
  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: 2;
  overflow: hidden;
}
.news-list-item .read-more {
  background: #1890ff;
  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: #1890ff;
}
.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 {
    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;
  }
  .news-grid {
    grid-template-columns: 1fr !important;
    gap: 20px;
  }
  .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;
  }
}
.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: #1890ff;
  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: #1890ff;
  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(1200px, 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;
  }
  .detail-page .content {
    word-break: break-all;
  }
}
@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 */
