@charset "UTF-8";
/* 动画 */
@keyframes keyframes-show {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes keyframes-hide {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
*, ::before, ::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  /*移动端点击高亮效果的清除*/
  -webkit-tap-highlight-color: transparent;
}

html {
  font-size: 16px;
}

a {
  color: inherit;
  text-decoration: none;
}

ol,
ul {
  list-style: none;
}

button {
  border: none;
  background-color: transparent;
}

input, textarea {
  background-color: transparent;
  border: none;
  outline: none;
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
}

button, img, svg, input {
  vertical-align: middle;
  display: inline-block;
}

.catpos {
  display: -moz-box;
  display: -webkit-box;
  display: box;
  display: flexbox;
  display: flex;
}

.hide {
  display: none !important;
}

.clear {
  clear: both;
}

.ellipsis {
  overflow: hidden;
  -ms-text-overflow: ellipsis;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 100%;
}

.btn {
  cursor: pointer;
}

.modal {
  left: 0;
  top: 0;
  position: fixed;
  width: 100%;
  min-width: 100%;
  height: 100%;
  z-index: 1000;
  background-color: rgba(0, 0, 0, 0.7);
  pointer-events: none;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s;
}
.modal:target {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.ani-show {
  animation: keyframes-show 0.5s forwards;
}

.ani-hide {
  animation: keyframes-hide 0.5s forwards;
}

.vertical {
  display: -moz-box;
  display: -webkit-box;
  display: box;
  display: flexbox;
  display: flex;
  flex-direction: column;
}

.horizontal {
  display: -moz-box;
  display: -webkit-box;
  display: box;
  display: flexbox;
  display: flex;
  flex-direction: row;
}

.text-center {
  text-align: center;
}

.center {
  justify-content: center !important;
}

.fill {
  flex: 1;
  width: 0;
}

.v-fill {
  flex: 1;
  width: auto;
  height: 0;
}

.wrap {
  flex-wrap: wrap;
}

.middle {
  align-items: center !important;
}

.space-between {
  justify-content: space-between;
}

.hide {
  display: none !important;
}

.show {
  display: initial;
}

.hide-scrollbar::-webkit-scrollbar {
  width: 0 !important;
  height: 0 !important;
}
.hide-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.line-4, .line-3, .line-2, .line-1 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.line-1 {
  -webkit-line-clamp: 1;
}

.line-2 {
  -webkit-line-clamp: 2;
}

.line-3 {
  -webkit-line-clamp: 3;
}

.line-4 {
  -webkit-line-clamp: 4;
}

.solid-b {
  border-bottom: 1px solid #e6e7eb;
}

.bold {
  font-weight: bold;
}

.full-x {
  width: 100% !important;
}

.full-y {
  height: 100% !important;
}

.full {
  width: 100% !important;
  height: 100% !important;
}

.font-bold {
  font-weight: bold;
}

.font-normal {
  font-weight: normal;
}

.cover {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0, transparent 100%);
}

/* 常用内外边距 start */
.m-0 {
  margin: 0px !important;
}
.mx-0 {
  margin-left: 0px !important;
  margin-right: 0px !important;
}
.my-0 {
  margin-top: 0px !important;
  margin-bottom: 0px !important;
}
.mt-0 {
  margin-top: 0px !important;
}
.mr-0 {
  margin-right: 0px !important;
}
.mb-0 {
  margin-bottom: 0px !important;
}
.ml-0 {
  margin-left: 0px !important;
}

.p-0 {
  padding: 0px !important;
}
.px-0 {
  padding-left: 0px !important;
  padding-right: 0px !important;
}
.py-0 {
  padding-top: 0px !important;
  padding-bottom: 0px !important;
}
.pt-0 {
  padding-top: 0px !important;
}
.pr-0 {
  padding-right: 0px !important;
}
.pb-0 {
  padding-bottom: 0px !important;
}
.pl-0 {
  padding-left: 0px !important;
}

.t-0 {
  top: 0px !important;
}

.r-0 {
  right: 0px !important;
}

.b-0 {
  bottom: 0px !important;
}

.l-0 {
  left: 0px !important;
}

.m-2 {
  margin: 2px !important;
}
.mx-2 {
  margin-left: 2px !important;
  margin-right: 2px !important;
}
.my-2 {
  margin-top: 2px !important;
  margin-bottom: 2px !important;
}
.mt-2 {
  margin-top: 2px !important;
}
.mr-2 {
  margin-right: 2px !important;
}
.mb-2 {
  margin-bottom: 2px !important;
}
.ml-2 {
  margin-left: 2px !important;
}

.p-2 {
  padding: 2px !important;
}
.px-2 {
  padding-left: 2px !important;
  padding-right: 2px !important;
}
.py-2 {
  padding-top: 2px !important;
  padding-bottom: 2px !important;
}
.pt-2 {
  padding-top: 2px !important;
}
.pr-2 {
  padding-right: 2px !important;
}
.pb-2 {
  padding-bottom: 2px !important;
}
.pl-2 {
  padding-left: 2px !important;
}

.t-2 {
  top: 2px !important;
}

.r-2 {
  right: 2px !important;
}

.b-2 {
  bottom: 2px !important;
}

.l-2 {
  left: 2px !important;
}

.m-3 {
  margin: 3px !important;
}
.mx-3 {
  margin-left: 3px !important;
  margin-right: 3px !important;
}
.my-3 {
  margin-top: 3px !important;
  margin-bottom: 3px !important;
}
.mt-3 {
  margin-top: 3px !important;
}
.mr-3 {
  margin-right: 3px !important;
}
.mb-3 {
  margin-bottom: 3px !important;
}
.ml-3 {
  margin-left: 3px !important;
}

.p-3 {
  padding: 3px !important;
}
.px-3 {
  padding-left: 3px !important;
  padding-right: 3px !important;
}
.py-3 {
  padding-top: 3px !important;
  padding-bottom: 3px !important;
}
.pt-3 {
  padding-top: 3px !important;
}
.pr-3 {
  padding-right: 3px !important;
}
.pb-3 {
  padding-bottom: 3px !important;
}
.pl-3 {
  padding-left: 3px !important;
}

.t-3 {
  top: 3px !important;
}

.r-3 {
  right: 3px !important;
}

.b-3 {
  bottom: 3px !important;
}

.l-3 {
  left: 3px !important;
}

.m-4 {
  margin: 4px !important;
}
.mx-4 {
  margin-left: 4px !important;
  margin-right: 4px !important;
}
.my-4 {
  margin-top: 4px !important;
  margin-bottom: 4px !important;
}
.mt-4 {
  margin-top: 4px !important;
}
.mr-4 {
  margin-right: 4px !important;
}
.mb-4 {
  margin-bottom: 4px !important;
}
.ml-4 {
  margin-left: 4px !important;
}

.p-4 {
  padding: 4px !important;
}
.px-4 {
  padding-left: 4px !important;
  padding-right: 4px !important;
}
.py-4 {
  padding-top: 4px !important;
  padding-bottom: 4px !important;
}
.pt-4 {
  padding-top: 4px !important;
}
.pr-4 {
  padding-right: 4px !important;
}
.pb-4 {
  padding-bottom: 4px !important;
}
.pl-4 {
  padding-left: 4px !important;
}

.t-4 {
  top: 4px !important;
}

.r-4 {
  right: 4px !important;
}

.b-4 {
  bottom: 4px !important;
}

.l-4 {
  left: 4px !important;
}

.m-6 {
  margin: 6px !important;
}
.mx-6 {
  margin-left: 6px !important;
  margin-right: 6px !important;
}
.my-6 {
  margin-top: 6px !important;
  margin-bottom: 6px !important;
}
.mt-6 {
  margin-top: 6px !important;
}
.mr-6 {
  margin-right: 6px !important;
}
.mb-6 {
  margin-bottom: 6px !important;
}
.ml-6 {
  margin-left: 6px !important;
}

.p-6 {
  padding: 6px !important;
}
.px-6 {
  padding-left: 6px !important;
  padding-right: 6px !important;
}
.py-6 {
  padding-top: 6px !important;
  padding-bottom: 6px !important;
}
.pt-6 {
  padding-top: 6px !important;
}
.pr-6 {
  padding-right: 6px !important;
}
.pb-6 {
  padding-bottom: 6px !important;
}
.pl-6 {
  padding-left: 6px !important;
}

.t-6 {
  top: 6px !important;
}

.r-6 {
  right: 6px !important;
}

.b-6 {
  bottom: 6px !important;
}

.l-6 {
  left: 6px !important;
}

.m-8 {
  margin: 8px !important;
}
.mx-8 {
  margin-left: 8px !important;
  margin-right: 8px !important;
}
.my-8 {
  margin-top: 8px !important;
  margin-bottom: 8px !important;
}
.mt-8 {
  margin-top: 8px !important;
}
.mr-8 {
  margin-right: 8px !important;
}
.mb-8 {
  margin-bottom: 8px !important;
}
.ml-8 {
  margin-left: 8px !important;
}

.p-8 {
  padding: 8px !important;
}
.px-8 {
  padding-left: 8px !important;
  padding-right: 8px !important;
}
.py-8 {
  padding-top: 8px !important;
  padding-bottom: 8px !important;
}
.pt-8 {
  padding-top: 8px !important;
}
.pr-8 {
  padding-right: 8px !important;
}
.pb-8 {
  padding-bottom: 8px !important;
}
.pl-8 {
  padding-left: 8px !important;
}

.t-8 {
  top: 8px !important;
}

.r-8 {
  right: 8px !important;
}

.b-8 {
  bottom: 8px !important;
}

.l-8 {
  left: 8px !important;
}

.m-10 {
  margin: 10px !important;
}
.mx-10 {
  margin-left: 10px !important;
  margin-right: 10px !important;
}
.my-10 {
  margin-top: 10px !important;
  margin-bottom: 10px !important;
}
.mt-10 {
  margin-top: 10px !important;
}
.mr-10 {
  margin-right: 10px !important;
}
.mb-10 {
  margin-bottom: 10px !important;
}
.ml-10 {
  margin-left: 10px !important;
}

.p-10 {
  padding: 10px !important;
}
.px-10 {
  padding-left: 10px !important;
  padding-right: 10px !important;
}
.py-10 {
  padding-top: 10px !important;
  padding-bottom: 10px !important;
}
.pt-10 {
  padding-top: 10px !important;
}
.pr-10 {
  padding-right: 10px !important;
}
.pb-10 {
  padding-bottom: 10px !important;
}
.pl-10 {
  padding-left: 10px !important;
}

.t-10 {
  top: 10px !important;
}

.r-10 {
  right: 10px !important;
}

.b-10 {
  bottom: 10px !important;
}

.l-10 {
  left: 10px !important;
}

.m-12 {
  margin: 12px !important;
}
.mx-12 {
  margin-left: 12px !important;
  margin-right: 12px !important;
}
.my-12 {
  margin-top: 12px !important;
  margin-bottom: 12px !important;
}
.mt-12 {
  margin-top: 12px !important;
}
.mr-12 {
  margin-right: 12px !important;
}
.mb-12 {
  margin-bottom: 12px !important;
}
.ml-12 {
  margin-left: 12px !important;
}

.p-12 {
  padding: 12px !important;
}
.px-12 {
  padding-left: 12px !important;
  padding-right: 12px !important;
}
.py-12 {
  padding-top: 12px !important;
  padding-bottom: 12px !important;
}
.pt-12 {
  padding-top: 12px !important;
}
.pr-12 {
  padding-right: 12px !important;
}
.pb-12 {
  padding-bottom: 12px !important;
}
.pl-12 {
  padding-left: 12px !important;
}

.t-12 {
  top: 12px !important;
}

.r-12 {
  right: 12px !important;
}

.b-12 {
  bottom: 12px !important;
}

.l-12 {
  left: 12px !important;
}

.m-14 {
  margin: 14px !important;
}
.mx-14 {
  margin-left: 14px !important;
  margin-right: 14px !important;
}
.my-14 {
  margin-top: 14px !important;
  margin-bottom: 14px !important;
}
.mt-14 {
  margin-top: 14px !important;
}
.mr-14 {
  margin-right: 14px !important;
}
.mb-14 {
  margin-bottom: 14px !important;
}
.ml-14 {
  margin-left: 14px !important;
}

.p-14 {
  padding: 14px !important;
}
.px-14 {
  padding-left: 14px !important;
  padding-right: 14px !important;
}
.py-14 {
  padding-top: 14px !important;
  padding-bottom: 14px !important;
}
.pt-14 {
  padding-top: 14px !important;
}
.pr-14 {
  padding-right: 14px !important;
}
.pb-14 {
  padding-bottom: 14px !important;
}
.pl-14 {
  padding-left: 14px !important;
}

.t-14 {
  top: 14px !important;
}

.r-14 {
  right: 14px !important;
}

.b-14 {
  bottom: 14px !important;
}

.l-14 {
  left: 14px !important;
}

.m-16 {
  margin: 16px !important;
}
.mx-16 {
  margin-left: 16px !important;
  margin-right: 16px !important;
}
.my-16 {
  margin-top: 16px !important;
  margin-bottom: 16px !important;
}
.mt-16 {
  margin-top: 16px !important;
}
.mr-16 {
  margin-right: 16px !important;
}
.mb-16 {
  margin-bottom: 16px !important;
}
.ml-16 {
  margin-left: 16px !important;
}

.p-16 {
  padding: 16px !important;
}
.px-16 {
  padding-left: 16px !important;
  padding-right: 16px !important;
}
.py-16 {
  padding-top: 16px !important;
  padding-bottom: 16px !important;
}
.pt-16 {
  padding-top: 16px !important;
}
.pr-16 {
  padding-right: 16px !important;
}
.pb-16 {
  padding-bottom: 16px !important;
}
.pl-16 {
  padding-left: 16px !important;
}

.t-16 {
  top: 16px !important;
}

.r-16 {
  right: 16px !important;
}

.b-16 {
  bottom: 16px !important;
}

.l-16 {
  left: 16px !important;
}

.m-18 {
  margin: 18px !important;
}
.mx-18 {
  margin-left: 18px !important;
  margin-right: 18px !important;
}
.my-18 {
  margin-top: 18px !important;
  margin-bottom: 18px !important;
}
.mt-18 {
  margin-top: 18px !important;
}
.mr-18 {
  margin-right: 18px !important;
}
.mb-18 {
  margin-bottom: 18px !important;
}
.ml-18 {
  margin-left: 18px !important;
}

.p-18 {
  padding: 18px !important;
}
.px-18 {
  padding-left: 18px !important;
  padding-right: 18px !important;
}
.py-18 {
  padding-top: 18px !important;
  padding-bottom: 18px !important;
}
.pt-18 {
  padding-top: 18px !important;
}
.pr-18 {
  padding-right: 18px !important;
}
.pb-18 {
  padding-bottom: 18px !important;
}
.pl-18 {
  padding-left: 18px !important;
}

.t-18 {
  top: 18px !important;
}

.r-18 {
  right: 18px !important;
}

.b-18 {
  bottom: 18px !important;
}

.l-18 {
  left: 18px !important;
}

.m-20 {
  margin: 20px !important;
}
.mx-20 {
  margin-left: 20px !important;
  margin-right: 20px !important;
}
.my-20 {
  margin-top: 20px !important;
  margin-bottom: 20px !important;
}
.mt-20 {
  margin-top: 20px !important;
}
.mr-20 {
  margin-right: 20px !important;
}
.mb-20 {
  margin-bottom: 20px !important;
}
.ml-20 {
  margin-left: 20px !important;
}

.p-20 {
  padding: 20px !important;
}
.px-20 {
  padding-left: 20px !important;
  padding-right: 20px !important;
}
.py-20 {
  padding-top: 20px !important;
  padding-bottom: 20px !important;
}
.pt-20 {
  padding-top: 20px !important;
}
.pr-20 {
  padding-right: 20px !important;
}
.pb-20 {
  padding-bottom: 20px !important;
}
.pl-20 {
  padding-left: 20px !important;
}

.t-20 {
  top: 20px !important;
}

.r-20 {
  right: 20px !important;
}

.b-20 {
  bottom: 20px !important;
}

.l-20 {
  left: 20px !important;
}

.m-22 {
  margin: 22px !important;
}
.mx-22 {
  margin-left: 22px !important;
  margin-right: 22px !important;
}
.my-22 {
  margin-top: 22px !important;
  margin-bottom: 22px !important;
}
.mt-22 {
  margin-top: 22px !important;
}
.mr-22 {
  margin-right: 22px !important;
}
.mb-22 {
  margin-bottom: 22px !important;
}
.ml-22 {
  margin-left: 22px !important;
}

.p-22 {
  padding: 22px !important;
}
.px-22 {
  padding-left: 22px !important;
  padding-right: 22px !important;
}
.py-22 {
  padding-top: 22px !important;
  padding-bottom: 22px !important;
}
.pt-22 {
  padding-top: 22px !important;
}
.pr-22 {
  padding-right: 22px !important;
}
.pb-22 {
  padding-bottom: 22px !important;
}
.pl-22 {
  padding-left: 22px !important;
}

.t-22 {
  top: 22px !important;
}

.r-22 {
  right: 22px !important;
}

.b-22 {
  bottom: 22px !important;
}

.l-22 {
  left: 22px !important;
}

.m-24 {
  margin: 24px !important;
}
.mx-24 {
  margin-left: 24px !important;
  margin-right: 24px !important;
}
.my-24 {
  margin-top: 24px !important;
  margin-bottom: 24px !important;
}
.mt-24 {
  margin-top: 24px !important;
}
.mr-24 {
  margin-right: 24px !important;
}
.mb-24 {
  margin-bottom: 24px !important;
}
.ml-24 {
  margin-left: 24px !important;
}

.p-24 {
  padding: 24px !important;
}
.px-24 {
  padding-left: 24px !important;
  padding-right: 24px !important;
}
.py-24 {
  padding-top: 24px !important;
  padding-bottom: 24px !important;
}
.pt-24 {
  padding-top: 24px !important;
}
.pr-24 {
  padding-right: 24px !important;
}
.pb-24 {
  padding-bottom: 24px !important;
}
.pl-24 {
  padding-left: 24px !important;
}

.t-24 {
  top: 24px !important;
}

.r-24 {
  right: 24px !important;
}

.b-24 {
  bottom: 24px !important;
}

.l-24 {
  left: 24px !important;
}

.m-25 {
  margin: 25px !important;
}
.mx-25 {
  margin-left: 25px !important;
  margin-right: 25px !important;
}
.my-25 {
  margin-top: 25px !important;
  margin-bottom: 25px !important;
}
.mt-25 {
  margin-top: 25px !important;
}
.mr-25 {
  margin-right: 25px !important;
}
.mb-25 {
  margin-bottom: 25px !important;
}
.ml-25 {
  margin-left: 25px !important;
}

.p-25 {
  padding: 25px !important;
}
.px-25 {
  padding-left: 25px !important;
  padding-right: 25px !important;
}
.py-25 {
  padding-top: 25px !important;
  padding-bottom: 25px !important;
}
.pt-25 {
  padding-top: 25px !important;
}
.pr-25 {
  padding-right: 25px !important;
}
.pb-25 {
  padding-bottom: 25px !important;
}
.pl-25 {
  padding-left: 25px !important;
}

.t-25 {
  top: 25px !important;
}

.r-25 {
  right: 25px !important;
}

.b-25 {
  bottom: 25px !important;
}

.l-25 {
  left: 25px !important;
}

.m-26 {
  margin: 26px !important;
}
.mx-26 {
  margin-left: 26px !important;
  margin-right: 26px !important;
}
.my-26 {
  margin-top: 26px !important;
  margin-bottom: 26px !important;
}
.mt-26 {
  margin-top: 26px !important;
}
.mr-26 {
  margin-right: 26px !important;
}
.mb-26 {
  margin-bottom: 26px !important;
}
.ml-26 {
  margin-left: 26px !important;
}

.p-26 {
  padding: 26px !important;
}
.px-26 {
  padding-left: 26px !important;
  padding-right: 26px !important;
}
.py-26 {
  padding-top: 26px !important;
  padding-bottom: 26px !important;
}
.pt-26 {
  padding-top: 26px !important;
}
.pr-26 {
  padding-right: 26px !important;
}
.pb-26 {
  padding-bottom: 26px !important;
}
.pl-26 {
  padding-left: 26px !important;
}

.t-26 {
  top: 26px !important;
}

.r-26 {
  right: 26px !important;
}

.b-26 {
  bottom: 26px !important;
}

.l-26 {
  left: 26px !important;
}

.m-28 {
  margin: 28px !important;
}
.mx-28 {
  margin-left: 28px !important;
  margin-right: 28px !important;
}
.my-28 {
  margin-top: 28px !important;
  margin-bottom: 28px !important;
}
.mt-28 {
  margin-top: 28px !important;
}
.mr-28 {
  margin-right: 28px !important;
}
.mb-28 {
  margin-bottom: 28px !important;
}
.ml-28 {
  margin-left: 28px !important;
}

.p-28 {
  padding: 28px !important;
}
.px-28 {
  padding-left: 28px !important;
  padding-right: 28px !important;
}
.py-28 {
  padding-top: 28px !important;
  padding-bottom: 28px !important;
}
.pt-28 {
  padding-top: 28px !important;
}
.pr-28 {
  padding-right: 28px !important;
}
.pb-28 {
  padding-bottom: 28px !important;
}
.pl-28 {
  padding-left: 28px !important;
}

.t-28 {
  top: 28px !important;
}

.r-28 {
  right: 28px !important;
}

.b-28 {
  bottom: 28px !important;
}

.l-28 {
  left: 28px !important;
}

.m-30 {
  margin: 30px !important;
}
.mx-30 {
  margin-left: 30px !important;
  margin-right: 30px !important;
}
.my-30 {
  margin-top: 30px !important;
  margin-bottom: 30px !important;
}
.mt-30 {
  margin-top: 30px !important;
}
.mr-30 {
  margin-right: 30px !important;
}
.mb-30 {
  margin-bottom: 30px !important;
}
.ml-30 {
  margin-left: 30px !important;
}

.p-30 {
  padding: 30px !important;
}
.px-30 {
  padding-left: 30px !important;
  padding-right: 30px !important;
}
.py-30 {
  padding-top: 30px !important;
  padding-bottom: 30px !important;
}
.pt-30 {
  padding-top: 30px !important;
}
.pr-30 {
  padding-right: 30px !important;
}
.pb-30 {
  padding-bottom: 30px !important;
}
.pl-30 {
  padding-left: 30px !important;
}

.t-30 {
  top: 30px !important;
}

.r-30 {
  right: 30px !important;
}

.b-30 {
  bottom: 30px !important;
}

.l-30 {
  left: 30px !important;
}

.m-32 {
  margin: 32px !important;
}
.mx-32 {
  margin-left: 32px !important;
  margin-right: 32px !important;
}
.my-32 {
  margin-top: 32px !important;
  margin-bottom: 32px !important;
}
.mt-32 {
  margin-top: 32px !important;
}
.mr-32 {
  margin-right: 32px !important;
}
.mb-32 {
  margin-bottom: 32px !important;
}
.ml-32 {
  margin-left: 32px !important;
}

.p-32 {
  padding: 32px !important;
}
.px-32 {
  padding-left: 32px !important;
  padding-right: 32px !important;
}
.py-32 {
  padding-top: 32px !important;
  padding-bottom: 32px !important;
}
.pt-32 {
  padding-top: 32px !important;
}
.pr-32 {
  padding-right: 32px !important;
}
.pb-32 {
  padding-bottom: 32px !important;
}
.pl-32 {
  padding-left: 32px !important;
}

.t-32 {
  top: 32px !important;
}

.r-32 {
  right: 32px !important;
}

.b-32 {
  bottom: 32px !important;
}

.l-32 {
  left: 32px !important;
}

.m-34 {
  margin: 34px !important;
}
.mx-34 {
  margin-left: 34px !important;
  margin-right: 34px !important;
}
.my-34 {
  margin-top: 34px !important;
  margin-bottom: 34px !important;
}
.mt-34 {
  margin-top: 34px !important;
}
.mr-34 {
  margin-right: 34px !important;
}
.mb-34 {
  margin-bottom: 34px !important;
}
.ml-34 {
  margin-left: 34px !important;
}

.p-34 {
  padding: 34px !important;
}
.px-34 {
  padding-left: 34px !important;
  padding-right: 34px !important;
}
.py-34 {
  padding-top: 34px !important;
  padding-bottom: 34px !important;
}
.pt-34 {
  padding-top: 34px !important;
}
.pr-34 {
  padding-right: 34px !important;
}
.pb-34 {
  padding-bottom: 34px !important;
}
.pl-34 {
  padding-left: 34px !important;
}

.t-34 {
  top: 34px !important;
}

.r-34 {
  right: 34px !important;
}

.b-34 {
  bottom: 34px !important;
}

.l-34 {
  left: 34px !important;
}

.m-36 {
  margin: 36px !important;
}
.mx-36 {
  margin-left: 36px !important;
  margin-right: 36px !important;
}
.my-36 {
  margin-top: 36px !important;
  margin-bottom: 36px !important;
}
.mt-36 {
  margin-top: 36px !important;
}
.mr-36 {
  margin-right: 36px !important;
}
.mb-36 {
  margin-bottom: 36px !important;
}
.ml-36 {
  margin-left: 36px !important;
}

.p-36 {
  padding: 36px !important;
}
.px-36 {
  padding-left: 36px !important;
  padding-right: 36px !important;
}
.py-36 {
  padding-top: 36px !important;
  padding-bottom: 36px !important;
}
.pt-36 {
  padding-top: 36px !important;
}
.pr-36 {
  padding-right: 36px !important;
}
.pb-36 {
  padding-bottom: 36px !important;
}
.pl-36 {
  padding-left: 36px !important;
}

.t-36 {
  top: 36px !important;
}

.r-36 {
  right: 36px !important;
}

.b-36 {
  bottom: 36px !important;
}

.l-36 {
  left: 36px !important;
}

.m-38 {
  margin: 38px !important;
}
.mx-38 {
  margin-left: 38px !important;
  margin-right: 38px !important;
}
.my-38 {
  margin-top: 38px !important;
  margin-bottom: 38px !important;
}
.mt-38 {
  margin-top: 38px !important;
}
.mr-38 {
  margin-right: 38px !important;
}
.mb-38 {
  margin-bottom: 38px !important;
}
.ml-38 {
  margin-left: 38px !important;
}

.p-38 {
  padding: 38px !important;
}
.px-38 {
  padding-left: 38px !important;
  padding-right: 38px !important;
}
.py-38 {
  padding-top: 38px !important;
  padding-bottom: 38px !important;
}
.pt-38 {
  padding-top: 38px !important;
}
.pr-38 {
  padding-right: 38px !important;
}
.pb-38 {
  padding-bottom: 38px !important;
}
.pl-38 {
  padding-left: 38px !important;
}

.t-38 {
  top: 38px !important;
}

.r-38 {
  right: 38px !important;
}

.b-38 {
  bottom: 38px !important;
}

.l-38 {
  left: 38px !important;
}

.m-40 {
  margin: 40px !important;
}
.mx-40 {
  margin-left: 40px !important;
  margin-right: 40px !important;
}
.my-40 {
  margin-top: 40px !important;
  margin-bottom: 40px !important;
}
.mt-40 {
  margin-top: 40px !important;
}
.mr-40 {
  margin-right: 40px !important;
}
.mb-40 {
  margin-bottom: 40px !important;
}
.ml-40 {
  margin-left: 40px !important;
}

.p-40 {
  padding: 40px !important;
}
.px-40 {
  padding-left: 40px !important;
  padding-right: 40px !important;
}
.py-40 {
  padding-top: 40px !important;
  padding-bottom: 40px !important;
}
.pt-40 {
  padding-top: 40px !important;
}
.pr-40 {
  padding-right: 40px !important;
}
.pb-40 {
  padding-bottom: 40px !important;
}
.pl-40 {
  padding-left: 40px !important;
}

.t-40 {
  top: 40px !important;
}

.r-40 {
  right: 40px !important;
}

.b-40 {
  bottom: 40px !important;
}

.l-40 {
  left: 40px !important;
}

.m-42 {
  margin: 42px !important;
}
.mx-42 {
  margin-left: 42px !important;
  margin-right: 42px !important;
}
.my-42 {
  margin-top: 42px !important;
  margin-bottom: 42px !important;
}
.mt-42 {
  margin-top: 42px !important;
}
.mr-42 {
  margin-right: 42px !important;
}
.mb-42 {
  margin-bottom: 42px !important;
}
.ml-42 {
  margin-left: 42px !important;
}

.p-42 {
  padding: 42px !important;
}
.px-42 {
  padding-left: 42px !important;
  padding-right: 42px !important;
}
.py-42 {
  padding-top: 42px !important;
  padding-bottom: 42px !important;
}
.pt-42 {
  padding-top: 42px !important;
}
.pr-42 {
  padding-right: 42px !important;
}
.pb-42 {
  padding-bottom: 42px !important;
}
.pl-42 {
  padding-left: 42px !important;
}

.t-42 {
  top: 42px !important;
}

.r-42 {
  right: 42px !important;
}

.b-42 {
  bottom: 42px !important;
}

.l-42 {
  left: 42px !important;
}

.m-44 {
  margin: 44px !important;
}
.mx-44 {
  margin-left: 44px !important;
  margin-right: 44px !important;
}
.my-44 {
  margin-top: 44px !important;
  margin-bottom: 44px !important;
}
.mt-44 {
  margin-top: 44px !important;
}
.mr-44 {
  margin-right: 44px !important;
}
.mb-44 {
  margin-bottom: 44px !important;
}
.ml-44 {
  margin-left: 44px !important;
}

.p-44 {
  padding: 44px !important;
}
.px-44 {
  padding-left: 44px !important;
  padding-right: 44px !important;
}
.py-44 {
  padding-top: 44px !important;
  padding-bottom: 44px !important;
}
.pt-44 {
  padding-top: 44px !important;
}
.pr-44 {
  padding-right: 44px !important;
}
.pb-44 {
  padding-bottom: 44px !important;
}
.pl-44 {
  padding-left: 44px !important;
}

.t-44 {
  top: 44px !important;
}

.r-44 {
  right: 44px !important;
}

.b-44 {
  bottom: 44px !important;
}

.l-44 {
  left: 44px !important;
}

.m-48 {
  margin: 48px !important;
}
.mx-48 {
  margin-left: 48px !important;
  margin-right: 48px !important;
}
.my-48 {
  margin-top: 48px !important;
  margin-bottom: 48px !important;
}
.mt-48 {
  margin-top: 48px !important;
}
.mr-48 {
  margin-right: 48px !important;
}
.mb-48 {
  margin-bottom: 48px !important;
}
.ml-48 {
  margin-left: 48px !important;
}

.p-48 {
  padding: 48px !important;
}
.px-48 {
  padding-left: 48px !important;
  padding-right: 48px !important;
}
.py-48 {
  padding-top: 48px !important;
  padding-bottom: 48px !important;
}
.pt-48 {
  padding-top: 48px !important;
}
.pr-48 {
  padding-right: 48px !important;
}
.pb-48 {
  padding-bottom: 48px !important;
}
.pl-48 {
  padding-left: 48px !important;
}

.t-48 {
  top: 48px !important;
}

.r-48 {
  right: 48px !important;
}

.b-48 {
  bottom: 48px !important;
}

.l-48 {
  left: 48px !important;
}

.m-50 {
  margin: 50px !important;
}
.mx-50 {
  margin-left: 50px !important;
  margin-right: 50px !important;
}
.my-50 {
  margin-top: 50px !important;
  margin-bottom: 50px !important;
}
.mt-50 {
  margin-top: 50px !important;
}
.mr-50 {
  margin-right: 50px !important;
}
.mb-50 {
  margin-bottom: 50px !important;
}
.ml-50 {
  margin-left: 50px !important;
}

.p-50 {
  padding: 50px !important;
}
.px-50 {
  padding-left: 50px !important;
  padding-right: 50px !important;
}
.py-50 {
  padding-top: 50px !important;
  padding-bottom: 50px !important;
}
.pt-50 {
  padding-top: 50px !important;
}
.pr-50 {
  padding-right: 50px !important;
}
.pb-50 {
  padding-bottom: 50px !important;
}
.pl-50 {
  padding-left: 50px !important;
}

.t-50 {
  top: 50px !important;
}

.r-50 {
  right: 50px !important;
}

.b-50 {
  bottom: 50px !important;
}

.l-50 {
  left: 50px !important;
}

.m-56 {
  margin: 56px !important;
}
.mx-56 {
  margin-left: 56px !important;
  margin-right: 56px !important;
}
.my-56 {
  margin-top: 56px !important;
  margin-bottom: 56px !important;
}
.mt-56 {
  margin-top: 56px !important;
}
.mr-56 {
  margin-right: 56px !important;
}
.mb-56 {
  margin-bottom: 56px !important;
}
.ml-56 {
  margin-left: 56px !important;
}

.p-56 {
  padding: 56px !important;
}
.px-56 {
  padding-left: 56px !important;
  padding-right: 56px !important;
}
.py-56 {
  padding-top: 56px !important;
  padding-bottom: 56px !important;
}
.pt-56 {
  padding-top: 56px !important;
}
.pr-56 {
  padding-right: 56px !important;
}
.pb-56 {
  padding-bottom: 56px !important;
}
.pl-56 {
  padding-left: 56px !important;
}

.t-56 {
  top: 56px !important;
}

.r-56 {
  right: 56px !important;
}

.b-56 {
  bottom: 56px !important;
}

.l-56 {
  left: 56px !important;
}

.m-60 {
  margin: 60px !important;
}
.mx-60 {
  margin-left: 60px !important;
  margin-right: 60px !important;
}
.my-60 {
  margin-top: 60px !important;
  margin-bottom: 60px !important;
}
.mt-60 {
  margin-top: 60px !important;
}
.mr-60 {
  margin-right: 60px !important;
}
.mb-60 {
  margin-bottom: 60px !important;
}
.ml-60 {
  margin-left: 60px !important;
}

.p-60 {
  padding: 60px !important;
}
.px-60 {
  padding-left: 60px !important;
  padding-right: 60px !important;
}
.py-60 {
  padding-top: 60px !important;
  padding-bottom: 60px !important;
}
.pt-60 {
  padding-top: 60px !important;
}
.pr-60 {
  padding-right: 60px !important;
}
.pb-60 {
  padding-bottom: 60px !important;
}
.pl-60 {
  padding-left: 60px !important;
}

.t-60 {
  top: 60px !important;
}

.r-60 {
  right: 60px !important;
}

.b-60 {
  bottom: 60px !important;
}

.l-60 {
  left: 60px !important;
}

.mx-auto {
  margin-left: auto !important;
  margin-right: auto !important;
}

/* 常用内外边距 end */
/* 常用宽高 start */
.w-half {
  width: 50% !important;
}

.w-full {
  width: 100% !important;
}

.h-half {
  height: 50% !important;
}

.h-full {
  height: 100% !important;
}

/* 常用宽高 end */
.f-l {
  float: left;
}

.f-r {
  float: right;
}

.clear {
  clear: both;
}

/* 字体 */
.fs-12 {
  font-size: 12px !important;
}

.fs-13 {
  font-size: 13px !important;
}

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

.fs-15 {
  font-size: 15px !important;
}

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

.fs-17 {
  font-size: 17px !important;
}

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

.fs-19 {
  font-size: 19px !important;
}

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

.fs-21 {
  font-size: 21px !important;
}

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

.mx-auto {
  margin-left: auto !important;
  margin-right: auto !important;
}

/* base/_normalize.scss */
html {
  font-family: "PingFang SC", "Lantinghei SC", "Microsoft Yahei", "Hiragino Sans GB", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 16px;
  /*
      // 375px 屏幕作为16px根元素字号的基准，414px屏幕正好对应18px的根元素字号
      @media screen and (min-width: 375px) {
          font-size: calc(100% + 2 * (100vw - 375px) / 39);
          // 据说低版本 safari 不识别，只能使用上面方式进行兼容
          font-size: calc(16px + 2 * (100vw - 375px) / 39);
      }

      // 屏幕宽度从414px到1000px，根元素字号为18px-22px
      @media screen and (min-width: 414px){
          font-size: calc(112.5% + 4 * (100vw - 414px) / 586);
          font-size: calc(18px + 4 * (100vw - 414px) / 586);
      }

      // 屏幕宽度1000px往上，每增加100px则根元素字号增加0.5px
      @media screen and (min-width: 1000px){
          font-size: calc(137.5% + 6 * (100vw - 1000px) / 1000);
          font-size: calc(22px + 6 * (100vw - 1000px) / 1000);
      }
      */
}

body {
  background-color: #F5f5f5;
}

hr {
  height: 0px;
  background-color: black;
  opacity: 0.1;
  backdrop-filter: blur(0px);
}

/* base/_common.scss */
@font-face {
  font-family: "iconfont";
  src: url("iconfont.woff2") format("woff2"), url("iconfont.woff") format("woff"), url("iconfont.ttf") format("truetype");
}
@font-face {
  font-family: "D-DIN-Bold";
  src: url("D-DIN-Bold.ttf") format("woff"), url("D-DIN-Bold.woff") format("ttf");
}
.din {
  font-family: "D-DIN-Bold" !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.iconfont, .page .pagination .prev:before, .page .pagination .next:before {
  font-family: "iconfont" !important;
  font-size: 1rem;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon {
  width: 1em;
  height: 1em;
  vertical-align: -0.15em;
  fill: currentColor;
  overflow: hidden;
}

.link {
  cursor: pointer;
}
.link:hover {
  text-decoration: none;
  color: #9F8052 !important;
}

.link2 {
  cursor: pointer;
}
.link2:hover {
  text-decoration: underline;
}

.block {
  background-color: white;
}

.white {
  background-color: white;
}

.underline {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.underline12 {
  border-bottom: 12px solid #f8f8f8;
}

.underdash {
  border-bottom: 1px dashed rgba(0, 0, 0, 0.08);
}

.modal.has-nav {
  top: 44px;
}

.dash {
  border-bottom: 1px dashed #E6E7EB;
}

.dash-r {
  border-right: 1px dashed #E6E7EB;
}

.separate {
  width: 1px;
  height: 10px;
  background: #E6E7EB;
  display: inline-block;
}

.circle {
  display: inline-block;
  min-width: 11px;
  width: 11px;
  max-width: 11px;
  min-height: 11px;
  height: 11px;
  max-height: 11px;
  border-radius: 6px;
  border: 2px solid #C8CACC;
}

.float {
  float: left;
}

.flex-wrap {
  display: -moz-box;
  display: -webkit-box;
  display: box;
  display: flexbox;
  display: flex;
  flex-wrap: wrap;
}

/* layout/_header.scss */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  max-height: 80px;
  z-index: 1000;
  background-color: #fff;
}
.header > .content {
  height: 100%;
}
.header-logo {
  max-height: 60px;
  width: auto;
  height: auto;
  max-width: 130px;
}
.header-nav_cell {
  position: relative;
  display: block;
  font-size: 16px;
  color: #303133;
  line-height: 80px;
}
.header-nav_cell.sel p, .header-nav_cell:hover p {
  color: #9F8052;
}
.header-nav_cell .navsubmenu {
  position: absolute;
  top: 50px;
  left: 16px;
  display: none;
  min-width: 182px;
  width: 182px;
  max-width: 182px;
  background-color: #ffffff;
  border-radius: 2px;
  box-shadow: 0px 4px 32px 0px rgba(16, 36, 95, 0.08);
  z-index: 99;
}
.header-nav_cell .navsubmenu_cell {
  min-height: 44px;
  height: 44px;
  max-height: 44px;
  font-size: 14px;
  line-height: 44px;
  padding: 0 8px 0 8px;
  color: #303133;
  border-radius: 2px;
}
.header-nav_cell .navsubmenu_cell a {
  display: block;
  width: 100%;
}
.header-nav_cell .navsubmenu_cell:hover {
  background-color: #F7F7F7;
  color: #ff6700;
}
.header-nav_cell:hover .navsubmenu {
  display: block;
}
.header-search {
  width: 200px;
  height: 48px;
  border: 1px solid #e6e7eb;
  float: right;
}
.header-search > input {
  font-size: 14px;
  line-height: 46px;
  width: 128px;
  color: #303133;
}
.header-search > input::-moz-placeholder {
  color: #b3b3b3;
  font-weight: 400;
}
.header-search > input::placeholder {
  color: #b3b3b3;
  font-weight: 400;
}
.header-search > input::-webkit-search-cancel-button {
  filter: grayscale(100%) opacity(30%);
  font-size: 14px;
}
.header-search > .iconfont, .page .pagination .header-search > .prev:before, .page .pagination .header-search > .next:before {
  width: 46px;
  font-size: 26px;
  line-height: 46px;
  color: #303133;
  text-align: center;
  border-left: 1px solid #e6e7eb;
}
.header-mobile {
  float: right;
  min-width: 48px;
  width: 48px;
  max-width: 48px;
  min-height: 48px;
  height: 48px;
  max-height: 48px;
  text-align: center;
}
.header-mobile:hover .iconfont, .header-mobile:hover .page .pagination .prev:before, .page .pagination .header-mobile:hover .prev:before, .header-mobile:hover .page .pagination .next:before, .page .pagination .header-mobile:hover .next:before {
  color: #9F8052;
}
.header-mobile > .iconfont, .page .pagination .header-mobile > .prev:before, .page .pagination .header-mobile > .next:before {
  display: block;
  font-size: 32px;
  line-height: 48px;
  color: #303133;
  text-align: center;
}
.header-mobile_text {
  width: 42px;
  font-size: 14px;
  line-height: 19px;
}
.header-mobile:hover {
  color: #ffffff;
}

.top::before {
  content: "";
  display: block;
  padding-top: 80px;
}

.navicon {
  font-size: 24px;
}

/* layout/_footer.scss */
.footer {
  background: #f0f0f0;
}
.footer-nav {
  font-size: 18px;
  font-weight: bold;
  color: #DFE0E1;
  line-height: 24px;
}
.footer-link {
  font-size: 16px;
  color: #e6e7eb;
  line-height: 21px;
}
.footer-link .splitline {
  color: #D8D8D8;
}
.footer-link a:hover {
  color: #fff;
}
.footer-copyright {
  font-size: 12px;
  color: #969799;
  line-height: 18px;
}
.footer-aboutus .logo {
  min-width: 104px;
  width: 104px;
  max-width: 104px;
  min-height: 36px;
  height: 36px;
  max-height: 36px;
}
.footer-aboutus .text {
  min-width: 440px;
  width: 440px;
  max-width: 440px;
  min-height: 36px;
  height: 36px;
  max-height: 36px;
  font-size: 12px;
  color: #646566;
  line-height: 18px;
}

/* layout/_img-box.scss */
.box {
  position: relative;
  width: auto;
  height: auto;
  overflow: hidden;
  background-color: #f8f8f8;
  font-size: 10px;
}
.box > img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  font-family: "object-fit: cover;";
}
.box .img-placeholder::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  content: "";
  background-position: center;
  background-image: url("../images/placeholder.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-origin: content-box;
}
.box .img-failed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  background-image: url("../images/failed.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-origin: content-box;
}

.imgdh {
  transition: 0.3s all;
}
.imgdh:hover {
  transform: scale(1.1);
}

/* layout/_subtitle.scss  副标题、栏目标题样式 */
.subtitle .title {
  min-height: 32px;
  height: 32px;
  max-height: 32px;
  font-size: 20px;
  line-height: 32px;
  color: #303133;
  font-weight: normal;
}
.subtitle .more {
  font-size: 16px;
  color: #6E6E73;
}
.subtitle .more .iconfont, .subtitle .more .page .pagination .prev:before, .page .pagination .subtitle .more .prev:before, .subtitle .more .page .pagination .next:before, .page .pagination .subtitle .more .next:before {
  font-size: 14px;
}
.subtitle .more:hover {
  color: #9F8052;
}

/* layout/_content.scss */
.content {
  width: 1200px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}

.main {
  min-width: 770px;
  width: 770px;
  max-width: 770px;
}
.main-news_cell {
  border-bottom: 1px solid #e6e7eb;
}
.main-news_cell:last-child {
  border-bottom: none;
}
.main-news_cell .logo {
  min-width: 160px;
  width: 160px;
  max-width: 160px;
  min-height: 106px;
  height: 106px;
  max-height: 106px;
}
.main-news_cell .title {
  min-height: 24px;
  height: 24px;
  max-height: 24px;
  font-size: 16px;
  color: #303133;
  line-height: 24px;
}
.main-news_cell .title:hover {
  color: #9F8052;
}
.main-news_cell .text {
  min-height: 40px;
  height: 40px;
  max-height: 40px;
  font-size: 12px;
  color: #646566;
  line-height: 20px;
}
.main-news_cell .att {
  min-height: 16px;
  height: 16px;
  max-height: 16px;
  font-size: 12px;
  color: #969799;
  line-height: 16px;
}

.aside {
  min-width: 370px;
  width: 370px;
  max-width: 370px;
}
.aside-menu {
  cursor: pointer;
  min-height: 36px;
  height: 36px;
  max-height: 36px;
  font-size: 18px;
  line-height: 24px;
  padding-bottom: 12px;
}
.aside-menu.active {
  border-bottom: 2px solid #303133;
  font-weight: 500;
}
.aside-menu2 {
  cursor: pointer;
  min-height: 34px;
  height: 34px;
  max-height: 34px;
  font-size: 14px;
  line-height: 20px;
  padding-bottom: 14px;
}
.aside-menu2.active {
  border-bottom: 2px solid #303133;
  font-weight: 500;
}
.aside-news_cell .logo {
  min-width: 120px;
  width: 120px;
  max-width: 120px;
  min-height: 80px;
  height: 80px;
  max-height: 80px;
}
.aside-news_cell .title {
  min-height: 48px;
  height: 48px;
  max-height: 48px;
  font-size: 16px;
  color: #303133;
  line-height: 24px;
}
.aside-news_cell .title:hover {
  color: #9F8052;
}
.aside-news_cell .att {
  min-height: 16px;
  height: 16px;
  max-height: 16px;
  font-size: 12px;
  color: #969799;
  line-height: 16px;
}
.aside-rank_cell1 .num {
  min-width: 16px;
  width: 16px;
  max-width: 16px;
  width: 16px;
  font-size: 18px;
  font-family: D-DIN-Bold, D-DIN;
  color: #646566;
  text-align: center;
}
.aside-rank_cell1 .num.col1 {
  color: #FE2D46;
}
.aside-rank_cell1 .num.col2 {
  color: #FF6903;
}
.aside-rank_cell1 .num.col3 {
  color: #FAA90E;
}
.aside-rank_cell1 .logo {
  min-width: 100px;
  width: 100px;
  max-width: 100px;
  min-height: 75px;
  height: 75px;
  max-height: 75px;
}
.aside-rank_cell1 .title {
  min-height: 20px;
  height: 20px;
  max-height: 20px;
  font-size: 14px;
  color: #303133;
  line-height: 20px;
}
.aside-rank_cell1 .title:hover {
  color: #ff6700;
}
.aside-rank_cell1 .text {
  min-height: 16px;
  height: 16px;
  max-height: 16px;
  font-size: 12px;
  color: #969799;
  line-height: 16px;
  overflow: hidden;
}
.aside-rank_cell1 .price {
  min-height: 16px;
  height: 16px;
  max-height: 16px;
  font-size: 14px;
  color: #ff6700;
  line-height: 16px;
}
.aside-rank_cell2 .num {
  min-width: 16px;
  width: 16px;
  max-width: 16px;
  width: 16px;
  font-size: 18px;
  font-family: D-DIN-Bold, D-DIN;
  color: #646566;
  text-align: center;
}
.aside-rank_cell2 .num.col1 {
  color: #FE2D46;
}
.aside-rank_cell2 .num.col2 {
  color: #FF6903;
}
.aside-rank_cell2 .num.col3 {
  color: #FAA90E;
}
.aside-rank_cell2 .title {
  font-size: 14px;
  color: #303133;
}
.aside-rank_cell2 .title:hover {
  color: #9F8052;
}
.aside-rank_cell2 .price {
  font-size: 12px;
  color: #969799;
}
.aside-product_cell .logo {
  min-width: 120px;
  width: 120px;
  max-width: 120px;
  min-height: 90px;
  height: 90px;
  max-height: 90px;
}
.aside-product_cell .title {
  min-height: 40px;
  height: 40px;
  max-height: 40px;
  font-size: 14px;
  color: #303133;
  line-height: 20px;
  word-break: break-all;
}
.aside-product_cell .title:hover {
  color: #9F8052;
}
.aside-product_cell .price {
  min-height: 16px;
  height: 16px;
  max-height: 16px;
  height: 16px;
  font-size: 12px;
  color: #ff6700;
  line-height: 16px;
}

.anchors {
  position: fixed;
  top: 50%;
  left: calc(50% + 600px);
  transform: translateY(-50%);
}

.side-anchor {
  background: white;
  box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.05);
  border-radius: 2px;
  min-width: 64px;
  width: 64px;
  max-width: 64px;
}
.side-anchor__cell {
  color: #646566;
}
.side-anchor__cell:hover {
  color: #9F8052;
}
.side-anchor__cell.underline {
  border-bottom-width: 2px;
}
.side-anchor__icon {
  font-size: 36px;
}
.side-anchor__text {
  font-size: 12px;
  line-height: 16px;
}

.catpos {
  font-size: 14px;
  color: #969799;
  line-height: 18px;
}

@font-face {
  font-family: D-DIN-Bold, D-DIN;
  src: url(../D-DIN-Bold.woff.ttf);
}
/* 文章详情 */
.article-content {
  font-size: 16px;
  font-weight: 400;
  color: #303133;
  line-height: 1.8;
  text-align: justify;
  letter-spacing: 0.5px;
  min-height: 30px;
}

.article-content h1,
.article-content h2,
.article-content h3,
.article-content h4,
.article-content h5,
.article-content h6 {
  font-size: 16px;
  font-weight: bold;
  margin: 24px 0 15px;
  line-height: 1.5;
}

.article-content p {
  margin: 15px 0;
  color: #303133;
}

.article-content a {
  color: #9F8052;
}

.article-content .image,
.article-content video,
.article-content iframe {
  cursor: pointer;
  margin: 20px auto !important;
  max-width: 96%;
  -o-object-position: center;
     object-position: center;
  display: flex;
}

.article-content .image {
  -o-object-fit: cover;
     object-fit: cover;
}

.article-content .image > img {
  width: auto;
  height: auto;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

*[id^=anchor]:target:before {
  display: block;
  content: "";
  margin-top: -74px;
  padding-top: 74px;
}

.errobox {
  margin-top: 200px;
}
.errobox-img {
  display: block;
  width: 360px;
  height: 240px;
}
.errobox-img > img {
  width: 100%;
}
.errobox-title {
  font-size: 16px;
  line-height: 24px;
  color: #969799;
  text-align: center;
}
.errobox-btn {
  font-size: 16px;
  color: #9F8052;
}

.morebtn {
  display: block;
  margin: 0 auto;
  min-width: 280px;
  width: 280px;
  max-width: 280px;
  min-height: 44px;
  height: 44px;
  max-height: 44px;
  border: 1px solid #969799;
  font-size: 14px;
  line-height: 44px;
  color: #646566;
  text-align: center;
}
.morebtn:hover {
  border-color: #9F8052;
  background: #9F8052;
  color: #fff;
}

.headline {
  min-height: 32px;
  height: 32px;
  max-height: 32px;
  font-size: 24px;
  line-height: 32px;
  color: #303133;
  font-weight: normal;
}

.borderb {
  border-bottom: 1px solid #D2D2D7;
}

.sub-tab5 .tab-item {
  display: none;
}

.sub-tab5 .tab-item.active {
  display: block;
}

.sub-tab6 .tab-item {
  display: none;
}

.sub-tab6 .tab-item.active {
  display: block;
}

/* layout/_pagination.scss */
/* 分页 */
.page {
  text-align: center;
}
.page .pagination {
  display: -moz-inline-box;
  display: -webkit-inline-box;
  display: inline-box;
  display: inline-flexbox;
  display: inline-flex;
  padding-left: 0;
  border-radius: 2px;
}
.page .pagination .next {
  padding: 0;
  width: 33px;
  min-width: 33px;
}
.page .pagination .next:before {
  content: "\e64b";
  font-size: 14px;
}
.page .pagination .prev {
  padding: 0;
  width: 33px;
  min-width: 33px;
}
.page .pagination .prev:before {
  content: "\e64c";
  font-size: 14px;
}
.page .pagination > li > a {
  float: left;
  min-width: 33px;
  min-height: 33px;
  height: 33px;
  max-height: 33px;
  line-height: 33px;
  background: #FFFFFF;
  border-radius: 2px;
  border: 1px solid #DCDEE0;
  font-size: 12px;
  color: #323233;
  text-align: center;
  margin-left: 8px;
  padding: 0 6px;
}
.page .pagination > li:first-child > a, .page .pagination > li:first-child > span {
  margin-left: 0;
}
.page .pagination > li > a:hover, .page .pagination > li > a:focus, .page .pagination > li > span:hover, .page .pagination > li > span:focus {
  z-index: 2;
  color: #9F8052;
  background-color: #eeeeee;
  border-color: #ddd;
}
.page .pagination > .active > a, .page .pagination > .active > a:hover, .page .pagination > .active > a:focus, .page .pagination > .active > span, .page .pagination > .active > span:hover, .page .pagination > .active > span:focus {
  z-index: 3;
  color: #fff;
  background-color: #9F8052;
  border-color: #9F8052;
  cursor: default;
}

/* page/_index.scss */
.index-swiper__next, .index-swiper__prev {
  position: absolute;
  font-size: 20px;
  color: white;
  background: rgba(0, 0, 0, 0.5);
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  display: none;
}

.index-menu {
  cursor: pointer;
  color: #646566;
  margin-right: 32px;
  padding: 4px 0;
  font-size: 16px;
  line-height: 16px;
}
.index-menu:last-child {
  margin-right: 0px;
}
.index-menu.active {
  color: #9F8052;
  border-bottom: 2px solid #9F8052;
}
.index-hotjiqiao {
  min-width: 240px;
  width: 240px;
  max-width: 240px;
  background-color: white;
}
.index-hotjiqiao .list-item {
  min-width: 100%;
  width: 100%;
  max-width: 100%;
  min-height: 128px;
  height: 128px;
  max-height: 128px;
}
.index-hotjiqiao .list-img {
  min-width: 100%;
  width: 100%;
  max-width: 100%;
  min-height: 100%;
  height: 100%;
  max-height: 100%;
}
.index-hotjiqiao .list-title {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 30px 12px 10px;
  background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.5));
  font-size: 14px;
  line-height: 1.3;
  color: white;
}
.index-swiper {
  position: relative;
  min-width: 600px;
  width: 600px;
  max-width: 600px;
  min-height: 400px;
  height: 400px;
  max-height: 400px;
}
.index-swiper:hover .index-swiper__next, .index-swiper:hover .index-swiper__prev {
  display: block;
}
.index-swiper .box {
  position: relative;
  transition: none;
  transform: none;
  width: 100%;
  height: 100%;
  display: inline-block;
}
.index-swiper .box img {
  position: absolute;
  top: 0;
  left: 0;
}
.index-swiper__content {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 120px 20px 40px;
  background: linear-gradient(180deg, transparent 20%, rgba(0, 0, 0, 0.5));
}
.index-swiper__content .title {
  width: 100%;
  font-size: 20px;
  font-weight: bold;
  color: #FFFFFF;
  line-height: 1.5;
}
.index-swiper__content .att {
  min-height: 20px;
  height: 20px;
  max-height: 20px;
  font-size: 14px;
  line-height: 20px;
  color: rgba(255, 255, 255, 0.7);
}
.index-swiper__prev {
  left: 8px;
  min-width: 32px;
  width: 32px;
  max-width: 32px;
  min-height: 44px;
  height: 44px;
  max-height: 44px;
}
.index-swiper__next {
  right: 8px;
  min-width: 32px;
  width: 32px;
  max-width: 32px;
  min-height: 44px;
  height: 44px;
  max-height: 44px;
}
.index-swiper__paginations {
  position: absolute;
  display: -moz-inline-box;
  display: -webkit-inline-box;
  display: inline-box;
  display: inline-flexbox;
  display: inline-flex;
  height: 32px;
  align-items: center;
  justify-content: flex-start;
  z-index: 1;
  bottom: 0 !important;
  left: 0;
}
.index-swiper__paginations .swiper-pagination-bullet {
  width: 32px;
  height: 2px;
  background: #ffffff;
  border-radius: 0.5px;
  margin: 0 4px;
  opacity: 0.35;
}
.index-swiper__paginations .swiper-pagination-bullet-active {
  opacity: 1;
}
.index .index-swiper__prev, .index .index-swiper__next {
  position: absolute;
  font-size: 24px;
  color: white;
  background: rgba(0, 0, 0, 0.4);
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  display: none;
}
.index-topreco_cell {
  display: block;
}
.index-topreco_cell .logo {
  min-width: 280px;
  width: 280px;
  max-width: 280px;
  min-height: 156px;
  height: 156px;
  max-height: 156px;
}
.index-topreco_cell .content {
  min-width: 280px;
  width: 280px;
  max-width: 280px;
  min-height: 84px;
  height: 84px;
  max-height: 84px;
  background: #212121;
}
.index-topreco_cell .title {
  display: block;
  min-width: 240px;
  width: 240px;
  max-width: 240px;
  font-size: 15px;
  font-weight: 500;
  color: #FFFFFF;
  line-height: 22px;
  text-align: center;
}
.index-hotproduct_menu {
  cursor: pointer;
  min-width: 36px;
  width: 36px;
  max-width: 36px;
  min-height: 36px;
  height: 36px;
  max-height: 36px;
  background: #Fff;
  color: #303133;
}
.index-hotproduct_menu.active {
  color: #C8CACC;
}
.index-hotproduct_cell {
  min-width: calc((100% - 80px) / 6);
  width: calc((100% - 80px) / 6);
  max-width: calc((100% - 80px) / 6);
  margin-right: 16px;
  transition: all 0.2s linear;
}
.index-hotproduct_cell:last-child {
  margin-right: 0px;
}
.index-hotproduct_cell .title {
  min-height: 44px;
  height: 44px;
  max-height: 44px;
  font-size: 14px;
  color: #303133;
  line-height: 22px;
  word-break: break-all;
  text-align: center;
}
.index-hotproduct_cell .logo {
  min-width: 140px;
  width: 140px;
  max-width: 140px;
  min-height: 120px;
  height: 120px;
  max-height: 120px;
}
.index-hotproduct_cell:hover {
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  transform: translate3d(0, -2px, 0);
}
.index-newproduct_cell {
  min-width: calc((100% - 64px) / 5);
  width: calc((100% - 64px) / 5);
  max-width: calc((100% - 64px) / 5);
  margin-top: 16px;
  margin-right: 16px;
  background: #fff;
  transition: all 0.2s linear;
}
.index-newproduct_cell:nth-child(5n) {
  margin-right: 0px;
}
.index-newproduct_cell:hover {
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  transform: translate3d(0, -2px, 0);
}
.index-newproduct_cell .logo {
  min-width: 100%;
  width: 100%;
  max-width: 100%;
  min-height: 160px;
  height: 160px;
  max-height: 160px;
  margin: 0 auto;
}
.index-newproduct_cell .title {
  min-height: 20px;
  height: 20px;
  max-height: 20px;
  font-size: 14px;
  color: #303133;
  line-height: 20px;
  text-align: center;
}
.index-newproduct_cell .text {
  min-height: 16px;
  height: 16px;
  max-height: 16px;
  font-size: 12px;
  color: #969799;
  line-height: 16px;
  text-align: center;
  overflow: hidden;
}
.index-newproduct_cell .price {
  min-height: 16px;
  height: 16px;
  max-height: 16px;
  font-size: 13px;
  color: #ff6700;
  line-height: 16px;
  text-align: center;
}
.index-news_cell {
  transition: all 0.2s linear;
  background: #Fff;
  min-width: calc((100% - 32px) / 3);
  width: calc((100% - 32px) / 3);
  max-width: calc((100% - 32px) / 3);
  margin-right: 16px;
  margin-top: 16px;
}
.index-news_cell:nth-child(3n) {
  margin-right: 0px;
}
.index-news_cell .logo {
  width: 100%;
  height: 200px;
}
.index-news_cell .title {
  min-height: 48px;
  height: 48px;
  max-height: 48px;
  font-size: 16px;
  font-weight: 600;
  color: #303133;
  line-height: 24px;
  word-wrap: break-word;
}
.index-news_cell .text {
  font-size: 12px;
  line-height: 20px;
  height: 60px;
  color: #969799;
}
.index-news_cell .att {
  min-height: 16px;
  height: 16px;
  max-height: 16px;
  font-size: 12px;
  color: #969799;
  line-height: 16px;
}
.index-news_cell:hover {
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  transform: translate3d(0, -2px, 0);
}
.index-zt_cell {
  background: #Fff;
  min-width: calc((100% - 32px) / 3);
  width: calc((100% - 32px) / 3);
  max-width: calc((100% - 32px) / 3);
  margin-right: 16px;
  margin-top: 16px;
}
.index-zt_cell:nth-child(3n) {
  margin-right: 0px;
}
.index-zt_cell .logo {
  display: block;
  min-width: 100%;
  width: 100%;
  max-width: 100%;
  min-height: 240px;
  height: 240px;
  max-height: 240px;
}
.index-zt_cell .content {
  transition: all 0.4s;
  position: absolute;
  min-width: 100%;
  width: 100%;
  max-width: 100%;
  min-height: 120px;
  height: 120px;
  max-height: 120px;
  background: rgba(0, 0, 0, 0.5);
  bottom: -52px;
}
.index-zt_cell .title {
  font-size: 16px;
  line-height: 22px;
  height: 44px;
  font-weight: 500;
  color: #fff;
}
.index-zt_cell .text {
  font-size: 12px;
  color: #fff;
  line-height: 20px;
  height: 40px;
}
.index-zt_cell:hover .content {
  bottom: 0;
}
.index-yqlj {
  padding: 24px 0 8px 0;
  background: #fff;
}
.index-yqlj .title {
  display: block;
  font-size: 16px;
  min-height: 24px;
  height: 24px;
  max-height: 24px;
  line-height: 24px;
  color: #616161;
  font-weight: 400;
}
.index-yqlj_list {
  display: flex;
  flex-wrap: wrap;
  overflow: hidden;
}
.index-yqlj_cell {
  min-height: 16px;
  height: 16px;
  max-height: 16px;
  font-size: 12px;
  line-height: 16px;
  margin-right: 32px;
  margin-bottom: 20px;
  color: #646566;
}
.index-yqlj_cell:hover {
  color: #9F8052;
}
.index-check {
  min-width: 100%;
  width: 100%;
  max-width: 100%;
  min-height: auto;
  height: auto;
  max-height: auto;
  background-color: white;
}
.index-check .check-wrap {
  min-width: 800px;
  width: 800px;
  max-width: 800px;
  margin: 0 auto;
}
.index-check .check-title {
  font-size: 32px;
  text-align: center;
  line-height: 56px;
  font-weight: 700;
  color: #222222;
}
.index-check .check-info {
  font-size: 14px;
  text-align: center;
  max-width: 60%;
  margin: 0 auto;
  line-height: 1.6;
  color: #888;
}
.index-check .check-search {
  min-width: 100%;
  width: 100%;
  max-width: 100%;
  min-height: 60px;
  height: 60px;
  max-height: 60px;
}
.index-check .check-input {
  box-sizing: border-box;
  background-color: #ffffff;
  border: 1px solid #E3E3E6;
  font-size: 16px;
  height: 60px;
  line-height: 58px;
}
.index-check .check-input::-moz-placeholder {
  color: #ABAFB3;
}
.index-check .check-input::placeholder {
  color: #ABAFB3;
}
.index-check .check-btn {
  min-width: 200px;
  width: 200px;
  max-width: 200px;
  min-height: 60px;
  height: 60px;
  max-height: 60px;
  background: #9F8052;
  font-size: 16px;
  line-height: 60px;
  text-align: center;
  color: #fff;
}
.index-check .check-btn:hover {
  background: #ff6700;
}
.index-check .check-tips {
  font-size: 14px;
  color: #ff6700;
}

