@charset "UTF-8";
:root {
  --markdown-section-width: 100%;
}

.content {
  padding-top: 0;
}

.markdown-section {
  max-width: var(--markdown-section-width) !important;
  width: var(--markdown-section-width) !important;
  min-height: calc(100vh - 565px);
  margin: 0;
  padding: 24px 32px 50px;
}

.markdown-section pre {
  width: 100%;
  background: #283147;
  border-radius: var(--docsify-select-border-radius);
}

.markdown-section pre::after {
  right: 25px;
}

.docsify-select {
  width: 70%;
}

.docsify-example-panel .docsify-select {
  width: 100%;
}

.docsify-example-panel pre {
  width: 100%;
}

.docsify-select__content pre {
  width: 100%;
  background: #40485c;
}

.docsify-tabs__content pre {
  border-radius: 0;
}

.markdown-section code {
  background: #e2ecff;
  color: #1b63fe;
}

.markdown-section pre > code {
  background: #283147;
}

.markdown-section a {
  color: #0D6EFF;
  text-decoration: none;
  z-index: 31;
  position: relative;
}

.markdown-section a:hover {
  text-decoration: none;
}
.markdown-section .triangle-before::before {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px 5px 0 5px; /* 控制小三角的大小和方向 */
  border-color: #4c4c4c transparent transparent transparent; /* 控制小三角颜色 */
  transition: transform 0.3s ease; /* 添加过渡效果 */
  left: -15px;
  top: 30%;
  transform: rotate(0deg); /* 初始角度为0度 */
  transform-origin: center; /* 设置旋转中心为元素中心 */
}
.markdown-section .rotated::before {
  transform: rotate(-90deg); /* 逆时针旋转90度 */
}
.markdown-section .hidden{
  display: none;
}
.search .input-wrap {
  height: 36px;
  border: 1px solid #ecedf0;
  border-radius: 36px;
  overflow: hidden;
}

.search .input-wrap input {
  border: none;
  outline: none;
  padding: 0 15px;
}

.search .input-wrap input:focus {
  border: none;
  outline: none;
  box-shadow: none;
}

.search .input-wrap input::placeholder {
  color: #8b8b8b;
}

.page-footer {
  padding: 80px 50px 0;
}

.page-footer a {
  text-decoration: none;
  font-weight: 400;
}

.page-footer .links {
  display: flex;
  max-width: 930px;
  margin: 0 auto;
  padding-bottom: 70px;
}

.page-footer .links .logo {
  margin-right: 130px;
}

.page-footer .links .logo img {
  display: inline-block;
  width: 163px;
  height: 40px;
}

.page-footer .links dl {
  margin: 0;
}

.page-footer .links .footer-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-footer .links .footer-item dt {
  font-size: 16px;
  color: #000000;
  line-height: 22px;
  margin-bottom: 30px;
}

.page-footer .links .footer-item dd {
  color: #8b8b8b;
  font-size: 14px;
  line-height: 24px;
  margin: 0;
  padding-bottom: 12px;
}

.page-footer .links .footer-item a {
  color: #8b8b8b;
}

.page-footer .security-record {
  height: 63px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-top: 1px solid rgba(0, 0, 0, 0.07);
}

.page-footer .security-record a {
  font-size: 14px;
  color: #000000;
}

.page-footer .security-record img {
  display: inline-block;
  width: 29px;
  height: 30px;
  margin-left: 7px;
  margin-right: 10px;
}

@media screen and (max-width: 767px) {
  .page-banner .nav .nav-item {
    height: 100%;
    position: relative;
    margin-left: 0px;
    display: flex;
    align-items: center;
    cursor: pointer;
  }
  .page-banner .logo img {
    display: inline-block;
    height: 20px;
  }
  .page-banner .logo .platform::before {
    content: '';
    width: 1px;
    height: 20px;
    background: #d8d8d8;
    position: absolute;
    top: 11px;
    left: -20px;
  }
}

