 /* 全屏大图 */
.page-banner{
	width: 100%;
    height: 420px;
    margin-top: 90px;
}
.page-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* 标题 */
.page-title {
    padding: 50px 0;
    text-align: center;
}
.page-title h1 {
    font-size: 42px;
    font-weight: 700;
    color: #111;
    margin-bottom: 8px;
}
.page-title .en-sub {
    font-size: 16px;
    color: #888;
}

/* 分类 */
.news-category {
    margin: 40px 0 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #eee;
}
.news-category h2 {
    font-size: 24px;
    color: #0d47a1;
    font-weight: 600;
    margin-bottom: 5px;
}
.news-category .sub-title {
    font-size: 14px;
    color: #888;
}

/* 列表 */
.news-list {
    margin-bottom: 20px;
}
.news-item {
    padding: 14px 0;
    border-bottom: 1px dashed #eee;
    display: flex;
    align-items: center;
}
.news-item::before {
    content: "•";
    color: #0d47a1;
    margin-right: 12px;
    font-size: 18px;
}
.news-item a {
    flex: 1;
    color: #333;
    text-decoration: none;
    font-size: 16px;
}
.news-item a:hover {
    color: #0d47a1;
    padding-left: 5px;
}
.news-item-time {
	float:right;
	font-size:15px;
	color:#BBBBBB;
	padding-right:5px;
}
/* 分页样式 */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    margin: 30px 0 60px;
    flex-wrap: wrap;
}
.pagination .page {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #ddd;
    background: #fff;
    color: #333;
    font-size: 15px;
    border-radius: 4px;
    cursor: pointer;
}
.pagination .page.active {
    background: #0d47a1;
    color: #fff;
    border-color: #0d47a1;
}
.pagination .page:hover {
    background: #0d47a1;
    color: #fff;
    border-color: #0d47a1;
}

 

 @media (max-width: 768px) {
    .nav-menu {
		position: fixed;
		top: 90px;
		left: -100%;
		width: 100%;
		height: calc(100vh - 90px);
		background: #fff;
		flex-direction: column;
		justify-content: center;
		transition: left 0.3s;
    }
    .nav-menu li { margin: 18px 0; }
    .nav-menu.active { left: 0; }
    .mobile-menu-btn { display: block; }
    .page-banner { height: 260px; }
    .page-title h1 { font-size: 30px; }
     /* 移动端适配 */
    .footer {
		padding: 50px 0 20px; /* 减少移动端内边距 */
    }
    .footer-wrap {
		flex-direction: column;
		text-align: center;
		gap: 30px; /* 移动端缩小间距 */
    }
    .footer-info {
		text-align: left; /* 移动端文字靠左 */
    }
    .copyright {
		margin-top: 20px;
		padding-top: 20px;
		font-size: 14px; /* 移动端版权文字缩小 */
    }
 }