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

html {
  font-size: 16px;
  font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Ubuntu, Helvetica Neue, Helvetica, Arial, PingFang SC, Hiragino Sans GB, Microsoft YaHei UI, Microsoft YaHei, Source Han Sans CN, sans-serif;
}

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

ol,
ul {
  list-style: none;
}

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

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

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

.coltitle, .header-mobile {
  display: -moz-box;
  display: -webkit-box;
  display: box;
  display: flexbox;
  display: flex;
}

.hide {
  display: none !important;
}

.f-l {
  float: left;
}

.f-r {
  float: right;
}

.clear {
  clear: both;
}

.over-hide {
  overflow: hidden;
}

.btn {
  cursor: pointer;
}

.d-block {
  display: block !important;
}

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

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

@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.rotation {
  transform: rotate(360deg);
  animation: rotation 1.5s linear infinite;
}

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

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

.vertical {
  display: -moz-box !important;
  display: -webkit-box !important;
  display: box !important;
  display: flexbox !important;
  display: flex !important;
  flex-direction: column;
}
.vertical > .fill {
  width: auto;
  height: 0;
}

.horizontal {
  display: -moz-box !important;
  display: -webkit-box !important;
  display: box !important;
  display: flexbox !important;
  display: flex !important;
  flex-direction: row;
}
.horizontal > .fill {
  width: 0;
}

.wrap {
  flex-wrap: wrap;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.l-80 {
  left: 80px !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 */
/* 字体 */
.fs-12 {
  font-size: 12px !important;
}

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

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

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

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

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

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

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

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

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

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

/* base/_normalize.scss */
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;
  fill: currentColor;
  overflow: hidden;
}

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

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

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

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

.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.6666666667%;
  width: 16.6666666667%;
  max-width: 16.6666666667%;
}

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

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

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

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

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

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

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

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

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

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

.box-item {
  background-color: white;
  border-radius: 8px;
  overflow: hidden;
}

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

.upline {
  border-top: 1px solid #EDEDF0;
}

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

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

.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: 5px;
  width: 5px;
  max-width: 5px;
  min-height: 5px;
  height: 5px;
  max-height: 5px;
  border-radius: 50%;
  background-color: #C4C8CC;
}

/* layout/_header.scss */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 70px;
  max-height: 70px;
  z-index: 1000;
  background-color: white;
  box-shadow: 0 3px 15px 0px rgba(0, 10, 31, 0.05);
}
.header > .content {
  height: 100%;
}
.header-logo {
  max-height: 40px;
  width: auto;
  height: auto;
}
.header .header-nav {
  margin-left: 90px;
}
.header .header-nav_cell {
  font-size: 16px;
  color: #282D33;
  padding: 0 20px;
  line-height: 67px;
  position: relative;
  margin-right: 12px;
}
.header .header-nav_cell a {
  display: inline-block;
  font-weight: 600;
  line-height: 67px;
}
.header .header-nav_cell a:hover {
  color: #0157FF;
}
.header .header-nav_cell.selected a {
  color: #0157FF;
  border-bottom: 3px solid #0157FF;
}
.header-search {
  position: relative;
  width: 160px;
  height: 34px;
  float: right;
  border-radius: 20px;
  border: 1px solid #E6E7EB;
}
.header-search > input {
  height: 100%;
  width: 100px;
}
.header-search > input::-moz-placeholder {
  color: #ccc;
}
.header-search > input::placeholder {
  color: #ccc;
}
.header-search > .iconfont, .page .pagination .header-search > .prev:before, .page .pagination .header-search > .next:before {
  position: absolute;
  font-size: 20px;
  right: 12px;
  top: 50%;
  color: #CCCCCC;
  transform: translateY(-50%);
}
.header-mobile {
  align-items: center;
  float: right;
  color: #646566;
}
.header-mobile > .iconfont, .page .pagination .header-mobile > .prev:before, .page .pagination .header-mobile > .next:before {
  font-size: 24px;
}
.header-mobile_text {
  width: 42px;
  font-size: 12px;
  line-height: 19px;
}
.header-mobile:hover {
  color: #0157FF;
}

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

/* layout/_footer.scss */
.footer {
  background: #F9FBFF;
  box-sizing: content-box;
  overflow: hidden;
}
.footer-copyright {
  width: 1200px;
  margin: 26px auto;
  font-size: 12px;
  color: #797C80;
  line-height: 22px;
  text-align: center;
}
.footer-copyright a:hover {
  color: #282D33;
}

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

/* layout/_subtitle.scss  副标题、栏目标题样式 */
.icon-type {
  float: left;
  min-width: 32px;
  width: 32px;
  max-width: 32px;
  min-height: 32px;
  height: 32px;
  max-height: 32px;
  background: url(../images/icon.png) no-repeat;
  background-size: auto 100px;
}
.icon-type.doc {
  background-position: -1072px 0;
}
.icon-type.text {
  background-position: -1104px 0;
}
.icon-type.gather {
  background-position: -1040px 0;
}
.icon-type.hot {
  background-position: -1136px 0;
}

