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

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

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

.header {
  background: white;
  border-bottom: 1px solid #e5e5e5;
  padding: 15px 0;
  position: relative;
}
.header .nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header .logo {
  font-size: 24px;
  font-weight: bold;
  color: #FFC107;
  z-index: 1001;
}
.header .logo img {
  height: 40px;
  width: auto;
}
.header .nav-menu {
  display: flex;
  gap: 40px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.header .nav-menu li.act a {
  color: #FFC107;
  font-weight: 600;
}
.header .nav-menu a {
  color: #333;
  text-decoration: none;
  font-size: 16px;
  transition: color 0.3s ease;
}
.header .nav-menu a:hover {
  color: #FFC107;
}
.header .mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  color: #333;
  cursor: pointer;
  z-index: 1001;
  padding: 5px;
}
.header .mobile-menu-btn:hover {
  color: #FFC107;
}

.home {
  background: #f8f9fa;
}
.home .hero-section {
  background: white;
  padding: 30px 0;
}
.home .hero-section .hero-news {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease;
}
.home .hero-section .hero-news:hover {
  transform: scale(1.02);
}
.home .hero-section .hero-content {
  display: flex;
  align-items: center;
  gap: 40px;
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
.home .hero-section .hero-text {
  flex: 1;
  padding: 30px;
}
.home .hero-section .hero-text .hero-title {
  font-size: 28px;
  font-weight: bold;
  line-height: 1.3;
  margin-bottom: 15px;
  color: #2c3e50;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.home .hero-section .hero-text .hero-description {
  font-size: 16px;
  line-height: 1.6;
  color: #666;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.home .hero-section .hero-image {
  flex-shrink: 0;
  width: 400px;
  height: 250px;
  overflow: hidden;
}
.home .hero-section .hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.home .news-grid-section {
  padding: 30px 0;
  padding-bottom: 0;
}
.home .news-grid-section .section-title {
  font-size: 24px;
  font-weight: bold;
  color: #2c3e50;
  margin-bottom: 30px;
  text-align: center;
}
.home .news-grid-section .news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-bottom: 30px;
}
.home .news-grid-section .news-card {
  display: block;
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  text-decoration: none;
  color: inherit;
}
.home .news-grid-section .news-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}
.home .news-grid-section .news-card .news-image {
  overflow: hidden;
}
.home .news-grid-section .news-card .news-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.home .news-grid-section .news-card .news-image:hover img {
  transform: scale(1.1);
}
.home .news-grid-section .news-card .news-content {
  padding: 20px;
}
.home .news-grid-section .news-card .news-content .news-title {
  font-size: 16px;
  font-weight: 600;
  color: #2c3e50;
  line-height: 1.4;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.home .news-grid-section .news-card .news-content .news-date {
  font-size: 14px;
  color: #999;
  text-align: center;
}
.home .content-with-sidebar {
  padding: 40px 0;
  padding-bottom: 0;
}
.home .content-with-sidebar .content-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
}
.home .content-with-sidebar .main-content .section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  border-bottom: 2px solid #e9ecef;
  padding-bottom: 15px;
}
.home .content-with-sidebar .main-content .section-title {
  font-size: 24px;
  font-weight: bold;
  color: #2c3e50;
  margin: 0;
}
.home .content-with-sidebar .main-content .more-link {
  color: #007bff;
  font-size: 16px;
  text-decoration: none;
  transition: color 0.3s ease;
}
.home .content-with-sidebar .main-content .more-link:hover {
  color: #0056b3;
}
.home .content-with-sidebar .main-content .featured-articles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.home .content-with-sidebar .main-content .featured-article {
  display: block;
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}
.home .content-with-sidebar .main-content .featured-article:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}
.home .content-with-sidebar .main-content .featured-article .article-image {
  overflow: hidden;
}
.home .content-with-sidebar .main-content .featured-article .article-image img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.home .content-with-sidebar .main-content .featured-article .article-image:hover img {
  transform: scale(1.05);
}
.home .content-with-sidebar .main-content .featured-article .article-content {
  padding: 15px;
}
.home .content-with-sidebar .main-content .featured-article .article-content .article-title {
  font-size: 14px;
  font-weight: 600;
  color: #2c3e50;
  line-height: 1.4;
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.home .content-with-sidebar .main-content .featured-article .article-content .article-date {
  font-size: 12px;
  color: #999;
  text-align: center;
}
.home .content-with-sidebar .sidebar .widget-title {
  font-size: 20px;
  font-weight: bold;
  color: #2c3e50;
  margin-bottom: 20px;
  text-align: center;
}
.home .content-with-sidebar .sidebar .news-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.home .content-with-sidebar .sidebar .news-item {
  display: block;
  background: white;
  padding: 15px;
  border-radius: 8px;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}
.home .content-with-sidebar .sidebar .news-item:hover {
  transform: translateX(5px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
.home .content-with-sidebar .sidebar .news-item .news-title {
  font-size: 14px;
  color: #2c3e50;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.home .bottom-sections {
  padding: 40px 0;
}
.home .bottom-sections .news-section {
  margin-bottom: 50px;
}
.home .bottom-sections .news-section .section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
  border-bottom: 2px solid #e9ecef;
  padding-bottom: 15px;
}
.home .bottom-sections .news-section .section-title {
  font-size: 24px;
  font-weight: bold;
  color: #2c3e50;
  margin: 0;
}
.home .bottom-sections .news-section .more-link {
  color: #007bff;
  font-size: 16px;
  text-decoration: none;
  transition: color 0.3s ease;
}
.home .bottom-sections .news-section .more-link:hover {
  color: #0056b3;
}
.home .bottom-sections .news-section .news-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.home .bottom-sections .news-section .news-card {
  display: block;
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  text-decoration: none;
  color: inherit;
}
.home .bottom-sections .news-section .news-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}
.home .bottom-sections .news-section .news-card .news-image {
  overflow: hidden;
}
.home .bottom-sections .news-section .news-card .news-image img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.home .bottom-sections .news-section .news-card .news-image:hover img {
  transform: scale(1.05);
}
.home .bottom-sections .news-section .news-card .news-title {
  padding: 15px;
  font-size: 14px;
  font-weight: 600;
  color: #2c3e50;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (max-width: 768px) {
  .home .hero-section .container {
    padding: 0;
  }
  .home .hero-section .hero-content {
    flex-direction: column;
  }
  .home .hero-section .hero-content .hero-image {
    width: 100%;
    height: 200px;
  }
  .home .hero-section .hero-content .hero-text .hero-title {
    font-size: 22px;
  }
  .home .news-grid-section .news-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .home .content-with-sidebar .content-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .home .content-with-sidebar .main-content .featured-articles {
    grid-template-columns: 1fr;
  }
  .home .bottom-sections .news-section .news-grid-4 {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
}
@media (max-width: 480px) {
  .home .hero-section {
    padding: 20px 0;
  }
  .home .hero-section .hero-content {
    margin: 0 15px;
  }
  .home .hero-section .hero-content .hero-text {
    padding: 20px;
  }
  .home .hero-section .hero-content .hero-text .hero-title {
    font-size: 18px;
    margin-bottom: 10px;
  }
  .home .hero-section .hero-content .hero-text .hero-description {
    font-size: 14px;
  }
  .home .hero-section .hero-content .hero-image {
    height: 180px;
  }
  .home .news-grid-section {
    padding: 20px 0;
  }
  .home .news-grid-section .container {
    padding: 0 15px;
  }
  .home .news-grid-section .news-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .home .content-with-sidebar {
    padding: 20px 0;
  }
  .home .content-with-sidebar .container {
    padding: 0 15px;
  }
  .home .bottom-sections {
    padding: 20px 0;
  }
  .home .bottom-sections .container {
    padding: 0 15px;
  }
  .home .bottom-sections .news-section .news-grid-4 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .header .nav-container {
    padding: 0 15px;
  }
  .header .logo {
    font-size: 20px;
  }
  .header .mobile-menu-btn {
    display: block;
  }
  .header .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border-top: 1px solid #e5e5e5;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    flex-direction: column;
    gap: 0;
  }
  .header .nav-menu.active {
    display: flex;
  }
  .header .nav-menu li {
    border-bottom: 1px solid #f0f0f0;
  }
  .header .nav-menu li:last-child {
    border-bottom: none;
  }
  .header .nav-menu li a {
    display: block;
    padding: 15px 20px;
    font-size: 16px;
  }
  .header .nav-menu li a:hover {
    background: #f8f9fa;
  }
}
@media (max-width: 480px) {
  .header .nav-container {
    padding: 0 10px;
  }
  .header .logo {
    font-size: 18px;
  }
  .header .nav-menu li a {
    padding: 12px 15px;
    font-size: 15px;
  }
}
.list-page {
  background-color: #f8f9fa;
  min-height: 100vh;
  padding-top: 20px;
}
.list-page .main-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.list-page .news-grid-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}
.list-page .news-item-grid {
  display: block;
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  text-decoration: none;
  color: inherit;
}
.list-page .news-item-grid:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}
.list-page .news-item-grid .news-image {
  overflow: hidden;
}
.list-page .news-item-grid .news-image img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.list-page .news-item-grid .news-image:hover img {
  transform: scale(1.05);
}
.list-page .news-item-grid .news-content {
  padding: 15px;
}
.list-page .news-item-grid .news-content .news-title {
  font-size: 14px;
  font-weight: 600;
  color: #2c3e50;
  line-height: 1.4;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.list-page .news-item-grid .news-content .news-date {
  font-size: 12px;
  color: #999;
  text-align: center;
}
@media (max-width: 768px) {
  .list-page .main-container {
    padding: 0 15px;
  }
  .list-page .container {
    padding: 0;
  }
  .list-page .news-grid-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 30px;
  }
  .list-page .news-item-grid .news-image img {
    height: 140px;
  }
  .list-page .news-item-grid .news-content {
    padding: 12px;
  }
  .list-page .news-item-grid .news-content .news-title {
    font-size: 13px;
    margin-bottom: 8px;
  }
  .list-page .news-item-grid .news-content .news-date {
    font-size: 11px;
  }
}
@media (max-width: 480px) {
  .list-page .main-container {
    padding: 0 10px;
  }
  .list-page .news-grid-list {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .list-page .news-item-grid .news-image img {
    height: 200px;
  }
}

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

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

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

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

.footer-links h4 {
  font-size: 16px;
  margin-bottom: 15px;
  color: #bdc3c7;
}

.links-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
}

.links-row a {
  color: #bdc3c7;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.links-row a:hover {
  color: #FFC107;
}

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

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