@charset "utf-8";

/*新闻列表 css*/
.con_box_history {
	float: left;
	width: 100%;
	background-size: cover;
	background-attachment: fixed;
	overflow: hidden;
	background: #ffffff;
	border-top: 0.2rem solid rgb(240, 240, 240);

}

.con_box_history .bar {
	float: left;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: var(--bar-height);
	font-size: var(--title-font-size);
	padding-top: 0.2rem;
	padding-bottom: 0.1rem;
	font-weight: bold;
	text-align: center;
	position: relative;
}

.con_box_history .bar img {
	width: auto;
	height: var(--bar-img-height);
}

.con_box_history .bar .left {
	position: absolute;
	left: 0;
}

.con_box_history .bar .right {
	position: absolute;
	right: 0;
}

.con_box_history .history_content_card {
	float: left;
	width: 100%;
	border-top: 0.0rem solid rgb(240, 240, 240);
}

.con_box_history .history_content_card .history_content {
	float: left;
	width: 100%;
	margin: 0 auto;
	padding-top: 0.1rem;
	margin-bottom: 0.1rem;
	background: #ffffff;
	border-radius: 0.01rem;
}

.year_history_card {
	float: left;
	width: 100%;
	padding-top: 0.2rem;
}

.year_history_card .year_history {
	float: left;
	display: block;
	width: calc(100% - 0.4rem);
	height: var(--sub-height);
	line-height: var(--sub-height);
	font-size: var(--bar-font-size);
	border: 0.02rem solid rgb(245, 247, 249);
	background: rgb(245, 247, 249);
	color: #333;
	margin-left: 0.2rem;
	text-align: left;
	text-indent: 0.2rem;
	border-radius: 0.06rem;
}

.year_card_item {
	float: left;
	width: calc(100% - 0.4rem);
	height: var(--border-item-height);
	margin: 0.2rem;
	font-size: var(--font-size);
}

.year_history_card .year_card_item .year_item_left {
	float: left;
	height: var(--border-item-height);
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
}

.year_history_card .year_card_item .year_item_left .item_text {
	width: 1.4rem;
	height: calc(var(--border-item-height) - 0.4rem);
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 0.06rem;
	border: 0.01rem solid #dddddd;
}

.year_history_card .year_card_item .year_item_center {
	float: left;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 0.4rem;
	height: var(--border-item-height);
	text-align: center;
	margin-left: 0.1rem;
}

.year_history_card .year_card_item .year_item_label {
	margin-left: 0.1rem;
	margin-right: 0.1rem;
	margin-top: 0px;
	width: 0.2rem;
	height: 0.2rem;
	background: rgb(255, 137, 1);
	border-radius: 0.5rem;
}


.year_history_card .year_card_item .year_item_right {
	float: left;
	width: calc(100% - 2.1rem);
	height: var(--border-item-height);
	display: flex;
	align-items: center;
}


.year_history_card .year_card_arrow_left {
	float: left;
	display: flex;
	align-items: center;
	width: auto;
	margin-left: 0.5rem;
	height: calc(var(--border-item-height) - 0.4rem);
	color: #000000;
	background: rgb(255, 255, 255);
	position: relative;
	border-radius: 0.1rem;
	text-align: left;
	font-size: var(--font-size);
	padding: 0.2rem 0.2rem;
	border: 0.02rem solid #dddddd;
}



.year_history_card .year_card_arrow_left::before {
	content: '';
	position: absolute;
	width: 0;
	height: 0;
	top: calc(var(--border-item-height)/2 - var(--border-arrow-width));
	left: -0.46rem;
	border-top: var(--border-arrow-width) solid transparent;
	border-bottom: var(--border-arrow-width) solid transparent;
	border-right: 0.46rem solid #dddddd;
}

.year_history_card .year_card_arrow_left::after {
	content: '';
	position: absolute;
	width: 0;
	height: 0;
	top: calc(var(--border-item-height)/2 - var(--border-arrow-width));
	left: -0.42rem;
	border-top: var(--border-arrow-width) solid transparent;
	border-bottom: var(--border-arrow-width) solid transparent;
	border-right: 0.46rem solid #fff;
}