@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;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  /*移动端点击高亮效果的清除*/
  -webkit-tap-highlight-color: transparent;
}

html {
  font-size: 16px;
}

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

ol,
ul {
  list-style: none;
}

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

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

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

.hide {
  display: none !important;
}

.clear {
  clear: both;
}

.ellipsis {
  overflow: hidden;
  -o-text-overflow: ellipsis;
  -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;
  -o-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.modal:target {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

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

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

.vertical {
  display: -ms-flexbox !important;
  display: flexbox !important;
  display: -webkit-flex !important;
  display: flex !important;
  -ms-flex-direction: column;
  flex-direction: column;
}
.vertical.center {
  align-items: center;
}

.horizontal {
  display: -ms-flexbox !important;
  display: flexbox !important;
  display: -webkit-flex !important;
  display: flex !important;
  -ms-flex-direction: row;
  flex-direction: row;
}
.horizontal.center {
  align-items: center;
}

.fill {
  -ms-flex: 1;
  -webkit-flex: 1;
  flex: 1;
  width: 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

body {
  background-color: #FFFFFF;
}

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

li > a {
  display: block;
}

/* base/_common.scss */
@font-face {
  font-family: "iconfont";
  src: url("../fonts/iconfont.woff2") format("woff2"), url("../fonts/iconfont.woff") format("woff"), url("../fonts/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;
}

.link {
  cursor: pointer;
}
.link:hover {
  text-decoration: underline;
  color: #0066cc;
}

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

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

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

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

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

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

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

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

.divider {
  height: 14px;
  background: #F8F8FA;
}

.white {
  background: white;
}

.shadow {
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.08);
}

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

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

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

.graybg {
  background: #F8F8F8;
}

.pinkbg {
  background: #FFF6F5;
}
.pinkbg::after {
  background: linear-gradient(215deg, #FFE6E1 0%, rgba(255, 232, 228, 0) 100%);
}

.bluebg {
  background: #F2F6FC;
}
.bluebg::after {
  background: linear-gradient(215deg, #E0ECFF 0%, rgba(224, 236, 255, 0) 100%);
}

.yellowbg {
  background: #FCF8EE;
}
.yellowbg::after {
  background: linear-gradient(215deg, #FFF0C9 0%, rgba(255, 240, 201, 0) 100%);
}

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

/* layout/_header.scss */
.header {
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  min-height: 48px;
  height: 48px;
  max-height: 48px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10001;
  background-color: #121212;
}
.header-row {
  overflow: auto;
  display: flex;
  min-height: 100%;
  height: 100%;
  max-height: 100%;
  align-items: center;
}
.header-logo {
  width: auto;
  height: auto;
  max-height: 32px;
}
.header-search .iconfont, .header-search .page .pagination .prev:before, .page .pagination .header-search .prev:before, .header-search .page .pagination .next:before, .page .pagination .header-search .next:before {
  font-size: 1.5rem;
  color: #e5e5e5;
}
.header-menu .iconfont, .header-menu .page .pagination .prev:before, .page .pagination .header-menu .prev:before, .header-menu .page .pagination .next:before, .page .pagination .header-menu .next:before {
  font-size: 1.5rem;
  color: #C8CACC;
}
.header-more {
  font-size: 1.5rem;
  color: black;
}
.header-placeholder {
  min-height: 48px;
  height: 48px;
  max-height: 48px;
}

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

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

/* layout/_catpos.scss */
.catpos {
  display: -ms-flexbox;
  display: flexbox;
  display: -webkit-flex;
  display: flex;
  font-size: 0.875rem;
  color: #7F7F7F;
  line-height: 2.75rem;
  min-height: 44px;
  height: 44px;
  max-height: 44px;
}
.catpos .iconfont, .catpos .page .pagination .prev:before, .page .pagination .catpos .prev:before, .catpos .page .pagination .next:before, .page .pagination .catpos .next:before {
  font-size: 16px;
  color: #AAAAAA;
}

/* layout/_subtitle.scss */
.subtitle {
  display: -ms-flexbox;
  display: flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
}
.subtitle .title {
  font-size: 1rem;
  font-weight: 500;
  color: #000002;
  line-height: 1.3125rem;
}
.subtitle .more {
  font-size: 0.75rem;
  color: #0066cc;
  line-height: 1rem;
}
.subtitle .more .iconfont, .subtitle .more .page .pagination .prev:before, .page .pagination .subtitle .more .prev:before, .subtitle .more .page .pagination .next:before, .page .pagination .subtitle .more .next:before {
  font-size: 12px;
}

/* layout/_desc.scss */
.rating {
  color: #FCC801;
  border: 1px solid #FCC801;
  border-radius: 4px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: #FFF9E7;
  font-size: 0.625rem;
  min-height: 18px;
  height: 18px;
  max-height: 18px;
  line-height: 0.875rem;
}
.rating .iconfont, .rating .page .pagination .prev:before, .page .pagination .rating .prev:before, .rating .page .pagination .next:before, .page .pagination .rating .next:before {
  font-size: 0.625rem;
}

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

/* layout/_related.scss */
.related-rank_slide {
  min-width: 86%;
  width: 86%;
  max-width: 86%;
}

/* layout/_content.scss */
.not-found__img {
  width: 200px;
  height: auto;
  max-width: 100%;
  margin-top: 120px;
}
.not-found__desc {
  font-size: 0.875rem;
  color: #969799;
  line-height: 1.1875rem;
}

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

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

/* layout/_pagination.scss */
/* 分页 */
.page {
  text-align: center;
}
.page .pagination {
  display: -ms-inline-flexbox;
  display: inline-flexbox;
  display: -webkit-inline-flex;
  display: inline-flex;
  padding-left: 0;
  border-radius: 2px;
}
.page .pagination .next {
  padding: 0;
  width: 28px;
  min-width: 28px;
}
.page .pagination .next:before {
  content: "\e665";
  font-size: 14px;
}
.page .pagination .prev {
  padding: 0;
  width: 28px;
  min-width: 28px;
}
.page .pagination .prev:before {
  content: "\e664";
  font-size: 14px;
}
.page .pagination > li > a {
  float: left;
  min-width: 28px;
  height: 28px;
  background: #FFFFFF;
  border-radius: 2px;
  border: 1px solid #DCDEE0;
  font-size: 12px;
  color: #323233;
  line-height: 28px;
  text-align: center;
  margin-left: 4px;
  padding: 0 6px;
}
.page .pagination > li:first-child > a, .page .pagination > li:first-child > span {
  margin-left: 0;
}
.page .pagination > li > a:hover, .page .pagination > li > a:focus, .page .pagination > li > span:hover, .page .pagination > li > span:focus {
  z-index: 2;
  color: #0066cc;
  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: #0066cc;
  border-color: #0066cc;
  cursor: default;
}

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

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

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

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

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

.hotnews-menu {
  display: -ms-flexbox;
  display: flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  min-width: 8rem;
  width: 8rem;
  max-width: 8rem;
  min-height: 2rem;
  height: 2rem;
  max-height: 2rem;
  background-color: #f5f5f5;
  border-radius: 4px;
  padding: 0.25rem;
}
.hotnews-menu_cell {
  min-width: 4rem;
  width: 4rem;
  max-width: 4rem;
  min-height: 1.5rem;
  height: 1.5rem;
  max-height: 1.5rem;
  background-color: #f5f5f5;
  border-radius: 2px;
  font-size: 0.75rem;
  line-height: 1.5625rem;
  color: #646566;
  text-align: center;
}
.hotnews-menu_cell.active {
  background-color: #0066cc;
  color: #fff;
}
.hotnews-list {
  overflow: auto;
  display: flex;
}
.hotnews-list_cell {
  min-width: 10.25rem;
  width: 10.25rem;
  max-width: 10.25rem;
  margin-right: 12px;
}
.hotnews-list_cell:last-child {
  margin-right: 16px;
}
.hotnews-list_cell .logo {
  min-height: 100px;
  height: 100px;
  max-height: 100px;
  border-radius: 4px;
}
.hotnews-list_cell .title {
  min-height: 2.5rem;
  height: 2.5rem;
  max-height: 2.5rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  color: #373739;
  font-weight: 500;
  overflow: hidden;
  text-overflow: ellipsis;
}

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

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

.hottag {
  overflow: scroll;
  display: flex;
}
.hottag-cell {
  min-height: 1.75rem;
  height: 1.75rem;
  max-height: 1.75rem;
  padding: 0 10px 0 10px;
  background-color: #F5F5F5;
  border-radius: 2px;
  font-size: 0.75rem;
  line-height: 28px;
  text-align: center;
  color: #373739;
  margin-right: 10px;
  white-space: nowrap;
}
.hottag-cell:last-child {
  margin-right: 16px;
}

/*# sourceMappingURL=style.css.map */