a {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

ul {
  margin: 0;
  padding: 0;
}

.header-wrap {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 99;
}

.page_container {
  padding-top: 64px;
}

.page_container .section {
  /* min-width: 1200px; */
  position: relative;
}

.page_container .section .anchor-point {
  width: 0px;
  height: 0px;
  position: absolute;
  top: -105px;
  left: 0;
}

.page_container .margin {
  /* width: 1200px; */
  margin: 0 auto;
}

.page_container .module-title {
  padding: 40px 0 36px 0;
}

.page_container .module-title .main-title {
  font-weight: 600;
  font-size: 24px;
  color: #000000;
  margin-right: 16px;
}

.page_container .module-title .sub-title {
  font-size: 14px;
  color: #1a64fe;
  cursor: pointer;
}

.page_container .module-title .sub-title:hover {
  opacity: 0.8;
}

.page_container .tab-wrap {
  background: #f9fbfe;
}

.page_container .tab-wrap .tab-header {
  display: flex;
}

.page_container .tab-wrap .tab-header .tab {
  flex: 1;
  display: flex;
  align-items: center;
}

.page_container .tab-wrap .tab-header .tab .tab-item {
  cursor: pointer;
  font-size: 20px;
  line-height: 28px;
  color: #4c4c4c;
  margin-right: 72px;
}

.page_container .tab-wrap .tab-header .tab .tab-active {
  color: #1a64fe;
  font-weight: 500;
}

.page_container .tab-wrap .tab-header .more {
  font-size: 14px;
  color: #1a64fe;
  line-height: 20px;
  cursor: pointer;
}

.page_container .tab-wrap .tab-header .more:hover {
  color: #40b9ff;
}

.page_container .tab-wrap .business-content {
  display: none;
  padding: 50px 0 120px;
}

.page_container .tab-wrap .business-content .business-item {
  height: 244px;
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: relative;
}

.page_container .tab-wrap .business-content .business-item .default {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 22px;
  color: #000000;
  cursor: pointer;
}

.page_container .tab-wrap .business-content .business-item .default::after {
  content: '';
  display: block;
  width: 1px;
  height: 40px;
  background: rgba(26, 100, 254, 0.13);
  position: absolute;
  right: 0px;
  top: 50%;
  transform: translateY(-50%);
}

.page_container .tab-wrap .business-content .business-item .default img {
  display: block;
  height: 36px;
  margin-bottom: 42px;
}

.page_container .tab-wrap .business-content .business-item .noline::after {
  content: '';
  display: none;
}

.page_container .tab-wrap .business-content .business-item .checked {
  width: 440px;
  height: 244px;
  padding: 40px 30px;
  background: url('/docs/images/card-bg.png') no-repeat;
  background-size: 100% 100%;
  color: #ffffff;
}

.page_container .tab-wrap .business-content .business-item .checked .title {
  display: flex;
  align-items: center;
  font-size: 16px;
  font-weight: 600;
  line-height: 22px;
}

.page_container .tab-wrap .business-content .business-item .checked .title img {
  width: 24px;
  margin-right: 20px;
}

.page_container .tab-wrap .business-content .business-item .checked .des {
  margin: 20px 0 30px;
  font-size: 14px;
  line-height: 24px;
  letter-spacing: 0px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.page_container .tab-wrap .business-content .business-item .checked .see-btn {
  font-size: 14px;
  line-height: 20px;
  width: fit-content;
  cursor: pointer;
}

.page_container .tab-wrap .business-content .business-item .checked .see-btn b {
  display: inline-block;
  width: 14px;
  height: 7px;
  background: url('/docs/images/icons/arrow-white.png') no-repeat;
  background-size: 100% 100%;
  margin-left: 10px;
}

.page_container .tab-wrap .business-content .business-item .hide {
  display: none;
}

.page_container .tab-wrap .tab-content .card-item {
  background: #ffffff;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0px 3px 20px 0px rgba(5, 80, 237, 0.07);
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition: 0.3s;
}

.page_container .tab-wrap .tab-content .card-item:hover {
  transform: translateY(-10px);
}

.page_container .tab-wrap .tab-content .card-item .item-type {
  width: 100%;
  height: 80px;
  padding: 29px 30px;
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  line-height: 22px;
  background: url('/docs/images/paycard-bg.png') no-repeat;
  background-size: 100% 100%;
}

.page_container .tab-wrap .tab-content .card-item .type-des {
  margin-top: 24px;
  padding-left: 57px;
  position: relative;
}

.page_container .tab-wrap .tab-content .card-item .type-des:before {
  content: '';
  display: inline-block;
  width: 13px;
  height: 10px;
  background: url('/docs/images/icons/spot.png') no-repeat;
  background-size: 100% 100%;
  position: absolute;
  top: 50%;
  left: 30px;
  transform: translateY(-50%);
}

.page_container .tab-wrap .tab-content .card-item .type-des:hover {
  color: #40b9ff;
}

.page_container .tab-wrap .api-content {
  padding: 50px 0 120px;
  display: none;
  justify-content: space-between;
}

.page_container .tab-wrap .api-content .api-item {
  width: 285px;
  height: 340px;
  box-shadow: 0px 3px 20px 0px rgba(5, 80, 237, 0.07);
}

.page_container .tab-wrap .pay-content {
  padding: 50px 0 120px;
  display: none;
  justify-content: space-between;
}

.page_container .tab-wrap .pay-content .pay-item {
  width: 386px;
  height: 252px;
}

.page_container .tab-wrap .show {
  display: flex;
}

.page_container .change-wrap {
  padding: 80px 0 120px;
}

.page_container .change-wrap .change-title {
  font-size: 20px;
  line-height: 28px;
  color: #000000;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-bottom: 50px;
}

.page_container .change-wrap .change-title .more {
  font-size: 14px;
  color: #1a64fe;
  line-height: 20px;
  cursor: pointer;
  font-weight: 400;
}

.page_container .change-wrap .change-title .more:hover {
  color: #40b9ff;
}

.page_container .change-wrap table,
.page_container .change-wrap thead,
.page_container .change-wrap tbody,
.page_container .change-wrap tr {
  display: block;
  width: 100%;
  position: relative;
}

.page_container .change-wrap table a,
.page_container .change-wrap thead a,
.page_container .change-wrap tbody a,
.page_container .change-wrap tr a {
  color: #1a64fe;
}

.page_container .change-wrap table a:visited,
.page_container .change-wrap thead a:visited,
.page_container .change-wrap tbody a:visited,
.page_container .change-wrap tr a:visited {
  color: #1a64fe;
}

.page_container .change-wrap table a:hover,
.page_container .change-wrap thead a:hover,
.page_container .change-wrap tbody a:hover,
.page_container .change-wrap tr a:hover {
  color: #40b9ff;
}

.page_container .change-wrap table th,
.page_container .change-wrap table td,
.page_container .change-wrap thead th,
.page_container .change-wrap thead td,
.page_container .change-wrap tbody th,
.page_container .change-wrap tbody td,
.page_container .change-wrap tr th,
.page_container .change-wrap tr td {
  display: inline-block;
}

.page_container .change-wrap table th:nth-child(1),
.page_container .change-wrap table td:nth-child(1),
.page_container .change-wrap thead th:nth-child(1),
.page_container .change-wrap thead td:nth-child(1),
.page_container .change-wrap tbody th:nth-child(1),
.page_container .change-wrap tbody td:nth-child(1),
.page_container .change-wrap tr th:nth-child(1),
.page_container .change-wrap tr td:nth-child(1) {
  width: 14%;
  padding-left: 30px;
}

.page_container .change-wrap table th:nth-child(2),
.page_container .change-wrap table td:nth-child(2),
.page_container .change-wrap thead th:nth-child(2),
.page_container .change-wrap thead td:nth-child(2),
.page_container .change-wrap tbody th:nth-child(2),
.page_container .change-wrap tbody td:nth-child(2),
.page_container .change-wrap tr th:nth-child(2),
.page_container .change-wrap tr td:nth-child(2) {
  width: 8%;
}

.page_container .change-wrap table th:nth-child(3),
.page_container .change-wrap table td:nth-child(3),
.page_container .change-wrap thead th:nth-child(3),
.page_container .change-wrap thead td:nth-child(3),
.page_container .change-wrap tbody th:nth-child(3),
.page_container .change-wrap tbody td:nth-child(3),
.page_container .change-wrap tr th:nth-child(3),
.page_container .change-wrap tr td:nth-child(3) {
  width: 10%;
}

.page_container .change-wrap table th:nth-child(4),
.page_container .change-wrap table td:nth-child(4),
.page_container .change-wrap thead th:nth-child(4),
.page_container .change-wrap thead td:nth-child(4),
.page_container .change-wrap tbody th:nth-child(4),
.page_container .change-wrap tbody td:nth-child(4),
.page_container .change-wrap tr th:nth-child(4),
.page_container .change-wrap tr td:nth-child(4) {
  width: 13%;
}

.page_container .change-wrap table th:nth-child(5),
.page_container .change-wrap table td:nth-child(5),
.page_container .change-wrap thead th:nth-child(5),
.page_container .change-wrap thead td:nth-child(5),
.page_container .change-wrap tbody th:nth-child(5),
.page_container .change-wrap tbody td:nth-child(5),
.page_container .change-wrap tr th:nth-child(5),
.page_container .change-wrap tr td:nth-child(5) {
  width: 13%;
}

.page_container .change-wrap table th:nth-child(6),
.page_container .change-wrap table td:nth-child(6),
.page_container .change-wrap thead th:nth-child(6),
.page_container .change-wrap thead td:nth-child(6),
.page_container .change-wrap tbody th:nth-child(6),
.page_container .change-wrap tbody td:nth-child(6),
.page_container .change-wrap tr th:nth-child(6),
.page_container .change-wrap tr td:nth-child(6) {
  width: 26%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  cursor: pointer;
}

.page_container .change-wrap table th:nth-child(6):hover .remark,
.page_container .change-wrap table td:nth-child(6):hover .remark,
.page_container .change-wrap thead th:nth-child(6):hover .remark,
.page_container .change-wrap thead td:nth-child(6):hover .remark,
.page_container .change-wrap tbody th:nth-child(6):hover .remark,
.page_container .change-wrap tbody td:nth-child(6):hover .remark,
.page_container .change-wrap tr th:nth-child(6):hover .remark,
.page_container .change-wrap tr td:nth-child(6):hover .remark {
  display: block;
}

.page_container .change-wrap table th:nth-child(6) .remark,
.page_container .change-wrap table td:nth-child(6) .remark,
.page_container .change-wrap thead th:nth-child(6) .remark,
.page_container .change-wrap thead td:nth-child(6) .remark,
.page_container .change-wrap tbody th:nth-child(6) .remark,
.page_container .change-wrap tbody td:nth-child(6) .remark,
.page_container .change-wrap tr th:nth-child(6) .remark,
.page_container .change-wrap tr td:nth-child(6) .remark {
  display: none;
  position: absolute;
  bottom: 50px;
  left: 61%;
  max-width: 350px;
  background: #ffffff;
  box-shadow: 0px 3px 20px 0px rgba(5, 80, 237, 0.07);
  border-radius: 4px;
  padding: 12px;
  white-space: normal;
}

.page_container .change-wrap table thead,
.page_container .change-wrap thead thead,
.page_container .change-wrap tbody thead,
.page_container .change-wrap tr thead {
  background: #f9fbfe;
  text-align: left;
}

.page_container .change-wrap table tr:nth-child(even),
.page_container .change-wrap thead tr:nth-child(even),
.page_container .change-wrap tbody tr:nth-child(even),
.page_container .change-wrap tr tr:nth-child(even) {
  background: #f9fbfe;
}

.page_container .change-wrap .change-table {
  background-color: #ffffff;
  padding: 20px;
  border-radius: 4px;
  box-shadow: 0px 3px 20px 0px rgba(5, 80, 237, 0.07);
  overflow: hidden;
}

.page_container .settled-wrap {
  height: 545px;
  background: url('/docs/images/index3-bg.png') no-repeat;
  background-size: 100% 100%;
}

.page_container .settled-wrap .settled-title {
  text-align: center;
  font-size: 28px;
  font-weight: 600;
  color: #000000;
  padding: 100px 0;
}

.page_container .settled-wrap ul {
  list-style: none;
  display: flex;
  justify-content: space-between;
}

.page_container .settled-wrap ul li {
  width: 285px;
  height: 185px;
  background: #ffffff;
  border-radius: 4px;
  box-shadow: 0px 3px 20px 0px rgba(5, 80, 237, 0.07);
  padding: 40px 30px 30px 30px;
  position: relative;
}

.page_container .settled-wrap ul li:after {
  content: '';
  position: absolute;
  top: -19px;
  right: 19px;
  display: block;
  width: 34px;
  height: 44px;
}

.page_container .settled-wrap ul li:nth-child(1)::after {
  background: url('/docs/images/icons/1.png') no-repeat;
  background-position: right;
  background-size: contain;
}

.page_container .settled-wrap ul li:nth-child(2)::after {
  background: url('/docs/images/icons/2.png') no-repeat;
  background-position: right;
  background-size: contain;
}

.page_container .settled-wrap ul li:nth-child(3)::after {
  background: url('/docs/images/icons/3.png') no-repeat;
  background-position: right;
  background-size: contain;
}

.page_container .settled-wrap ul li:nth-child(4)::after {
  background: url('/docs/images/icons/4.png') no-repeat;
  background-position: right;
  background-size: contain;
}

.page_container .settled-wrap ul li .step-title {
  display: flex;
  align-items: center;
  font-size: 16px;
  font-weight: 600;
  color: #000000;
  line-height: 22px;
  margin-bottom: 20px;
}

.page_container .settled-wrap ul li .step-title img {
  width: 24px;
  margin-right: 14px;
}

.page_container .settled-wrap ul li .step-des {
  color: #8b8b8b;
  font-size: 14px;
  line-height: 24px;
}

.page_container .partner-settled-wrap {
  height: 690px;
  padding: 100px 120px;
  background: url('/docs/images/index3-bg.png') no-repeat;
  background-size: 100% 100%;
}

.page_container .partner-settled-wrap .settled-title {
  font-size: 28px;
  font-weight: 600;
  color: #000000;
  line-height: 40px;
  text-align: center;
  margin-bottom: 20px;
}

.page_container .partner-settled-wrap .settled-des {
  font-size: 16px;
  color: #8b8b8b;
  line-height: 22px;
  text-align: center;
}

.page_container .partner-settled-wrap ul {
  margin-top: 60px;
  display: flex;
}

.page_container .partner-settled-wrap ul li {
  width: 239px;
  height: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  cursor: pointer;
}

.page_container .partner-settled-wrap ul li:hover {
  background-color: #ffffff;
  border-radius: 4px;
  box-shadow: 0px 0px 20px 0px rgba(5, 80, 237, 0.07);
}

.page_container .partner-settled-wrap ul li::after {
  content: '';
  width: 1px;
  height: 88px;
  background: rgba(26, 100, 254, 0.13);
  position: absolute;
  top: 66px;
  right: 0;
}

.page_container .partner-settled-wrap ul li:last-child::after {
  display: none;
}

.page_container .partner-settled-wrap ul li .icon {
  height: 40px;
  object-fit: contain;
  margin-bottom: 52px;
}

.page_container .partner-settled-wrap ul li .name {
  font-size: 16px;
  color: #000000;
  line-height: 22px;
}

.page_container .partner-settled-wrap .settled-btn {
  width: 156px;
  height: 40px;
  border: 1px solid #1a64fe;
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #1a64fe;
  line-height: 20px;
  margin: 120px auto 0;
  cursor: pointer;
}

.page_container .partner-settled-wrap .settled-btn:hover {
  border: 1px solid #40b9ff;
  color: #40b9ff;
}

.page_container .partner-settled-wrap .settled-btn:hover b {
  width: 14px;
  height: 7px;
  background: url('/docs/images/icons/arrow-lightblue.png') no-repeat;
  background-size: 100% 100%;
}

.page_container .partner-settled-wrap .settled-btn b {
  width: 14px;
  height: 7px;
  background: url('/docs/images/icons/arrow-blue.png') no-repeat;
  background-size: 100% 100%;
  margin-left: 10px;
}

.page_container .tool-wrap {
  height: 820px;
}

.page_container .tool-wrap .tool-title {
  text-align: center;
  font-size: 28px;
  font-weight: 600;
  color: #000000;
  line-height: 40px;
  padding: 100px 60px;
}

.page_container .tool-wrap .tool-content .row {
  display: flex;
}

.page_container .tool-wrap .tool-content .row:first-child {
  border-bottom: 1px solid #ecedf0;
}

.page_container .tool-wrap .tool-content .row .col-left,
.page_container .tool-wrap .tool-content .row .col-right {
  width: 600px;
  height: 250px;
  position: relative;
  overflow: hidden;
}

.page_container .tool-wrap .tool-content .row .col-left .mask,
.page_container .tool-wrap .tool-content .row .col-right .mask {
  opacity: 0;
}

.page_container .tool-wrap .tool-content .row .col-left .trans,
.page_container .tool-wrap .tool-content .row .col-right .trans {
  width: 100%;
  position: absolute;
  height: 250px;
  background: url('/docs/images/index4-card-bg.png') no-repeat;
  background-size: cover;
  z-index: 1;
  opacity: 1;
  top: 0;
}

.page_container .tool-wrap .tool-content .row .col-left .item,
.page_container .tool-wrap .tool-content .row .col-right .item {
  flex: 1;
  height: 250px;
  padding: 50px 140px 50px 40px;
  z-index: 2;
  position: absolute;
  top: 0;
}

.page_container .tool-wrap .tool-content .row .col-left .item:hover .item-t,
.page_container .tool-wrap .tool-content .row .col-left .item:hover .item-des,
.page_container .tool-wrap .tool-content .row .col-left .item:hover .item-btn,
.page_container .tool-wrap .tool-content .row .col-right .item:hover .item-t,
.page_container .tool-wrap .tool-content .row .col-right .item:hover .item-des,
.page_container .tool-wrap .tool-content .row .col-right .item:hover .item-btn {
  color: #ffffff;
}

.page_container .tool-wrap .tool-content .row .col-left .item:hover .item-btn b,
.page_container
  .tool-wrap
  .tool-content
  .row
  .col-right
  .item:hover
  .item-btn
  b {
  background: url('/docs/images/icons/arrow-white.png') no-repeat;
  background-size: 100% 100%;
}

.page_container .tool-wrap .tool-content .row .col-left .item .item-t,
.page_container .tool-wrap .tool-content .row .col-right .item .item-t {
  font-size: 16px;
  font-weight: 600;
  text-align: left;
  color: #000000;
  line-height: 22px;
}

.page_container .tool-wrap .tool-content .row .col-left .item .item-des,
.page_container .tool-wrap .tool-content .row .col-right .item .item-des {
  font-size: 14px;
  color: #8b8b8b;
  line-height: 24px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  margin: 20px 0 40px;
}

.page_container .tool-wrap .tool-content .row .col-left .item .item-btn,
.page_container .tool-wrap .tool-content .row .col-right .item .item-btn {
  width: fit-content;
  color: #1a64fe;
  font-size: 14px;
  line-height: 20px;
  cursor: pointer;
}

.page_container .tool-wrap .tool-content .row .col-left .item .item-btn b,
.page_container .tool-wrap .tool-content .row .col-right .item .item-btn b {
  display: inline-block;
  width: 14px;
  height: 7px;
  margin-left: 10px;
  background: url('/docs/images/icons/arrow-blue.png') no-repeat;
  background-size: 100% 100%;
}

.page_container .tool-wrap .tool-content .row .col-left {
  border-right: 1px solid #ecedf0;
}

#PAGEFOOTER .footer {
  width: 1200px;
  margin: 0 auto;
  padding-top: 80px;
}

#PAGEFOOTER .footer a {
  text-decoration: none;
  font-weight: 400;
}