.sub-tab1 .tab-item {
  display: none;
}

.sub-tab1 .tab-item.active {
  display: block;
}

.sub-tab2 .tab-item {
  display: none;
}

.sub-tab2 .tab-item.active {
  display: block;
}

.sub-tab3 .tab-item {
  display: none;
}

.sub-tab3 .tab-item.active {
  display: block;
}

/* page/_zt.scss */
.ztlist-cell {
  background: #Fff;
  min-width: calc((100% - 32px) / 3);
  width: calc((100% - 32px) / 3);
  max-width: calc((100% - 32px) / 3);
  margin-right: 16px;
  margin-bottom: 16px;
}
.ztlist-cell:nth-child(3n) {
  margin-right: 0px;
}
.ztlist-cell .logo {
  display: block;
  min-width: 100%;
  width: 100%;
  max-width: 100%;
  min-height: 240px;
  height: 240px;
  max-height: 240px;
}
.ztlist-cell .content {
  transition: all 0.4s;
  position: absolute;
  min-width: 100%;
  width: 100%;
  max-width: 100%;
  min-height: 148px;
  height: 148px;
  max-height: 148px;
  background: rgba(0, 0, 0, 0.6);
  bottom: -84px;
}
.ztlist-cell .title {
  font-size: 20px;
  font-weight: 500;
  color: #fff;
}
.ztlist-cell .text {
  font-size: 12px;
  color: #fff;
  line-height: 20px;
  height: 40px;
}
.ztlist-cell .att {
  font-size: 12px;
  color: #fff;
  line-height: 16px;
  height: 16px;
}
.ztlist-cell:hover .content {
  bottom: 0;
}

