@charset "utf-8";
body,
div,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
p,
blockquote,
dl,
dt,
dd,
ul,
ol,
li,
pre,
code,
form,
fieldset,
legend,
button,
textarea,
table,
tbody,
tfoot,
thead,
th,
td,
article,
aside,
dialog,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    outline: 0;
    background: transparent;
}
article,
aside,
dialog,
figure,
footer,
header,
hgroup,
nav,
section {
    display: block;
}

body,
button,
input,
select,
textarea {
}
h1,
h2,
h3,
h4,
h5,
h6,
button,
input,
select,
textarea {
    font-size: 100%;
}
address,
cite,
dfn,
em,
var {
    font-style: normal;
}
code,
kbd,
pre,
samp {
    font-family: courier new, courier, monospace;
}
small {
    font-size: 12px;
}
ul,
ol,
li {
    list-style: none;
}
img {
    border: none;
}
a {
    text-decoration: none;
    outline: thin none;
}
a:hover {
    text-decoration: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}
.clear {
    clear: both;
    zoom: 1;
}
.clearfix:after {
    visibility: hidden;
    display: block;
    font-size: 0;
    content: ' ';
    clear: both;
    height: 0;
}
html {
    -webkit-text-size-adjust: none;
}

/* CSS Document */

* {
    padding: 0;
    margin: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

body {
    font-family: 'Microsoft YaHei', Helvetica, sans-serif;
    font-weight: normal;
    font-size: 14px;
    line-height: 21px;
    color: #333;
    background: #fff;
    word-wrap: break-word;
    word-break: break-all;
}

ol,
ul,
li {
    list-style-position: inside;
    margin: 0;
    padding: 0;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
    empty-cells: show;
    text-align: left;
}

th,
td {
    border-collapse: collapse;
}

caption {
    text-align: left;
}

img {
    border: 0;
}

img.ie6 {
    vertical-align: text-bottom;
}

input {
    outline: none;
    border: 0;
}

select {
    padding-left: 10px;
    border: solid 1px #fff;
    /*很关键：将默认的select选择框样式清除*/
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    /*在选择框的最右侧中间显示小箭头图片*/

    /*为下拉小箭头留出一点位置，避免被文字覆盖*/
    padding-right: 14px;
}

/*清除ie的默认选择框样式清除，隐藏下拉箭头*/

select::-ms-expand {
    display: none;
}
input,
select,
option,
textarea {
    outline: none;
    border: 0;
}
input:focus {
    outline: none;
    border: 0;
}

/*ie6图片分裂使用*/

button {
    cursor: pointer;
}

h4 {
    font: 14px / normal 'Microsoft YaHei', 'Microsoft JhengHei';
    color: #000;
    font-weight: bold;
}

/*定义微软雅黑字体*/

a {
    color: #333;
}

a:hover {
    color: #003378;
}

body {
    width: 100%;
    overflow-x: hidden;
}

.h1,
.h2,
.h3,
h1,
h2,
h3 {
    margin-top: 0;
    margin-bottom: 0;
}

.h4,
.h5,
.h6,
h4,
h5,
h6 {
    margin: 0;
}

p {
    margin: 0;
}
.word-in {
    overflow-x: auto;
}

.overflow {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.overflow-line2 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.overflow-line3 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}
.overflow-line4 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    overflow: hidden;
}
.overflow-line5 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 5;
    overflow: hidden;
}