html{
  font-size: 62.5%;
}
body,p,h1,h2,h3,h4,h5,h6,ul,ol,dl,li,dt,dd{
    /* 默认有边距，都要清除 */
    margin: 0;
    padding: 0;
    /*字体设置*/
    font-size: 1.2rem;
    font-family: "Microsoft Yahei",sans-serif;
    /* 去掉列表的原点 */
    list-style: none;
    /* 默认鼠标 */
    cursor: default;
}
.h1, .h2, .h3, .h4, .h5, .h6, .tooltip, h1, h2, h3, h4, h5, h6 {
    font-family: "Century Gothic", Futura-CondensedMedium, HelveticaNeue, PingFangSC-Light, HiraginoSansGB-W3, "Microsoft YaHei", tahoma
}
.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
    font-weight: 500;
    line-height: 1.1;
    color: inherit;
}
/*可选*/
/* html,body{
    width: 100%;
    height: 100%;
    font-size: 100px!important;
} */
ul:after{
  content: "";
  display: block;
  clear: both;
}
.wrap {
    width: 1200px;
    margin: 0 auto;
}
@media screen and (max-width: 1680px){
  .wrap{
    width: 960px;
  }
}
/* @media screen and (max-width: 1440px){
  .wrap{
    width: 720px;
  }
} */
@media screen and (max-width: 600px){
  .wrap{
    width: 100%;
  }
}

.wrap:after {
	content: '\20';
	display: block;
	height: 0;
	clear: both;
	visibility: hidden;
	overflow: hidden;
}

/*行内块元素*/
input,img{
    margin: 0;
    padding: 0;
    border: 0 none;
    outline-style: none;
    vertical-align: bottom; 
}
 
/*行内元素*/
a,a:active,a:visited{
    /*下划线和颜色*/
    text-decoration: none;
}
 
textarea{
    /* 边框清零 */
    border:none;
    /* 轮廓线清零 */
    outline: none;
    /* 防止文本域被随意拖拽 */
    resize: none;
}
 
i{
    /*文字样式*/
    font-style: normal; 
}
 
table{
    /*边框合并*/
    border-collapse:collapse;
    border-spacing:0;
}
 
 
/* 使用伪元素清除浮动 */
.clearfix::before,
.clearfix::after{
    content:"";
    height: 0;
    line-height: 0;
    display: block;
    visibility: none;
    clear: both;
}
 
.clearfix {
    *zoom: 1;
}
/*html5 初始化新标签的CSS*/
article,aside,dialog,footer,header,section,footer,nav,figure,menu{display:block; margin: 0;}
/*清除浮动*/
.clearfix:after {clear: both; content: ""; display:block; height: 0; overflow: hidden; visibility: hidden; }
.clearfix { zoom:1;}
