
/* CSS reset*/
html {
  -webkit-text-size-adjust: 100%;
  /*可以调整字体大小小于12px*/
  height:100%;
  overflow-x:hidden;
  color: #444;
  font: 14px/24px Helvetica,'San Francisco',Arial,sans-serif;
}
body {
  -webkit-box-sizing: border-box;
  /* Safari/Chrome, other WebKit*/
  -moz-box-sizing: border-box;
  /* Firefox, other Gecko*/
  box-sizing: border-box;
  /* Opera/IE 8+*/
  position:relative;
  z-index:0;
  width:100%;
  min-height:100%;
  margin:0 auto;
  overflow-x:hidden;
}
div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,code,form,fieldset,legend,input,textarea,p,blockquote,th,td,hr,button {
  margin:0;
  padding:0;
  outline:none;
}
article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section {
  display:block;
  margin:0;
  padding:0;
}
audio,canvas,video,progress {
  display:inline-block;
  vertical-align:baseline;
}
input,button,select,textarea {
  font-size:100%;
  color:#636363;
  outline:none;
  -webkit-appearance:none;
  border-radius:0;
}
textarea {
  resize:none;
}
table {
  border-collapse:collapse;
  border-spacing:0;
}
fieldset,img {
  border:0;
}
iframe {
  display:block;
}
abbr,acronym {
  border:0;
  font-variant:normal;
}
del {
  text-decoration:line-through;
}
address,caption,cite,code,dfn,em,strong,th,var {
  font-style:normal;
  font-weight:normal;
}
ol,ul {
  list-style:none;
}
caption,th {
  text-align:left;
}
h1,h2,h3,h4,h5,h6 {
  font-size:100%;
  font-weight:normal;
}
a {
  text-decoration:none;
  color:#8dabbb;
}
a:active,a:focus {
  outline:none;
  color:#8dabbb;
}
input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
  color:#9ea3ab;
  word-wrap:break-word;
  word-break:break-all;
}
input:-moz-placeholder, textarea:-moz-placeholder {
  color:#9ea3ab;
  word-wrap:break-word;
  word-break:break-all;
}
input:-ms-input-placeholder, textarea:-ms-input-placeholder {
  color:#9ea3ab;
  word-wrap:break-word;
  word-break:break-all;
}
/*position*/
.clearfix:after {
  visibility:hidden;
  display:block;
  font-size:0;
  content:" ";
  clear:both;
  height:0;
}
.clearfix {
  zoom:1;
}