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

html {
  font-size: 16px;
}

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

ol,
ul {
  list-style: none;
}

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

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

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

.qrcode, .rating, .coltitle3, .coltitle2, .coltitle, .catpos, .header-mobile {
  display: -moz-box;
  display: -webkit-box;
  display: box;
  display: flexbox;
  display: flex;
}

.hide {
  display: none !important;
}

.clear {
  clear: both;
}

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

.btn {
  cursor: pointer;
}

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

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

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

.vertical, .related-game-simple {
  display: -moz-box;
  display: -webkit-box;
  display: box;
  display: flexbox;
  display: flex;
  flex-direction: column;
}

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

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

.middle {
  align-items: center;
}

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

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

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

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

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

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

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

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

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

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

.bold {
  font-weight: bold;
}

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

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

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

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

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

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

body {
  background-color: #ffffff;
  font-family: "PingFang SC", "Lantinghei SC", "Microsoft Yahei", "Hiragino Sans GB", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

hr {
  height: 0px;
  background-color: black;
  opacity: 0.1;
  -webkit-backdrop-filter: blur(0px);
          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%;
}

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

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

.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-20 {
  margin-left: -20px;
}

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

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

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

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

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

.block2 {
  background-color: #f7f7f7;
}

.block3 {
  background-color: white;
}

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

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

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

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

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

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

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

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

.float {
  float: left;
}

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

/* layout/_header.scss */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 64px;
  max-height: 64px;
  z-index: 1000;
  background-color: #FFF;
  box-shadow: 0px 0px 6px 0px rgba(7, 14, 36, 0.05);
}
.header > .content {
  height: 100%;
}
.header-logo {
  max-height: 40px;
  width: auto;
  height: auto;
  max-width: 130px;
}
.header-nav_cell {
  cursor: pointer;
  font-size: 14px;
  color: rgba(19, 20, 21, 0.5647058824);
  line-height: 24px;
  font-weight: 400;
  position: relative;
}
.header-nav_cell:hover > a {
  font-weight: 700;
  color: #131415;
}
.header-nav_cell .iconfont, .header-nav_cell .page .pagination .prev:before, .page .pagination .header-nav_cell .prev:before, .header-nav_cell .page .pagination .next:before, .page .pagination .header-nav_cell .next:before {
  font-size: 20px;
}
.header-nav_cell.sel > a {
  font-weight: 700;
  color: #131415;
}
.header-nav_cell.sel > a::after {
  position: absolute;
  content: "";
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 28px;
  height: 2px;
  background: #0286FF;
}
.header-nav_cell .navsubmenu {
  position: absolute;
  top: 50px;
  left: 16px;
  display: none;
  min-width: 182px;
  width: 182px;
  max-width: 182px;
  background-color: #ffffff;
  border-radius: 2px;
  box-shadow: 0px 4px 32px 0px rgba(16, 36, 95, 0.08);
}
.header-nav_cell .navsubmenu_cell {
  min-height: 44px;
  height: 44px;
  max-height: 44px;
  font-size: 14px;
  line-height: 44px;
  padding: 0 8px 0 8px;
  color: #373739;
  border-radius: 2px;
}
.header-nav_cell .navsubmenu_cell:hover {
  background-color: #F7F7F7;
  color: #000002;
}
.header-nav_cell:hover .navsubmenu {
  display: block;
}
.header-nav_cell-selected {
  color: #ffffff;
}
.header-nav_cell-selected p {
  font-weight: 500;
}
.header-nav_cell-selected::after {
  background: #000002;
}
.header-search {
  width: 210px;
  height: 36px;
  float: right;
  border-radius: 2px;
  background: #f7f7f7;
}
.header-search > input {
  font-size: 14px;
  line-height: 36px;
  width: 161px;
}
.header-search > input::-moz-placeholder {
  color: #969799;
}
.header-search > input::placeholder {
  color: #969799;
}
.header-search > .iconfont, .page .pagination .header-search > .prev:before, .page .pagination .header-search > .next:before {
  font-size: 24px;
  line-height: 36px;
  color: #C8CACC;
}
.header-mobile {
  align-items: center;
  float: right;
  color: #222222;
}
.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: 14px;
  line-height: 19px;
}
.header-mobile:hover {
  color: #000;
}

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

.navicon {
  font-size: 24px;
}

/* layout/_footer.scss */
.footer {
  background: #121212;
}
.footer-nav {
  font-size: 18px;
  font-weight: bold;
  color: #DFE0E1;
  line-height: 24px;
}
.footer-link {
  font-size: 16px;
  color: #DFE0E1;
  line-height: 21px;
}
.footer-link .splitline {
  color: #575757;
}
.footer-link:hover {
  color: #ffffff;
}
.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: #F7F7F7;
}
.box > img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  font-family: "object-fit: cover;";
}

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

/* layout/_catpos.scss */
.catpos {
  font-size: 14px;
  color: #969799;
  line-height: 18px;
}

