/* CSS reset */
/* .loop( @count )when( @count <=100) {
    &:nth-of-type(@{count}) {
        z-index: 100-@count;
    }
    .loop((@count + 1));
} */

/*.web_phone{
	width: 100%;
	margin: auto;
	@media (min-width:750px){
		max-width: (750px/200rem;
	}
}*/

/*iphonex*/
/*@media only screen and (device-width: 375px) and (device-height:812px) and (-webkit-device-pixel-ratio:3) {
    
}*/




body {
    font-family: "microsoft yahei";
    margin: 0px;
    padding: 0px;
    -webkit-overflow-scrolling : touch;
}


*,
*:after,
*:before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  /* IOS点击层 input点击高亮 */
  -webkit-tap-highlight-color: transparent;
  /* 高亮边框 */
  outline: none;
  margin: 0;
  padding: 0;
  /* 禁止选中文本 导致ios input不能使用 禁止开启 */
  /* -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    touch-callout: none; */
  text-align: justify;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
fieldset {
  border: 0;
}
img {
  border: 0;
  max-width: 100%;
}
address,
caption,
cite,
code,
dfn,
th,
var {
  font-style: normal;
  font-weight: normal;
}
ol,
ul,
li {
  list-style: none;
}
ul,
ol {
    margin-top: 0;
    margin-bottom: 0;
}
caption,
th {
  text-align: left;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: normal;
}
abbr,
acronym {
  border: 0;
}
a {
  text-decoration: none;
}
a,
img {
  /* 禁止长按链接与图片弹出菜单 会屏蔽掉vant事件 */
  /*pointer-events: none;*/
  -webkit-touch-callout: none;
  /* pc禁止拖拽图片 */
  -webkit-user-drag: none;
  user-drag: none;
}
a:hover,
a:focus{
	text-decoration: none;
}
html {
  /*便捷内容*/
  font-size: 13.333333335vw;
}
@media (min-width: 750px) {
  html {
    font-size: 100px;
  }
}
body,
input,
select,
textarea {
  color: #333;
  font-size: .12rem;
}
.container {
  width: 100%;
  margin: 0 auto;
  padding: 0;
}
@media (min-width: 750px) {
  .container {
    max-width: 7.5rem;
  }
}
.divBox{
	width: 7.02rem;
	margin: auto;
}
.clearfix:after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  font-size: 0;
  overflow: hidden;
  clear: both;
}
.link {
  cursor: pointer;
}
.ovh_1 {
  overflow: hidden;
  white-space: initial;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}
.ovh_2 {
  overflow: hidden;
  white-space: initial;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.ovh_3 {
  overflow: hidden;
  white-space: initial;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
.a_text {
  position: relative;
}
.a_text:after {
  content: "";
  position: absolute;
}
.fl{
	float: left;
}
.fr{
	float: right;
}