@charset "UTF-8";

/* line 5, C:/Ruby25-x64/lib/ruby/gems/2.5.0/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video,
input,
select,
textarea {
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  font-weight: 400;
}
a {
  text-decoration: none;
  color: #353535;
}

/* line 22, C:/Ruby25-x64/lib/ruby/gems/2.5.0/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */
html {
  line-height: 1;
  font-family: PingFangSC-Regular;
  color: #ffffff;
  height: 100%;
}
body {
  /* height: 100%;
  background: rgba(250, 250, 250, 1); */
}

/* line 24, C:/Ruby25-x64/lib/ruby/gems/2.5.0/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */
ol,
ul {
  list-style: none;
}

/* line 26, C:/Ruby25-x64/lib/ruby/gems/2.5.0/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* line 28, C:/Ruby25-x64/lib/ruby/gems/2.5.0/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */
caption,
th,
td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}

/* line 30, C:/Ruby25-x64/lib/ruby/gems/2.5.0/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */
q,
blockquote {
  quotes: none;
}
/* line 103, C:/Ruby25-x64/lib/ruby/gems/2.5.0/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */
q:before,
q:after,
blockquote:before,
blockquote:after {
  content: "";
  content: none;
}

/* line 32, C:/Ruby25-x64/lib/ruby/gems/2.5.0/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */
a img {
  border: none;
}

/* line 116, C:/Ruby25-x64/lib/ruby/gems/2.5.0/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}

/* flex盒子布局 */
.flex_box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.flex_item {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.flex_column {
  flex-direction: column;
}
.flex-space-between-end {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-content: center;
  align-items: flex-end;
}
.space_b {
  justify-content: space-between;
}
.space_a {
  justify-content: space-around;
}
.fixation {
  flex-shrink: 0;
}
.flex_shrink {
  flex-shrink: 0;
}

/* 单行溢出... */
.text_ellipsis {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* 多行溢出... */
.mult_line_ellipsis {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  line-height: 1.1em !important;
  height: 1em !important;
}
.mult_line_ellipsis_2 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  line-height: 1.5em !important;
  height: 2.9em !important;
}
.mult_line_ellipsis_3 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  line-height: 1.4em !important;
  height: 4.1em !important;
}
.mult_line_ellipsis_4 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  line-height: 1.2em !important;
  height: 4.7em !important;
}
.mult_line_ellipsis_5 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  line-height: 1.2em !important;
  height: 5.9em !important;
}
.mult_line_ellipsis_6 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  line-height: 1.2em !important;
  height: 7.1em !important;
}

/* 字号公用类 */
.fs10 {
  font-size: 0.1rem;
}
.fs12 {
  font-size: 0.12rem;
}
.fs14 {
  font-size: 0.14rem;
}
.fs16 {
  font-size: 0.16rem;
}
.fs18 {
  font-size: 0.18rem;
}
.fs20 {
  font-size: 0.2rem;
}
.fs22 {
  font-size: 0.22rem;
}
.fs24 {
  font-size: 0.24rem;
}
.fs27 {
  font-size: 0.27rem;
}
.fs28 {
  font-size: 0.28rem;
}
.fs32 {
  font-size: 0.32rem;
}
.fs36 {
  font-size: 0.36rem;
}
.fs38 {
  font-size: 0.38rem;
}
.fs40 {
  font-size: 0.4rem;
}
.fs46 {
  font-size: 0.46rem;
}

/* 文字公用类 */
.fw-600 {
  font-weight: 600;
}
.fw-b {
  font-weight: bold;
}

.ff-fs {
  font-family: FangSong;
}

/* 颜色公用类 */
.c_grey {
  color: #9B9B9B;
}
.c_blue {
  color: rgba(36, 133, 206, 1);
}
.c_red {
  color: rgba(230, 36, 53, 1) !important;
}
/* 行高公用类 */
.lh18 {
  line-height: 0.18rem;
}
.lh20 {
  line-height: 0.2rem;
}
.lh24 {
  line-height: 0.24rem;
}
.lh28 {
  line-height: 0.28rem;
}
.lh30 {
  line-height: 0.3rem;
}
.lh32 {
  line-height: 0.32rem;
}
.lh38 {
  line-height: 0.38rem;
}
.lh40 {
  line-height: 0.4rem;
}
.lh45 {
  line-height: 0.45rem;
}
.lh48 {
  line-height: 0.48rem;
}

/* 内边距公用类 */
.pd-f10 {
  padding: 0.1rem;
}
.pd-f15 {
  padding: 0.15rem;
}
.pd-f20 {
  padding: 0.2rem;
}
.pd-f30 {
  padding: 0.3rem;
}
.pd-f40 {
  padding: 0.4rem;
}

/* 横向内边距 */
.pd-x15 {
  padding-left: 0.15rem;
  padding-right: 0.15rem;
}
.pd-x20 {
  padding-left: 0.2rem;
  padding-right: 0.2rem;
}
.pd-x30 {
  padding-left: 0.3rem;
  padding-right: 0.3rem;
}

/* 纵向内边距 */

.pd-y30 {
  padding-top: 0.3rem;
  padding-bottom: 0.3rem;
}

.pd-t10 {
  padding-top: 0.1rem;
}
.pd-t20 {
  padding-top: 0.2rem;
}

.pd-r10 {
  padding-right: 0.1rem;
}
.pd-r15 {
  padding-right: 0.15rem;
}

.pd-l05 {
  padding-left: 0.05rem;
}

/* 外边距共用类 */
.mg-t10 {
  margin-top: 0.1rem;
}
.mg-t15 {
  margin-top: 0.15rem;
}
.mg-t20 {
  margin-top: 0.2rem;
}
.mg-l10 {
  margin-left: 0.1rem;
}
.mg-b25 {
  margin-bottom: 0.25rem;
}
.mg-b50 {
  margin-bottom: 0.5rem;
}

/*浮动*/
.fl {
  float: left;
}
.fr {
  float: right;
}
/* clear */
.clearfix:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}
.clearfix {
  *display: inline-block;
}
*html .clearfix {
  height: 1%;
}
.clearfix {
  /*display:block;*/
}

.por {
  position: relative;
}

.po_sticky {
  position: -webkit-sticky;
  position: sticky;
  top: 0px;
  z-index: 999;
}


.border_b {
  border-bottom:1px solid rgba(228,228,228,1);
}