@charset "UTF-8";
* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

*::before,
*::after {
    -webkit-box-sizing: inherit;
    box-sizing: inherit;
}

html,
body,
div,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
dl,
li,
dt,
dd,
p,
blockquote,
pre,
form,
fieldset,
table,
th,
td,
span,
input,
textarea {
    margin: 0;
    padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: normal;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

li,
ol,
ul,
dl,
dt,
dd {
    list-style: none;
}

i,
b,
em,
strong {
    font-weight: 400;
}

em,
i {
    font-style: normal;
}

img {
    max-width: 100%;
    vertical-align: middle;
    border: 0;
}

:focus {
    outline: 0;
}

a {
    color: inherit;
    text-decoration: none;
}

.clearfix {
    zoom: 1;
}

.clearfix::after,
.clearfix::before {
    display: table;
    content: "";
}

.clearfix::after {
    clear: both;
}

.fr {
    float: right !important;
}

.fl {
    float: left !important;
}

input {
    outline: 0;
    -webkit-tap-highlight-color: transparent;
    -webkit-appearance: none;
}

input[type="checkbox"] {
    -webkit-appearance: checkbox;
    box-sizing: border-box;
    margin-top: -2px;
    margin-right: 5px;
}

input[type="radio"] {
    -webkit-appearance: radio;
    box-sizing: border-box;
    margin-top: -2px;
    vertical-align: middle;
}

input:focus,
textarea:focus {
    outline: 0;
}


/*文本*/

.f-bold {
    font-weight: 700 !important;
}

.f-normal {
    font-weight: 400 !important;
}

.tx-left {
    text-align: left;
    font-weight: bold;
    font-weight: normal;
}

.tx-center {
    text-align: center;
}

.tx-right {
    text-align: right;
}

.tx-justify {
    text-align: justify;
}

.tx-align-last {
    text-align-last: justify;
}


/* 文本截取 */

.ellipsis {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}


/* 间距 */

.p10 {
    padding: 10px;
}

.p15 {
    padding: 15px;
}

.p20 {
    padding: 20px
}

.p30 {
    padding: 30px;
}

.mg10 {
    margin: 10px;
}

.mg15 {
    margin: 15px;
}

.mg20 {
    margin: 20px;
}

.mg30 {
    margin: 30px;
}

.pd0 {
    padding: 0 !important;
}

.mg0 {
    margin: 0 !important;
}

.container {
    width: 1400px;
    margin: 0 auto;
}

.container:after {
    content: "\0020";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
    overflow: hidden;
}