@charset "utf-8";
/**
 * 默认是手机端
 */
* {
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: rgba(0,0,0,0);
  -webkit-tap-highlight-color: rgba(0,0,0,0); /*禁止链接高亮*/
  -webkit-touch-callout: none;/*禁止链接长按弹出选项菜单*/
}
html {
  height:100%;
  font-size: 62.5%;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;/*关闭字体大小自动调整功能*/
  -ms-touch-action: none;/*禁止winphone默认触摸事件*/
}
body {
  height:100%;
  background-color: #f6f6f6;
  margin: 0;
  line-height:1.4;
  color:#333;
  font-family: microsoft Yahei !important;
  -webkit-user-select: none;/*禁止ios和android用户选中文字*/
  -webkit-touch-callout: none;/*禁止ios 长按时不触发系统的菜单，禁止ios&android长按时下载图片*/
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);/*去掉ios系统中元素被触摸时产生的半透明灰色遮罩*/
}

div,span{
  margin: 0;
  padding:0;
}

/**
 * Forms reset
 */
button,input,optgroup,select,textarea {
  color: inherit;
  font: inherit;
  margin: 0;
  font-size:100%;
  outline:0;
}
/**
 * webkit表单输入框placeholder的颜色值
 */
input::-webkit-input-placeholder{
  color:#999;
}
input:focus::-webkit-input-placeholder{
  color:#999;
}
/**
 * android 上去掉语音输入按钮
 */
input::-webkit-input-speech-button {
  display: none;
}
/**
 * 在 IE 8/9/10/11中默认是 `hidden`
 */
button {
  overflow: visible;
}
/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
 * Correct `select` style inheritance in Firefox.
 */
button,
select {
  text-transform: none;
}
/**
 * IE10禁用 select 默认下拉箭头
 */
select::-ms-expand {
  display: none;
}
/**
 * IE10禁用 radio 和 checkbox 默认样式
 */
input[type=radio]::-ms-check,input[type=checkbox]::-ms-check{
  display: none;
}
/**
 * IE10禁用PC端表单输入框默认清除按钮
 */
input[type=text]::-ms-clear,input[type=tel]::-ms-clear,input[type=number]::-ms-clear{
  display: none;
}
/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 */
button,
html input[type="button"], /* 1 */
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button; /* 2 */
  cursor: pointer; /* 3 */
}
/**
 * 重置disabled标签鼠标样式
 */
button[disabled],
html input[disabled] {
  cursor: default;
}
/**
 * 去除Firefox 4+默认的样式
 */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}
/**
 * 去除iphone默认的样式
 */
input {
  line-height: normal;
  outline: none;
  -webkit-appearance:none;
  appearance:none;
  border:none;
  background:none;
}
/**
 * It's recommended that you don't attempt to style these elements.
 * Firefox's implementation doesn't respect box-sizing, padding, or width.
 *
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10.
 */
input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}
/**
 * Fix the cursor style for Chrome's increment/decrement buttons. For certain
 * `font-size` values of the `input`, it causes the cursor style of the
 * decrement button to change from `default` to `text`.
 */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}
/**
 * 1. Address `appearance` set to `searchfield` in Safari and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari and Chrome.
 */
input[type="search"] {
  -webkit-appearance: textfield; /* 1 */
  box-sizing: content-box; /* 2 */
}
/**
 * Remove inner padding and search cancel button in Safari and Chrome on OS X.
 * Safari (but not Chrome) clips the cancel button when the search input has
 * padding (and `textfield` appearance).
 */
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
ul{
  list-style-type:none;
}