.recommend {
	width: 100%;
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	grid-template-rows: repeat(2, 1fr);
	gap: 0.25rem;
	margin-top: 0.38rem;
}

.recommend .recommend_item {
	width: 100%;
	height: 3.1rem;
	border-radius: 0.1rem;
	background-color: rgba(255, 255, 255, 1);
	cursor: pointer;
}

.recommend_item img {
	width: 100%;
	height: 1.88rem;
	border-radius: 0.1rem 0.1rem 0rem 0rem;
}

.recommend .recommend_item:nth-of-type(1) {
	grid-column: 1 / 3;
	grid-row: 1 / 3;
	height: 6.45rem;
}

.recommend_item:nth-of-type(1) img {
	height: 5.2rem;
}


.recommend_item .item_title {
	width: 100%;
	height: calc(100% - 1.88rem);
	padding: 0.13rem 0.25rem;
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.recommend_item:nth-of-type(1) .item_title {
	height: calc(100% - 5.2rem);
	padding: 0.25rem;
	box-sizing: border-box;
}

.item_title .title {
	color: rgba(51, 51, 51, 1);
	font-size: 0.2rem;
	font-family: Roboto;
	line-height: 0.3rem;
	overflow: hidden;
	display: -webkit-box;
	line-clamp: 2;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	word-break: break-all;
	transition: color 0.3s;
}

.item_title .sub_title {
	color: rgba(108, 108, 108, 1);
	font-size: 0.18rem;
	font-family: Roboto;
}

.item_title .sub_title {
	width: 100%;
	display: flex;
	justify-content: space-between;
}

.recommend_item:nth-of-type(1) .sub_title {
	justify-content: start;
}

.recommend_item:nth-of-type(1) .sub_title span:nth-of-type(1) {
	position: relative;
	margin-right: 0.2rem;
}

.recommend_item:nth-of-type(1) .sub_title span:nth-of-type(1)::after {
	content: '';
	position: absolute;
	width: 0.02rem;
	height: 0.2rem;
	background-color: rgba(108, 108, 108, 1);
	right: -0.1rem;
	top: 0;
}

.recommend_item:hover .title {
	color: rgba(91, 157, 175, 1);
}

.separate {
	width: 100%;
	height: 1.88rem;
	border-radius: 0.1rem;
	margin: 0.38rem 0;
	background-image: url('../access/separate.png');
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 0.25rem;
	box-sizing: border-box;
}

.separate .separate_title {
	color: rgba(108, 108, 108, 1);
	font-size: 0.45rem;
	font-family: SourceHanSansSC-regular;
}

.separate .separate_button {
	width: 1.88rem;
	height: 0.63rem;
	line-height: 0.63rem;
	border-radius: 0.1rem;
	background-color: rgba(91, 157, 175, 1);
	color: rgba(255, 255, 255, 1);
	font-size: 0.2rem;
	text-align: center;
	font-family: Roboto;
	cursor: pointer;
}

.separate div {
	width: 1.88rem;
}

.chunk {
	width: 100%;
	display: flex;
	align-items: start;
	justify-content: space-between;
}

.chunk.two .part {
	width: calc(100% / 2 - 0.15rem);
	margin-bottom: 0.38rem;
}

.chunk.three .part {
	width: calc(100% / 3 - 0.25rem);
}

.part {
	border-radius: 0rem 0rem 0.1rem 0.1rem;
	background-color: rgba(255, 255, 255, 1);
	border-top: 0.04rem solid rgba(91, 157, 175, 1);
}

.part .part_header {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.part_header .header_left {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.header_left .header_tab {
	width: 1.88rem;
	height: 0.53rem;
	line-height: 0.53rem;
	background-color: rgba(233, 240, 249, 1);
	color: rgba(0, 0, 0, 1);
	font-size: 0.2rem;
	text-align: center;
	font-family: Roboto;
	cursor: pointer;
}

.header_tab.active {
	background-color: rgba(91, 157, 175, 1);
	color: rgba(255, 255, 255, 1);
}

.part_header .header_right {
	color: rgba(154, 154, 154, 1);
	font-size: 0.18rem;
	font-family: SourceHanSansSC-regular;
	padding-right: 0.25rem;
	box-sizing: border-box;
	cursor: pointer;
}

.part .part_content {
	width: 100%;
	min-height: 5.5rem;
	padding: 0.25rem;
	box-sizing: border-box;
}

.part_content .part_item {
	width: 100%;
	height: 1.5rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 0.25rem;
	cursor: pointer;
}

.part_content .part_item:last-child {
	margin-bottom: 0;
}

.part_item img {
	width: 2.25rem;
	height: 1.5rem;
	border-radius: 0.1rem;
	margin-right: 0.19rem;
}

.part_item .item_content {
	width: calc(100% - 2.25rem - 0.19rem);
	height: 1.5rem;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.item_content .item_title {
	color: #000;font-weight: bold;
	font-size: 0.2rem;
	font-family: SourceHanSansSC-regular;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	transition: color 0.3s;
}

.item_content .item_subtitle {
	overflow: hidden;
	display: -webkit-box;
	line-clamp: 2;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	word-break: break-all;
	color: #000;
	font-size: 0.18rem;
	text-align: justify;
	font-family: SourceHanSansSC-regular;
	line-height: 0.25rem;
}

.item_content .item_time {
	color: rgba(187, 187, 187, 1);
	font-size: 0.18rem;
	font-family: SourceHanSansSC-regular;
}

.part_content.three .item_subtitle {
	line-clamp: 4;
	-webkit-line-clamp: 4;
}

.part_content .part_item_text {
	color: rgba(108, 108, 108, 1);
	font-size: 0.2rem;
	font-family: SourceHanSansSC-regular;
	margin-bottom: 0.19rem;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	cursor: pointer;
	transition: color 0.3s;
}

.part_content .part_item_text:last-child {
	margin-bottom: 0;
}

.part_item:hover .item_title {
	color: rgba(91, 157, 175, 1);
}

.part_item_text:hover {
	color: rgba(91, 157, 175, 1);
}

.part_imgs {
	width: 100%;
	min-height: 5.7rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0.25rem;
	box-sizing: border-box;
}

.part_imgs .part_item_img {
	width: 3.6rem;
	cursor: pointer;
}

.part_item_img img {
	width: 100%;
	height: 4.38rem;
	border-radius: 0.1rem;
	margin-bottom: 0.13rem;
	border: 0.03rem solid transparent;
	transition: border 0.3s;
}

.part_item_text .writer {
	width: 100%;
	text-align: center;
	color: rgba(108, 108, 108, 1);
	font-size: 0.2rem;
	font-family: SourceHanSansSC-regular;
	margin-bottom: 0.13rem;
	overflow: hidden;
	text-transform: ellipsis;
	white-space: nowrap;
	transition: color 0.3s;
}

.part_item_text .synopsis {
	width: 100%;
	text-align: center;
	color: rgba(154, 154, 154, 1);
	font-size: 0.18rem;
	font-family: SourceHanSansSC-regular;
	overflow: hidden;
	display: -webkit-box;
	line-clamp: 2;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	word-break: break-all;
	line-height: 0.2rem;
}

.part_item_img:hover img {
	border: 0.03rem solid rgba(91, 157, 175, 1);
}

.part_item_img:hover .writer {
	color: rgba(91, 157, 175, 1);
}

.spacing {
	margin-top: 0.38rem;
}

.part_item_four {
	width: 100%;
	min-height: 3.5rem;
	display: flex;
	justify-content: space-between;
	padding: 0.25rem;
	box-sizing: border-box;
}

.part_item_four .part_item {
	width: 2.09rem;
	cursor: pointer;
}

.part_item_four .part_item img {
	width: 2.09rem;
	height: 2.54rem;
	border-radius: 0.1rem;
	border: 0.03rem solid transparent;
	margin-bottom: 0.13rem;
	transition: border 0.3s;
}

.part_item_four .four_title {
	width: 100%;
	text-align: center;
	color: rgba(108, 108, 108, 1);
	font-size: 0.2rem;
	font-family: SourceHanSansSC-regular;
	margin-bottom: 0.13rem;
	overflow: hidden;
	text-transform: ellipsis;
	white-space: nowrap;
	transition: color 0.3s;
}

.part_item_four .four_subtitle {
	width: 100%;
	color: rgba(154, 154, 154, 1);
	font-size: 0.16rem;
	text-align: center;
	font-family: SourceHanSansSC-regular;
	overflow: hidden;
	display: -webkit-box;
	line-clamp: 2;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	word-break: break-all;
	line-height: 0.2rem;
}


.part_item_four .part_item:hover img {
	border: 0.03rem solid rgba(91, 157, 175, 1);
}

.part_item_four .part_item:hover .four_title {
	color: rgba(91, 157, 175, 1);
}

.part_item_three {
	width: 100%;
	min-height: 3.95rem;
	display: flex;
	justify-content: space-between;
	padding: 0.25rem;
	box-sizing: border-box;
}

.part_item_three .part_item {
	width: 2.88rem;
	cursor: pointer;
}

.part_item_three .part_item img {
	width: 2.88rem;
	height: 2.48rem;
	border-radius: 0.1rem;
	border: 0.03rem solid transparent;
	margin-bottom: 0.13rem;
	transition: border 0.3s;
}

.part_item_three .part_item .three_title {
	width: 100%;
	color: rgba(108, 108, 108, 1);
	font-size: 0.2rem;
	text-align: center;
	font-family: SourceHanSansSC-regular;
	overflow: hidden;
	display: -webkit-box;
	line-clamp: 2;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	word-break: break-all;
	line-height: 0.25rem;
	margin-bottom: 0.11rem;
}

.part_item_three .part_item .three_time {
	width: 100%;
	text-align: center;
	color: rgba(108, 108, 108, 1);
	font-size: 0.16rem;
	font-family: SourceHanSansSC-regular;
}

.part_item_three .part_item:hover img {
	border: 0.03rem solid rgba(91, 157, 175, 1);
}

.part_item_three .part_item:hover .three_title {
	color: rgba(91, 157, 175, 1);
}

.Friendship_link {
	width: 100%;
	margin-top: 0.38rem;
	height: 1.88rem;
	border-radius: 0.1rem;
	background-color: rgba(255, 255, 255, 1);
	padding: 0.31rem 0.25rem;
	box-sizing: border-box;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.Friendship_link img {
	width: 0.75rem;
	height: 1.25rem;
	margin-right: 0.25rem;
}

.Friendship_link .links {
	width: calc(100% - 0.75rem - 0.25rem);
	height: 100%;
	display: grid;
	grid-template-columns: repeat(10, 1fr);
	grid-template-rows: repeat(3, 1fr);
	gap: 0.25rem;
}

.links a {
	width: 100%;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	color: rgba(51, 51, 51, 1);
	font-size: 0.18rem;
	font-family: SourceHanSansSC-regular;
}

.item_swiper {
	width: 100%;
	height: 6.45rem;
}

.recommend_swiper {
	width: 100%;
	height: 6.45rem;
}

.recommend_swiper img {
	width: 100%;
	height: 5.2rem;
}

.swiper {
	--swiper-theme-color: #dddddd;
	--swiper-pagination-color: #333333;
}

.swiper-pagination {
	width: 100%;
	bottom: 0;
}