/* layout/_subtitle.scss  副标题、栏目标题样式 */
.subtitle {
  min-height: 40px;
  height: 40px;
  max-height: 40px;
  border-bottom: 1px solid #ECEDEF;
}
.subtitle .title {
  min-height: 40px;
  height: 40px;
  max-height: 40px;
  font-size: 16px;
  line-height: 24px;
  color: #373739;
  display: inline-block;
  cursor: pointer;
}
.subtitle .title:hover {
  color: #000002;
}
.subtitle .title.active {
  color: #000002;
  border-bottom: 2px solid #000002;
}
.subtitle .title2 {
  min-height: 40px;
  height: 40px;
  max-height: 40px;
  padding-bottom: 8px;
  font-size: 16px;
  line-height: 24px;
  color: #000002;
  border-bottom: 2px solid #000002;
}
.subtitle .hd-item {
  cursor: pointer;
}
.subtitle .more {
  min-height: 30px;
  height: 30px;
  max-height: 30px;
  padding-bottom: 8px;
  font-size: 12px;
  line-height: 22px;
  color: #969799;
  text-decoration: none;
}
.subtitle .more:hover {
  color: #0286FF;
}
.subtitle .more .iconfont, .subtitle .more .page .pagination .prev:before, .page .pagination .subtitle .more .prev:before, .subtitle .more .page .pagination .next:before, .page .pagination .subtitle .more .next:before {
  font-size: 12px;
  line-height: 22px;
}

.coltitle {
  align-items: center;
  min-height: 22px;
  height: 22px;
  max-height: 22px;
  min-width: 100%;
  width: 100%;
  max-width: 100%;
}
.coltitle-circle {
  min-height: 17px;
  height: 17px;
  max-height: 17px;
  min-width: 6px;
  width: 6px;
  max-width: 6px;
  background: #0286FF;
  border-radius: 3px 2px 2px 3px;
}
.coltitle h2 {
  font-size: 16px;
  font-weight: bold;
  color: #373739;
  display: inline;
}
.coltitle-more {
  float: right;
  font-size: 14px;
  color: #969799;
  line-height: 22px;
}
.coltitle-more .iconfont, .coltitle-more .page .pagination .prev:before, .page .pagination .coltitle-more .prev:before, .coltitle-more .page .pagination .next:before, .page .pagination .coltitle-more .next:before {
  font-size: 10px;
}
.coltitle-more:hover {
  color: #0286FF;
}

.coltitle2 {
  align-items: center;
  min-height: 30px;
  height: 30px;
  max-height: 30px;
  min-width: 100%;
  width: 100%;
  max-width: 100%;
}
.coltitle2-circle {
  min-height: 17px;
  height: 17px;
  max-height: 17px;
  min-width: 6px;
  width: 6px;
  max-width: 6px;
  background: #0286FF;
  border-radius: 3px 2px 2px 3px;
}
.coltitle2 h2 {
  font-size: 22px;
  font-weight: bold;
  color: #373739;
  display: inline;
}
.coltitle2-more {
  float: right;
  font-size: 14px;
  color: #969799;
  line-height: 22px;
}
.coltitle2-more .iconfont, .coltitle2-more .page .pagination .prev:before, .page .pagination .coltitle2-more .prev:before, .coltitle2-more .page .pagination .next:before, .page .pagination .coltitle2-more .next:before {
  font-size: 10px;
}
.coltitle2-more:hover {
  color: #0286FF;
}
.coltitle2_category {
  color: #373739;
  margin-right: 28px;
}
.coltitle2_category a {
  font-size: 16px;
  line-height: 30px;
}
.coltitle2_category a:hover {
  color: #0286FF;
}
.coltitle2 .selected {
  font-weight: bold;
  color: #000002;
}

.coltitle3 {
  align-items: center;
  min-height: 28px;
  height: 28px;
  max-height: 28px;
  min-width: 100%;
  width: 100%;
  max-width: 100%;
  position: relative;
}
.coltitle3 h2 {
  font-size: 20px;
  line-height: 28px;
  font-weight: bold;
  color: #373739;
  display: inline;
}
.coltitle3 .titlecolor1 {
  min-height: 16px;
  height: 16px;
  max-height: 16px;
  min-width: 60px;
  width: 60px;
  max-width: 60px;
  background-color: #ff9e9e;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
}
.coltitle3 .titlecolor2 {
  min-height: 16px;
  height: 16px;
  max-height: 16px;
  min-width: 60px;
  width: 60px;
  max-width: 60px;
  background-color: #92BCEE;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
}
.coltitle3 .titlecolor3 {
  min-height: 16px;
  height: 16px;
  max-height: 16px;
  min-width: 60px;
  width: 60px;
  max-width: 60px;
  background-color: #FACB82;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
}
.coltitle3-more {
  float: right;
  font-size: 14px;
  color: #969799;
  line-height: 28px;
}
.coltitle3-more .iconfont, .coltitle3-more .page .pagination .prev:before, .page .pagination .coltitle3-more .prev:before, .coltitle3-more .page .pagination .next:before, .page .pagination .coltitle3-more .next:before {
  font-size: 10px;
}
.coltitle3-more:hover {
  color: #0286FF;
}

