@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;
  font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Ubuntu, Helvetica Neue, Helvetica, Arial, PingFang SC, Hiragino Sans GB, Microsoft YaHei UI, Microsoft YaHei, Source Han Sans CN, sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
  display: inline-block;
}

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, .qrcode, .coltitle, .subtitle, .header-mobile {
  display: -moz-box;
  display: -webkit-box;
  display: box;
  display: flexbox;
  display: flex;
}

.hide {
  display: none !important;
}

.clear {
  clear: both;
}

.over-hide {
  overflow: hidden;
}

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

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

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

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

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

.wrap {
  flex-wrap: wrap;
}

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

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

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

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

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

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

.flexcenter {
  align-items: center;
  justify-content: center;
}

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

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

/* base/_normalize.scss */
body {
  background-color: #f9f9f9;
}

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

.col-1-1 {
  min-width: 100%;
  width: 100%;
  max-width: 100%;
}

.col-1-2 {
  min-width: 50%;
  width: 50%;
  max-width: 50%;
}

.col-1-3 {
  min-width: 33.3%;
  width: 33.3%;
  max-width: 33.3%;
}

.col-1-4 {
  min-width: 25%;
  width: 25%;
  max-width: 25%;
}

.col-1-5 {
  min-width: 20%;
  width: 20%;
  max-width: 20%;
}

.grid-8 {
  margin-left: -8px;
}

.grid-8 > * {
  padding-left: 8px;
}

.grid-12 {
  margin-left: -12px;
}

.grid-12 > * {
  padding-left: 12px;
}

.grid-16 {
  margin-left: -16px;
}

.grid-16 > * {
  padding-left: 16px;
}

.grid-30 {
  margin-left: -30px;
}

.grid-30 > * {
  padding-left: 30px;
}

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

.block {
  background-color: white;
  border-radius: 4px;
  overflow: hidden;
}

.block.sdow {
  box-shadow: 0 0 2px 0 rgba(98, 124, 153, 0.1);
}

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

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

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

.border {
  border: 1px solid #f7f7f7;
  border-radius: 5px;
}

.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: 8px;
  width: 8px;
  max-width: 8px;
  min-height: 8px;
  height: 8px;
  max-height: 8px;
  border-radius: 50%;
  border: 2px solid #C8CACC;
}

.float {
  float: left;
}

/* layout/_header.scss */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  max-height: 60px;
  z-index: 1000;
  background-color: white;
  box-shadow: 0 4px 4px -4px rgba(98, 124, 153, 0.1);
}
.header > .content {
  height: 100%;
}
.header-logo {
  max-height: 60px;
  width: auto;
  height: auto;
  max-width: 130px;
}
.header .header-nav_cell {
  font-size: 16px;
  color: #646566;
  padding: 0 16px;
  line-height: 64px;
  position: relative;
}
.header .header-nav_cell a {
  display: inline-block;
  font-weight: 600;
  line-height: 56px;
}
.header .header-nav_cell a:hover {
  border-bottom: 3px solid #1985ff;
}
.header .header-nav_cell.selected a {
  border-bottom: 3px solid #1985ff;
}
.header-search {
  position: relative;
  width: 160px;
  height: 34px;
  float: right;
  border-radius: 20px;
  border: 1px solid #E6E7EB;
}
.header-search > input {
  height: 100%;
  width: 100px;
}
.header-search > input::-moz-placeholder {
  color: #ccc;
}
.header-search > input::placeholder {
  color: #ccc;
}
.header-search > .iconfont, .page .pagination .header-search > .prev:before, .page .pagination .header-search > .next:before {
  position: absolute;
  font-size: 20px;
  right: 12px;
  top: 50%;
  color: #CCCCCC;
  transform: translateY(-50%);
}
.header-mobile {
  align-items: center;
  float: right;
  color: #646566;
}
.header-mobile > .iconfont, .page .pagination .header-mobile > .prev:before, .page .pagination .header-mobile > .next:before {
  font-size: 24px;
}
.header-mobile_text {
  width: 42px;
  font-size: 12px;
  line-height: 19px;
}
.header-mobile:hover {
  color: #1985ff;
}

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

/* layout/_footer.scss */
.footer {
  background: #303133;
}
.footer-nav {
  font-size: 18px;
  color: #ffffff;
  line-height: 24px;
}
.footer-nav .nav-item {
  opacity: 0.65;
}
.footer-nav .nav-item:hover {
  opacity: 1;
}
.footer-nav .nav-item:not(:last-child) {
  margin-right: 50px;
}
.footer-link {
  font-size: 16px;
  color: #969799;
  line-height: 21px;
}
.footer-copyright {
  font-size: 12px;
  color: #969799;
  line-height: 18px;
}

/* layout/_img-box.scss */
.box {
  position: relative;
  width: auto;
  height: auto;
  overflow: hidden;
  background-color: #f8f8f8;
  font-size: 8px;
}
.box > img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  font-family: "object-fit: cover;";
  transition: 0.3s all;
}
.box > img:hover {
  transform: scale(1.1);
}
.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;
}

/* layout/_subtitle.scss  副标题、栏目标题样式 */
.subtitle {
  min-height: 20px;
  height: 20px;
  max-height: 20px;
}
.subtitle .title {
  font-size: 16px;
  font-weight: bold;
  color: #303133;
  line-height: 20px;
  position: relative;
  padding-left: 10px;
}
.subtitle .title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 3px;
  height: 14px;
  background: #1985ff;
}
.subtitle .more {
  color: #969799;
  font-size: 12px;
  align-items: center;
  min-height: 20px;
  height: 20px;
  max-height: 20px;
  display: flex;
}
.subtitle .more:hover {
  color: #1985ff;
}

.coltitle {
  align-items: center;
  min-height: 24px;
  height: 24px;
  max-height: 24px;
}
.coltitle .title {
  position: relative;
  font-size: 20px;
  font-weight: bold;
  color: #303133;
  line-height: 24px;
  padding-left: 12px;
}
.coltitle .title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 3px;
  height: 18px;
  background: #1985ff;
}
.coltitle .more {
  color: #969799;
  font-size: 12px;
  align-items: center;
  min-height: 20px;
  height: 20px;
  max-height: 20px;
  display: flex;
}
.coltitle .more:hover {
  color: #1985ff;
}

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

.main {
  min-width: 850px;
  width: 850px;
  max-width: 850px;
}

.aside {
  min-width: 340px;
  width: 340px;
  max-width: 340px;
}

.soft-logo.w-52 {
  min-width: 52px;
  width: 52px;
  max-width: 52px;
  min-height: 52px;
  height: 52px;
  max-height: 52px;
  border-radius: 18%;
}
.soft-logo.w-76 {
  min-width: 76px;
  width: 76px;
  max-width: 76px;
  min-height: 76px;
  height: 76px;
  max-height: 76px;
  border-radius: 18%;
}
.soft-logo.w-88 {
  min-width: 88px;
  width: 88px;
  max-width: 88px;
  min-height: 88px;
  height: 88px;
  max-height: 88px;
  border-radius: 18%;
}
.soft-logo.w-124 {
  min-width: 124px;
  width: 124px;
  max-width: 124px;
  min-height: 124px;
  height: 124px;
  max-height: 124px;
  border-radius: 18%;
}
.soft-logo.w-140 {
  min-width: 140px;
  width: 140px;
  max-width: 140px;
  min-height: 140px;
  height: 140px;
  max-height: 140px;
  border-radius: 18%;
}

.col-2-p16 {
  min-width: calc(50% - 8px);
  width: calc(50% - 8px);
  max-width: calc(50% - 8px);
}

.col-2-sp28 {
  min-width: calc(50% - 14px);
  width: calc(50% - 14px);
  max-width: calc(50% - 14px);
}

.col-3-p20 {
  min-width: calc((100% - 40px) / 3);
  width: calc((100% - 40px) / 3);
  max-width: calc((100% - 40px) / 3);
}

.col-4-p16 {
  min-width: calc((100% - 48px) / 4);
  width: calc((100% - 48px) / 4);
  max-width: calc((100% - 48px) / 4);
}

.col-4-sp30 {
  min-width: calc((100% - 90px) / 4);
  width: calc((100% - 90px) / 4);
  max-width: calc((100% - 90px) / 4);
}

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

.main-nav .nav-item {
  text-align: center;
  display: inline-block;
  color: #646566;
  margin-right: 32px;
  font-size: 14px;
  line-height: 34px;
  font-weight: 400;
}
.main-nav .nav-item.active {
  margin-right: 24px;
  margin-left: -8px;
  padding: 0 14px;
  height: 34px;
  background: #1a85ff;
  border-radius: 4px;
  color: #fff !important;
}

