.block {
	padding-bottom: 50px;
	position: relative;
}
.block:nth-of-type(odd) {
	background: linear-gradient(180deg,#f0f3fa,#f8f9fc);
}
/* .even_block {
	background: linear-gradient(180deg,#f0f3fa,#f8f9fc);
} */
.block .title{
	padding-top: 35px;
	color: #17181b;
}
.block_item_container {
	width: 100%;
}
/* 列表块 */
.list_block {
	width: 100%;
	background: linear-gradient(180deg,#f8f9fc,#fff);
	border-radius: 4px;
	display: flex;
    justify-content: flex-start;
    align-items: flex-start;
	flex-wrap: wrap;
	padding-bottom: 32px;
	padding-right: 32px;
	box-shadow: var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow);
	--tw-shadow: 0px 12px 48px 0px rgba(0,33,71,.05);
    --tw-shadow-colored: 0px 12px 48px 0px var(--tw-shadow-color);
}
.list_block .block_item {
	width: 33.3%;
	padding-top: 32px;
	padding-left: 32px;
}
.list_item_header {
	margin-bottom: 10px;
}
.list_item_icon {
    display: inline-block;
}
.list_item_icon img {
	width: 36px;
	height: 36px;
}
.list_item_title {
	height: 36px;
	line-height: 36px;
	font-size: 16px;
	padding-left: 12px;
	display: inline-block;
	color: #17181b;
}
.list_item_content {
	line-height: 30px;
	color: #808082;
}

/* 卡片块 */
.card_block {
	width: 100%;
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 20px;
}
.block .pagination {
	bottom: 5px;
}
.card_item {
	background: #fff;
	box-shadow: 0 12px 48px 0 rgba(0,33,71,.05);
	border-radius: 10px;
}
.card_item_header {
	line-height: 60px;
	background: linear-gradient(319deg,#bcedff,#6d9aff 100%,#6d9aff 0);
	color: #fff;
	font-size: 16px;
	text-align: center;
	border-radius: 10px 10px 0 0;
}
.card_item_body {
	padding: 30px 20px;
}
.card_item_icon img {
	width: 45%;
	margin: auto;
	display: block;
}
.card_item_content {
	margin-top: 20px;
	line-height: 30px;
}

/* 标签页块 */
.tag_block {
	width: 100%;
}
.tag_control {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	text-align: center;
	margin-bottom: 10px;
	border-bottom: 1px solid;
	border-color: rgba(0,11,23,.06);
}
.tag_control span {
	line-height: 50px;
	display: inline-block;
	font-size: 16px;
	color: #000;
	cursor: pointer;
}
.tag_control .swiper-pagination-bullet-active {
	color: #0071ef;
	font-weight: bold;
	border-bottom: #0071ef 3px solid;
}
/* 隐藏非活动幻灯片 */
.tag_block .swiper-slide {
	opacity: 0;
	transition: opacity 0.3s;
}
/* 显示活动幻灯片 */
.tag_block .swiper-slide-active {
	opacity: 1;
}
.tag_item {
	width: 100%;
}
.tag_item img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

/* 单行块 */
.line_block{
	width: 100%;
	height: 560px;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
}
.line_block ul{
	width: 100%;
	height: 100%;
	display: flex;
}
.line_block ul li{
	width: 33.33%;
	display: flex;
	align-items:center;
	justify-content: center;
	border-right: solid 1px #fff;
	cursor: pointer;
	position: relative;
	color: #333;
}
.line_block li .line_item {
	width: 100%;
	height: 100%;
	padding: 92px 10% 0;
}
.line_block ul li:nth-child(odd) {
	background: #f0f3fa;
}
.line_block ul li:nth-child(even) {
	background: #fff;
}
.line_item img{
	width: 100%;
}
.line_item_title {
	font-size: 16px;
	font-weight: bold;
	line-height: 40px;
	height: 40px;
}
.line_item .line_item_content{
	margin: 20px 0 10px;
	text-overflow: -o-ellipsis-lastline;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 5;
	-webkit-box-orient: vertical;
}
.line_item a {
	display: block;
	width: 80px;
	height: 32px;
	border: solid 1px #777;
	text-align: center;
	color: #555;
	line-height: 30px;
	position: absolute;
	bottom: 40px;
}
.picture_block img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}
.image_text_block {
	display: flex;
	justify-content: space-between;
	align-items: stretch;
}
.image_text_block img {
	width: 50%;
	height: 100%;
	object-fit: contain;
}
.image_text_item_content {
	width: calc(50% - 30px);
	text-indent: 2em;
	font-size: 16px;
	line-height: 35px;
}
.block:nth-child(odd) .image_text_block img {
    order: 1;
}

.block:nth-child(odd) .image_text_block .image_text_item_content {
    order: 2;
}

.block:nth-child(even) .image_text_block img {
    order: 2;
}

.block:nth-child(even) .image_text_block .image_text_item_content {
    order: 1;
}


@media screen and (max-width: 1100px) {
	.block {
		padding-bottom: 20px;
	}
	.block_item_container {
		padding: 0 10px;
	}
	.list_block .block_item {
		width: 50%;
	}
	.list_item_title {
		font-size: 14px;
	}
	.card_block {
		display: flex;
		justify-content: flex-start;
		align-items: stretch;
		gap: 0;
	}
	.line_block{
		height: 440px;
	}
	.line_block li .line_item{
		padding: 20px;
	}
	.line_block{
		height: auto;
	}
	.line_block ul{
		display: block;
	}
	.line_block ul li{
		width: 100%;
		height: 156px;
		position: relative;
	}
	.line_item img{
		float: left;
		height: calc(100% - 10px);
		width: auto;
		margin-right: 10px;
	}
	.line_item .line_item_content {
		margin: 0;
		-webkit-line-clamp: 3;
	}
	.line_item a{
		position: absolute;
		right: 5px;
		bottom: 5px;
		font-size: 12px;
		border: none;
		color: #999;
	}
	.line_item_title {
		font-size: 14px;
		font-weight: bold;
		line-height: 25px;
		height: 25px;
	}
	.image_text_block {
		display: block;
	}
	.image_text_block img {
		width: 100%;
	}
	.image_text_item_content {
		width: 100%;
		margin-top: 10px;
	}
	.tag_block.swiper-wrapper {
		touch-action: none;
	}
	.tag_item {
		width: 100%;
		overflow-x: auto;
		touch-action: none;
	}
	.tag_item img {
		width: auto;
		height: 400px;
		object-fit: contain;
	}
}