@charset "utf-8";
body {
  font-family: "\5fae\8f6f\96c5\9ed1", Helvetica, Arial, "\5b8b\4f53", sans-serif;
  overflow-y: auto;
  overflow-x: hidden;
  color: #333;
}
input[type=number] {
  -moz-appearance: textfield;
}
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
a {
  color: inherit;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
  margin-bottom: 0;
}
.m-menu {
  display: none;
}
#mm-blocker {
  z-index: 68686;
}
.ms-controller {
  visibility: hidden;
}
.info-empty {
  text-align: center;
  padding: 30px 15px;
}
.mr15 {
  margin-right: 15px;
}
.ml15 {
  margin-left: 15px;
}
.mt15 {
  margin-top: 15px;
}
.mb15 {
  margin-bottom: 15px;
}
.help-block {
  margin-bottom: 0;
}
.daterange {
  display: inline-block;
  height: 34px;
  vertical-align: middle;
  width: 215px;
  position: relative;
}
.daterange .addon {
  position: absolute;
  right: 9px;
  top: 7px;
}
.input-date {
  display: inline-block;
  height: 34px;
  vertical-align: middle;
  width: 125px;
  position: relative;
}
.input-date .addon {
  position: absolute;
  right: 9px;
  top: 7px;
}
.input-datetime {
  display: inline-block;
  height: 34px;
  vertical-align: middle;
  width: 185px;
  position: relative;
}
.input-datetime .addon {
  position: absolute;
  right: 9px;
  top: 7px;
}

/* flex */