.main-tab {
  height: 68px;
  background-color: #fff;
  justify-content: center;
}
.main-tab .tab-item {
  position: relative;
  text-align: center;
  line-height: 40px;
  font-size: 15px;
  min-width: 160px;
  width: 160px;
  max-width: 160px;
  border-radius: 20px;
  background-color: #EDEFF2;
  color: #1985ff;
}
.main-tab .tab-item:not(:last-child) {
  margin-right: 40px;
}
.main-tab .tab-item .iconfont, .main-tab .tab-item .page .pagination .prev:before, .page .pagination .main-tab .tab-item .prev:before, .main-tab .tab-item .page .pagination .next:before, .page .pagination .main-tab .tab-item .next:before {
  margin-right: 6px;
}
.main-tab .tab-item.active {
  color: #fff;
  background-color: #1985ff;
}

.tag-list {
  min-height: 24px;
  height: 24px;
  max-height: 24px;
  overflow: hidden;
}
.tag-list > a {
  display: block;
  font-size: 12px;
  line-height: 24px;
  text-align: center;
  padding: 0 8px;
  background: #f4f4f4;
  transition: 0.3s;
  color: #777;
  border-radius: 2px;
  max-width: 122px;
}
.tag-list > a:hover {
  color: #1985ff;
  background: rgba(25, 133, 255, 0.08);
}

.heji-list {
  color: #303133;
  line-height: 34px;
  font-size: 14px;
}
.heji-cell {
  min-height: 34px;
  height: 34px;
  max-height: 34px;
  margin-left: 10px;
  padding: 0 12px;
  line-height: 32px;
  background: #fff;
  transition: 0.3s;
  border: 1px solid #eee;
  border-radius: 3px;
}
.heji-cell:hover {
  border-color: #1985ff;
  background-color: #1985ff;
  color: #fff;
}

.qrcode {
  align-items: center;
  flex-direction: column;
  border: 1px solid #eee;
  height: 140px;
}
.qrcode .box {
  min-width: 112px;
  width: 112px;
  max-width: 112px;
  min-height: 112px;
  height: 112px;
  max-height: 112px;
}
.qrcode-text {
  font-size: 13px;
  color: #7F7F7F;
  line-height: 21px;
}

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

.article-title {
  font-size: 28px;
  line-height: 46px;
  font-weight: 500;
  color: #303133;
}
.article-data {
  font-size: 13px;
  color: #969799;
  line-height: 16px;
}
.article-data .item {
  margin-right: 40px;
}
.article-data .tag-list {
  justify-content: end;
}
.article-content {
  padding: 0 10px;
  font-size: 16px;
  font-weight: 400;
  color: #303133;
  line-height: 1.8;
  text-align: justify;
  letter-spacing: 0.5px;
  min-height: 30px;
}
.article-content .summary {
  position: relative;
  background-color: #f6f6f6;
  padding: 16px 12px 12px 12px;
}
.article-content .summary::before {
  position: absolute;
  content: "“";
  font-family: Arial, Helvetica, sans-serif;
  font-size: 60px;
  line-height: 60px;
  z-index: 1;
  left: 10px;
  top: -12px;
  color: #888;
}
.article-content h1, .article-content h2, .article-content h3, .article-content h4, .article-content h5, .article-content h6 {
  border-left: 3px solid #1985ff;
  padding-left: 12px;
  font-size: 20px;
  font-weight: bold;
  margin: 24px 0 15px;
  line-height: 1.5;
}
.article-content p {
  margin: 15px 0;
  color: #303133;
}
.article-content a {
  color: #1985ff;
}
.article-content .image, .article-content video, .article-content iframe {
  cursor: pointer;
  margin: 20px auto !important;
  max-width: 88%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  display: flex;
}
.article-content .image > img {
  width: auto;
  height: auto;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.article-button {
  min-width: calc(50% - 10px);
  width: calc(50% - 10px);
  max-width: calc(50% - 10px);
  line-height: 44px;
  background: #F8F8FA;
  border-radius: 2px;
  padding: 0 12px;
  text-align: center;
  display: block;
  color: #969799;
  cursor: default;
}
.article-button > a {
  color: #303133;
  display: inline;
}
.article-download {
  border: 1px solid #F2F4F5;
  padding: 16px;
  background-color: #fefefe;
}
.article-download .soft-title {
  width: 100%;
  font-size: 20px;
  line-height: 36px;
  max-height: 36px;
  overflow: hidden;
}
.article-download .soft-type {
  font-size: 14px;
  color: #646566;
  line-height: 24px;
}
.article-download .soft-type p {
  min-width: calc((100% - 100px) / 3);
  width: calc((100% - 100px) / 3);
  max-width: calc((100% - 100px) / 3);
}
.article-download .soft-type p:not(:last-child) {
  margin-right: 12px;
}
.article-download .soft-button {
  display: flex;
  justify-content: center;
  align-items: center;
}
.article-download .soft-button a {
  margin: auto;
  display: block;
  text-align: center;
  min-width: 120px;
  width: 120px;
  max-width: 120px;
  min-height: 40px;
  height: 40px;
  max-height: 40px;
  line-height: 40px;
  border-radius: 3px;
  background-color: #1985ff;
  color: #fff;
}
.article-notes {
  font-size: 13px;
  line-height: 28px;
  color: #888;
}
.article-notes .item::before {
  content: "◇";
  font-size: 14px;
  font-family: "Microsoft YaHei";
  font-weight: 400;
  margin-right: 10px;
}

.empty {
  padding: 100px 0;
  text-align: center;
  min-height: calc(100vh - 249px - 32px);
}
.empty-img {
  min-height: 300px;
  height: 300px;
  max-height: 300px;
}
.empty-title {
  text-align: center;
  font-size: 28px;
  font-weight: 500;
  color: #303133;
  line-height: 31px;
}
.empty-tip {
  margin-top: 16px;
  font-size: 16px;
  color: #646566;
  line-height: 24px;
}
.empty-button {
  margin-top: 20px;
  font-size: 14px;
  text-align: center;
  display: inline-block;
  background-color: #fff;
  border: 1px solid #F2F4F5;
  color: #303133;
  min-width: 120px;
  width: 120px;
  max-width: 120px;
  min-height: 34px;
  height: 34px;
  max-height: 34px;
  line-height: 32px;
  border-radius: 3px;
}

.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: 6px;
  min-width: 64px;
  width: 64px;
  max-width: 64px;
}
.side-anchor__cell {
  color: #646566;
}
.side-anchor__cell:hover {
  color: #1985ff;
}
.side-anchor__cell.underline {
  border-bottom-width: 2px;
}
.side-anchor__icon {
  font-size: 30px;
}
.side-anchor__text {
  font-size: 12px;
  line-height: 16px;
}

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

/* 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: 34px;
  min-width: 34px;
}
.page .pagination .next:before {
  content: "\e654";
  font-size: 14px;
}
.page .pagination .prev {
  padding: 0;
  width: 34px;
  min-width: 34px;
}
.page .pagination .prev:before {
  content: "\e64f";
  font-size: 14px;
}
.page .pagination > li > a {
  float: left;
  min-width: 34px;
  min-height: 34px;
  height: 34px;
  max-height: 34px;
  line-height: 34px;
  background: #FFFFFF;
  border-radius: 2px;
  border: 1px solid #e0e0e0;
  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: #1985ff;
  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: #1985ff;
  border-color: #1985ff;
  cursor: default;
}

/* page/_index.scss */
.col-4 {
  min-width: calc(25% - 20px);
  width: calc(25% - 20px);
  max-width: calc(25% - 20px);
}

.index-swiper__next, .index-swiper__prev {
  position: absolute;
  font-size: 24px;
  color: white;
  background: rgba(0, 0, 0, 0.631372549);
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}

