
html {
  scroll-padding-top: 200px;
  scroll-behavior: smooth;
}

:root {
  --fc-green: #34c040;
  --fc-green-2: #02ce80;
  --fc-grad-green: linear-gradient(180deg, #02ce80 0%, #7bd706 100%);
  --fc-grad-card: linear-gradient(225deg, #d1f8f7 0%, #e5ffda 100%);
  --fc-grad-header: linear-gradient(180deg, #ffffff00 0%, #90ee9026 50%, #00960026 100%);
  --fc-text-dark: #141d38;
  --fc-text-body: #484e60;
  --fc-text-mute: #737887;
  --fc-bg-blue-grey: #eff1f9;
  --fc-tag-blue: #0781fc;
  --fc-border: #e0e0e0;
  --fc-border-2: #d7d7d7;
  --fc-font: "Noto Sans JP", Barlow, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", SimHei, Arial, Helvetica, sans-serif;
  --fc-font-header: "Noto Sans JP", Roboto, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", SimHei, sans-serif;
}
.article-wrap,
.article-wrap * {
  box-sizing: border-box;
}

.article-wrap {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  display: block;
  font-family: var(--fc-font);
  color: var(--fc-text-dark);
  background: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;

}
.article-wrap img { display: block; max-width: 100%; height: auto; }

.product-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--fc-bg-blue-grey);
  width: 100%;
  height: 100px;
  position: fixed;
  left: 0;
  right: 0;
  top: 95px;
  z-index: 50;
  overflow: hidden;
  padding: 0 max(40px, calc((100% - 1376px) / 2));
  box-sizing: border-box;
  transform: translateY(-110%);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: transform 0.25s ease, opacity 0.25s ease, visibility 0.25s;
}
.product-banner.is-banner-visible {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.banner-brand {
  display: inline-flex;
  align-items: center;
  column-gap: 10px;
  flex-shrink: 0;
}
.banner-brand img {
  width: 32px;
  height: 32px;
}
.banner-brand span {
  font-size: 18px;
  font-weight: 700;
  line-height: 19px;
  color: var(--fc-text-dark);
  font-family: var(--fc-font-header);
}
.banner-actions {
  display: inline-flex;
  align-items: center;
  column-gap: 20px;
  flex-shrink: 0;
}

.article-wrap .article-header {
  width: 100%;
  background-image: var(--fc-grad-header);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.article-wrap .article-breadcrumb {
  max-width: 1376px;
  width: 100%;
  height: 52px;
  display: flex;
  align-items: center;
  font-size: 14px;
  line-height: 17px;
  color: #141d38;
  font-family: var(--fc-font);
}
.article-breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px 6px;
  margin: 0;
  padding: 8px 0;
}
.article-breadcrumb li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.article-breadcrumb a {
  color: #6c757d;
  text-decoration: none;
}
.article-breadcrumb li[aria-current="page"] {
  font-weight: 600;
  color: #535761;
}
.article-breadcrumb li > span[aria-hidden="true"] {
  color: #adb5bd;
}
.article-wrap .article-header > h1,
.article-wrap .article-header > p{
  max-width: 1230px;
  box-sizing: border-box;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.article-wrap h1 {
  padding: 24px 40px 0;
  text-align: center;
  font-size: 35px;
  font-weight: 700;
  line-height: 48px;
  color: #141d38;
  font-family: var(--fc-font);
}
.article-wrap .article-header > p {
  margin-top: 24px;
  padding: 0 40px 8px;
  font-size: 18px;
  line-height: 22px;
  color: var(--fc-text-mute);
  text-align: center;
  font-family: var(--fc-font);
}
.article-wrap .article-meta {
  position: relative;
  max-width: 1376px;
  width: 100%;
  padding: 0 40px 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 8px;
}
.article-wrap .lang-select {
  position: absolute;
  top: 0;
  right: 40px;
  width: 140px;
  height: 40px;
  border: 1px solid var(--fc-border-2);
  border-radius: 4px;
  padding: 9px 28px 9px 11px;
  font-family: "Nunito Sans", var(--fc-font);
  font-size: 16px;
  color: #000000e5;
  line-height: 22px;
  background-color: transparent;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23666666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 8px center;
}
.article-wrap .lang-select option {
  background: #fff;
  color: #000000e5;
}
.article-wrap .article-meta-info {
  display: inline-flex;
  align-items: center;
  column-gap: 10px;
}
.article-wrap .author {
  display: inline-flex;
  align-items: center;
  column-gap: 8px;
}
.article-wrap .author img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}
.article-wrap .author p,
.article-wrap .article-meta-info p {
  font-size: 14px;
  margin: 0;
}
.article-wrap .author a {
  color: var(--fc-text-dark);
  text-decoration: none;
}

.article-wrap .two-col {
  display: flex;
  flex-direction: row-reverse;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 66px;
  margin-top: 28px;
  padding-left: 40px;
  padding-right: 40px;
  padding-bottom: 80px;
}
@media (min-width: 1441px) {
  .article-wrap .two-col {
    padding-left: 84px;
  }
}
.article-wrap .sidebar-sticky {
  width: 356px;
  max-width: 380px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  row-gap: 60px;
  align-self: flex-start;
}
.article-wrap .sidebar-sticky.is-sticky-active {
  position: sticky;
  top: 223px;
}
.article-wrap .article-body {
  flex: 1;
  min-width: 0;
  width: 964px;
  max-width: 1200px;
  font-family: var(--fc-font);
}

.article-wrap .article-body h2 {
  width: 100%;
  font-size: 32px;
  font-weight: 700;
  line-height: 45px;
  color: #141d38;
  margin: 20px 0;
  font-family: var(--fc-font);
  padding-top: 25px;
}
.article-wrap .article-body h3 {
  font-size: 26px;
  font-weight: 700;
  line-height: 34px;
  color: #141d38;
  margin: 20px 0;
  font-family: var(--fc-font);
  padding-top: 20px;
  border-left: solid 5px #2fb45e;
  padding: 0.3em 0.5em;
}
.article-wrap .article-body h4 {
  font-size: 20px;
  font-weight: 500;
  line-height: 31px;
  color: #093;
  margin: 20px 0;
  font-family: var(--fc-font);
}
.article-wrap .article-body h5 {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 20px;
  font-weight: 600;
  line-height: 28px;
  color: #141d38;
  margin: 30px 0;
  font-family: var(--fc-font);
}
.article-wrap .article-body p {
  color: #333;
  line-height: 35px;
  font-size: 17px;
  font-weight: 400;
  margin: 22px 0;
  font-family: var(--fc-font);
}
.article-wrap .article-body ul,
.article-wrap .article-body ol {
  color: var(--fc-text-body);
  line-height: 30px;
  font-size: 18px;
  font-weight: 400;
  margin: 16px 0;
  padding-left: 24px;
  font-family: var(--fc-font);
}
.article-wrap .article-body li {
  margin-bottom: 8px;
}
.article-wrap .article-body li:last-child {
  margin-bottom: 0;
}
.article-wrap .article-body blockquote {
  margin: 24px 0;
  padding: 20px 24px;
  border-left: 4px solid var(--fc-green);
  background: var(--fc-bg-blue-grey);
  border-radius: 0 12px 12px 0;
  font-size: 18px;
  line-height: 28px;
  color: var(--fc-text-body);
  font-family: var(--fc-font);
}
.article-wrap .article-body blockquote p {
  margin: 0;
  font-size: inherit;
  line-height: inherit;
}
.article-wrap .article-body > img {
  margin: 30px auto;
  border-radius: 12px;
}


.article-wrap .article-figure {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 30px auto 48px;
}
.article-wrap .article-figure img {
  width: auto;
  max-width: 100%;
  height: auto;
  border-radius: 12px;
}

.article-wrap .article-figure iframe {
  width: 100%;
  max-width: 800px;
  aspect-ratio: 16 / 9;
  border: 0;
  border-radius: 12px;
  display: block;
}

.article-wrap .btns {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  column-gap: 12px;
}
.article-wrap .btns--center {
  display: flex;
  width: 100%;
  justify-content: center;
}
.article-wrap .btn {
  display: inline-flex;
  align-items: center;
  column-gap: 8px;
  border-radius: 999px;
  height: 52px;
  padding: 0 20px 0 24px;
  border: 0;
  cursor: pointer;
  font-family: var(--fc-font);
  text-decoration: none;
}
.article-wrap .btn--green {
  background: var(--fc-grad-green);
    width: 204px;
  justify-content: center;
}
.article-wrap .btn--orange {
  background: linear-gradient(180deg, #e7a40d 0%, #feba3f 100%);
  width: 204px;
  justify-content: center;
}
.article-wrap .btn span {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  line-height: 22px;
  text-transform: uppercase;
}
.article-wrap .btn img {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

/* Download card */
.article-wrap .download-card {
  display: grid;
  grid-template-columns: 240px 1fr;
  grid-template-rows: auto auto auto;
  gap: 16px 24px;
  border-radius: 20px;
  background: var(--fc-bg-blue-grey);
  padding: 40px;
  overflow: hidden;
  margin:30px 0;    /* 修改 */
  max-width: 1000px;     /* 新增，调小会变窄 */
}
.article-wrap .download-cover {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  align-self: center;
  overflow: hidden;
  width: 240px;
  max-width: 100%;
  aspect-ratio: 240 / 318;
  grid-row: 1 / -1;
}
.article-wrap .download-cover img {
  margin-left: -15%;
  width: 130%;
  height: 100%;
  object-fit: cover;
}
.article-wrap .download-card > h3 {
  grid-column: 2;
  margin: 0;
}
.article-wrap .download-card > .btns {
  grid-column: 2;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-start;
  align-items: center;
}
.article-wrap .download-card .fc-sd-secure {
  display: inline-flex;
  align-items: center;
  column-gap: 4px;
  flex: 0 0 100%;
  width: 100%;
  margin-top: 4px;
}
.article-wrap .download-card .fc-sd-secure img {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  display: block;
}
.article-wrap .download-card .fc-sd-secure span {
  font-size: 16px;
  color: #484e60;
  line-height: 22px;
  font-family: var(--fc-font);
}

.article-wrap .fc-seo-rec-card {
  display: flex;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  box-shadow: 0 1px 3px rgba(0,0,0,.08);
  margin: 40px 0;	
}

.article-wrap .fc-seo-rec-image {
  flex: 0 0 300px;
}

.article-wrap .fc-seo-rec-image img {
  display: block;
  width: 100%;
/*  aspect-ratio: 4 / 3;*/
/*  object-fit: cover;*/
  border-radius: 12px;
}

.article-wrap .fc-seo-rec-content {
  flex: 1;
  min-width: 0;
}

.article-wrap .fc-seo-rec-title {
  margin: 0 0 10px;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.35;
}
.article-wrap .fc-seo-rec-content p {
  line-height: 1.35;
}

.article-wrap .fc-seo-rec-card a {
  color: #093 !important;
  text-decoration: none !important;
}

.article-wrap .fc-seo-rec-card a:hover {
  text-decoration: underline !important;
}

@media (max-width: 768px) {

  .article-wrap .fc-seo-rec-card {
    flex-direction: column;
  }

  .article-wrap .fc-seo-rec-image {
    width: 100%;
    flex-basis: auto;
  }

}

.article-wrap .pros-cons {
  display: flex;
  align-items: stretch;
  column-gap: 24px;
  margin: 24px 0;
}
.article-wrap .pros-cons .pros,
.article-wrap .pros-cons .cons {
  flex: 1;
  display: flex;
  flex-direction: column;
  row-gap: 20px;
  border-radius: 16px;
  background: var(--fc-bg-blue-grey);
}
.article-wrap .pros-cons .pros {
  border: 1px solid var(--fc-tag-blue);
  padding: 23px;
}
.article-wrap .pros-cons .cons {
  padding: 24px;
}
.article-wrap .pros-cons strong {
  font-size: 20px;
  font-weight: 700;
  line-height: 28px;
/*  color: var(--fc-text-dark);*/
}
.article-wrap .pros-cons ul {
  display: flex;
  flex-direction: column;
  row-gap: 8px;
  padding-left: 0;
  list-style: none;
}
.article-wrap .pros-cons li {
  display: flex;
  column-gap: 8px;
  align-items: flex-start;
  margin-bottom: 0;
}
.article-wrap .pros-cons li i {
  flex-shrink: 0;
  width: 20px;
  margin-top: 2px;
  font-size: 20px;
  line-height: 1;
  text-align: center;
  font-family: var(--fa-style-family, "Font Awesome 6 Pro");
  font-weight: var(--fa-style, 900);
}
.article-wrap .pros-cons .pros i {
  color: var(--fc-green);
}
.article-wrap .pros-cons .cons i {
  color: #f44336;
}

.article-wrap .step-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--fc-green);
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  min-width: 72px;
  height: 32px;
  padding: 0 12px;
  flex-shrink: 0;
}

.article-wrap .compare-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border: 1px solid #e3e7f0;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  margin: 32px 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}
.article-wrap .compare-table thead tr {
  background: #f4f6f8;
}
.article-wrap .compare-table th,
.article-wrap .compare-table td {
  padding: 16px 20px;
  font-size: 16px;
  color: var(--fc-text-body);
  text-align: left;
  vertical-align: middle;
  border: 0;
  border-right: 1px solid #e3e7f0;
  border-bottom: 1px solid #e3e7f0;
  font-family: var(--fc-font);
}
.article-wrap .compare-table th:last-child,
.article-wrap .compare-table td:last-child {
  border-right: 0;
}
.article-wrap .compare-table tbody tr:last-child td {
  border-bottom: 0;
}
.article-wrap .compare-table th {
  font-weight: 600;
  color: #141d38;
}
.article-wrap .compare-table .col-label {
  background: #f4f6f8;
  font-weight: 600;
  color: #141d38;
  width: 200px;
}

/* FAQ */
.article-wrap .faq {
  display: flex;
  flex-direction: column;
}
.article-wrap .faq > h2 {
  width: auto;
  font-size: 40px;
  font-weight: 700;
  line-height: 58px;
  color: #141d38;
  margin: 0 0 20px;
}
.article-wrap .faq h4 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  align-self: stretch;
  cursor: pointer;
  margin: 20px 0 0;
  padding: 0 30px 0 40px;
  height: 56px;
  font-size: 22px;
  font-weight: 600;
  line-height: 25px;
  color: #141d38;
  border: 1px solid #141d3826;
  border-radius: 10px;
  background: #fff;
  overflow: hidden;
}

.article-wrap .faq h4::after {
  content: "";
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  margin-left: 12px;
  background:
    linear-gradient(var(--fc-green-2), var(--fc-green-2)) 4px 11px / 16px 2px no-repeat,
    linear-gradient(var(--fc-green-2), var(--fc-green-2)) 11px 4px / 2px 16px no-repeat;
}
.article-wrap .faq h4.is-open {
  border-radius: 10px 10px 0 0;
  border-bottom: none;
  background: #e8f8ea;
  color: #141d38;
}
.article-wrap .faq h4.is-open::after {
  background: linear-gradient(#141d38, #141d38) 4px 11px / 16px 2px no-repeat;
}
.article-wrap .faq h4 + p,
.article-wrap .faq h4 + .faq-answer {
  display: none;
  margin: 0;
  padding: 28px 30px 24px 40px;
  border: 1px solid #141d3826;
  border-top: none;
  border-radius: 0 0 10px 10px;
  background: #fff;
  font-size: 17px;
  color: var(--fc-text-body);
}
.article-wrap .faq h4.is-open + p,
.article-wrap .faq h4.is-open + .faq-answer {
  display: block;
}

.article-wrap .faq .faq-answer > *:last-child {
  margin-bottom: 0;
}
.article-wrap .faq .faq-answer p {
  margin: 0 0 16px;
  padding: 0;
  border: none;
  border-radius: 0;
  background: transparent;
  font-size: inherit;
  color: inherit;
  line-height: inherit;
}
.article-wrap .faq .faq-answer p:last-child {
  margin-bottom: 0;
}
.article-wrap .faq .faq-answer ul,
.article-wrap .faq .faq-answer ol {
  margin: 0 0 16px;
  padding-left: 1.25em;
}
.article-wrap .faq .faq-answer ul:last-child,
.article-wrap .faq .faq-answer ol:last-child {
  margin-bottom: 0;
}
.article-wrap .faq .faq-answer table {
  width: 100%;
  margin: 0 0 16px;
}
.article-wrap .faq .faq-answer table:last-child {
  margin-bottom: 0;
}

/* CTA banner */
.article-wrap .cta-banner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border: 1px solid var(--fc-border);
  border-radius: 20px;
  padding: 39px;
  margin-top: 30px;
  margin-bottom: 30px;
}
.article-wrap .cta-head {
  display: inline-flex;
  align-items: center;
  column-gap: 16px;
}
.article-wrap .cta-head img {
  width: 52px;
  height: 52px;
  border-radius: 8px;
}
.article-wrap .cta-head strong {
  font-size: 24px;
  font-weight: 700;
  line-height: 34px;
  color: #141d38;
}

/* Tips */
.article-wrap .tips {
  display: flex;
  flex-direction: column;
  row-gap: 12px;
  padding: 24px;
  background: #ebffeb;
  border-radius: 16px;
  margin: 24px 0;
}
.article-wrap .tips > div {
  display: inline-flex;
  align-items: center;
  column-gap: 8px;
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  line-height: 28px;
  color: #141d38;
  font-family: var(--fc-font);
}
.article-wrap .tips > div img {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
.article-wrap .tips p {
  margin: 0;
  font-size: 18px;
}
.article-wrap .tips a {
  color: var(--fc-tag-blue);
  text-decoration: underline;
  font-family: var(--fc-font);
}
.article-wrap .tips a:hover {
  text-decoration: none;
}

.article-wrap .toc {
  border: 1px solid var(--fc-border);
  border-radius: 16px;
  overflow: hidden;
  background-image: var(--fc-grad-green);
}
.article-wrap .toc-head {
  padding: 13px 24px;
  height: 60px;
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  line-height: 34px;
  text-transform: uppercase;
}
.article-wrap .toc-list {
  background: #fff;
  border-radius: 16px 16px 0 0;
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  row-gap: 8px;
  max-height: calc(100vh - 180px);
  overflow-y: auto;
  scrollbar-width: thin;
}
.article-wrap .toc-list::-webkit-scrollbar { width: 4px; }
.article-wrap .toc-list::-webkit-scrollbar-thumb {
  background: #d7d7d7;
  border-radius: 2px;
}
.article-wrap .toc-row {
  display: flex;
  align-items: flex-start;
  column-gap: 8px;
  padding: 4px 0;
}
.article-wrap .toc-row img {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}
.article-wrap .toc-row a {
  font-size: 16px;
  line-height: 22px;
  color: var(--fc-text-body);
  text-decoration: none;
}
.article-wrap .toc-row a:hover {
  color: var(--fc-text-dark);
}
.article-wrap .toc-row.child {
  padding-left: 30px;
  display: none;
}
.article-wrap .toc-row.child.is-expanded { display: flex; }
.article-wrap .toc-row.show-active {
  background: rgba(20, 29, 56, 0.06);
  border-left: 3px solid var(--fc-text-dark);
  margin-left: -24px;
  padding-left: 18px;
  width: calc(100% + 24px);
  border-radius: 0 6px 6px 0;
}
.article-wrap .toc-row.child.show-active {
  padding-left: 48px;
}
.article-wrap .toc-row.show-active a {
  color: var(--fc-text-dark);
  font-weight: 600;
}

/* Recommendations sidebar */
.article-wrap .recs {
  display: flex;
  flex-direction: column;
  row-gap: 24px;
}
.article-wrap .recs-head {
  font-size: 24px;
  font-weight: 700;
  line-height: 34px;
  color: var(--fc-text-dark);
}
.article-wrap .rec-card {
  border-radius: 16px;
  padding: 48px 0 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-image: var(--fc-grad-card);
  overflow: hidden;
}
.article-wrap .rec-logo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  filter: drop-shadow(0 0 8px #0000001a);
  object-fit: cover;
}
.article-wrap .rec-card > div {
  margin-top: 16px;
  padding: 0 24px;
  width: 100%;
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  line-height: 28px;
  color: var(--fc-text-dark);
  font-family: var(--fc-font);
}
.article-wrap .rec-card > p {
  margin-top: 8px;
  padding: 0 24px;
  width: 100%;
  text-align: center;
  font-size: 16px;
  line-height: 22px;
  color: var(--fc-text-body);
  font-family: var(--fc-font);
}
.article-wrap .rec-btn {
  min-width: 360px;
  height: 40px;
  border: 0;
  border-radius: 999px;
  background: #fff;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
}
.article-wrap .rec-btn a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: var(--fc-text-dark);
  text-decoration: none;
}
.article-wrap .promo-box { margin-bottom: 30px; }
.article-wrap .rec-card.image-card {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  width: 100%;
}
.article-wrap .rec-card.image-card a {
  display: block;
  max-width: 260px;
  width: 100%;
}
.article-wrap .rec-card.image-card img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  transition: transform 0.2s ease;
}
.article-wrap .rec-card.image-card a:hover img {
  transform: scale(1.02);
}