.ztshow-header .logo {
  min-width: 364px;
  width: 364px;
  max-width: 364px;
  min-height: 226px;
  height: 226px;
  max-height: 226px;
}
.ztshow-header .title {
  min-height: 32px;
  height: 32px;
  max-height: 32px;
  font-size: 24px;
  line-height: 32px;
  color: #303133;
  font-weight: 500;
}
.ztshow-header .text {
  min-height: 90px;
  height: 90px;
  max-height: 90px;
  font-size: 18px;
  line-height: 30px;
  color: #858585;
}
.ztshow-header .att {
  border-top: 1px solid #EDEDF0;
  font-size: 16px;
  color: #858585;
}
.ztshow-header .att b {
  color: #9F8052;
  margin: 0 5px;
}
.ztshow-cell {
  min-width: calc((100% - 40px) / 2);
  width: calc((100% - 40px) / 2);
  max-width: calc((100% - 40px) / 2);
  margin-right: 40px;
  margin-top: 40px;
}
.ztshow-cell:nth-child(2n) {
  margin-right: 0px;
}
.ztshow-cell .logo {
  min-width: 186px;
  width: 186px;
  max-width: 186px;
  min-height: 124px;
  height: 124px;
  max-height: 124px;
}
.ztshow-cell .tags {
  min-height: 16px;
  height: 16px;
  max-height: 16px;
  font-size: 12px;
  line-height: 16px;
  color: #646566;
  overflow: hidden;
}
.ztshow-cell .tags a {
  display: inline-block;
}
.ztshow-cell .tags a:hover {
  color: #ff6700;
}
.ztshow-cell .title {
  display: block;
  min-height: 24px;
  height: 24px;
  max-height: 24px;
  font-size: 16px;
  font-weight: 500;
  color: #303133;
  line-height: 24px;
}
.ztshow-cell .title:hover {
  color: #ff6700;
}
.ztshow-cell .text {
  min-height: 36px;
  height: 36px;
  max-height: 36px;
  font-size: 12px;
  color: #969799;
  line-height: 18px;
}
.ztshow-cell .att {
  min-height: 16px;
  height: 16px;
  max-height: 16px;
  font-size: 12px;
  color: #969799;
  line-height: 16px;
}
.ztshow-hot {
  min-width: calc((100% - 96px) / 4);
  width: calc((100% - 96px) / 4);
  max-width: calc((100% - 96px) / 4);
  margin-right: 32px;
}
.ztshow-hot:nth-child(4n) {
  margin-right: 0px;
}
.ztshow-hot .logo {
  min-width: 100%;
  width: 100%;
  max-width: 100%;
  min-height: 172px;
  height: 172px;
  max-height: 172px;
}
.ztshow-hot .title {
  min-height: 22px;
  height: 22px;
  max-height: 22px;
  font-size: 16px;
  line-height: 22px;
  color: #303133;
  font-weight: 500;
}
.ztshow-hot .title:hover {
  color: #ff6700;
}

