/* 产品分类标题 */
.tabs-container {
	max-width: 1400px;
	margin: 0 auto;
	box-sizing: content-box;
}

.tabs-container a:hover {
	text-decoration: none;
}

@media screen and (max-width: 1023px) {
	.tabs-container {
		padding: 10px 10px 0;
	}

	.tabs-container .content {
		position: relative;
		display: grid;
		grid-template-columns: repeat(3, 1fr);
		column-gap: 10px;
		row-gap: 10px;
		padding-bottom: 50px;
	}

	.tabs-container .content .tab {
		font-size: 14px;
		color: #222;
		text-align: center;
		line-height: 3;
		background-color: white;
	}

	.tabs-container .content .tab.btn {
		position: absolute;
		bottom: 0;
		left: 50%;
		transform: translateX(-50%);
		color: white;
		line-height: 1;
		padding: 10px 20px;
		background-color: #2CB053;
		border-radius: 30px;
	}
}

@media screen and (min-width: 1024px) {
	.tabs-container {
		padding: 0 20px;
	}

	.tabs-container .content {
		display: flex;
		justify-content: space-between;
		align-items: center;
		padding: 1.625rem 2.25rem;
		background-color: white;
		border-radius: 1.25rem;
		transform: translateY(-50%);
	}

	.tabs-container .content .tab {
		font-size: 1rem;
		color: #222;
		line-height: 1;
		font-weight: 500;
	}

	.tabs-container .content .tab:hover {
		color: #51945E;
	}

	.tabs-container .content .tab.btn {
		color: white;
		padding: 1rem 2rem;
		background-color: #2CB053;
		border-radius: 2rem;
	}

	.tabs-container .content .tab.btn:hover {
		background-color: #1d9742;
	}
}