@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 {
  display: inline-block;
  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;
}

.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, .header-nav_cell {
  display: flexbox !important;
  display: flex !important;
  flex-direction: column;
}

.horizontal {
  display: flexbox !important;
  display: flex !important;
  flex-direction: row;
}

.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 {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.hide-scrollbar::-webkit-scrollbar {
  width: 0 !important;
  height: 0 !important;
}

.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;
}

/* 常用内外边距 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-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-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-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-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;
}

/* 常用内外边距 end */
/* 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: #ffffff;
}

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

li > a {
  display: block;
}

/* 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: underline;
  color: #0286FF;
}

.block {
  background-color: white;
}

.block2 {
  background-color: #202020;
}

.block3 {
  background-color: #f8f8fa;
}

.grey {
  background-color: #F2F2F5;
}

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

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

.modal.has-search {
  top: 88px;
}

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

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

.undershadow {
  box-shadow: 0px 1px 0px 0px rgba(0, 0, 0, 0.05);
}

.separate {
  width: 1px;
  height: 10px;
  background: #E6E7EB;
}

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

.square {
  min-width: 6px;
  width: 6px;
  max-width: 6px;
  min-height: 6px;
  height: 6px;
  max-height: 6px;
  background: #C8CACC;
}

.disc {
  min-width: 6px;
  width: 6px;
  max-width: 6px;
  min-height: 6px;
  height: 6px;
  max-height: 6px;
  border-radius: 3px;
  background: #C8CACC;
}

.float {
  float: left;
}

.flex-wrap {
  display: flexbox;
  display: flex;
  flex-wrap: wrap;
}

/* layout/_header.scss */
.header {
  box-sizing: content-box;
  min-height: 88px;
  height: 88px;
  max-height: 88px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10001;
  background-color: #FFFFFF;
}
.header-row {
  display: flexbox;
  display: flex;
  min-height: 50%;
  height: 50%;
  max-height: 50%;
  align-items: center;
}
.header-row-scroll {
  overflow-x: scroll;
  box-shadow: 0 0.5px 0 0 #eee;
}
.header-logo {
  width: auto;
  height: auto;
  max-height: 32px;
}
.header-search .iconfont, .header-search .page .pagination .prev:before, .page .pagination .header-search .prev:before, .header-search .page .pagination .next:before, .page .pagination .header-search .next:before {
  font-size: 1.5rem;
  color: #222;
}
.header-menu .iconfont, .header-menu .page .pagination .prev:before, .page .pagination .header-menu .prev:before, .header-menu .page .pagination .next:before, .page .pagination .header-menu .next:before {
  font-size: 1.5rem;
  color: #222;
}
.header-more {
  font-size: 1.5rem;
  color: black;
}
.header-nav_cell {
  min-height: 100%;
  height: 100%;
  max-height: 100%;
  position: relative;
  align-items: center;
  font-size: 15px;
  color: #646566;
}
.header-nav_cell:last-child {
  padding-right: 20px;
}
.header-nav_cell > a {
  line-height: 44px;
  padding: 0 20px;
  white-space: nowrap;
}
.header-nav_cell.selected {
  font-weight: bold;
  color: black;
}
.header-nav_cell.selected::after {
  content: "";
  position: absolute;
  display: block;
  bottom: 0;
  width: 50%;
  height: 3px;
  border-radius: 1px;
  background: #0286FF;
  z-index: -1;
}
.header-placeholder {
  min-height: 88px;
  height: 88px;
  max-height: 88px;
}

/* layout/_footer.scss */
.footer {
  background: #121212;
}
.footer-nav_list {
  display: flexbox;
  display: flex;
  justify-content: space-around;
  align-items: center;
  min-height: 44px;
  height: 44px;
  max-height: 44px;
}
.footer-nav_cell {
  font-size: 1.0625rem;
  color: #FFFFFF;
  line-height: 1.5rem;
}
.footer-anchors {
  display: flexbox;
  display: flex;
  justify-content: space-evenly;
  font-size: 0.875rem;
  color: #FFFFFF;
  line-height: 1.25rem;
}
.footer-copyright {
  font-size: 0.75rem;
  color: #969799;
  line-height: 1rem;
  text-align: center;
}
.footer .underline {
  border-bottom: 1px solid rgba(100, 100, 100, 0.2);
}

/* layout/_img-box.scss */
.box {
  width: auto;
  height: auto;
  overflow: hidden;
}
.box > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  font-family: "object-fit: cover;";
}

/* layout/_subtitle.scss */
.subtitle {
  display: flexbox;
  display: flex;
  align-items: center;
  padding-bottom: 8px;
  border-bottom: 1px solid #ECEDEF;
}
.subtitle .title {
  font-size: 1rem;
  font-weight: 500;
  color: #000002;
  line-height: 1.3125rem;
}
.subtitle .more {
  font-size: 0.75rem;
  color: #0286FF;
  line-height: 1rem;
}
.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: 12px;
}

/* layout/_catpos.scss */
.catpos {
  display: flexbox;
  display: flex;
  font-size: 0.8125rem;
  color: #999;
  line-height: 2.5rem;
  min-height: 40px;
  height: 40px;
  max-height: 40px;
}
.catpos > a {
  padding: 0 2px;
}
.catpos .iconfont, .catpos .page .pagination .prev:before, .page .pagination .catpos .prev:before, .catpos .page .pagination .next:before, .page .pagination .catpos .next:before {
  font-size: 14px;
  color: #AAAAAA;
}

/* layout/_content.scss */
*[id^=anchor]:target:before {
  display: block;
  content: "";
  margin-top: -88px;
  padding-top: 88px;
}

.morebtn {
  display: block;
  margin: 0 auto;
  min-width: 88%;
  width: 88%;
  max-width: 88%;
  min-height: 2.75rem;
  height: 2.75rem;
  max-height: 2.75rem;
  border: 1px solid #303133;
  font-size: 0.875rem;
  line-height: 44px;
  color: #373739;
  text-align: center;
  overflow: hidden;
  white-space: normal;
}

.article-title {
  font-size: 24px;
  color: #23272E;
  font-weight: bold;
  line-height: 1.6;
}
.article-date {
  font-size: 12px;
  line-height: 16px;
  color: #949699;
}
.article-content {
  font-size: 0.875rem;
  line-height: 1.5rem;
  color: #373739;
}
.article-content h1, .article-content h2, .article-content h3, .article-content h4, .article-content h5, .article-content h6 {
  color: #373739;
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 800;
  color: black;
  padding: 4px 0 4px 10px;
  border-left: 3px solid #0286FF;
  background-color: rgba(25, 133, 255, 0.1);
  margin: 20px 0 10px;
}
.article-content p {
  -ms-word-wrap: break-word;
  word-wrap: break-word;
  margin: 10px 0;
}
.article-content .w, .article-content .w a {
  color: green;
  font-size: 16px;
  text-align: justify;
  font-weight: 700;
  display: inline-block;
}
.article-content .d, .article-content .d a {
  color: rgb(206, 0, 0);
  font-weight: 700;
  display: inline-block;
  font-size: 22px;
  text-decoration-line: underline;
}
.article-content img {
  max-width: 100%;
  width: auto;
  height: auto;
}
.article-button {
  font-size: 14px;
  min-width: 100%;
  width: 100%;
  max-width: 100%;
  line-height: 32px;
  display: block;
  padding: 6px 12px;
  background-color: #F7F7F7;
}
.article-button span {
  color: #999;
  display: block;
}
.article-button a {
  display: block;
  color: #222;
  text-decoration: none;
}

