* {
	margin: 0;
	padding: 0;
}
body{
	width: 100%;
}
.icon {
   width: 1em; height: 1em;
   vertical-align: -0.15em;
   fill: currentColor;
   overflow: hidden;
   font-size: 22px;
   margin: 10px 10px 0 0;
}
.banner img{
	width: 100%;
}
.flowChart {
	background-color: rgb(245, 245, 245);
	padding: 12px;
	display: flex;
}
.flowChart-left {
	width: 30px;
	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;
	width: 100%;
	margin-bottom: 14px;
}
.flowChart .check {
	width: 30px;
	height: 30px;
	border-radius: 50%;
	line-height: 30px;
	color: white;
	font-size: 12px;
	text-align: center;
	position: relative;
	left: -29px;
	top: 15px;
	flex-shrink: 0;
	background-color: rgb(125, 122, 117);
	/*border: 4px solid rgb(173,168,163);*/
}
.flowChart .check-success {
	background-color: rgb(87, 194, 64);
	/*border: 4px solid rgba(198, 228, 177,0.9);*/
}
.flowChart .check-danger {
	background-color: rgb(228,108,35);
	/*border: 4px solid rgb(250, 166, 122);*/
}
.flowChart .check-prime {
	background-color: rgb(248, 144,2);
	/*border: 4px solid rgb(88, 191, 243);*/
}
.flowChart .check-warning {
	background-color: rgb(0, 136, 165);
	/*border: 4px solid rgba(255, 208, 122,1);*/
}
.flowChart .NodeDetail {
	background-color: white;
	margin-left: -40px;
	flex-grow: 1;
	border-radius: 6px;
	padding: 14px;
	display: flex;
	/*flex-direction: column;*/
	box-shadow: 1px 1px 3px gainsboro;
}

/*-------新添---------*/
.flowChart a{
	/*display: flex;*/
	text-decoration: none;
	color: #000;
}
.Node-box{
	width: 100%;
}
.Node-right{
	display: flex;
	align-items: baseline;
}
.border-danger{
	border: 1px solid rgb(228,108,35);
}
.border-success{
	border: 1px solid rgb(87, 194, 64);
}
.border-warning{
	border: 1px solid rgb(0, 136, 165);
}
.NodeDetail-left{
	flex-grow: 1;
	margin-right: 10px;
}
.NodeDetail-left p{
	font-size: 14px;
	margin-top: 5px;
}
.NodeDetail-right{
	width: 100px;
	flex-shrink: 0;
}
.ul-danger .icon{
	color: rgb(228,108,35);
}
.ul-success .icon{
	color: rgb(87, 194, 64);
}
.ul-warning .icon{
	color: rgb(0, 136, 165);
}
.Node-ul li{
	list-style: none;
	display: flex;
	width: 100%;
	padding-right: 16px;
	height: 40px;
	line-height: 40px;
}
.Node-ul a li div{
	flex-grow: 1;
	border-bottom: 1px solid #bbb;
	display: flex;
}
.Node-ul a:last-child li div{
	border: none;
}
.Node-ul li h4{
	flex-grow: 1;
	color: #555;
	width: 140px;
	overflow: hidden;
	text-overflow:ellipsis;
	white-space: nowrap;
}
.Node-ul li span{
	flex-shrink: 0;
	font-size: 12px;
	color: #777;
}
/*------------------*/

.flowChart img {
	width: 100%;
}
.NodeDetail .details {
	flex-grow: 1;
	padding-left: 8px;
	margin-left: 8px;
	border-left: 4px solid rgb(72, 108, 160);
}
.details p {
	color: rgb(154, 154, 154);
	font-size: 14px;
	font-weight: 100;
}
.NodeDetail-title {
	display: flex;
	margin-bottom: 10px;
}
.NodeDetail-content {
	flex-grow: 1;
}
.NodeDetail-content p {
	text-indent: 2em;
	text-align: justify;
	font-size: 14px;
}
.NodeDetail-footer {
	margin-top: 10px;
}
.NodeDetail-footer span {
	font-size: 12px;
	font-weight: 100;
	color: rgb(104, 104, 104);
	float: right;
}
.badge {
	padding: 2px 5px;
	font-size: 12px;
	background-color: rgb(72, 108, 160);
	border-radius: 10px;
	font-weight: 100;
	color: white;
	letter-spacing: 2px;
	box-shadow: 1px 1px 1px gainsboro;
}
.BadgeGray {
	background-color: rgb(104, 108, 104);
}
.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: -39px;
	top: 10px;
}
.tag-danger{
	border-color: transparent rgb(228,108,35) transparent transparent;
}
.tag-success{
	border-color: transparent rgb(87, 194, 64) transparent transparent;
}
.tag-warning{
	border-color: transparent rgb(0, 136, 165) transparent transparent;
}
.NodeDetail-content p{
	margin-top: 7px;
}
