/*重置*/
/*rem 必备*/
/*html{font-size:calc(100vw/7.5) !important;}*/
/*rem 必备*/
*{margin:0;padding:0;font-family:"微软雅黑";box-sizing:border-box;}
img { border:none;max-width:100%;vertical-align:top;}
li{ list-style:none;}
a{text-decoration:none;display:block;outline:none;color:#555;-webkit-tap-highlight-color:rgba(255,0,0,0);}
select::-ms-expand {display: none;}
select {
  border:none;
  background:none;
  /*很关键：将默认的select选择框样式清除*/
  appearance:none;
  -moz-appearance:none;
  -webkit-appearance:none;
}
input[type=button], input[type=submit], input[type=file], button {
    cursor: pointer;
    -webkit-appearance: none;
}
input[type=text]{display:inline-block;vertical-align:top;-webkit-appearance: none;}
input,textarea{border:none;background:none;}
input:focus,textarea:focus,select:focus{outline:none;}
input[type=text],textarea{
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  border-radius: 0;
}
textarea{
  resize:none;
}

.clear:after{
	clear:both; 
	content:'.';
	display:block;
	width:0;
	height:0;
	visibility:hidden;
}
.clear{zoom:1;}
.center{
	max-width:1280px;
	width:100%;
	height:auto;
	margin:0 auto;
	overflow:hidden;
}
.center:after{
	clear:both; 
	content:'.';
	display:block;
	width:0;
	height:0;
	visibility:hidden;
}
.center{zoom:1;}

.radius{
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
}

.tran{
  transition: all 1s;
  -moz-transition: all 1s; 
  -webkit-transition: all 1s; 
  -o-transition: all 1s; 
}
/*版块 上下左右居中*/
.cen{
  position: absolute;
  top: 50%;
  left: 50%;
  transform:translate(-50%,-50%);
  -ms-transform: translate(-50%,-50%);
  -moz-transform: translate(-50%,-50%);
  -webkit-transform: translate(-50%,-50%);
  -o-transform: translate(-50%,-50%);
}

/*图片放大*/
.scaleImg img{
  transition: transform 1s;
}
.scaleImg:hover img{
  transform: scale(1.05,1.05);
}