.module-app.Rsliding {
  overflow: auto;
}
.module-app_cell1 .logo {
  min-width: 46px;
  width: 46px;
  max-width: 46px;
  min-height: 46px;
  height: 46px;
  max-height: 46px;
  border-radius: 12px;
}
.module-app_cell1 .title {
  min-height: 20px;
  height: 20px;
  max-height: 20px;
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  color: #373739;
}
.module-app_cell1 .att {
  min-height: 16px;
  height: 16px;
  max-height: 16px;
  font-size: 12px;
  line-height: 16px;
  color: #969799;
}
.module-app_cell1 .dwbtn {
  min-width: 72px;
  width: 72px;
  max-width: 72px;
  min-height: 32px;
  height: 32px;
  max-height: 32px;
  border-radius: 2px;
  background: #F2F2F5;
  font-size: 12px;
  line-height: 32px;
  text-align: center;
  color: #0286FF;
}
.module-app_cell2 {
  min-width: 5rem;
  width: 5rem;
  max-width: 5rem;
}
.module-app_cell2 .logo {
  min-width: 4rem;
  width: 4rem;
  max-width: 4rem;
  min-height: 4rem;
  height: 4rem;
  max-height: 4rem;
  border-radius: 24%;
}
.module-app_cell2 .title {
  min-width: 100%;
  width: 100%;
  max-width: 100%;
  min-height: 40px;
  height: 40px;
  max-height: 40px;
  font-size: 0.875rem;
  line-height: 20px;
  color: #373739;
  text-align: center;
}
.module-app2 {
  display: -moz-grid;
  display: grid;
  display: -moz-grid;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(74px, 1fr));
  justify-content: space-between;
  grid-column-gap: 15px;
  -moz-column-gap: 15px;
  column-gap: 15px;
  grid-row-gap: 16px;
  row-gap: 16px;
}
.module-app2_cell .logo {
  min-width: 86%;
  width: 86%;
  max-width: 86%;
  height: 0;
  max-width: 100%;
  height: 0;
  padding-bottom: 86%;
  position: relative;
  border-radius: 16%;
  margin: 0 auto;
}
.module-app2_cell .logo img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  font-family: "object-fit: cover;";
}
.module-app2_cell .title {
  min-width: 100%;
  width: 100%;
  max-width: 100%;
  font-size: 0.8125rem;
  line-height: 16px;
  text-align: center;
}
.module-news.Rsliding {
  overflow: auto;
}
.module-news_cell1 {
  min-width: 12.125rem;
  width: 12.125rem;
  max-width: 12.125rem;
  margin-right: 12px;
}
.module-news_cell1:last-child {
  margin-right: 16px;
}
.module-news_cell1 .logo {
  min-width: 100%;
  width: 100%;
  max-width: 100%;
  min-height: 118px;
  height: 118px;
  max-height: 118px;
  border-radius: 4px;
}
.module-news_cell1 .logo .iconfont, .module-news_cell1 .logo .page .pagination .prev:before, .page .pagination .module-news_cell1 .logo .prev:before, .module-news_cell1 .logo .page .pagination .next:before, .page .pagination .module-news_cell1 .logo .next:before {
  text-align: center;
  position: absolute;
  font-size: 24px;
  color: #fff;
  box-shadow: 0px 2px 12px 0px rgba(0, 0, 0, 0.12);
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}
.module-news_cell1 .title {
  min-height: 40px;
  height: 40px;
  max-height: 40px;
  font-size: 0.875rem;
  line-height: 20px;
  word-break: break-all;
  text-align: justify;
}
.module-news_cell1 .title2 {
  min-height: 20px;
  height: 20px;
  max-height: 20px;
  font-size: 0.875rem;
  line-height: 20px;
}
.module-news_cell2 .time {
  font-size: 14px;
  color: #0286FF;
}
.module-news_cell2 .title {
  min-height: 20px;
  height: 20px;
  max-height: 20px;
  font-size: 14px;
  line-height: 20px;
  color: #373739;
  overflow: hidden;
  text-overflow: ellipsis;
}
.module-news_cell2 .title:hover {
  color: #000002;
}
.module-news_cell2 .text {
  min-height: 16px;
  height: 16px;
  max-height: 16px;
  font-size: 12px;
  line-height: 16px;
  color: #969799;
}
.module-rank_cell1_title {
  min-height: 22px;
  height: 22px;
  max-height: 22px;
}
.module-rank_cell1_title .num {
  display: inline-block;
  min-width: 16px;
  width: 16px;
  max-width: 16px;
  min-height: 16px;
  height: 16px;
  max-height: 16px;
  background: #515767;
  color: #Fff;
  font-size: 12px;
  line-height: 16px;
  text-align: center;
  vertical-align: 1px;
}
.module-rank_cell1_title .num.col1 {
  background: #FE3B30;
}
.module-rank_cell1_title .num.col2 {
  background: #FF823E;
}
.module-rank_cell1_title .num.col3 {
  background: #FFAC0E;
}
.module-rank_cell1_title .title {
  display: inline;
  font-size: 14px;
  line-height: 22px;
  color: #373739;
}
.module-rank_cell1 .text {
  min-height: 16px;
  height: 16px;
  max-height: 16px;
  font-size: 12px;
  line-height: 16px;
  color: #969799;
  overflow: hidden;
  text-align: justify;
}

.errobox {
  margin-top: 120px;
}
.errobox .logo {
  display: block;
  width: 160px;
  height: 160px;
}
.errobox .title {
  font-size: 18px;
  height: 20px;
  line-height: 20px;
  overflow: hidden;
  color: #373739;
  font-weight: 500;
  text-align: center;
  margin-top: 12px;
}
.errobox .text {
  font-size: 12px;
  height: 16px;
  line-height: 16px;
  overflow: hidden;
  color: #969799;
  text-align: center;
  margin-top: 8px;
}

.show-part {
  padding: 16px 0 16px 0;
  border-top: 1px solid #E6E7EB;
}
.show-part_cell {
  min-width: calc((100% - 17px) / 2);
  width: calc((100% - 17px) / 2);
  max-width: calc((100% - 17px) / 2);
  font-size: 0.75rem;
  line-height: 18px;
  max-height: 2.25rem;
  text-align: center;
  color: #646566;
}
.show-part .partline {
  width: 1px;
  height: 20px;
  background: #E6E7EB;
}

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

