/*页面重置样式*/* {  margin: 0;  padding: 0;  font-family: Inter var,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Arial,Noto Sans,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji;  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  outline: none;
  -webkit-text-size-adjust: none !important;
  /* ios横屏字体放大 */  -webkit-overflow-scrolling: touch;
  -webkit-tap-highlight-color: rgba(200, 200, 200, 0);
}html,body {
  width: 100%;
  height: 100%;
  background-color:#fff;
  position: relative;
}p,span,div,h3,input,button {	padding:0;	margin:0;}
.pull-left{
  float: left;}.pull-right{  float: right;}.clearfix{  position: relative;}
.clearfix::after{  content:"";   display:block;   height:0;   visibility:hidden; 
  clear:both;
}img {
  max-width: 100%;  border: none;
  border: 0;
  vertical-align: middle;
  object-fit: cover;
  -webkit-user-drag: none; /*禁止图片拖动*/
  /*禁止图片复制*/
  -moz-user-select: none !important; /*火狐*/
  -webkit-user-select: none !important; /*webkit浏览器*/
  -ms-user-select: none !important; /*IE10*/
  -khtml-user-select: none !important; /*早期浏览器*/
  user-select: none;
}a {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-tap-highlight-color: transparent;  outline: none;
  background: none;
  text-decoration: none;
  color: #000000;
}a:hover,button:hover {  cursor: pointer;  text-decoration: none !important;}
a:focus {  -webkit-tap-highlight-color: transparent !important;  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);  outline: none;  background: none;  text-decoration: none;
}
ol,ul,li {  list-style: none;
}
/* 去除Chrome等浏览器文本框默认发光边框 */input:focus,textarea:focus {  outline: none;}/* 禁止多行文本框textarea拖拽 */textarea {  resize: none;
}/*在 iOS 上，输入框默认有内部阴影 清除输入框内阴影*/input,textarea {  border: 0;}/* 禁止长按链接与图片弹出复制图片菜单 */a,img {  -webkit-touch-callout: none;}/*单行省略......*/.oneLine {  white-space: nowrap;  overflow: hidden;  -o-text-overflow: ellipsis;  text-overflow: ellipsis;}/*多行行省略......*/.twoLines {  display: -webkit-box;  -webkit-box-orient: vertical;  -webkit-line-clamp: 2;  overflow: hidden;
}
.threeLines {  display: -webkit-box;  -webkit-box-orient: vertical;  -webkit-line-clamp: 3;  overflow: hidden;}/*css修改placeholder的颜色*/::-webkit-input-placeholder {  color: #9e9e9e;
}:-moz-placeholder {  color: #9e9e9e;}::-moz-placeholder {  color: #9e9e9e;}
:-ms-input-placeholder {
  color: #9e9e9e;
}.hide{
  display: none;
}