.titlePlate{
	height: 60px;
	background: #fff;
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-bottom: 1px solid #ced2d4;
}

.titlePlate .titlePlate_left{
	display: flex;
	align-items: center;
}

.titlePlate .titlePlate_left_item{
	font-size: 14px;
	font-weight: 400;
	text-align: left;
	color: #222222;
	margin-right: 16px;
}

.titlePlate .titlePlate_left_item span{
	color: #C43A3A;
}

.titlePlate .titlePlate_left_item:last-child{
	margin-right: 0;
}

.titlePlate .titlePlate_right{
	padding: 0 9px;
	height: 28px;
	background: #ffffff;
	border: 0.5px solid #727272;
	border-radius: 2px;
	display: flex;
	align-items: center;
}

.titlePlate .titlePlate_right_text{
	font-size: 14px;
	font-weight: 400;
	text-align: left;
	color: #222222;
	cursor: pointer;
}

.titlePlate .titlePlate_right_text:hover{
	color: #548235;
}

.titlePlate .disabled{
	color: #909090;
	cursor: auto;
}

.titlePlate .disabled:hover{
	color: #909090;
}

.titlePlate .titlePlate_right_line{
	width: 1px;
	height: 12px;
	background: #727272;
	margin: 0 15px;
}

.cont{
	margin-top: 21px;
	width: 100%;
	height: calc(100% - 47px - 60px - 21px);
	overflow: auto;
	padding-bottom: 21px;
}

.cont .cont_thesis{
	display: flex;
	flex-direction: column;
	min-height: 560px;
}

.cont .cont_title{
	font-size: 20px;
	font-weight: bold;
	text-align: left;
	color: #222222;
}

.cont .cont_list{
	display: flex;
	margin-top: 6px;
}

.cont .cont_list:nth-child(2){
	margin-top: 16px;
}

.cont .cont_list_title{
	width: 82px;
	font-size: 16px;
	font-weight: 400;
	text-align: left;
	color: #222222;
}

.cont .cont_list_text{
	flex: 1;
	width: 0;
	display: flex;
	flex-wrap: wrap;
	margin-left: 6px;
}

.cont .cont_list_text_item{
	font-size: 16px;
	font-weight: 400;
	text-align: left;
	color: #727272;
	margin-right: 20px;
	margin-bottom: 10px;
}

.cont .cont_abstract_title{
	font-size: 18px;
	font-weight: bold;
	text-align: left;
	color: #222222;
	margin-top: 18px;
}

.cont .cont_abstract{
	/* flex: 1;
	height: 0;
	overflow: auto; */
	font-size: 16px;
	font-weight: 400;
	text-align: left;
	color: #727272;
	line-height: 24px;
	margin-top: 12px;
}

.cont .cont_article{
	margin-top: 19px;
}

.cont .cont_article_title{
	font-size: 18px;
	font-weight: 500;
	text-align: left;
	color: #222222;
}

.cont .cont_article_line{
	width: 100%;
	margin-top: 15px;
	height: 1px;
	background-color: #CED2D4;
}

.cont .cont_article_item{
	margin-top: 16px;
	font-size: 14px;
	font-weight: 400;
	text-align: left;
	color: #222222;
	cursor: pointer;
	height: 20px;
	line-height: 20px;
}

.cont .cont_article_item:hover{
	color: #548235;
}

/* 移动端公共样式 */
@media screen and (max-width: 768px) {
	.titlePlate{
		flex-direction: column;
		height: auto;
		padding: 12px;
		align-items: flex-start;
	}
	.titlePlate .titlePlate_left{
		justify-content: space-between;
	}
	.titlePlate .titlePlate_left .titlePlate_left_item{
		margin-right: 0;
	}
	.titlePlate .titlePlate_right{
		margin-left: auto;
		margin-top: 10px;
	}
	.cont{
		height: auto;
	}
	.cont .cont_thesis{
		min-height: none;
	}
}