.index-imei-bg {
  background: linear-gradient(180deg, #f6f6f6 0%, #f9f9f9 100%);
  min-width: 100%;
  width: 100%;
  max-width: 100%;
}
.index-imei .title {
  margin: 40px auto 0;
}
.index-imei .title .hd-item {
  font-size: 20px;
  color: #303133;
  line-height: 40px;
  padding-bottom: 8px;
  margin: 0 20px;
  display: block;
  cursor: pointer;
}
.index-imei .title .hd-item.active {
  position: relative;
}
.index-imei .title .hd-item.active::after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #1985ff;
}
.index-imei .tips {
  font-size: 13px;
  width: 660px;
  margin: 0 auto;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.7);
}
.index-imei .how {
  font-size: 12px;
  line-height: 24px;
}
.index-imei .how-list {
  min-height: 24px;
  height: 24px;
  max-height: 24px;
  overflow: hidden;
}
.index-imei .how-title {
  font-weight: bold;
  min-width: 120px;
  width: 120px;
  max-width: 120px;
  cursor: default;
}
.index-imei .how-title > span {
  position: relative;
  display: inline-block;
  padding-left: 14px;
}
.index-imei .how-title > span::before {
  position: absolute;
  content: "";
  width: 3px;
  height: 12px;
  background-color: #1985ff;
  left: 0px;
  top: 50%;
  margin-top: -6px;
}
.index-imei .how-item {
  position: relative;
  display: block;
  max-width: 255px;
  overflow: hidden;
  padding-left: 12px;
  margin-right: 12px;
}
.index-imei .how-item:hover {
  color: #1985ff;
}
.index-imei .how-item::before {
  position: absolute;
  content: "";
  width: 1px;
  height: 10px;
  background-color: #ccc;
  left: 0px;
  top: 50%;
  margin-top: -6px;
}
.index-imei .search {
  margin: 0 auto;
  min-width: 720px;
  width: 720px;
  max-width: 720px;
  min-height: 60px;
  height: 60px;
  max-height: 60px;
  border-radius: 4px;
  background: white;
  border: 2px solid #1985ff;
}
.index-imei .search .input {
  height: 100%;
  width: 100%;
  color: #303133;
  font-size: 18px;
}
.index-imei .search .input::-moz-placeholder {
  color: #bbb;
}
.index-imei .search .input::placeholder {
  color: #bbb;
}
.index-imei .search .iconfont, .index-imei .search .page .pagination .next:before, .page .pagination .index-imei .search .next:before, .index-imei .search .page .pagination .prev:before, .page .pagination .index-imei .search .prev:before {
  font-size: 28px;
  color: #969799;
}
.index-imei .search .query {
  background-color: #1985ff;
  color: white;
  min-width: 120px;
  width: 120px;
  max-width: 120px;
  min-height: 56px;
  height: 56px;
  max-height: 56px;
  font-size: 20px;
}
.index-imei .morequery {
  min-width: 720px;
  width: 720px;
  max-width: 720px;
  font-size: 14px;
  color: #303133;
  margin: auto;
}
.index-imei .morequery .item {
  border: 1px solid #ddd;
  background-color: rgba(255, 255, 255, 0.7);
  padding: 0 17px;
  border-radius: 3px;
  line-height: 38px;
}
.index-imei .morequery .item .iconfont, .index-imei .morequery .item .page .pagination .next:before, .page .pagination .index-imei .morequery .item .next:before, .index-imei .morequery .item .page .pagination .prev:before, .page .pagination .index-imei .morequery .item .prev:before {
  margin-right: 6px;
  font-size: 18px;
}
.index-imei .morequery .item span {
  display: inline-block;
}
.index-imei .morequery .item:not(:last-child) {
  margin-right: 17px;
}
.index-upperpart_left {
  min-width: 640px;
  width: 640px;
  max-width: 640px;
}
.index-upperpart_center {
  min-width: 200px;
  width: 200px;
  max-width: 200px;
}
.index-upperpart_right {
  min-width: 320px;
  width: 320px;
  max-width: 320px;
}
.index-swiper {
  position: relative;
  min-width: 640px;
  width: 640px;
  max-width: 640px;
  min-height: 386px;
  height: 386px;
  max-height: 386px;
  border-radius: 6px;
}
.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__title {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 40px 140px 20px 16px;
  padding-bottom: 10px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 100%);
  border-radius: 0px 0px 6px 6px;
  font-weight: bold;
  font-size: 20px;
  color: #FFFFFF;
  line-height: 52px;
  overflow: hidden;
}
.index-swiper__prev {
  left: 6px;
}
.index-swiper__next {
  right: 6px;
}
.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-end;
  z-index: 1;
  bottom: 0;
  right: 0;
}
.index-swiper__paginations .swiper-pagination-bullet {
  width: 20px;
  height: 3px;
  background: #E6E7EB;
  margin: 0 2px !important;
  opacity: 0.5;
}
.index-swiper__paginations .swiper-pagination-bullet-active {
  background: #1985ff;
  opacity: 1;
}
.index-jiaodian-item {
  margin-top: 13px;
}
.index-jiaodian-item .jd-img {
  position: relative;
  display: block;
  min-width: 100%;
  width: 100%;
  max-width: 100%;
  min-height: 120px;
  height: 120px;
  max-height: 120px;
  border-radius: 4px;
}
.index-jiaodian-item .jd-img > img {
  transform: none;
}
.index-jiaodian-item .jd-img:hover .content-box {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 0;
  background: linear-gradient(1turn, rgba(9, 15, 29, 0.4), transparent);
}
.index-jiaodian-item .jd-img .content-box {
  height: 72px;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  padding: 24px 10px 0;
  background: linear-gradient(1turn, rgba(9, 15, 29, 0.7), transparent);
  transition: all 0.3s;
}
.index-jiaodian-item .jd-img .content-box .title {
  color: #fff;
  width: 100%;
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
}
.index-jiaodian-item:first-child {
  margin-top: 0;
}
.index-news .news-tab-nav {
  min-height: 48px;
  height: 48px;
  max-height: 48px;
}
.index-news .news-tab-nav .nav-item {
  font-size: 18px;
  color: #646566;
  cursor: pointer;
  line-height: 48px;
}
.index-news .news-tab-nav .nav-item:not(:last-child) {
  margin-right: 40px;
}
.index-news .news-tab-nav .nav-item.active {
  font-size: 18px;
  color: #1985ff;
  font-weight: 700;
  position: relative;
}
.index-news .news-tab-nav .nav-item.active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 3px;
  background-color: #1985ff;
}
.index-link_text {
  font-size: 16px;
  color: #646566;
  line-height: 26px;
  margin-top: 12px;
}

