.series-index {
	padding-bottom: 20px;
}

.series-index .series-name {
	font-size: 40px;
	text-align: center;
	padding: 50px 0;
}

.series-index .products {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	flex-wrap: wrap;
	width: 100%;
	margin: 0 auto;
	height: 100%;
}

.series-index .products .item {
	color: #000;
	background-color: #fff;
	width: calc(25% - 10px);
	margin: 5px;
	padding: 10px;
	flex-shrink: 0;
	border-radius: 5px;
	overflow: hidden;
	box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;

	transition: opacity 0.3s;
}

.series-index .products .item:hover {
	opacity: 0.7;
}

.series-index .products .item .img {
	width: 100%;
	padding-top: 100%;
	position: relative;
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.series-index .products .item .img img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.series-index .products .item .name {
	width: 100%;
	padding: 8px 4px;
	font-size: 16px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.series-index .products .item .name .icon-right {
	flex-shrink: 0;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	border: 1px solid rgba(0, 0, 0, 0.1);
	overflow: hidden;

	transition: background-color 0.3s;
}

.series-index .products .item:hover .name .icon-right {
	background-color: #002fa5;
	color: #fff;
}

.series-index .products .item .name .icon-right .icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;

	transition: transform 0.3s;
}

.series-index .products .item:hover .name .icon-right .icon {
	transform: translateY(-100%);
}

.series-index .pagebar {
	padding: 20px 0;
	display: flex;
	justify-content: center;
}

/* 分页的样式 */
.pagination .page-item .page-link {
	color: #a0a0a0;
	background-color: transparent !important;
	border: none;
}

.page-item .page-link:focus {
	box-shadow: none;
}

.page-item.disabled .page-link {
	color: rgba(0, 0, 0, 0.2) !important;
}

.page-item.active .page-link {
	color: #002fa5 !important;
}

@media screen and (max-width: 767px) {
	.series-index .series-name {
		font-size: 30px;
		padding: 30px 0;
	}

	.series-index .products .item {
		width: calc(50% - 10px)
	}
}