@charset "utf-8";

/* CSS Document */
* {
	margin: 0;
	padding: 0;
	outline: none;
	list-style: none;
	box-sizing: border-box;
	-webkit-tap-highlight-color: transparent;
}

html,
body {
	font-family: "PingFang SC", "Lantinghei SC", Helvetica, Arial, "Microsoft Yahei", sans-serif;
	font-size: 14px;
	text-align: left;
	color: #333;
	line-height: 28px;
}

a {
	color: #333;
	text-decoration: none;
}

img {
	display: inline-block;
	max-width: 100%;
	border: 0;
}

a {
	text-decoration: none;
	color: #323232;
}

a:hover {
	color: #2c94ff;
	text-decoration: none;
}

.clear {
	clear: both;
}

.fl {
	float: left;
}

.fr {
	float: right;
}

.clear {
	clear: both;
}

.container {
	width: auto;
	height: auto;
	min-width: 1280px;
}

.wrap {
	width: 1200px;
	margin: 0 auto;
}

.main {
	width: auto;
	padding-top: 30px;
}

.list {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
	position: relative;
	padding-bottom: 60px;
}

.list .listItem {
	background: #fff;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
	/* margin-bottom: 20px; */
}

.list .listItem>a {
	display: block;
}

.list .listItem>a img {
	width: 100%;
	height: 180px;
	display: block;
	object-fit: cover;
}

.list .listItem h3 {
	padding: 10px 20px;
}

.list .listItem h3 a {
	font-size: 16px;
	line-height: 30px;
	text-align: left;
	font-weight: bolder;
	height: 60px;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
}

/*PC端列表页样式开始*/

.breadcrumb {
	padding: 0px;
	padding-bottom: 7px;
	background: none;
	border-bottom: 2px solid #2c94ff;
	border-radius: 0;
	margin-bottom: 30px;
}

.breadcrumb a:hover {
	color: #2c94ff;
}

.breadcrumb span:last-child {
	display: none;
}

.pages {
	text-align: center;
	font-size: 14px;
	clear: both;
	display: flex;
	justify-content: center;
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
}

.pages .page-active {
	border: 1px solid #2c94ff;
	background-color: #2c94ff;
}

.pages .page {
	width: 30px !important;
	text-align: center;
	font-size: 13px;
	padding: 0;
}

.pages .page-active a {
	color: #fff;
}

.pages .page a {
	display: block;
	width: 100%;
	height: 100%;
}

.pages>li a {
	color: #333;
}

.pages>li {
	border: 1px solid #ccc;
	line-height: 30px;
	height: 30px;
	display: inline-block;
	margin: 5px 5px;
}

.tab-hot__title a {
	color: #216BA3;
}

.pages .page-previous {
	width: auto;
	padding: 0 10px;
	width: 80px !important;
}

.pages .page-next {
	width: auto;
	padding: 0 10px;
	width: 80px !important;
}

@media (max-width:767px) {
	.container {
		min-width: auto;
	}

	.main {
		padding-top: 20px;
	}

	.wrap {
		width: auto;
		padding: 0 20px;
	}

	.list {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		gap: 20px;
	}
	
	.list .listItem>a img{
		height: 120px;
	}
	
	.list .listItem h3{
		padding: 10px;
	}
	.list .listItem h3 a{
		font-size: 15px;
		line-height: 24px;
		height: 48px;
	}
}