
  /*  公共样式表  */
  *{
        -webkit-overflow-scrolling: touch;/*解决IOS网页上下滑动卡顿缺失等问题*/
        overflow-scrolling:touch;
  	margin: 0;
	padding: 0;
      
  }
  
  
/* 基本样式 */
html,
body {
	width: 100%;
	height: 100%;
		margin: 0;
	padding: 0;
	  overscroll-behavior:none;
}
body {
	box-sizing: border-box;
	position: relative;
}
 
  html{
	font-family: sans-serif;
}
html,body,header,section,footer,div,ul,ol,li,img,a,span,em,del,legend,center,strong,var,fieldset,form,label,dl,dt,dd,cite,input,hr,time,mark,code,figcaption,figure,textarea,h1,h2,h3,h4,h5,h6,p{
	margin:0;
	border:0;
	padding:0;
	font-style:normal;
}
html,body {
	-webkit-touch-callout:none;
	-webkit-text-size-adjust:none;
	-webkit-tap-highlight-color:rgba(0, 0, 0, 0);
	-webkit-user-select:none;
	width: 100%;
	height: 100%;
	touch-action:manipulation;
}
nav,article,aside,details,main,header,footer,section,fieldset,figcaption,figure{
	display: block;
}
img,a,button,em,del,strong,var,label,cite,small,time,mark,code,textarea{
	display:inline-block;
}
header,section,footer {
	position:relative;
}
ol,ul{
	list-style:none;
}
input,button,textarea {
	border:0;
	margin:0;
	padding:0;
	font-size:1em;
	line-height:1em;
	/*-webkit-appearance:none;*/
	background-color:rgba(0, 0, 0, 0);
	outline:none;
      color: #fff;     
      caret-color:#37efff;
}
span{
	display:inline-block;
}
a:active, a:hover {
  outline: 0;
}
a, a:visited{
	text-decoration:none;
}

label, .wordWrap{
    word-wrap: break-word;
    word-break: break-all;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
td,th {
  padding: 0;
}
img{
  -webkit-user-select: none;/*禁用手机浏览器的用户选择功能 */
-moz-user-select: none;  
}

.clearfix:after{
	content: ' ';
	display: block;
	clear: both;
	visibility:hidden;
	line-height: 0;
	height:0;
}
.loading_more{
	display: block;
	height: 1.5em;
	width: 100%;
	
}
.loading_more:before {
	display: inline-block; vertical-align: text-bottom;
	content: ' '; height: 16px; width: 16px; margin-right: 6px;
	background: url(../image/loading_more.gif) no-repeat center;
	-webkit-background-size: contain;
	background-size: contain;
} 
.loading_more:after {
	content: '加载更多';	
}


  @media only screen and (min-width: 320px){
  html {
     font-size: 62.5% !important;
   }
 }
  @media only screen and (min-width: 640px){
    html {
      font-size: 125% !important;
    }
 }
 @media only screen and (min-width: 750px){
   html {
     font-size: 150% !important;
 }
 }
 
 
 

 @media only screen and (min-width: 1242px){
   html {
     font-size: 187.5% !important;
   }
 }




 ::-webkit-scrollbar {display:none}

input:-moz-placeholder,  
textarea:-moz-placeholder {  
    color: #F6F6F6;  
}  
input:-ms-input-placeholder,  
textarea:-ms-input-placeholder {  
    color: #F6F6F6;  
}  
input::-webkit-input-placeholder,  
textarea::-webkit-input-placeholder {  
    color: #F6F6F6;  
}

 
/*以下是具体组件常用的公共CSS*/

.page-surround{
    /*页面主体四周边距的公共CSS*/
   width: calc(100vw - 3.2rem);
   height: calc(100vh);
   margin-left: 1.6rem;
   overflow-y:auto;
   overflow-x:hidden;
}