.subtitle {
  min-height: 32px;
  height: 32px;
  max-height: 32px;
}
.subtitle .title {
  font-size: 20px;
  font-weight: bold;
  color: #282D33;
  line-height: 32px;
  padding-left: 10px;
}
.subtitle .more {
  color: #ABAFB3;
  font-size: 14px;
  align-items: center;
  min-height: 20px;
  height: 20px;
  max-height: 20px;
  display: flex;
}
.subtitle .more .iconfont, .subtitle .more .page .pagination .prev:before, .page .pagination .subtitle .more .prev:before, .subtitle .more .page .pagination .next:before, .page .pagination .subtitle .more .next:before {
  font-size: 14px;
}
.subtitle .more:hover {
  color: #0157FF;
}

.coltitle {
  align-items: center;
  min-height: 40px;
  height: 40px;
  max-height: 40px;
}
.coltitle .svg {
  font-size: 40px;
  width: 40px;
  line-height: 40px;
}
.coltitle .title {
  font-size: 24px;
  font-weight: bold;
  color: #282D33;
  line-height: 40px;
  margin-left: 8px;
}
.coltitle .more {
  color: #ABAFB3;
  font-size: 14px;
  align-items: center;
  min-height: 20px;
  height: 20px;
  max-height: 20px;
  display: flex;
}
.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: 14px;
}
.coltitle .more:hover {
  color: #0157FF;
}

/* layout/_content.scss */
.content {
  width: 1200px;
  max-width: 1200px;
  margin: 0 auto;
}
.content-left {
  min-width: 840px;
  width: 840px;
  max-width: 840px;
}
.content-right {
  min-width: 300px;
  width: 300px;
  max-width: 300px;
}

.close {
  display: block;
  font-size: 32px;
  min-width: 32px;
  width: 32px;
  max-width: 32px;
  min-height: 32px;
  height: 32px;
  max-height: 32px;
  border-radius: 3px;
  color: #939699;
}
.close:hover {
  background-color: #F6F6F7;
  color: #14161A;
}

.but {
  cursor: pointer;
  width: 280px;
  height: 44px;
  border-radius: 4px;
  margin: auto;
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  line-height: 44px;
}
.but-primary {
  background: #0157FF;
  color: #fff;
  box-shadow: 0px 6px 14px rgba(22, 119, 255, 0.25);
}
.but-primary:hover {
  background-color: #2770FF;
}
.but-warn {
  background-color: #ffffff;
  border: 1px solid #FFB102;
  color: #FFB102;
  cursor: default;
}
.but-error {
  background-color: #ffffff;
  border: 1px solid #FE3F3F;
  color: #FE3F3F;
}
.but-error:hover {
  background-color: rgba(254, 63, 63, 0.06);
}

.ui-dialog {
  position: fixed;
  z-index: 2000;
}

.dialogbox {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 99999;
}

.dialog-item {
  position: relative;
  min-width: 500px;
  width: 500px;
  max-width: 500px;
  padding: 36px 24px;
  background-color: #ffffff;
  border-radius: 12px;
  text-align: center;
}
.dialog-item .title {
  font-size: 20px;
  line-height: 32px;
  color: #282D33;
}
.dialog-item .icon-warn {
  min-width: 48px;
  width: 48px;
  max-width: 48px;
  min-height: 48px;
  height: 48px;
  max-height: 48px;
  margin: 0 auto;
}
.dialog-item .icon-warn .icon {
  font-size: 48px;
}
.dialog-item .text {
  font-size: 16px;
  line-height: 24px;
  color: #282D33;
}
.dialog-item .close {
  position: absolute;
  top: 12px;
  right: 12px;
}

.ui-toast {
  position: fixed;
  top: 1rem !important;
  left: 0;
  right: 0;
  text-align: center;
  flex-direction: column;
  z-index: 10000;
  pointer-events: none;
}

.category-cell {
  min-width: 120px;
  width: 120px;
  max-width: 120px;
  min-height: 38px;
  height: 38px;
  max-height: 38px;
  border-radius: 2px;
  line-height: 38px;
  text-align: center;
  background-color: #F6F6F7;
  color: #282D33;
  font-size: 16px;
  margin-right: 12px;
  margin-bottom: 12px;
}
.category-cell.active {
  background-color: #0157FF;
  color: #ffffff;
}

.num {
  min-width: 24px;
  width: 24px;
  max-width: 24px;
  min-height: 24px;
  height: 24px;
  max-height: 24px;
  position: relative;
  color: #ffffff;
  text-align: center;
  line-height: 24px;
  font-size: 14px;
}
.num::after {
  position: absolute;
  min-width: 24px;
  width: 24px;
  max-width: 24px;
  min-height: 24px;
  height: 24px;
  max-height: 24px;
  font-family: "iconfont" !important;
  content: "\e702";
  font-size: 24px;
  color: #B8C1CC;
  left: 0;
  top: 0;
  z-index: -1;
}

