.navbar {
	background-color: rgba(0, 0, 0, 0.3); /* 30%不透明度的黑色 */
	height: 64px;
	margin-top: -64px;
}

.nav-links {
	max-width: 1280px;
	height: 100%;
	list-style: none;
	margin: 0 auto;
	padding: 0;
	display: flex;
	justify-content: flex-start;
	align-items: center;
}

.nav-links li {
	width: 162px;
	height: 100%;
}

.nav-links a {
	font-size: 24px;
	line-height: 100%;
	color: #fefefe;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	text-decoration: none;
	text-align: center;
	font-family: Source Han Sans CN;
}
.nav-links li.active a {
	background: linear-gradient(90deg, #cba05e 0%, #efc47f 93%);
	color: #000000;
}

.buscontent {
	padding-top: 30px;
}

.article-list {
	max-width: 1350px;
	margin: 0 auto;
}

.article-box {
	height: 393px;
	background-image: url('/webfile//static/images/背景logo.png');
	background-size: cover;
	background-position: center;
	margin-top: 10px;
	display: flex;
	padding: 21px;
	position: relative;
	overflow: hidden;
}

.article-info {
	padding: 50px;
}

.article-title {
	font-size: 32px;
	font-weight: 500;
	color: #010101;
	line-height: 44px;
	margin-bottom: 25px;
	font-family: Source Han Sans CN;
	display: flex;
	align-items: center;
}

.title-icon {
	margin-right: 20px;
}

.article-desc {
	font-size: 20px;
	font-family: Source Han Sans CN;
	font-weight: 400;
	color: #010101;
	line-height: 44px;
	overflow: hidden;
    -webkit-line-clamp: 4;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
}

.item-overlay {
	position: absolute;
    	bottom: 6.5%;
    	width: 1307px;
    	height: 0;
    	opacity: 0;
    	background-color: rgba(0, 0, 0, 0.7);
    	transition: opacity 1s ease-out, height 0.8s ease-in-out;
    	display: flex;
    	color: #ffffff;
    	font-size: 28px;
    	padding-top: 20px;
    	padding-left: 25px;
    	padding-right: 25px
}

.article-box:hover .item-overlay {
	opacity: 1;
	bottom: 6.5%;
	height: 346px;
}