/* Category sidebar */
.article-wrap .cats {
  display: flex;
  flex-direction: column;
  row-gap: 24px;
}
.article-wrap .cat {
  border: 1px solid var(--fc-border);
  border-radius: 16px;
  padding: 20px 25px 23px;
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}
.article-wrap .cat-head {
  display: flex;
  align-items: center;
  height: 40px;
  font-size: 24px;
  font-weight: 700;
  line-height: 34px;
  color: #141d38;
  text-transform: uppercase;
}
.article-wrap .cat-list {
  display: flex;
  flex-direction: column;
  row-gap: 12px;
  padding-left: 16px;
}
.article-wrap .cat-list li {
  font-size: 15px;
  line-height: 22px;
}
.article-wrap .cat-list a {
  color: var(--fc-text-body);
  text-decoration: none;
}
.article-wrap .cat-list a:hover {
  color: var(--fc-text-dark);
}

.article-wrap .cat-list li.hot::marker {
  color: var(--fc-green-2);
}
.article-wrap .cat-list li.hot a {
  color: var(--fc-green-2);
  font-weight: 600;
}
.article-wrap .cat-list li.hot a:hover {
  color: var(--fc-green);
}

.article-wrap .pricing {
  display: flex;
  column-gap: 20px;
  margin-top: -19px;
  border: 1px solid #00960026;
  border-radius: 20px;
  padding: 11px;
  overflow: hidden;
  background: linear-gradient(180deg, #00960026 0%, #90ee9026 50%, #8fc78f1a 100%);
}
.article-wrap .plan {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
  min-height: 608px;
  padding: 24px 32px;
  border-radius: 16px;
  position: relative;
}
.article-wrap .plan.featured {
  background: var(--fc-grad-green);
}
.article-wrap .plan > .cost,
.article-wrap .plan > .year {
  margin-top: -12px;
}
.article-wrap .plan p {
  margin: 0;
}
.article-wrap .plan .label {
  font-size: 16px;
  line-height: 22px;
  color: #6c757d;
}
.article-wrap .plan .name {
  font-size: 24px;
  font-weight: 700;
  line-height: 34px;
  color: #141d38;
}
.article-wrap .plan .cost {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  line-height: 34px;
}
.article-wrap .plan .cost strong {
  font-size: 28px;
  font-weight: 700;
  color: #f59919;
}
.article-wrap .plan .cost .unit {
  font-size: 20px;
  font-weight: 600;
  color: #6c757d;
}
.article-wrap .plan .cost .bill {
  font-size: 20px;
  color: #6c757d;
}
.article-wrap .plan .year,
.article-wrap .plan .desc {
  font-size: 16px;
  line-height: 22px;
  color: #6c757d;
}
.article-wrap .plan .desc {
  color: #141d38;
}
.article-wrap .plan ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 16px;
  line-height: 22px;
  color: #141d38;
}
.article-wrap .plan li {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
}
.article-wrap .plan li img {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
.article-wrap .plan .btn {
  margin-top: auto;
  width: 100%;
  justify-content: center;
  height: 56px;
}
.article-wrap .plan .btn span {
  text-transform: none;
}
.article-wrap .plan .btn img {
  width: 20px;
  height: 20px;
}
.article-wrap .plan.featured .btn--green {
  background: #fff;
}
.article-wrap .plan.featured .btn--green span {
  color: #34c040;
}
.article-wrap .plan .note {
  margin-top: -12px;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  line-height: 22px;
  color: #141d38;
}
.article-wrap .plan .cancel {
  text-align: center;
  font-size: 16px;
  line-height: 22px;
  color: #6c757d;
}
.article-wrap .plan .ribbon {
  position: absolute;
  top: 67px;
  left: 91px;
  display: flex;
  align-items: flex-start;
  width: 108px;
  height: 54px;
  padding-bottom: 4px;
  pointer-events: none;
}
.article-wrap .plan .ribbon span {
  display: flex;
  flex-grow: 1;
  align-items: flex-start;
  padding: 8px 15px 20px 18px;
  background: url(/assets/img/figma-content/mol5lbhg-cj48278.svg) center / cover no-repeat;
  filter: drop-shadow(0 2px 8px #00000040);
  font-size: 16px;
  font-weight: 700;
  line-height: 22px;
  color: #9a4815;
  text-shadow: 0 2px 6px #00000033;
}
.article-wrap .plan.featured .label,
.article-wrap .plan.featured .name,
.article-wrap .plan.featured .cost .unit,
.article-wrap .plan.featured .cost .bill,
.article-wrap .plan.featured .cost strong,
.article-wrap .plan.featured .year,
.article-wrap .plan.featured .desc,
.article-wrap .plan.featured li,
.article-wrap .plan.featured .note,
.article-wrap .plan.featured .cancel {
  color: #fff;
}

.article-wrap .related {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px;
  border-radius: 20px;
  background: var(--fc-bg-blue-grey);
}
.article-wrap .related-head {
  font-size: 24px;
  font-weight: 700;
  line-height: 34px;
  color: var(--fc-text-dark);
}
.article-wrap .related a {
  color: var(--fc-text-dark);
  text-decoration: none;
}
.article-wrap .related a:hover {
  color: var(--fc-green-2);
}

.article-wrap .vid-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 376px;
  height: 412px;
  padding: 24px;
  border-radius: 16px;
  background: var(--fc-bg-blue-grey);
  overflow: hidden;
}
.article-wrap .vid-card .thumb {
  position: relative;
  min-width: 328px;
  height: 219px;
  border-radius: 8px;
  background-color: #00000033;
  background-image: url(/assets/img/figma-content/mol5lbi3-nvabgjr.png);
  background-position: -13px -4px;
  background-size: 125.79% 103.65%;
  background-repeat: no-repeat;
}
.article-wrap .vid-card .thumb img {
  position: absolute;
  top: 80px;
  left: 134px;
  width: 60px;
  height: 60px;
}
.article-wrap .vid-card p {
  margin: 12px 0 0;
  min-width: 328px;
  font-size: 16px;
  line-height: 22px;
  color: var(--fc-text-body);
}
.article-wrap .vid-card .rec-btn {
  min-width: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Product recommendations */
.article-wrap .prod-recs {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 40px;
  padding: 100px 270px;
  background: var(--fc-bg-blue-grey);
}
.article-wrap .prod-inner {
  width: 1376px;
  max-width: 100%;
}
.article-wrap .prod-head {
  display: flex;
  align-items: center;
  align-self: stretch;
  justify-content: space-between;
}
.article-wrap .prod-head h2 {
  margin: 0;
  font-size: 40px;
  font-weight: 700;
  line-height: 50px;
  color: #141d38;
}
.article-wrap .prod-arrows {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 132px;
  height: 58px;
  flex-shrink: 0;
}
.article-wrap .prod-arrows img {
  width: 58px;
  height: 58px;
  flex-shrink: 0;
  cursor: pointer;
}
.article-wrap .prod-track {
  margin-top: 40px;
  width: 100%;
  max-width: 1380px;
  height: 486px;
  overflow: hidden;
}
.article-wrap .prod-track .swiper-slide {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 520px !important;
  flex-shrink: 0 !important;
  height: 486px;
  border-radius: 16px;
  background: #fff;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}
.article-wrap .prod-track .swiper-slide:hover .title {
  color: var(--fc-green-2);
}
.article-wrap .prod-recs .meta {
  display: flex;
  align-items: flex-start;
  align-self: stretch;
  gap: 16px;
  padding: 32px 32px 0;
}
.article-wrap .prod-recs .meta > div {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: center;
  gap: 12px;
}
.article-wrap .prod-recs .logo {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.article-wrap .prod-recs .title {
  margin: 0;
  padding: 12px 0;
  height: 52px;
  font-size: 24px;
  font-weight: 600;
  line-height: 29px;
  color: #141d38;
}
.article-wrap .prod-recs .meta p {
  margin: 0;
  font-size: 18px;
  line-height: 22px;
font-family: var(--fc-font);
  color: var(--fc-text-body);
}
.article-wrap .prod-recs .shot {
  display: flex;
  flex-direction: column;
  align-self: stretch;
  margin-top: auto;
  padding: 32px;
}
.article-wrap .prod-recs .shot img {
  display: block;
  width: 100%;
  max-width: 456px;
  height: auto;
  object-fit: cover;
}

.catalog-box {
  position: fixed;
  bottom: 60px;
  left: 15px;
  width: 240px;
  border-radius: 10px;
  z-index: 1001;
  display: none;
  flex-direction: column-reverse;
  pointer-events: none;
}
.catalog-box .shrink {
  width: 61px;
  height: 61px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid #e5e7eb;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
  border-radius: 8px;
  pointer-events: auto;
}
.catalog-box .shrink-node {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  cursor: pointer;
}
.catalog-box .shrink-node i {
  font-size: 25px;
  color: #6b7280;
}
.catalog-box .catelog-panel {
  width: 260px;
  margin-bottom: 12px;
  display: none;
  background: #fff;
  border: 1px solid #e5e7eb;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  border-radius: 12px;
  pointer-events: auto;
  overflow: hidden;
}
.catalog-box .page-content {
  padding: 16px 0;
  background: #fff;
}
.catalog-box .page-content .title {
  padding: 0 20px 12px;
  font-weight: 700;
  font-size: 16px;
  color: #111827;
}
.catalog-box .catalog-list {
  margin-left: 20px;
  padding-right: 5px;
  display: flex;
  flex-flow: column nowrap;
  max-height: 50vh;
  overflow-y: auto;
}
.catalog-box .catalog-list a {
  font-size: 14px;
  line-height: 146.68%;
  color: #484e60;
  margin-bottom: 10px;
  padding-left: 20px;
  position: relative;
}
.catalog-box .catalog-list a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 3px;
  background: transparent;
  border-radius: 2px;
}
.catalog-box .catalog-list a:hover {
  color: #6b6e7a;
}
.catalog-box .catalog-list a.a-highlight {
  background: rgba(20, 29, 56, 0.06);
  border-radius: 0 6px 6px 0;
  color: var(--fc-text-dark);
  font-weight: 600;
}
.catalog-box .catalog-list a.a-highlight::before {
  background: var(--fc-text-dark);
}
.catalog-box .catalog-sub-item {
  margin-left: 20px;
  font-size: 14px;
  color: #484e60;
  padding-left: 20px;
}
.catalog-box-scroll {
  position: fixed;
  bottom: 60px;
}

.th-header { position: relative !important; z-index: 100 !important; }
.main-menu ul.sub-menu,
.main-menu ul.mega-menu,
.product-mega-menu { z-index: 9999 !important; }
.main-menu .menu-item-has-children { overflow: visible !important; }
.th-menu-wrapper { z-index: 999999 !important; }

@media (max-width: 1440px) {
  .article-breadcrumb { width: 100%; padding-left: 20px; }
  .article-wrap .article-meta {
    width: 100%;
    flex-direction: column;
    align-items: center;
    row-gap: 16px;
  }
  .article-wrap .lang-select {
    position: static;
    width: 120px;
    height: 36px;
    font-size: 14px;
    padding: 8px 24px 8px 10px;
    margin-top: 8px;
  }
  .article-wrap .prod-recs {
    padding: 100px 40px;
  }
  .article-wrap .prod-inner {
    width: 100%;
  }
  .article-wrap .sidebar-sticky {
    width: 300px;
    max-width: 300px;
  }
  .article-wrap .two-col {
    gap: 36px;
  }
  .article-wrap .rec-btn {
    min-width: 0;
    width: calc(100% - 32px);
  }
  /* 仅多列表格横向滚动；两列小表保持铺满宽度 */
  .article-wrap .compare-table:has(th:nth-child(4)) {
    display: block;
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .article-wrap .compare-table:has(th:nth-child(4)) th,
  .article-wrap .compare-table:has(th:nth-child(4)) td {
    white-space: nowrap;
  }
}
@media (max-width: 1199px) {
  .article-wrap .article-breadcrumb { padding: 0 40px; }
  .article-wrap .article-header > h1 { padding: 20px 40px 0; }
  .article-wrap .prod-track .swiper-slide {
    flex-shrink: 1;
    min-width: 0;
  }
}
@media (max-width: 1023px) {
  .article-wrap .article-breadcrumb {
    height: 44px;
    padding: 0 16px;
    font-size: 12px;
    line-height: 15px;
  }
  .article-wrap  h1 {
    padding: 20px 16px 0;
    font-size: 28px;
    line-height: 36px;
  }

  .article-wrap .article-header {
    position: relative;
  }	
  .article-wrap .lang-select {
    position: absolute;
    top: 6px;
    right: 16px;
    z-index: 2;
    width: 100px;
    height: 32px;
    font-size: 12px;
    padding: 6px 24px 6px 8px;
    margin: 0;
  }	
  .article-wrap .article-body {
    width: 100%;
    max-width: 100%;
    padding: 0 20px;
    overflow-wrap: break-word;
  }
  .article-wrap .two-col {
    flex-direction: column;
    padding: 0 30px;
    margin-top: 20px;
    gap: 0;
  }
  .article-wrap .sidebar-sticky { display: none; }
  .catalog-box {
    display: flex;
    bottom: 60px;
    left: 15px;
  }
  .article-wrap .author { width: 100%; justify-content: center; }
  .article-wrap .author img { width: 32px; height: 32px; }
  .article-wrap .article-meta-info {
    width: 100%;
    justify-content: center;
  }
}
@media (min-width: 769px) and (max-width: 1023px) {
  .article-wrap .article-body h2 {
    font-size: 26px;
    line-height: 36px;
  }
  .article-wrap .article-body h3 {
    font-size: 20px;
    line-height: 28px;
  }
    .article-wrap .article-body h4 {
    font-size: 20px;
    line-height: 28px;
  }
  .article-wrap .article-body h5 {
    font-size: 18px;
    line-height: 26px;
  }
}
@media (max-width: 768px) {
  .article-wrap {
    margin-bottom: 48px;
    padding-bottom: 32px;
  }
  .product-banner,
  .product-banner.is-banner-visible { display: none; }
  .article-wrap .article-body h2 { letter-spacing: -0.2px; }
  .article-wrap .article-body p {
    font-size: 18px;
  }
  .article-wrap .article-body ul,
  .article-wrap .article-body ol {
    font-size: 16px;
    line-height: 26px;
  }
  .article-wrap .btns {
    flex-direction: column;
    width: 100%;
    row-gap: 12px;
  }
  .article-wrap .btn {
    width: 100%;
    justify-content: center;
    height: 44px;
  }
  .article-wrap .download-card {
    display: flex;
    flex-direction: column;
    padding: 40px;
    align-items: stretch;
  }
  .article-wrap .download-cover { display: none; }
  .article-wrap .download-card > h3,
  .article-wrap .download-card > .btns {
    width: 100%;
  }
  .article-wrap .download-card > .btns {
    justify-content: flex-start;
  }
  .article-wrap .download-card .btn {
    width: auto;
  }
  .article-wrap .pros-cons {
    flex-direction: column;
    row-gap: 20px;
  }
  .article-wrap .pros-cons .pros,
  .article-wrap .pros-cons .cons {
    padding: 20px;
    row-gap: 16px;
    border-radius: 12px;
  }
  .article-wrap .pros-cons li i {
    width: 16px;
    font-size: 16px;
  }
  .article-wrap .article-figure { margin-bottom: 32px; }
  .article-wrap .step-badge {
    min-width: 60px;
    height: 28px;
    font-size: 13px;
  }
	
  .article-wrap .compare-table th,
  .article-wrap .compare-table td {
    padding: 10px 12px;
    font-size: 16px;
  }
  .article-wrap .compare-table .col-label {
    width: 110px;
    min-width: 110px;
  }
  .article-wrap .compare-table:has(th:nth-child(4)) {
    display: block !important;
    max-width: 100% !important;
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch;
  }
  .article-wrap .compare-table:has(th:nth-child(4)) th,
  .article-wrap .compare-table:has(th:nth-child(4)) td {
    white-space: nowrap;
  }
  .article-wrap .compare-table img,
  .article-wrap .compare-table svg {
    height: auto !important;
  }		
  .article-wrap .faq h4 {
    height: auto;
    min-height: 56px;
    padding: 16px;
    align-items: flex-start;
    border-radius: 8px;
    font-size:20px;
  }
  .article-wrap .faq h4::after {
    margin-left: 12px;
    margin-top: 2px;
  }
  .article-wrap .faq h4.is-open {
    border-radius: 8px 8px 0 0;
  }
  .article-wrap .faq h4 + p,
  .article-wrap .faq h4 + .faq-answer {
    padding: 16px;
    font-size: 18px;
    border-radius: 0 0 8px 8px;
  }
  .article-wrap .cta-banner {
    padding: 20px;
  }
  .article-wrap .cta-banner > .btns {
    margin-top: 20px;
  }
  .article-wrap .pricing {
    flex-direction: column;
    margin-top: 0;
    padding: 10px;
    gap: 16px;
  }
  .article-wrap .plan {
    min-height: 0;
    padding: 20px;
    gap: 16px;
    border-radius: 12px;
  }
  .article-wrap .plan li img {
    width: 16px;
    height: 16px;
  }
  .article-wrap .plan .btn {
    height: 44px;
  }
  .article-wrap .plan .btn img {
    width: 16px;
    height: 16px;
  }
  .article-wrap .plan .ribbon {
    top: 54px;
    left: 91px;
  }
  .article-wrap .related {
    padding: 20px;
    border-radius: 12px;
  }
  .article-wrap .related li {
    font-size: 14px;
    line-height: 20px;
  }
  .article-wrap .prod-recs {
    display: none;
  }
  .article-wrap .article-figure iframe {
    border-radius: 8px;
  }
  .article-wrap .rec-logo {
    width: 60px;
    height: 60px;
  }
  .article-wrap .rec-btn {
    min-width: 0;
    width: calc(100% - 32px);
  }
  .article-wrap .cat-head {
    font-size: 18px;
    line-height: 25px;
  }
  .article-breadcrumb li[aria-current="page"] {
    font-size: 12px;
  }
}

.online-help-page,
.online-help-page .two-col {
  overflow: visible;
}

.online-help-page > .article-breadcrumb,
.online-help-page > .two-col {
  width: min(1380px, calc(100% - 48px));
  margin-left: auto;
  margin-right: auto;
}

.online-help-page > .article-breadcrumb {
  height: auto;
  max-width: none;
  margin: 8px auto 12px;
  padding: 30px 40px 0;
}

.online-help-page > .article-breadcrumb ol {
  gap: 10px;
  padding: 0;
}

.online-help-page > .article-breadcrumb li,
.online-help-page > .article-breadcrumb a {
  color: #68748c;
  font-size: 14px;
}

.online-help-page > .article-breadcrumb li[aria-current="page"] {
  color: #049f55;
  font-weight: 600;
}

.online-help-page > .article-breadcrumb li > span[aria-hidden="true"] {
  color: #a2adbd;
}

.online-help-page > .two-col {
  margin-top: 0;
}

.online-help-page #sub-nav-bar {
  display: block !important;
  position: sticky !important;
  top: var(--oh-site-header-height, 0px) !important;
  z-index: 11;
  padding: 14px 0 !important;
  background: #fff;
}

.online-help-page #sub-nav-bar .btn-groups {
  display: none;
}

.online-help-page #sub-nav-bar .btn-groups.show {
  display: block;
  margin: 0;
}

.online-help-page #sub-nav-bar .sub-nav-mobile.d-block {
  display: block !important;
}

