.container {
  padding: 0;
}
.pc-news .base-header {
  flex-direction: column;
  align-items: start;
}
.pc-news .base-header .title {
  font-size: 40px;
  font-weight: 700;
}
.pc-news .news-header {
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: space-between;
}
.pc-news .news-header .more {
  font-size: 16px;
  color: #4b4b4d;
  cursor: pointer;
}
.pc-news .news-content {
  display: flex;
  flex-direction: column;
}
.pc-news .news-content .new:last-of-type {
  border-bottom: none;
}
.pc-news .news-content .new {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 48px;
  padding-top: 36px;
  cursor: inherit;
  min-height: 250px;
  border-bottom: 1px solid #e0e2e6;
}
.pc-news .news-content .new .left {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  user-select: text;
  /* 允许文本选择 */
}
.pc-news .news-content .new .left .time {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 24px;
  text-wrap: nowrap;
}
.pc-news .news-content .new .left .tag {
  width: fit-content;
  padding: 4px 6px;
}
.pc-news .news-content .new .left .product-color {
  color: #043379;
  background: #e6ebf2;
}
.pc-news .news-content .new .left .lansheng-color {
  color: #b81c26;
  background: #f8e9ea;
}
.pc-news .news-content .new .center {
  width: 300px;
  height: 180px;
}
.pc-news .news-content .new .center img {
  width: 100%;
  height: 100%;
  /* 添加过渡效果到原始状态 */
  transition: transform 0.3s;
}
.pc-news .news-content .new .center img:hover {
  transform: scale(1.2);
}
.pc-news .news-content .new .right {
  user-select: text;
  /* 允许文本选择 */
  flex: 1;
}
.pc-news .news-content .new .right .title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 24px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  /* 控制显示的行数 */
  user-select: text;
  /* 允许文本选择 */
}
.pc-news .news-content .new .right .content {
  color: #4b4b4d;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 3;
  /* 控制显示的行数 */
  user-select: text;
  /* 允许文本选择 */
}
.mobile-news {
  display: flex;
  flex-direction: column;
  padding: 18px;
}
.mobile-news .news-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
.mobile-news .base-header {
  margin-bottom: 0;
}
.mobile-news .news-content {
  display: flex;
  flex-direction: column;
}
.mobile-news .news-content .new:last-of-type {
  border: none;
}
.mobile-news .news-content .new {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid #e0e2e6;
  cursor: pointer;
}
.mobile-news .news-content .new .pro-img {
  width: 100%;
}
.mobile-news .news-content .new .pro-img img {
  width: 100%;
  object-fit: contain;
}
.mobile-news .news-content .new .tag {
  padding: 3px 6px;
  color: #fff;
}
.mobile-news .news-content .new .title {
  font-size: 16px;
  font-weight: 700;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  /* 控制显示的行数 */
}
.mobile-news .news-content .new .time-tag {
  display: flex;
  justify-content: space-between;
}
.mobile-news .news-content .new .content {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 3;
  /* 控制显示的行数 */
}
@media screen and (min-width: 992px) {
  .pc-news {
    margin-top: 60px;
    display: block;
  }
  .mobile-news {
    display: none;
  }
  .news .base-header .title {
    font-size: 40px;
    font-weight: 700;
  }
}
@media screen and (max-width: 992px) {
  .pc-news {
    display: none;
  }
  .mobile-news {
    display: block;
  }
}