/* page/_game-show.scss */
.soft-list-vertical .soft-item {
  border: 1px solid #eee;
  box-sizing: border-box;
  padding: 16px 4px;
}
.soft-list-vertical .soft-item.col-4-sp30 {
  margin-bottom: 24px;
}
.soft-list-vertical .soft-name {
  width: 100%;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  overflow: hidden;
  height: 24px;
  color: #303133;
}
.soft-list-vertical .soft-info {
  width: 100%;
  font-size: 13px;
  line-height: 20px;
  color: #969799;
}
.soft-list-vertical .soft-score {
  font-size: 16px;
  font-weight: 600;
  color: #FF8B20;
  line-height: 21px;
}
.soft-list-vertical .soft-download {
  display: block;
  width: 88px;
  height: 28px;
  line-height: 28px;
  text-align: center;
  border: 1px solid #ddd;
  border-radius: 3px;
}
.soft-list-vertical .soft-download:hover {
  background: #1985ff;
  border: 1px solid #1985ff;
  color: #fff;
}
.soft-list-versmall .soft-item {
  min-width: 112px;
  width: 112px;
  max-width: 112px;
}
.soft-list-versmall .soft-title {
  font-size: 14px;
  font-weight: 400;
  color: #646566;
  width: 100px;
  height: 20px;
  line-height: 20px;
  overflow: hidden;
  text-align: center;
}
.soft-list .soft-item {
  border: 1px solid #eee;
  box-sizing: border-box;
  padding: 16px 16px 12px;
}
.soft-list .soft-name {
  width: 100%;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  overflow: hidden;
  height: 24px;
  color: #303133;
}
.soft-list .soft-info {
  position: relative;
  font-size: 13px;
  line-height: 20px;
  color: #969799;
}
.soft-list .soft-score {
  font-size: 16px;
  font-weight: 600;
  color: #FF8B20;
  line-height: 21px;
}
.soft-list .soft-download {
  position: absolute;
  display: block;
  width: 56px;
  height: 28px;
  line-height: 28px;
  text-align: center;
  bottom: 2px;
  right: 4px;
  border: 1px solid #ddd;
  background-color: #fff;
  border-radius: 3px;
}
.soft-list .soft-download:hover {
  background: #1985ff;
  border: 1px solid #1985ff;
  color: #fff;
}
.soft-list .soft-date {
  font-size: 13px;
  color: #646566;
  line-height: 20px;
  height: 20px;
}
.soft-list .soft-date .date-item {
  position: relative;
}
.soft-list .soft-date .date-item:not(:last-child) {
  margin-right: 18px;
}
.soft-list .soft-date .date-item:not(:last-child)::after {
  position: absolute;
  content: "";
  width: 1px;
  height: 10px;
  top: 50%;
  margin-top: -5px;
  right: -9px;
  background-color: #aaaeb3;
}
.soft-list .soft-desc {
  font-size: 12px;
  line-height: 20px;
  color: #969799;
  min-height: 40px;
  height: 40px;
  max-height: 40px;
  overflow: hidden;
}
.soft-list .soft-desc i {
  font-style: normal;
  font-weight: 700;
  color: #303133;
}
.soft-list-small .soft-item {
  margin-top: 18px;
}
.soft-list-small .soft-rank {
  position: absolute;
  min-width: 20px;
  width: 20px;
  max-width: 20px;
  min-height: 20px;
  height: 20px;
  max-height: 20px;
  line-height: 20px;
  font-size: 14px;
  font-weight: bold;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  z-index: 1;
  border-radius: 20%;
  text-align: center;
}
.soft-list-small .soft-item:nth-child(1) .soft-rank {
  background-color: #ff0000;
}
.soft-list-small .soft-item:nth-child(2) .soft-rank {
  background-color: #ff8b20;
}
.soft-list-small .soft-item:nth-child(3) .soft-rank {
  background-color: #1985ff;
}
.soft-list-small .soft-info {
  height: 100%;
}
.soft-list-small .soft-title {
  display: block;
  font-size: 15px;
  font-weight: 500;
  line-height: 20px;
  min-height: 20px;
  height: 20px;
  max-height: 20px;
  overflow: hidden;
  margin-bottom: 6px;
}
.soft-list-small .soft-desc {
  font-size: 13px;
  color: #969799;
  line-height: 20px;
  height: 20px;
}
.soft-list-small .soft-desc a:hover {
  text-decoration: underline;
  text-underline-offset: 2px;
}
.soft-list-small .soft-desc .desc-item {
  position: relative;
}
.soft-list-small .soft-desc .desc-item:not(:last-child) {
  margin-right: 18px;
}
.soft-list-small .soft-desc .desc-item:not(:last-child)::after {
  position: absolute;
  content: "";
  width: 1px;
  height: 10px;
  top: 50%;
  margin-top: -5px;
  right: -9px;
  background-color: #aaaeb3;
}
.soft-list-small .soft-score {
  color: #FF8B20;
  font-size: 14px;
  line-height: 20px;
}
.soft-list-small .soft-score .iconfont, .soft-list-small .soft-score .page .pagination .next:before, .page .pagination .soft-list-small .soft-score .next:before, .soft-list-small .soft-score .page .pagination .prev:before, .page .pagination .soft-list-small .soft-score .prev:before {
  font-size: 14px;
}
.soft-list-small .soft-tag {
  font-size: 12px;
  color: #969799;
  line-height: 20px;
  height: 20px;
  overflow: hidden;
}
.soft-list-small .soft-tag .tag-item {
  background-color: #F5F7F8;
  padding: 0 6px;
}
.soft-list-small .soft-tag .tag-item:not(:last-child) {
  margin-right: 6px;
}
.soft-nav .category-title {
  min-width: 80px;
  width: 80px;
  max-width: 80px;
  font-size: 14px;
  line-height: 34px;
}
.soft-nav .category-cell {
  display: block;
  margin-right: 20px;
  margin-bottom: 14px;
  font-size: 14px;
  min-height: 34px;
  height: 34px;
  max-height: 34px;
  padding: 0 16px;
  line-height: 32px;
  text-align: center;
  background: #fff;
  transition: 0.3s;
  color: #1A243E;
  cursor: pointer;
  border: 1px solid #F2F4F7;
  box-sizing: border-box;
  border-radius: 3px;
}
.soft-nav .category-cell.selected {
  background-color: #1985ff;
  border-color: #1985ff;
  color: #fff;
}
.soft-header {
  min-width: 100%;
  width: 100%;
  max-width: 100%;
}
.soft-header .soft-title {
  width: 100%;
  font-size: 24px;
  line-height: 36px;
}
.soft-header .soft-type {
  font-size: 13px;
  color: #646566;
  line-height: 24px;
}
.soft-header .soft-type p {
  min-width: calc((100% - 100px) / 3);
  width: calc((100% - 100px) / 3);
  max-width: calc((100% - 100px) / 3);
}
.soft-header .soft-type p:not(:last-child) {
  margin-right: 12px;
}
.soft-header .soft-desc {
  line-height: 18px;
  font-size: 16px;
}
.soft-header .soft-desc .rating {
  font-weight: bold;
}
.soft-header .soft-desc .iconfont, .soft-header .soft-desc .page .pagination .next:before, .page .pagination .soft-header .soft-desc .next:before, .soft-header .soft-desc .page .pagination .prev:before, .page .pagination .soft-header .soft-desc .prev:before {
  font-size: 16px;
}
.soft-header .soft_logo {
  min-width: 120px;
  width: 120px;
  max-width: 120px;
  min-height: 120px;
  height: 120px;
  max-height: 120px;
  border-radius: 28px;
}
.soft-header .soft-button {
  align-items: center;
  justify-content: center;
  min-width: 200px;
  width: 200px;
  max-width: 200px;
  min-height: 42px;
  height: 42px;
  max-height: 42px;
  background: #eee;
  font-size: 18px;
  color: #969799;
  border-radius: 4px;
}
.soft-header .soft-button.android {
  background-color: #1985ff;
  display: none;
  color: #fff;
}
.soft-header .soft-button.iOS {
  background-color: #1985ff;
  display: none;
  color: #fff;
}
.soft-header .soft-button .iconfont, .soft-header .soft-button .page .pagination .next:before, .page .pagination .soft-header .soft-button .next:before, .soft-header .soft-button .page .pagination .prev:before, .page .pagination .soft-header .soft-button .prev:before {
  font-size: 18px;
}
.soft-header .soft_cell3 {
  min-width: calc((100% - 40px) / 3);
  width: calc((100% - 40px) / 3);
  max-width: calc((100% - 40px) / 3);
}
.soft-main {
  min-width: 100%;
  width: 100%;
  max-width: 100%;
}
.soft-tab {
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  min-height: 44px;
  height: 44px;
  max-height: 44px;
}
.soft-tab .soft-anchor {
  font-size: 18px;
  line-height: 30px;
  color: #646566;
  margin-right: 40px;
}
.soft-tab .soft-anchor a:hover {
  color: #1985ff;
}
.soft-tab .soft-anchor.selected {
  font-size: 20px;
  font-weight: bold;
  color: #1985ff;
}
.soft-images {
  position: relative;
  min-height: 300px;
  height: 300px;
  max-height: 300px;
  overflow: hidden;
}
.soft-images .swiper-slide {
  width: auto;
}
.soft-images .swiper-slide > a {
  height: 100%;
}
.soft-images .swiper-slide img {
  width: auto;
  height: 100%;
  border-radius: 6px;
}
.soft-images__prev {
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
  font-size: 32px;
  color: white;
}
.soft-images__next {
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
  font-size: 32px;
  color: white;
}

/* page/_news.scss */
.news-flashes-list .flashes-item, .news-flashes-list .flashes-date {
  position: relative;
  margin-left: 15px;
  border-left: 1px dashed #f1eded;
}