.online-help-page #sub-nav-bar .sub-nav-logo a {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  line-height: 34px;
}

.online-help-page #sub-nav-bar .sub-nav-logo img {
  display: inline-block !important;
  width: auto !important;
  height: 34px !important;
  margin: 0 !important;
}

.online-help-page .article-body > header {
  min-height: 112px;
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 14px;
  padding: 2px 0 14px;
  overflow: hidden;
}

.online-help-page h1 {
  margin: 0 0 13px;
  padding: 0 !important;
  text-align: left !important;
  color: #101a38;
  font-size: clamp(38px, 4vw, 54px);
  line-height: 1.05;
  letter-spacing: -.035em;
}

.online-help-page .article-body > header p {
  max-width: 610px;
  margin: 0;
  color: #5c687f;
  font-size: 17px;
  line-height: 1.65;
}

.oh-deco {
  position: relative;
  width: 245px;
  height: 122px;
  flex: 0 0 auto;
}

.oh-deco::before,
.oh-deco::after {
  content: "";
  position: absolute;
  border-radius: 50%;
}

.oh-deco::before {
  width: 108px;
  height: 108px;
  right: 28px;
  top: 0;
  background: linear-gradient(145deg, #f0f7f4, #e5f5ee);
  box-shadow: inset 0 0 0 1px #e5eee9;
}

.oh-deco::after {
  width: 160px;
  height: 65px;
  right: -20px;
  bottom: 4px;
  border-bottom: 2px solid #9bbdf9;
  border-radius: 0 0 70% 50%;
  transform: rotate(-8deg);
}

.oh-deco > b {
  position: absolute;
  right: 62px;
  top: 19px;
  z-index: 2;
  color: #79d7ae;
  font-size: 57px;
  font-weight: 800;
  line-height: 1;
  transform: rotate(7deg);
}

.oh-deco > span {
  position: absolute;
  left: 8px;
  top: 37px;
  z-index: 3;
  width: 102px;
  height: 67px;
  border-radius: 32px 32px 32px 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(145deg, #56cf68, #25b958);
  box-shadow: 0 12px 28px rgba(40,185,89,.22);
}

.oh-deco > span i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fff;
}

.online-help-page .article-body h2 {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  column-gap: 18px;
  align-items: center;
  scroll-margin-top: calc(var(--oh-site-header-height, 0px) + var(--oh-product-bar-height, 94px) + 64px);
}

.oh-num {
  width: 46px;
  height: 46px;
  border-radius: 11px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #049f55;
  background: #eafaf1;
  font-size: 20px;
  font-weight: 800;
  line-height: 1;
}

.online-help-page .article-body h3 {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.oh-intro-card {
  margin-bottom: 24px;
  padding: 24px 28px;
  border: 1px solid #edf1f7;
  border-radius: 16px;
  background: linear-gradient(135deg, #fbfcff, #f4f7fc);
  box-shadow: 0 9px 28px rgba(26,42,76,.035);
}

.oh-intro-card p {
  margin: 0 0 18px;
  color: #46526b;
  font-size: 15px;
  line-height: 1.8;
}

.oh-intro-card a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #101a38;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
}

.oh-intro-card .fa-file-pdf {
  color: #ff4e5c;
  font-size: 25px;
}

.oh-intro-card .fa-chevron-right {
  color: #526078;
  font-size: 12px;
}

/* Unique hero */
.oh-hero {
  position: relative;
  margin-bottom: 24px;
  padding: 22px 30px 30px;
  overflow: hidden;
  border-radius: 18px;
  background: linear-gradient(125deg, #c7fae8 0%, #ddfbf3 44%, #a8ecf1 100%);
}

.oh-hero::before {
  content: "";
  position: absolute;
  inset: auto -70px -115px 32%;
  height: 240px;
  border-radius: 50%;
  background: rgba(255,255,255,.4);
  filter: blur(2px);
}

.oh-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 52%;
  height: 2px;
  background: repeating-linear-gradient(90deg, rgba(255,255,255,.1) 0 7px, rgba(255,255,255,.6) 7px 9px);
  opacity: .75;
}

.oh-hero > img {
  position: absolute;
  left: 34px;
  top: 28px;
  z-index: 3;
  width: 58px;
  height: 58px;
  padding: 10px;
  object-fit: contain;
  border-radius: 18px;
  background: rgba(255,255,255,.78);
  box-shadow: 0 12px 28px rgba(0,104,72,.12);
}

.oh-hero > span {
  position: absolute;
  z-index: 4;
  padding: 8px 12px;
  border-radius: 10px;
  background: rgba(255,255,255,.78);
  color: #35856c;
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 8px 20px rgba(39,106,91,.10);
}

.oh-hero > span:nth-of-type(1) { right: 7%; top: 28px; transform: rotate(7deg); }
.oh-hero > span:nth-of-type(2) { right: 4%; bottom: 24px; transform: rotate(-5deg); }
.oh-hero > span:nth-of-type(3) { left: 10%; bottom: 24px; transform: rotate(5deg); }

.oh-hero > div {
  position: relative;
  z-index: 2;
  width: min(58%, 500px);
  margin: 0 auto;
  padding: 9px 9px 17px;
  border-radius: 15px 15px 20px 20px;
  background: linear-gradient(160deg, #20304b, #62758c);
  box-shadow: 0 22px 32px rgba(29,77,92,.18);
}

.oh-hero > div::after {
  content: "";
  position: absolute;
  width: 115%;
  height: 18px;
  left: -7.5%;
  bottom: -10px;
  border-radius: 4px 4px 28px 28px;
  background: linear-gradient(#bdcbd2, #78929d);
}

.oh-hero > div img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 800 / 528;
  object-fit: contain;
  border-radius: 8px;
  background: #17191d;
}

@media (max-width: 1199px) {
  .oh-deco {
    width: 190px;
  }
}

@media (max-width: 991px) {
  .online-help-page > .article-breadcrumb,
  .online-help-page > .two-col {
    width: 100%;
    max-width: none;
  }

  .online-help-page > .article-breadcrumb {
    margin: 8px auto 10px;
    padding: 0 16px;
  }

  .online-help-page > .two-col {
    margin-top: 0;
    padding: 0 16px 48px !important;
  }

  .online-help-page .article-body {
    padding: 0 !important;
  }

  .online-help-page h1 {
    font-size: 28px;
    line-height: 1.15;
    letter-spacing: -.02em;
  }

  .online-help-page .article-body > header p {
    font-size: 15px;
    line-height: 1.55;
  }

  .online-help-page .article-body h2 {
    font-size: 22px;
    line-height: 1.35;
  }

  .online-help-page .article-body h3 {
    font-size: 18px;
    line-height: 1.4;
  }

  .oh-intro-card {
    padding: 18px 16px;
  }
}

@media (max-width: 680px) {
  .online-help-page > .article-breadcrumb,
  .online-help-page > .two-col {
    padding-left: 16px;
    padding-right: 16px;
  }

  .online-help-page .article-body > header {
    min-height: auto;
  }

  .online-help-page h1 {
    font-size: 26px;
    margin-bottom: 10px;
  }

  .online-help-page .article-body h2 {
    grid-template-columns: 40px minmax(0, 1fr);
    column-gap: 12px;
    font-size: 20px;
    line-height: 1.35;
    overflow-wrap: anywhere;
  }

  .online-help-page .article-body h3 {
    font-size: 17px;
  }

  .oh-deco {
    display: none;
  }

  .oh-hero {
    padding: 25px 16px 36px;
  }

  .oh-hero > img {
    left: 20px;
    top: 25px;
    width: 52px;
    height: 52px;
  }

  .oh-hero > div {
    width: 92%;
    margin-top: 28px;
  }

  .oh-hero > span:nth-of-type(1) {
    right: 5%;
    top: 20px;
  }

  .oh-hero > span:nth-of-type(2),
  .oh-hero > span:nth-of-type(3) {
    display: none;
  }

  .oh-num {
    width: 40px;
    height: 40px;
    font-size: 17px;
  }
}

.steps-video-box {
  width: 100%;
  position: relative;
  margin: 0 auto;
    margin-top: 0px;
  margin-top: 20px;
}
.steps-video-box .video-container {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 30px;
  height: 0;
  overflow: hidden;
}
@media (min-width: 992px) {
  .steps-imgs {
    width: 50%;
  }
}
.mark01{
  border-bottom: dashed 2px #093;
}
.mark02{
  background:linear-gradient(transparent 50%,rgba(248, 255, 140, 0.69) 50%);
  font-weight:normal;
}
.mark03{
  border-bottom: dashed 2px #093;
}
.mark04{
  color: #093;
}
.mark05{
  color: #F00;
}