li:nth-child(1) .num::after {
  color: #F42F2C;
}
li:nth-child(2) .num::after {
  color: #FF7700;
}
li:nth-child(3) .num::after {
  color: #F5D018;
}

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

.tag-list {
  margin-right: -20px;
}
.tag-list .item {
  display: inline-block;
  max-width: 180px;
  margin-right: 10px;
  font-size: 14px;
  line-height: 32px;
  padding: 0 12px;
  background: #F6F6F7;
  transition: 0.3s;
  color: #282D33;
  border-radius: 2px;
  overflow: hidden;
  white-space: nowrap;
  margin-bottom: 10px;
}
.tag-list .item:hover {
  background-color: #E3E3E6;
}

.text-15 {
  font-size: 15px;
  line-height: 22px;
  color: #14161A;
}

.text-14 {
  font-size: 14px;
  line-height: 20px;
  color: #14161A;
}

.catpos {
  width: 1200px;
  margin: 20px auto 0;
  font-size: 14px;
  color: #939699;
  line-height: 24px;
}
.catpos .text {
  color: #626466;
}
.catpos .iconfont, .catpos .page .pagination .prev:before, .page .pagination .catpos .prev:before, .catpos .page .pagination .next:before, .page .pagination .catpos .next:before {
  font-size: 12px;
}

.article-title {
  font-size: 30px;
  line-height: 48px;
  font-weight: 500;
  color: #303133;
}
.article-data {
  font-size: 13px;
  color: #939699;
  line-height: 16px;
}
.article-data .item {
  margin-right: 40px;
}
.article-content {
  border: 1px solid #EDEDF0;
  padding: 24px;
  min-width: 100%;
  width: 100%;
  max-width: 100%;
  border-radius: 8px;
  font-size: 15px;
  color: #282D33;
  line-height: 1.8;
  text-align: justify;
  min-height: 40px;
}
.article-content h1, .article-content h2, .article-content h3, .article-content h4, .article-content h5, .article-content h6 {
  border-left: 3px solid #0157FF;
  padding: 8px 14px;
  font-size: 20px;
  font-weight: bold;
  margin: 20px 0 10px;
  line-height: 1.5;
  background-color: rgba(1, 87, 255, 0.04);
}
.article-content p {
  margin: 12px 0;
  color: #282D33;
}
.article-content a {
  color: #0157FF;
}
.article-content .video, .article-content iframe {
  margin: 20px auto !important;
  max-width: 94%;
}
.article-content .image > img, .article-content img {
  cursor: pointer;
  width: auto;
  height: auto;
  max-width: 88%;
  margin-left: auto;
  margin-right: auto;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  display: flex;
}
.article-button {
  min-width: calc(50% - 10px);
  width: calc(50% - 10px);
  max-width: calc(50% - 10px);
  line-height: 24px;
  background: #F8F8FA;
  border-radius: 2px;
  text-align: center;
  display: block;
  color: #282D33 !important;
}
.article-button:hover {
  color: #0157FF !important;
}
.article-button > span {
  color: #797C80;
  display: inline;
}
.article-download {
  border: 1px solid #E3E3E6;
  padding: 16px;
  background-color: #fefefe;
}
.article-download .soft-title {
  width: 100%;
  font-size: 20px;
  line-height: 36px;
  max-height: 36px;
  overflow: hidden;
}
.article-download .soft-type {
  font-size: 14px;
  color: #626466;
  line-height: 24px;
}
.article-download .soft-type p {
  min-width: calc((100% - 100px) / 3);
  width: calc((100% - 100px) / 3);
  max-width: calc((100% - 100px) / 3);
}
.article-download .soft-type p:not(:last-child) {
  margin-right: 12px;
}
.article-download .soft-button {
  display: flex;
  justify-content: center;
  align-items: center;
}
.article-download .soft-button a {
  margin: auto;
  display: block;
  text-align: center;
  min-width: 120px;
  width: 120px;
  max-width: 120px;
  min-height: 40px;
  height: 40px;
  max-height: 40px;
  line-height: 40px;
  border-radius: 3px;
  background-color: #0157FF;
  color: #fff;
}
.article-notes {
  font-size: 13px;
  line-height: 28px;
  color: #888;
}
.article-notes .item::before {
  content: "◇";
  font-size: 14px;
  font-family: "Microsoft YaHei";
  font-weight: 400;
  margin-right: 10px;
}

.empty {
  text-align: center;
  min-height: calc(100vh - 70px - 148px);
}
.empty .svg {
  margin-top: 80px;
  font-size: 240px;
  min-width: 240px;
  width: 240px;
  max-width: 240px;
  line-height: 240px;
}
.empty-title {
  text-align: center;
  font-size: 20px;
  font-weight: 500;
  color: #282D33;
  line-height: 32px;
}
.empty-tip {
  margin-top: 6px;
  font-size: 14px;
  color: #797C80;
  line-height: 20px;
}
.empty-button {
  margin-top: 12px;
  font-size: 14px;
  display: inline-block;
  color: #0157FF;
  line-height: 32px;
  padding: 0 12px;
}

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

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

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

