.content_one{ width: 100%;height:700px; margin: 0px auto;  background-color: #ffffff; position: relative;}
.content_one_img{ width: 100%;height:100%;}
.content_one_img img{ width: 100%;height:100%;object-fit: cover;}

/* 文字叠加层 */
.text-overlay { color: #ffffff; position: absolute; top: 50%; margin-top: -100px; text-align: center; width: 100%; font-size: 50px; line-height: 90px; font-weight: bold}
.line3{ font-size: 30px; margin-top: 20px; font-weight: normal }




  /* 顶部背景和tab栏样式 */
.header-section {
	position: relative;
	background-image: url('../images/new-banner.jpg');
	background-size: cover;
	background-position: center;
	height: 450px;
	margin-top: 60px;
}

.tab-bar {
	width: 90%;
	max-width: 1400px;
	margin: 0px auto;
	display: flex;
	justify-content: center;
	background-color: white;
	border-radius: 2px;
	box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.2);
	top: 97%;
	position: relative;
}

.tab-item {
	padding: 10px 20px;
	cursor: pointer;
	color: #5c5a5a;
	font-weight: 600;
	font-size: 14px;
	transition: all 0.3s ease;
	flex: 1;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 60px;
	line-height: 60px;
}

.tab-item.active {
	background-color: #eef5ff;
	color: #0562e6;
}

.tab-item img {
	height: 20px;
	margin-right: 5px;
}



/* 内容区域样式 */
.content-section {
	display: flex;
    width: 90%; /* 修改为相对单位，使用百分比宽度，确保与 tab 栏宽度一致 */
    max-width: 1400px; /* 最大宽度限制 */
    margin: 60px auto;
    overflow: hidden;
}

.left-section {
	flex: 2;
	margin-right: 20px;
}

.section-title {
	display: flex;
	align-items: center;
	margin-bottom: 10px;
	margin-top: 10px;
}

.section-title span{
	font-size: 14px;
    font-weight: 700;
}

.section-icon {
	width: 20px;
	height: 20px;
	margin-right: 10px;
}

.news-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-gap: 20px;
}

.news-item {
	cursor: pointer; /* 新增此行 */
	background-color: white;
	border-radius: 14px;
	overflow: hidden;
	box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
	transition: transform 0.2s ease; /* 可选：添加悬停动画 */
	height: 260px;
}

.news-img {
	width: 100%;
	height: 154px;
}

.news-text {
	padding: 20px;
	font-size: 14px;
	white-space: nowrap;      /* 禁止文本换行 */
	overflow: hidden;        /* 隐藏超出部分 */
	text-overflow: ellipsis; /* 超出部分显示省略号 */
	width: 100%;            /* 需要指定宽度 */
	display: block;          /* 确保元素是块级元素 */
}

.news-text:last-child {
	display: flex;
	align-items: center;
	font-size: 14px; /* 调整时间文字大小 */
	color: #999999; /* 设置时间文字颜色为灰色 */
	padding: 0 20px;
}

.news-text-icon {
	margin-right: 5px; /* 在图标和时间之间添加一些间距 */
}


.container-detail{
  justify-content: space-between;
  padding: 60px 40px 40px;
  background-color:white;
}
.container-detail h2{
	text-align: center;
}
.container-detail .time-text{
	display: block;
	width: 100%;
	text-align: center;
	margin-bottom: 20px;
	color: #999999;
}

.container-detail p{
	font-size:14px;
	line-height: 30px;
}

/*分页开始*/
.pagination-container {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    gap: 5px;
}

.page-btn {
    padding: 5px 10px;
    border: 1px solid #ddd;
    cursor: pointer;
    border-radius: 3px;
}

.page-btn.active {
    background-color: #1890ff;
    color: white;
    border-color: #1890ff;
}

.page-btn:hover:not(.active) {
    background-color: #f0f0f0;
}

.page-ellipsis {
    padding: 5px 10px;
}
/*分页结束*/


.right-section {
	flex: 1;
	padding: 0px 0px 10px 10px;
	height: calc(2/3 * var(--left-section-height));
	overflow-y: auto;
}

.hot-recommend {
	margin-top: 10px;
	border-radius: 10px; /* 设置边角圆润 */
	overflow: hidden; /* 确保溢出部分被隐藏 */
}

.hot-item {
	cursor: pointer; /* 新增此行 */
	padding: 10px 25px 10px 35px;
	border-bottom: 1px solid #f5f5f5;
	position: relative;
	font-size: 14px;
	color: #666;
	background-color: white;
	transition: background-color 0.2s ease; /* 可选：添加悬停动画 */
	line-height: 30px;
}

.hot-item::before {
	content: "";
	position: absolute;
	left: 20px; /* 调整蓝色点的水平位置 */
	top: 23px; /* 调整蓝色点的垂直位置 */
	width: 5px;
	height: 5px;
	background-color: #007bff;
	border-radius: 50%;
}

.hot-item:last-child {
	border-bottom: none;
}

.hot-date {
	display: block;
	margin-top: 5px;
	padding-left: 20px;
	position: relative;
	font-size: 13px;
	color: #bdbdbd; /* 设置时间文字颜色为灰色 */
}

.hot-date::before {
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 15px;
	height: 15px;
	background-image: url('../images/new-tb6.png'); /* 日期前的图标 */
	background-size: cover;
}

.tab-content {
	display: none;
}

.tab-content.active {
	display: block;
}
/*新闻*/
.new-content{
	background-color: #ffffff;
	border-radius: 10px;
	padding: 20px 0;
	box-sizing: border-box;
}
.new-list{
	border-bottom: 1px solid #eeeeee;
	padding: 0 30px 15px 30px;
	display: flex;
	justify-content: flex-start;
	margin-top: 30px;
}
.new-list:last-child{
	border-bottom: 0;
}
.new-list-left{
	width: 22px;
	height: 22px;
	background-color: #efefef;
	color: #999999;
	text-align: center;
	line-height: 22px;
	border-radius: 5px;
	font-size: 12px;
}
.new-list-right{
	margin-left: 10px;
}
.new-list-right a{
	font-size: 14px;
	color: #666666;
	display: block;
	margin-bottom: 20px;
}
.new-list:nth-child(1) .new-list-left{
	background-color: #ff2c2c;
	color: #ffffff;
}
.new-list:nth-child(2) .new-list-left{
	background-color: #ff764c;
	color: #ffffff;
}
.new-list:nth-child(3) .new-list-left{
	background-color: #ffa54d;
	color: #ffffff;
}




