﻿@charset "utf-8";
/*---------------------------------------------------------
  通用公共样式
---------------------------------------------------------*/
html{
  background: #fff;
}
body,h1,h2,h3,h4,h5,h6,div,ul,ol,li,a,img,p,span,input{
	margin: 0;
	padding: 0;
	box-sizing:border-box;
}
body{
  font-family: "微软雅黑";
  width: 100vw;
	margin: 0 auto;
  font-size: 16px;
  overflow-x: hidden;
  /* min-width:1200px; */
}
ul,ol{
	list-style: none;
}
img{
	border: none;
}
a{
	color: #404040;
  text-decoration: none;
}
/*点击去掉蓝色背景*/
a:active{
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.clearfix::after {
  content: ".";
  clear: both;
  display: block;
  overflow: hidden;
  font-size: 0;
  height: 0;
}
.clearfix {
  zoom: 1;
}
.hidden{
  display: none;
}
