.news-swiper-wrapper {
  padding: 0.8rem 0;
  padding-bottom: 0;
}
.news-swiper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.news-swiper .swiper-container {
  flex: 1;
  overflow: hidden;
  /* margin: 0 0.5rem; */
}
.news-swiper .swiper-slide {
  /* width:6.9rem !important; */

}
.news-slide-content {
  display: flex;
  width: 100%;
  background: #fff;
}
.news-slide-img {
  width: 50%;
  overflow: hidden;
}
.news-slide-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.news-slide-img img:hover {
  transform: scale(1.1);
}
.news-slide-text {
  width: 50%;
  padding: 0.66rem 0.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient( 179deg, #0069D9 0%, #004B9B 100%);
}
.date-brief {
  display: flex;
  align-items: center;
  margin-bottom: 0.13rem;
}
.brief-white {
  width: 0.8rem;
  height: 0.22rem;
  background: #ffffff;
  border-radius: 0.13rem 0.13rem 0.13rem 0.13rem;
  font-size: 0.12rem;
  color: #004b9b;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 0.09rem;
}
.news-slide-text .news-date {
  font-size: 0.14rem;
  color: #ffffff;
}
.news-slide-text h3 {
  font-size: 0.3rem;
  color: #ffffff;
  margin-bottom: 0.47rem;
}
.news-slide-text p {
  font-size: 0.16rem;
  color: #ffffff;
  line-height: 0.3rem;
}
.more-class{
    color: #fff;
    margin-top: 0.49rem;
    display: flex;
    align-items: center;
}
.more-class img{
    margin-left: 0.02rem;
}
.news-swiper .swiper-button-prev,
.news-swiper .swiper-button-next {
  display: none;
}
.news-swiper .swiper-pagination {
  display: flex !important;
  position: relative;
  margin-top: 0.29rem;
  justify-content: center;
  align-items: center;
  gap: 0.16rem;
  z-index: 10;
}
.news-swiper .swiper-pagination-bullet {
  width: 0.1rem;
  height: 0.1rem;
  background: #dedede !important;
  opacity: 1 !important;
  margin: 0 !important;
  border-radius: 50% !important;
  cursor: pointer;
  flex-shrink: 0;
}
.news-swiper .swiper-pagination-bullet-active {
  background: #2a66c8 !important;
}

.news-grid-wrapper {
  padding: 0.57rem 0;
  background: #fff;
}
.news-grid {
  display: flex;
  flex-wrap: wrap;
}
.news-grid-item {
  flex-shrink: 0;
  width: calc((100% - 0.7rem) / 3);
  margin-right: 0.35rem;
  margin-bottom: 0.26rem;
  display: block;
}

.news-grid-item:nth-child(3n) {
  margin-right: 0;
}
.news-grid-img {
  width: 100%;
  overflow: hidden;
}
.news-grid-img img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}
.news-grid-img img:hover {
  transform: scale(1.1);
}
.news-grid-info {

  background: #f3f3f3;
  padding: 0.2rem;
  box-sizing: border-box;
}
.news-grid-title {
  font-size: 0.2rem;
  color: #1d1d1d;
  line-height: 0.3rem;
  display: -webkit-box;           /* 必须结合的属性：将对象作为弹性伸缩盒子模型显示 */
  -webkit-box-orient: vertical;   /* 必须结合的属性：设置或检索伸缩盒对象的子元素的排列方式 */
  -webkit-line-clamp: 2;          /* 限制在一个块元素显示的文本的行数，这里设置为2行 */
  overflow: hidden;               /* 隐藏超出的内容 */
  text-overflow: ellipsis;        /* 文本溢出时显示省略号 */
}
.news-grid-date {
  font-size: 0.16rem;
  color: #888888;
margin-top: 0.13rem;
}
.news-grid-item:hover .news-grid-title {
color: #2A66C8;
}
@media screen and (max-width: 768px) {
  .brief-white{
    width: 1.5rem;
height: 0.42rem;
font-size: 0.24rem;
border-radius: 0.21rem 0.21rem 0.21rem 0.21rem;
  }
  .news-slide-text .news-date{
    font-size: 0.28rem;
  }
  .news-slide-content {
    flex-direction: column;
  }
  .date-brief{
    margin-bottom: 0.2rem;
  }
  .more-class{
    font-size: 0.25rem;
    margin-top: 0.4rem;
  }
  .news-slide-img {
    width: 100%;
    height: 4.82rem;
  }
  .news-slide-text {
    width: 100%;
    padding: 0.3rem;
    padding-bottom: 0.69rem;
  }
  .news-slide-text h3 {
    font-size: 0.3rem;
    line-height: 0.5rem;
    margin-bottom: 0.3rem;
  }
  .news-slide-text p {
    font-size: 0.28rem;
    line-height: 0.5rem;
  }
  .news-swiper .swiper-pagination {
   display: none;
  }
  .news-swiper .swiper-pagination-bullet {
    width: 0.2rem;
    height: 0.2rem;
    margin: 0 0.09rem !important;
  }
  .news-swiper .swiper-container {
    margin: 0;
  }
  .news-swiper-wrapper .safe-width{
    padding: 0;
  }
  .news-grid{
    flex-direction: column;
  }
  .news-grid-item{
    width: 100%;
    margin-right: 0;
  }
  .news-grid-title{
    font-size: 0.28rem;
line-height: 0.5rem;
  }
  .news-grid-date{
    font-size: 0.28rem;
line-height: 0.45rem;
  }
  .news-grid-info{
    padding: 0.26rem 0.3rem;
  }
  .news-grid-wrapper{
    padding-bottom: 0.7rem;
  }
}
