@charset "utf-8";

/* CSS Document */

section,
figure,
main,
header,
footer {
    display: block;
}

body,
ul,
ol,
li,
p,
h1,
h2,
h3,
h4,
h5,
h6,
form,
fieldset,
table,
td,
img,
div,
label,
dl,
dt,
dd,
section,
figure,
main,
header,
footer {
    margin: 0;
    padding: 0;
    border: 0;
}

html {
    font-size: 55.5%;
    /*height: 100%;*/
}


/* @media only screen and (min-width: 321px) {
    html {
        font-size: 62.5%!important;
    }
} */

body {
    position: relative;
    box-sizing: border-box;
    color: #3b3b3b;
    font-size: 14px;
    -webkit-font-smoothing: antialiased;
    /*chrome、safari*/
    -moz-osx-font-smoothing: grayscale;
    /*firefox*/
    line-height: 1.5;
    min-width: 300px;
    /*width: 94.8%;*/
    /*max-width: 1360px;*/
    /*margin: 0 auto;*/
    -webkit-tap-highlight-color: transparent;
    padding-top: 60px;
    padding-bottom: 61px;
    /* overflow-x: hidden; */
    min-width: 500px;
    min-height: 100vh;
    background: #dfe7ef;
}

body,
button,
input,
select,
textarea {
    font-family: -apple-system, BlinkMacSystemFont, \5FAE\8F6F\96C5\9ED1, \9ED1\4F53, Arial, Helvetica, sans-serif;
}

p,
li,
select,
textarea,
div {
    text-align: left;
}

table {
    border-collapse: collapse;
    border-spacing: 0px
}

ul {
    list-style-type: none;
}

a {
    text-decoration: none;
}

a:link,
a:visited,
a:focus {
    color: #3b3b3b;
}

a:hover,
a:active {
    color: #1039b8;
}

img {
    border: 0px;
}

.clear {
    zoom: 1;
}

.clear:after {
    content: ".";
    display: block;
    height: 0;
    visibility: hidden;
    clear: both;
}


/*伪类清除*/

.clearit {
    clear: both;
    height: 0;
    font-size: 0;
    overflow: hidden;
}

.fr {
    float: right;
}

.fl {
    float: left;
}

.has_img img {
    display: block;
    width: 100%;
}

.flex_top {
    display: flex;
    display: -webkit-flex;
    align-items: flex-start;
}

.flex_normal {
    display: flex;
    display: -webkit-flex;
    align-items: center;
}

.flex_center {
    display: flex;
    display: -webkit-flex;
    align-items: center;
    justify-content: center;
}

.flex_around {
    display: flex;
    display: -webkit-flex;
    justify-content: space-around;
    align-items: center;
}

.flex_between {
    display: flex;
    display: -webkit-flex;
    justify-content: space-between;
    align-items: center;
}

.flex_wrap {
    flex-wrap: wrap;
}

.pr {
    position: relative;
}

.pa {
    position: absolute;
}


/*取消iphone样式优化*/


/*input[type="submit"], input[type="reset"], input[type="button"], input, button , textarea{ -webkit-appearance: none; border-radius: 0; -webkit-border-radius: 0;}*/

select {
    -webkit-appearance: none;
    border-radius: 0;
    -webkit-border-radius: 0;
}


/*************公用内容结束*****************/

.only_one_line {
    word-break: keep-all;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.only_two_line {
    width: 100%;
    text-overflow: -o-ellipsis-lastline;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}

.only_five_line {
    width: 100%;
    text-overflow: -o-ellipsis-lastline;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    line-clamp: 5;
    -webkit-box-orient: vertical;
}

video,
button {
    outline: none;
}

label {
    cursor: pointer;
}