/* layout/_pagination.scss */
/* 分页 */
.page {
  text-align: center;
}
.page .pagination {
  display: -moz-inline-box;
  display: -webkit-inline-box;
  display: inline-box;
  display: inline-flexbox;
  display: inline-flex;
  padding-left: 0;
  border-radius: 2px;
}
.page .pagination .next {
  padding: 0;
  width: 34px;
  min-width: 34px;
}
.page .pagination .next:before {
  content: "\e6fe";
  font-size: 16px;
}
.page .pagination .prev {
  padding: 0;
  width: 34px;
  min-width: 34px;
}
.page .pagination .prev:before {
  content: "\e700";
  font-size: 16px;
}
.page .pagination > li > a {
  float: left;
  min-width: 34px;
  min-height: 34px;
  height: 34px;
  max-height: 34px;
  line-height: 34px;
  background: #F6F6F7;
  border-radius: 2px;
  font-size: 14px;
  color: #323233;
  text-align: center;
  margin-left: 8px;
  padding: 0 10px;
}
.page .pagination > li:last-child > a {
  font-size: 12px;
}
.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: #0157FF;
  background-color: #EDEDF0;
  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: #0157FF;
  border-color: #0157FF;
  cursor: default;
}

/* layout/_index.scss */
.index-tool {
  height: 600px;
  max-width: 1200px;
  margin: 0 auto;
}
.index-tool-bg {
  width: 100%;
  background-color: #F9FBFF;
  background-image: url(../images/convert_bg.svg);
  background-repeat: no-repeat;
  background-size: auto 100%;
  background-position: 50% -40px;
}
.index-tool h2 {
  font-size: 32px;
  line-height: 46px;
  padding-top: 56px;
  width: 100%;
  text-align: center;
  box-sizing: content-box;
  font-weight: 700;
}
.index-tool #drop {
  min-width: 840px;
  width: 840px;
  max-width: 840px;
  min-height: 300px;
  height: 300px;
  max-height: 300px;
  margin: 32px auto 0;
}
.index-tool .convert-box {
  min-width: 840px;
  width: 840px;
  max-width: 840px;
  min-height: 300px;
  height: 300px;
  max-height: 300px;
  margin: 32px auto 0;
  align-items: center;
  justify-content: center;
  display: flex;
}
.index-tool .convert-box.success {
  position: relative;
}
.index-tool .convert-box.success .file-title {
  max-width: 3320px;
  width: auto;
  min-width: 160px;
}
.index-tool .convert-box .but {
  display: block;
}
.index-tool .convert-box .but .iconfont, .index-tool .convert-box .but .page .pagination .next:before, .page .pagination .index-tool .convert-box .but .next:before, .index-tool .convert-box .but .page .pagination .prev:before, .page .pagination .index-tool .convert-box .but .prev:before {
  font-size: 20px;
}
.index-tool .convert-box .but-result {
  margin-top: 40px;
}
.index-tool .convert-box .text {
  font-size: 14px;
  color: #797C80;
  text-align: center;
  width: 100%;
  line-height: 20px;
  margin-top: 22px;
}
.index-tool .convert-box.draging {
  border: 2px dashed #5A92FF;
  background-color: #F2F6FF;
}
.index-tool .tool-list {
  background-color: #fff;
  margin-top: 80px;
  min-width: 1200px;
  width: 1200px;
  max-width: 1200px;
  position: absolute;
  left: 50%;
  z-index: 2;
  transform: translateX(-50%);
  box-shadow: 0 10px 26px 0px rgba(113, 142, 204, 0.07);
}
.index-tool .tool-item {
  display: block;
  height: 180px;
  border-left: 1px solid #F6F6F7;
  border-top: 1px solid #F6F6F7;
}
.index-tool .tool-item:hover {
  background-color: #F9FBFF;
}
.index-tool .tool-item:hover .img-wto {
  transition: 0.2s all;
  transform: scale(1.2);
}
.index-tool .tool-item:nth-child(1), .index-tool .tool-item:nth-child(2), .index-tool .tool-item:nth-child(3), .index-tool .tool-item:nth-child(4), .index-tool .tool-item:nth-child(5) {
  border-top: none;
}
.index-tool .tool-item:nth-child(1), .index-tool .tool-item:nth-child(6), .index-tool .tool-item:nth-child(11) {
  border-left: none;
}
.index-tool .tool-item .text {
  font-size: 14px;
  line-height: 20px;
  color: #282D33;
  margin-top: 14px;
}
.index-step {
  margin: 0 auto;
}
.index-step .step-header {
  font-size: 24px;
  line-height: 40px;
  font-weight: 300;
}
.index-step .step-item {
  position: relative;
  z-index: 2;
  padding-left: 58px;
}
.index-step .step-num {
  position: absolute;
  min-width: 52px;
  width: 52px;
  max-width: 52px;
  min-height: 52px;
  height: 52px;
  max-height: 52px;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  line-height: 24px;
  color: #E3E3E6;
  line-height: 52px;
  font-size: 56px;
  text-align: center;
}
.index-step .step-title {
  font-size: 14px;
  line-height: 1.5;
}
.index-step .step-text {
  font-size: 13px;
  line-height: 20px;
  color: #797C80;
}
.index-function .function-header {
  font-size: 24px;
  line-height: 1.5;
  text-align: center;
}
.index-function .function-icon {
  min-width: 88px;
  width: 88px;
  max-width: 88px;
  min-height: 88px;
  height: 88px;
  max-height: 88px;
  background: url(../images/icon_function.png) no-repeat;
  background-size: auto 88px;
}
.index-function .function-icon.free {
  background-position: 0 0;
}
.index-function .function-icon.convert {
  background-position: -88px 0;
}
.index-function .function-icon.speed {
  background-position: -176px 0;
}
.index-function .function-icon.simple {
  background-position: -264px 0;
}
.index-function .function-title {
  font-size: 18px;
  color: #14161A;
  margin: 24px auto 12px;
}
.index-function .function-text {
  font-size: 12px;
  line-height: 18px;
  text-align: center;
  color: #939699;
}
.index-qa {
  background: #F6F6F7;
}
.index-qa .qa-header {
  font-size: 24px;
  line-height: 1.5;
  text-align: center;
}
.index-qa .qa-item {
  background: white;
  margin-top: 16px;
  padding: 12px 24px;
}
.index-qa .qa-question {
  font-size: 15px;
  line-height: 30px;
  color: #282D33;
  cursor: pointer;
}
.index-qa .qa-question .iconfont, .index-qa .qa-question .page .pagination .next:before, .page .pagination .index-qa .qa-question .next:before, .index-qa .qa-question .page .pagination .prev:before, .page .pagination .index-qa .qa-question .prev:before {
  font-size: 12px;
  color: #939699;
}
.index-qa .qa-question > * {
  display: block;
}
.index-qa .qa-answer {
  font-size: 13px;
  margin-top: 6px;
  line-height: 20px;
  color: #797C80;
}
.index-link_text {
  font-size: 16px;
  color: #626466;
  line-height: 26px;
  margin-top: 12px;
}