.bordert {
  border-top: 1px solid #ECEDEF;
}

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

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

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

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

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

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

.pagemenu {
  overflow: auto;
}
.pagemenu-cell {
  min-width: 4.75rem;
  width: 4.75rem;
  max-width: 4.75rem;
  min-height: 2rem;
  height: 2rem;
  max-height: 2rem;
  border-radius: 3px;
  font-size: 0.875rem;
  line-height: 32px;
  text-align: center;
  overflow: hidden;
  color: #646566;
  margin-right: 8px;
}
.pagemenu-cell:last-child {
  margin-right: 16px;
}
.pagemenu-cell.sel {
  background: #000002;
  color: #fff;
}

.sortlist {
  display: -moz-grid;
  display: grid;
  display: -moz-grid;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(70px, 1fr));
  justify-content: space-between;
  grid-column-gap: 10px;
  -moz-column-gap: 10px;
  column-gap: 10px;
  grid-row-gap: 12px;
  row-gap: 12px;
}
.sortlist-cell {
  min-height: 32px;
  height: 32px;
  max-height: 32px;
  border-radius: 2px;
  font-size: 0.75rem;
  color: #373739;
  line-height: 2rem;
  white-space: nowrap;
  text-align: center;
}
.sortlist-cell > a {
  min-width: 100%;
  width: 100%;
  max-width: 100%;
  text-align: center;
}
.sortlist-cell.sel {
  background: #000002;
  color: #fff;
}

.sortlist2 {
  display: -moz-grid;
  display: grid;
  display: -moz-grid;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(70px, 1fr));
  justify-content: space-between;
  grid-column-gap: 10px;
  -moz-column-gap: 10px;
  column-gap: 10px;
  grid-row-gap: 12px;
  row-gap: 12px;
}
.sortlist2-cell {
  min-height: 32px;
  height: 32px;
  max-height: 32px;
  border-radius: 2px;
  font-size: 0.75rem;
  color: #373739;
  line-height: 2rem;
  white-space: nowrap;
  text-align: center;
}
.sortlist2-cell > a {
  min-width: 100%;
  width: 100%;
  max-width: 100%;
  text-align: center;
}
.sortlist2-cell:nth-child(n+8) {
  display: none;
}
.sortlist2-cell .iconfont, .sortlist2-cell .page .pagination .prev:before, .page .pagination .sortlist2-cell .prev:before, .sortlist2-cell .page .pagination .next:before, .page .pagination .sortlist2-cell .next:before {
  font-size: 0.75rem;
  color: #646566;
}
.sortlist2-cell.sel {
  background: #000002;
  color: #fff;
}

.moresort {
  display: block !important;
}
.moresort div {
  justify-content: center;
}

.rotateup {
  transform: rotate(0.5turn) translate(0, 2px);
}

/* layout/_category.scss */
.category {
  width: 100%;
  height: 100%;
  background: #FFFFFF;
  overflow-y: scroll;
}
.category-menu {
  min-height: 3.5rem;
  height: 3.5rem;
  max-height: 3.5rem;
  font-size: 1.75rem;
  line-height: 3.5rem;
  color: black;
}
.category-menu .iconfont, .category-menu .page .pagination .prev:before, .page .pagination .category-menu .prev:before, .category-menu .page .pagination .next:before, .page .pagination .category-menu .next:before {
  font-size: 1.75rem;
}
.category .submenushow {
  display: none;
}
.category .submenushow-cell {
  min-height: 2.5rem;
  height: 2.5rem;
  max-height: 2.5rem;
  font-size: 1rem;
  line-height: 2.5rem;
  color: #222222;
}
.category-search {
  display: flexbox;
  display: flex;
  width: 100%;
  height: 40px;
}
.category-search > input {
  font-size: 1.5rem;
  line-height: 2.5rem;
  width: 80%;
  color: black;
}
.category-search > input::-webkit-input-placeholder {
  color: #87868C;
}
.category-search > input::-moz-input-placeholder {
  color: #87868C;
}
.category-search > input::-ms-input-placeholder {
  color: #87868C;
}
.category-search > input::-webkit-search-cancel-button {
  filter: brightness(0) invert(1);
  font-size: 28px;
}
.category-search .iconfont, .category-search .page .pagination .prev:before, .page .pagination .category-search .prev:before, .category-search .page .pagination .next:before, .page .pagination .category-search .next:before {
  font-size: 2rem;
  line-height: 2.5rem;
  color: #87868C;
}

/* layout/_pagination.scss */
/* 分页 */
.page {
  text-align: center;
}
.page .pagination {
  display: inline-flexbox;
  display: inline-flex;
  padding-left: 0;
  border-radius: 2px;
}
.page .pagination .next {
  padding: 0;
  width: 28px;
  min-width: 28px;
}
.page .pagination .next:before {
  content: "\e64b";
  font-size: 14px;
}
.page .pagination .prev {
  padding: 0;
  width: 28px;
  min-width: 28px;
}
.page .pagination .prev:before {
  content: "\e64c";
  font-size: 14px;
}
.page .pagination > li > a {
  float: left;
  min-width: 28px;
  height: 28px;
  background: #FFFFFF;
  border-radius: 2px;
  border: 1px solid #DCDEE0;
  font-size: 12px;
  color: #323233;
  line-height: 28px;
  text-align: center;
  margin-left: 4px;
  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: #000002;
  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: #000002;
  border-color: #000002;
  cursor: default;
}

