@charset "utf-8";

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  outline: none;
  -webkit-tap-highlight-color: transparent;
}

*:after,
*:before {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

body,
ul,
ol,
li,
p,
h1,
h2,
h3,
h4,
h5,
h6,
form,
fieldset,
table,
td,
img,
div,
menu,
dl,
dt,
dd,
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  border: 0;
  padding: 0;
  margin: 0;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary {
  display: block;
}

body,
th,
td,
button,
input,
select,
textarea {
  font-family: "Microsoft Yahei", "Hiragino Sans GB", "Helvetica Neue", Helvetica, tahoma, arial, Verdana, sans-serif, "WenQuanYi Micro Hei", "\5B8B\4F53";
  font-size: 14px;
  line-height: 1.6;
  color: #313033;
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
}

input,
button,
select {
  overflow: visible;
  vertical-align: middle;
  outline: none;
  -webkit-appearance: none;
  border: none;
}

ul,
ol,
dl {
  list-style-type: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
}

i,
em {
  font-style: normal;
}

a {
  color: #313033;
  text-decoration: none;
  cursor: pointer;
}

a:link {
  text-decoration: none;
}

a:hover {
  color: #23C268;
}

img {
  border: 0;
  vertical-align: middle;
}

pre {
  white-space: pre-wrap;
  word-wrap: break-word;
}


body {
  background: #F5F5F5;
  overflow-x: hidden;
}

input::-webkit-input-placeholder {
  color: #787878;
}

textarea::-webkit-input-placeholder {
  color: #787878;
}

/*display*/
.dn {
  display: none;
}

.db {
  display: block !important;
}

.bgf {
  background: #fff;
}

.bgeb {
  background-color: #ebebeb !important;
}

.bgf8 {
  background-color: #FBFBFB !important;
}

/*浮动*/
.fl {
  float: left;
}

.fr {
  float: right !important;
}

.clearfix:after {
  display: block;
  content: "clear";
  height: 0;
  clear: both;
  visibility: hidden
}

/* .clearfix{ *zoom: 1;} */
/*flex*/
.flex {
  display: flex;
}

.flex1 {
  flex: 1 0 !important;
}

.flex2 {
  flex: 2;
}

.flex3 {
  flex: 3;
}

.flex4 {
  flex: 4;
}

.flex5 {
  flex: 5;
}

.flex-align {
  display: flex;
  align-items: center;
}

/*垂直对齐*/
.flex-center {
  display: flex;
  justify-content: center;
}

/*位于中间*/
.flex-center-align {
  display: flex;
  align-items: center;
  justify-content: center;
}

/*水平对齐,垂直对齐*/
.flex-between {
  display: flex;
  justify-content: space-between;
}

/*两端对齐*/
.flex-around {
  display: flex;
  justify-content: space-around;
}

/*居中对齐*/
.flex-end {
  display: flex;
  justify-content: flex-end;
}

/*右侧对齐*/
.flex-wrap {
  flex-direction: row;
  flex-wrap: wrap;
}

/*换行*/
.flex-column {
  display: flex;
  flex-direction: column;
}

/*ellipsis*/
.ellipsis {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.ellipsis1 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden
}

.ellipsis2 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden
}

.ellipsis3 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden
}

.ellipsis4 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden
}

/*radius*/
.radius50 {
  border-radius: 50%;
}

/*radius*/
.radius5 {
  border-radius: 5px;
}

.radius10 {
  border-radius: 10px;
}

/*display*/
.dn {
  display: none !important;
}

.db {
  display: block !important;
}

.di {
  display: inline;
}

.dib {
  display: inline-block;
}

/*img*/
.img {
  max-width: 100%;
}

.img10 {
  width: 100%;
}

.img100 {
  width: 100%;
  height: 100%;
  object-fit: cover;
  flex-shrink: 0;
  transition: all 0.3s;

  &:hover {
    transform: scale(1.1);
  }
}

.img-trans {

  &:hover {
    img {
      transform: scale(1.1);
    }
  }

  img {
    transform: scale(1);
    transition: all 0.3s;
  }
}

/*font*/
.fz12 {
  font-size: 12px !important;
}

.fz14 {
  font-size: 14px !important;
}

.fz16 {
  font-size: 16px !important;
}

.fz18 {
  font-size: 18px !important;
}

.fz20 {
  font-size: 20px !important;
}