.news-list .borderline {
  border: 1px solid #F2F4F5;
}
.news-list .news-item {
  border-bottom: 1px solid #F2F4F5;
  cursor: default;
  padding: 20px;
}
.news-list .news-item:last-child {
  border: none;
}
.news-list .news-item.nobox {
  padding: 0;
  border: none;
  margin-bottom: 28px;
}
.news-list .news-item:hover {
  background: rgba(0, 0, 0, 0.01);
}
.news-list .news-img {
  position: relative;
  min-width: 200px;
  width: 200px;
  max-width: 200px;
  min-height: 120px;
  height: 120px;
  max-height: 120px;
  border-radius: 4px;
  background-color: rgba(240, 243, 245, 0.966);
  overflow: hidden;
}
.news-list .news-noimg {
  min-width: 200px;
  width: 200px;
  max-width: 200px;
  min-height: 120px;
  height: 120px;
  max-height: 120px;
  line-height: 120px;
  border-radius: 4px;
  background-color: rgba(240, 243, 245, 0.966);
  text-align: center;
  color: #869DB8;
}
.news-list .news-noimg span {
  display: inline-block;
}
.news-list .news-badge {
  position: absolute;
  top: 4px;
  left: 4px;
  height: 25px;
  background: rgba(0, 0, 0, 0.7);
  font-size: 12px;
  font-weight: 500;
  color: #fff;
  padding: 4px 8px;
  border-radius: 2px;
}
.news-list .news-play {
  position: absolute;
  left: 50%;
  top: 50%;
  color: #fff;
  font-size: 32px;
  line-height: 40px;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.3);
  text-align: center;
  width: 40px;
  height: 40px;
  border-radius: 20px;
  z-index: 1;
}
.news-list .news-cont {
  position: relative;
  height: 120px;
}
.news-list .news-title {
  min-width: 100%;
  width: 100%;
  max-width: 100%;
  font-size: 19px;
  line-height: 28px;
  max-height: 56px;
  font-weight: 500;
  overflow: hidden;
}
.news-list .news-title a {
  display: block;
}
.news-list .news-title:hover {
  color: #1985ff;
}
.news-list .news-desc {
  font-size: 14px;
  line-height: 20px;
  color: #646566;
  max-height: 40px;
  font-weight: 400;
  overflow: hidden;
}
.news-list .news-info {
  position: absolute;
  bottom: 2px;
  height: 20px;
  width: 100%;
  line-height: 20px;
  color: #aaaeb3;
  font-size: 0;
}
.news-list .news-data {
  font-size: 13px;
  line-height: 20px;
  color: #aaaeb3;
}
.news-list-more .but {
  display: block;
  min-width: 188px;
  width: 188px;
  max-width: 188px;
  min-height: 40px;
  height: 40px;
  max-height: 40px;
  color: #646566;
  border: 1px solid #F2F4F5;
  line-height: 40px;
  text-align: center;
  font-size: 14px;
}
.news-list-large .news-item {
  border-bottom: 1px solid #f5f6f7;
  cursor: default;
  padding: 20px;
}
.news-list-large .news-item:last-child {
  border: none;
}
.news-list-large .news-item:hover {
  background: rgba(0, 0, 0, 0.01);
}
.news-list-large .news-img {
  position: relative;
  min-width: 200px;
  width: 200px;
  max-width: 200px;
  min-height: 120px;
  height: 120px;
  max-height: 120px;
  border-radius: 4px;
  background-color: rgba(240, 243, 245, 0.966);
  overflow: hidden;
}
.news-list-large .news-noimg {
  min-width: 200px;
  width: 200px;
  max-width: 200px;
  min-height: 120px;
  height: 120px;
  max-height: 120px;
  line-height: 120px;
  border-radius: 4px;
  background-color: rgba(240, 243, 245, 0.966);
  text-align: center;
  color: #869DB8;
}
.news-list-large .news-noimg span {
  display: inline-block;
}
.news-list-large .news-badge {
  position: absolute;
  top: 4px;
  left: 4px;
  height: 25px;
  background: #000;
  opacity: 0.7;
  font-size: 12px;
  font-weight: 500;
  color: #fff;
  padding: 4px 8px;
  border-radius: 2px;
}
.news-list-large .news-play {
  position: absolute;
  left: 50%;
  top: 50%;
  color: #fff;
  font-size: 32px;
  line-height: 40px;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.3);
  text-align: center;
  width: 40px;
  height: 40px;
  border-radius: 20px;
  z-index: 1;
}
.news-list-large .news-cont {
  position: relative;
  height: 120px;
}
.news-list-large .news-title {
  font-size: 19px;
  line-height: 28px;
  max-height: 56px;
  font-weight: 500;
  overflow: hidden;
}
.news-list-large .news-title:hover {
  color: #1985ff;
}
.news-list-large .news-desc {
  font-size: 14px;
  line-height: 20px;
  color: #646566;
  max-height: 40px;
  font-weight: 400;
}
.news-list-large .news-info {
  position: absolute;
  bottom: 2px;
  height: 20px;
  width: 100%;
  line-height: 20px;
  color: #aaaeb3;
  font-size: 0;
}
.news-list-large .news-data {
  display: flex;
}
.news-list-large .news-data .text {
  font-size: 13px;
  font-weight: 400;
}
.news-list-medium .news-item {
  cursor: default;
}
.news-list-medium .news-img {
  min-width: 160px;
  width: 160px;
  max-width: 160px;
  min-height: 98px;
  height: 98px;
  max-height: 98px;
  border-radius: 4px;
}
.news-list-medium .news-info {
  height: 100%;
}
.news-list-medium .news-title {
  display: block;
  color: #303133;
  font-size: 15px;
  font-weight: 500;
  line-height: 22px;
  max-height: 44px;
  overflow: hidden;
  margin-bottom: 8px;
}
.news-list-medium .news-desc {
  font-size: 12px;
  color: #969799;
  line-height: 20px;
}
.news-list-medium .news-text-title {
  color: #303133;
  font-size: 15px;
  font-weight: 500;
  line-height: 24px;
  margin: 0 12px 0 8px;
}
.news-list-medium .news-text-date {
  font-size: 13px;
  color: #969799;
}
.news-list-small .news-item {
  margin-top: 16px;
}
.news-list-small .news-img {
  min-width: 100px;
  width: 100px;
  max-width: 100px;
  min-height: 67px;
  height: 67px;
  max-height: 67px;
  border-radius: 4px;
}
.news-list-small .news-play {
  position: absolute;
  left: 50%;
  top: 50%;
  color: #fff;
  font-size: 24px;
  line-height: 30px;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.3);
  text-align: center;
  width: 30px;
  height: 30px;
  border-radius: 20px;
  z-index: 1;
}
.news-list-small .news-verin-img {
  min-width: 100%;
  width: 100%;
  max-width: 100%;
  height: 0;
  padding-bottom: 48%;
  border-radius: 4px;
}
.news-list-small .news-verin-img .verin-title {
  position: absolute;
  width: 100%;
  height: 40px;
  font-size: 15px;
  color: #fff;
  padding: 10px 12px 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  background: linear-gradient(1turn, rgba(9, 15, 29, 0.6), transparent);
}
.news-list-small .news-rank {
  position: absolute;
  min-width: 20px;
  width: 20px;
  max-width: 20px;
  min-height: 20px;
  height: 20px;
  max-height: 20px;
  line-height: 20px;
  font-size: 14px;
  background-color: rgba(50, 50, 50, 0.4);
  color: #fff;
  z-index: 1;
  border-radius: 20%;
  text-align: center;
}
.news-list-small .news-item:nth-child(1) .news-rank {
  background-color: #ff0000;
}
.news-list-small .news-item:nth-child(2) .news-rank {
  background-color: #ff8b20;
}
.news-list-small .news-item:nth-child(3) .news-rank {
  background-color: #1985ff;
}
.news-list-small .news-info {
  height: 100%;
}
.news-list-small .news-title {
  display: block;
  font-size: 13px;
  font-weight: 500;
  line-height: 19px;
  min-height: 38px;
  height: 38px;
  max-height: 38px;
  overflow: hidden;
  margin-bottom: 6px;
}
.news-list-small .news-text-title {
  font-size: 14px;
  line-height: 22px;
}
.news-list-small .news-text-title:hover {
  color: #1985ff;
}
.news-list-small .news-desc {
  font-size: 12px;
  color: #aaaeb3;
  line-height: 20px;
  height: 20px;
}
.news-list-small .news-hot .iconfont, .news-list-small .news-hot .page .pagination .next:before, .page .pagination .news-list-small .news-hot .next:before, .news-list-small .news-hot .page .pagination .prev:before, .page .pagination .news-list-small .news-hot .prev:before {
  color: #ff0000;
}
.news-list-small .news-tag {
  background: #EDF6FF;
  color: #1985ff;
  padding: 0 8px;
  border-radius: 2px;
  max-width: 100px;
  min-height: 20px;
  height: 20px;
  max-height: 20px;
  overflow: hidden;
}
.news-list-verout a {
  display: block;
}
.news-list-verout .news-img {
  position: relative;
  min-width: 100%;
  width: 100%;
  max-width: 100%;
  padding-bottom: 56%;
  border-radius: 4px;
  height: 0;
  overflow: hidden;
}
.news-list-verout .news-play {
  position: absolute;
  left: 50%;
  top: 50%;
  color: #fff;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.3);
  text-align: center;
  font-size: 32px;
  line-height: 40px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  z-index: 1;
}
.news-list-verout .news-play.p-width-32 {
  font-size: 28px;
  line-height: 32px;
  width: 32px;
  height: 32px;
}
.news-list-verout .news-title {
  color: #303133;
  font-size: 15px;
  font-weight: 500;
  line-height: 20px;
  margin-top: 5px;
  width: 100%;
}
.news-list-verout .news-title.font-14 {
  font-size: 14px;
}
.news-list-verin .news-img {
  display: block;
  position: relative;
  min-width: 100%;
  width: 100%;
  max-width: 100%;
  padding-bottom: 56%;
  border-radius: 4px;
  height: 0;
  overflow: hidden;
}
.news-list-verin .news-title {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 12px 8px;
  color: #fff;
  font-size: 16px;
  line-height: 20px;
  width: 100%;
  background: linear-gradient(1turn, rgba(9, 15, 29, 0.6), transparent);
  z-index: 1;
}
.news-list-verin .news-date {
  font-size: 14px;
  line-height: 20px;
  color: #646566;
}
.news-list-verin .news-date .mark {
  color: red;
}
.news-list-verin .news-desc {
  font-size: 13px;
  line-height: 1.8;
  color: #969799;
}
.news-flashes-aside {
  border-left: 1px dashed #f1eded;
}
.news-flashes-aside .flashes-item {
  margin-bottom: 12px;
  padding: 3px 0 3px 20px;
  position: relative;
  cursor: default;
}
.news-flashes-aside .flashes-item::before {
  content: "";
  position: absolute;
  margin-left: -6px;
  left: 0;
  top: 10px;
  width: 12px;
  height: 12px;
  border-radius: 6px;
  border: 4px solid #A3CEFF;
  background: #fff;
  opacity: 0.9;
}
.news-flashes-aside .flashes-item:hover::before {
  border-color: #1985ff;
}
.news-flashes-aside .flashes-item:last-child {
  margin-bottom: 0;
}
.news-flashes-aside .flashes-title {
  display: block;
  font-size: 14px;
  color: #303133;
  line-height: 20px;
  max-height: 40px;
  overflow: hidden;
}
.news-flashes-aside .flashes-title:hover {
  color: #1985ff;
}
.news-flashes-aside .flashes-date {
  font-size: 12px;
  color: #aaaeb3;
  line-height: 20px;
  margin-top: 4px;
}
.news-flashes-list .flashes-date {
  padding: 12px 20px;
  font-size: 20px;
  line-height: 26px;
  color: #303133;
}
.news-flashes-list .flashes-date::before {
  position: absolute;
  left: -8px;
  top: 17px;
  width: 16px;
  height: 16px;
  content: "";
  border-radius: 1px;
  background: #1985ff;
  opacity: 0.8;
}
.news-flashes-list .flashes-item {
  padding: 20px 0 20px 20px;
}
.news-flashes-list .flashes-time {
  position: relative;
  display: block;
  margin-bottom: 12px;
  font-size: 15px;
  font-weight: 500;
  line-height: 16px;
  color: #1985ff;
}
.news-flashes-list .flashes-time::before {
  content: "";
  position: absolute;
  left: -26px;
  top: 2px;
  width: 12px;
  height: 12px;
  border-radius: 6px;
  border: 4px solid #A3CEFF;
  background: #fff;
  opacity: 0.9;
}
.news-flashes-list .flashes-title {
  margin-bottom: 8px;
  font-size: 20px;
  line-height: 1.4;
  font-weight: 500;
  color: #303133;
}
.news-flashes-list .flashes-desc {
  font-size: 14px;
  color: #646566;
  line-height: 24px;
  max-height: 72px;
  overflow: hidden;
}

