@charset "utf-8";
body{
    background-color: #ffffff;
    color:#333333;
}
html{
    overflow-y: scroll;
    box-sizing: border-box;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    word-spacing: 1px;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
}
body,html{
    width: 100%;
    height: 100%;
}
body{
    -webkit-text-size-adjust:100%!important;
    font-size: 12px;
}

blockquote, body, button, dd, dl, dt, fieldset, form, h1, h2, h3, h4, h5, h6, hr, input, legend, li, ol, p, pre, td, textarea, th, ul {
    margin: 0;
    padding: 0;
}
.clearfix:after{/*伪元素是行内元素 正常浏览器清除浮动方法*/
    content: "";
    display: block;
    height: 0;
    clear:both;
    visibility: hidden;
}
.clearfix{
    *zoom: 1;/*ie6清除浮动的方式 *号只有IE6-IE7执行，其他浏览器不执行*/
}
.g-flexbox{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.g-flex-item{
    flex: 1
}
.g-flex-row {
    -webkit-box-direction :horizontal;
    -webkit-box-orient: horizontal;
    flex-direction: row;
}
.g-flex-vertical{
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    flex-direction: column;
}

.g-flex-row-wrap{
    flex-flow: row wrap;
    flex-direction:row;
    flex-wrap:wrap;
}
.g-flex-space{
  justify-content: space-around;
}
.g-flex-row-space-between{
    justify-content: space-between;
}
.g-flex-align-center{
    align-items: center;
}
.g-flex-center{
    -webkit-box-pack: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.flex-clamp-eclipse1{
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    flex-direction: column;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1
}
  
.g-flex-right{
    align-items: flex-end;
    justify-content: flex-end;
}

.g-flex-vertical-center{
    -webkit-box-pack: center;
    justify-content: center;
    overflow: hidden;
}

.g-flex-vertical-center2{
    -webkit-box-pack: center;
    align-items: center;
}