/* page/_index.scss */
.index-top {
  min-width: 100%;
  width: 100%;
  max-width: 100%;
  height: auto;
  position: relative;
  background: linear-gradient(180deg, rgba(54, 139, 217, 0.031372549), rgba(54, 139, 217, 0.062745098));
}
.index-top::after {
  z-index: -1;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  min-width: 100%;
  width: 100%;
  max-width: 100%;
  min-height: 100%;
  height: 100%;
  max-height: 100%;
  background: url(../images/toolbar.png) no-repeat;
  background-position: calc(100% + 16px) 20px;
  background-size: 128px auto;
}
.index-top .toolbar1_cell {
  display: inline-block;
  cursor: pointer;
  height: 1.5rem;
  line-height: 1rem;
  font-size: 0.75rem;
  padding-bottom: 4px;
  color: #373739;
  margin-right: 16px;
}
.index-top .toolbar1_cell.active {
  color: #000002;
  border-bottom: 2px solid #000002;
}
.index-top .toolbar1_cell:last-child {
  margin-right: 0px;
}
.index-top .toolbar-title {
  font-size: 20px;
  line-height: 1.6;
  color: #373739;
  font-weight: 700;
}
.index-top .toolbar-info {
  width: calc(100% - 88px);
  font-size: 11px;
  line-height: 1.6;
  color: #969799;
}
.index-top .toolbar-search {
  min-height: 40px;
  height: 40px;
  max-height: 40px;
  border-radius: 2px;
  background: #ffffff;
}
.index-top .toolbar-search_btn {
  min-width: 4.5rem;
  width: 4.5rem;
  max-width: 4.5rem;
  min-height: 28px;
  height: 28px;
  max-height: 28px;
  background: #0286FF;
  border-radius: 2px;
  font-size: 12px;
  line-height: 28px;
  text-align: center;
  color: #fff;
}
.index-top .toolbar-search > .iconfont, .index-top .page .pagination .toolbar-search > .next:before, .page .pagination .index-top .toolbar-search > .next:before, .index-top .page .pagination .toolbar-search > .prev:before, .page .pagination .index-top .toolbar-search > .prev:before {
  font-size: 20px;
  line-height: 40px;
  color: #89888D;
}
.index-top .toolbar-search > input {
  font-size: 12px;
  height: 40px;
  line-height: 40px;
}
.index-top .toolbar2_cell {
  width: calc((100% - 40px) / 5);
  margin-right: 10px;
}
.index-top .toolbar2_cell .logo {
  margin: 0 auto;
  min-width: 2rem;
  width: 2rem;
  max-width: 2rem;
  min-height: 2rem;
  height: 2rem;
  max-height: 2rem;
}
.index-top .toolbar2_cell .title {
  height: 14px;
  font-size: 0.625rem;
  line-height: 14px;
  overflow: hidden;
}
.index-top .toolbar2_cell:last-child {
  margin-right: 0px;
}
.index-top .question {
  overflow: auto;
  display: flex;
}
.index-top .question .faq {
  padding: 12px;
  min-width: 14.75rem;
  width: 14.75rem;
  max-width: 14.75rem;
  height: 150px;
  background: linear-gradient(180deg, #F4F7FC 0%, #FFFFFF 100%);
  box-shadow: 0px 8px 24px 0px rgba(1, 34, 122, 0.07);
  border-radius: 2px;
  border: 2px solid #FFFFFF;
  margin-right: 16px;
}
.index-top .question .faq-title {
  height: 20px;
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  color: #000002;
}
.index-top .question .faq-cell {
  min-height: 16px;
  height: 16px;
  max-height: 16px;
}
.index-top .question .faq-cell .faq-circle {
  min-width: 0.125rem;
  width: 0.125rem;
  max-width: 0.125rem;
  min-height: 0.125rem;
  height: 0.125rem;
  max-height: 0.125rem;
  background-color: #373739;
}
.index-top .question .faq-cell .title {
  min-height: 16px;
  height: 16px;
  max-height: 16px;
  font-size: 12px;
  line-height: 16px;
  color: #373739;
}
.index-banner__img {
  position: relative;
  min-width: 100%;
  width: 100%;
  max-width: 100%;
  min-height: 200px;
  height: 200px;
  max-height: 200px;
}
.index-banner__content {
  position: absolute;
  left: 0;
  bottom: 0;
  min-width: 100%;
  width: 100%;
  max-width: 100%;
  min-height: 100%;
  height: 100%;
  max-height: 100%;
  background: linear-gradient(180deg, transparent 49.06%, rgba(0, 0, 0, 0.5));
  padding-top: 136px;
}
.index-banner__content .title {
  min-height: 1.25rem;
  height: 1.25rem;
  max-height: 1.25rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  color: white;
}
.index-banner__content .att {
  min-height: 1rem;
  height: 1rem;
  max-height: 1rem;
  font-size: 0.75rem;
  line-height: 1rem;
  color: #E6E7EB;
}
.index-banner__btn {
  font-size: 0.75rem;
  height: 1.4375rem;
  width: 3rem;
  line-height: 1.4375rem;
  text-align: center;
  color: #0286FF;
  background-color: #ffffff;
  border-radius: 15px;
}
.index-banner__slide {
  width: 100%;
}
.index-banner__swiper > .banner-pagination {
  position: absolute;
  display: flexbox;
  display: flex;
  height: 42px;
  align-items: center;
  justify-content: flex-end;
  z-index: 1;
  bottom: 0;
  right: 0;
}
.index-banner__swiper > .banner-pagination .swiper-pagination-bullet {
  display: list-item;
  width: 8px;
  height: 2px;
  background: #E6E7EB;
  margin: 0 1px;
  opacity: 0.5;
  border-radius: 0;
}
.index-banner__swiper > .banner-pagination .swiper-pagination-bullet-active {
  background: #ffffff;
  min-width: 14px;
  width: 14px;
  max-width: 14px;
  opacity: 1;
}
.index-link > li {
  align-items: center;
}
.index-link .separate {
  display: inline-block;
}
.index-link_title {
  display: inline-block;
  font-size: 0.75rem;
  line-height: 1.75rem;
  color: #646566;
}
.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: 10px;
  margin-bottom: 12px;
  color: #646566;
}
.index-yqlj_cell:hover {
  color: #fff;
}

.tjnews-menu {
  min-height: 2rem;
  height: 2rem;
  max-height: 2rem;
  font-size: 15px;
  line-height: 24px;
  color: #373739;
  position: relative;
  width: 25%;
  text-align: center;
  padding-bottom: 8px;
  border-bottom: 1px solid #ECEDEF;
  overflow: hidden;
  white-space: nowrap;
}
.tjnews-menu.active {
  font-weight: 500;
  color: #000002;
}
.tjnews-menu.active::after {
  content: "";
  position: absolute;
  display: block;
  top: 29px;
  left: 50%;
  width: 64px;
  height: 2px;
  background-color: #373739;
  z-index: -1;
  margin-left: -32px;
}
.tjnews-cell .logo {
  min-width: 7.625rem;
  width: 7.625rem;
  max-width: 7.625rem;
  min-height: 4.625rem;
  height: 4.625rem;
  max-height: 4.625rem;
  border-radius: 4px;
}
.tjnews-cell .logo .iconfont, .tjnews-cell .logo .page .pagination .next:before, .page .pagination .tjnews-cell .logo .next:before, .tjnews-cell .logo .page .pagination .prev:before, .page .pagination .tjnews-cell .logo .prev:before {
  text-align: center;
  position: absolute;
  font-size: 20px;
  color: #fff;
  box-shadow: 0px 2px 12px 0px rgba(0, 0, 0, 0.12);
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}
.tjnews-cell .title {
  min-height: 2.5rem;
  height: 2.5rem;
  max-height: 2.5rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  color: #373739;
  font-weight: 500;
  overflow: hidden;
  text-overflow: ellipsis;
}
.tjnews-cell .att {
  min-height: 1.0625rem;
  height: 1.0625rem;
  max-height: 1.0625rem;
  font-size: 0.75rem;
  line-height: 1.0625rem;
  color: #646566;
}

