* {
    -webkit-tap-highlight-color: transparent;
}

article, aside, details, figcaption, figure, footer, header, main, nav, section {
    display: block
}

body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, form, fieldset, legend, input, textarea, p, blockquote, th, td, hr, button, article, aside, details, figcaption, figure, footer, header, menu, nav, section {
    margin: 0;
    padding: 0
}

body {
    color: #333;
    font-size: 0.32rem;
    font-family: "Segoe UI", "Lucida Grande", Helvetica, Arial, "Microsoft YaHei", FreeSans, Arimo, "Droid Sans", "wenquanyi micro hei", "Hiragino Sans GB", "Hiragino Sans GB W3", Arial, sans-serif;
}

a {
    text-decoration: none;
    color: #333;
    /*-webkit-tap-highlight-color: rgba(0, 0, 0, 0);*/
}

a:active, a:hover, a:focus, a:link {
    outline: 0;
    text-decoration: none;

}

ul, ol, dl {
    list-style: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

img {
    vertical-align: middle;
}

em {
    font-style: normal;
}

.clearfix:before, .clearfix:after {
    content: "";
    display: block;
    clear: both;
    visibility: hidden;
    height: 0;
    font-size: 0;
}

.clearfix {
    *zoom: 1;
}

.pos-a {
    position: absolute
}

.pos-r {
    position: relative
}

.pos-s {
    position: static
}
.pos-f{
    position: fixed;
}

.d-b {
    display: block;
}

.fn-fl {
    float: left
}

.fn-fr {
    float: right;
}

.fn-text-line {
    text-decoration: underline
}

.fn-text-l {
    text-align: left
}

.fn-text-r {
    text-align: right
}

.fn-text-m {
    text-align: center
}

.vg {
    vertical-align: middle;
}

/*设置全局box-sizing*/
html {
    box-sizing: border-box;
}

*, *::before, *::after {
    box-sizing: inherit;
}

input {
    outline: none;
    border: 0px;
    -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
    -webkit-appearance: none;
}

button {
    border: 1px solid transparent;
    outline: none;
}

/*2020.5.21新增*/
.db {
    display: block;
}

.dib {
    display: inline-block;
    vertical-align: middle;
}

.dif {
    display: -webkit-inline-flex;
    display: -moz-inline-flex;
    display: -ms-inline-flex;
    display: -o-inline-flex;
    display: inline-flex;
}

.df {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
}

.fx1 {
    -webkit-flex: 1;
    -moz-flex: 1;
    -ms-flex: 1;
    -o-flex: 1;
    flex: 1;
}

.fxd-c {
    /*主轴与块轴方向作为默认的书写模式。即纵向从上往下排列（顶对齐） */
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    -o-flex-direction: column;
    flex-direction: column;
}

.fxd-r {
    /*主轴与行内轴方向作为默认的书写模式。即横向从左到右排列（左对齐） */
    -webkit-flex-direction: row;
    -moz-flex-direction: row;
    -ms-flex-direction: row;
    -o-flex-direction: row;
    flex-direction: row;
}

.ai-c {
    /*弹性盒子元素的侧轴（纵轴）对齐方式*/
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    -o-align-items: center;
    align-items: center;
}

.jc-c {
    -webkit-justify-content: center;
    -moz-justify-content: center;
    -ms-justify-content: center;
    -o-justify-content: center;
    justify-content: center;
}

.jc-sb {
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    -ms-justify-content: space-between;
    -o-justify-content: space-between;
    justify-content: space-between;
}

.jc-sa {
    -webkit-justify-content: space-around;
    -moz-justify-content: space-around;
    -ms-justify-content: space-around;
    -o-justify-content: space-around;
    justify-content: space-around;
}

.as-c {
    -webkit-align-self: center;
    -moz-align-self: center;
    -ms-align-self: center;
    -o-align-self: center;
    align-self: center;
}

.fxw-w {
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -o-flex-wrap: wrap;
    flex-wrap: wrap;
}

.ac-sb {
    -webkit-content: space-between;
    -moz-align-content: space-between;
    -ms-align-content: space-between;
    -o-align-content: space-between;
    align-content: space-between;
}

.ac-c {
    -webkit-align-content: center;
    -moz-align-content: center;
    -ms-align-content: center;
    -o-align-content: center;
    align-content: center;
}

.dn {
    display: none;
}

.corg {
    color: #f90;
}

.bsbb {
    box-sizing: border-box;
}

.fwl {
    font-weight: lighter;
}

.fwn {
    font-weight: normal;
}

.fwb {
    font-weight: bold;
}

.fix {
    overflow: hidden;
}

/*限制只显示2行，超出部分添加省略号*/
.line-clamp2 {
    overflow: hidden;
    display: -webkit-box !important;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    /*兼容处理*/
    /*height: 3em;*/
    /*line-height: 1.4em;*/
}

