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: #212529;
  background: #f8f9fa;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
  font-weight: normal;
  color: #212529;
}

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: #212529;
  background-color: #f8f9fa;
  min-height: 100vh;
}

.container {
  width: min(1200px, 100%);
  margin: 0 auto;
  padding: 0 15px;
}

.header {
  background: #fff;
  border-bottom: 1px solid #dee2e6;
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}
.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header .logo img {
  height: 40px;
}
.header .nav ul {
  display: flex;
  gap: 30px;
  font-size: 16px;
}
.header .nav ul li a {
  color: #333;
  padding-bottom: 5px;
}
.header .nav ul li a.active, .header .nav ul li a:hover {
  color: #FEC72C;
  border-bottom: 2px solid #FEC72C;
}
.header .nav ul li.act a {
  color: #FEC72C;
  border-bottom: 2px solid #FEC72C;
}

.featured-section {
  display: flex;
  gap: 20px;
  margin-top: 25px;
}
.featured-section .featured-main {
  flex-grow: 1;
}
.featured-section .featured-main .featured-item {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: 430px;
}
.featured-section .featured-main .featured-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}
.featured-section .featured-main .featured-item .featured-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.featured-section .featured-main .featured-item .featured-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px 20px 20px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
}
.featured-section .featured-main .featured-item .featured-content .title {
  font-size: 24px;
  line-height: 1.4;
  color: #fff;
}
.featured-section .featured-main .featured-item .featured-content .source {
  margin-top: 10px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
}
.featured-section .featured-side {
  width: 350px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
}
.featured-section .featured-side .side-news-list {
  flex-grow: 1;
  background: #fff;
  padding: 10px 20px 10px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.07);
}
.featured-section .featured-side .side-news-list .side-news-item {
  display: block;
  padding: 15px 0;
  border-bottom: 1px solid #e9ecef;
  line-height: 1.5;
  font-size: 15px;
}
.featured-section .featured-side .side-news-list .side-news-item:nth-last-child(1) {
  border-bottom: none;
}
.featured-section .featured-side .side-news-list .side-news-item p {
  color: #333;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.featured-section .featured-side .side-news-list .side-news-item:hover p {
  color: #FEC72C;
}
.featured-section .featured-side .ad {
  height: 120px;
  background: #e9ecef;
  border: 1px solid #dee2e6;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #adb5bd;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  border-bottom: 1px solid #dee2e6;
  padding-bottom: 10px;
  margin: 40px 0 25px;
}
.section-header .section-title {
  font-size: 20px;
  font-weight: bold;
  border-left: 3px solid #FEC72C;
  padding-left: 12px;
}
.section-header .more-link {
  color: #6c757d;
}

.news-list-container {
  display: flex;
  gap: 20px;
}
.news-list-container .news-list-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.list-item {
  display: flex;
  gap: 20px;
  color: #333;
  background: #fff;
  padding: 15px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.07);
  transition: all 0.3s ease;
}
.list-item:hover {
  color: #FEC72C;
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
.list-item .img-box {
  width: 150px;
  height: 100px;
  flex-shrink: 0;
}
.list-item .img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}
.list-item .content .title {
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 5px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.list-item .content .desc, .list-item .content .date {
  font-size: 14px;
  color: #6c757d;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.list-item .content .desc {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.list-item .content .date {
  margin-top: 8px;
}

.ad-long {
  height: 90px;
  background: #e9ecef;
  border: 1px solid #dee2e6;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #adb5bd;
  margin: 30px 0;
}

.footer {
  background: #343a40;
  border-top: 1px solid #343a40;
  padding: 40px 0;
  margin-top: 50px;
}
.footer .footer-links {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.footer .footer-links a {
  color: #f8f9fa;
}
.footer .footer-links a:hover {
  color: #FEC72C;
}
.footer .copyright {
  margin-top: 20px;
  text-align: center;
  color: #adb5bd;
  font-size: 13px;
}

.list-page .container {
  padding-top: 30px;
  padding-bottom: 30px;
}
.list-page .news-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.pagination-container {
  margin: 30px auto 20px;
  display: flex;
  justify-content: center;
}
.pagination-container ul {
  display: flex;
  align-items: center;
  gap: 10px;
}
.pagination-container ul.page-no li.active {
  background: #FEC72C;
  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: #FEC72C;
  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);
  }
}
.bread {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  line-height: 22px;
  margin-bottom: 30px;
  color: #6c757d;
}
.bread a {
  color: #6c757d;
}
.bread a:hover {
  color: #FEC72C;
}
.bread .text {
  color: #212529;
}

@media (max-width: 768px) {
  .header .container {
    flex-direction: column;
    gap: 15px;
  }
  .header .nav ul {
    gap: 20px;
    flex-wrap: wrap;
  }
  .featured-section {
    flex-direction: column;
  }
  .featured-section .featured-side {
    width: 100%;
  }
  .news-list-container {
    flex-direction: column;
  }
  .list-item {
    flex-direction: column !important;
  }
  .list-item .img-box {
    width: 100%;
    height: 120px;
  }
  .pagination-container {
    transform: scale(0.9);
  }
}
.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);
}
.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;
  }
}

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