* {
	margin: 0;
	padding: 0;
}
.flowChart {
	padding: 12px;
	display: flex;
	max-width: 800px;
	margin: 10px auto;
}
.flowChart-left {
	width: 50px;
	flex-shrink: 0;
}
.flowChart .dashed {
	width: 0px;
	height: 100%;
	margin-left: 50%;
	border-left-style: dashed;
	border-left-color: darkgray;
	border-left-width: 2px;
}
.flowChart-right {
	flex-grow: 1;
}
.flowChart .oneNode {
	display: flex;
	align-items: center;
	width: 100%;
	margin-bottom: 14px;
}
.flowChart .check {
	width: 20px;
	height: 20px;
	border-radius: 50%;
	line-height: 20px;
	color: white;
	font-size: 12px;
	text-align: center;
	position: relative;
	left: -38px;
	flex-shrink: 0;
	background-color: #005aa8;
	border: 4px solid #ebebeb;
}

.flowChart .NodeDetail {
	background-color: white;
	margin-left: -40px;
	flex-grow: 1;
	border: 1px solid gainsboro;
	border-radius: 3px;
	padding: 5px 10px;
	display: flex;
	flex-direction: column;
	box-shadow: 1px 1px 3px gainsboro;
}

.NodeDetail .details {

}
/* 只针对IE9的样式 */
@media screen and (min-width:0\0) {

	.tag{
		margin-left:0px;
		margin-top:1px;
	}
	.tag-boder {
		margin-left: 10px;
		margin-top: -17px;
	}
	.flowChart .NodeDetail {
		margin-left: -6px;
		margin-top: -28px
	}
}
.details p {
	color: rgb(154, 154, 154);
	font-size: 14px;
	font-weight: 100;
}
.NodeDetail-title {
	display: flex;
	
}
.NodeDetail-content {
	flex-grow: 1;
}
.NodeDetail-content p {
	
	text-align: justify;
	font-size: 14px;
}

.NodeDetail-content p:hover {
	
	  color:#ff6a00;
}
.tag {
	width: 0;
	height: 0;
	border: 14px solid;
	border-style: dashed;
	border-color: transparent white transparent transparent;
	position: absolute;
	left: -13px;
	top: -14px;
}
.tag-boder {
	width: 0;
	height: 0;
	border: 12px solid;
	border-style: dashed;
	border-color: transparent gainsboro transparent transparent;
	position: relative;
	left: -40px;
}
.NodeDetail-content p{
	margin-top: 7px;
}
.little-title {
	color: #005aa8;
	font-size: 18px;
	line-height: 36px;
	text-align: left;
	width: 92%;
	max-width:800px;
	margin: 20px auto;
	padding-bottom: 10px;
	border-bottom: 1px solid #e9e9e9;
   cursor:pointer !important;
}

.more {
	font-size: 14px;
	color: #cfcfcf !important;
	cursor: pointer;
	float: right;
	line-height: 30px;
}

	.more:hover {
		color: #ff6a00 !important;
	}

.title1 {
	font-size: 18px;
	padding-left: 5px;
}