@charset "utf-8";

.item {
	margin: 0 10px 10px;
	padding: 9px;
	border: 1px solid #d2fbff;
	border-radius: 10px;
	background: #fff;
}

.item h4 {
	margin-bottom: 5px;
	color: #1687c9;
	font-size: 108%;
}

.item p {
	margin-bottom: 10px;
}

.item ul li {
	overflow: hidden;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	position: relative;
	float: left;
	width: 33%;
	width: -webkit-calc((100% - 20px) / 3);
	width: calc((100% - 20px) / 3);
	margin-right: 10px;
	border: 1px solid #1a89ce;
	border-radius: 10px;
	text-align: center;
	padding-bottom: 30px;
}

.item ul li:nth-child(3n) {
	margin-right: 0;
}

.item ul li:nth-child(n+4) {
	margin-top: 10px;
}

.item ul li::before {
	content: "";
	display: block;
	padding-top: 100%;
}

.item ul li img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
}
