body,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
p,
blockquote,
dl,
dt,
dd,
ul,
ol,
li,
pre,
form,
fieldset,
legend,
button,
input,
textarea,
th,
td {
    margin: 0;
    padding: 0;
    font-family: Elevision_b;
}

@font-face {
    font-family: "Elevision_b";
    src: url("../font/._SourceHanSansCN-Bold-2.otf") format("truetype");
}

@font-face {
    font-family: "Elevision_r";
    src: url("../font/._SourceHanSansCN-Regular-2.otf") format("truetype");
}

@font-face {
    font-family: "fongsong";
    src: url("../font/SIMFANG.TTF") format("truetype");
}

@font-face {
    font-family: "FZZDHJW";
    src: url("../font/FZZDHJW.TTF") format("truetype");
}

body,
button,
input,
select,
textarea {
    font: 12px/1.5 tahoma, arial, \5b8b\4f53;
}

/* header 是 position:fixed 脱离文档流,不占位。
   </header> 之后的换行/空格是 body 的直接文本节点,
   会按 body 的 line-height(12px*1.5=18px) 渲染成一个空行。
   把 body 的 line-height 设为 0,文本节点高度归零;
   body 的子元素恢复 1.5,不影响正常布局。 */
body {
    line-height: 0;
}
body > * {
    line-height: 1.5;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-size: 100%;
}

address,
cite,
dfn,
em,
var {
    font-style: normal;
}

code,
kbd,
pre,
samp {
    font-family: couriernew, courier, monospace;
}

small {
    font-size: 12px;
}

ul,
ol {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
}

a:link,
a:visited {
    text-decoration: none;
    color: inherit;
}

a:hover {
    text-decoration: none;
}

sup {
    vertical-align: text-top;
}

sub {
    vertical-align: text-bottom;
}

legend {
    color: #000;
}

fieldset,
img {
    border: 0;
}
img{
     object-fit: cover; 
}

button,
input,
select,
textarea {
    font-size: 100%;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

/* 右浮动 */
.right {
    float: right;
}

/* 左浮动 */
.left {
    float: left;
}

/* 表单文字溢出隐藏,用...显示 */
table td,
.ell {
    /* display: block; */
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    vertical-align: middle;
}

.ell2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ell3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ell4 {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.ell5 {
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}



.table-fix {
    table-layout: fixed;
}

/* 清除浮动 */
.clearfix:after {
    content: "";
    display: table;
    height: 0;
    visibility: both;
    clear: both;
}

.clearfix {
    zoom: 1;
}