html {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    -webkit-tap-highlight-color: transparent;
}

body {
    width: 100%;
    height: 5000px;
    max-width: 1920px;
    overflow-x: hidden;
    margin: 0 auto;
    padding: 0;
    font: 12px/1.5 "Microsoft YaHei", "PingFangSC-Regular", "sans-serif";
    color: #333;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.layout,
.wrap {
    width: 85%;
    min-width: 980px;
    max-width: 1400px;
    margin: 0 auto;
    clear: both;
}
.container {
    width: 100%;
    background: url(../images/body-bg-01.png) no-repeat center top, url(../images/body-bg-02.png) #f3f5fc no-repeat center 1595px;
    background-size: 1920px 1595px, 1920px 1595px;
    margin-top: 70px;
    padding: 85px 0 42px 0;
}

*,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
p,
span,
form,
input,
select,
button,
textarea,
iframe {
    margin: 0;
    padding: 0;
    -webkit-touch-callout: none;
    -ms-touch-action: none;
    -moz-touch-action: none;
    -webkit-touch-action: none;
    -o-touch-action: none;
    touch-action: none;
}

ol,
ul,
li,
a,
span {
    list-style: none;
    display: block;
    color: #333;
    text-decoration: none;
}


h1,
h2,
h3,
h4,
h5,
h6 {
    font-size: inherit;
}

i,
em,
address,
caption,
cite,
code,
dfn,
th,
var {
    font-style: normal;
    font-weight: normal
}

a,
table,
td,
tr,
th,
img,
input,
button,
select,
textarea {
    border: none;
    outline: none;
    background: none;
}

textarea {
    resize: none;
}

img {
    display: block;
    border: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

.clearfix {
    *zoom: 1;
}

.clearfix:after {
    display: block;
    height: 0;
    overflow: hidden;
    visibility: hidden;
    clear: both;
    content: ".";
}

.flex {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
}

.inline-flex {
    display: -webkit-inline-box;
    display: -moz-inline-box;
    display: -ms-inline-flexbox;
    display: -webkit-inline-flex;
    display: inline-flex;
}

.flex-column {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    flex-direction: column;
    -webkit-flex-direction: column;
}

.flex-between {
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -moz-box-pack: space-between;
    -webkit--box-pack: space-between;
    box-pack: space-between;
}

.flex-around {
    -webkit-justify-content: space-around;
    justify-content: space-around;
    -moz-box-pack: space-around;
    -webkit--box-pack: space-around;
    box-pack: space-around;
}

.flex-center {
    -webkit-justify-content: center;
    justify-content: center;
    -moz-box-pack: center;
    -webkit--box-pack: center;
    box-pack: center;
}

.flex-end {
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
    -moz-box-pack: flex-end;
    -webkit--box-pack: flex-end;
    box-pack: flex-end;
}

.align-items {
    align-items: center;
    -webkit-align-items: center;
    box-align: center;
    -moz-box-align: center;
    -webkit-box-align: center;
}

.flex-auto {
    -webkit-box-flex: auto;
    -moz-box-flex: auto;
    box-flex: auto;
    -webkit-flex: auto;
    flex: auto;
}

.flex-1 {
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    box-flex: 1;
    -webkit-flex: 1;
    flex: 1;
}

.fl {
    float: left;
}

.fr {
    float: right;
}

.ellipsis {
    white-space: nowrap;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    -moz-line-clamp: 1;
    -moz-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ellipsis2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    -moz-line-clamp: 2;
    -moz-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ellipsis3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    -moz-line-clamp: 3;
    -moz-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.lateY {
    position: relative;
    top: 50%;
    -ms-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}

.lateX {
    position: relative;
    left: 50%;
    -ms-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
}

.transition {
    -ms-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}