#PAGEFOOTER .footer .links {
  display: flex;
  padding-bottom: 70px;
}

#PAGEFOOTER .footer .links .logo {
  margin-right: 100px;
  display: flex;
}

#PAGEFOOTER .footer .links .logo .hflogo-wrap {
  position: relative;
}

#PAGEFOOTER .footer .links .logo .hflogo-wrap:after {
  content: '';
  display: inline-block;
  position: absolute;
  width: 1px;
  height: 20px;
  background: #d8d8d8;
  top: 12px;
  right: 26px;
}

#PAGEFOOTER .footer .links .logo .hflogo {
  width: 160px;
  object-fit: contain;
  margin-right: 52px;
}

#PAGEFOOTER .footer .links .logo .dglogo {
  width: 150px;
  object-fit: contain;
  margin-top: 9px;
}

#PAGEFOOTER .footer .links dl {
  margin: 0;
}

#PAGEFOOTER .footer .links .footer-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

#PAGEFOOTER .footer .links .footer-item dt {
  font-size: 16px;
  color: #000000;
  line-height: 22px;
  margin-bottom: 30px;
}

#PAGEFOOTER .footer .links .footer-item dd {
  color: #8b8b8b;
  font-size: 14px;
  line-height: 24px;
  margin: 0;
  padding-bottom: 12px;
}