.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: 16px;
  line-height: 1.6;
  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;
  font-weight: 500;
  background-color: #202020;
  color: #F0B825;
  font-size: 14px;
}
.web3_recommand_button:nth-child(2) {
  background-color: #F0B825;
  color: #202020;
}

/* page/_zt.scss */
.news-flashes-list .flashes-date, .news-flashes-list .flashes-item {
  position: relative;
  margin-left: 15px;
  border-left: 1px dashed #f1eded;
}

.zt-list .list-img {
  min-width: 100%;
  width: 100%;
  max-width: 100%;
  padding-bottom: 56%;
  height: 0;
  border-radius: 4px;
  overflow: hidden;
}
.zt-list .list-title {
  font-size: 19px;
  line-height: 25px;
  font-weight: 500;
}
.zt-list .list-desc {
  font-size: 14px;
  line-height: 18px;
  color: #646566;
  height: 36px;
  font-weight: 400;
}
.zt-list .list-date {
  font-size: 13px;
  line-height: 1.6;
  font-weight: 400;
  color: #969799;
}
.zt-list-more .but {
  display: block;
  min-width: 188px;
  width: 188px;
  max-width: 188px;
  min-height: 40px;
  height: 40px;
  max-height: 40px;
  color: #646566;
  border: 1px solid #F2F4F5;
  line-height: 40px;
  text-align: center;
  font-size: 14px;
}
.zt-show .head-img {
  min-width: 340px;
  width: 340px;
  max-width: 340px;
  min-height: 200px;
  height: 200px;
  max-height: 200px;
  border-radius: 4px;
}
.zt-show .head-title {
  font-size: 24px;
  line-height: 1.6;
}
.zt-show .head-num {
  font-size: 16px;
  line-height: 1.6;
}
.zt-show .head-num span {
  color: #1985ff;
  font-weight: bold;
  margin: 0 2px;
}
.zt-show .head-desc {
  font-size: 15px;
  line-height: 1.6;
  color: #646566;
}
.zt-show .head-desc.line-3 {
  max-height: 72px;
}
.zt-show .head-date {
  font-size: 13px;
  color: #969799;
}
.zt-show .head-tag {
  font-size: 14px;
  line-height: 28px;
}
.zt-show .head-tag > a {
  background-color: rgba(25, 133, 255, 0.12);
  color: #1985ff;
  padding: 0 12px;
  border-radius: 2px;
}
.zt-show .head-tag > a:hover {
  background-color: #1985ff;
  color: white;
}
.zt-show .list-img {
  min-width: 180px;
  width: 180px;
  max-width: 180px;
  min-height: 120px;
  height: 120px;
  max-height: 120px;
  border-radius: 4px;
  overflow: hidden;
}
.zt-show .list-title {
  font-size: 19px;
  line-height: 25px;
  font-weight: 500;
}
.zt-show .list-desc {
  font-size: 14px;
  line-height: 18px;
  color: #646566;
  height: 36px;
  font-weight: 400;
}
.zt-show .list-date {
  font-size: 13px;
  line-height: 1.6;
  font-weight: 400;
  color: #969799;
}

/* page/_haoai.scss */
.news-flashes-list .flashes-date, .news-flashes-list .flashes-item {
  position: relative;
  margin-left: 15px;
  border-left: 1px dashed #f1eded;
}

.haoai-show-head .item-tag .tagitem, .haoai-list .list-tag .tagitem {
  background: #f5f5f5;
  color: #777;
  padding: 0 6px;
  text-align: center;
  border-radius: 2px;
}

.haoai-nav .nav-item {
  width: 150px;
  font-size: 14px;
  display: block;
  padding: 10px 0 10px 15px;
  border-radius: 4px;
  margin-top: 2px;
}
.haoai-nav .nav-item:hover {
  background-color: #1985ff;
  color: #fff;
}
.haoai-nav .nav-item.active {
  background-color: #1985ff;
  color: #fff;
}
.haoai-list .list-item > div {
  cursor: pointer;
  transition: all 0.2s;
}
.haoai-list .list-item > div:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}
.haoai-list .list-logo {
  min-width: 72px;
  width: 72px;
  max-width: 72px;
  min-height: 72px;
  height: 72px;
  max-height: 72px;
  border-radius: 10%;
  border: 1px solid #f0f0f0;
}
.haoai-list .list-title {
  font-size: 16px;
  line-height: 1.4;
  color: #303133;
}
.haoai-list .list-desc {
  font-size: 12px;
  line-height: 1.6;
  color: #969799;
}
.haoai-list .list-tag .tagitem {
  font-size: 12px;
  max-width: 72px;
  min-height: 22px;
  height: 22px;
  max-height: 22px;
  line-height: 22px;
  overflow: hidden;
}
.haoai-list-small .list-logo {
  min-width: 52px;
  width: 52px;
  max-width: 52px;
  min-height: 52px;
  height: 52px;
  max-height: 52px;
  border-radius: 10%;
  border: 1px solid #f0f0f0;
}
.haoai-list-small .list-title {
  font-size: 16px;
  line-height: 1.6;
}
.haoai-list-small .list-info {
  font-size: 12px;
  line-height: 1.6;
  color: #999;
}
.haoai-list-small .list-rank {
  min-width: 20px;
  width: 20px;
  max-width: 20px;
  min-height: 20px;
  height: 20px;
  max-height: 20px;
  display: inline-block;
  line-height: 20px;
  font-size: 14px;
  background-color: #CCCCCC;
  color: #fff;
  border-radius: 2px;
  text-align: center;
}
.haoai-list-small .list-item:nth-child(1) .list-rank {
  background-color: #ff0000;
}
.haoai-list-small .list-item:nth-child(2) .list-rank {
  background-color: #ff8b20;
}
.haoai-list-small .list-item:nth-child(3) .list-rank {
  background-color: #1985ff;
}
.haoai-show-head .item-img {
  min-width: 340px;
  width: 340px;
  max-width: 340px;
  min-height: 200px;
  height: 200px;
  max-height: 200px;
  border-radius: 6px;
  border: 1px solid #f0f0f0;
}
.haoai-show-head .item-title {
  font-size: 20px;
  color: #303133;
  line-height: 1.6;
  font-weight: bold;
}
.haoai-show-head .item-info {
  font-size: 16px;
  color: #646566;
  line-height: 1.6;
}
.haoai-show-head .item-data {
  font-size: 14px;
  color: #aaaeb3;
  line-height: 1.6;
}
.haoai-show-head .item-tag .tagitem {
  font-size: 13px;
  max-width: 90px;
  min-height: 26px;
  height: 26px;
  max-height: 26px;
  line-height: 26px;
  overflow: hidden;
}
.haoai-show-head .item-but {
  min-width: 160px;
  width: 160px;
  max-width: 160px;
  min-height: 46px;
  height: 46px;
  max-height: 46px;
  background: #1985ff;
  color: #fff;
  border-radius: 4px;
  font-size: 18px;
  cursor: pointer;
}

