.zzc {
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, .2);
	position: fixed;
	left: 0;
	top: 0;
	z-index: 10;
}

.banner {
	width: 100%;
	margin-top: 131px;
	display: block;
}

.banner_pc {
	display: none;
}

.tab_content {
	width: 100%;
	background: #EEEEEE;
	display: flex;
	align-items: center;
	justify-content: center;
}

.tab_list {
	max-width: 1300px;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.tab_box {
	padding: 30px 25px;
	font-weight: 400;
	font-size: 20px;
	position: relative;
	cursor: pointer;
	overflow: hidden;
	transition: .3s linear;
	/* transition: .5s linear; */
}

.tab_box>a {
	color: #484848;
	text-decoration: none;
}

.bottom_line {
	position: absolute;
	width: 100%;
	height: 2px;
	background-color: #E71A1E;
	box-shadow: 0 0 5px #E71A1E;
	bottom: 0;
	left: -100%;
	/* display: none; */
	transition: .3s linear;
	text-decoration: none;
}

.bottom_lines {
	position: absolute;
	width: 100%;
	height: 2px;
	background-color: #E71A1E;
	box-shadow: 0 0 5px #E71A1E;
	bottom: 0;
	left: 0;
}

.tab_box:hover {
	text-shadow: 0 0 15px #a1a1a1;
}

.tab_box:hover>.bottom_line {
	left: 0;
}

.product_content {
	max-width: 1200px;
	padding-top: 60px;
	margin: 0 auto;
}

.product_list {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: flex-start;
}

.product_box {
	width: calc(29% - 30px);
	/* min-height: 10% !important; */
	min-height: 380px;
	padding: 0 15px;
	margin-right: 6.5%;
	background: #EEEEEE;
	border-radius: 10px;
	margin-bottom: 60px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	transition: all .2s linear;
	cursor: pointer;
	position: relative;
}

.product_img {
	width: 90%;
	height: 280px;
	margin: 15px auto;
}

.product_img>img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	transition: all .2s linear;
}

.product_box:hover {
	box-shadow: 0 0 15px #cdcdcd;
}


.bottomNames {
	width: 90%;
	margin-top: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	bottom: 30px;
}

.bottomNames>span {
	display: block;
	max-width: 90%;
	font-weight: 500;
	font-size: 1.2em;
	color: #121212;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.bottomNames .imgBoxs {
	min-width: 33px;
	height: 33px;
	background: #E71A1E;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-left: 10px;
}

.pagination {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center; padding-bottom:50px;
}

.pagination>a {
	margin: 0 10px;
	text-decoration: none;
	display: inline-block;
	width: 40px;
	height: 40px;
	font-weight: 400;
	font-size: 14px;
	color: #121212;
	border-radius: 3px 3px 3px 3px;
	border: 1px solid #949494;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: .3s linear;
}

.pagination>a:hover {
	color: #fff;
	border: 1px solid rgba(231, 26, 30, 1);
	background-color: rgba(231, 26, 30, 1);
	box-shadow: 0 0 3px rgba(231, 26, 30, 1);
}

.pagination .page_prev {
	font-size: 18px;
}

.pagination .page_next {
	font-size: 18px;
}

.pagination .active {
	margin: 0 10px;
	text-decoration: none;
	display: inline-block;
	width: 40px;
	height: 40px;
	font-weight: 400;
	font-size: 14px;
	color: #fff;
	border-radius: 3px 3px 3px 3px;
	border: 1px solid rgba(231, 26, 30, 1);
	background-color: rgba(231, 26, 30, 1);
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 0 3px rgba(231, 26, 30, 1);
}

@media only screen and (max-width: 1360px) {

	.tab_box {
		padding: 25px 20px;
	}

}

@media only screen and (max-width: 1100px) {
	.tab_box>a {
		font-size: 18px;
	}
}