#PAGEFOOTER .footer .links .footer-item a {
  color: #8b8b8b;
}

#PAGEFOOTER .footer .security-record {
  height: 63px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-top: 1px solid rgba(0, 0, 0, 0.07);
}

#PAGEFOOTER .footer .security-record a {
  font-size: 14px;
  color: #000000;
}

#PAGEFOOTER .footer .security-record img {
  display: inline-block;
  width: 29px;
  height: 30px;
  margin-left: 7px;
  margin-right: 10px;
}

.page-anchor {
  position: fixed;
  right: 44px;
  top: 50%;
  transform: translateY(-50%);
}

.page-anchor .anchor-item {
  display: block;
  width: 5px;
  height: 5px;
  background: #e0eafe;
  border-radius: 50%;
  margin-bottom: 20px;
  position: relative;
}

.page-anchor .anchor-item:hover .name {
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-anchor .anchor-item .name {
  display: none;
  width: 164px;
  height: 78px;
  position: absolute;
  white-space: nowrap;
  right: 5px;
  top: -35px;
  background: url(/docs/images/bubble.png) no-repeat;
  background-size: 100% 100%;
}

.page-anchor .current {
  background: #1a64fe;
}

.page-anchor a {
  color: #1a64fe;
}

.page-anchor a:visited {
  color: #1a64fe;
}

.animated {
  animation-duration: 0.4s;
  animation-fill-mode: both;
}

@keyframes fadeInWidth {
  0% {
    opacity: 0;
    width: 180px;
  }
  100% {
    opacity: 1;
    width: 440px;
  }
}

.fadeInWidth {
  -webkit-animation-name: fadeInWidth;
  animation-name: fadeInWidth;
}

@keyframes fadeOutWidth {
  0% {
    opacity: 1;
    width: 440px;
  }
  100% {
    opacity: 0;
    width: 180px;
  }
}

.fadeOutWidth {
  -webkit-animation-name: fadeOutWidth;
  animation-name: fadeOutWidth;
}

.animatedBg {
  animation-duration: 0.8s;
  animation-fill-mode: both;
}

@keyframes fadeInBg {
  0% {
    opacity: 0.2;
  }
  100% {
    opacity: 1;
  }
}

.fadeInBg {
  -webkit-animation-name: fadeInBg;
  animation-name: fadeInBg;
}

/* 业务指引 */
.section-business-guide {
  margin-top: 105px;
  display: flex;
}

.section-business-guide ul {
  list-style: none;
}

.section-business-guide .business-guide-nav {
  width: 240px;
  margin-top: 40px;
  border-right: 1px solid #ecedf0;
  flex-shrink: 0;
  padding-left: 15px;
}

.section-business-guide .business-guide-nav .sidebar-menu li a {
  font-size: 16px;
  color: #000000;
}

.section-business-guide .business-guide-nav .sidebar-menu > li {
  margin-bottom: 24px;
}

.section-business-guide .business-guide-nav .sidebar-menu .icon-arrow-up {
  float: right;
  font-size: 12px;
  margin-right: 20px;
  margin-top: 8px;
  background: url(https://api.cloudpnr.com/opps_site/web_site/img/arrow-up.png);
  background-size: 100% 100%;
  height: 6px;
  width: 11px;
  cursor: pointer;
}

.section-business-guide .business-guide-nav .sidebar-menu .icon-arrow-down {
  background: url(https://api.cloudpnr.com/opps_site/web_site/img/arrow-down.png);
  background-size: 100% 100%;
  height: 6px;
  width: 11px;
  cursor: pointer;
}

.section-business-guide .business-guide-nav .sidebar-menu-sub {
  margin-bottom: 24px;
}

.section-business-guide .business-guide-nav .sidebar-menu-sub li {
  padding-left: 15px;
  line-height: 46px;
}

.section-business-guide .business-guide-nav .sidebar-menu-sub .on {
  position: relative;
}

.section-business-guide .business-guide-nav .sidebar-menu-sub .on:after {
  content: '';
  position: absolute;
  top: 10px;
  right: 0;
  width: 2px;
  height: 26px;
  background: #1a64fe;
}

.section-business-guide .business-guide-nav .sidebar-menu-sub .on a {
  color: #1a64fe;
}

.section-business-guide .business-guide-nav .sidebar-menu-sub li a {
  font-size: 14px;
  color: #4c4c4c;
}

.section-business-guide .business-guide-nav .sidebar-menu-sub2 li {
  padding-left: 20px;
}

.section-business-guide .business-guide-contain {
  width: 1005px;
  text-align: center;
  background: #ffffff;
  padding-left: 30px;
  padding-bottom: 60px;
  margin-top: 40px;
  box-sizing: content-box;
  /* 面包屑 */
  /* 线下场所样式 */
}

.section-business-guide .business-guide-contain .crumb-contain {
  margin-bottom: 40px;
  font-size: 14px;
  font-weight: 400;
  color: #8b8b8b;
  text-align: left;
}

.section-business-guide .business-guide-contain .crumb-contain .crumb-focus {
  color: #000000;
}

.section-business-guide .business-guide-contain .business-guide {
  font-size: 28px;
  color: #000000;
  font-weight: 600;
  text-align: left;
}

.section-business-guide .business-guide-contain .offline-places-section-1 {
  margin-top: 40px;
  height: 300px;
}

.section-business-guide
  .business-guide-contain
  .offline-places-section-1
  .section-1-left {
  float: left;
  margin-right: 40px;
}

.section-business-guide
  .business-guide-contain
  .offline-places-section-1
  .section-1-left
  img {
  width: 540px;
  height: 300px;
}

.section-business-guide
  .business-guide-contain
  .offline-places-section-1
  .section-1-right {
  float: left;
  text-align: left;
  color: #000000;
}

.section-business-guide
  .business-guide-contain
  .offline-places-section-1
  .section-1-right-desc {
  width: 365px;
  font-size: 14px;
  color: #000000;
  line-height: 26px;
}

.section-business-guide
  .business-guide-contain
  .offline-places-section-1
  .section-1-right-tag {
  margin-top: 20px;
}

.section-business-guide
  .business-guide-contain
  .offline-places-section-1
  .section-1-right-tag
  ul {
  display: flex;
  text-align: center;
  margin-top: 15px;
}

.section-business-guide
  .business-guide-contain
  .offline-places-section-1
  .section-1-right-tag
  li {
  border: 1px solid #aaaaaa;
  border-radius: 4px;
  padding: 10px;
  margin-right: 20px;
  color: #aaaaaa;
}

.section-business-guide
  .business-guide-contain
  .offline-places-section-1
  .section-1-right-btn {
  width: 168px;
  height: 49px;
  margin-top: 40px;
  text-align: center;
  line-height: 49px;
  background: #1b63fe;
  border-radius: 5px;
}

.section-business-guide
  .business-guide-contain
  .offline-places-section-1
  .section-1-right-btn
  a {
  font-size: 16px;
  color: #ffffff;
}

.section-business-guide .business-guide-contain .offline-places-section-2 {
  text-align: left;
}

.section-business-guide
  .business-guide-contain
  .offline-places-section-2
  .section-2-right-title {
  font-size: 20px;
  color: #000000;
  margin-top: 70px;
}

.section-business-guide
  .business-guide-contain
  .offline-places-section-2
  .section-2-right-nav {
  border-bottom: 1px solid #ecedf0;
  margin-top: 30px;
}

.section-business-guide
  .business-guide-contain
  .offline-places-section-2
  .section-2-right-nav
  ul {
  display: flex;
  cursor: pointer;
}

.section-business-guide
  .business-guide-contain
  .offline-places-section-2
  .section-2-right-nav
  li {
  height: 31px;
  min-width: 80px;
  text-align: center;
  margin-bottom: -2px;
  margin-right: 12px;
}

.section-business-guide
  .business-guide-contain
  .offline-places-section-2
  .section-2-right-nav
  a {
  font-size: 14px;
  color: #000000;
}

.section-business-guide
  .business-guide-contain
  .offline-places-section-2
  .section-2-right-nav
  .active {
  color: #1a64fe;
  border-bottom: 3px solid #1a64fe;
}

.section-business-guide .business-guide-contain .product-desc-1 ul {
  display: flex;
  margin-top: 50px;
}

.section-business-guide
  .business-guide-contain
  .product-desc-1
  ul
  li
  .step-img {
  width: 180px;
  height: 318px;
  margin: 0 auto;
}

.section-business-guide
  .business-guide-contain
  .product-desc-1
  ul
  li
  .step-img
  img {
  width: 180px;
  height: 318px;
}

.section-business-guide .business-guide-contain .product-desc-1 .product-title {
  margin-top: 30px;
}

.section-business-guide
  .business-guide-contain
  .product-desc-1
  .step-arrow-contain,
.section-business-guide
  .business-guide-contain
  .product-desc-2
  .step-arrow-contain {
  width: 160px;
}

.section-business-guide .business-guide-contain .product-desc-1 .step-arrow,
.section-business-guide .business-guide-contain .product-desc-2 .step-arrow {
  width: 0;
  height: 0;
  border-top: 13px solid transparent;
  border-left: 15px solid #ecedf0;
  border-bottom: 13px solid transparent;
  margin: 0 auto;
  margin-top: 146px;
}

.section-business-guide .business-guide-contain .product-desc-1 .step-desc,
.section-business-guide .business-guide-contain .product-desc-2 .step-desc {
  margin-top: 40px;
  text-align: center;
}

.section-business-guide .business-guide-contain .product-desc-1 .pay-contain {
  margin-top: 50px;
}

.section-business-guide
  .business-guide-contain
  .product-desc-1
  .pay-contain
  img {
  margin: 0 auto;
  width: 600px;
  height: 360px;
}

.section-business-guide .business-guide-contain .product-desc-1 .pay-contain p {
  font-size: 14px;
  font-weight: 400;
  color: #000000;
  margin-top: 40px;
  margin-bottom: 70px;
  text-align: center;
}

.section-business-guide .business-guide-contain .product-desc-2 ul {
  display: flex;
  margin-top: 50px;
}

.section-business-guide
  .business-guide-contain
  .product-desc-2
  ul
  li
  .step-img {
  width: 180px;
  height: 318px;
  margin: 0 auto;
}

.section-business-guide .business-guide-contain .product-desc-2 .product-title {
  margin-top: 70px;
}

.section-business-guide .business-guide-contain .product-title a {
  color: #1a64fe;
}

.section-business-guide .business-guide-contain .product-desc-3 ul {
  display: flex;
  margin-top: 30px;
}

.section-business-guide .business-guide-contain .product-desc-3 ul li {
  width: 430px;
  min-height: 230px;
  border: 1px solid #dddddd;
  margin-right: 60px;
  border-radius: 4px;
  box-sizing: content-box;
}

.section-business-guide .business-guide-contain .product-desc-3 .product-title {
  font-size: 16px;
  color: #000000;
  margin: 0 24px;
  border-bottom: 1px solid #dddddd;
  padding: 19px 0;
  font-weight: 500;
}

.section-business-guide .business-guide-contain .product-desc-3 .product-desc {
  font-size: 14px;
  color: #000000;
  padding: 19px 25px;
  line-height: 26px;
  min-height: 130px;
}

.section-business-guide
  .business-guide-contain
  .product-desc-3
  .product-desc
  .left-index {
  float: left;
  width: 20px;
}

.section-business-guide
  .business-guide-contain
  .product-desc-3
  .product-desc
  .right-content {
  float: left;
  width: 360px;
}

/* 指引通用样式 */
.tab-change-content {
  display: none;
}

.tab-change-content.active {
  display: block;
}

.step-box {
  display: flex;
}

.step-box .step-img {
  width: 180px;
  height: 318px;
}

.step-box .step-desc {
  margin-top: 40px;
  text-align: center;
}

.step-box .step-arrow-contain {
  text-align: center;
  width: 14%;
}

.step-box .step-arrow {
  width: 0;
  height: 0;
  border-top: 13px solid transparent;
  border-left: 15px solid #ecedf0;
  border-bottom: 13px solid transparent;
  margin: 0 auto;
  margin-top: 146px;
}

.tab-change-content > p {
  width: 93%;
  font-size: 14px;
  font-weight: 400;
  color: #000000;
  line-height: 20px;
  margin-top: 30px;
  margin-bottom: 50px;
}

.update_container {
  padding-top: 105px;
  padding-bottom: 70px;
}

.update_container .margin {
  width: 1200px;
  margin: 0 auto;
}

.update_container .change-wrap .change-title {
  font-size: 20px;
  line-height: 28px;
  color: #000000;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 40px 0;
}

.update_container .change-wrap .change-title .more {
  font-size: 14px;
  color: #1a64fe;
  line-height: 20px;
  cursor: pointer;
  font-weight: 400;
}

.update_container .change-wrap table,
.update_container .change-wrap thead,
.update_container .change-wrap tbody,
.update_container .change-wrap tr {
  display: block;
  width: 100%;
  position: relative;
}

.update_container .change-wrap table a,
.update_container .change-wrap thead a,
.update_container .change-wrap tbody a,
.update_container .change-wrap tr a {
  color: #1a64fe;
}

.update_container .change-wrap table a:visited,
.update_container .change-wrap thead a:visited,
.update_container .change-wrap tbody a:visited,
.update_container .change-wrap tr a:visited {
  color: #1a64fe;
}

.update_container .change-wrap table a:hover,
.update_container .change-wrap thead a:hover,
.update_container .change-wrap tbody a:hover,
.update_container .change-wrap tr a:hover {
  color: #40b9ff;
}

.update_container .change-wrap table th,
.update_container .change-wrap table td,
.update_container .change-wrap thead th,
.update_container .change-wrap thead td,
.update_container .change-wrap tbody th,
.update_container .change-wrap tbody td,
.update_container .change-wrap tr th,
.update_container .change-wrap tr td {
  display: inline-block;
}

.update_container .change-wrap table th:nth-child(1),
.update_container .change-wrap table td:nth-child(1),
.update_container .change-wrap thead th:nth-child(1),
.update_container .change-wrap thead td:nth-child(1),
.update_container .change-wrap tbody th:nth-child(1),
.update_container .change-wrap tbody td:nth-child(1),
.update_container .change-wrap tr th:nth-child(1),
.update_container .change-wrap tr td:nth-child(1) {
  width: 14%;
  padding-left: 30px;
}

.update_container .change-wrap table th:nth-child(2),
.update_container .change-wrap table td:nth-child(2),
.update_container .change-wrap thead th:nth-child(2),
.update_container .change-wrap thead td:nth-child(2),
.update_container .change-wrap tbody th:nth-child(2),
.update_container .change-wrap tbody td:nth-child(2),
.update_container .change-wrap tr th:nth-child(2),
.update_container .change-wrap tr td:nth-child(2) {
  width: 8%;
}

.update_container .change-wrap table th:nth-child(3),
.update_container .change-wrap table td:nth-child(3),
.update_container .change-wrap thead th:nth-child(3),
.update_container .change-wrap thead td:nth-child(3),
.update_container .change-wrap tbody th:nth-child(3),
.update_container .change-wrap tbody td:nth-child(3),
.update_container .change-wrap tr th:nth-child(3),
.update_container .change-wrap tr td:nth-child(3) {
  width: 10%;
}

.update_container .change-wrap table th:nth-child(4),
.update_container .change-wrap table td:nth-child(4),
.update_container .change-wrap thead th:nth-child(4),
.update_container .change-wrap thead td:nth-child(4),
.update_container .change-wrap tbody th:nth-child(4),
.update_container .change-wrap tbody td:nth-child(4),
.update_container .change-wrap tr th:nth-child(4),
.update_container .change-wrap tr td:nth-child(4) {
  width: 13%;
}

.update_container .change-wrap table th:nth-child(5),
.update_container .change-wrap table td:nth-child(5),
.update_container .change-wrap thead th:nth-child(5),
.update_container .change-wrap thead td:nth-child(5),
.update_container .change-wrap tbody th:nth-child(5),
.update_container .change-wrap tbody td:nth-child(5),
.update_container .change-wrap tr th:nth-child(5),
.update_container .change-wrap tr td:nth-child(5) {
  width: 13%;
}

.update_container .change-wrap table th:nth-child(6),
.update_container .change-wrap table td:nth-child(6),
.update_container .change-wrap thead th:nth-child(6),
.update_container .change-wrap thead td:nth-child(6),
.update_container .change-wrap tbody th:nth-child(6),
.update_container .change-wrap tbody td:nth-child(6),
.update_container .change-wrap tr th:nth-child(6),
.update_container .change-wrap tr td:nth-child(6) {
  width: 26%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  cursor: pointer;
}

.update_container .change-wrap table th:nth-child(6):hover .remark,
.update_container .change-wrap table td:nth-child(6):hover .remark,
.update_container .change-wrap thead th:nth-child(6):hover .remark,
.update_container .change-wrap thead td:nth-child(6):hover .remark,
.update_container .change-wrap tbody th:nth-child(6):hover .remark,
.update_container .change-wrap tbody td:nth-child(6):hover .remark,
.update_container .change-wrap tr th:nth-child(6):hover .remark,
.update_container .change-wrap tr td:nth-child(6):hover .remark {
  display: block;
}

.update_container .change-wrap table th:nth-child(6) .remark,
.update_container .change-wrap table td:nth-child(6) .remark,
.update_container .change-wrap thead th:nth-child(6) .remark,
.update_container .change-wrap thead td:nth-child(6) .remark,
.update_container .change-wrap tbody th:nth-child(6) .remark,
.update_container .change-wrap tbody td:nth-child(6) .remark,
.update_container .change-wrap tr th:nth-child(6) .remark,
.update_container .change-wrap tr td:nth-child(6) .remark {
  display: none;
  position: absolute;
  bottom: 45px;
  left: 61%;
  max-width: 350px;
  background: #ffffff;
  box-shadow: 0px 3px 20px 0px rgba(5, 80, 237, 0.07);
  border-radius: 4px;
  padding: 12px;
  white-space: normal;
}

.update_container .change-wrap table thead,
.update_container .change-wrap thead thead,
.update_container .change-wrap tbody thead,
.update_container .change-wrap tr thead {
  background: #f9fbfe;
  text-align: left;
}

.update_container .change-wrap table tr:nth-child(even),
.update_container .change-wrap thead tr:nth-child(even),
.update_container .change-wrap tbody tr:nth-child(even),
.update_container .change-wrap tr tr:nth-child(even) {
  background: #f9fbfe;
}

.update_container .change-wrap .table-wrap {
  background-color: #ffffff;
  padding: 20px 20px 0 20px;
  border-radius: 4px;
  box-shadow: 0px 3px 20px 0px rgba(5, 80, 237, 0.07);
  overflow: hidden;
}

@media screen and (max-width: 1400px) {
  .page-header .nav .nav-item {
    margin-right: 40px;
  }
}

.contain {
  text-align: center;
}

.contain img {
  display: inline-block;
  margin: 120px 0 80px 0;
  width: 280px;
  height: 280px;
}

.contain h3 {
  font-size: 32px;
  letter-spacing: 1px;
  color: #070a14;
  font-weight: normal;
  line-height: 50px;
  padding-bottom: 14px;
  padding-bottom: 120px;
}

.tips-404 {
  color: #333 !important;
}

@media (max-width: 767px) {
  body {
    width: 100%;
    min-width: auto;
  }
  .contain img {
    width: 180px;
    height: 180px;
  }
  .contain h3 {
    font-size: 22px;
  }
}

.skeleton-screen-box {
  width: 100%;
  height: 100%;
  margin-top: -40vh;
}
.skeleton-header {
  width: 100%;
  height: 106px;
  border-bottom: 1px solid #e6e6e6;
  padding: 10px 20px 0;
}

.skeleton-header ul {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  margin-bottom: 10px;
}
.skeleton-header ul li {
  margin-right: 10px;
  background-image: linear-gradient(
    90deg,
    #f2f2f2 25%,
    #e6e6e6 37%,
    #f2f2f2 63%
  );
  width: 100px;
  height: 1rem;
  list-style: none;
  background-size: 400% 100%;
  margin-top: 0.6rem;
  background-position: 100% 50%;
  animation: skeleton-screen-loading 1.4s ease infinite;
}
.skeleton-header ul:first-child > li {
  height: 2rem;
}
.skeleton-content {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.skeleton-left {
  width: 25%;
  height: 500px;
  border-right: 1px solid #e6e6e6;
  padding: 10px;
}
.skeleton-main {
  width: 60%;
  height: 500px;
  padding: 10px;
}
.skeleton-right {
  width: 14%;
  height: 500px;
  border-left: 1px solid #e6e6e6;
  padding: 10px;
}

.skeleton-left ul,
.skeleton-main ul,
.skeleton-right ul {
  background-color: #fff;
  margin: 0 auto;
  padding: 20px;
  width: 100%;
}

.skeleton-left > ul > li,
.skeleton-main > ul > li,
.skeleton-right > ul > li {
  background-image: linear-gradient(
    90deg,
    #f2f2f2 25%,
    #e6e6e6 37%,
    #f2f2f2 63%
  );
  width: 100%;
  height: 0.6rem;
  list-style: none;
  background-size: 400% 100%;
  margin-top: 0.6rem;
  background-position: 100% 50%;
  animation: skeleton-screen-loading 1.4s ease infinite;
}
.skeleton-main > ul > li {
  height: 1.2rem;
}
.skeleton-main > ul > li:first-child {
  width: 30%;
}
.skeleton-main > ul > li:last-child {
  width: 80%;
}

.skeleton-right > ul > li {
  height: 0.4rem;
}
.skeleton-right > ul > li:first-child {
  width: 40%;
}

.skeleton-left > ul > li:nth-child(n) {
  width: 60%;
}
.skeleton-left > ul > li:nth-child(3n) {
  width: 100%;
}

@keyframes skeleton-screen-loading {
  0% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0 50%;
  }
}

.imgOverlay {
  position: fixed;
  display: none;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  background-color: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
  z-index: 999;
  transition: opacity 0.3s ease-in-out;
}

.imgOverlay-activive {
  opacity: 1;
}

.imgOverlay img {
  max-width: 80%;
  max-height: 80%;
  object-fit: contain;
}