@import url("font.css");
@import url("header.css");
@import url("banner.css");
@import url("section.css");
@import url("product.css");
@import url("index_below.css");
@import url("footer.css");





*{
	box-sizing:border-box;
	}
body{
	margin: auto;
	background-color: #FFF;
}
.cv{
	width:100%;
	max-width:200px;
	vertical-align:top;
	margin:10px 20px;
	text-align:center;
	display:inline-block;
}

.cv img{
	width:90%;
	border-radius:360px;
	border: 1px solid #ccc;	
	-webkit-transition: all 0.2s ease;
	-moz-transition: all 0.2s ease;
	-o-transition: all 0.2s ease;
	-ms-transition: all 0.2s ease;
	transition: all 0.2s ease;
	}

.cv:hover img{
	-ms-transform: rotate(360deg); /* IE 9 */
  -webkit-transform: rotate(360deg); /* Safari */
   transform: rotate(360deg);
	}