@media only screen and (max-width: 1024px) {
	.tab_box>a {
		font-size: 16px;
	}

	/* .product_box {
		height: 380px;
	} */

	.tab_content {
		overflow-x: auto;
		display: flow-root;
		scrollbar-width: none;
	}

	.tab_list {
		max-width: unset;
		width: 150%;
	}

	.tab_box {
		padding: 25px 45px;
		font-size: 28px;
		text-align: center;
	}

	.product_box {
		min-height: 350px;
	}

	.product_img {
		width: 90%;
		height: 240px;
		margin: 15px auto;
	}

	.bottomNames>span {
		display: block;
		max-width: 90%;
		font-weight: 500;
		font-size: 18px;
		color: #121212;
		white-space: nowrap;
		overflow: hidden;
		text-overflow: ellipsis;
	}
}

@media only screen and (max-width: 900px) {


	.tab_box {
		padding: 25px 25px;
		font-size: 28px;
		text-align: center;
	}
}

@media only screen and (max-width: 768px) {
	.banner {
		display: none;
	}

	.banner_pc {
		display: block;
		margin-top: 0;
		max-width: 100% !important;
		font-size: 0;
	}

	.banner_pc>img {
		max-width: 100% !important;
	}

	/* .product_box {
		height: 300px;
	} */

	.bottomNames>span {
		font-size: .8rem;
	}

	.bottomNames .imgBoxs {
		min-width: unset;
		width: 23px !important;
		height: 23px;
	}

	.pagination {
		margin-bottom: 50px;
	}




	.product_box {
		min-height: 300px;
	}

	.product_img {
		width: 90%;
		height: 200px;
		margin: 15px auto;
	}

	.bottomNames>span {
		display: block;
		max-width: 90%;
		font-weight: 500;
		font-size: 18px;
		color: #121212;
		white-space: nowrap;
		overflow: hidden;
		text-overflow: ellipsis;
	}

	.bottomNames>.imgBoxs{
		min-width: 23px;
	}



}

@media only screen and (max-width: 685px) {
	.tab_box {
		min-width: 10%;
		padding: 15px 25px;
		font-size: 28px;
		/* text-align: center; */
		text-wrap: nowrap;
	}

	.product_box {
		/* height: 300px; */
		width: calc(31% - 30px) !important;
		margin-right: 3.5%;
	}

 

	.bottomNames .imgBoxs { 
		min-width: 23px !important;
		height: 23px;
	}

	.pagination {
		margin-bottom: 50px;
	}

	.product_list>.product_box {
		margin-bottom: 30px;
	}

	.product_box {
		width: 25%;
	}

	.product_box {
		min-height: 260px;
	}

	.product_img {
		width: 90%;
		height: 160px;
		margin: 15px auto;
	}

	.bottomNames>span {
		font-size: 14px;
	}
 

}

@media only screen and (max-width: 567px) {

	.tab_box {
		min-width: 15%;
	}

	.product_box {
		width: 40%; 
	}

	.product_box {
		min-height: 190px;
	}

	.product_img {
		width: 90%;
		height: 100px;
		margin: 15px auto;
	}

	.bottomNames>span {
		font-size: 10px;
	}
	.bottomNames>.imgBoxs{
		max-width: 20px !important;
		max-height: 20px;
	}
}

@media only screen and (max-width: 465px) {

	.product_box {
		width: 40%;
		/* height: 240px; */
	}

	.bottomNames>span {
		font-size: 12px;
	}
}

@media only screen and (max-width: 400px) {}

@media only screen and (max-width: 430px) {

	.product_box {
		min-height: 160px;
	}

	.product_img {
		width: 90%;
		height: 70px;
		margin: 15px auto;
	}

	.bottomNames>span {
		font-size: 10px;
	}
	.bottomNames>.imgBoxs{
		/* min-width: unset !important; */
		min-width: 18px !important;
		max-height: 18px;
	}
}

@media only screen and (max-width: 375px) {

	.product_box {
		width: 40%;
		/* height: 180px !important; */
		margin-bottom: 20px !important;
	}

	.bottomNames>span {
		font-size: 10px;
	}

	.product_content {
		padding-top: 20px;
	}

}