.tb-box {
	width: auto;
	height: auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-radius: 15px;
	padding: 5px;
	border: 1px solid #ccc;
	/* box-shadow: 0 6px 12px 0 rgba(0, 0, 0, .24); */
	background-color: #fff;
	margin: 0 20px 20px 0;
}

.tb-box img {
	width: 70px;
	height: 70px;
	display: block;
	border-radius: 10px;
	margin-right: 10px;
}

.tb-box p {
	/* width: 75px; */
	line-height: 1.5;
	color: #111;
	font-size: 18px;
	display: inline-block;
	padding: 5px 10px;
	white-space: nowrap;
	text-transform: capitalize;
}

.m-title {
	width: 100%;
	border-bottom: 1px solid #ccc;
	margin: 20px 0;
	color: #000;
	font-size: 25px;
	padding: 15px 0;
	font-weight: 600;
	text-transform: capitalize;
}

.list {
	width: 100%;
	height: auto;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	flex-wrap: wrap;
}

.list .cl-box {
	width: 12%;
	height: auto;
	margin: 0 20px 20px 0;
	padding: 3px;
	background-color: #fff;
}

.list1 {
	width: 100%;
	margin: 20px auto;
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
}

.list1 .cl-box {
	width: 13%;
	height: auto;
	margin: 0 18px 20px 0;
	padding: 4px;
	background-color: #fff;
}

.list1 .cl-box img {
	height: 130px;
}



@media (max-width:690px) {

	.content-box {
		width: 90% !important;
		grid-template-columns: repeat(auto-fill, minmax(80px, 1fr)) !important;
		grid-auto-rows: minmax(80px, 80px) !important;
	}

	.type-box {
		width: 95%;
		height: auto;
		margin: 20px auto;
		display: flex;
		justify-content: space-between;
		align-items: center;
		overflow-y: auto;

	}

	.tb-box {
		width: auto;
		height: auto;
		display: flex;
		justify-content: center;
		align-items: center;
		border-radius: 15px;
		padding: 5px;
		/* box-shadow: 0 6px 12px 0 rgba(0, 0, 0, .24); */
		background-color: #fff;
		margin: 0 10px 20px 0;
		text-align: center;
	}

	.tb-box p {
		width: 100%;
		line-height: 1.5;
		color: #000;
		font-size: 15px;
		text-transform: capitalize;
	}

	.list1 .cl-box {
		width: 30%;
		margin: 0 10px 20px 0;
	}

	.list1 .cl-box:nth-of-type(3n) {
		margin-right: 0px;
	}

	/* .list1 .cl-box:nth-of-type(7n) {
		margin-right: 10px;
	} */
	.list1 .cl-box img {
		height: 100px;
	}
}

@media (min-width:690px) {

	.cl-box:nth-last-of-type(5) {
		grid-column-end: span 2;
		grid-row-end: span 1 !important;
	}

	.type-box {
		width: 100%;
		height: auto;
		margin: 20px auto;
		display: flex;
		justify-content: space-between;
		align-items: center;
		overflow-y: auto;

	}

	/* 整个滚动条 */
	.type-box::-webkit-scrollbar {
		/* 对应纵向滚动条的宽度 */
		width: 10px;
		/* 对应横向滚动条的宽度 */
		height: 10px;
	}

	/* 滚动条上的滚动滑块 */
	.type-box::-webkit-scrollbar-thumb {
		background-color: gray;
		border-radius: 32px;
	}

	/* 滚动条轨道 */
	.type-box::-webkit-scrollbar-track {
		background-color: transparent;
		border-radius: 32px;
	}

	.list1 .cl-box:nth-of-type(7n) {
		margin-right: 0px;
	}

}

.content-box {
	width: 100%;
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
	grid-gap: 20px;
	grid-auto-rows: minmax(100px, 100px);
	grid-auto-flow: dense;
	padding: 10px;
	margin: 10px auto;
}

.cl-box {
	position: relative;
	overflow: hidden;
	display: block;
	box-sizing: border-box;
	box-shadow: 0 6px 12px 0 rgba(0, 0, 0, .24);
	border-radius: 5px;
	background-color: #fff;
	align-content: flex-end;
}

.cl-box img {
	width: 100%;
	/* height: 100%; */
	display: block;
	border-radius: 5px 5px 0 0;
	object-fit: cover;
}

.ct-text {
	width: 98%;
	text-align: center;
	transition: all linear 0.3s;
	color: #000;
	padding: 5px 1%;
	line-height: 1.5;
	font-size: 16px;
	text-transform: capitalize;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;

}

.content-box .cl-box .ct-text {
	display: none;
}

.content-box .cl-box img {
	height: 100%;
}

.cl-box:nth-of-type(8n) {
	grid-column-end: span 2;
	grid-row-end: span 2;
}