/* layout/_template.scss */
.templist .list-item > a {
  display: block;
}
.templist .list-item > a:hover .list-img-cover {
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.08);
}
.templist .list-item > a:hover .list-img-cover .list-but {
  opacity: 1;
}
.templist .list-img {
  min-width: 100%;
  width: 100%;
  max-width: 100%;
  min-height: 100%;
  height: 100%;
  max-height: 100%;
  border-radius: 3px;
}
.templist .list-img-cover {
  position: relative;
  min-width: 100%;
  width: 100%;
  max-width: 100%;
  min-height: 286px;
  height: 286px;
  max-height: 286px;
  border-radius: 4px;
  padding: 9px;
  border: 1px solid #EDEDF0;
}
.templist .list-but {
  opacity: 0;
  min-width: 100%;
  width: 100%;
  max-width: 100%;
  min-height: 44px;
  height: 44px;
  max-height: 44px;
  text-align: center;
  line-height: 44px;
  left: 0;
  bottom: 0;
  position: absolute;
  background: #F6F6F7;
  color: #0157FF;
  transition: 0.3s all;
}
.templist-rank .img {
  min-width: 64px;
  width: 64px;
  max-width: 64px;
  min-height: 84px;
  height: 84px;
  max-height: 84px;
  border-radius: 4px;
  border: 1px solid #EDEDF0;
}
.templist-rank .title {
  font-size: 15px;
  line-height: 22px;
  color: #282D33;
}
.templist-rank .data {
  font-size: 12px;
  line-height: 18px;
  color: #939699;
}
.templist-small .list-item {
  display: block;
}
.templist-small .list-img {
  min-width: 100%;
  width: 100%;
  max-width: 100%;
  height: 0;
  padding-bottom: 132%;
  border: 1px solid #EDEDF0;
  border-radius: 3px;
}

.template-preview img {
  width: auto;
  height: auto;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 10px;
}
.template-info .title {
  font-size: 24px;
  line-height: 36px;
}
.template-info .data {
  font-size: 13px;
  line-height: 28px;
  color: #797C80;
}
.template-info .but {
  cursor: hand;
  min-width: 100%;
  width: 100%;
  max-width: 100%;
}
.template-info .but .iconfont, .template-info .but .page .pagination .next:before, .page .pagination .template-info .but .next:before, .template-info .but .page .pagination .prev:before, .page .pagination .template-info .but .prev:before {
  font-size: 20px;
}

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