/* page/_tool.scss */
.tool-imei-search {
  padding: 40px;
}
.tool-imei-search .title {
  font-size: 20px;
  font-weight: 600;
}
.tool-imei-search .search {
  position: relative;
  width: 520px;
  height: 52px;
  border-radius: 3px;
  background: #fff;
  border: 2px solid #1985ff;
}
.tool-imei-search .search-text {
  height: 100%;
  width: 90%;
  padding-left: 48px;
  color: #303133;
  font-size: 18px;
}
.tool-imei-search .search-text::-moz-placeholder {
  color: #ccc;
}
.tool-imei-search .search-text::placeholder {
  color: #ccc;
}
.tool-imei-search .search-button {
  position: absolute;
  height: 48px;
  font-size: 18px;
  letter-spacing: 6px;
  text-indent: 8px;
  padding: 0 18px;
  border: none;
  background: #1985ff;
  color: #fff;
  top: 0;
  right: 0;
  cursor: pointer;
}
.tool-imei-search .search > .iconfont, .tool-imei-search .page .pagination .search > .next:before, .page .pagination .tool-imei-search .search > .next:before, .tool-imei-search .page .pagination .search > .prev:before, .page .pagination .tool-imei-search .search > .prev:before {
  position: absolute;
  font-size: 24px;
  left: 12px;
  top: 50%;
  color: #aaaeb3;
  transform: translateY(-50%);
}
.tool-imei-search .search .error-num {
  position: absolute;
  top: 50%;
  right: -216px;
  width: 200px;
  line-height: 20px;
  color: red;
  font-size: 14px;
  transform: translateY(-50%);
}
.tool-imei-search .tips {
  display: block;
  color: #1985ff;
}
.tool-imei-search .how {
  width: 520px;
  color: #1985ff;
  font-size: 13px;
}
.tool-imei-search .tips {
  width: 520px;
  font-size: 14px;
  color: #aaaeb3;
}
.tool-imei-result {
  padding: 30px 40px 50px;
}
.tool-imei-result .result-list {
  width: 712px;
  margin-top: 20px;
  font-size: 15px;
  color: #303133;
}
.tool-imei-result .result-list table {
  border-collapse: collapse;
  border: 1px solid #eeeeee;
}
.tool-imei-result .result-list table tr td {
  padding: 12px;
  border: 1px solid #eeeeee;
}

/* page/_firmware.scss */
.firmware {
  padding: 30px 32px 40px;
}
.firmware-category .category-list {
  padding-bottom: 10px;
}
.firmware-category .category-list .more-list {
  display: none;
  position: absolute;
  min-width: 1000px;
  width: 1000px;
  max-width: 1000px;
  border: 1px solid #dedede;
  background-color: #fff;
  border-radius: 4px;
  padding: 12px 0 4px 12px;
  top: 36px;
  right: -20px;
  z-index: 1;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}
.firmware-category .category-list .more-list::after {
  width: 14px;
  height: 14px;
  position: absolute;
  top: -7px;
  right: 77px;
  content: "";
  background-color: #fff;
  display: block;
  transform: rotate(45deg);
  border-width: 1px;
  border-style: solid;
  border-color: #ddd #fff #fff #ddd;
}
.firmware-category .category-title {
  font-size: 14px;
  line-height: 30px;
  min-width: 80px;
  width: 80px;
  max-width: 80px;
}
.firmware-category .category-cell {
  display: block;
  margin-right: 10px;
  margin-bottom: 10px;
  font-size: 13px;
  min-width: 130px;
  width: 130px;
  max-width: 130px;
  min-height: 30px;
  height: 30px;
  max-height: 30px;
  line-height: 28px;
  text-align: center;
  background: #fff;
  transition: 0.3s;
  color: #1A243E;
  border: 1px solid #F2F4F7;
  box-sizing: border-box;
  border-radius: 3px;
}
.firmware-category .category-cell:hover {
  color: #1985ff;
  border-color: #1985ff;
}
.firmware-category .category-cell.selected {
  background-color: #1985ff;
  border-color: #1985ff;
  color: #fff;
}
.firmware-category .category-more {
  position: relative;
  font-size: 13px;
  min-width: 130px;
  width: 130px;
  max-width: 130px;
  min-height: 30px;
  height: 30px;
  max-height: 30px;
  line-height: 28px;
  text-align: center;
  background: #fff;
  transition: 0.3s;
}
.firmware-category .category-more:hover .more-list {
  display: block;
}
.firmware-category .category-more > span {
  cursor: pointer;
  display: block;
  position: relative;
  padding-right: 15px;
}
.firmware-category .category-more > span::after {
  margin-left: 5px;
  position: absolute;
  font-family: "iconfont";
  content: "\e64a";
  transform: rotate(90deg);
}
.firmware-category .category-more > span:hover::after {
  transform: rotate(270deg);
  transition: 0.2s all;
}
.firmware-table {
  border-collapse: collapse;
  border: 0;
}
.firmware-table tr {
  position: relative;
  vertical-align: top;
  text-align: center;
  height: 50px;
  line-height: 50px;
}
.firmware-table tr:nth-of-type(2n) {
  background-color: #F7F9FC;
}
.firmware-table tr:hover {
  background: #F3F8FF;
}
.firmware-table th {
  background: #8f99b1;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
}
.firmware-table td {
  color: #303133;
  font-size: 14px;
}
.firmware-table td .download {
  color: #1985ff;
}
.firmware-table td.no {
  color: red;
}
.firmware-table td.yes {
  color: rgb(0, 170, 0);
}

/* page/_special.scss */
.special-list .news-item {
  border-bottom: 1px solid #f5f6f7;
  cursor: default;
  padding: 20px;
}
.special-list .news-item:last-child {
  border: none;
}
.special-list .news-item:hover {
  background: rgba(0, 0, 0, 0.01);
}
.special-list .news-img {
  position: relative;
  min-width: 200px;
  width: 200px;
  max-width: 200px;
  min-height: 120px;
  height: 120px;
  max-height: 120px;
  border-radius: 4px;
  background-color: rgba(240, 243, 245, 0.966);
  overflow: hidden;
}
.special-list .news-noimg {
  min-width: 200px;
  width: 200px;
  max-width: 200px;
  min-height: 120px;
  height: 120px;
  max-height: 120px;
  line-height: 120px;
  border-radius: 4px;
  background-color: rgba(240, 243, 245, 0.966);
  text-align: center;
  color: #869DB8;
}
.special-list .news-noimg span {
  display: inline-block;
}
.special-list .news-badge {
  position: absolute;
  top: 4px;
  left: 4px;
  height: 25px;
  background: #000;
  opacity: 0.7;
  font-size: 12px;
  font-weight: 500;
  color: #fff;
  padding: 4px 8px;
  border-radius: 2px;
}
.special-list .news-play {
  position: absolute;
  left: 50%;
  top: 50%;
  color: #fff;
  font-size: 32px;
  line-height: 40px;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.3);
  text-align: center;
  width: 40px;
  height: 40px;
  border-radius: 20px;
  z-index: 1;
}
.special-list .news-cont {
  position: relative;
  height: 120px;
}
.special-list .news-title {
  font-size: 19px;
  line-height: 28px;
  max-height: 56px;
  font-weight: 500;
  overflow: hidden;
}
.special-list .news-title:hover {
  color: #1985ff;
}
.special-list .news-desc {
  font-size: 14px;
  line-height: 20px;
  color: #646566;
  max-height: 40px;
  font-weight: 400;
}
.special-list .news-info {
  position: absolute;
  bottom: 2px;
  height: 20px;
  width: 100%;
  line-height: 20px;
  color: #aaaeb3;
  font-size: 0;
}
.special-list .news-data {
  display: flex;
}
.special-list .news-data .text {
  font-size: 13px;
  font-weight: 400;
}
.special-header .header-img {
  min-width: 300px;
  width: 300px;
  max-width: 300px;
  min-height: 176px;
  height: 176px;
  max-height: 176px;
  border-radius: 4px;
}
.special-header .header-title {
  min-width: 100%;
  width: 100%;
  max-width: 100%;
  min-height: 32px;
  height: 32px;
  max-height: 32px;
  line-height: 32px;
  font-size: 24px;
  font-weight: 600;
  overflow: hidden;
}
.special-header .header-desc {
  font-size: 13px;
  line-height: 20px;
  max-height: 84px;
  overflow: hidden;
  color: #969799;
}
.special-header .header-date {
  font-size: 13px;
  line-height: 24px;
  color: #646566;
}
.special-header .header-date .mark {
  color: red;
}