/* layout/_hotrank.scss 热门列表样式 */
.hotrank_bg {
  border-radius: 6px;
  position: relative;
}
.hotrank_bg .subtitle {
  z-index: 2;
  position: relative;
}
.hotrank_bg::after {
  content: "";
  width: 112px;
  height: 112px;
  display: block;
  position: absolute;
  z-index: 1;
  left: -22px;
  top: -34px;
  border-radius: 56px;
}
.hotrank_red {
  background: #FFF6F5;
}
.hotrank_red::after {
  background: linear-gradient(215deg, #FFE6E1 0%, rgba(255, 232, 228, 0) 100%);
}
.hotrank_yellow {
  background: #FCF8EE;
}
.hotrank_yellow::after {
  background: linear-gradient(215deg, #FFF0C9 0%, rgba(255, 240, 201, 0) 100%);
}
.hotrank_blue {
  background: #F2F6FC;
}
.hotrank_blue::after {
  background: linear-gradient(215deg, #E0ECFF 0%, rgba(224, 236, 255, 0) 100%);
}
.hotrank_list {
  z-index: 2;
  position: relative;
}
.hotrank_list .title {
  font-size: 14px;
  color: #373739;
  line-height: 21px;
  overflow: hidden;
}
.hotrank_list .gametitle {
  font-size: 16px;
  color: #373739;
  line-height: 21px;
  overflow: hidden;
}
.hotrank_list .desc {
  font-size: 12px;
  color: #969799;
  line-height: 16px;
  align-items: center;
}
.hotrank_list .gamedesc {
  font-size: 16px;
  color: #969799;
  line-height: 21px;
}
.hotrank_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;
}
.hotrank_list .number_top {
  color: #FF4A26;
}
.hotrank_list .show .number {
  color: #ffffff;
  background: #969799;
}
.hotrank_list .show .number_top {
  color: #ffffff;
  background: #FF4A26;
}
.hotrank_list .show .img {
  min-height: 68px;
  height: 68px;
  max-height: 68px;
  min-width: 120px;
  width: 120px;
  max-width: 120px;
  border-radius: 4px;
}
.hotrank_list .show .logo {
  min-height: 84px;
  height: 84px;
  max-height: 84px;
  min-width: 84px;
  width: 84px;
  max-width: 84px;
  border-radius: 20px;
}
.hotrank_list .show .title {
  min-height: 42px;
  height: 42px;
  max-height: 42px;
}
.hotrank_list .show .gametitle {
  font-weight: bold;
}
.hotrank_list .show .tags {
  display: -moz-box;
  display: -webkit-box;
  display: box;
  display: flexbox;
  display: flex;
  flex-wrap: wrap;
  font-size: 14px;
  line-height: 19px;
  color: #969799;
  white-space: nowrap;
  min-height: 19px;
  height: 19px;
  max-height: 19px;
  overflow: hidden;
}

/* layout/_desc.scss */
.rating {
  color: #000002;
  border: 1px solid #000002;
  border-radius: 4px;
  align-items: center;
  background: #FFF9E7;
}
.rating .iconfont, .rating .page .pagination .prev:before, .page .pagination .rating .prev:before, .rating .page .pagination .next:before, .page .pagination .rating .next:before {
  font-size: 14px;
}

.category {
  background: #E7F6EF;
  color: #00A861;
  border: 1px solid #00A861;
  border-radius: 4px;
}

/* layout/_related.scss */
.related-game_cell3 {
  min-width: calc((100% - 48px) / 3);
  width: calc((100% - 48px) / 3);
  max-width: calc((100% - 48px) / 3);
}
.related-game_cell2 {
  min-width: calc((100% - 32px) / 2);
  width: calc((100% - 32px) / 2);
  max-width: calc((100% - 32px) / 2);
}
.related-game_logo {
  min-width: 52px;
  width: 52px;
  max-width: 52px;
  min-height: 52px;
  height: 52px;
  max-height: 52px;
}
.related-game_title {
  font-weight: normal;
  color: #373739;
  font-size: 18px;
}
.related-game_desc {
  color: #969799;
  font-size: 14px;
}
.related-game-simple {
  min-width: 112px;
  width: 112px;
  max-width: 112px;
  align-items: center;
}
.related-game-simple > .box {
  min-width: 112px;
  width: 112px;
  max-width: 112px;
  min-height: 112px;
  height: 112px;
  max-height: 112px;
  border-radius: 24px;
}
.related-game-simple_title {
  max-width: 112px;
  font-size: 14px;
  color: #373739;
  line-height: 19px;
  font-weight: normal;
}
.related-news_list {
  font-size: 14px;
  min-height: 42px;
  height: 42px;
  max-height: 42px;
  line-height: 42px;
}
.related-news_list .ellipsis {
  font-weight: bold;
}
.related-news_title {
  background: #F8F8F8;
  color: #969799;
}
.related-news_desc {
  color: #7D7E80;
}
.related-cover_cell3 {
  min-width: calc((100% - 60px) / 3);
  width: calc((100% - 60px) / 3);
  max-width: calc((100% - 60px) / 3);
  border-radius: 6px;
  box-shadow: 0px 0px 24px 0px rgba(0, 0, 0, 0.08);
}
.related-cover_cell3_img {
  min-width: 255px;
  width: 255px;
  max-width: 255px;
  min-height: 147px;
  height: 147px;
  max-height: 147px;
}
.related-cover_cell3_text {
  font-size: 16px;
  line-height: 23px;
}
.related-cover_cell3_desc {
  font-size: 14px;
  line-height: 19px;
  color: #969799;
}

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

.main {
  min-width: 832px;
  width: 832px;
  max-width: 832px;
}
.main.line {
  border-top: 3px solid #F7F7F7;
}

.aside {
  min-width: 320px;
  width: 320px;
  max-width: 320px;
}
.aside.line {
  border-top: 3px solid #C7C8CC;
}

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

.empty-img {
  min-width: 500px;
  width: 500px;
  max-width: 500px;
  min-height: 400px;
  height: 400px;
  max-height: 400px;
}

.empty-title {
  font-size: 24px;
  font-weight: bold;
  color: #373739;
  line-height: 31px;
}

.empty-tip {
  font-size: 18px;
  color: #373739;
  line-height: 24px;
}

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

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

.hotgame {
  padding: 20px;
  border-radius: 12px;
  border: 1px solid #e6e7eb;
}
.hotgame-cell {
  min-height: 52px;
  height: 52px;
  max-height: 52px;
  margin-bottom: 20px;
}
.hotgame-cell:last-child {
  margin-bottom: 0px;
}
.hotgame-cell .hotgameimg {
  min-width: 52px;
  width: 52px;
  max-width: 52px;
  min-height: 52px;
  height: 52px;
  max-height: 52px;
  border-radius: 10px;
}
.hotgame-cell .title {
  display: block;
  font-size: 16px;
  min-height: 21px;
  height: 21px;
  max-height: 21px;
  line-height: 21px;
  overflow: hidden;
}
.hotgame-cell .title:hover {
  color: #0286FF;
}
.hotgame-cell .att {
  height: 19px;
  line-height: 19px;
  font-size: 14px;
}
.hotgame-cell .grade {
  display: inline-block;
  line-height: 19px;
  color: #0286FF;
}
.hotgame-cell .tags {
  display: inline-block;
  color: #969799;
  line-height: 19px;
}
.hotgame-cell .tags:hover {
  color: #0286FF;
}
.hotgame-cell .btn {
  min-width: 66px;
  width: 66px;
  max-width: 66px;
  min-height: 30px;
  height: 30px;
  max-height: 30px;
  border-radius: 15px;
  background-color: #f7f7f7;
  font-size: 13px;
  line-height: 30px;
  text-align: center;
  color: #0286FF;
}
.hotgame-cell .btn:hover {
  background-color: #0286FF;
  color: #ffffff;
}

.hotgl {
  padding: 20px;
  border-radius: 12px;
  background-color: #f7f7f7;
}
.hotgl-cell {
  min-height: 19px;
  height: 19px;
  max-height: 19px;
  margin-bottom: 20px;
}
.hotgl-cell:last-child {
  margin-bottom: 0px;
}
.hotgl-cell .title {
  display: block;
  font-size: 14px;
  line-height: 19px;
  min-height: 19px;
  height: 19px;
  max-height: 19px;
  overflow: hidden;
}
.hotgl-cell .title:hover {
  color: #0286FF;
}

.hotzh {
  padding: 20px;
  border-radius: 12px;
  border: 1px solid #e6e7eb;
}
.hotzh-list {
  display: flex;
  flex-wrap: wrap;
}
.hotzh-cell {
  min-width: calc((100% - 12px) / 2);
  width: calc((100% - 12px) / 2);
  max-width: calc((100% - 12px) / 2);
  margin-right: 12px;
}
.hotzh-cell:nth-child(2n) {
  margin-right: 0px;
}
.hotzh-cell .hotzhimg {
  display: block;
  min-width: 144px;
  width: 144px;
  max-width: 144px;
  min-height: 83px;
  height: 83px;
  max-height: 83px;
  border-radius: 6px;
}
.hotzh-cell .title {
  display: block;
  font-size: 12px;
  min-height: 16px;
  height: 16px;
  max-height: 16px;
  line-height: 16px;
  text-align: center;
  overflow: hidden;
}
.hotzh-cell .title:hover {
  color: #0286FF;
}

.wrong {
  min-height: 400px;
  height: 400px;
  max-height: 400px;
  min-width: 1028px;
  width: 1028px;
  max-width: 1028px;
  margin: 0 auto;
  margin-top: 56px;
}
.wrong .wrongimg {
  float: left;
  min-width: 500px;
  width: 500px;
  max-width: 500px;
  min-height: 400px;
  height: 400px;
  max-height: 400px;
}
.wrong-content {
  float: left;
  min-width: 528px;
  width: 528px;
  max-width: 528px;
  min-height: 400px;
  height: 400px;
  max-height: 400px;
}
.wrong-content .title {
  display: block;
  font-size: 24px;
  line-height: 31px;
  min-height: 31px;
  height: 31px;
  max-height: 31px;
  text-align: left;
  margin-top: 113px;
}
.wrong-content .text {
  display: block;
  font-size: 18px;
  line-height: 24px;
  min-height: 24px;
  height: 24px;
  max-height: 24px;
  text-align: left;
}

.article-title {
  font-size: 42px;
  line-height: 46px;
  font-weight: 500;
  color: #23272E;
  padding-right: 300px;
  line-height: 1.6;
}
.article-data {
  font-size: 12px;
  color: #949699;
  line-height: 16px;
}
.article-data .item {
  margin-right: 40px;
}
.article-tab .btn {
  line-height: 32px;
  margin-right: 12px;
  padding: 0px 12px;
  font-size: 13px;
  cursor: pointer;
  display: inline-block;
  text-align: center;
  background-color: #F7F7F7;
  color: #5E6166;
  border-radius: 2px;
}
.article-tab .btn:hover {
  background-color: #0286FF;
  color: white;
}
.article-content {
  font-size: 14px;
  font-weight: 400;
  color: #5E6166;
  line-height: 1.8;
  text-align: justify;
  min-height: 30px;
}
.article-content h3 {
  font-size: 20px;
  font-weight: bold;
  margin: 24px 0 12px;
  color: #23272E;
}
.article-content p {
  margin: 12px 0;
}
.article-content .w, .article-content .w a {
  color: green;
  font-size: 16px;
  text-align: justify;
  font-weight: 700;
  display: inline;
}
.article-content .d, .article-content .d a {
  color: rgb(206, 0, 0);
  font-weight: 700;
  display: inline;
  font-size: 22px;
  text-decoration-line: underline;
}
.article-content .image, .article-content video, .article-content iframe, .article-content img {
  cursor: pointer;
  margin: 20px auto !important;
  max-width: 92%;
  -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-flip .item {
  min-width: calc((100% - 20px) / 2);
  width: calc((100% - 20px) / 2);
  max-width: calc((100% - 20px) / 2);
  height: 44px;
  line-height: 44px;
  background-color: #F7F7F7;
  color: #23272E;
  border-radius: 2px;
  padding: 0 12px;
}
.article-flip .item:hover {
  color: #0286FF;
}
.article-flip .item.none {
  color: #949699;
}
.article-flip .item.none:hover {
  background-color: #F7F7F7;
}

*[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: 33px;
  min-width: 33px;
}
.page .pagination .next:before {
  content: "\e654";
  font-size: 14px;
}
.page .pagination .prev {
  padding: 0;
  width: 33px;
  min-width: 33px;
}
.page .pagination .prev:before {
  content: "\e64f";
  font-size: 14px;
}
.page .pagination > li > a {
  float: left;
  min-width: 33px;
  min-height: 33px;
  height: 33px;
  max-height: 33px;
  line-height: 33px;
  background: #FFFFFF;
  border-radius: 2px;
  border: 1px solid #DCDEE0;
  font-size: 12px;
  color: #323233;
  text-align: center;
  margin-left: 8px;
  padding: 0 6px;
}
.page .pagination > li:first-child > a, .page .pagination > li:first-child > span {
  margin-left: 0;
}
.page .pagination > li > a:hover, .page .pagination > li > a:focus, .page .pagination > li > span:hover, .page .pagination > li > span:focus {
  z-index: 2;
  color: #0286FF;
  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: #0286FF;
  border-color: #0286FF;
  cursor: default;
}

/* layout/_qrcode.scss */
.qrcode {
  align-items: center;
  flex-direction: column;
}
.qrcode .box {
  min-width: 120px;
  width: 120px;
  max-width: 120px;
  min-height: 120px;
  height: 120px;
  max-height: 120px;
}
.qrcode-text {
  font-size: 16px;
  color: #7F7F7F;
  line-height: 21px;
}

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

.index-top {
  min-width: 100%;
  width: 100%;
  max-width: 100%;
  height: auto;
  position: relative;
  background: linear-gradient(180deg, rgba(54, 139, 217, 0.031372549), rgba(54, 139, 217, 0.062745098));
}
.index-top_content {
  width: 1200px;
  margin: 0 auto;
  padding: 48px 0;
  background: url(../images/toolbar.png) no-repeat;
  background-position: calc(100% - 30px) calc(100% - 10px);
  background-size: 384px 280px;
}
.index-top_content .toolbar1_cell {
  display: inline-block;
  cursor: pointer;
  height: 30px;
  line-height: 22px;
  font-size: 16px;
  padding-bottom: 8px;
  color: #373739;
  margin-right: 32px;
}
.index-top_content .toolbar1_cell:hover {
  color: #000002;
}
.index-top_content .toolbar1_cell.active {
  color: #000002;
  border-bottom: 2px solid #000002;
}
.index-top_content .toolbar1_cell:last-child {
  margin-right: 0px;
}
.index-top_content .toolbar2_cell {
  margin-right: 60px;
}
.index-top_content .toolbar2_cell .logo {
  min-width: 40px;
  width: 40px;
  max-width: 40px;
  min-height: 40px;
  height: 40px;
  max-height: 40px;
}
.index-top_content .toolbar2_cell .title {
  height: 40px;
  font-size: 16px;
  line-height: 40px;
  color: #373739;
}
.index-top_content .toolbar2_cell:hover .title {
  color: #000002;
}
.index-top_content .toolbar2_cell:last-child {
  margin-right: 0px;
}
.index-top_content .toolbar-title {
  font-size: 40px;
  line-height: 56px;
  font-weight: 700;
  color: #222222;
}
.index-top_content .toolbar-info {
  font-size: 14px;
  line-height: 1.6;
  color: #888;
  max-width: 700px;
}
.index-top_content .toolbar-search {
  width: 742px;
  height: 68px;
  padding: 14px;
  box-sizing: border-box;
  background-color: #ffffff;
  border-radius: 4px;
}
.index-top_content .toolbar-search_btn {
  min-width: 112px;
  width: 112px;
  max-width: 112px;
  min-height: 40px;
  height: 40px;
  max-height: 40px;
  background: #0286FF;
  border-radius: 4px;
  font-size: 16px;
  line-height: 40px;
  text-align: center;
  color: #fff;
}
.index-top_content .toolbar-search_btn:hover {
  background: #373739;
}
.index-top_content .toolbar-search > .iconfont, .index-top_content .page .pagination .toolbar-search > .next:before, .page .pagination .index-top_content .toolbar-search > .next:before, .index-top_content .page .pagination .toolbar-search > .prev:before, .page .pagination .index-top_content .toolbar-search > .prev:before {
  font-size: 32px;
  color: #222222;
}
.index-top_content .toolbar-search > input {
  font-size: 16px;
  height: 40px;
  line-height: 40px;
}
.index-top_content .toolbar-search > input::-moz-placeholder {
  color: #969799;
}
.index-top_content .toolbar-search > input::placeholder {
  color: #969799;
}
.index-top .faq {
  padding: 12px;
  width: 282px;
  height: 186px;
  background: linear-gradient(180deg, #F4F7FC 0%, #FFFFFF 100%);
  box-shadow: 0px 12px 40px 0px rgba(1, 34, 122, 0.06);
  border-radius: 2px;
  border: 2px solid #FFFFFF;
}
.index-top .faq-title {
  height: 22px;
  font-size: 16px;
  line-height: 22px;
  color: #000002;
}
.index-top .faq-cell {
  height: 20px;
}
.index-top .faq-cell .faq-circle {
  min-width: 4px;
  width: 4px;
  max-width: 4px;
  min-height: 4px;
  height: 4px;
  max-height: 4px;
  background-color: #373739;
}
.index-top .faq-cell .title {
  min-height: 20px;
  height: 20px;
  max-height: 20px;
  font-size: 14px;
  line-height: 20px;
  color: #373739;
}
.index-top .faq-cell .title:hover {
  color: #000002;
}
.index-content_left {
  min-width: 760px;
  width: 760px;
  max-width: 760px;
}
.index-content_right {
  min-width: 370px;
  width: 370px;
  max-width: 370px;
}
.index-yqlj {
  padding: 32px 0 8px 0;
  border-bottom: 1px solid #646566;
}
.index-yqlj .title {
  display: block;
  font-size: 18px;
  min-height: 24px;
  height: 24px;
  max-height: 24px;
  line-height: 24px;
  color: #Fff;
}
.index-yqlj_list {
  display: flex;
  flex-wrap: wrap;
  overflow: hidden;
}
.index-yqlj_cell {
  min-height: 16px;
  height: 16px;
  max-height: 16px;
  font-size: 12px;
  line-height: 16px;
  margin-right: 32px;
  margin-bottom: 20px;
  color: #C8CACC;
}
.index-yqlj_cell:hover {
  color: #fff;
}
.index-swiper {
  position: relative;
  min-width: 771px;
  width: 771px;
  max-width: 771px;
  min-height: 434px;
  height: 434px;
  max-height: 434px;
  border-radius: 4px;
  background-color: rgb(255, 116, 116);
}
.index-swiper:hover .index-swiper__next, .index-swiper:hover .index-swiper__prev {
  display: block;
}
.index-swiper .box {
  position: relative;
  transition: none;
  transform: none;
  width: 100%;
  height: 100%;
  display: inline-block;
}
.index-swiper .box img {
  position: absolute;
  top: 0;
  left: 0;
}
.index-swiper__content {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding-right: 164px;
  padding-top: 342px;
  height: 434px;
  overflow: hidden;
  background: linear-gradient(180deg, transparent 49.06%, rgba(0, 0, 0, 0.5));
}
.index-swiper__content .title {
  min-height: 32px;
  height: 32px;
  max-height: 32px;
  font-size: 24px;
  font-weight: bold;
  color: #FFFFFF;
  line-height: 32px;
  overflow: hidden;
}
.index-swiper__content .att {
  min-height: 20px;
  height: 20px;
  max-height: 20px;
  font-size: 14px;
  line-height: 20px;
  color: rgba(255, 255, 255, 0.7);
}
.index-swiper__prev {
  left: 32px;
  border-radius: 32px;
  min-width: 44px;
  width: 44px;
  max-width: 44px;
  min-height: 44px;
  height: 44px;
  max-height: 44px;
}
.index-swiper__next {
  right: 32px;
  border-radius: 32px;
  min-width: 44px;
  width: 44px;
  max-width: 44px;
  min-height: 44px;
  height: 44px;
  max-height: 44px;
}
.index-swiper__paginations {
  position: absolute;
  display: -moz-inline-box;
  display: -webkit-inline-box;
  display: inline-box;
  display: inline-flexbox;
  display: inline-flex;
  height: 32px;
  align-items: center;
  justify-content: flex-end;
  z-index: 1;
  bottom: 0;
  right: 0;
}
.index-swiper__paginations .swiper-pagination-bullet {
  width: 16px;
  height: 3px;
  background: #E6E7EB;
  border-radius: 0.5px;
  margin: 0 4px;
  opacity: 0.5;
}
.index-swiper__paginations .swiper-pagination-bullet-active {
  width: 28px;
  height: 3px;
  background: #ffffff;
  opacity: 1;
}

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

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

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

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

.newslist {
  min-height: 126px;
  height: 126px;
  max-height: 126px;
  box-sizing: content-box;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}
.newslist:last-of-type {
  padding-bottom: 0;
  border-bottom: none;
}
.newslist .logo {
  min-width: 210px;
  width: 210px;
  max-width: 210px;
  min-height: 126px;
  height: 126px;
  max-height: 126px;
  border-radius: 2px;
}
.newslist .title {
  font-size: 18px;
  line-height: 28px;
  font-weight: bold;
  color: #222;
  display: inline-block;
}
.newslist .title:hover {
  color: #0286FF;
}
.newslist .text {
  font-size: 14px;
  line-height: 22px;
  color: #777;
}
.newslist .tags {
  min-width: 44px;
  min-height: 22px;
  height: 22px;
  max-height: 22px;
  padding: 0 8px;
  background-color: #F5F5F5;
  border-radius: 2px;
  font-size: 12px;
  line-height: 22px;
  text-align: center;
  color: #969799;
}
.newslist .tags:hover {
  background-color: #0286FF;
  color: #ffffff;
}
.newslist .att {
  min-height: 22px;
  height: 22px;
  max-height: 22px;
  font-size: 12px;
  line-height: 22px;
  color: #AEAFB3;
}

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

.seemore {
  display: block;
  margin: 0 auto;
  min-height: 44px;
  height: 44px;
  max-height: 44px;
  width: 100%;
  max-width: 380px;
  border-radius: 2px;
  background-color: #F5F5F5;
  font-size: 15px;
  line-height: 44px;
  text-align: center;
  color: #373739;
}
.seemore:hover {
  text-decoration: underline;
  color: #0286FF;
}

.hotnews {
  min-height: 95px;
  height: 95px;
  max-height: 95px;
}
.hotnews .logo {
  min-width: 150px;
  width: 150px;
  max-width: 150px;
  min-height: 95px;
  height: 95px;
  max-height: 95px;
  border-radius: 2px;
}
.hotnews .title {
  min-height: 42px;
  height: 42px;
  max-height: 42px;
  font-size: 14px;
  line-height: 21px;
  color: #373739;
  overflow: hidden;
  text-overflow: ellipsis;
}
.hotnews .title:hover {
  color: #000002;
}
.hotnews .att {
  min-height: 16px;
  height: 16px;
  max-height: 16px;
  font-size: 12px;
  line-height: 16px;
  color: #969799;
}

.hotnews2 .item {
  margin-top: 20px;
}
.hotnews2 .item .rank {
  color: #fff;
  background-color: #ccc;
  min-width: 16px;
  width: 16px;
  max-width: 16px;
  min-height: 16px;
  height: 16px;
  max-height: 16px;
  border-radius: 2px;
  text-align: center;
  font-size: 12px;
  line-height: 16px;
  margin-left: 10px;
}
.hotnews2 .item:nth-child(1) .rank {
  background-color: #E04A1C;
}
.hotnews2 .item:nth-child(2) .rank {
  background-color: #F88217;
}
.hotnews2 .item:nth-child(3) .rank {
  background-color: #FFB915;
}
.hotnews2 .item .title {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
  color: #222222;
}
.hotnews2 .item .title:hover {
  color: #0286FF;
}
.hotnews2 .item .att {
  font-size: 13px;
  line-height: 20px;
  color: #969799;
  margin-top: 4px;
}

.hottag {
  display: -moz-grid;
  display: grid;
  display: -moz-grid;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
  justify-content: space-between;
  gap: 5px;
}
.hottag-cell {
  min-height: 34px;
  height: 34px;
  max-height: 34px;
  text-align: center;
  background-color: #F6F6F6;
  border-radius: 2px;
  font-size: 13px;
  line-height: 34px;
  color: #373739;
  overflow: hidden;
}
.hottag-cell:hover {
  background-color: #0286FF;
  color: #ffffff;
}

.newsflash .drop {
  min-width: 4px;
  width: 4px;
  max-width: 4px;
  min-height: 4px;
  height: 4px;
  max-height: 4px;
  background-color: #969799;
}
.newsflash .title {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.6;
  color: #373739;
}
.newsflash .title:hover {
  color: #0286FF;
}
.newsflash .att {
  font-size: 13px;
  line-height: 1.6;
  color: #969799;
}

/* 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: #373739;
  text-align: center;
  line-height: 24px;
}
.help-nav__cell--selected {
  color: #0286FF;
  border-right: 4px solid #0286FF;
}
.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: #373739;
  line-height: 24px;
  border-bottom: 1px solid #E6E7EB;
}

/* page/_news.scss */
.news-list-small .news-item {
  margin-top: 16px;
}
.news-list-small .news-img {
  min-width: 120px;
  width: 120px;
  max-width: 120px;
  min-height: 76px;
  height: 76px;
  max-height: 76px;
  border-radius: 2px;
}
.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: #0286FF;
}
.news-list-small .news-info {
  height: 100%;
}
.news-list-small .news-title {
  display: block;
  font-size: 14px;
  font-weight: 500;
  line-height: 22px;
  min-height: 48px;
  height: 48px;
  max-height: 48px;
  overflow: hidden;
}
.news-list-small .news-text-title {
  font-size: 14px;
  line-height: 22px;
}
.news-list-small .news-text-title:hover {
  color: #0286FF;
}
.news-list-small .news-desc {
  font-size: 12px;
  color: #969799;
  line-height: 20px;
  height: 20px;
  margin-top: 6px;
}
.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: #0286FF;
  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: 2px;
  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: #373739;
  font-size: 15px;
  font-weight: 500;
  line-height: 24px;
  margin-top: 8px;
  width: 100%;
  height: 48px;
}

/* page/_soft.scss */
.soft-show .show-title {
  font-size: 42px;
  font-weight: 500;
  color: #23272E;
  padding-right: 300px;
  line-height: 1.6;
  height: auto;
}
.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: #0286FF;
}
.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;
}
.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;
  color: #0286FF;
}
.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: #F7F7F7;
}
.soft-list-small .soft-score {
  color: #000002;
  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-list .soft-title {
  display: block;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  min-height: 20px;
  height: 20px;
  max-height: 20px;
  overflow: hidden;
  margin-top: 10px;
}
.soft-list .soft-title:hover {
  color: #0286FF;
}
.soft-list .soft-desc {
  font-size: 13px;
  color: #969799;
  line-height: 28px;
  height: 28px;
}
.soft-list .soft-desc:hover {
  color: #0286FF;
}
.soft-list .soft-button {
  color: #0286FF;
  background-color: #F7F7F7;
  font-size: 13px;
  line-height: 30px;
  padding: 0 16px;
  border-radius: 2px;
}
.soft-list .soft-button:hover {
  background-color: #0286FF;
  color: white;
}
.soft-category-list > a {
  font-size: 14px;
  line-height: 40px;
  width: 120px;
  border-radius: 1px;
  text-align: center;
  margin-top: 4px;
}
.soft-category-list > a:hover {
  color: #0286FF;
}
.soft-category-list .sel {
  background-color: #F7F7F7;
  color: #0286FF;
  font-weight: bold;
}
.soft-show_button {
  width: 168px;
  height: 48px;
  background: #0d53ff;
  border-radius: 2px;
  line-height: 48px;
  color: #ffffff;
  text-decoration: none;
  font-size: 16px;
  overflow: hidden;
  font-weight: 600;
  align-items: center;
  justify-content: center !important;
}
.soft-show_button .iconfont, .soft-show_button .page .pagination .next:before, .page .pagination .soft-show_button .next:before, .soft-show_button .page .pagination .prev:before, .page .pagination .soft-show_button .prev:before {
  font-size: 20px;
  display: inline;
}
.soft-show_button span {
  display: inline;
  width: auto;
  float: none;
}/*# sourceMappingURL=style.css.map */