@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;
    -webkit-appearance: none;
}

table {
    border-collapse: collapse;
}

.container {
	width: 1200px;
	margin-left: auto;
	margin-right: auto;
}

.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 {
	-webkit-box-align: center;
	-webkit-align-items: center;
	align-items: center;
}

.grid-bottom {
	-webkit-box-align: flex-end;
	-webkit-align-items: flex-end;
	align-items: flex-end;
}

.grid-stretch {
	-webkit-box-align: stretch;
	-webkit-align-items: stretch;
	align-items: stretch;
}

.grid-baseline {
	-webkit-box-align: baseline;
	-webkit-align-items: baseline;
	align-items: baseline;
}

.grid-left {
	-webkit-box-pack: justify;
	-webkit-justify-content: flex-startn;
	justify-content: flex-start;
}

.grid-center {
	-webkit-box-pack: justify;
	-webkit-justify-content: center;
	justify-content: center;
}

.grid-right {
	justify-content: flex-end;
	-webkit-box-pack: justify;
	-webkit-justify-content: flex-end;
	justify-content: flex-end;
}

.grid-between {
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	justify-content: space-between;
}

.grid-around {
	-webkit-box-pack: justify;
	-webkit-justify-content: space-aroundn;
	justify-content: space-around;
}
