#main {
	width: 100%;
	height: calc(100vh - 60px);
	overflow: auto;
	/* max-width: 1200px; */
	/* padding: 0 2.5vw; */
	/* padding: 60px 2.5vw 10px; */
	/* margin: 0 auto; */
	/* margin-top: 60px; */
}

.type-box {
	max-width: 1200px;
	margin: 0 auto;
}

.type {
	padding: 10px 0;
	display: grid;
}

.type-top {
	height: 40px;
	padding: 0 1%;
}

.type-link {
	display: inline-block;
	color: var(--black-5-color);
	font-size: 26px;
	font-weight: 700;
	padding: 3px 0;
	border-radius: 6px;
	/* box-shadow: 0 0 10px rgba(0,0,0,.1); */
	/* border-bottom: 2px solid rgba(0,0,0,0); */
}

.type-link:hover {
	color: var(--theme-color);
	/* box-shadow: 0 0 10px rgba(0,0,0,.2); */
	/* border-bottom: 2px solid var(--theme-color); */
}

.icon-swich {
	display: inline-block;
	float: right;
	/* width: 126px; */
	height: 40px;
	vertical-align: middle;
	user-select: none;
}

.icon-swich a {
	position: relative;
	overflow: hidden;
	display: inline-block;
	width: 34px;
	height: 34px;
	margin: 3px 2px;
	border-radius: 6px;
	background: var(--white-f-color);
	box-shadow: 0 0 10px rgba(0, 0, 0, .1);
}

.icon-swich a:after {
	content: "";
	background: var(--theme-color);
	display: block;
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	opacity: 0;
	transition: all 0.75s ease-in-out;
	left: 0;
}

.icon-swich a:active:after {
	width: 0px;
	opacity: 1;
	transition: 0s;
}

.icon-swich a:hover {
	/* background: var(--white-e-color); */
	fill: var(--theme-color);
	box-shadow: 0 0 10px rgba(0, 0, 0, .2);
}

.icon-swich a:hover svg {
	fill: var(--theme-color);
}

.icon-swich svg {
	display: inline-block;
	fill: var(--black-5-color);
	width: 16px;
	height: 16px;
	margin: 9px;
}

.item-box {
	/* max-width: 1200px; */
	/* min-width: 570px; */
	/* display: flex;
	flex-wrap: wrap;
	flex-direction: ;
	justify-content: space-between; */
	display: grid;
	grid-template-columns: repeat(auto-fill, 16.6666%);
	justify-items: center;
}

.item {
	width: 180px;
	height: ;
	//flex: 0 0 33.33%;
	margin: 8px 0;
	padding: 0;
	display: inline-block;

}

.item-link {
	position: relative;
	width: 100%;
	display: inline-block;
	cursor: pointer;
}

.item-link:hover .item-tit,
.item-link:active .item-tit {
	color: var(--theme-color);
}

.item-link:focus .item-pic {
	box-shadow: 0 0 0 5px var(--theme-color-opacity);
}

.item-pic {
	position: relative;
	width: 180px;
	height: 240px;
	border-radius: 3px;
	object-fit: cover;
	box-shadow: 0px 0px 12px rgba(0, 0, 0, .1);
	transition: 300ms ease-in-out;
}

.item-pic:hover {
	box-shadow: 0 0 12px rgba(0, 0, 0, .2);
	filter: saturate(110%) brightness(110%);
	transform: scale(1.02);
}

.item-tit {
	color: var(--black-3-color);
	width: 100%;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.item-tit span {
	/* width: 100%; */
	/* -webkit-line-clamp: 2; */
	font-size: 14px;
	font-weight: 600;
	padding-top: 2px;
	/* white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis; */
	transition: 200ms ease-in-out;
}

@media screen and (max-width: 1200px) {
	.item-box {
		grid-template-columns: repeat(auto-fill, 16.6666%);
	}

	.item {
		width: 15vw;
	}

	.item-pic {
		width: 15vw;
		height: 20vw;
	}

	.item-tit span {
		/* width: 15vw; */
		font-size: 14px;
	}
}

@media screen and (max-width: 900px) {
	.item-box {
		grid-template-columns: repeat(auto-fill, 25%);
	}

	.item {
		width: 22.5vw;
	}

	.item-pic {
		width: 22.5vw;
		height: 30vw;
	}

	.item-tit span {
		/* width: 22.5vw; */
		font-size: 14px;
	}
}

@media screen and (max-width: 620px) {
	.item-box {
		grid-template-columns: repeat(auto-fill, 33.3333%);
	}

	.item {
		width: 30vw;
	}

	.item-pic {
		width: 30vw;
		height: 40vw;
	}

	.item-tit span {
		/* width: 30vw; */
		font-size: 13px;
	}
}