/* layout/_special.scss */
.hejilist .list-item > a {
  display: block;
}
.hejilist .list-img {
  min-width: 100%;
  width: 100%;
  max-width: 100%;
  min-height: 140px;
  height: 140px;
  max-height: 140px;
  border-radius: 4px;
}
.hejilist-small .list-item {
  display: block;
}
.hejilist-small .list-img {
  min-width: 100%;
  width: 100%;
  max-width: 100%;
  min-height: 100%;
  height: 100%;
  max-height: 100%;
  height: 0;
  padding-bottom: 63%;
  border-radius: 4px;
}

.special-show .show-img {
  min-width: 100%;
  width: 100%;
  max-width: 100%;
  min-height: 100%;
  height: 100%;
  max-height: 100%;
}
.special-show .show-img-cover {
  min-width: 434px;
  width: 434px;
  max-width: 434px;
  min-height: 280px;
  height: 280px;
  max-height: 280px;
  border: 1px solid #EDEDF0;
  border-radius: 8px;
  padding: 16px;
}
.special-show .show-title {
  font-size: 24px;
  line-height: 48px;
  color: #282D33;
}
.special-show .show-info {
  font-size: 14px;
  line-height: 26px;
  color: #626466;
}
.special-show .show-data {
  min-height: 36px;
  height: 36px;
  max-height: 36px;
  background: #FAFAFA;
  font-size: 13px;
  color: #939699;
}
.special-show .jiqiao-list {
  margin-right: -20px;
}