/* page/_tool.scss */
.tool-sort {
  height: 72px;
}
.tool-sort_cell {
  width: 594px;
  height: 60px;
  background: #Fff;
  color: #303133;
  line-height: 60px;
  font-size: 16px;
  text-align: center;
}
.tool-sort_cell.sel {
  height: 72px;
  line-height: 72px;
  color: #9F8052;
}
.tool-query {
  min-width: 50%;
  width: 50%;
  max-width: 50%;
  border-right: 1px solid #E6E7EB;
}
.tool-query .title {
  display: block;
  font-weight: 500;
  font-size: 28px;
  line-height: 1.4;
  color: #303133;
}
.tool-query .title .col {
  color: #FE3B30;
}
.tool-query_search {
  width: 100%;
  height: 62px;
  border: 1px solid #C8CACC;
}
.tool-query_search > input {
  font-size: 16px;
  line-height: 62px;
  color: #303133;
}
.tool-query_search > input::-moz-placeholder {
  color: #b3b3b3;
  font-weight: 400;
}
.tool-query_search > input::placeholder {
  color: #b3b3b3;
  font-weight: 400;
}
.tool-query_search > input::-webkit-search-cancel-button {
  filter: grayscale(100%) opacity(30%);
  font-size: 20px;
}
.tool-query .tips {
  display: block;
  font-size: 14px;
  color: #FE3B30;
  line-height: 20px;
}
.tool-query .text {
  display: block;
  font-size: 14px;
  color: #969799;
  line-height: 22px;
}
.tool-query .tutorial {
  min-height: 22px;
  height: 22px;
  max-height: 22px;
  font-size: 14px;
  line-height: 22px;
  color: #ff6700;
}
.tool-query_btn {
  display: block;
  width: 100%;
  min-height: 62px;
  height: 62px;
  max-height: 62px;
  background: #9F8052;
  font-size: 16px;
  color: #fff;
  line-height: 62px;
  text-align: center;
}
.tool-query_btn:hover {
  background: #8b7047;
}
.tool-result {
  width: 100%;
}
.tool-result_title {
  display: block;
  min-height: 26px;
  height: 26px;
  max-height: 26px;
  font-weight: 500;
  font-size: 18px;
  color: #303133;
  line-height: 26px;
}
.tool-result_list {
  border-top: 1px solid #E6E7EB;
  border-left: 1px solid #E6E7EB;
}
.tool-result_list_cell {
  border-bottom: 1px solid #E6E7EB;
}
.tool-result_list_cell .title {
  min-width: 100px;
  width: 100px;
  max-width: 100px;
  padding: 12px 0 12px 0;
  font-size: 14px;
  line-height: 20px;
  background: #faf6ef;
  padding-left: 12px;
  padding-right: 12px;
  border-right: 1px solid #E6E7EB;
}
.tool-result_list_cell .title.logo {
  line-height: 68px;
}
.tool-result_list_cell .content {
  padding: 12px 0 12px 0;
  font-size: 14px;
  line-height: 20px;
  padding-left: 12px;
  padding-right: 12px;
  border-right: 1px solid #E6E7EB;
  overflow: hidden;
  word-wrap: break-word;
}
.tool-result_list_cell .content .logo {
  display: block;
  min-width: 68px;
  width: 68px;
  max-width: 68px;
  min-height: 68px;
  height: 68px;
  max-height: 68px;
}
.tool-empty {
  height: 356px;
}
.tool-empty .logo {
  min-width: 180px;
  width: 180px;
  max-width: 180px;
  min-height: 160px;
  height: 160px;
  max-height: 160px;
  margin: 0 auto;
}
.tool-empty .logo > img {
  width: 100%;
}
.tool-empty .title {
  font-size: 16px;
  text-align: center;
  color: #969799;
}

