@charset "UTF-8";
/**
 *
 * @authors Your Name (you@example.org)
 * @date    2019-06
 */

/* 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;
    cursor: pointer;
    -webkit-appearance: none;
}

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;
}


.grid {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.grid-top {
    align-items: flex-start;
}

.grid-middle {
    align-items: center;
}

.grid-bottom {
    align-items: flex-end;
}

.grid-stretch {
    align-items: stretch;
}

.grid-baseline {
    align-items: baseline;
}

.grid-left {
    justify-content: flex-start;
}

.grid-center {
    justify-content: center;
}

.grid-right {
    justify-content: flex-end;
}

.grid-between {
    justify-content: space-between;
}

.grid-around {
    justify-content: space-around;
}