.loadingmore {
  display: block;
  margin: 0 auto;
  min-width: 108px;
  width: 108px;
  max-width: 108px;
  min-height: 32px;
  height: 32px;
  max-height: 32px;
  border-radius: 2px;
  background-color: #F5F5F5;
  font-size: 12px;
  line-height: 32px;
  text-align: center;
  color: #373739;
}

.tjsub-tab .tab-item {
  display: none;
}

.tjsub-tab .tab-item.active {
  display: block;
}

.hotnews-menu {
  display: flexbox;
  display: flex;
  align-items: center;
  min-width: 8rem;
  width: 8rem;
  max-width: 8rem;
  min-height: 2rem;
  height: 2rem;
  max-height: 2rem;
  background-color: #f5f5f5;
  border-radius: 4px;
  padding: 0.25rem;
}
.hotnews-menu.width2 {
  min-width: 5.5rem;
  width: 5.5rem;
  max-width: 5.5rem;
}
.hotnews-menu_cell {
  min-width: 2.5rem;
  width: 2.5rem;
  max-width: 2.5rem;
  min-height: 1.5rem;
  height: 1.5rem;
  max-height: 1.5rem;
  background-color: #f5f5f5;
  border-radius: 2px;
  font-size: 0.75rem;
  line-height: 1.5625rem;
  color: #646566;
  text-align: center;
}
.hotnews-menu_cell.active {
  background-color: #0286FF;
  color: #fff;
}
.hotnews-list_cell {
  min-width: 10.25rem;
  width: 10.25rem;
  max-width: 10.25rem;
  margin-right: 12px;
}
.hotnews-list_cell:last-child {
  margin-right: 16px;
}
.hotnews-list_cell .logo {
  min-height: 100px;
  height: 100px;
  max-height: 100px;
  border-radius: 4px;
}
.hotnews-list_cell .title {
  min-height: 2.5rem;
  height: 2.5rem;
  max-height: 2.5rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  color: #373739;
  font-weight: 500;
  overflow: hidden;
  text-overflow: ellipsis;
}
.hotnews-list .item {
  border-bottom: 1px dashed #ECEDEF;
  padding: 12px 0 10px;
}
.hotnews-list .item:last-of-type {
  border-bottom: none;
  padding-bottom: 0;
}
.hotnews-list .item .rank {
  color: #fff;
  background-color: #ccc;
  min-width: 16px;
  width: 16px;
  max-width: 16px;
  min-height: 16px;
  height: 16px;
  max-height: 16px;
  border-radius: 2px;
  text-align: center;
  font-size: 12px;
  line-height: 16px;
  margin-left: 2px;
}
.hotnews-list .item:nth-child(1) .rank {
  background-color: #E04A1C;
}
.hotnews-list .item:nth-child(2) .rank {
  background-color: #F88217;
}
.hotnews-list .item:nth-child(3) .rank {
  background-color: #FFB915;
}
.hotnews-list .item .title {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.5;
  color: #222222;
}
.hotnews-list .item .title:hover {
  color: #0286FF;
}
.hotnews-list .item .att {
  font-size: 11px;
  line-height: 1.6;
  color: #969799;
  margin-top: 4px;
}

.sub-tab .subtitle {
  padding-bottom: 8px;
  border-bottom: 1px solid #ECEDEF;
}

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

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

.hottag-cell {
  min-height: 1.875rem;
  height: 1.875rem;
  max-height: 1.875rem;
  padding: 0 10px 0 10px;
  background-color: #F5F5F5;
  border-radius: 2px;
  font-size: 0.75rem;
  line-height: 30px;
  text-align: center;
  color: #373739;
  margin-left: 6px;
  margin-bottom: 6px;
  white-space: nowrap;
}
.hottag-cell:last-child {
  margin-right: 16px;
}

/* page/_tool.scss */
.toollist-top {
  min-width: 100%;
  width: 100%;
  max-width: 100%;
  min-height: 7.875rem;
  height: 7.875rem;
  max-height: 7.875rem;
  position: relative;
}
.toollist-top::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  min-width: 100%;
  width: 100%;
  max-width: 100%;
  min-height: 7.875rem;
  height: 7.875rem;
  max-height: 7.875rem;
  background: url(../images/toollistbg.jpg) no-repeat center center;
  background-size: cover;
  z-index: -1;
}
.toollist-top_content {
  min-width: 100%;
  width: 100%;
  max-width: 100%;
  min-height: 100%;
  height: 100%;
  max-height: 100%;
}
.toollist-top_content .title {
  font-size: 1.125rem;
  line-height: 1.5rem;
  font-weight: 500;
  color: #fff;
}
.toollist-top_content .text {
  font-size: 0.75rem;
  line-height: 1.125rem;
  max-height: 3.375rem;
  color: #fff;
  word-break: break-all;
  text-align: center;
  opacity: 0.8;
}
.toollist-cell > a {
  min-height: 6.375rem;
  height: 6.375rem;
  max-height: 6.375rem;
}
.toollist-cell .logo {
  min-width: 2.5rem;
  width: 2.5rem;
  max-width: 2.5rem;
  min-height: 2.5rem;
  height: 2.5rem;
  max-height: 2.5rem;
}
.toollist-cell .title {
  min-height: 1.25rem;
  height: 1.25rem;
  max-height: 1.25rem;
  font-size: 0.875rem;
  line-height: 20px;
  color: #373739;
  font-weight: 500;
}
.toollist-cell .text {
  max-height: 2.25rem;
  font-size: 0.75rem;
  line-height: 18px;
  color: #969799;
  word-break: break-all;
  text-align: justify;
}

