.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after,
.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
  font-size: 1rem;
}
/* 法律资讯页面样式 */
.article-header {
  padding: 30px 0;
}
.article-header .title-box {
  text-align: center;
}
.article-header .title-box .subtitle {
  font-size: 1.5rem;
  color: #666666;
  margin-bottom: 16px;
}
.article-header .title-box .title {
  font-size: 7.5rem;
  color: #252525;
  font-weight: bold;
}
.article-header .article-banner {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
}
.article-header .article-banner .swiper-container {
  width: 100%;
  height: 400px;
  position: relative;
}
.article-header .article-banner .swiper-slide {
  position: relative;
}
.article-header .article-banner .swiper-slide .img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.article-header .article-banner .swiper-slide .title-box {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
}
.article-header .article-banner .swiper-slide .title-box .img-tit {
  color: #fff;
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 10px;
}
.article-header .article-banner .swiper-slide .title-box .img-tit.img-en-tit {
  font-size: 1.2rem;
  font-weight: normal;
  opacity: 0.8;
}
.article-header .article-banner .swiper-pagination {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}
.article-header .article-banner .swiper-button-next,
.article-header .article-banner .swiper-button-prev {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  color: #fff;
  background: rgba(0, 0, 0, 0.5);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s ease;
}
.article-header .article-banner .swiper-button-next:hover,
.article-header .article-banner .swiper-button-prev:hover {
  background: rgba(0, 0, 0, 0.7);
}
.article-header .article-banner .swiper-button-next {
  right: 20px;
}
.article-header .article-banner .swiper-button-prev {
  left: 20px;
}
/* 文章分类 */
.article-categories {
  margin: 32px auto;
}
.article-categories .categories-title {
  font-size: 2rem;
  color: #252525;
  margin-bottom: 20px;
  text-align: center;
  font-weight: bold;
}
.article-categories .categories-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}
.article-categories .categories-list .category-item {
  padding: 10px 20px;
  border-radius: 50px;
  background-color: #f2f2f2;
  transition: all 0.3s ease;
}
.article-categories .categories-list .category-item.active {
  background-color: #e60012;
}
.article-categories .categories-list .category-item.active a {
  color: #fff;
}
.article-categories .categories-list .category-item:hover:not(.active) {
  background-color: #e0e0e0;
}
.article-categories .categories-list .category-item a {
  display: flex;
  align-items: center;
  gap: 5px;
  text-decoration: none;
  color: #252525;
}
.article-categories .categories-list .category-item a .category-name {
  font-size: 1rem;
}
.article-categories .categories-list .category-item a .category-count {
  font-size: 0.9rem;
  opacity: 0.7;
}
/* 文章列表 */
.article-list {
  margin: 32px auto;
}
.article-list .list-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.article-list .list-content .article-item {
  background-color: #fff;
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  align-items: stretch;
  border: 1px solid #f2f2f2;
  padding: 10px;
}
.article-list .list-content .article-item:hover {
  cursor: pointer;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}
.article-list .list-content .article-item .article-image {
  flex: 0 0 240px;
  overflow: hidden;
  position: relative;
  border-radius: 14px;
}
.article-list .list-content .article-item .article-image:before {
  display: block;
  content: "";
  padding-top: 60%;
}
.article-list .list-content .article-item .article-image.article-image-none {
  background-color: #f0f0f0;
}
.article-list .list-content .article-item .article-image.article-image-none .img-a {
  display: flex;
  align-items: center;
  justify-content: center;
}
.article-list .list-content .article-item .article-image .article-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.article-list .list-content .article-item .article-info {
  flex: 1;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.article-list .list-content .article-item .article-info .article-category {
  width: fit-content;
  display: inline-block;
  padding: 4px 10px;
  background-color: rgba(230, 0, 18, 0.1);
  color: #e60012;
  font-size: 0.8rem;
  border-radius: 4px;
  margin-bottom: 12px;
}
.article-list .list-content .article-item .article-info .article-title {
  margin-bottom: 10px;
}
.article-list .list-content .article-item .article-info .article-title a {
  color: #252525;
  text-decoration: none;
  font-size: 1.3rem;
  font-weight: bold;
  line-height: 1.4;
  transition: color 0.3s ease;
}
.article-list .list-content .article-item .article-info .article-title a:hover {
  color: #e60012;
}
.article-list .list-content .article-item .article-info .article-desc {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 15px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.article-list .list-content .article-item .article-info .article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.article-list .list-content .article-item .article-info .article-meta .meta-item {
  color: #999;
  font-size: 0.85rem;
}
/* 响应式布局 */
@media (max-width: 1200px) {
  .article-list .list-content {
    gap: 18px;
  }
}
@media (max-width: 980px) {
  .article-header .article-banner .swiper-container {
    height: 300px;
  }
  .article-list .list-content {
    gap: 16px;
  }
}
@media (max-width: 768px) {
  .article-header .article-banner .swiper-container {
    height: 250px;
  }
  .article-categories .categories-list {
    gap: 10px;
  }
  .article-categories .category-item {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
  .article-list .list-content {
    gap: 15px;
  }
  .article-list .article-item {
    flex-direction: column;
  }
  .article-list .article-item .article-image {
    flex: 0 0 180px;
  }
  .article-list .article-item .article-info {
    padding: 16px;
  }
  .article-list .article-item .article-info .article-title a {
    font-size: 1.2rem;
  }
}
@media (max-width: 650px) {
  .article-header .title-box .title {
    font-size: 3rem;
  }
  .article-header .article-banner .swiper-container {
    height: 200px;
  }
  .article-header .article-banner .title-box {
    padding: 20px;
  }
  .article-header .article-banner .img-tit {
    font-size: 1.5rem;
  }
  .article-header .article-banner .img-en-tit {
    font-size: 1rem;
  }
  .article-categories .categories-title {
    font-size: 1.5rem;
  }
  .article-list .article-item .article-info {
    padding: 14px;
  }
  .article-list .article-item .article-info .article-title a {
    font-size: 1.1rem;
  }
  .article-list .article-item .article-info .article-desc {
    font-size: 0.9rem;
  }
}
/*# sourceMappingURL=article.css.map */