/* page/_news.scss */
.newslist-sort {
  min-width: 12.5%;
  width: 12.5%;
  max-width: 12.5%;
  min-height: 68px;
  height: 68px;
  max-height: 68px;
  font-size: 18px;
  line-height: 68px;
  color: #303133;
  text-align: center;
}
.newslist-sort:last-child {
  margin-right: 0px;
}
.newslist-sort.sel {
  background: #9F8052;
  color: #fff;
}
.newslist-sort.sel:hover {
  color: #Fff;
}
.newslist-sort:hover {
  color: #9F8052;
}
.newslist-cell {
  transition: all 0.2s linear;
  background: #Fff;
  min-width: calc((100% - 32px) / 3);
  width: calc((100% - 32px) / 3);
  max-width: calc((100% - 32px) / 3);
  margin-right: 16px;
  margin-top: 16px;
}
.newslist-cell:nth-child(3n) {
  margin-right: 0px;
}
.newslist-cell .logo {
  width: 100%;
  height: 200px;
}
.newslist-cell .title {
  min-height: 48px;
  height: 48px;
  max-height: 48px;
  font-size: 15px;
  color: #303133;
  line-height: 24px;
  word-wrap: break-word;
}
.newslist-cell .text {
  font-size: 12px;
  line-height: 20px;
  height: 60px;
  color: #969799;
}
.newslist-cell .att {
  min-height: 16px;
  height: 16px;
  max-height: 16px;
  font-size: 12px;
  color: #969799;
  line-height: 16px;
}
.newslist-cell:hover {
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  transform: translate3d(0, -2px, 0);
}

