.ny-news {
}
.header-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-bottom: 20px;
	margin: 60px 0;
	flex-wrap: wrap;
	gap: 1rem;
	border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}
.header-left {
	display: flex;
	align-items: first baseline;
	gap: 20px;
}
.page-title {
	font-size: 40px;
	font-weight: 500;
	color: #222;
	flex-shrink: 0;
	font-family: Noto Serif SC, Noto Serif SC;
}
.page-title a {
	color: #222;
}
.page-title a:hover {
	color: #666;
}
.header-search {
	position: relative;
	width: 400px;
	flex-shrink: 0;
}
.header-search input {
	width: 100%;
	padding: 17px 40px 17px 1rem;
	border: 1px solid #eaeaea;
	border-radius: 4px;
	font-size: 1rem;
	outline: none;
	color: #565555;
	background: rgba(0, 0, 0, 0.04);
	transition: border-color 0.3s;
}
.header-search input:focus {
	border-color: #ccc;
	background-color: #fff;
}
.header-search button {
	position: absolute;
	right: 12px;
	top: 50%;
	transform: translateY(-50%);
	background: none;
	border: none;
	cursor: pointer;
	color: #777;
	display: flex;
	align-items: center;
}
.body-row {
	display: flex;
	gap: 96px;
}
.main-content {
	flex: 1;
}
.news-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap:80px 24px;
}
.news-item {
	display: flex;
	flex-direction: column;
}
.news-img-wrapper {
	width: 100%;
	height:260px;
	overflow: hidden;
	border-radius: 8px;
	margin-bottom: 15px;
}
.news-img-wrapper img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}
.news-item:hover .news-img-wrapper img {
	transform: scale(1.05);
}
.news-date {
	font-size: 12px;
	color: #888888;
	margin-bottom: 12px;
}
.news-title {
	font-size: 18px;
	font-weight: 500;
	line-height: 1.5;
	margin-bottom: 20px;
	color: #222;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.news-item:hover .news-title {
	color:#6B5E43
}
.read-more {
	font-size: 12px;
	color: #222;
	display: inline-flex;
	align-items: center;
	margin-top: auto;
	padding-bottom: 4px;
	width: fit-content;
	transition: opacity 0.3s;
	padding-right:20px;
	background:url(../images/icon_go.svg) no-repeat right center;
	background-size:1rem 1rem;
}
.news-item:hover .read-more {
	opacity: 0.6;
}
/* 右侧边栏 */
        .sidebar {
	width: 400px;
	flex-shrink: 0;
}
.sidebar-title {
	font-size: 28px;
	font-weight: 500;
	margin-bottom: 33px;
	color: #222222;
	font-family: Noto Serif SC, Noto Serif SC;
}
.sidebar-list li {
	margin-bottom: 24px;
	padding-bottom: 24px;
	border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}
.sidebar-list li:last-child {
	border-bottom: none;
}
.sidebar-list .list-date {
	margin-top:1rem;
	font-size: 14px;
	color: #888888;
}
.sidebar-list .list-title {
	font-size: 18px;
	font-weight: 500;
	line-height: 1.5;
	color: #222222;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.sidebar-list li:hover .list-title {
	color:#6B5E43
}
.header-divider {
	font-size: 1rem;
	color: #888888;
	font-weight: 300;
}
.header-sub {
	font-size: 1rem;
	font-weight: 400;
	color: #888888;
}
.article-content h2 {
	font-size: 40px;
	font-weight: 500;
	line-height: 1.4;
	color: #000000;
	margin-bottom: 1rem;
}
.article-date {
	font-size: 14px;
	color: #888888;
	margin-bottom: 32px;
}
.article-content, .article-content p {
	font-size: .8rem;
	color: rgba(0, 0, 0, 0.64);
	line-height: 1.8;
	margin-bottom: 1rem;
}
.article-content img{ max-width:100%; height:auto !important;}
 @media (max-width: 900px) {
 .body-row {
 flex-direction: column;
 gap: 40px;
}
 .sidebar {
 width: 100%;
}
 .header-row {
 flex-direction: column;
 align-items: stretch;
 margin:30px 0;
}
 .header-search {
 width: 100%;
}
}
 @media (max-width: 768px) {
 .news-grid {
 grid-template-columns: 1fr;
}
.sidebar{ display:none}
 .page-title {
 font-size: 1.5rem;
}
 .article-content h2 {
 font-size: 1.2rem
}
.news-title {
	font-size: 1rem;

}
}
