

div#container {
	width: 100%;
	margin: 0 auto;
	overflow: hidden;
}
div.examples_body {
	width: 750px;
	margin: 50px auto 0 auto;
	clear: both;
	overflow: hidden;
	position: relative;
}


/* The main chanpin unordered list */
.chanpinHolder {
	width: 726px;
	margin: 20px 0 15px 0;
	padding: 20px 10px 20px 10px;
	background-color: #f7f7f7;
	border: 1px solid #eee;
	overflow: hidden;

	/* CSS3 rounded corners */
	-moz-border-radius:12px;
	-webkit-border-radius:12px;
	border-radius:12px;
}

/* Hiding the bullets of the li elements: */
.chanpinHolder li {
	list-style: none;
	display: inline;
}

/* The chanpin divs */
.chanpin {
	width: 430px;
	height: 430px;
	position: relative;
	overflow: hidden;
	float: left;
	display: inline;

}

/* The chanpin divs */
.chanpin img {
	display: block;
	border: none;
}

/* The dark animated divs */
.chanpin div {
	position: absolute;
	z-index: 100;
	background-color:rgba(2, 89, 177, 0.88);
	width: 60px;
	height: 60px;
	cursor: pointer;

	/*	Setting a really big value for border-radius
		will make the divs perfect circles */
	-moz-border-radius:100px;
	-webkit-border-radius:100px;
	border-radius:230px;
}

/*	Positioning the animated divs outside the
	corners of the visible chanpin area: */
.chanpin .cornerTL { left:-63px; top:-63px; }
.chanpin .cornerTR { right:-63px; top:-63px; }
.chanpin .cornerBL { left:-63px; bottom:-63px; }
.chanpin .cornerBR { right:-63px; bottom:-63px; }

/* The "Visit Company" text */
.chanpin p {
	width: 100%;
	left: 0;
	top: 50%;
	z-index: 200;
	position: absolute;
	font-family:"微软雅黑", "Helvetica Neue", Helvetica, Arial, sans-serif;
	color: #FFF;
	font-size: 20px;
	text-align: center;
	cursor: pointer;
	display: none;	/* hidden by default */
}