/* 初始化 */
body, div, ul, li, ol, h1, h2, h3, h4, h5, h6, input, textarea, select, p, dl, dt, dd, a, img, button, form, table, th, tr, td, tbody, article, aside, details, figcaption, figure, footer, header, menu, nav, section {
  box-sizing: border-box;margin: 0;padding: 0;-webkit-tap-highlight-color: transparent;/* 取消链接高亮  */
}

/*html, body, form, fieldset, p, div, h1, h2, h3, h4, h5, h6 {-webkit-text-size-adjust:none;}/!*阻止旋转屏幕时自动调整*!/*/
html {
  line-height: initial;
  /* 禁用iPhone中Safari的字号自动调整 */
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -webkit-overflow-scrolling : touch;/* 解决IOS默认滑动很卡的情况 */
}
body
{
   -webkit-text-size-adjust: 100% !important;
  text-size-adjust: 100% !important;
  -moz-text-size-adjust: 100% !important;
}

body{overflow-x:hidden;font-size: 0.32rem;}/*用来设置字体大小*/

body, button, input, select, option, textarea, optgroup, img {font-family:Helvetica,sans-serif;outline: none;border: none; }

h1, h2, h3, h4, h5, h6 {font-size: 100%;font-weight: normal;}

/* 禁止缩放表单 */
textarea {resize: none;overflow: auto; width: 100%}
input{resize: none;-webkit-appearance:none;}/*取消按钮在iphone上的默认样式*/

/*按钮居中*/
input[type="button"]{text-align: center}

/*placeholder颜色设置*/
input::-webkit-input-placeholder{color:#888;}
input::-webkit-input-speech-button {display:none}
textarea::-webkit-input-placeholder{color:#888;}

ol, ul{ list-style: none; }

table { border-collapse: collapse; border-spacing: 0; }

s,i,b{ font-weight: normal;}

/*img { max-width: 100%;}*/
img { width: 100%;}

/* 移动端点击a链接出现蓝色背景问题解决 */
a, a:hover, a:active, a:visited, a:link, a:focus {
  -webkit-tap-highlight-color: transparent;
  outline: none;
  /*background: none;*/
  text-decoration: none;
  color:#000;
}

/*单行溢出*/
.one-cut{overflow: hidden;white-space: nowrap;text-overflow: ellipsis;}

/*多行溢出 手机端使用*/
.more-cut{overflow : hidden;text-overflow: ellipsis; display: -webkit-box;/* -webkit-line-clamp: 2; */ -webkit-box-orient: vertical;}

/**布局**/
.lf{
  float:left;
}
.rt{
  float:right;
}

.clearfix:after {content: "";display: table;  clear: both;}
