

.news-detail {
  display: flex;
  gap: 24px;
}

.news-detail img {
  width: 40%;
}
 

.news-detail .news-detail-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
}
.news-detail-content   {
  font-weight: bold;
  line-height: 1.2;
}

 

.news-center {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.news-center-item {
  display: flex;
  height: 250px;
  box-shadow: 0px 4px 15px 0px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
}

.news-center-item img {
  width: 40%;
}

.news-center-item .item-right {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  padding: 28px;
  flex: 1;
  background-color: #f3f4f6;
  color: #666666;
}

.news-center-item .item-right .tltle {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #000;
}

.news-center-item .item-right .content {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 15px;
  line-height: 1.5;
}

.news-center-item .item-right .bottom {
  border-top: 1px solid #999;
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 13px;
}

@media (max-width: 767px) {
	.bottom{
		  display:block !important	
}

	.bottom div{
	  display:block	
}
}