.fz22 {
  font-size: 22px !important;
}

.fz24 {
  font-size: 24px !important;
}

.fz26 {
  font-size: 26px !important;
}

.fz28 {
  font-size: 28px !important;
}

.fz30 {
  font-size: 30px !important;
}

.fz32 {
  font-size: 32px !important;
}

.fz34 {
  font-size: 34px !important;
}

.fz36 {
  font-size: 36px !important;
}

.fz40 {
  font-size: 40px !important;
}

.fz44 {
  font-size: 44px !important;
}

.tc {
  text-align: center !important
}

.tr {
  text-align: right !important
}

.bold {
  font-weight: bold;
}

.cursor-pointer {
  cursor: pointer;
}

/*position*/
.rel {
  position: relative;
}

.abs {
  position: absolute;
}

.fix {
  position: fixed;
}

.ovn {
  overflow: hidden;
}

.line {
  text-decoration: line-through;
}

/*color*/
.c000 {
  color: #000000 !important;
}

.cfff {
  color: #ffffff;
}

.c333 {
  color: #333333 !important;
}

.c666 {
  color: #666666 !important;
}

.c999 {
  color: #999999 !important;
}

.cccc {
  color: #cccccc !important;
}

.cff4 {
  color: #FF4949 !important;
}

.c515 {
  color: #515151 !important;
}

.cff8 {
  color: #FF8E2B !important;
}

.c9d9 {
  color: #9D9C9A;
}

.c02a {
  color: #02A7F0;
}

.c828 {
  color: #828282;
}

.cf89 {
  color: #F89D0A;
}

.cbbb {
  color: #bbbbbb;
}

.c23c {
  color: #23C268;
}

/*margin*/
.mt0 {
  margin-top: 0 !important;
}

.mt2 {
  margin-top: 2px !important;
}

.mt4 {
  margin-top: 4px !important;
}

.mt5 {
  margin-top: 5px !important;
}

.mt6 {
  margin-top: 6px !important;
}

.mt8 {
  margin-top: 8px !important;
}

.mt10 {
  margin-top: 10px !important;
}

.mt14 {
  margin-top: 14px !important;
}

.mt15 {
  margin-top: 15px !important;
}

.mt17 {
  margin-top: 17px !important;
}

.mt18 {
  margin-top: 17px !important;
}

.mt20 {
  margin-top: 20px !important;
}

.mt21 {
  margin-top: 21px !important;
}

.mt22 {
  margin-top: 22px !important;
}

.mt23 {
  margin-top: 23px !important;
}

.mt24 {
  margin-top: 24px !important;
}

.mt25 {
  margin-top: 25px !important;
}

.mt26 {
  margin-top: 26px !important;
}

.mt30 {
  margin-top: 30px !important;
}

.mt32 {
  margin-top: 32px !important;
}

.mt34 {
  margin-top: 34px !important;
}

.mt36 {
  margin-top: 36px !important;
}

.mt40 {
  margin-top: 40px !important;
}

.mt50 {
  margin-top: 50px !important;
}

.mt80 {
  margin-top: 80px !important;
}

.mt100 {
  margin-top: 100px !important;
}

.ml4 {
  margin-left: 4px;
}

.ml6 {
  margin-left: 6px;
}

.ml8 {
  margin-left: 8px;
}

.ml10 {
  margin-left: 10px;
}

.ml12 {
  margin-left: 14px;
}

.ml14 {
  margin-left: 14px;
}

.ml16 {
  margin-left: 16px;
}

.ml18 {
  margin-left: 18px;
}

.ml20 {
  margin-left: 20px;
}

.ml30 {
  margin-left: 30px;
}

.ml10 {
  margin-left: 10px;
}

.mr10 {
  margin-right: 10px;
}

.mr20 {
  margin-right: 20px;
}

/**/
.pt0 {
  padding-top: 0px !important;
}

.pt4 {
  padding-top: 4px !important;
}

.pt6 {
  padding-top: 6px !important;
}

.pt8 {
  padding-top: 8px !important;
}

.pt10 {
  padding-top: 10px !important;
}

.pt12 {
  padding-top: 12px !important;
}

.pt14 {
  padding-top: 14px !important;
}

.pt16 {
  padding-top: 16px !important;
}

.pt18 {
  padding-top: 18px !important;
}

.pt20 {
  padding-top: 20px !important;
}

