@charset "UTF-8";

/* ===========================================
   CSS 变量定义
   =========================================== */
:root {
  --color-primary: #172de7;
}

/* ===========================================
   基础元素重置
   =========================================== */
*,
*::after,
*::before {
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

html,
body {
  padding: 0;
  margin: 0;
  text-size-adjust: 100%;
}

/* 滚动条样式 */
::-webkit-scrollbar {
  appearance: none;
  width: 3px;
  height: 6px;
}
::-webkit-scrollbar-track {
  background: #f5f5f5;
}
::-webkit-scrollbar-thumb {
  background: var(--color-primary);
}
::-webkit-scrollbar-thumb:active {
  background: #666;
}

/* 图片重置 */
img {
  border: 0;
}

/* 标题重置 */
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
  font-weight: normal;
}

/* 段落 / 强调元素 */
p {
  margin: 0;
  padding: 0;
}
b,
strong {
  font-weight: bolder;
}

/* 链接样式 */
a {
  background-color: transparent;
  text-decoration: none;
  outline: none;
  color: #221815;
}
a:hover,
a:focus,
a:active {
  color: #221815;
  transition: 0.3s;
}

/* 列表重置 */
ul,
ol,
li {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* 表单元素统一设置 */
input,
button,
textarea {
  outline: none;
  -webkit-appearance: none;
  font-family: inherit;
}
input {
  border: none;
}
textarea {
  font-family:
    Arial, "Open Sans", "PingFang SC", "Microsoft YaHei", "Helvetica Neue",
    "Hiragino Sans GB", "WenQuanYi Micro Hei", sans-serif;
  overflow: auto;
  resize: none;
}
button {
  cursor: pointer;
}

/* 表格重置 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* ===========================================
   全局基础样式
   =========================================== */
body {
  margin: 0 auto;
  line-height: 1.4;
  font-size: 16px;
  font-family:
    Arial, "PingFang SC", "Microsoft YaHei", "Helvetica Neue",
    "Hiragino Sans GB", "WenQuanYi Micro Hei", sans-serif;
  color: #333;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ===========================================
   工具类
   =========================================== */
.flex {
  display: flex;
  flex-wrap: wrap;
}
.position {
  position: relative;
}
.overflow {
  overflow: hidden;
}
.background {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

/* ===========================================
   通用容器
   =========================================== */
.cp-container {
  margin: 0 auto;
  width: 100%;
  padding-left: 120px;
  padding-right: 120px;
}

@media (max-width: 1440px) {
  .cp-container {
    padding-left: 60px;
    padding-right: 60px;
  }
}

@media (max-width: 960px) {
  .cp-container {
    padding-left: 30px;
    padding-right: 30px;
  }
}

@media (max-width: 768px) {
  .cp-container {
    padding-left: 15px;
    padding-right: 15px;
  }
}

.single-container {
  margin: 0 auto;
  max-width: 1440px;
  width: 100%;
  padding-left: 15px;
  padding-right: 15px;
}

/* ===========================================
   padding 工具类
   =========================================== */
.py-100 {
  padding-top: 100px;
  padding-bottom: 100px;
}

.px-100 {
  padding-left: 100px;
  padding-right: 100px;
}

.pt-100 {
  padding-top: 100px;
}

.pb-100 {
  padding-bottom: 100px;
}

.pl-120 {
  padding-left: 120px;
}

.pr-120 {
  padding-left: 120px;
}

@media (max-width: 1200px) {
  .pl-120 {
    padding-left: 60px;
  }

  .pr-120 {
    padding-left: 60px;
  }
}

@media (max-width: 960px) {
  .pl-120 {
    padding-left: 30px;
  }

  .pr-120 {
    padding-left: 30px;
  }
}

@media (max-width: 768px) {
  .py-100 {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .px-100 {
    padding-left: 50px;
    padding-right: 50px;
  }
  .pt-100 {
    padding-top: 50px;
  }
  .pb-100 {
    padding-bottom: 50px;
  }
  .pl-120 {
    padding-left: 15px;
  }

  .pr-120 {
    padding-left: 15px;
  }
}

/*  */

.breadcrumb-nav {
  padding: 25px 0px;
  border-bottom: 1px solid rgb(204, 204, 204);
}

.breadcrumb-nav ul {
  margin-left: -10px;
}

.breadcrumb-nav ul li {
  position: relative;
  z-index: 1;
  padding: 0px 15px;
}

.breadcrumb-nav ul li::before {
  position: absolute;
  top: 9px;
  left: -3px;
  content: "";
  color: rgb(102, 102, 102);
  width: 5px;
  height: 5px;
  transform: rotate(45deg);
  border-top: 1px solid rgb(102, 102, 102);
  border-right: 1px solid rgb(102, 102, 102);
}

.breadcrumb-nav ul li:first-child::before {
  display: none;
}

@media (max-width: 768px) {
  .breadcrumb-nav ul li:last-child {
    display: none;
  }
}

/* ===========================================
   Swiper 样式
   =========================================== */
.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  bottom: 20px;
}

.swiper-pagination-bullet {
  background: #b3b2b2;
  border-radius: 10px;
  transition: all 0.3s;
  opacity: 1;
}

.swiper-pagination-bullet-active {
  width: 30px;
  background: linear-gradient(to left, #1260f9, #2fdaff);
}

.swiper-button-next,
.swiper-button-prev {
  top: 50%;
  margin-top: -25px;
  width: 50px;
  height: 50px;
  border: 1px solid var(--color-primary);
  transition: 0.3s;
  border-radius: 40px;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 12px;
  color: var(--color-primary);
}
.swiper-button-next:hover,
.swiper-button-prev:hover {
  border-color: transparent;
  background-color: var(--color-primary);
}
.swiper-button-next:hover::after,
.swiper-button-prev:hover::after {
  color: #fff;
}

@media (max-width: 1200px) {
  .swiper-button-next,
  .swiper-button-prev {
    margin-top: -20px;
  }

  .swiper-button-next,
  .swiper-button-prev {
    width: 40px;
    height: 40px;
  }
}

.page-main {
  position: relative;
  z-index: 1;
  background-color: #000;
}

/*  */

.pages-wrapper.pages-wrapper-reverse {
  flex-direction: row-reverse;
}

.pages-wrapper .wrapper-left,
.pages-wrapper .wrapper-right {
  width: 50%;
}

.pages-wrapper .wrapper-left {
  padding-right: 120px;
}

.pages-wrapper .wrapper-center {
  justify-content: center;
  text-align: center;
}

.pages-wrapper .wrapper-line {
  padding-left: 50px;
  border-left: 1px solid #dedede;
}

/* pages-wrapper 响应式：平板以下堆叠为单列 */
@media (max-width: 960px) {
  .pages-wrapper {
    flex-direction: column;
    gap: 30px;
  }
  .pages-wrapper.pages-wrapper-reverse {
    flex-direction: column;
  }
  .pages-wrapper .wrapper-left,
  .pages-wrapper .wrapper-right {
    width: 100%;
  }
  .pages-wrapper .wrapper-line {
    padding-left: 0;
    border-left: none;
  }
}

@media (max-width: 768px) {
  .pages-wrapper .wrapper-left {
    padding-right: 0;
  }
}

/*  */
.pages-heading-category h4 {
  margin-bottom: 20px;
  font-size: 20px;
}

.pages-heading-title h1 {
  font-size: 48px;
  line-height: 1.2;
}

.pages-heading-title h2 {
  font-size: 36px;
}

.pages-heading-title h3 {
  font-size: 24px;
}

.pages-heading-title h4 {
  font-size: 20px;
  margin-bottom: 20px;
}

.pages-heading-title span {
  display: block;
}

.pages-heading-title.pages-heading-white {
  color: #fff;
}

.pages-heading-title p {
  margin-top: 10px;
}

/* pages-heading-title 响应式：平板以下收敛字号与右边距 */
@media (max-width: 960px) {
  .pages-heading-title {
    padding-right: 0;
  }
  .pages-heading-title h1 {
    font-size: 30px;
  }
  .pages-heading-title h2 {
    font-size: 24px;
  }
  .pages-heading-title h3 {
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  .pages-heading-title h1 {
    font-size: 26px;
  }
}

.pages-heading-content {
  height: 100%;
  flex-direction: column;
  justify-content: space-between;
}

.pages-heading-desc p {
  margin-bottom: 10px;
}

.pages-heading-link {
  margin-top: 50px;
}

/*  */

.site-banner {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.site-banner img {
  display: block;
  width: 100%;
}
/* ===========================================
   button 按钮
   =========================================== */
/* ===========================================
   site-btn 按钮
   =========================================== */
.site-btn {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  white-space: nowrap;
  cursor: pointer;
  transition: all 0.2s ease;
  background-color: transparent;
  user-select: none;
  overflow: hidden;
  padding: 0 20px;
  min-width: 60px;
  line-height: 42px;
  height: 44px;
  border-radius: 50px;
  border: none;
}

/* 悬停填充层 */
.site-btn::before {
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
  content: "";
  width: 100%;
  height: 100%;
  transition: 0.3s;
  border-radius: 50px;
}

/* 箭头 */
.site-btn-arrow {
  position: relative;
  display: block;
  margin-left: 20px;
  width: 14px;
  height: 1px;
  margin-top: -1px;
  transform: translateX(-5px);
  transition: 0.3s;
}

.site-btn-arrow::before,
.site-btn-arrow::after {
  position: absolute;
  right: 0;
  content: "";
  width: 7px;
  height: 1px;
  transform-origin: 100% 0;
  transition: 0.3s;
}

.site-btn-arrow::before {
  transform: rotate(45deg);
}
.site-btn-arrow::after {
  transform: rotate(-45deg);
}

/* ---------- 主题色按钮 ---------- */
.site-btn-primary {
  color: #fff;
}

.site-btn-primary::before {
  background: var(--color-primary);
}

.site-btn-primary .site-btn-arrow,
.site-btn-primary .site-btn-arrow::before,
.site-btn-primary .site-btn-arrow::after {
  background-color: #fff;
}

.site-btn-primary:hover {
  color: var(--color-primary);
}

@media (max-width: 768px) {
  .site-btn-primary:hover {
    color: #fff;
  }
}

@media (min-width: 768px) {
  .site-btn-primary:hover::before {
    width: 44px;
  }

  .site-btn-primary:hover .site-btn-arrow,
  .site-btn-primary:hover .site-btn-arrow::before,
  .site-btn-primary:hover .site-btn-arrow::after {
    background-color: #fff;
  }
}

/* ---------- 白色按钮 ---------- */
.site-btn-white {
  color: var(--color-primary);
}
.site-btn-white::before {
  background: #fff;
}

.site-btn-white .site-btn-arrow,
.site-btn-white .site-btn-arrow::before,
.site-btn-white .site-btn-arrow::after {
  background-color: var(--color-primary);
}

.site-btn-white:hover {
  color: #fff;
}

@media (max-width: 768px) {
  .site-btn-white:hover {
    color: var(--color-primary);
  }
}

@media (min-width: 768px) {
  .site-btn-white:hover::before {
    width: 44px;
  }
  .site-btn-white:hover .site-btn-arrow,
  .site-btn-white:hover .site-btn-arrow::before,
  .site-btn-white:hover .site-btn-arrow::after {
    background-color: var(--color-primary);
  }
}
/* ===========================================
   site-link 纯文本链接（无边框 / 无填充 / 无边距）
   =========================================== */
.site-link {
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  white-space: nowrap;
  cursor: pointer;
  color: var(--color-primary);
  background-color: transparent;
  border: none;
  padding: 0;
  user-select: none;
}

.site-link .site-btn-arrow {
  margin-left: 10px;
}

.site-link .site-btn-arrow,
.site-link .site-btn-arrow::before,
.site-link .site-btn-arrow::after {
  background-color: var(--color-primary);
}

/* hover 保持主题色 */
.site-link:hover {
  color: var(--color-primary);
}

/* 白色变体 */
.site-link-white,
.site-link-white:hover {
  color: #fff;
  border: none;
  background-color: transparent;
}

.site-link-white .site-btn-arrow,
.site-link-white .site-btn-arrow::before,
.site-link-white .site-btn-arrow::after {
  background-color: #fff;
}

@media (min-width: 768px) {
  /* 公共悬停箭头动画 */
  .site-link:hover .site-btn-arrow,
  .site-btn:hover .site-btn-arrow {
    transform: translateX(4px) rotate(-45deg);
  }
}
@media (max-width: 768px) {
  .site-link {
    font-size: 0.6rem;
  }
  .site-link .site-btn-arrow {
    margin-left: 8px;
    width: 10px;
  }

  .site-link .site-btn-arrow::before,
  .site-link .site-btn-arrow::after {
    width: 5px;
  }
}

@media (max-width: 768px) {
  .site-btn {
    line-height: 35px;
    height: 35px;
    border-radius: 40px;
    font-size: 0.6rem;
  }
  .site-btn .site-btn-arrow {
    margin-left: 3px;
    width: 10px;
    transform: translateX(0px);
  }
}

/* ===========================================
   hover-shadow 悬停光晕
   =========================================== */
.hover-shadow {
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.hover-shadow::before {
  position: absolute;
  content: "";
  border-radius: 1%;
  z-index: -1;
  background:
    radial-gradient(
      ellipse 90.7646% 70.9067% at 1.8506% 18.1%,
      rgba(0, 117, 255, 0.9) 0%,
      rgba(0, 117, 255, 0.7) 15%,
      rgba(0, 117, 255, 0.15) 64%,
      rgba(16, 22, 33, 0) 90%
    ),
    radial-gradient(
      ellipse 50.7646% 40.9067% at 97.9582% 90.03%,
      rgba(29, 214, 255, 0.9) 0%,
      rgba(29, 214, 255, 0.7) 15%,
      rgba(29, 214, 255, 0.1) 64%,
      rgba(16, 22, 33, 0) 90%
    );
  background-blend-mode: overlay, normal;
  filter: blur(20px);
  inset: -20px;
  opacity: 0;
  transition: 0.6s ease-in-out;
}

.hover-shadow:hover::before {
  opacity: 1;
}

/* ===========================================
   cp-pagination 分页
   =========================================== */
.cp-pagination {
  padding-top: 50px;
}

.cp-pagination ul {
  margin-left: -4px;
}

.cp-pagination.center ul {
  justify-content: center;
}

.cp-pagination-maxpage span,
.cp-pagination-link span,
.cp-pagination-link a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 2px 4px;
  width: 40px;
  height: 40px;
  font-size: 16px;
  border: 1px solid #333;
  border-radius: 40px;
  color: #333;
  transition: all 0.2s ease;
}

.cp-pagination-link a i,
.cp-pagination-link span i {
  position: absolute;
  top: 15px;
  display: inline-block;
  width: 8px;
  height: 8px;
  border: 1px solid #333;
  transform: rotate(45deg);
}
.cp-pagination-prev a i,
.cp-pagination-prev span i {
  left: 18px;
  border-right: none;
  border-top: none;
}
.cp-pagination-next a i,
.cp-pagination-next span i {
  right: 18px;
  border-left: none;
  border-bottom: none;
}

.cp-pagination-link a:hover,
.cp-pagination ul li a.current {
  background: linear-gradient(to right, #4947de, #66c5cc);
  color: #fff;
  border-color: transparent;
}

.cp-pagination-link a:hover i {
  border-color: #fff;
}

@media (max-width: 768px) {
  .cp-pagination {
    margin-top: 50px;
    text-align: center;
  }
  .cp-pagination ul {
    margin-left: -4px;
  }

  .cp-pagination-prev span,
  .cp-pagination-next span,
  .cp-pagination-link a {
    width: 30px;
    height: 30px;
    font-size: 12px;
  }

  .cp-pagination-link a i,
  .cp-pagination-link span i {
    top: 11px;
  }

  .cp-pagination-prev a i,
  .cp-pagination-prev span i {
    left: 13px;
  }
  .cp-pagination-next a i,
  .cp-pagination-next span i {
    right: 13px;
  }
}
/*  */
/*--------------------------- content ---------------------------*/

.markdown-body {
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.03em;
}

.markdown-body p {
  line-height: 2em;
  margin: 0;
  color: #4d4d4d;
}

.markdown-body blockquote > p {
  text-indent: 0;
}

.markdown-body h1 {
  color: #000;
  font-size: 2.2em;
}

.markdown-body h2 {
  font-size: 1.5em;
  line-height: 2em;
  margin-bottom: 0.75em;
  color: #000;
  margin-top: 1.5em;
}

.markdown-body h3 {
  font-size: 1.25em;
  line-height: 2em;
  margin-bottom: 0.625em;
  margin-top: 1.25em;
  color: #000;
}

.markdown-body h4,
.markdown-body h5,
.markdown-body h6 {
  font-size: 1.125em;
  margin: 1em 0;
}

.markdown-body a {
  border-bottom: 1.5px dashed #ffd600;
  color: #061e34;
  text-decoration: none;
}

.markdown-body a:hover {
  border-bottom: 1.5px solid #ffd600;
  color: #925328;
  cursor: pointer;
}

.markdown-body li {
  line-height: 2em;
}

.markdown-body li > p {
  line-height: 2em;
  margin: 0;
  text-indent: 0;
}

.markdown-body blockquote {
  background: linear-gradient(90deg, #fffaf4, #fff);
  border-left: 6px solid #ffd600;
  color: #707070;
  font-style: normal;
  margin: 0 0 35px;
  padding: 1px 0 1px 20px;
}

.markdown-body code {
  font-size: inherit;
}

.markdown-body li > code,
.markdown-body p > code {
  background-color: #fff7e3;
  border-radius: 3px;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  color: #061e34;
  font-size: 0.8em;
}

.markdown-body pre {
  background: #1b1b1b;
  border-radius: 8px;
  clear: both;
  color: #f5d67b;
  -webkit-hyphens: none;
  hyphens: none;
  line-height: 28px;
  margin: 0 0 1.5rem;
  max-width: 100%;
  overflow: hidden;
  padding: 0;
  position: relative;
  -moz-tab-size: 2;
  -o-tab-size: 2;
  tab-size: 2;
  width: -moz-max-content;
  width: max-content;
  width: 100%;
  -ms-word-break: normal;
  word-break: normal;
}

.markdown-body pre[rel]:not([rel=""]):before {
  color: #fff;
  color: #ff7a18 !important;
  content: attr(rel);
  font-size: 0.8em;
  font-style: normal;
  font-weight: 900;
  padding: 0;
  position: absolute;
  right: 0.4rem;
  top: -0.2rem;
}

.markdown-body pre code {
  -webkit-overflow-scrolling: touch;
  background: 0 0;
  display: block;
  font-size: 0.8em;
  line-height: 1.75;
  max-width: 100%;
  min-width: 100px;
  overflow-x: scroll;
  padding: 15px 20px 12px 22px;
  scrollbar-color: #666 #201c29;
  white-space: pre;
}

.markdown-body pre code::-webkit-scrollbar {
  height: 0.5em;
  width: 0.5em;
}

.markdown-body pre code::-webkit-scrollbar-thumb {
  background: #666;
  border-radius: 0.5em;
  box-shadow:
    inset 2px 2px 2px #ffffff40,
    inset -2px -2px 2px #00000040;
}

.markdown-body pre code::-webkit-scrollbar-track {
  background: linear-gradient(90deg, #434343, #434343 1px, none 0, none);
}

@media (max-width: 800px) {
  .markdown-body pre code {
    padding: 15px 20px 10px 14px;
  }
}

.markdown-body img {
  border-radius: 8px;
  border-style: none;
  box-sizing: content-box;
  display: block;
  margin: auto;
  max-width: 100%;
  text-align: center;
  height: auto;
}

.markdown-body figcaption,
.markdown-body figure {
  margin: 0.5em 0;
  text-align: center;
}

.markdown-body figcaption {
  color: #707070;
}

.markdown-body video {
  margin: 0.5em 0;
  max-width: 100%;
  text-align: center;
}

.markdown-body hr {
  border: none;
  border-top: #333;
  color: #333;
  overflow: visible;
  padding: 1em;
  text-align: center;
}

.markdown-body hr:after {
  background: #fff;
  color: gray;
  content: "✣ ✣ ✣";
  display: inline-block;
  font-size: 1.2em;
  padding: 0 0.25em;
  position: relative;
  top: -0.7em;
}

.markdown-body .has-text-align-right {
  text-align: right;
}

.markdown-body .has-text-align-center {
  text-align: center;
}

/* ===========================================
   入场动画
   =========================================== */
.goScale {
  -moz-animation-name: goScale;
  -ms-animation-name: goScale;
  -webkit-animation-name: goScale;
  animation-name: goScale;
}
@keyframes goScale {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.4);
    -ms-transform: scale(0.4);
    -moz-transform: scale(0.4);
    transform: scale(0.2);
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    -moz-transform: scale(1);
    transform: scale(1);
  }
}
.goLeft {
  -ms-animation-name: goLeft;
  -moz-animation-name: goLeft;
  -webkit-animation-name: goLeft;
  animation-name: goLeft;
}
@keyframes goLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-30px, 0, 0);
    -ms-transform: translate3d(-30px, 0, 0);
    -moz-transform: translate3d(-30px, 0, 0);
    transform: translate3d(-30px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    -ms-transform: translateZ(0);
    -moz-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.goRight {
  -webkit-animation-name: goRight;
  -ms-animation-name: goRight;
  -moz-animation-name: goRight;
  animation-name: goRight;
}
@keyframes goRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(30px, 0, 0);
    -ms-transform: translate3d(30px, 0, 0);
    -moz-transform: translate3d(30px, 0, 0);
    transform: translate3d(30px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    -ms-transform: translateZ(0);
    -moz-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.goUp {
  -webkit-animation-name: goUp;
  -ms-animation-name: goUp;
  -moz-animation-name: goUp;
  animation-name: goUp;
}
@keyframes goUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 30px, 0);
    -ms-transform: translate3d(0, 30px, 0);
    -moz-transform: translate3d(0, 30px, 0);
    transform: translate3d(0, 30px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    -ms-transform: translateZ(0);
    -moz-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.goDown {
  -webkit-animation-name: goDown;
  -ms-animation-name: goDown;
  -moz-animation-name: goDown;
  animation-name: goDown;
}
@keyframes goDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -30px, 0);
    -ms-transform: translate3d(0, -30px, 0);
    -moz-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    -ms-transform: translateZ(0);
    -moz-transform: translateZ(0);
    transform: translateZ(0);
  }
}

/* ===========================================
   animated 动画工具类
   =========================================== */
.animated {
  -webkit-animation-duration: 1s;
  -ms-animation-duration: 1s;
  -moz-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  -ms-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  animation-fill-mode: both;
}
.animated.infinite {
  -webkit-animation-iteration-count: infinite;
  -ms-animation-iteration-count: infinite;
  -moz-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}
.animated.delay-1s {
  -webkit-animation-delay: 1s;
  -ms-animation-delay: 1s;
  -moz-animation-delay: 1s;
  animation-delay: 1s;
}
.animated.delay-2s {
  -webkit-animation-delay: 2s;
  -ms-animation-delay: 2s;
  -moz-animation-delay: 2s;
  animation-delay: 2s;
}
.animated.delay-3s {
  -webkit-animation-delay: 3s;
  -ms-animation-delay: 3s;
  -moz-animation-delay: 3s;
  animation-delay: 3s;
}
.animated.delay-4s {
  -webkit-animation-delay: 4s;
  animation-delay: 4s;
}
.animated.delay-5s {
  -webkit-animation-delay: 5s;
  -ms-animation-delay: 5s;
  -moz-animation-delay: 5s;
  animation-delay: 5s;
}
.animated.fast {
  -webkit-animation-duration: 0.8s;
  -ms-animation-duration: 0.8s;
  -moz-animation-duration: 0.8s;
  animation-duration: 0.8s;
}
.animated.faster {
  -webkit-animation-duration: 0.5s;
  -ms-animation-duration: 0.5s;
  -moz-animation-duration: 0.5s;
  animation-duration: 0.5s;
}
.animated.slow {
  -webkit-animation-duration: 2s;
  -ms-animation-duration: 2s;
  -moz-animation-duration: 2s;
  animation-duration: 2s;
}
.animated.slower {
  -webkit-animation-duration: 3s;
  -ms-animation-duration: 3s;
  -moz-animation-duration: 3s;
  animation-duration: 3s;
}
@media (prefers-reduced-motion: reduce), (print) {
  .animated {
    -webkit-animation-duration: 1ms !important;
    -ms-animation-duration: 1ms !important;
    -moz-animation-duration: 1ms !important;
    animation-duration: 1ms !important;
    -webkit-transition-duration: 1ms !important;
    -ms-transition-duration: 1ms !important;
    -moz-transition-duration: 1ms !important;
    transition-duration: 1ms !important;
    -webkit-animation-iteration-count: 1 !important;
    -ms-animation-iteration-count: 1 !important;
    -moz-animation-iteration-count: 1 !important;
    animation-iteration-count: 1 !important;
  }
}

/* ===========================================
   an-animate 序列进场动画
   =========================================== */
.an-animate .an-animate-item:nth-child(1) {
  animation-delay: 0.1s;
  -webkit-animation-delay: 0.1s;
  -ms-animation-delay: 0.1s;
  -moz-animation-delay: 0.1s;
}
.an-animate .an-animate-item:nth-child(2) {
  animation-delay: 0.2s;
  -webkit-animation-delay: 0.2s;
  -ms-animation-delay: 0.2s;
  -moz-animation-delay: 0.2s;
}
.an-animate .an-animate-item:nth-child(3) {
  animation-delay: 0.3s;
  -webkit-animation-delay: 0.3s;
  -ms-animation-delay: 0.3s;
  -moz-animation-delay: 0.3s;
}
.an-animate .an-animate-item:nth-child(4) {
  animation-delay: 0.4s;
  -webkit-animation-delay: 0.4s;
  -ms-animation-delay: 0.4s;
  -moz-animation-delay: 0.4s;
}
.an-animate .an-animate-item:nth-child(5) {
  animation-delay: 0.5s;
  -webkit-animation-delay: 0.5s;
  -ms-animation-delay: 0.5s;
  -moz-animation-delay: 0.5s;
}
.an-animate .an-animate-item:nth-child(6) {
  animation-delay: 0.6s;
  -webkit-animation-delay: 0.6s;
  -ms-animation-delay: 0.6s;
  -moz-animation-delay: 0.6s;
}
.an-animate .an-animate-item:nth-child(7) {
  animation-delay: 0.7s;
  -webkit-animation-delay: 0.7s;
  -ms-animation-delay: 0.7s;
  -moz-animation-delay: 0.7s;
}
.an-animate .an-animate-item:nth-child(8) {
  animation-delay: 0.8s;
  -webkit-animation-delay: 0.8s;
  -ms-animation-delay: 0.8s;
  -moz-animation-delay: 0.8s;
}
.an-animate .an-animate-item:nth-child(9) {
  animation-delay: 0.9s;
  -webkit-animation-delay: 0.9s;
  -ms-animation-delay: 0.9s;
  -moz-animation-delay: 0.9s;
}
.an-animate .an-animate-item:nth-child(10) {
  animation-delay: 1s;
  -webkit-animation-delay: 1s;
  -ms-animation-delay: 1s;
  -moz-animation-delay: 1s;
}
.an-animate .an-animate-item:nth-child(11) {
  animation-delay: 1.1s;
  -webkit-animation-delay: 1.1s;
  -ms-animation-delay: 1.1s;
  -moz-animation-delay: 1.1s;
}
.an-animate .an-animate-item:nth-child(12) {
  animation-delay: 1.2s;
  -webkit-animation-delay: 1.2s;
  -ms-animation-delay: 1.2s;
  -moz-animation-delay: 1.2s;
}
.an-animate .an-animate-item:nth-child(13) {
  animation-delay: 1.3s;
  -webkit-animation-delay: 1.3s;
  -ms-animation-delay: 1.3s;
  -moz-animation-delay: 1.3s;
}
.an-animate .an-animate-item:nth-child(14) {
  animation-delay: 1.4s;
  -webkit-animation-delay: 1.4s;
  -ms-animation-delay: 1.4s;
  -moz-animation-delay: 1.4s;
}
.an-animate .an-animate-item:nth-child(15) {
  animation-delay: 1.5s;
  -webkit-animation-delay: 1.5s;
  -ms-animation-delay: 1.5s;
  -moz-animation-delay: 1.5s;
}
.an-animate .an-animate-item:nth-child(16) {
  animation-delay: 1.6s;
  -webkit-animation-delay: 1.6s;
  -ms-animation-delay: 1.6s;
  -moz-animation-delay: 1.6s;
}