.tool-top {
  min-width: 100%;
  width: 100%;
  max-width: 100%;
  min-height: 6.25rem;
  height: 6.25rem;
  max-height: 6.25rem;
  position: relative;
}
.tool-top::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  min-width: 100%;
  width: 100%;
  max-width: 100%;
  min-height: 6.25rem;
  height: 6.25rem;
  max-height: 6.25rem;
  background: url(../images/toolshowbg.png) no-repeat center center;
  background-size: cover;
  z-index: -1;
}
.tool-top_content {
  min-height: 6.25rem;
  height: 6.25rem;
  max-height: 6.25rem;
  margin: 0 auto;
}
.tool-top_content .title {
  min-height: 1.75rem;
  height: 1.75rem;
  max-height: 1.75rem;
  width: 100%;
  font-size: 1.25rem;
  line-height: 28px;
  font-weight: 500;
  color: #fff;
  text-align: center;
  overflow: hidden;
  text-shadow: 0px 0px 2px rgba(0, 0, 0, 0.5);
}
.tool-query .title {
  display: block;
  min-height: 1.625rem;
  height: 1.625rem;
  max-height: 1.625rem;
  font-size: 1rem;
  color: #373739;
  line-height: 26px;
  font-weight: 500;
}
.tool-query .title .col {
  color: #FE3B30;
}
.tool-query_search {
  width: 100%;
  min-height: 2.75rem;
  height: 2.75rem;
  max-height: 2.75rem;
  border: 1px solid #C8CACC;
}
.tool-query_search > input {
  font-size: 0.875rem;
  line-height: 44px;
  color: #373739;
}
.tool-query_search > input::-webkit-input-placeholder {
  color: #C8CACC;
}
.tool-query_search > input::-moz-input-placeholder {
  color: #C8CACC;
}
.tool-query_search > input::-ms-input-placeholder {
  color: #C8CACC;
}
.tool-query_search > input::-webkit-search-cancel-button {
  filter: grayscale(100%) opacity(30%);
  font-size: 18px;
}
.tool-query .tips {
  display: block;
  font-size: 0.75rem;
  color: #FE3B30;
  line-height: 16px;
}
.tool-query .text {
  display: block;
  font-size: 0.75rem;
  color: #969799;
  line-height: 18px;
}
.tool-query .tutorial {
  min-height: 1.125rem;
  height: 1.125rem;
  max-height: 1.125rem;
  font-size: 0.75rem;
  line-height: 18px;
  color: #0286FF;
}
.tool-query_btn {
  display: block;
  width: 100%;
  min-height: 2.75rem;
  height: 2.75rem;
  max-height: 2.75rem;
  background: #000;
  font-size: 0.875rem;
  color: #fff;
  line-height: 44px;
  text-align: center;
}
.tool-result {
  min-height: 200px;
  border-bottom: 1px solid #E6E7EB;
}
.tool-result_title .titleline {
  min-width: 37%;
  width: 37%;
  max-width: 37%;
  min-height: 1px;
  height: 1px;
  max-height: 1px;
  background: #E6E7EB;
}
.tool-result_title .title {
  min-height: 1.375rem;
  height: 1.375rem;
  max-height: 1.375rem;
  font-size: 1rem;
  font-weight: 500;
  color: #303133;
  line-height: 22px;
  text-align: center;
}
.tool-result_list {
  border-top: 1px solid #E6E7EB;
  border-left: 1px solid #E6E7EB;
  margin: 0 auto;
}
.tool-result_list_cell {
  border-bottom: 1px solid #E6E7EB;
}
.tool-result_list_cell .title {
  min-width: 35%;
  width: 35%;
  max-width: 35%;
  padding: 12px 0 12px 0;
  font-size: 14px;
  line-height: 20px;
  background: #F8F9FB;
  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 {
  min-width: 65%;
  width: 65%;
  max-width: 65%;
  padding: 12px 0 12px 0;
  font-size: 14px;
  line-height: 20px;
  padding-left: 12px;
  padding-right: 12px;
  border-right: 1px solid #E6E7EB;
  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;
}

/* page/_news.scss */
.newslist-cell1 .logo {
  min-width: 7.625rem;
  width: 7.625rem;
  max-width: 7.625rem;
  min-height: 4.625rem;
  height: 4.625rem;
  max-height: 4.625rem;
  border-radius: 4px;
}
.newslist-cell1 .logo .iconfont, .newslist-cell1 .logo .page .pagination .next:before, .page .pagination .newslist-cell1 .logo .next:before, .newslist-cell1 .logo .page .pagination .prev:before, .page .pagination .newslist-cell1 .logo .prev:before {
  text-align: center;
  position: absolute;
  font-size: 20px;
  color: #fff;
  box-shadow: 0px 2px 12px 0px rgba(0, 0, 0, 0.12);
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}
.newslist-cell1 .title {
  min-height: 2.5rem;
  height: 2.5rem;
  max-height: 2.5rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  color: #373739;
  font-weight: 500;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-all;
  text-align: justify;
}
.newslist-cell1 .att {
  min-height: 1.0625rem;
  height: 1.0625rem;
  max-height: 1.0625rem;
  font-size: 0.75rem;
  line-height: 1.0625rem;
  color: #646566;
}
.newslist-cell2 {
  min-height: 1.25rem;
  height: 1.25rem;
  max-height: 1.25rem;
  font-size: 1.125rem;
  line-height: 20px;
  color: #373739;
}
.newslist-cell3 {
  background: #F9F9FA;
  border-radius: 4px;
}
.newslist-cell3 .time {
  font-size: 1rem;
  color: #0286FF;
  font-weight: bold;
}
.newslist-cell3 .title {
  min-height: 1.25rem;
  height: 1.25rem;
  max-height: 1.25rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  color: #373739;
  font-weight: 500;
}
.newslist-cell3 .att {
  font-size: 12px;
  color: #969799;
}
.newslist-cell3 .text {
  min-height: 3.375rem;
  height: 3.375rem;
  max-height: 3.375rem;
  font-size: 0.75rem;
  line-height: 1.125rem;
  color: #646566;
  word-break: break-all;
  text-align: justify;
}

.newsshow-top .title {
  font-size: 1.125rem;
  font-weight: 500;
  color: #333333;
  line-height: 30px;
  text-align: justify;
  word-break: break-all;
}
.newsshow-top .att {
  min-height: 1.375rem;
  height: 1.375rem;
  max-height: 1.375rem;
  font-size: 0.75rem;
  line-height: 22px;
  color: #969799;
  overflow: hidden;
}
.newsshow-tags_cell {
  display: inline-block;
  min-height: 1.75rem;
  height: 1.75rem;
  max-height: 1.75rem;
  font-size: 0.875rem;
  line-height: 28px;
  padding: 0 10px 0 10px;
  background: #F5F5F6;
  color: #646566;
}
.newsshow-about .logo {
  min-width: 4rem;
  width: 4rem;
  max-width: 4rem;
  min-height: 4rem;
  height: 4rem;
  max-height: 4rem;
  border-radius: 18px;
}
.newsshow-about .title {
  min-height: 1.25rem;
  height: 1.25rem;
  max-height: 1.25rem;
  font-size: 0.875rem;
  line-height: 20px;
  color: #373739;
  font-weight: 500;
}
.newsshow-about .att {
  min-height: 1rem;
  height: 1rem;
  max-height: 1rem;
  font-size: 0.75rem;
  line-height: 16px;
  color: #646566;
}
.newsshow-about .att.col {
  color: #969799;
}
.newsshow-about .dwbtn {
  min-width: 64px;
  width: 64px;
  max-width: 64px;
  min-height: 28px;
  height: 28px;
  max-height: 28px;
  border-radius: 2px;
  background: #F7F7F7;
  font-size: 12px;
  line-height: 28px;
  color: #0286FF;
  text-align: center;
}
.newsshow-about .tag {
  min-height: 28px;
  height: 28px;
  max-height: 28px;
  font-size: 12px;
  line-height: 28px;
  background: #F2F2F5;
  color: #646566;
  text-align: center;
}
.newsshow-part {
  padding: 16px 0 16px 0;
  border-top: 1px solid #ECEDEF;
}
.newsshow-part_cell {
  min-width: calc((100% - 17px) / 2);
  width: calc((100% - 17px) / 2);
  max-width: calc((100% - 17px) / 2);
  font-size: 0.75rem;
  line-height: 18px;
  max-height: 2.25rem;
  text-align: center;
  color: #646566;
}
.newsshow-part .partline {
  width: 1px;
  height: 20px;
  background: #E6E7EB;
}

/* page/_firmware.scss */
.firmware-top .title {
  font-size: 1.25rem;
  line-height: 28px;
  font-weight: 500;
  color: #373739;
}
.firmware-top .logo {
  min-width: 10.625rem;
  width: 10.625rem;
  max-width: 10.625rem;
  min-height: 6.25rem;
  height: 6.25rem;
  max-height: 6.25rem;
}
.firmware-top_cell {
  min-height: 2.25rem;
  height: 2.25rem;
  max-height: 2.25rem;
  min-width: calc((100% - 28px) / 2);
  width: calc((100% - 28px) / 2);
  max-width: calc((100% - 28px) / 2);
  margin-right: 28px;
}
.firmware-top_cell:nth-child(2n) {
  margin-right: 0px;
}
.firmware-top_cell .iconfont, .firmware-top_cell .page .pagination .next:before, .page .pagination .firmware-top_cell .next:before, .firmware-top_cell .page .pagination .prev:before, .page .pagination .firmware-top_cell .prev:before {
  font-size: 2rem;
  color: #C8CACC;
}
.firmware-top_cell .title {
  max-height: 2.25rem;
  font-size: 0.75rem;
  line-height: 1.125rem;
  color: #646566;
  font-weight: 400;
  text-align: justify;
  word-break: break-all;
}
.firmware-sort_cell {
  position: relative;
  min-width: 25%;
  width: 25%;
  max-width: 25%;
}
.firmware-sort_cell .iconfont, .firmware-sort_cell .page .pagination .next:before, .page .pagination .firmware-sort_cell .next:before, .firmware-sort_cell .page .pagination .prev:before, .page .pagination .firmware-sort_cell .prev:before {
  font-size: 32px;
}
.firmware-sort_cell .title {
  font-size: 12px;
  line-height: 18px;
  text-align: center;
  word-break: break-all;
}
.firmware-sort_cell.sel::before {
  position: absolute;
  content: "";
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  min-width: 40px;
  width: 40px;
  max-width: 40px;
  min-height: 2px;
  height: 2px;
  max-height: 2px;
  background: #373739;
}
.firmware-sort_cell2 .title {
  font-size: 0.875rem;
  color: #373739;
}
.firmware-sort_cell2_select {
  min-height: 2.5rem;
  height: 2.5rem;
  max-height: 2.5rem;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  background: none;
  background: url(../images/select.png) no-repeat;
  background-size: 14px;
  background-position: right 12px center;
  outline: none;
  border: 1px solid #C8CACC;
  border-radius: 4px;
  font-size: 0.875rem;
  color: #373739;
}
.firmware-sort_cell2 .cancellation {
  min-height: 2.5rem;
  height: 2.5rem;
  max-height: 2.5rem;
  border: 1px solid #7D7E80;
  border-radius: 6px;
  font-size: 0.875rem;
  line-height: 34px;
  color: #7D7E80;
  text-align: center;
}
.firmware-cell .title {
  min-height: 1.25rem;
  height: 1.25rem;
  max-height: 1.25rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  color: #373739;
  font-weight: 500;
}
.firmware-cell .dwbtn {
  min-width: 4.5rem;
  width: 4.5rem;
  max-width: 4.5rem;
  min-height: 1.75rem;
  height: 1.75rem;
  max-height: 1.75rem;
  background: #0286FF;
  border-radius: 2px;
  font-size: 0.75rem;
  line-height: 1.75rem;
  color: #Fff;
  text-align: center;
}
.firmware-cell_att {
  min-width: calc((100% - 12px) / 2);
  width: calc((100% - 12px) / 2);
  max-width: calc((100% - 12px) / 2);
  margin-right: 12px;
  background: #F9F9FA;
  border-radius: 2px;
}
.firmware-cell_att:nth-child(2n) {
  margin-right: 0px;
}
.firmware-cell_att_title {
  min-height: 1rem;
  height: 1rem;
  max-height: 1rem;
  font-size: 0.75rem;
  line-height: 1rem;
  color: #646566;
}
.firmware-cell_att_result {
  min-height: 1.25rem;
  height: 1.25rem;
  max-height: 1.25rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  color: #373739;
  font-weight: 500;
}
.firmware-cell_att .iconfont.col1, .firmware-cell_att .page .pagination .col1.next:before, .page .pagination .firmware-cell_att .col1.next:before, .firmware-cell_att .page .pagination .col1.prev:before, .page .pagination .firmware-cell_att .col1.prev:before {
  color: red;
}
.firmware-cell_att .iconfont.col2, .firmware-cell_att .page .pagination .col2.next:before, .page .pagination .firmware-cell_att .col2.next:before, .firmware-cell_att .page .pagination .col2.prev:before, .page .pagination .firmware-cell_att .col2.prev:before {
  color: rgb(0, 170, 0);
}

/* page/_app.scss */
.applist-cell .logo {
  min-width: 64px;
  width: 64px;
  max-width: 64px;
  min-height: 64px;
  height: 64px;
  max-height: 64px;
  border-radius: 18px;
}
.applist-cell .title {
  min-height: 20px;
  height: 20px;
  max-height: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 20px;
  color: #373739;
}
.applist-cell .att {
  min-height: 20px;
  height: 20px;
  max-height: 20px;
  font-size: 0.875rem;
  line-height: 20px;
  color: #646566;
}
.applist-cell .spline {
  min-width: 1px;
  width: 1px;
  max-width: 1px;
  min-height: 8px;
  height: 8px;
  max-height: 8px;
  background: #646566;
}
.applist-cell .score {
  min-height: 16px;
  height: 16px;
  max-height: 16px;
  font-size: 0.75rem;
  line-height: 16px;
  color: #0286FF;
}
.applist-cell .score .iconfont, .applist-cell .score .page .pagination .next:before, .page .pagination .applist-cell .score .next:before, .applist-cell .score .page .pagination .prev:before, .page .pagination .applist-cell .score .prev:before {
  min-height: 12px;
  height: 12px;
  max-height: 12px;
  font-size: 0.75rem;
  line-height: 12px;
}
.applist-cell_taglist {
  min-height: 16px;
  height: 16px;
  max-height: 16px;
  overflow: hidden;
  white-space: nowrap;
}
.applist-cell_taglist .tag {
  position: relative;
  min-height: 16px;
  height: 16px;
  max-height: 16px;
  font-size: 0.75rem;
  display: inline-block;
  line-height: 16px;
  color: #969799;
}
.applist-cell_taglist .tag:hover {
  color: #0286FF;
}
.applist-cell_taglist .tag:not(:last-child):after {
  background: #969799;
  border-radius: 50%;
  content: "";
  display: block;
  width: 2px;
  height: 2px;
  position: absolute;
  top: 7px;
  right: -8px;
}
.applist-cell .dwbtn {
  min-width: 64px;
  width: 64px;
  max-width: 64px;
  min-height: 28px;
  height: 28px;
  max-height: 28px;
  background: #F7F7F7;
  border-radius: 2px;
  font-size: 0.75rem;
  line-height: 28px;
  text-align: center;
  color: #0286FF;
}
.applist-cell .dwbtn:hover {
  background: #0286FF;
  color: #fff;
}

.appshow-top .logo {
  min-width: 4.75rem;
  width: 4.75rem;
  max-width: 4.75rem;
  min-height: 4.75rem;
  height: 4.75rem;
  max-height: 4.75rem;
  border-radius: 20px;
}
.appshow-top .title {
  min-height: 20px;
  height: 20px;
  max-height: 20px;
  font-size: 0.9375rem;
  line-height: 20px;
  color: #373739;
  font-weight: 500;
}
.appshow-top .att-cell {
  width: calc(40% - 8px);
  margin-right: 8px;
  height: 16px;
  font-size: 0.75rem;
  color: #969799;
  overflow: hidden;
  margin-bottom: 8px;
}
.appshow-top .att-cell:nth-child(2n) {
  margin-right: 0px;
  width: 60%;
}
.appshow-top .dwbtn {
  display: block;
  min-height: 44px;
  height: 44px;
  max-height: 44px;
  font-size: 0.875rem;
  line-height: 44px;
  font-weight: 500;
  text-align: center;
  background: #0286FF;
  color: #fff;
}
.appshow-top .dwbtn.none {
  background: #C8CACC;
  color: #fff;
}
.appshow-top .tags {
  overflow: scroll;
}
.appshow-top .tags-cell {
  display: block;
  height: 32px;
  background: #F2F2F5;
  border-radius: 2px;
  font-size: 0.75rem;
  line-height: 32px;
  color: #646566;
  text-align: center;
  white-space: nowrap;
  margin-right: 8px;
}
.appshow-top .tags-cell > a {
  display: block;
  min-width: 100%;
  width: 100%;
  max-width: 100%;
}
.appshow-top .tags-cell:last-child {
  margin-right: 16px;
}
.appshow-about_cell {
  min-width: calc((100% - 16px) / 2);
  width: calc((100% - 16px) / 2);
  max-width: calc((100% - 16px) / 2);
  margin-right: 16px;
}
.appshow-about_cell:nth-child(2n) {
  margin-right: 0px;
}
.appshow-about_cell .title {
  min-height: 20px;
  height: 20px;
  max-height: 20px;
  font-size: 0.875rem;
  line-height: 20px;
  color: #969799;
}
.appshow-about_cell .text {
  max-height: 40px;
  font-size: 0.875rem;
  line-height: 20px;
  color: #373739;
}

.screenshot {
  min-height: 212px;
  height: 212px;
  max-height: 212px;
  overflow: scroll;
}
.screenshot-cell {
  margin-right: 12px;
}
.screenshot-cell:last-child {
  margin-right: 16px;
}
.screenshot-cell .logo {
  min-height: 212px;
  height: 212px;
  max-height: 212px;
  min-width: auto;
  width: auto;
  max-width: auto;
  border-radius: 8px;
}

/* page/_zt.scss */
.ztlist-list {
  display: -moz-grid;
  display: grid;
  display: -moz-grid;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(165px, 1fr));
  justify-content: space-between;
  grid-column-gap: 13px;
  -moz-column-gap: 13px;
  column-gap: 13px;
  grid-row-gap: 20px;
  row-gap: 20px;
}
.ztlist-list_cell .logo {
  min-width: 100%;
  width: 100%;
  max-width: 100%;
  height: 0;
  max-width: 100%;
  height: 0;
  padding-bottom: 62%;
  position: relative;
  border-radius: 4px;
}
.ztlist-list_cell .logo img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  font-family: "object-fit: cover;";
}
.ztlist-list_cell .logo .iconfont, .ztlist-list_cell .logo .page .pagination .next:before, .page .pagination .ztlist-list_cell .logo .next:before, .ztlist-list_cell .logo .page .pagination .prev:before, .page .pagination .ztlist-list_cell .logo .prev:before {
  text-align: center;
  position: absolute;
  font-size: 20px;
  color: #fff;
  box-shadow: 0px 2px 12px 0px rgba(0, 0, 0, 0.12);
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}
.ztlist-list_cell .title {
  min-height: 20px;
  height: 20px;
  max-height: 20px;
  font-size: 0.875rem;
  line-height: 20px;
  color: #373739;
}
.ztlist-list_cell .title2 {
  min-height: 40px;
  height: 40px;
  max-height: 40px;
  font-size: 0.875rem;
  line-height: 20px;
  color: #373739;
  text-align: justify;
  word-break: break-all;
}