.newsshow-header {
  padding-bottom: 24px;
  border-bottom: 1px solid #e4e4e4;
}
.newsshow-header .title {
  font-size: 24px;
  line-height: 42px;
  color: #303133;
  text-align: center;
}
.newsshow-header .att {
  min-height: 16px;
  height: 16px;
  max-height: 16px;
  font-size: 14px;
  color: #969799;
  line-height: 16px;
}
.newsshow-header .tags {
  max-width: 60%;
  min-height: 16px;
  height: 16px;
  max-height: 16px;
  font-size: 14px;
  line-height: 16px;
  color: #646566;
  overflow: hidden;
}
.newsshow-header .tags > a {
  display: inline-block;
}
.newsshow-header .tags a:hover {
  color: #9F8052;
}
.newsshow-part {
  background: #fff;
  padding: 24px 20px 24px 20px;
  min-width: calc((100% - 20px) / 2);
  width: calc((100% - 20px) / 2);
  max-width: calc((100% - 20px) / 2);
  margin-right: 20px;
  line-height: 20px;
  text-align: center;
  color: #646566;
}
.newsshow-part:nth-child(2) {
  margin-right: 0px;
}
.newsshow-part:hover {
  color: #9F8052;
}

.web3_recommand {
  background-color: #F8F8FA;
  border-radius: 6px;
}
.web3_recommand_logo {
  width: 68px;
  min-width: 68px;
  height: 68px;
  border-radius: 12%;
  overflow: hidden;
}
.web3_recommand_logo img {
  width: 100%;
  height: 100%;
}
.web3_recommand_title {
  display: inline-block;
  font-size: 15px;
  font-weight: bold;
}
.web3_recommand_title:hover {
  color: #F0B825;
}
.web3_recommand_desc {
  font-size: 13px;
  line-height: 1.5;
  color: #666;
}
.web3_recommand_button {
  padding: 0 16px;
  height: 40px;
  line-height: 40px;
  border-radius: 3px;
  background-color: #202020;
  color: #F0B825;
  font-size: 14px;
}
.web3_recommand_button:nth-child(2) {
  background-color: #F0B825;
  color: #202020;
}

