.flow-step-area {
	margin: 20px 0;
	padding: 20px;
	background: #FFF;
}
.flow-step-area .step-box {
	display: table;
	width: 100%;
	margin: 40px 0 20px 0;
	border-radius: 4px;
	box-shadow: 0 1px 0 0 rgba(65,80,27,0.4);
	position: relative;
}
.flow-step-area .step-box dt,
.flow-step-area .step-box dd {
	display: table-cell;
	margin: 0;
	border: 1px solid #DDD;
}
.flow-step-area .step-box dt {
	width: 25%;
	padding: 15px 10px;
	background: #EEE;
	font-size: 1.13rem;
	font-weight: normal;
	border-right:0;
	border-radius: 4px 0 0 4px;
}
.flow-step-area .step-box dd {
	padding: 10px;
	background: #FFF;
	border-left: 0;
	border-radius: 0 4px 4px 0;
}
/*  –îˆó */
.flow-step-area .step-box::after {
	display: block;
	content:"";
	width: 0;
	position: absolute;
	top:100%;
	right:0;
	left:0;
	margin: 5px auto;
	border-top: 30px solid #4a90e2;
	border-right: 30px solid transparent;
	border-left: 30px solid transparent;
}
.flow-step-area .step-box:first-of-type {
	margin-top:0;
}
.flow-step-area .step-box:last-of-type::after {
	border:0;
}


@media only screen and (max-width : 480px) {
	.flow-step-area .step-box{
		display: block;
	}
	.flow-step-area .step-box dt,
	.flow-step-area .step-box dd {
		display: block;
	}
	.flow-step-area .step-box dt {
		width: 100%;
		padding: .75rem .5rem;
		font-size: 1rem;
		border-radius: 4px 4px 0 0;
	}
	.flow-step-area .step-box dd {
		padding: .5rem;
		border-radius: 0 0 4px 4px;
	}
}