.ztshow-top .logo {
  min-width: 100%;
  width: 100%;
  max-width: 100%;
  height: 0;
  max-width: 100%;
  height: 0;
  padding-bottom: 60%;
  position: relative;
}
.ztshow-top .logo img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  font-family: "object-fit: cover;";
}
.ztshow-top_content {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 80px;
  background: rgba(0, 0, 0, 0.3);
}
.ztshow-top_content_text {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
}
.ztshow-top_content_text .title {
  min-height: 30px;
  height: 30px;
  max-height: 30px;
  font-size: 16px;
  line-height: 30px;
  font-weight: 500;
  color: #fff;
}
.ztshow-top_content_text .att {
  min-height: 16px;
  height: 16px;
  max-height: 16px;
  font-size: 12px;
  line-height: 16px;
  color: #fff;
  opacity: 0.9;
}
.ztshow-top .tags {
  overflow: scroll;
}
.ztshow-top .tags-cell {
  display: block;
  height: 32px;
  background: #F2F2F5;
  border-radius: 2px;
  font-size: 0.75rem;
  line-height: 32px;
  color: #646566;
  text-align: center;
  white-space: nowrap;
  margin-right: 8px;
}
.ztshow-top .tags-cell > a {
  display: block;
  min-width: 100%;
  width: 100%;
  max-width: 100%;
}
.ztshow-top .tags-cell:last-child {
  margin-right: 16px;
}
.ztshow-top .text {
  max-height: 72px;
  font-size: 12px;
  line-height: 18px;
  color: #969799;
  text-align: justify;
  word-break: break-all;
  color: #969799;
}/*# sourceMappingURL=style.css.map */