.flex-horizontal {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
.flex-vertical {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -moz-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.flex {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  flex: 1;
}
.flex-between {
  -webkit-box-pack: justify;
  -moz-justify-content: space-between;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.flex-between-start {
  -webkit-box-pack: start;
  -moz-justify-content: flex-start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.flex-between-end {
  -webkit-box-pack: end;
  -moz-justify-content: flex-end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}

/* Form input sizing */

.input-mini {
  width: 45px !important;
}
.input-xsmall {
  width: 80px !important;
}
.input-small {
  width: 145px !important;
}
.input-medium {
  width: 240px !important;
}
.input-large {
  width: 320px !important;
}
.input-xlarge {
  width: 420px !important;
}
@media (max-width: 768px) {
  .input-large {
    width: 250px !important;
  }
  .input-xlarge {
    width: 300px !important;
  }
}
.input-inline {
  display: inline-block;
  width: auto;
  vertical-align: middle;
}
.input-fixed {
  overflow: hidden;
}
.form-group .input-inline {
  margin-right: 5px;
}
.input-group-image {
  position: relative;
  font-size: 0;
  white-space: nowrap;
  width: 1%;
  vertical-align: middle;
  display: table-cell;
}
button:focus,
.btn:focus {
  outline: none !important;
}
.btn {
  vertical-align: middle;
}

/* layout grid */

.grow:after {
  content: "";
  display: table;
  clear: both;
}
.gcol {
  float: left;
  min-height: 1px;
  width: 100%;
}
.container .container {
  width: auto;
  padding-left: 0;
  padding-right: 0;
}

/* 消息对话框 */

@-webkit-keyframes lm-msg-animIn {
  from {
    -webkit-transform: scale3d(.5, .5, 1);
    opacity: 0;
  }
}
@keyframes lm-msg-animIn {
  from {
    transform: scale3d(.5, .5, 1);
    opacity: 0;
  }
}
.lm-msg-animIn {
  -webkit-animation: lm-msg-animIn 0.25s both;
  animation: lm-msg-animIn 0.25s both;
}
.lm-msg-overlay {
  position: fixed;
  z-index: 99999;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: rgba(0, 0, 0, .4);
}
.lm-msg-overlay-lte-ie8 {
  filter: progid: DXImageTransform.Microsoft.gradient(startColorstr=#66000000, endColorstr=#66000000);
}
.lm-msg-dialog {
  max-width: 280px;
  width: 90%;
  min-height: 60px;
  position: relative;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
  top: 50%;
  margin-top: -70px;
  background-color: #fff;
  border-radius: 3px;
  box-shadow: 0 0 10px #888;
}
.lm-msg-title {
  background-color: #f5f5f5;
  line-height: 34px;
  height: 34px;
  text-indent: 10px;
  border-bottom: 1px solid #e8e8e8;
}
.lm-msg-close {
  position: absolute;
  right: 0;
  top: 0;
  background-color: transparent;
  border: none;
  line-height: 1;
  color: #666;
  cursor: pointer;
  font-size: 28px;
  padding: 3px 8px;
  font-family: Arial;
}
.lm-msg-close:hover {
  color: #333;
}
.lm-msg-content {
  padding: 20px;
}
.lm-msg-padding-left {
  padding-left: 60px;
}
.lm-msg-btns {
  text-align: right;
}
.lm-msg-btn {
  padding: 7px 14px;
  background-color: #0084e9;
  color: #fff;
  letter-spacing: 2px;
  cursor: pointer;
  line-height: 1;
  margin-right: 15px;
  margin-bottom: 10px;
  border: 1px solid #0A74C5;
  border-radius: 3px;
  font-size: inherit;
  font-family: inherit;
}
.lm-msg-btn:hover {
  background-color: #0A74C5;
}
.lm-msg-cancel {
  background-color: #f0f0f0;
  border-color: #ddd;
  color: #333;
}
.lm-msg-cancel:hover {
  background-color: #ddd;
}
.lm-msg-icon {
  width: 30px;
  height: 30px;
  background: url(../images/lm-msg-icon.png) no-repeat;
  position: absolute;
  left: 20px;
  top: 51px;
}
.lm-msg-alert {
  background-position: left top;
}
.lm-msg-error {
  background-position: -60px top;
}
.lm-msg-success {
  background-position: -30px top;
}
.lm-msg-confirm {
  background-position: -90px top;
}
.lm-msg-loader {
  background: url(../images/lm-msg-loading.gif) no-repeat;
  width: 32px;
  height: 32px;
  top: 15px;
}

/* daterangepicker */

.daterangepicker {
  position: absolute;
  color: inherit;
  background: #fff;
  border-radius: 4px;
  width: 278px;
  padding: 4px;
  margin-top: 1px;
  top: 100px;
  left: 20px
}
.daterangepicker:before,
.daterangepicker:after {
  position: absolute;
  display: inline-block;
  border-bottom-color: rgba(0, 0, 0, 0.2);
  content: ''
}
.daterangepicker:before {
  top: -7px;
  border-right: 7px solid transparent;
  border-left: 7px solid transparent;
  border-bottom: 7px solid #ccc
}
.daterangepicker:after {
  top: -6px;
  border-right: 6px solid transparent;
  border-bottom: 6px solid #fff;
  border-left: 6px solid transparent
}
.daterangepicker.opensleft:before {
  right: 9px
}
.daterangepicker.opensleft:after {
  right: 10px
}
.daterangepicker.openscenter:before {
  left: 0;
  right: 0;
  width: 0;
  margin-left: auto;
  margin-right: auto
}
.daterangepicker.openscenter:after {
  left: 0;
  right: 0;
  width: 0;
  margin-left: auto;
  margin-right: auto
}
.daterangepicker.opensright:before {
  left: 9px
}
.daterangepicker.opensright:after {
  left: 10px
}
.daterangepicker.dropup {
  margin-top: -5px
}
.daterangepicker.dropup:before {
  top: initial;
  bottom: -7px;
  border-bottom: initial;
  border-top: 7px solid #ccc
}
.daterangepicker.dropup:after {
  top: initial;
  bottom: -6px;
  border-bottom: initial;
  border-top: 6px solid #fff
}
.daterangepicker.dropdown-menu {
  max-width: none;
  z-index: 3001
}
.daterangepicker.single .ranges,
.daterangepicker.single .calendar {
  float: none
}
.daterangepicker.show-calendar .calendar {
  display: block
}
.daterangepicker .calendar {
  display: none;
  max-width: 270px;
  margin: 4px
}
.daterangepicker .calendar.single .calendar-table {
  border: 0
}
.daterangepicker .calendar th,
.daterangepicker .calendar td {
  white-space: nowrap;
  text-align: center;
  min-width: 32px
}
.daterangepicker .calendar-table {
  border: 1px solid #fff;
  padding: 4px;
  border-radius: 4px;
  background: #fff
}
.daterangepicker table {
  width: 100%;
  margin: 0
}
.daterangepicker td,
.daterangepicker th {
  text-align: center;
  width: 20px;
  height: 20px;
  border-radius: 4px;
  border: 1px solid transparent;
  white-space: nowrap;
  cursor: pointer
}
.daterangepicker td.available:hover,
.daterangepicker th.available:hover {
  background-color: #eee;
  border-color: transparent;
  color: inherit
}
.daterangepicker td.week,
.daterangepicker th.week {
  font-size: 80%;
  color: #ccc
}
.daterangepicker td.off,
.daterangepicker td.off.in-range,
.daterangepicker td.off.start-date,
.daterangepicker td.off.end-date {
  background-color: #fff;
  border-color: transparent;
  color: #999
}
.daterangepicker td.in-range {
  background-color: #ebf4f8;
  border-color: transparent;
  color: #000;
  border-radius: 0
}
.daterangepicker td.start-date {
  border-radius: 4px 0 0 4px
}
.daterangepicker td.end-date {
  border-radius: 0 4px 4px 0
}
.daterangepicker td.start-date.end-date {
  border-radius: 4px
}
.daterangepicker td.active,
.daterangepicker td.active:hover {
  background-color: #357ebd;
  border-color: transparent;
  color: #fff
}
.daterangepicker th.month {
  width: auto
}
.daterangepicker td.disabled,
.daterangepicker option.disabled {
  color: #999;
  cursor: not-allowed;
  text-decoration: line-through
}
.daterangepicker select.monthselect,
.daterangepicker select.yearselect {
  font-size: 12px;
  padding: 1px;
  height: auto;
  margin: 0;
  cursor: default
}
.daterangepicker select.monthselect {
  margin-right: 2%;
  width: 56%
}
.daterangepicker select.yearselect {
  width: 40%
}
.daterangepicker select.hourselect,
.daterangepicker select.minuteselect,
.daterangepicker select.secondselect,
.daterangepicker select.ampmselect {
  width: 50px;
  margin-bottom: 0
}
.daterangepicker .input-mini {
  border: 1px solid #ccc;
  border-radius: 4px;
  color: #555;
  height: 30px;
  line-height: 30px;
  display: block;
  vertical-align: middle;
  margin: 0 0 5px 0;
  padding: 0 6px 0 28px;
  width: 100%
}
.daterangepicker .input-mini.active {
  border: 1px solid #08c;
  border-radius: 4px
}
.daterangepicker .daterangepicker_input {
  position: relative
}
.daterangepicker .daterangepicker_input i {
  position: absolute;
  left: 8px;
  top: 8px
}
.daterangepicker.rtl .input-mini {
  padding-right: 28px;
  padding-left: 6px
}
.daterangepicker.rtl .daterangepicker_input i {
  left: auto;
  right: 8px
}
.daterangepicker .calendar-time {
  text-align: center;
  margin: 5px auto;
  line-height: 30px;
  position: relative;
  padding-left: 28px
}
.daterangepicker .calendar-time select.disabled {
  color: #ccc;
  cursor: not-allowed
}
.ranges {
  font-size: 11px;
  float: none;
  margin: 4px;
  text-align: left
}
.ranges ul {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  width: 100%
}
.ranges li {
  font-size: 13px;
  background: #f5f5f5;
  border: 1px solid #f5f5f5;
  border-radius: 4px;
  color: #08c;
  padding: 3px 12px;
  margin-bottom: 8px;
  cursor: pointer
}
.ranges li:hover {
  background: #08c;
  border: 1px solid #08c;
  color: #fff
}
.ranges li.active {
  background: #08c;
  border: 1px solid #08c;
  color: #fff
}
@media(min-width:564px) {
  .daterangepicker {
    width: auto
  }
  .daterangepicker .ranges ul {
    width: 160px
  }
  .daterangepicker.single .ranges ul {
    width: 100%
  }
  .daterangepicker.single .calendar.left {
    clear: none
  }
  .daterangepicker.single.ltr .ranges,
  .daterangepicker.single.ltr .calendar {
    float: left
  }
  .daterangepicker.single.rtl .ranges,
  .daterangepicker.single.rtl .calendar {
    float: right
  }
  .daterangepicker.ltr {
    direction: ltr;
    text-align: left
  }
  .daterangepicker.ltr .calendar.left {
    clear: left;
    margin-right: 0
  }
  .daterangepicker.ltr .calendar.left .calendar-table {
    border-right: 0;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0
  }
  .daterangepicker.ltr .calendar.right {
    margin-left: 0
  }
  .daterangepicker.ltr .calendar.right .calendar-table {
    border-left: 0;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0
  }
  .daterangepicker.ltr .left .daterangepicker_input {
    padding-right: 12px
  }
  .daterangepicker.ltr .calendar.left .calendar-table {
    padding-right: 12px
  }
  .daterangepicker.ltr .ranges,
  .daterangepicker.ltr .calendar {
    float: left
  }
  .daterangepicker.rtl {
    direction: rtl;
    text-align: right
  }
  .daterangepicker.rtl .calendar.left {
    clear: right;
    margin-left: 0
  }
  .daterangepicker.rtl .calendar.left .calendar-table {
    border-left: 0;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0
  }
  .daterangepicker.rtl .calendar.right {
    margin-right: 0
  }
  .daterangepicker.rtl .calendar.right .calendar-table {
    border-right: 0;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0
  }
  .daterangepicker.rtl .left .daterangepicker_input {
    padding-left: 12px
  }
  .daterangepicker.rtl .calendar.left .calendar-table {
    padding-left: 12px
  }
  .daterangepicker.rtl .ranges,
  .daterangepicker.rtl .calendar {
    text-align: right;
    float: right
  }
}
@media(min-width:730px) {
  .daterangepicker .ranges {
    width: auto
  }
  .daterangepicker.ltr .ranges {
    float: left
  }
  .daterangepicker.rtl .ranges {
    float: right
  }
  .daterangepicker .calendar.left {
    clear: none !important
  }
}

/* mobile */

.m-header,
.m-footer {
  display: none;
  box-sizing: border-box;
  width: 100%;
  position: fixed;
  z-index: 299;
  background-color: #fff;
  height: 44px;
}
.m-header {
  top: 0;
  box-shadow: 0 1px 3px rgba(0, 0, 0, .1);
}
.m-footer {
  bottom: 0;
  box-shadow: 0 -1px 3px rgba(0, 0, 0, .1);
}
.m-header .items {
  height: inherit;
}
.m-footer .items .item {
  align-self: center;
}
.m-sitename {
    line-height: 44px;
    text-align: center;
    overflow: hidden;
}
.m-home a,
.m-bars a {
  display: block;
  padding: 8px 15px;
  color: inherit;
  opacity: 0.8;
}
.m-home a:active,
.m-bars a:active {
  opacity: 0.6;
}
body.m-body-top .wb-page {
  padding-top: 44px;
}
body.m-body-bottom .wb-page {
  padding-bottom: 44px;
}
body.m-body-top .m-header,
body.m-body-bottom .m-footer {
  display: block;
}
.vapp-menu,
.vapp-sub-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  cursor: default;
}
.vapp-menu {
  height: 44px;
}
.vapp-menu>li {
  position: relative;
  border-right: 1px solid #ddd;
}
.vapp-menu>li:last-child {
  border-right: none;
}
.vapp-menu .vapp-inner {
  display: block;
  text-align: center;
  color: inherit;
}
.vapp-menu .vapp-innerg {
  height: 44px;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -moz-justify-content: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -moz-align-items: center;
  -webkit-align-items: center;
  align-items: center;
}
.vapp-menu .vapp-inner:active {
  opacity: 0.6;
}
.vapp-inner__label {
  display: block;
  margin-top: 2px;
  font-size: 12px;
  line-height: 1;
}
.vapp-sub-menu {
  position: absolute;
  left: 5px;
  right: 5px;
  bottom: 59px;
  background-color: #f8f8f8;
  border: 1px solid #ddd;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(15px);
  transform: translateY(15px);
  -webkit-transition: all .3s;
  transition: all .3s;
  border-radius: 4px;
}
.vapp-sub-menu:after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 50%;
  margin-left: -6px;
  width: 10px;
  height: 10px;
  border-right: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  background-color: #f8f8f8;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.vapp-sub-menu>li {
  border-bottom: 1px solid #ddd;
}
.vapp-sub-menu>li>a {
  display: block;
  text-align: center;
  height: 38px;
  line-height: 38px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  color: #333;
}
.vapp-sub-menu>li:last-child {
  border-bottom: none;
}
.vapp-menu>li.on .vapp-sub-menu {
  visibility: visible;
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}
.vapp-menu>li.noborder {
  border: none;
}
.no-data {
  display: none;
}

/* 百度地图label修复 */

.BMapLabel {
  max-width: none;
}

/* go top */

.go-top {
  position: fixed;
  bottom: -100px;
  right: 12px;
  z-index: 1666;
  width: 32px;
  height: 32px;
  background: #999;
  color: #fff;
  cursor: pointer;
  border-radius: 3px;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.go-top i {
  display: block;
  padding: 8px 0 0 10px;
  font-size: 14px;
}
.go-top:hover {
  background: #333;
}
@media screen and (max-width: 767px) {
  .go-top {
    display: none;
  }
}

/**
 * 2017-11-22
 * 在线客服浮层样式
 */
.serviceBox {
  position: fixed;
  z-index: 10000;
  top: 200px;
  right: 0;
  width: 160px;
  min-height: 200px;
  padding: 14px 0;
  background-color: #fff;
  border:1px solid #dedede;
  transform: translateX(102%);
  transition: all .4s;
  transition-delay: .2s;
  user-select: none;
  box-shadow: 0 0 6px rgba(0,0,0,.15);
}
.serviceBox-btn {
  position: absolute;
  top: 50%;
  right: 100%;
  width: 46px;
  padding: 47px 10px 15px 10px;
  text-align: center;
  background-color: #fff;
  margin-top: -72px;
  border-radius: 4px 0 0 4px;
  border:1px solid #dedede;
  border-right: none;
  background-image:url(../images/kf_img.png);
  background-repeat: no-repeat;
  background-position: center 12px;
  background-size: 28px auto;
  box-shadow: -1px 0 6px rgba(0,0,0,.15);
}
.serviceBox-l {
  right: auto;
  left: 0;
  border-radius: 0 4px 4px 0;
  transform: translateX(-100%);
}
.serviceBox-l .serviceBox-btn {
  right: auto;
  left: 100%;
  box-shadow: 2px 0 6px rgba(0, 0, 0, .4);
}
.serviceBox .serviceBox-group,
.serviceBox .serviceBox-a {
  display: block;
  color: #555;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  cursor: pointer;
}
.serviceBox-group {
  height: 30px;
  line-height: 30px;
  margin: 6px 10px 0;
  padding: 0 10px;
  background-color: #eeeeee;
  border-left: 3px solid #dddddd;
}
.serviceBox-list {
  display: none;
}
.serviceBox-list.active {
  display: block;
}
.serviceBox-a {
  padding: 6px 10px;
  margin: 4px 10px;
  border-radius: 4px;
}
.serviceBox-a:hover {
  background-color: #f8f8f8;
}
.serviceBox-img {
  width: 20px;
  vertical-align: middle;
  margin-right: 6px;
}
.serviceBox-btn:hover,
.serviceBox:hover {
  transform: translateX(0);
}


/* quantity */
.qt-wrapper {
  margin-bottom: 15px;
}
.qt-group {
  display: inline-block;
  vertical-align: middle;
}
.qt-table {
  display: table;
  width: 150px;
}
.qt-increase,
.qt-decrease {
  display: table-cell;
  width: 34px;
  vertical-align: middle;
  text-align: center;
  font-size: 15px;
  border: 1px solid #ddd;
  cursor: pointer;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-color: #f5f5f5;
}
.qt-increase:hover,
.qt-decrease:hover {
  background-color: #f0f0f0;
}
.qt-increase.disabled,
.qt-decrease.disabled {
  background-color: #e6e6e6;
  color: #aaa;
  cursor: not-allowed;
}
.qt-input {
  display: table-cell;
  width: 100%;
  height: 34px;
  border: 1px solid #ddd;
  border-left-width: 0;
  border-right-width: 0;
  text-align: center;
  background-color: #fff;
}
.qt-input:focus {
  outline: none;
}
.qt-stock {
  color: #999;
  margin-left: 15px;
}
/* filter */
.filter-wrapper {
  font-size: 12px;
  line-height: 1.5;
}
.filter-selected {
  margin-bottom: 15px;
}
.filter-selected ul {
  list-style: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
}
.filter-selected ul li {
  float: left;
  background-color: #f5f5f5;
  border: 1px solid #ddd;
  height: 24px;
  line-height: 22px;
  padding-left: 5px;
  padding-right: 26px;
  margin-right: 5px;
  cursor: pointer;
  position: relative;
}
.filter-selected ul li em {
  font-style: normal;
  color: #c00;
}
.filter-selected ul li i {
  position: absolute;
  right: -1px;
  top: -1px;
  height: 24px;
  line-height: 24px;
  width: 24px;
  text-align: center;
  font-style: normal;
  font-size: 16px;
  font-family: sans-serif;
  color: #c00;
}
.filter-selected ul li:hover {
  border-color: #c00;
}
.filter-selected ul li:hover i {
  background-color: #c00;
  color: #fff;
}
.filter-row {
  position: relative;
  background-color: #f2f2f2;
  border-bottom: 1px solid #ddd;
}
.filter-label {
  position: absolute;
  width: 100px;
  left: 0;
  top: 0;
}
.filter-label span {
  display: block;
  padding: 8px 10px;
}
.filter-container {
  border-top: 1px solid #ddd;
}
.filter-items {
  height: 34px;
  margin-left: 100px;
  padding-right: 125px;
  background-color: #fff;
  overflow: hidden;
}
.filter-items ul {
  list-style: none;
  margin: 0;
  padding: 5px 0 0;
  overflow: hidden;
}
.filter-items ul li {
  float: left;
  margin-left: 15px;
  margin-right: 15px;
  margin-bottom: 5px;
}
.filter-items ul li span {
  display: block;
  padding: 3px 0;
  cursor: pointer;
}
.filter-items ul li span:before {
  content: "";
  display: none;
  float: left;
  width: 14px;
  height: 14px;
  border: 1px solid;
  margin-right: 5px;
  margin-top: 2px;
  opacity: .4;
  background: url(/static/images/mall_filter.png) no-repeat 999px 999px;
}
.filter-items ul li span:hover {
  color: #c00;
}
.filter-items ul li span.selected {
  color: #c00;
}
.filter-items ul li span.selected:before {
  background-position: -1px -107px;
  opacity: 1;
}
.filter-extend {
  width: 125px;
  position: absolute;
  right: 0;
  top: 0;
  text-align: right;
}
.filter-extend span {
  display: inline-block;
  padding: 2px 4px 2px 18px;
  border: 1px solid #ddd;
  cursor: pointer;
  margin-top: 5px;
  margin-right: 10px;
  color: #666;
  background: url(/static/images/mall_filter.png) no-repeat;
}
.filter-extend .more {
  background-position: 2px 9px;
}
.filter-extend .multi {
  background-position: 2px -62px;
}
.filter-buttons {
  display: none;
  text-align: center;
}
.filter-buttons span {
  display: inline-block;
  cursor: pointer;
  padding: 2px 10px;
  margin: 5px;
  border: 1px solid #ddd;
  color: #666;
}
.filter-buttons .confirm {
  visibility: hidden;
  border-color: #c00;
  background-color: #c00;
  color: #fff;
}
.filter-buttons span.in {
  visibility: visible;
}
.filter-row.multiple {
  background-color: #fff6e4;
  border: 2px solid #efd395;
  margin-top: -1px;
}
.filter-row.open .filter-items {
  height: auto;
}
.filter-row.open .filter-extend .more {
  background-position: 2px -26px;
}
.filter-row.multiple .filter-items {
  padding-right: 0;
  height: auto;
}
.filter-row.multiple .filter-items ul li span:before {
  display: block;
}
.filter-row.multiple .filter-extend {
  display: none;
}
.filter-row.multiple .filter-buttons {
  display: block;
}

/* loading icon */
.text-item {
  height: 600px;
}
.loadEffect{
  width: 100px;
  height: 100px;
  position: relative;
  color: inherit;
  display: inline-block;
}
.loadEffect span{
  display: inline-block;
  width: 30px;
  height: 10px;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
  background: currentColor;
  position: absolute;
  animation: load 1.04s ease infinite;
}
@-webkit-keyframes load{
  0%{
    opacity: 1;
  }
  100%{
    opacity: 0.2;
  }
}
@keyframes load{
  0%{
    opacity: 1;
  }
  100%{
    opacity: 0.2;
  }
}
.loadEffect span:nth-child(1){
  left: 0;
  top: 50%;
  margin-top:-5px;
  animation-delay:0.13s;
}
.loadEffect span:nth-child(2){
  left: 10px;
  top: 20px;
  transform: rotate(45deg);
  animation-delay:0.26s;
}
.loadEffect span:nth-child(3){
  left: 50%;
  top: 10px;
  margin-left: -15px;
  transform: rotate(90deg);
  animation-delay:0.39s;
}
.loadEffect span:nth-child(4){
  top: 20px;
  right:10px;
  transform: rotate(135deg);
  animation-delay:0.52s;
}
.loadEffect span:nth-child(5){
  right: 0;
  top: 50%;
  margin-top:-5px;
  transform: rotate(180deg);
  animation-delay:0.65s;
}
.loadEffect span:nth-child(6){
  right: 10px;
  bottom:20px;
  transform: rotate(225deg);
  animation-delay:0.78s;
}
.loadEffect span:nth-child(7){
  bottom: 10px;
  left: 50%;
  margin-left: -15px;
  transform: rotate(270deg);
  animation-delay:0.91s;
}
.loadEffect span:nth-child(8){
  bottom: 20px;
  left: 10px;
  transform: rotate(315deg);
  animation-delay:1.04s;
}

/* light loading */
.light-loading {
  position: fixed;
  left: 50%;
  z-index: 999;
  background-color: rgba(0,0,0,.6);
  border-radius: 4px;
  transform: translateX(-50%);
  color: #fff;
}
.light-loading__wrap {
  display: table;
}
.light-loading__icon {
  display: table-cell;
  width: 36px;
  vertical-align: middle;
  text-align: center;
}
.light-loading__effect {
  width: inherit;
  height: 36px;
  overflow: hidden;
  position: relative;
}
.light-loading__effect > div {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate3d(-50%, -50%, 0) scale(.2);
}
.light-loading__text {
  display: table-cell;
  vertical-align: middle;
  padding-right: 10px;
  color: currentColor;
}
.light-loading__bottom {
  bottom: 60px;
}
.light-loading__top {
  top: 60px;
}
.light-loading__center {
  top: 50%;
  transform: translateY(-50%);
}
/*弹出模态框*/
.main-modal{
  position: fixed;
  top:0;
  left:0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0,0,0,0.3);
  z-index: 300;
}

.main-modal__box{
  position: absolute;
  top: 50%;
  left: 50%;
  width: 950px;
  transform: translate(-50%, -50%);
  background-color:#fff;
  border-radius: 5px;
  overflow: hidden;
}

.main-modal__hd{
  padding:15px;
  font-size: 18px;
  font-weight: bold;
  border-bottom:1px solid #dedede;
  background-color: #f2f2f2;
}

.main-modal__bd{
  padding:15px;
  height:600px;
  overflow-y: auto;
}
.main-modal__bd img{
  max-width: 100%;
}
.main-modal__link{
  padding:15px 15px 5px;
}
.main-modal__link--item{
  margin-right: 10px;
  margin-bottom: 10px;
}

.main-modal__ft{
  padding:15px;
  border-top:1px solid #dedede;
  text-align: center;
}
.main-modal__ft--btn{
  margin-right:15px;
  padding:6px 22px;
  border:none;
  outline: none;
  background-color:#eee;
  border-radius: 5px;
}
.main-modal__ft--btn:hover{
  opacity: 0.9;
}
.main-modal__ft--btn:last-child{
  margin-right: 0;
}


@media (max-width: 970px) {
  .main-modal__box{
    width: 85%;
  }
  .main-modal__bd{
    height:300px;
  }
}
