﻿body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
form,
input,
p,
th,
td {
  font-family: Microsoft YaHei, "Helvetica Neue", Helvetica, STHeiTi, sans-serif;
  color: #141414;
  padding: 0;
  margin: 0;
  font-size: 0.14rem;
  font-weight: normal;
}
* {
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  /*-webkit-transform:translateZ(0);*/
}

html,
body {
  -webkit-user-select: none;
  /* 禁止选中文本（如无文本选中需求，此为必选项） */
  user-select: none;
  -webkit-text-size-adjust: none;
  -moz-text-size-adjust: none;
  -ms-text-size-adjust: none;
  text-size-adjust: none;
  height: 100%;

}
html{
    font-size: 100px;
}

button,
input,
div {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  text-decoration: none;
}
a,li{
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0.3);
  text-decoration: none;
  }
img {
  -webkit-touch-callout: none;
  /* 禁止长按链接与图片弹出菜单 */
}
/*安卓a标签焦点框 去除
a:focus,input:focus{
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0) !important;
    -webkit-user-modify:read-write-plaintext-only;

}*/
body {
  background-color: #f7f7f7;
  position: relative;
  font-size:
}
.clearfix:after {
  content: "";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}
li{
  list-style: none;
}
/*.clearfix {
  display: inline-block;
}*/
/* Hide from IE Mac \*/
/*.clearfix {
  display: block;
}*/
/* End hide from IE Mac */



/*弹窗*/
.tips{
  position: fixed;
  left: 50%;
  bottom:0.55rem;
  z-index:9999;
  color: #fff;
  font-size: 0.14rem;
  background: rgba(0,0,0,.5);
  line-height: 2em;
  padding: 0rem 0.2rem 0rem 0.2rem;
  border-radius: 0.15rem;
  transform:translate(-50%,0);
  -webkit-transform:translate(-50%,0);
  white-space: nowrap;
}
.tips-animation{
  -webkit-animation: animation 3s linear forwards;
  animation: animation 3s linear forwards;
}

@-webkit-keyframes animation {
  0%{
    opacity: 0;
  }
  10%{
    opacity: 1;
  }
  90%{
    opacity: 1;
    -webkit-transform: translate(-50%,0);
  }
  99%{
    opacity: 0;
    -webkit-transform: translate(-50%,30px);
  }
  100%{
    opacity: 0;
  }
}

@-keyframes animation {
  0%{
    opacity: 0;
  }
  10%{
    opacity: 1;
  }
  90%{
    opacity: 1;
    transform: translate(-50%,0);
  }
  99%{
    opacity: 0;
    transform: translate(-50%,30px);
  }
  100%{
    opacity: 0;
  }
}
.none{
  display: none;
}




/*下载弹窗*/
.pop{
  width: 100%;
  height: 100%;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.5);
}

.pop .pop-tips-box{
  position:absolute;
  left: 50%;
  top: 50%;
  z-index: 10;
  width:2.7rem;
  height:auto;
  background: #fff;
  border-radius: 5px;
  transform:translate(-50%,-50%);
  -webkit-transform:translate(-50%,-50%);
  -moz-transform:translate(-50%,-50%);
  -ms-transform:translate(-50%,-50%);
}

.pop-tips-box .inner{
  width: 100%;
  padding: 0.3rem;
}
/*openapp*/
.pop-tips-box .inner .openapp-text{
  width: 100%;
}

.pop-tips-box .inner .openapp-text > h6{
  font-size: 0.14rem;
  line-height: 2em;
  text-align: center;
}

.pop-tips-box .inner .openapp-text > .test{
  font-size: 0.14rem;
  text-align: center;
  line-height: 25px;
}

.pop-tips-box .inner .openapp-text > p{
	font-size: 0.16rem;
    word-break: break-all;
    width: 100%;
    -webkit-user-select: initial;
    user-select: initial;
    color: #ff5400;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    line-height: 30px;
}
/*.pop-tips-box .inner .openapp-text > p{
    font-size: 0.12rem;
    word-break: break-all;
    width: 100%;
    -webkit-user-select: initial;
    user-select: initial;
    color: #ff5400;
 
}*/


/*弹窗按钮组*/
.pop-tips-box .closed_button{
    width: 0.24rem;
    height: 0.24rem;
    background-image: url(../images/close_48.png);
    background-color: #fff;
    border-radius: 50%;
    border: 2px solid #fff;
    background-size: cover;
    position: absolute;
    right: 0;
    top: 0;
    margin-top: -0.12rem;
    margin-right: -0.12rem;
    z-index: 11;
}

/*.pop-tips-box .button-group .closed{
  width: 100%;
  text-align: center;
  line-height:0.435rem;
  height: 0.435rem;
  font-size: 0.13rem;
  border-top: 1px solid #dfdfdf;
  border-radius: 0px 0px 5px 5px;
}

.pop-tips-box .button-group .closed:active{
  background-color:#2da33e;
  color: #fff;
}*/

.start_animation{
  animation:startmove 0.5s;
  animation-iteration-count:1;
  -webkit-animation:startmove 0.5s; /*Safari and Chrome*/
  -webkit-animation-iteration-count:1;
}
@ketframes startmove{
  from{
    top: 80%;
    opacity: 0;
  }
  to{
    top: 50%;
    opacity: 1;
  }
}

@-webkit-keyframes startmove{
  from{
    top: 80%;
    opacity: 0;
  }
  to{
    top: 50%;
    opacity: 1;
  }
}


/*关闭动画*/
.closed_animation{
  animation:closemove 0.2s;
  animation-iteration-count:1;
  -webkit-animation:closemove 0.2s; /*Safari and Chrome*/
  -webkit-animation-iteration-count:1;
}

@ketframes closemove{
  from{
    top:50%;
    opacity: 1;
  }
  to{
    top:80%;
    opacity: 0
  }
}

@-webkit-keyframes closemove{
  from{
    top:50%;
    opacity: 1;
  }
  to{
    top:80%;
    opacity: 0
  }
}
/*加载中*/
.loadmore-box .loadmorewait{
	display: block;
	width: 80%;
	height: 40px;
	line-height: 40px;
	text-align: center;
	/*background-color: #dfdfdf;*/
	font-size: 0.14rem;
	color:#a1a1a1;
  position:relative;
  left:0;
  top:0;
  padding-left: 10px;
  -webkit-tap-highlight-color:transparent;
}
.loadmore-box .loadmorewait:after{
  content:'';
  display: block;
  width:16px;
  height:16px;
  background: url(../images/loading-img.gif) no-repeat;
  background-size:cover;
  position: absolute;
  left: 38%;
  top:50%;
  z-index: 100;
  margin-left:-8px;
  margin-top: -8px;

}
/*加载完毕*/
.loadmore-box .loadend{
  display: block;
  width: 80%;
  height: 40px;
  line-height: 40px;
  text-align: center;
  font-size: 0.12rem;
  color:#a1a1a1;
  -webkit-tap-highlight-color:transparent;
}
