﻿@charset "UTF-8";
/**
 *
 * @authors Your Name (you@example.org)
 * @date    2019-05
 */

/* css 初始化样式 */
body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
form,
fieldset,
legend,
input,
button,
textarea,
p,
blockquote,
th,
td {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}

body {
    color: #333;
    font-size: 14px;
    font-family: 'Microsoft YaHei', Verdana, Helvetica, sans-serif;
    background: #fff;
    overflow-x: hidden;
}

td,
th,
caption {
    font-size: 14px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: normal;
}

address,
caption,
cite,
code,
dfn,
em,
strong,
th,
var,
span,
i,
b {
    font-style: normal;
    font-weight: normal;
}

a {
    text-decoration: none;
    color: #333;
}

img {
    border: none;
}

ol,
ul,
li {
    list-style: none;
}

input,
textarea,
select,
button {
    font: 14px 'Microsoft YaHei', Verdana, Helvetica, Arial, sans-serif;
}

table {
    border-collapse: collapse;
}


.text-ellopsis {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.text-ellopsis-2 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}