/* page/_product.scss */
.productlist-sort {
  background: #fff;
}
.productlist-sort_cell:last-child .tagbox {
  border-bottom: none;
}
.productlist-sort_cell .title {
  min-width: 100px;
  width: 100px;
  max-width: 100px;
  font-size: 14px;
  line-height: 20px;
  color: #303133;
}
.productlist-sort_cell .tagbox {
  border-bottom: 1px dashed #E6E7EB;
}
.productlist-sort_cell .tag {
  display: inline-block;
  min-height: 20px;
  height: 20px;
  max-height: 20px;
  font-size: 14px;
  color: #646566;
  line-height: 20px;
}
.productlist-sort_cell .tag.sel, .productlist-sort_cell .tag:hover {
  color: #9F8052;
}
.productlist-cell {
  transition: all 0.2s linear;
  min-width: calc((100% - 32px) / 3);
  width: calc((100% - 32px) / 3);
  max-width: calc((100% - 32px) / 3);
  margin-right: 16px;
  background: #fff;
  margin-top: 16px;
}
.productlist-cell:nth-child(3n) {
  margin-right: 0px;
}
.productlist-cell:hover {
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  transform: translate3d(0, -2px, 0);
}
.productlist-cell .logo {
  min-width: 300px;
  width: 300px;
  max-width: 300px;
  min-height: 225px;
  height: 225px;
  max-height: 225px;
  margin: 0 auto;
}
.productlist-cell .title {
  min-height: 24px;
  height: 24px;
  max-height: 24px;
  font-size: 18px;
  font-weight: 500;
  color: #303133;
  line-height: 24px;
  word-break: break-all;
}
.productlist-cell .text {
  font-size: 12px;
  color: #858585;
  line-height: 18px;
  max-height: 36px;
  word-break: break-all;
}
.productlist-cell .price {
  font-size: 20px;
  line-height: 36px;
  height: 36px;
  font-weight: 500;
  color: #ff6700;
}
.productlist-cell .price > span {
  font-size: 12px;
  font-weight: 500;
}

