@charset "UTF-8";

@font-face {
  font-family: 'PingFangSC-Regular';
  src: url(https://155iyh5.oss-cn-shenzhen.aliyuncs.com/static/font/PingFang\ Regular.ttf);
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'PingFangSC-ExtraLight';
  src: url(https://155iyh5.oss-cn-shenzhen.aliyuncs.com/static/font/PingFang\ ExtraLight.ttf);
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'PingFangSC-Heavy';
  src: url(https://155iyh5.oss-cn-shenzhen.aliyuncs.com/static/font/PingFang\ Heavy.ttf);
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'PingFangSC-Light';
  src: url(https://155iyh5.oss-cn-shenzhen.aliyuncs.com/static/font/PingFang\ Light.ttf);
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'PingFangSC-Medium';
  src: url(https://155iyh5.oss-cn-shenzhen.aliyuncs.com/static/font/PingFang\ Medium.ttf);
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'PingFangSC-Bold';
  src: url(https://155iyh5.oss-cn-shenzhen.aliyuncs.com/static/font/PingFang\ Bold.ttf);
  font-weight: normal;
  font-style: normal;
}

/* 重置样式 */
body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
form,
fieldset,
input,
textarea,
p,
blockquote,
th,
td {
  margin: 0;
  padding: 0;
  font-family: PingFangSC-Bold
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

button,
input {
  outline: none;
}

textarea {
  resize: none;
}

fieldset,
img {
  border: 0;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

address,
caption,
cite,
code,
dfn,
th,
var {
  font-style: normal;
  font-weight: normal;
}

ol,
ul {
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: normal;
}

em,
i {
  font-style: normal;
}

button {
  cursor: pointer;
}

abbr,
acronym {
  border: 0;
}


a {
  text-decoration: none;
  cursor: pointer;
  color: #666;
}

a:hover {
  text-decoration: none;
  color: #ff8400;
}

a:focus {
  outline-style: none;
}

body {
  min-width: 1200px;
  font: 14px/1.5 PingFangSC-Bold,
    'Heiti SC',
    tahoma,
    arial,
    'Hiragino Sans GB',
    sans-serif;
  color: #666;
  background-color: #F4F5F4;
}

/* 常用公共类 */
/* flex布局 */
.flex-row,
.flex-row-between,
.flex-row-around,
.flex-row-column,
.flex-column-between,
.flex-column-around,
.flex-center {
  display: flex;
  align-items: center;
}

.flex-center {
  justify-content: center;
}

.flex-row,
.flex-row-between,
.flex-row-around {
  flex-direction: row;
}

.flex-column,
.flex-column-between,
.flex-column-around {
  flex-direction: column;
}

.flex-row-between,
.flex-column-between {
  justify-content: space-between;
}

.flex-row-around,
.flex-column-around {
  justify-content: space-around;
}

/* 左右浮动 */
.fl {
  float: left;
}

.fr {
  float: right;
}

.clear {
  *zoom: 1;
}

.clear:after {
  content: "";
  display: block;
  clear: both;
}

/*多行溢出(超出省略)*/
.text-two-dot {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  word-break: break-word;

}