/* layout/_skill.scss */
.jiqiao-main .content-left {
  min-width: 800px;
  width: 800px;
  max-width: 800px;
}
.jiqiao-main .content-right {
  min-width: 340px;
  width: 340px;
  max-width: 340px;
}
.jiqiao-list .list-item {
  display: block;
  margin-left: -20px;
  cursor: pointer;
}
.jiqiao-list .list-item:hover {
  background: linear-gradient(90deg, rgba(1, 87, 255, 0.01) 0%, rgba(1, 87, 255, 0.06) 50%, rgba(1, 87, 255, 0.01) 100%);
}
.jiqiao-list .list-img {
  min-width: 218px;
  width: 218px;
  max-width: 218px;
  min-height: 134px;
  height: 134px;
  max-height: 134px;
  border-radius: 6px;
  position: relative;
}
.jiqiao-list .list-img:hover .list-paly {
  background-color: rgba(0, 0, 0, 0.4);
}
.jiqiao-list .list-paly {
  position: absolute;
  display: block;
  min-width: 44px;
  width: 44px;
  max-width: 44px;
  min-height: 44px;
  height: 44px;
  max-height: 44px;
  background-color: rgba(0, 0, 0, 0.25);
  border-radius: 50%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  font-size: 24px;
  line-height: 44px;
}
.jiqiao-list .list-title {
  font-size: 20px;
  line-height: 32px;
  color: #282D33;
}
.jiqiao-list .list-desc {
  font-size: 14px;
  line-height: 26px;
  color: #626466;
}
.jiqiao-list .list-data {
  font-size: 12px;
  line-height: 18px;
  color: #939699;
}
.jiqiao-textlist .list-item > a {
  display: block;
  min-height: 56px;
  height: 56px;
  max-height: 56px;
  border-bottom: 1px solid #EDEDF0;
}
.jiqiao-textlist .list-item > a:hover {
  background: linear-gradient(90deg, #f9fbff 70%, rgba(249, 251, 255, 0.1) 100%);
}
.jiqiao-textlist .list-item .iconfont, .jiqiao-textlist .list-item .page .pagination .next:before, .page .pagination .jiqiao-textlist .list-item .next:before, .jiqiao-textlist .list-item .page .pagination .prev:before, .page .pagination .jiqiao-textlist .list-item .prev:before {
  font-size: 20px;
  line-height: 20px;
  color: #FF9001;
}
.jiqiao-textlist .list-title {
  font-size: 15px;
  color: #282D33;
  margin: 0 20px 0 12px;
}
.jiqiao-textlist .list-time {
  font-size: 13px;
  color: #939699;
  white-space: nowrap;
}
.jiqiao-sidelist .title {
  display: block;
  line-height: 44px;
  font-size: 16px;
  color: #282D33;
}
.jiqiao-sidelist .title:hover {
  color: #0157FF;
}
.jiqiao-sidelist .time {
  min-width: 48px;
  width: 48px;
  max-width: 48px;
  text-align: right;
  font-size: 12px;
  color: #939699;
}

/* layout/_convert.scss */
.img-wto {
  min-width: 80px;
  width: 80px;
  max-width: 80px;
  min-height: 80px;
  height: 80px;
  max-height: 80px;
  background: url(../images/icon.png) no-repeat;
  background-size: auto 100px;
}
.img-wto.docx {
  background-position: 0 0;
}
.img-wto.xls {
  background-position: -80px 0;
}
.img-wto.txt {
  background-position: -160px 0;
}
.img-wto.epub {
  background-position: -240px 0;
}
.img-wto.fb2 {
  background-position: -320px 0;
}
.img-wto.html {
  background-position: -400px 0;
}
.img-wto.jpg, .img-wto.jpge, .img-wto.png {
  background-position: -480px 0;
}
.img-wto.mobi {
  background-position: -560px 0;
}
.img-wto.odt {
  background-position: -640px 0;
}
.img-wto.pdf {
  background-position: -720px 0;
}
.img-wto.ppt {
  background-position: -800px 0;
}
.img-wto.rtf {
  background-position: -880px 0;
}
.img-wto.xlsx {
  background-position: -960px 0;
}

.convert-bg {
  width: 100%;
  background-color: #F9FBFF;
  background-image: url(../images/convert_bg.svg);
  background-repeat: no-repeat;
  background-size: auto 100%;
  background-position: 50% -40px;
  overflow: hidden;
}
.convert-menu {
  background-color: #fff;
  border-radius: 4px;
  min-width: 360px;
  width: 360px;
  max-width: 360px;
  padding: 24px;
}
.convert-menu .menu-title {
  font-size: 20px;
  line-height: 32px;
}
.convert-menu .menu-list {
  display: -moz-grid;
  display: grid;
  display: -moz-grid;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  justify-content: space-between;
  -moz-column-gap: 12px;
       column-gap: 12px;
  row-gap: 14px;
}
.convert-menu .menu-item > a {
  display: block;
  min-width: 100%;
  width: 100%;
  max-width: 100%;
  min-height: 38px;
  height: 38px;
  max-height: 38px;
  border-radius: 3px;
  background-color: #F9FBFF;
  border: 1px solid #EDEDF0;
  cursor: pointer;
}
.convert-menu .menu-item.active a {
  background-color: rgba(1, 87, 255, 0.12);
  border: 1px solid #0157FF;
}
.convert-menu .menu-item.active .text {
  font-size: 14px;
  color: #14161A;
}
.convert-menu .menu-item .img-wto {
  min-width: 20px;
  width: 20px;
  max-width: 20px;
  min-height: 20px;
  height: 20px;
  max-height: 20px;
  background: url(../images/icon.png) no-repeat;
  background-size: auto 100px;
}
.convert-menu .menu-item .img-wto.docx {
  background-position: 0 -80px;
}
.convert-menu .menu-item .img-wto.xls {
  background-position: -20px -80px;
}
.convert-menu .menu-item .img-wto.xlsx {
  background-position: -20px -80px;
}
.convert-menu .menu-item .img-wto.txt {
  background-position: -40px -80px;
}
.convert-menu .menu-item .img-wto.rtf {
  background-position: -60px -80px;
}
.convert-menu .menu-item .img-wto.ppt {
  background-position: -80px -80px;
}
.convert-menu .menu-item .img-wto.pdf {
  background-position: -100px -80px;
}
.convert-menu .menu-item .img-wto.odt {
  background-position: -120px -80px;
}
.convert-menu .menu-item .img-wto.mobi {
  background-position: -140px -80px;
}
.convert-menu .menu-item .img-wto.jpg, .convert-menu .menu-item .img-wto.jpge, .convert-menu .menu-item .img-wto.png {
  background-position: -160px -80px;
}
.convert-menu .menu-item .img-wto.epub {
  background-position: -180px -80px;
}
.convert-menu .menu-item .img-wto.fb2 {
  background-position: -200px -80px;
}
.convert-menu .menu-item .img-wto.html {
  background-position: -220px -80px;
}
.convert-menu .menu-item .text {
  font-size: 14px;
  color: #626466;
}
.convert-tool {
  min-width: 800px;
  width: 800px;
  max-width: 800px;
  position: relative;
}
.convert-tool .tip-success {
  min-width: 80px;
  width: 80px;
  max-width: 80px;
  min-height: 80px;
  height: 80px;
  max-height: 80px;
}
.convert-tool .tip-success .icon {
  font-size: 80px;
}
.convert-tool .title {
  font-size: 32px;
  line-height: 46px;
  color: #14161A;
}
.convert-tool #drop {
  position: absolute;
  bottom: 0;
  width: 100%;
}
.convert-box {
  min-width: 100%;
  width: 100%;
  max-width: 100%;
  min-height: 316px;
  height: 316px;
  max-height: 316px;
  border-radius: 8px;
  border: 2px dashed #D5DBE0;
  background-color: #fff;
}
.convert-box .but-center {
  display: block;
  margin-top: 112px;
}
.convert-box .but-center .iconfont, .convert-box .but-center .page .pagination .next:before, .page .pagination .convert-box .but-center .next:before, .convert-box .but-center .page .pagination .prev:before, .page .pagination .convert-box .but-center .prev:before {
  font-size: 20px;
}
.convert-box .but-edge {
  min-width: 240px;
  width: 240px;
  max-width: 240px;
}
.convert-box .but-edge .iconfont, .convert-box .but-edge .page .pagination .next:before, .page .pagination .convert-box .but-edge .next:before, .convert-box .but-edge .page .pagination .prev:before, .page .pagination .convert-box .but-edge .prev:before {
  font-size: 20px;
}
.convert-box .text {
  font-size: 14px;
  color: #797C80;
  text-align: center;
  width: 100%;
  line-height: 20px;
  margin-top: 22px;
}
.convert-box .file {
  max-width: 400px;
  margin: 0 auto;
  text-align: center;
}
.convert-box .file-convert {
  max-width: 700px;
  margin: 0 auto;
}
.convert-box .file-convert .file-title {
  width: 200px;
}
.convert-box .file-convert .file-dropdown {
  width: 200px;
}
.convert-box .file-arrow {
  color: #939699;
}
.convert-box .file-arrow > * {
  font-size: 16px;
}
.convert-box .file-arrow > *:first-child {
  color: #C4C8CC;
}
.convert-box .file-icon {
  min-width: 92px;
  width: 92px;
  max-width: 92px;
  min-height: 92px;
  height: 92px;
  max-height: 92px;
  position: relative;
}
.convert-box .file-icon::before {
  font-family: "iconfont" !important;
  position: absolute;
  left: 0;
  top: 0;
  line-height: 92px;
  content: "\e70b";
  font-size: 92px;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #939699;
}
.convert-box .file-format {
  position: absolute;
  left: 0;
  top: 34px;
  min-width: 52px;
  width: 52px;
  max-width: 52px;
  min-height: 24px;
  height: 24px;
  max-height: 24px;
  border-radius: 3px;
  background-color: #0157FF;
  color: #ffffff;
  font-size: 15px;
  line-height: 24px;
  text-align: center;
}
.convert-box .file-format.result {
  background-color: #00ECFF;
}
.convert-box .file-format.default {
  background-color: #C4C8CC;
}
.convert-box .file-title {
  font-size: 20px;
  line-height: 28px;
  color: #282D33;
}
.convert-box .file-size {
  font-size: 14px;
  line-height: 24px;
  color: #939699;
}
.convert-box .file-dropdown {
  position: relative;
}
.convert-box .file-dropdown:hover .show {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}
.convert-box .file-dropdown .btn-caret {
  cursor: pointer;
  border: 1px solid #C4C8CC;
  border-radius: 4px;
  height: 32px;
  line-height: 32px;
}
.convert-box .file-dropdown .btn-caret .iconfont, .convert-box .file-dropdown .btn-caret .page .pagination .next:before, .page .pagination .convert-box .file-dropdown .btn-caret .next:before, .convert-box .file-dropdown .btn-caret .page .pagination .prev:before, .page .pagination .convert-box .file-dropdown .btn-caret .prev:before {
  display: block;
  height: 100%;
  width: 28px;
}
.convert-box .file-dropdown .btn-text {
  min-width: 60px !important;
  text-align: center;
}
.convert-box .file-dropdown-menu {
  position: absolute;
  right: 0;
  top: 40px;
  z-index: 999;
  border-radius: 6px;
  background-color: white;
  min-width: 416px;
  width: 416px;
  max-width: 416px;
  padding: 16px 0 6px 16px;
  box-shadow: 0 2px 20px 0px rgba(0, 10, 31, 0.05);
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s;
}
.convert-box .file-dropdown-menu .item {
  cursor: pointer;
  min-width: 88px;
  width: 88px;
  max-width: 88px;
  min-height: 32px;
  height: 32px;
  max-height: 32px;
  background-color: #F6F6F7;
  color: #282D33;
  display: block;
  line-height: 32px;
  text-align: center;
  margin: 0 10px 10px 0;
  border-radius: 3px;
  font-size: 14px;
}
.convert-box .file-dropdown-menu .item:hover {
  background-color: #EDEDF0;
}
.convert-box .close {
  position: absolute;
  top: 14px;
  right: 18px;
  cursor: pointer;
}
.convert-box.draging {
  border: 2px dashed #5A92FF;
  background-color: #F2F6FF;
}
.convert-box.upload {
  border: 2px dashed #5A92FF;
  position: relative;
}
.convert-how {
  width: 920px;
  margin: 0 auto;
  padding: 50px 0 68px;
}
.convert-how .how-title {
  font-size: 24px;
  line-height: 48px;
  color: #14161A;
}
.convert-how .how-list {
  width: 100%;
}
.convert-how .how-num {
  min-width: 20px;
  width: 20px;
  max-width: 20px;
  min-height: 20px;
  height: 20px;
  max-height: 20px;
  border-radius: 50%;
  background: #0157FF;
  color: #fff;
  font-size: 15px;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 20px;
  text-align: center;
  margin-right: 8px;
}
.convert-how .how-text {
  font-size: 15px;
  line-height: 20px;
  color: #626466;
}/*# sourceMappingURL=style.css.map */