.pt30 {
  padding-top: 30px !important;
}

.pl2 {
  padding-left: 2px;
}

.pl4 {
  padding-left: 4px;
}

.pl6 {
  padding-left: 6px;
}

.pl8 {
  padding-left: 8px;
}

.pl10 {
  padding-left: 10px;
}

.pl12 {
  padding-left: 12px;
}

.pl14 {
  padding-left: 14px;
}

.pl16 {
  padding-left: 16px;
}

.pl18 {
  padding-left: 18px;
}

.pl20 {
  padding-left: 20px;
}

.pr0 {
  padding-right: 0px !important;
}

.pr5 {
  padding-right: 5px;
}

.pr10 {
  padding-right: 10px;
}

.pr12 {
  padding-right: 12px;
}

.pr14 {
  padding-right: 14px;
}

.pr16 {
  padding-right: 16px;
}

.pr18 {
  padding-right: 18px;
}

.pr20 {
  padding-right: 20px;
}

.pb10 {
  padding-bottom: 10px !important;
}

.pb12 {
  padding-bottom: 12px !important;
}

.pb14 {
  padding-bottom: 14px !important;
}

.pb16 {
  padding-bottom: 16px !important;
}

.pb18 {
  padding-bottom: 18px !important;
}

.pb10 {
  padding-bottom: 10px !important;
}

.pb20 {
  padding-bottom: 20px !important;
}

.pb40 {
  padding-bottom: 40px !important;
}

.pb100 {
  padding-bottom: 100px;
}

.pb120 {
  padding-bottom: 120px;
}

.pb140 {
  padding-bottom: 140px;
}

.plr10 {
  padding-left: 10px;
  padding-right: 10px;
}

/*hh*/
.h20 {
  position: relative;
  width: 100%;
  height: 20px;
  overflow: hidden;
}

.h100 {
  position: relative;
  width: 100%;
  height: 100px;
  overflow: hidden;
}

/*下三角*/
.triangle {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 12px 12px 0;
  border-color: #c2c2c2 transparent transparent;
}

/*1px边框*/
.bottom {
  border-bottom: 1px solid #EDEDED;
}

.flastno>.borb:last-child:before {
  display: none;
}

.borall {
  position: relative;
}

.borall:before {
  position: absolute;
  display: block;
  content: "";
  transform-origin: 0 0;
  left: 0;
  top: 0;
  width: 200%;
  height: 200%;
  transform: scale(0.5);
  border: 1px solid #E9E9E9;
  z-index: 2;
}

.borr {
  position: relative;
}

.borr:before {
  position: absolute;
  display: block;
  content: "";
  right: 0;
  top: 0;
  bottom: 0;
  width: 1px;
  background: #E9E9E9;
  z-index: 2;
}

.bort {
  position: relative;
}

.bort:before {
  position: absolute;
  display: block;
  content: "";
  left: 0;
  top: 0;
  right: 0;
  height: 1px;
  background: #E9E9E9;
  z-index: 2;
}

.borb {
  position: relative;
}

.borb:before {
  position: absolute;
  display: block;
  content: "";
  left: 0;
  bottom: 0;
  right: 0;
  height: 1px;
  background: #E9E9E9;
  z-index: 2;
}

@media only screen and (-webkit-min-device-pixel-ratio: 2) {

  .borb:before,
  .bort:before {
    -webkit-transform: scaleY(0.5);
    transform: scaleY(0.5);
  }

  .borr:before {
    -webkit-transform: scaleX(0.5);
    transform: scaleX(0.5);
  }
}

@media only screen and (-webkit-min-device-pixel-ratio: 3) {

  .borb:before,
  .bort:before {
    -webkit-transform: scaleY(0.33);
    transform: scaleY(0.33);
  }

  .borr:before {
    -webkit-transform: scaleX(0.5);
    transform: scaleX(0.5);
  }
}

/* 去除IOS下多处滚动条 */
/* ::-webkit-scrollbar {
  display: none;
  width: 0 !important;
  height: 0 !important;
  -webkit-appearance: none;
  background: transparent;
} */

/**/
.container {
  position: relative;
  margin: 0 auto;
  width: 1200px;
}


/**/
.position-x {
  position: relative;
  padding: 0 22px;
  height: 44px;
  background: #FFFFFF;
  font-size: 14px;
  color: #626262;
}