/* page/_rank.scss */
.rank-banner_img {
  width: 100%;
  min-height: 130px;
  height: 130px;
  max-height: 130px;
  -o-object-fit: cover;
  object-fit: cover;
  font-family: "object-fit: cover;";
}
.rank-category_list {
  background-color: #F8F8F8;
  border-radius: 12px;
  overflow: hidden;
}
.rank-category_cell {
  font-size: 22px;
  line-height: 54px;
  min-width: 149px;
  width: 149px;
  max-width: 149px;
  min-height: 54px;
  height: 54px;
  max-height: 54px;
  border-radius: 12px;
  font-weight: bold;
}
.rank-category_cell-selected {
  color: #303133;
  background: #FF8B20;
}
.rank-category_cell:hover {
  color: #1985ff;
}
.rank-game_number {
  position: relative;
  min-width: 38px;
  width: 38px;
  max-width: 38px;
  min-height: 38px;
  height: 38px;
  max-height: 38px;
}
.rank-game_number .iconfont, .rank-game_number .page .pagination .next:before, .page .pagination .rank-game_number .next:before, .rank-game_number .page .pagination .prev:before, .page .pagination .rank-game_number .prev:before {
  position: absolute;
  font-size: 38px;
  top: 0;
  left: 0;
  color: #969799;
}
.rank-game_number .first {
  color: #FF2A00;
}
.rank-game_number .second {
  color: #FF6200;
}
.rank-game_number .third {
  color: #FFAF0E;
}
.rank-game_number .number {
  position: absolute;
  color: #ffffff;
  font-size: 23px;
  line-height: 37px;
  font-weight: bold;
  text-align: center;
  min-width: 38px;
  width: 38px;
  max-width: 38px;
  z-index: 1;
  top: 0;
  left: 0;
}
.rank-game_logo {
  min-width: 100px;
  width: 100px;
  max-width: 100px;
  min-height: 100px;
  height: 100px;
  max-height: 100px;
  border-radius: 26px;
}
.rank-game_title {
  font-size: 20px;
  line-height: 26px;
  color: #303133;
}
.rank-game_size {
  font-size: 16px;
  line-height: 20px;
  color: #969799;
}
.rank-game_tags {
  font-size: 16px;
  line-height: 21px;
  color: #969799;
}
.rank-game_button {
  min-width: 112px;
  width: 112px;
  max-width: 112px;
  min-height: 50px;
  height: 50px;
  max-height: 50px;
  border-radius: 8px;
  background: #FF8B20;
  color: #303133;
  font-size: 16px;
  font-weight: bold;
}
.rank-col-3 {
  min-width: calc((100% - 48px) / 3);
  width: calc((100% - 48px) / 3);
  max-width: calc((100% - 48px) / 3);
}
.rank_bg {
  position: relative;
}
.rank_red {
  background: #FFF6F5;
}
.rank_blue {
  background: #F2F6FC;
}
.rank_yellow {
  background: #FCF8EE;
}
.rank_cup {
  min-width: 120px;
  width: 120px;
  max-width: 120px;
  min-height: 120px;
  height: 120px;
  max-height: 120px;
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
}
.rank-game_list {
  z-index: 2;
  position: relative;
}
.rank-game_list .title {
  font-size: 16px;
  line-height: 22px;
  color: #303133;
  font-weight: normal;
}
.rank-game_list .number {
  min-width: 22px;
  width: 22px;
  max-width: 22px;
  min-height: 22px;
  height: 22px;
  max-height: 22px;
  color: #969799;
  display: block;
  font-weight: bold;
  text-align: center;
  line-height: 22px;
  font-size: 15px;
  border-radius: 11px;
  color: #969799;
}
.rank-game_list .number_top {
  color: #FF4A26;
}
.rank-game_list .svg {
  font-size: 22px;
}
.rank-game_list .show .number {
  color: #ffffff;
  background: #969799;
}
.rank-game_list .show .number_top {
  color: #ffffff;
  background: #FF4A26;
}
.rank-game_list .show .title {
  font-weight: bold;
}
.rank-game_list .desc {
  font-size: 16px;
  line-height: 20px;
  font-weight: none;
  color: #969799;
}
.rank-game_logo {
  min-width: 84px;
  width: 84px;
  max-width: 84px;
  min-height: 84px;
  height: 84px;
  max-height: 84px;
}

/* page/_instruct.scss */
.instruct-list .instruct-item:nth-child(9n+1) {
  background: linear-gradient(to bottom right, #F76F78, #F35960);
}
.instruct-list .instruct-item:nth-child(9n+2) {
  background: linear-gradient(to bottom right, #00B9F9, #00AEF5);
}
.instruct-list .instruct-item:nth-child(9n+3) {
  background: linear-gradient(to bottom right, #8C5EC5, #834AC1);
}
.instruct-list .instruct-item:nth-child(9n+4) {
  background: linear-gradient(to bottom right, #F0C904, #EFC200);
}
.instruct-list .instruct-item:nth-child(9n+5) {
  background: linear-gradient(to bottom right, #00D1E3, #00C5DE);
}
.instruct-list .instruct-item:nth-child(9n+6) {
  background: linear-gradient(to bottom right, #FAB061, #F9A246);
}
.instruct-list .instruct-item:nth-child(9n+7) {
  background: linear-gradient(to bottom right, #FA94DB, #F784D2);
}
.instruct-list .instruct-item:nth-child(9n+8) {
  background: linear-gradient(to bottom right, #BF84E9, #B771E4);
}
.instruct-list .instruct-item:nth-child(9n+9) {
  background: linear-gradient(to bottom right, #00D4B4, #00C4A6);
}
.instruct-list .instruct-item {
  border-radius: 10px;
  cursor: default;
  color: #fff;
  margin-right: 30px;
}
.instruct-list .instruct-item:nth-child(4n) {
  margin-right: 0;
}
.instruct-list .instruct-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 2px 12px 4px rgba(0, 0, 0, 0.15);
}
.instruct-list .instruct-item .title {
  font-size: 18px;
}
.instruct-list .instruct-item .desc {
  font-size: 13px;
  line-height: 20px;
  height: 40px;
  opacity: 0.8;
}
.instruct-list .instruct-item .sort {
  font-size: 13px;
  background-color: rgba(255, 255, 255, 0.25);
  border-radius: 4px;
}
.instruct-list .instruct-item .sort .iconfont, .instruct-list .instruct-item .sort .page .pagination .next:before, .page .pagination .instruct-list .instruct-item .sort .next:before, .instruct-list .instruct-item .sort .page .pagination .prev:before, .page .pagination .instruct-list .instruct-item .sort .prev:before {
  font-size: 14px;
}
.instruct-list .instruct-item .data {
  font-size: 12px;
  opacity: 0.8;
}
.instruct-head {
  background-color: #8f99b1;
  border-radius: 6px;
  color: white;
}
.instruct-head .title {
  font-size: 20px;
  font-weight: bold;
}
.instruct-head .sort {
  font-size: 13px;
  background-color: rgba(255, 255, 255, 0.25);
  border-radius: 4px;
}
.instruct-head .sort .iconfont, .instruct-head .sort .page .pagination .next:before, .page .pagination .instruct-head .sort .next:before, .instruct-head .sort .page .pagination .prev:before, .page .pagination .instruct-head .sort .prev:before {
  font-size: 14px;
}
.instruct-head .data {
  font-size: 13px;
  opacity: 0.8;
}
.instruct-head .down {
  position: relative;
  display: block;
  min-width: 124px;
  width: 124px;
  max-width: 124px;
  min-height: 38px;
  height: 38px;
  max-height: 38px;
  line-height: 36px;
  border-radius: 6px;
  border: 1px solid white;
  text-align: center;
  transition: 0.2s all;
}
.instruct-head .down .iconfont, .instruct-head .down .page .pagination .next:before, .page .pagination .instruct-head .down .next:before, .instruct-head .down .page .pagination .prev:before, .page .pagination .instruct-head .down .prev:before {
  font-size: 18px;
}
.instruct-head .down:hover {
  background-color: white;
  color: #303133;
}
.instruct-head .down:hover .qr-jiejin {
  display: block;
}
.instruct-head .down .qr-jiejin {
  display: none;
  position: absolute;
  overflow: hidden;
  top: 50px;
  right: 0px;
  border-radius: 2px;
  font-size: 12px;
  line-height: 16px;
  text-align: center;
  color: #303133;
  border: 1px solid rgb(239, 239, 239);
  background: rgb(255, 255, 255);
  box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 3px 1px;
  z-index: 10;
}
.instruct-head .down .qr-jiejin img {
  min-width: 120px;
  width: 120px;
  max-width: 120px;
  min-height: 120px;
  height: 120px;
  max-height: 120px;
}
.instruct-head .down .qr-jiejin > * {
  display: block;
}

/* page/_help.scss */
.help-nav {
  min-width: 156px;
  width: 156px;
  max-width: 156px;
}
.help-nav__cell {
  width: 100%;
  font-size: 18px;
  font-weight: bold;
  color: #303133;
  text-align: center;
  line-height: 24px;
}
.help-nav__cell--selected {
  color: #1985ff;
  border-right: 4px solid #1985ff;
}
.help-main {
  min-width: 1043px;
  width: 1043px;
  max-width: 1043px;
  border-left: 1px solid #E6E7EB;
}
.help-main__title {
  font-size: 18px;
  font-weight: bold;
  color: #303133;
  line-height: 24px;
  border-bottom: 1px solid #E6E7EB;
}/*# sourceMappingURL=style.css.map */