.market_content {
	padding-top: .5rem;
	padding-bottom: 1rem;
}

.content_item {
	display: flex;
	margin: .25rem;
	flex-direction: row;
	gap: .1rem;
	padding-bottom: .6rem;
	padding-top: .4rem;
	align-items: center;
}

/* 顶部按钮 */
.top_btn {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: .4rem;
	width: 100%;
}

.btn_right {
	/* background: linear-gradient(179deg, #2DA9F1 0%, #066DCC 100%); */
	border-radius: .4rem;
	padding: .12rem .4rem;
	text-align: center;
	transition: transform 0.3s ease;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
	font-weight: bold;
	font-size: .2rem !important;
	color: #222222;
	font-style: normal;
	text-transform: none;
	border: .5px solid #066DCC;
	cursor: pointer;
}

.btn_active {
	background: linear-gradient(179deg, #2DA9F1 0%, #066DCC 100%);
	color: #FFFFFF;
}

.container {
	display: flex;
	flex-wrap: wrap;
	gap: .45rem .45rem;
	justify-content: space-around;
	width: 100%;
}

.list_item {
	background: linear-gradient(180deg, #FFFFFF 0%, #E4F5FF 100%);
	box-shadow: 0px 0px 8px 1px rgba(0, 0, 0, 0.16);
	border-radius: .1rem;
	width: calc(33.333% - .3rem);
	box-sizing: border-box;
	overflow: hidden;
	padding: .15rem .15rem .3rem .15rem;
}

.list_item:hover {
	background: linear-gradient( 180deg, #066DCC 0%, #066DCC 100%);
	color: #FFFFFF;
}

.list_item img {
	width: 100%;
	height: auto;
	display: block;
	border-radius: .1rem;
}

.list_item h2 {
	margin: 10px 0;
	text-align: center;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
	line-height: .34rem;
	padding: 0 .2rem;
	font-size: 0.18rem;
}

.list_item .line {
	height: 1px;
	background-color: #ebebeb;
	margin: 10px 0;
}

.list_item p {
	padding: 0 .1rem;
	margin: 0;
	line-height: .3rem;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
}

@media (max-width: 768px) {
	.list_item {
		width: 100%;
	}
}

@media (max-width: 1024px) {
	.list_item {
		width: calc(50% - 20px);
	}
	.content_item {
		flex-direction: column;
        margin: 0 .25rem;
	}

	.left_img,
	.right_block {
		flex: 1;
		padding: 10px;
		width: 100%;
	}
}


/* 创新成果 */

.header {
	text-align: center;
	margin-bottom: 20px;
}
.header h1 {
	margin: 0;
}
.info {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 20px;
}
.info div {
	margin: 0 10px;
}
.divider {
	border-top: 1px solid #F6F7F9;
	margin: 20px 0;
}
.content {
	margin-bottom: 20px;
}
.content img {
	max-width: 100%;
	height: auto;
	margin-bottom: 10px;
}
.contact-button {
	display: flex;
	justify-content: center;
	margin-bottom: 20px;
}
.contact-button button {
	padding: 10px 20px;
	background-color: #007BFF;
	color: white;
	border: none;
	border-radius: 5px;
	cursor: pointer;
}
.related-news {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 20px;
}
.related-news button {
	padding: 5px 10px;
	background-color: #007BFF;
	color: white;
	border: none;
	border-radius: 5px;
	cursor: pointer;
}
.related-news a {
	text-decoration: none;
	color: #007BFF;
}