.productshow-header .imgshow {
  min-width: 390px;
  width: 390px;
  max-width: 390px;
  min-height: 293px;
  height: 293px;
  max-height: 293px;
}
.productshow-header .logobox {
  cursor: pointer;
  min-width: 65px;
  width: 65px;
  max-width: 65px;
  min-height: 65px;
  height: 65px;
  max-height: 65px;
}
.productshow-header .logobox.active {
  border: 1px solid #9F8052;
}
.productshow-header .logo {
  min-width: 63px;
  width: 63px;
  max-width: 63px;
  min-height: 47px;
  height: 47px;
  max-height: 47px;
}
.productshow-header .title {
  font-size: 24px;
  line-height: 36px;
  color: #303133;
  font-weight: 500;
  word-break: break-all;
}
.productshow-header .text {
  min-height: 20px;
  height: 20px;
  max-height: 20px;
  font-size: 16px;
  color: #858585;
  line-height: 20px;
}
.productshow-header .price {
  min-height: 24px;
  height: 24px;
  max-height: 24px;
  font-size: 18px;
  color: #ff6700;
  font-weight: 500;
  line-height: 24px;
}
.productshow-header .time {
  font-size: 16px;
  color: #969799;
}
.productshow-score {
  border-top: 1px solid #D2D2D7;
  border-bottom: 1px solid #D2D2D7;
}
.productshow-score .scoreline {
  width: 1px;
  height: 38px;
  background: #D2D2D7;
}
.productshow-score_cell {
  position: relative;
  min-width: calc((100% - 5px) / 6);
  width: calc((100% - 5px) / 6);
  max-width: calc((100% - 5px) / 6);
}
.productshow-score_cell .num1 {
  min-height: 24px;
  height: 24px;
  max-height: 24px;
  font-size: 24px;
  color: #9F8052;
  line-height: 24px;
}
.productshow-score_cell .num2 {
  position: absolute;
  min-height: 16px;
  height: 16px;
  max-height: 16px;
  font-size: 14px;
  color: #9F8052;
  line-height: 16px;
  text-align: center;
  top: 12px;
  z-index: 1;
}
.productshow-score_cell .scorestar {
  position: relative;
  min-width: 58px;
  width: 58px;
  max-width: 58px;
  min-height: 10px;
  height: 10px;
  max-height: 10px;
  background: url(../images/starline.png) 0 0 no-repeat;
  background-size: 58px, 10px;
}
.productshow-score_cell .scorefill {
  background: url(../images/starfill.png) 0 0 no-repeat;
  height: 10px;
  width: 90%;
  background-size: 58px, 10px;
  position: absolute;
  left: 0;
  top: 0;
}
.productshow-score_cell .title {
  max-width: 50px;
  height: 17px;
  font-size: 12px;
  color: #969799;
  line-height: 17px;
  overflow: hidden;
  font-weight: 400;
}
.productshow-score_cell .backgroundring {
  position: absolute;
  min-width: 40px;
  width: 40px;
  max-width: 40px;
  min-height: 40px;
  height: 40px;
  max-height: 40px;
  top: 0;
  z-index: -1;
  border: 4px solid #E6E7EB;
  border-radius: 50%;
}
.productshow-att .title {
  min-width: 42px;
  width: 42px;
  max-width: 42px;
  height: 20px;
  font-size: 14px;
  color: #969799;
  line-height: 20px;
  font-weight: 400;
}
.productshow-att_cell {
  display: inline-block;
  min-height: 36px;
  height: 36px;
  max-height: 36px;
  padding: 0 12px 0 12px;
  border: 1px solid #E6E7EB;
  font-size: 14px;
  line-height: 36px;
  color: #303133;
}
.productshow-parameter {
  border-top: 1px solid #E6E7EB;
  border-left: 1px solid #E6E7EB;
}
.productshow-parameter_cell {
  border-bottom: 1px solid #E6E7EB;
}
.productshow-parameter_cell_left {
  min-width: 200px;
  width: 200px;
  max-width: 200px;
  border-right: 1px solid #E6E7EB;
  background: #F8F9FB;
}
.productshow-parameter_cell_left .title {
  min-height: 24px;
  height: 24px;
  max-height: 24px;
  font-size: 14px;
  color: #303133;
  line-height: 24px;
}
.productshow-parameter_cell_right {
  border-right: 1px solid #E6E7EB;
}
.productshow-parameter_cell_right .text {
  font-size: 14px;
  color: #303133;
  line-height: 24px;
}

.sub-tab4 .tab-item {
  display: none;
}

.sub-tab4 .tab-item.active {
  display: block;
}

.cvs {
  width: 40px;
  height: 40px;
}

.circular {
  width: 40px;
  height: 40px;
}

.parameter table:nth-child(n+2) {
  margin-top: 40px;
}

.parameter tr {
  min-width: 706px;
  width: 706px;
  max-width: 706px;
  display: block;
}

.parameter tr:first-child {
  padding-bottom: 20px;
}

.parameter tr:first-child td {
  min-width: 100%;
  width: 100%;
  max-width: 100%;
  min-height: 25px;
  height: 25px;
  max-height: 25px;
  font-size: 20px;
  line-height: 25px;
  color: #303133;
}

.parameter tr:nth-child(n+2) {
  display: -moz-box;
  display: -webkit-box;
  display: box;
  display: flexbox;
  display: flex;
  flex-direction: row;
  background: #fff;
  border-left: 1px solid #E6E7EB;
  border-top: 1px solid #E6E7EB;
}

.parameter tr:nth-child(n+2) th {
  min-width: 160px;
  width: 160px;
  max-width: 160px;
  border-right: 1px solid #E6E7EB;
  background: #faf6ef;
  padding: 12px 20px 12px 20px;
  display: -moz-box;
  display: -webkit-box;
  display: box;
  display: flexbox;
  display: flex;
  flex-direction: column;
  justify-content: center !important;
  font-size: 14px;
  color: #303133;
  line-height: 24px;
  text-align: left;
  font-weight: 400;
}

.parameter tr:nth-child(n+2) td {
  padding: 12px 20px 12px 20px;
  border-right: 1px solid #E6E7EB;
  flex: 1;
  width: 0;
  font-size: 14px;
  color: #303133;
  line-height: 24px;
  text-align: left;
  font-weight: 400;
}

.parameter tr:last-child {
  border-bottom: 1px solid #E6E7EB;
}

.parameter img {
  margin-right: 5px;
  vertical-align: -3px;
}/*# sourceMappingURL=style.css.map */