@charset "utf-8";
/* 样式重置 */
body,html {
    min-height: 100%;
    height: auto!important;
}

/* 使用此样式防止滚动条出现时页面抖动，这会影响到使用fixed居中出现误差，可js计算html与body直接的宽度差补回 */
:root {
    overflow-y: auto;
    overflow-x: hidden;
}
:root body {
    position: absolute;
}
html {
    overflow-y: scroll;
}
body {
    width: 100vw;
    overflow: hidden;
}
/* 使用此样式防止滚动条出现时页面抖动，这会影响到使用fixed居中出现误差，可js计算html与body直接的宽度差补回 */

body {
    background-color: #fff;
    color: #333;
    font-family: "PingFang SC", "Arial", "Microsoft YaHei", "Helvetica", "Helvetica Neue", "Tahoma", "sans-serif";
    line-height: 1.5;
    font-size: 12px;
}
body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,code,form,fieldset,legend,input,button,textarea,p,blockquote,th,td {
    margin: 0;
    padding: 0;
}

h1,h2,h3,h4,h5,h6 {
    font-size: 100%;
}

ol,ul {
    list-style: none;
}

address,caption,cite,code,dfn,em,strong,th,var,optgroup {
    font-style: normal;
}

input,button,textarea,select,optgroup,option {
    font-family: inherit;
    font-size: inherit;
    font-style: inherit;
    font-weight: inherit;
    *font-size: 100%;
}

fieldset,img,a img,:link img,:visited img {
    border: 0;
}

a {
    text-decoration: none;
    color: inherit;
}

/* a:visited {
    color: inherit;
} */

a:hover,
a:active {
    color: #d00000;
}

:focus {
    outline: 0;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

caption,th {
    text-align: left;
}

/* 通用样式 */
.wrap {
    width: 1200px;
    margin: 0 auto;
}
.none {
    display: none;
}
.fl {
    display: inline;
    float: left;
}
.fr {
    display: inline;
    float: right;
}
.clearfix {
    _zoom: 1;
}
.clearfix:after {
    content: "";
    display: block;
    height: 0;
    visibility: hidden;
    clear: both;
}
.ovh {
    overflow: hidden;
    display: block;
}

.lh1 {
    line-height: 1;
}

.tov,
.tovm {
    overflow: hidden;
    display: block;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.tovm {
    display: -webkit-box;
    -webkit-box-orient:  vertical;
    white-space: normal;
}
.tc {
    text-align: center;
}
.fc9 {
    color: #999;
}
.fc6 {
    color: #666;
}
.fc3 {
    color: #333;
}
.fcred {
    color: #d00000;
}
.fs12 {
    font-size: 12px;
}
.fs14 {
    font-size: 14px;
}
.fblod {
    font-weight: 700;
}

.ml10 {
    margin-left: 10px;
}
.ml5 {
    margin-left: 5px;
}
.mt30 {
    margin-top: 30px;
}
.mr30 {
    margin-right: 30px;
}

/* 向下三角形 */
.delta_down {
    display: inline-block;
    width: 0;
    height: 0;
    border-width: 5px 4px;
    border-style: solid;
    vertical-align: -2px;
    border-color: #999 transparent transparent;
}

.not_select {
    -webkit-user-select:none;
    -moz-user-select:none;
    -ms-user-select:none;
    user-select:none;
}


/* pc */
.flex{
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}
.flex_center {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.flex_align_items{
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}
.flex_space_around {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-around;
    -ms-flex-pack: justify;
    justify-content: space-around;
}
.flex_start{
    -webkit-box-pack: justify;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: justify;
    justify-content: flex-start;
}
.flex_wrap{
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -o-flex-wrap: wrap;
    flex-wrap: wrap;
}
.flex_1 {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
}
.flex_space_between{
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.flex_last_end{
    -webkit-box-pack: justify;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: justify;
    justify-content: flex-end;
}
.limit{
    overflow: hidden;
    white-space: nowrap;
    text-overflow:ellipsis;
}
.limit2{
    text-overflow: -o-ellipsis-lastline;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    word-break: break-all;
}
.limit3{
    text-overflow: -o-ellipsis-lastline;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}
.dib{
    display: inline-block
}
.mr20{
    margin-right: 20px;
}
.ml20{
    margin-left: 20px;
}
.mt20{
    margin-top: 20px
}
.mb20{
    margin-bottom: 20px;
}
.wh{
    width: 100%;
}
.pr{
    position: relative
}
.hide {
    display: none;
}