/*遮罩层*/
.pop {
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
}

.pop.active {
  display: block;
}

.pop.show {
  -webkit-animation: dopopshow 0.4s;
  animation: dopopshow 0.4s;
}

@keyframes dopopshow {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@-webkit-keyframes dopopshow {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.pop.hide {
  -webkit-animation: dopophide 0.4s;
  animation: dopophide 0.4s;
}

@keyframes dopophide {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@-webkit-keyframes dopophide {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

/*公共弹窗*/
.tier-pop {
  display: none;
  z-index: 100;
}

.tier-pop.active {
  display: block;
}

.tier-pop.show {
  -webkit-animation: tiershow 0.3s both;
  animation: tiershow 0.3s both;
}

@keyframes tiershow {
  0% {
    transform: scale(0.5);
    opacity: 0;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@-webkit-keyframes tiershow {
  0% {
    -webkit-transform: scale(0.5);
    opacity: 0;
  }

  100% {
    -webkit-transform: scale(1);
    opacity: 1;
  }
}

.tier-pop.hide {
  -webkit-animation: tierhide 0.3s both;
  animation: tierhide 0.3s both;
}

@keyframes tierhide {
  0% {
    transform: scale(1);
    opacity: 1;
  }

  40% {
    transform: scale(0.5);
    opacity: 0;
  }

  100% {
    transform: scale(0);
    opacity: 0;
  }
}

@-webkit-keyframes tierhide {
  0% {
    -webkit-transform: scale(1);
    opacity: 1;
  }

  40% {
    -webkit-transform: scale(0.5);
    opacity: 0;
  }

  100% {
    -webkit-transform: scale(0);
    opacity: 0;
  }
}

/*分页*/
.pager {
  padding: 20px;
  margin: 20px auto 0;
  background-color: #ffffff;
  text-align: center;
  margin-bottom: 30px;
}

.pager a {
  cursor: pointer;
}

.pager a,
.pager span {
  /* 鎸夐挳鍐呮暟瀛� */
  width: 45px;
  height: 40px;
  border: 1px solid #EBEBEB;
  margin-left: -1px;
  color: #8a8a8a;
  display: inline-block;
  line-height: 40px;
  float: left;
  font-size: 15px;
  text-decoration: none;
  margin: 0 2px;
  border-radius: 6px;
}

.pager a:hover,
.pager span:hover {
  border-color: #3897cd;
  color: #3897cd;
  position: relative;
  z-index: 1;
}

.pager span.current {
  background-color: #222A35;
  color: #fff;
  border-color: #EBEBEB;
  position: relative;
  z-index: 1;
}

.pager .pg-first,
.pager .pg-prev,
.pager .pg-next,
.pager .pg-last {
  background: white url(../images/page_bg.jpg) 8px 7px no-repeat;
}

.pager .pg-first:hover,
.pager .pg-prev:hover,
.pager .pg-next:hover,
.pager .pg-last:hover {
  background: white url(../images/page_bg_hover.jpg) 8px 7px no-repeat;
}

.pager .pg-prev,
.pager .pg-prev:hover {
  background-position: 7px -21px;
}

.pager .pg-next,
.pager .pg-next:hover {
  background-position: -21px -21px;
}

.pager .pg-last,
.pager .pg-last:hover {
  background-position: -21px 7px;
}

.pager .pg-prev[disabled='true'],
.pager .pg-prev[disabled='true']:hover {
  cursor: default;
  background-image: url(../images/page_bg.jpg);
}

.pager .pg-next[disabled='true'],
.pager .pg-next[disabled='true']:hover {
  cursor: default;
  background-image: url(../images/page_bg.jpg);
}

.pager .pg-prev[disabled='true'],
.pager .pg-next[disabled='true'] {
  border-color: #eeeeee;
}

.pager span.els {
  border-color: transparent;
}

.pagerHtmlWrap {
  width: 800px;
  margin: 30px auto;
}

.pagerHtmlWrap .cc_cells {
  width: 100%;
  height: 35px;
  padding: 5px 0;
  border-bottom: 1px #cccccc solid;
}

.pagerHtmlWrap .cc_cells a {
  color: #454545;
  font-size: 14px;
  line-height: 35px;
  text-decoration: none;
}

.pagerHtmlWrap .cc_cells a span {
  display: inline-block;
  width: 25%;
  text-align: left;
  margin: 0;
}