.news-item-card-container {
	max-width: 1200px;
	margin: 40px auto;
	padding: 0 15px;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 20px;
}
.design-text {
    flex: 1;
    padding: 20px;
    max-width: 600px;
}
.design-text-title {
    color: #000;
    font-size: 1.5em;
    font-weight: 700;
    line-height: 2;
    margin-bottom: 0;
}
.design-text-title .green {
    color: #8bc540;
}
.item-title-container
{
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
}
.item-title-container .item2{
	width: 60%;
}
/* 统计信息容器 */
.stats-container {
    display: flex;
    justify-content: space-around;
  
 
    background-color: #fff;
    border-radius: 10px;
  
}

/* 每个统计项 */
.stat-item {
    text-align: center;
}

/* 统计数字 */
.stat-number {
    font-size: 3em;
    color: #4CAF50;
  
}

/* 统计标签 */
.stat-label {
    font-size: 0.8em;
    color: #4CAF50;
}
.carousel_news_list
{
	  display: flex;          /* 启用 flex 布局 */
  flex-wrap: wrap;        /* 允许换行 */
  justify-content: space-between; /* 两端对齐 */
}
.news-item-card {
	border-radius: 8px;
	overflow: hidden;
	transform: translateY(30px);
	transition: all 0.6s ease;
	  width: 48%;           
 
  flex: 0 0 48%;  
  background-color: #F8F8F8; 
  margin-bottom: 40px;

}

.news-item-card:only-child {
	flex: 0 1 auto;
	max-width: 400px;
	margin: 0;
      /* 移除自动外边距，不再居中 */
}

.news-item-card.visible {
	opacity: 1;
	transform: translateY(0);
}

.news-item-card img {
	width: 100%;
	height: 340px;
	object-fit: cover;
}

.news-item-card .content {
	padding: 15px;
}

.news-item-card .content h3 {
	font-size: 18px;
	margin: 0 0 10px;
}



.news-item-card .content {
	padding: 15px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.news-item-card .content .date {
	font-size: 12px;
	color: #999;
	margin: 0 0 10px;
}

.news-item-card .content h3 {
	font-size: 16px;
	height: 2.8em;
      /* 2 行高度 */
	margin: 0 0 10px;
	font-weight: 600;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
      /* Limit to two lines */
	-webkit-box-orient: vertical;
}

.news-item-card .content .description {
	font-size: 0.8em;
	margin: 0 0 10px;

	line-height: 1.4;
      /* Ensure two lines for the description */

	display: -webkit-box;

}

.news-item-card .content .view-details {
	font-size: 12px;
	color: #666;
	text-decoration: none;
	margin-top: auto;
      /* Push the link to the bottom */
}

.additional-info
{
	font-size: 12px;
	line-height: 2;

}