/* 幻灯片 */
	.search-banner{
		width: 100%;
	}
	
	.search-banner img{
		width: 100%;
		height: 100%;
	}
	
	.search-banner img.mobile-images{
		display: none;
	}
	
	.search-banner img.computer-images{
		display: block;
	}

/* 搜索内容 */
	.search-wrapper{
		width: 100%;
		padding: 80px 0% 100px;
	}
	
	.search-wrapper .content-wrapper{
		width: 100%;
		display: grid;
		grid-gap: 25px;
		grid-template-columns: repeat(2, 1fr);
	}
	
	.search-wrapper .content-wrapper .item{
		gap: 30px;
		padding: 20px;
		display: flex;
		border-radius: 5px;
		align-items: flex-end;
		flex-direction: column;
		color: rgba(0, 0, 5, 1);
		justify-content: flex-start;
		background-color: rgba(255, 255, 255, 1);
		box-shadow: 0 0 20px 10px rgba(23, 110, 255, 0.07);
	}
	
	.search-wrapper .content-wrapper .item .content{
		gap: 5px;
		width: 100%;
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		justify-content: flex-start;
	}
	
	.search-wrapper .content-wrapper .item .content .name{
		width: 100%;
		display: flex;
		align-items: flex-start;
		justify-content: space-between;
	}
	
	.search-wrapper .content-wrapper .item .content .name p:first-child{
		width: 80%;
		font-size: 20px;
		overflow: hidden;
		line-height: 30px;
		display: -webkit-box;
		-webkit-line-clamp: 2;
		color: rgba(0, 0, 5, 1);
		content-overflow: ellipsis;
		-webkit-box-orient: vertical;
		font-family: "SourceHanSansCN-Medium";
	}
	
	.search-wrapper .content-wrapper .item .content .name p:last-child{
		width: 20%;
		display: flex;
		font-size: 14px;
		line-height: 30px;
		align-items: center;
		justify-content: flex-end;
		color: rgba(101, 101, 101, 1);
		font-family: "SourceHanSansCN-Light";
	}
	
	.search-wrapper .content-wrapper .item .content .category{
		gap: 5px;
		width: 100%;
		display: flex;
		align-items: flex-start;
		justify-content: flex-start;
	}
	
	.search-wrapper .content-wrapper .item .content .category p{
		font-size: 18px;
		line-height: 25px;
		color: rgba(25, 25, 25, 1);
		font-family: "SourceHanSansCN-Light";
	}

	/* 搜索内容-按钮 */
	.search-wrapper .content-wrapper .item .button{
		width: 140px;
		display: flex;
		font-size: 14px;
		border-radius: 5px;
		align-items: center;
		justify-content: center;
		color: rgba(0, 0, 0, 1);
		height: calc(45px - 2px);
		font-family: "SourceHanSansCN-Light";
		border: 1px solid rgba(119, 119, 119, 1);
	}

	/* 无数据 */
	.search-wrapper .on-data{
		width: 100%;
		font-size: 18px;
		line-height: 70px;
		text-align: center;
		border-radius: 5px;
		color: rgba(175, 185, 191, 1);
		background-color: rgba(255, 255, 255, 1);
	}

/* 响应 1680 */
@media screen and (max-width: 1680px) {}

/* 响应 1440 */
@media screen and (max-width: 1440px) {
/* 幻灯片 */

/* 搜索内容 */
	.search-wrapper{
		padding: 75px 0% 85px;
	}
	
	.search-wrapper .content-wrapper{
		grid-gap: 20px;
	}
	
	.search-wrapper .content-wrapper .item{
		gap: 25px;
		padding: 15px;
	}
	
	.search-wrapper .content-wrapper .item .content .name p:first-child{
		font-size: 18px;
		line-height: 28px;
	}
	
	.search-wrapper .content-wrapper .item .content .name p:last-child{
		font-size: 12px;
		line-height: 28px;
	}
	
	.search-wrapper .content-wrapper .item .content .category p{
		font-size: 14px;
		line-height: 20px;
	}

	/* 搜索内容-按钮 */
	.search-wrapper .content-wrapper .item .button{
		width: 120px;
		font-size: 12px;
		height: calc(40px - 2px);
	}

	/* 无数据 */
	.search-wrapper .on-data{
		font-size: 14px;
		line-height: 45px;
	}
}

/* 响应 1280 */
@media screen and (max-width: 1280px) {}

/* 响应 1000 */
@media screen and (max-width: 1000px) {}

/* 响应 1000 */
@media screen and (max-width: 750px) {}