@media (min-width: 1024px) {
  .page-head {
    padding-bottom: 100px !important;
  }
}
.news {
  background: #fff;
}
.news .category-list {
  display: flex;
  justify-content: center;
}
@media (max-width: 1023px) {
  .news .category-list {
    margin: 0 auto;
  }
}
.news .category-list a {
  padding: 10px 20px;
  border-right: 1px solid #ccc;
  font-size: 14px;
  position: relative;
  white-space: nowrap;
}
@media (max-width: 1023px) {
  .news .category-list a {
    font-size: 12px;
    padding: 5px 10px;
  }
}
.news .category-list a:last-child {
  border-right: none;
}
.news .category-list .active {
  font-weight: bold;
}
.news .category-list .active::after {
  content: "";
  position: absolute;
  top: 102%;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 50%;
  width: 10px;
  height: 10px;
  background: #BA0015;
  z-index: 4;
}
.news .news-list {
  padding: 60px 0 150px 0;
  width: fit-content;
  margin: 0 auto;
}
@media (max-width: 1023px) {
  .news .news-list {
    padding: 50px 0 80px 0;
  }
}
.news .news-list .news-item:first-child {
  border-top: 1px solid #ccc;
}
.news .news-list .news-item {
  padding: 20px 0;
  border-bottom: 1px solid #ccc;
  display: flex;
  gap: 20px;
}
@media (max-width: 1023px) {
  .news .news-list .news-item {
    gap: 10px;
  }
}
.news .news-list .news-item .thumb {
  width: 220px;
  height: 150px;
  background: #f2f2f2;
  overflow: hidden;
}
.news .news-list .news-item .thumb:hover img {
  width: 107%;
}
@media (max-width: 1023px) {
  .news .news-list .news-item .thumb {
    width: 43vw;
    height: 29vw;
    max-width: 220px;
    max-height: 150px;
    aspect-ratio: 22/15;
  }
}
.news .news-list .news-item .thumb img {
  object-position: center;
  width: 100%;
  height: 100%;
  transition: all 0.2s ease-in-out;
  object-fit: cover;
}
.news .news-list .news-item .info {
  width: 430px;
}
@media (max-width: 1023px) {
  .news .news-list .news-item .info {
    width: 44vw;
  }
}
.news .news-list .news-item .info .date {
  display: flex;
  gap: 25px;
}
.news .news-list .news-item .info .date .time {
  font-size: 12px;
}
.news .news-list .news-item .info .date .category-name-list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
@media (max-width: 1023px) {
  .news .news-list .news-item .info .date .category-name-list {
    gap: 0;
    flex-direction: column;
  }
}
.news .news-list .news-item .info .date .category-name {
  font-size: 12px;
  font-weight: bold;
}
.news .news-list .news-item .info .title {
  font-size: 16px;
  margin-top: 8px;
  font-weight: bold;
}
@media (max-width: 1023px) {
  .news .news-list .news-item .info .title {
    font-size: 14px;
    margin-top: 5px;
  }
}
.news .pagination {
  margin-bottom: 150px;
  display: flex;
  justify-content: center;
}
@media (max-width: 1023px) {
  .news .pagination {
    margin-bottom: 80px;
  }
}
.news .pagination a {
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 1023px) {
  .news .pagination a {
    width: 40px;
    height: 40px;
  }
}
.news .pagination .page {
  background: #000000;
  color: #fff;
}
.news .pagination .next img {
  transform: rotate(180deg);
}
.news-detail {
  width: 670px;
  margin: 0 auto;
}
@media (max-width: 1023px) {
  .news-detail {
    width: calc(100vw - 40px);
  }
}
.news-detail .news-content .news-head {
  padding: 20px 0;
  border-bottom: 1px solid #CCCCCC;
}
.news-detail .news-content .news-head .date {
  font-size: 12px;
  display: flex;
  gap: 20px;
}
.news-detail .news-content .news-head .date .category-name {
  font-weight: bold;
}
.news-detail .news-content .news-head .title {
  padding-top: 18px;
  font-size: 22px;
  font-weight: bold;
}
.news-detail .news-content .news-body {
  padding: 60px 0;
  word-wrap: break-word !important;
  word-break: break-all !important;
}
@media (max-width: 1023px) {
  .news-detail .news-content .news-body {
    padding: 30px 0;
  }
}
.news-detail .news-content .news-body pre {
  white-space: pre-wrap;
  word-wrap: break-word !important;
  word-break: break-all !important;
}
.news-detail .news-content .news-body p {
  line-height: 28px;
  word-wrap: break-word;
  word-break: break-all;
}
@media (max-width: 1023px) {
  .news-detail .news-content .news-body p {
    font-size: 14px;
  }
}
.news-detail .news-content .news-body a {
  text-decoration: underline;
}
.news-detail .guide {
  display: flex;
  justify-content: space-between;
  padding: 20px 0 150px 0;
  border-top: 1px solid #CCCCCC;
}
@media (max-width: 1023px) {
  .news-detail .guide {
    padding: 20px 0 90px 0;
  }
}
.news-detail .guide .empty {
  width: 40px;
}
.news-detail .guide a {
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
}
@media (max-width: 1023px) {
  .news-detail .guide a {
    font-size: 12px;
  }
}
.news-detail .guide .next {
  transform: rotate(180deg);
}
.home-news {
  margin-bottom: 60px !important;
}
@media (max-width: 1023px) {
  .home-news {
    margin-top: 60px !important;
    margin-bottom: 10px !important;
  }
}
.home-news .news-list {
  padding: 60px 0;
}
@media (max-width: 1023px) {
  .home-news .news-list {
    padding: 30px 0 10px 0;
  }
}
.home-news .detail-btn {
  margin: 0 auto;
}
/*# sourceMappingURL=news.css.map */