@charset "UTF-8";
:root {
  /* === 背景色 === */
  --bg-primary: #ffffff;
  --bg-secondary: #f5f5f5;
  /* === 品牌主色 === */
  --brand-primary: #35BBC4;
  --brand-primary-hover: #269AA2;
  --brand-primary-active: #A3E4E8;
  /* === 辅助色 === */
  --brand-secondary: #ff9800;
  --brand-secondary-hover: #ffd699;
  --brand-secondary-active: #cc7a00;
  /* === 分割线 === */
  --border-color: #e0e0e0;
  /* === 文字颜色 === */
  --text-primary: #333;
  --text-secondary: #666;
  --text-disabled: #999;
  /* === 字体大小 === */
  --font-size-xs: 12px;
  --font-size-sm: 14px;
  --font-size-md: 16px;
  --font-size-lg: 18px;
  --font-size-xl: 20px;
  --container-width: 1272px;
}

/* === CSS Reset / Global Base === */
:root {
  /* 可覆盖 open-props 的默认值（可选） */
}

html, body {
font-family: 'PoppinsRegular', 'DinotRegular', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: var(--font-size-md);
  color: var(--color-text-primary);
  background-color: var(--color-bg-primary);
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: 0;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
}

html {
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.3s ease;
}
a:hover {
  text-decoration: underline;
}

ul, ol {
  list-style: none;
}

img, video {
  max-width: 100%;
  height: auto;
  display: block;
  background-color: var(--bg-secondary);
  object-fit: cover;
}

button, input, select, textarea {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
}

button {
  cursor: pointer;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.2;
}

/* Simple responsive container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.click-active {
  cursor: pointer;
  transition: all 0.3s ease;
}
.click-active:hover {
  color: var(--brand-primary);
}
.click-active:active {
  opacity: 0.8;
}

.btn {
  display: inline-flex;
  align-items: center;
  height: 40px;
  padding: 0 20px;
  border-radius: 6px;
  font-size: var(--font-size-sm);
  font-weight: 500;
  text-align: center;
  text-decoration: none;
  color: #fff;
  background-color: var(--brand-primary);
  transition: all 0.3s ease;
  justify-content: center;
}
.btn:hover {
  background-color: var(--brand-primary-hover);
  color: #fff;
  text-decoration-line: none;
}
.btn:active {
  background-color: var(--brand-primary-active);
  opacity: 0.8;
}

.btn-primary {
  background-color: var(--brand-primary);
}
.btn-primary:hover {
  background-color: var(--brand-primary-hover);
}
.btn-primary:active {
  background-color: var(--brand-primary-active);
}

.icon {
  display: inline-block;
  width: 24px;
  height: 24px;
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
}

.icon-lang {
  background-image: url("/icon/lang.svg");
}

.icon-share-link {
  background-image: url("/icon/share-link.svg");
}

.icon-share-twitter {
  background-image: url("/icon/share-twitter.svg");
}

.icon-share-facebook {
  background-image: url("/icon/share-facebook.svg");
}

.icon-share-url {
  background-image: url("/icon/share-url.svg");
}

.icon-arrow-fill {
  background-image: url("/icon/arrow-fill.svg");
}

.icon-fold {
  background-image: url("/icon/fold.svg");
}

h1 {
  font-size: 48px;
  font-weight: 510;
  text-align: center;
}

.main-content {
  padding: 64px 0;
  background-color: var(--bg-primary);
  max-width: var(--container-width);
  margin: 0 auto;
}

.section + .section {
  margin-top: 64px;
}

.title-section-sub {
  font-size: var(--font-size-xl);
  font-weight: 400;
  max-width: 680px;
  text-align: center;
  display: block;
  margin: 0 auto;
}

.title-section-tip {
  font-size: var(--font-size-sm);
  font-weight: 400;
  text-align: center;
  display: block;
  color: var(--text-secondary);
  margin-top: 32px;
}

.section-title {
  font-size: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--text-primary);
  margin: 64px 0 24px 0;
}

.mobile {
  display: none;
}

.pad {
  display: none;
}

.pc {
  display: flex;
}

.pc-b {
  display: block;
}

.tab-group {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.tab-btn {
  padding: 5px 10px;
  border-radius: 6px;
  background-color: var(--bg-secondary);
  text-align: center;
  font-size: var(--font-size-md);
  color: var(--text-primary);
  cursor: pointer;
  transition: background-color 0.3s ease;
  font-size: var(--font-size-sm);
}
.tab-btn:hover {
  text-decoration: none;
}
.tab-btn.active {
  background-color: var(--brand-primary);
  color: #fff;
}

.tab-btn-active {
  background-color: var(--brand-primary);
  color: #fff;
}

.articles-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.articles-list .category-medium {
  width: calc(25% - 18px);
  max-width: calc(25% - 18px);
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 24px;
  gap: 8px;
  font-size: 14px;
  cursor: pointer;
}
.pagination .pagination-prev, .pagination .pagination-next {
  display: flex;
  align-items: center;
}
.pagination .pagination-prev::after, .pagination .pagination-next::after {
  content: "";
  background: url("/icon/arrow.svg") no-repeat center center;
  width: 14px;
  height: 14px;
  display: inline-block;
  background-size: contain;
}
.pagination .pagination-prev::after {
  transform: rotate(90deg);
}
.pagination .pagination-next::after {
  transform: rotate(-90deg);
}
.pagination .pagination-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  transition: background-color 0.3s ease, color 0.3s ease;
  border-radius: 12px;
}
.pagination .pagination-btn:hover {
  background-color: var(--brand-primary-hover);
  color: #fff;
}
.pagination .pagination-active {
  color: #fff;
  background-color: var(--brand-primary);
}

.page-title {
  font-size: 36px;
}

.faq-box {
  display: flex;
  flex-wrap: wrap;
  border-bottom: 1px solid var(--border-color);
  cursor: pointer;
}
.faq-box + .faq-box {
  margin-top: 24px;
}
.faq-box .fqa-title {
  width: 100%;
  justify-content: space-between;
  display: flex;
  min-height: 44px;
}
.faq-box .fqa-title::after {
  transition: all 0.3s ease;
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  margin-top: 8px;
  background: url("/icon/arrow.svg") no-repeat center center;
}
.faq-box .faq-content {
  width: 100%;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}
.faq-box.faq-active .faq-content {
  max-height: 500px; /* Adjust as needed */
  padding-bottom: 16px;
}
.faq-box.faq-active .fqa-title::after {
  transform: rotate(180deg);
}

.dowload-sidebar-space {
  background: url("/images/download-app.png") no-repeat center bottom;
  background-color: var(--bg-secondary);
  background-size: contain;
  height: 426px;
  padding: 20px;
}
.dowload-sidebar-space .dowload-sidebar-title {
  font-size: 24px;
}
.dowload-sidebar-space .dowload-sidebar-description {
  margin-top: 8px;
  font-size: var(--font-size-sm);
  color: var(--text-secondary);
}
.dowload-sidebar-space .dowload-sidebar-button {
  display: flex;
  gap: 8px;
}
.dowload-sidebar-space .dowload-button {
  width: 110px;
  height: 32px;
  border-radius: 5px;
  margin-top: 32px;
}
.dowload-sidebar-space .dowload-appstore {
  background: url("/icon/dowload-appstore.svg") no-repeat center center;
}
.dowload-sidebar-space .dowload-google {
  background: url("/icon/dowload-google.svg") no-repeat center center;
}

@media screen and (max-width: 1272px) {
  .main-content {
    width: 992px;
    gap: 24px;
    padding: 0 48px;
  }
  .section-title {
    margin-top: 48px;
  }
  .pc, .pc-b, .mobile {
    display: none;
  }
  .pad {
    display: flex;
  }
  .articles-list .category-medium {
    width: calc(33% - 16px);
    max-width: calc(33% - 16px);
  }
}
@media screen and (max-width: 992px) {
  .main-content {
    width: auto;
    padding: 0 24px;
  }
  .section-title {
    margin-top: 32px;
  }
  .pc, .pc-b, .pad {
    display: none;
  }
  .mobile {
    display: flex;
  }
  .articles-list .category-medium {
    width: 100%;
    max-width: 100%;
  }
}
.register-box-mask {
  background: rgba(255, 255, 255, 0.5);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2000;
  cursor: pointer;
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
}

.register-box {
  position: fixed;
  top: 30%;
  left: 50%;
  z-index: -1;
  background: #fff;
  width: 500px;
  height: 500px;
  transform: translate(-50%, -50%);
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.2);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.register-box .close-button {
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
  width: 24px;
  height: 24px;
  background: url("/icon/close.svg") no-repeat center center;
  z-index: 999;
}
.register-box.register-active {
  opacity: 1;
  visibility: visible;
  top: 40%;
  z-index: 4000;
}
.register-box.register-active + .register-box-mask {
  opacity: 1;
  visibility: visible;
}
.register-box .register-success-box {
  display: none;
  text-align: center;
  padding: 24px;
}
.register-box .register-success-box .register-success-icon {
  background-color: transparent;
  margin: 56px auto 24px auto;
}
.register-box .register-success-box .register-success-title {
  font-size: 24px;
  font-weight: bolder;
}
.register-box .register-success-box .register-success-description {
  margin-bottom: 24px;
  font-size: 18px;
}
.register-box .register-success-box .btn {
  width: 100%;
}
.register-box.register-success .close-button {
  display: none;
}
.register-box.register-success #register-content {
  display: none !important;
}
.register-box.register-success .register-success-box {
  display: block;
}

@media screen and (max-width: 992px) {
  .register-box {
    top: 100%;
    left: 0;
    height: 100%;
    width: 100%;
    transform: translate(0, 0);
  }
  .register-box.register-active {
    top: 0;
  }
}
div.plugin-toast {
  z-index: 10000;
}

.p-0 {
  padding: var(--size-0);
}

.pt-0 {
  padding-top: var(--size-0);
}

.pb-0 {
  padding-bottom: var(--size-0);
}

.pl-0 {
  padding-left: var(--size-0);
}

.pr-0 {
  padding-right: var(--size-0);
}

.m-0 {
  margin: var(--size-0);
}

.mt-0 {
  margin-top: var(--size-0);
}

.mb-0 {
  margin-bottom: var(--size-0);
}

.ml-0 {
  margin-left: var(--size-0);
}

.mr-0 {
  margin-right: var(--size-0);
}

.p-1 {
  padding: var(--size-1);
}

.pt-1 {
  padding-top: var(--size-1);
}

.pb-1 {
  padding-bottom: var(--size-1);
}

.pl-1 {
  padding-left: var(--size-1);
}

.pr-1 {
  padding-right: var(--size-1);
}

.m-1 {
  margin: var(--size-1);
}

.mt-1 {
  margin-top: var(--size-1);
}

.mb-1 {
  margin-bottom: var(--size-1);
}

.ml-1 {
  margin-left: var(--size-1);
}

.mr-1 {
  margin-right: var(--size-1);
}

.p-2 {
  padding: var(--size-2);
}

.pt-2 {
  padding-top: var(--size-2);
}

.pb-2 {
  padding-bottom: var(--size-2);
}

.pl-2 {
  padding-left: var(--size-2);
}

.pr-2 {
  padding-right: var(--size-2);
}

.m-2 {
  margin: var(--size-2);
}

.mt-2 {
  margin-top: var(--size-2);
}

.mb-2 {
  margin-bottom: var(--size-2);
}

.ml-2 {
  margin-left: var(--size-2);
}

.mr-2 {
  margin-right: var(--size-2);
}

.p-3 {
  padding: var(--size-3);
}

.pt-3 {
  padding-top: var(--size-3);
}

.pb-3 {
  padding-bottom: var(--size-3);
}

.pl-3 {
  padding-left: var(--size-3);
}

.pr-3 {
  padding-right: var(--size-3);
}

.m-3 {
  margin: var(--size-3);
}

.mt-3 {
  margin-top: var(--size-3);
}

.mb-3 {
  margin-bottom: var(--size-3);
}

.ml-3 {
  margin-left: var(--size-3);
}

.mr-3 {
  margin-right: var(--size-3);
}

.p-4 {
  padding: var(--size-4);
}

.pt-4 {
  padding-top: var(--size-4);
}

.pb-4 {
  padding-bottom: var(--size-4);
}

.pl-4 {
  padding-left: var(--size-4);
}

.pr-4 {
  padding-right: var(--size-4);
}

.m-4 {
  margin: var(--size-4);
}

.mt-4 {
  margin-top: var(--size-4);
}

.mb-4 {
  margin-bottom: var(--size-4);
}

.ml-4 {
  margin-left: var(--size-4);
}

.mr-4 {
  margin-right: var(--size-4);
}

.p-5 {
  padding: var(--size-5);
}

.pt-5 {
  padding-top: var(--size-5);
}

.pb-5 {
  padding-bottom: var(--size-5);
}

.pl-5 {
  padding-left: var(--size-5);
}

.pr-5 {
  padding-right: var(--size-5);
}

.m-5 {
  margin: var(--size-5);
}

.mt-5 {
  margin-top: var(--size-5);
}

.mb-5 {
  margin-bottom: var(--size-5);
}

.ml-5 {
  margin-left: var(--size-5);
}

.mr-5 {
  margin-right: var(--size-5);
}

.p-6 {
  padding: var(--size-6);
}

.pt-6 {
  padding-top: var(--size-6);
}

.pb-6 {
  padding-bottom: var(--size-6);
}

.pl-6 {
  padding-left: var(--size-6);
}

.pr-6 {
  padding-right: var(--size-6);
}

.m-6 {
  margin: var(--size-6);
}

.mt-6 {
  margin-top: var(--size-6);
}

.mb-6 {
  margin-bottom: var(--size-6);
}

.ml-6 {
  margin-left: var(--size-6);
}

.mr-6 {
  margin-right: var(--size-6);
}

.text-xs {
  font-size: var(--font-size-0);
}

.text-sm {
  font-size: var(--font-size-1);
}

.text-md {
  font-size: var(--font-size-2);
}

.text-lg {
  font-size: var(--font-size-3);
}

.text-xl {
  font-size: var(--font-size-4);
}

.text-primary {
  color: var(--text-primary);
}

.text-secondary {
  color: var(--text-secondary);
}

.text-disabled {
  color: var(--text-disabled);
}

.bg-main {
  background-color: var(--bg-main);
}

.bg-secondary {
  background-color: var(--bg-secondary);
}

.img-hover {
  transition: all 0.3s ease;
}
.header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
  background: var(--bg-primary);
}

.header-space {
  height: 114px;
}

.sub-nav {
  height: 36px;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: end;
  font-size: var(--font-size-sm);
  line-height: var(--font-size-sm);
  background-color: var(--bg-secondary);
}
.sub-nav a::after {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  background: url("/icon/jump.svg") no-repeat center center;
  vertical-align: top;
}
.sub-nav a + a {
  margin-left: 32px;
}

.nav-box {
  display: flex;
  padding: 16px 32px;
  position: relative;
}
.nav-box .nav-item-box {
  height: 100%;
}
.nav-box .nav-item-box:hover .header-menu {
  max-height: 500px;
}
.nav-box .nav-content {
  flex: 1;
  justify-self: unset;
  margin-left: 32px;
  display: flex;
  justify-content: center;
}
.nav-box .nav-list {
  display: flex;
  align-items: center;
  height: 100%;
  flex: 1;
}
.nav-box .nav-item {
  height: 100%;
  display: flex;
  align-items: center;
  padding: 0 16px;
}

.lang-switch {
  cursor: pointer;
}

.header-menu {
  position: absolute;
  left: 0;
  width: 100%;
  transform: translateY(100%);
  bottom: 0;
  background: transparent;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s;
  box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.02);
}
.header-menu .header-menu-body {
  border-top: 1px solid var(--border-color);
  background: var(--bg-primary);
  justify-content: center;
  padding: 12px 32px;
  display: flex;
  gap: 64px;
}
.header-menu .heade-menu-title {
  font-size: var(--font-size-sm);
  color: var(--text-secondary);
}
.header-menu .header-menu-layout {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: baseline;
}
.header-menu .heade-menu-item {
  transition: all 0.3s;
}
.header-menu .heade-menu-item:hover {
  color: var(--brand-primary);
}
.header-menu .heade-menu-item:active {
  color: var(--brand-primary-active);
}
.header-menu div.header-menu-right {
  width: 300px;
  border-radius: 12px;
  background-size: contain;
  height: initial;
}

.header {
  /* 激活状态 */
}
.header .menu-button {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.header .menu-icon {
  width: 16px;
  height: 16px;
  position: relative;
  transition: transform 0.4s ease;
}
.header .menu-icon span {
  position: absolute;
  height: 2px;
  width: 100%;
  background: var(--text-primary);
  border-radius: 2px;
  transition: 0.4s ease;
}
.header .menu-icon span:nth-child(1) {
  top: 0;
}
.header .menu-icon span:nth-child(2) {
  top: 6px;
}
.header .menu-icon span:nth-child(3) {
  top: 12px;
}
.header.active .menu-icon span:nth-child(1) {
  transform: rotate(45deg);
  top: 9px;
}
.header.active .menu-icon span:nth-child(2) {
  opacity: 0;
}
.header.active .menu-icon span:nth-child(3) {
  transform: rotate(-45deg);
  top: 9px;
}
.header .header-menu-item-list {
  max-height: 0px;
  overflow: hidden;
  transition: all 0.3s;
  width: 100%;
  gap: 16px;
  display: flex;
  padding: 0;
  flex-direction: column;
}
.header .header-menu-item {
  min-height: 50px;
  display: flex;
  cursor: pointer;
  justify-content: space-between;
  flex-wrap: wrap;
}
.header .header-menu-item i {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  background: url("/icon/arrow.svg") no-repeat center center;
  transition: all 0.3s;
}
.header .header-menu-item-title {
  flex: 1;
  font-weight: bolder;
}
.header .menu-active .header-menu-item-list {
  max-height: 500px;
  overflow: auto;
  padding: 16px 0;
}
.header .menu-active i {
  transform: rotate(180deg);
}
.header .header-list-title {
  font-size: var(--font-size-sm);
  color: var(--text-secondary);
}
.header .sub-nav-mobile {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border-color);
  border-width: 1px 0;
  padding: 24px 0;
  gap: 32px;
}
.header .sub-nav-mobile a:after {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  background: url("/icon/jump.svg") no-repeat center center;
  vertical-align: middle;
}
.header .header-footer {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  padding: 24px 0;
}
.header .header-footer .btn-primary {
  width: 100%;
}

.lang-switch {
  position: relative;
}
.lang-switch .lang-list-bg {
  z-index: 10;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.lang-switch .lang-list {
  z-index: 20;
  position: absolute;
  /* bottom: -100%; */
  background: #fff;
  box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.2);
  padding: 16px;
  right: 0;
  min-width: 100px;
  border-radius: 5px;
  bottom: 10px;
  transform: translateY(100%);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.lang-switch .lang-list.active {
  opacity: 1;
  visibility: visible;
}
.lang-switch .lang-list a {
  display: block;
  padding: 8px 0;
}
.lang-switch.lang-list-active .lang-list {
  opacity: 1;
  visibility: visible;
  bottom: 0;
}
.lang-switch.lang-list-active .lang-list-bg {
  opacity: 1;
  visibility: visible;
}

@media screen and (max-width: 1272px) {
  .header {
    height: 72px;
    display: flex;
    align-items: center;
    padding: 0 20px;
    justify-content: space-between;
  }
  .header .header-menu {
    background: var(--bg-primary);
    max-height: 100vh;
    height: calc(100vh - 72px);
    left: auto;
    transform: translateX(100%) translateY(100%);
    transition: all 0.3s;
    padding: 20px;
    justify-content: space-between;
    display: flex;
    flex-direction: column;
  }
  .header.active .header-menu {
    left: 0;
    transform: translateX(0) translateY(100%);
  }
  .lang-switch .lang-list {
    bottom: -10px;
    transform: translateY(0);
    position: fixed;
    width: 100%;
    left: 0;
  }
  .lang-switch.lang-list-active .lang-list {
    bottom: 0;
  }
}
.logo {
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo img {
  background: transparent;
}

.category-big {
  display: block;
  max-width: 624px;
}
.category-big:hover {
  text-decoration: none;
}
.category-big .category-big-image {
  width: 100%;
  aspect-ratio: 3/2;
  align-self: stretch;
  transition: all 0.3s ease;
  will-change: transform;
}
.category-big .category-big-image:hover {
  image-rendering: auto;
}
.category-big .category-big-description {
  color: var(--text-secondary);
  margin: 16px 0 8px 0;
  font-size: 14px;
  display: block;
}
.category-big .category-big-title {
  font-size: 26px;
  display: block;
}
.category-big .main-section1-right {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  gap: 24px;
}

.category-medium {
  display: block;
  max-width: 300px;
}
.category-medium:hover {
  text-decoration: none;
}
.category-medium .category-medium-image {
  width: 100%;
  aspect-ratio: 3/2;
  transition: all 0.3s ease;
  will-change: transform;
}
.category-medium .category-medium-image:hover {
  image-rendering: auto;
}
.category-medium .category-medium-description {
  color: var(--text-secondary);
  margin: 16px 0 8px 0;
  font-size: 14px;
  display: block;
}
.category-medium .category-medium-title {
  display: block;
  line-clamp: 2; /* 限制显示的行数为 2 行 */
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2; /* 限制显示的行数为 2 行 */
  max-height: 3.2em; /* 2 行的高度 */
  overflow: hidden;
  font-size: 16px;
  text-overflow: ellipsis;
}

.category-small {
  display: flex;
  max-width: 300px;
  border-bottom: 1px solid var(--border-color);
  justify-content: space-between;
  padding-bottom: 16px;
}
.category-small:hover {
  text-decoration: none;
}
.category-small .category-small-image {
  height: 67px;
  aspect-ratio: 100/67;
  transition: all 0.3s ease;
  will-change: transform;
}
.category-small .category-small-image:hover {
  image-rendering: auto;
}
.category-small .category-small-title {
  font-size: 16px;
  line-clamp: 3; /* 限制显示的行数为 3 行 */
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3; /* 限制显示的行数为 3 行 */
  max-height: 4.8em; /* 3 行的高度 */
  overflow: hidden;
  text-overflow: ellipsis;
}
.category-small .category-small-description {
  color: var(--text-secondary);
  margin: 16px 0 8px 0;
  font-size: 14px;
  display: block;
}
.category-small + .category-small {
  margin-top: 24px;
}

.category-text .category-text-sub {
  color: var(--text-secondary);
}
.category-text .category-text-sub, .category-text .category-text-description {
  font-size: var(--font-size-sm);
}
.category-text .category-text-title {
  font-size: 26px;
  line-height: 26px;
  margin: 24px 0 32px 0;
}

.footer .bg-footer {
  width: 100%;
  height: 288px;
}
.footer .footer-container {
  margin: 0 auto;
  max-width: var(--container-width);
}
.footer .footer-container-body {
  position: relative;
}
.footer .footer-float {
  position: absolute;
  width: 100%;
  background: #0B1320;
  border-radius: 12px;
  padding: 32px;
  display: flex;
  justify-content: space-between;
  color: #fff;
  height: 150px;
  /* top: 50%; */
  transform: translateY(-50%);
  align-items: center;
}
.footer .footer-float-text {
  font-size: 36px;
  width: 400px;
}
.footer .footer-content {
  padding: 75px 0 24px 0;
}
.footer .footer-logo {
  display: flex;
  padding: 48px 0;
}
.footer p {
  font-size: 14px;
  line-height: 16px;
  color: var(--text-secondary);
}
.footer p + p {
  margin-top: 16px;
}
.footer .footer-social {
  margin: 48px 0;
  padding-top: 24px;
  border-top: 1px solid var(--border-color);
  font-size: 14px;
  line-height: 16px;
  color: var(--text-secondary);
}

@media screen and (max-width: 1272px) {
  .footer .footer-container {
    max-width: 992px;
    padding: 0 48px;
  }
}
.main-section1 {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  align-self: stretch;
}
.main-section1 > div {
  flex-shrink: 0;
}
.main-section1 .main-section1-middle {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.main-section2 {
  display: flex;
  gap: 24px;
}

.markets-item {
  position: relative;
  cursor: pointer;
}
.markets-item .markets-item-image {
  width: 100%;
  aspect-ratio: 1/1;
  transition: all 0.3s ease;
}
.markets-item .markets-item-title {
  position: absolute;
  bottom: 0;
  left: 0;
  color: #fff;
  margin-bottom: 16px;
  padding: 0 16px;
  font-size: 18px;
}

.main-section3 {
  display: flex;
  gap: 24px;
}
.main-section3 .main-section3-body {
  display: flex;
  gap: 24px;
}

.main-section4 {
  display: flex;
}
.main-section4 .main-section4-image {
  width: 50%;
  flex: 1 0 0;
  aspect-ratio: 53/30;
}
.main-section4 .main-section4-content {
  background: #0B1320;
  display: flex;
  width: 50%;
  padding: 64px 20px;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  flex: 1 0 0;
  color: #fff;
}
.main-section4 .main-section4-description {
  color: rgba(255, 255, 255, 0.7);
}
.main-section4 .main-section4-title {
  font-size: 32px;
}

.main-section5 .pc {
  gap: 24px;
}
.main-section5 .pc .main-section5-image {
  width: 300px;
  aspect-ratio: 3/2;
  height: 200px;
}
.main-section5 .pc .category-text {
  width: 300px;
  flex-shrink: 0;
}
.main-section5 .pc .category-medium {
  flex: 1;
}
.main-section5 .pc .main-section5-left {
  display: flex;
  gap: 24px;
}
.main-section5 .pad {
  gap: 24px;
}
.main-section5 .pad .main-section5-layout {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: calc(50% - 16px);
}
.main-section5 .pad .category-medium {
  max-width: calc(50% - 16px);
}
.main-section5 .pad .category-small {
  max-width: 100%;
}

.main-section6 {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.main-section6 .main-section6-left {
  display: flex;
  gap: 24px;
}
.main-section6 .main-section6-image {
  width: 408px;
  aspect-ratio: 3/2;
}
.main-section6 .category-text {
  max-width: 410px;
}
.main-section6 .main-section6-content {
  flex: 1;
}
.main-section6 .category-small {
  max-width: 100%;
}

.main-section7 {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.main-section7 .main-section7-image {
  width: 408px;
  aspect-ratio: 3/2;
}

@media screen and (max-width: 1272px) {
  .main-section1 {
    flex-wrap: wrap;
  }
  .main-section1 .main-section1-left {
    width: 580px;
  }
  .main-section1 .main-section1-middle {
    width: 292px;
    flex-grow: 0;
  }
  .main-section1 .main-section1-right {
    flex-wrap: wrap;
    display: flex;
    width: 100%;
    gap: 24px;
    border-top: 1px solid var(--border-color);
    padding-top: 24px;
  }
  .main-section1 .main-section1-right .category-small {
    max-width: calc(50% - 12px);
    margin: 0;
  }
  .main-section3 {
    gap: 0;
  }
  .main-section3 .main-section3-body {
    flex-direction: column;
  }
  .main-section3 .main-section3-body + .main-section3-body .main-section3-layout {
    padding-left: 12px;
    padding-right: 0;
  }
  .main-section3 .main-section3-body .main-section3-layout:first-child {
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 24px;
  }
  .main-section3 .category-medium {
    max-width: initial;
  }
  .main-section3 .category-small {
    max-width: 100%;
  }
  .main-section3 .main-section3-layout {
    padding-right: 12px;
  }
  .main-section4 .main-section4-content {
    padding: 40px 20px;
  }
  .main-section6 {
    gap: 24px;
  }
  .main-section6 .main-section6-image, .main-section6 .category-text {
    width: calc(50% - 16px);
  }
  .main-section6 .main-section6-content {
    display: flex;
    gap: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--border-color);
  }
  .main-section6 .category-small {
    margin-top: 0;
    max-width: calc(50% - 12px);
  }
  .main-section7 {
    gap: 24px;
  }
  .main-section7 .category-medium {
    max-width: calc(33.33% - 16px);
  }
  .main-section7 .main-section7-layout {
    display: flex;
    gap: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--border-color);
  }
  .main-section7 .category-small {
    margin-top: 0;
    max-width: calc(50% - 12px);
  }
}
@media screen and (max-width: 992px) {
  .main-section1 .main-section1-left {
    width: 100%;
  }
  .main-section1 .main-section1-middle {
    width: 100%;
  }
  .main-section1 .category-big {
    width: 100%;
    max-width: 100%;
  }
  .main-section1 .category-medium {
    max-width: 100%;
    width: 100%;
  }
  .main-section1 .main-section1-right .category-small {
    max-width: 100%;
    width: 100%;
  }
  .main-section2 {
    flex-wrap: wrap;
  }
  .main-section2 .markets-item {
    width: 100%;
    margin: 0;
  }
  .main-section2 .markets-item-image {
    aspect-ratio: 3/1;
  }
  .main-section3 {
    flex-wrap: wrap;
  }
  .main-section3 .main-section3-body {
    width: 100%;
  }
  .main-section3 .main-section3-body + .main-section3-body .main-section3-layout {
    padding-left: 0;
    padding-right: 0;
  }
  .main-section3 .main-section3-body .main-section3-layout {
    padding-right: 0;
  }
  .main-section4 {
    flex-wrap: wrap;
  }
  .main-section4 .main-section4-image {
    width: 100%;
    aspect-ratio: 3.6/2;
  }
  .main-section4 .main-section4-title + .main-section4-description {
    display: none;
  }
  .main-section4 .main-section4-content {
    padding: 16px;
  }
  .main-section4 .main-section4-title {
    font-size: 24px;
  }
  .main-section5 .main-section5-left {
    flex-direction: column;
  }
  .main-section5 .mobile {
    gap: 24px;
    flex-wrap: wrap;
  }
  .main-section5 .mobile .main-section5-layout, .main-section5 .mobile .category-medium {
    width: 100%;
    max-width: 100%;
  }
  .main-section6 {
    gap: 24px;
    flex-wrap: wrap;
  }
  .main-section6 .main-section6-left {
    flex-direction: column;
  }
  .main-section6 .main-section6-image {
    width: 100%;
    aspect-ratio: 3.6/2;
  }
  .main-section6 .category-text {
    width: 100%;
    max-width: 100%;
  }
  .main-section6 .main-section6-content {
    flex-wrap: wrap;
  }
  .main-section6 .category-small {
    max-width: 100%;
    width: 100%;
  }
  .main-section7 {
    gap: 24px;
    flex-wrap: wrap;
  }
  .main-section7 .category-medium {
    max-width: 100%;
    width: 100%;
  }
  .main-section7 .main-section7-layout {
    flex-wrap: wrap;
  }
  .main-section7 .category-small {
    max-width: 100%;
    width: 100%;
  }
  .footer {
    margin-top: 24px;
  }
  .footer .bg-footer {
    height: 150px;
  }
  .footer .footer-float-text {
    font-size: 32px;
    width: 400px;
    height: 3.2em;
    overflow: hidden;
    text-align: center;
    width: 100%;
  }
  .footer .footer-float {
    flex-wrap: wrap;
    padding: 24px;
    height: auto;
    gap: 16px;
  }
  .footer .footer-float .btn {
    width: 100%;
    max-width: 100%;
  }
  .footer .footer-description {
    font-size: 12px;
  }
  .footer .footer-social {
    margin-top: 0;
  }
}
.deep-section1 {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  align-self: stretch;
}
.deep-section1 > div {
  flex-shrink: 0;
}
.deep-section1 .deep-section1-middle {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.deep-section2 {
  display: flex;
  gap: 24px;
  margin: 24px 0;
}
.deep-section2 .deep-section2-left {
  width: 410px;
}
.deep-section2 .deep-section2-right {
  flex: 1;
}

@media screen and (max-width: 1272px) {
  .deep-section1 {
    flex-wrap: wrap;
  }
  .deep-section1 .deep-section1-left {
    width: 580px;
  }
  .deep-section1 .deep-section1-middle {
    width: 292px;
    flex-grow: 0;
  }
  .deep-section1 .deep-section1-right {
    flex-wrap: wrap;
    display: flex;
    width: 100%;
    gap: 24px;
    border-top: 1px solid var(--border-color);
    padding-top: 24px;
  }
  .deep-section1 .deep-section1-right .category-small {
    max-width: calc(50% - 12px);
    margin: 0;
  }
  .deep-section2 {
    flex-wrap: wrap;
  }
  .deep-section2 .deep-section2-left {
    width: 100%;
    max-width: 100%;
  }
  .deep-section2 .deep-section2-right {
    width: 100%;
    max-width: 100%;
  }
}
@media screen and (max-width: 992px) {
  .deep-section1 .deep-section1-left {
    width: 100%;
  }
  .deep-section1 .deep-section1-middle {
    width: 100%;
  }
  .deep-section1 .category-big {
    width: 100%;
    max-width: 100%;
  }
  .deep-section1 .category-medium {
    max-width: 100%;
    width: 100%;
  }
  .deep-section1 .deep-section1-right .category-small {
    max-width: 100%;
    width: 100%;
  }
}
.strategy-section1 {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  align-self: stretch;
}
.strategy-section1 > div {
  flex-shrink: 0;
}
.strategy-section1 .strategy-section1-middle {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.strategy-section1 div.strategy-section1-right {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  flex-shrink: 1;
}
.strategy-section1 div.strategy-section1-right .category-medium {
  width: calc(50% - 12px);
  max-width: calc(50% - 12px);
}

.strategy-section2 {
  display: flex;
  gap: 24px;
  margin: 24px 0;
}
.strategy-section2 .strategy-section2-left {
  width: 410px;
}
.strategy-section2 .strategy-section2-right {
  flex: 1;
}

@media screen and (max-width: 1272px) {
  .strategy-section1 {
    flex-wrap: wrap;
  }
  .strategy-section1 .strategy-section1-left {
    width: 100%;
  }
  .strategy-section1 .strategy-section1-left .category-big {
    width: 100%;
    max-width: 100%;
  }
  .strategy-section1 .strategy-section1-right {
    flex-wrap: wrap;
    display: flex;
    width: 100%;
    gap: 24px;
    border-top: 1px solid var(--border-color);
    padding-top: 24px;
  }
  .strategy-section1 .strategy-section1-right .category-small {
    max-width: calc(50% - 12px);
    margin: 0;
  }
  .strategy-section2 {
    flex-wrap: wrap;
  }
  .strategy-section2 .strategy-section2-left {
    width: 100%;
    max-width: 100%;
  }
  .strategy-section2 .strategy-section2-right {
    width: 100%;
    max-width: 100%;
  }
}
@media screen and (max-width: 992px) {
  .strategy-section1 .strategy-section1-left {
    width: 100%;
  }
  .strategy-section1 .strategy-section1-middle {
    width: 100%;
  }
  .strategy-section1 .category-big {
    width: 100%;
    max-width: 100%;
  }
  .strategy-section1 .category-medium {
    max-width: 100%;
    width: 100%;
  }
  .strategy-section1 .strategy-section1-right .category-small {
    max-width: 100%;
    width: 100%;
  }
}
.pychology-section1 .pychology-section1-content {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.pychology-section1 .pychology-section1-content .category-medium {
  width: calc(50% - 12px);
  max-width: calc(50% - 12px);
}

.pychology-section2 {
  display: flex;
  gap: 24px;
  margin: 24px 0;
}
.pychology-section2 .pychology-section2-left {
  width: 410px;
}
.pychology-section2 .pychology-section2-right {
  flex: 1;
}

@media screen and (max-width: 1272px) {
  .pychology-section2 {
    flex-wrap: wrap;
  }
  .pychology-section2 .pychology-section2-left {
    width: 100%;
    max-width: 100%;
  }
  .pychology-section2 .pychology-section2-right {
    width: 100%;
    max-width: 100%;
  }
}
.essential-section1 {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  align-self: stretch;
}
.essential-section1 > div {
  flex-shrink: 0;
}
.essential-section1 .essential-section1-middle {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.essential-section1 div.essential-section1-right {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  flex-shrink: 1;
}
.essential-section1 div.essential-section1-right .category-medium {
  width: calc(50% - 12px);
  max-width: calc(50% - 12px);
}

.essential-section2 {
  display: flex;
  gap: 24px;
  margin: 24px 0;
}
.essential-section2 .essential-section2-left {
  width: 410px;
}
.essential-section2 .essential-section2-right {
  flex: 1;
}

@media screen and (max-width: 1272px) {
  .essential-section1 {
    flex-wrap: wrap;
  }
  .essential-section1 .essential-section1-left {
    width: 100%;
  }
  .essential-section1 .essential-section1-left .category-big {
    width: 100%;
    max-width: 100%;
  }
  .essential-section1 .essential-section1-right {
    flex-wrap: wrap;
    display: flex;
    width: 100%;
    gap: 24px;
    border-top: 1px solid var(--border-color);
    padding-top: 24px;
  }
  .essential-section1 .essential-section1-right .category-small {
    max-width: calc(50% - 12px);
    margin: 0;
  }
  .essential-section2 {
    flex-wrap: wrap;
  }
  .essential-section2 .essential-section2-left {
    width: 100%;
    max-width: 100%;
  }
  .essential-section2 .essential-section2-right {
    width: 100%;
    max-width: 100%;
  }
}
@media screen and (max-width: 992px) {
  .essential-section1 .essential-section1-left {
    width: 100%;
  }
  .essential-section1 .essential-section1-middle {
    width: 100%;
  }
  .essential-section1 .category-big {
    width: 100%;
    max-width: 100%;
  }
  .essential-section1 .category-medium {
    max-width: 100%;
    width: 100%;
  }
  .essential-section1 .essential-section1-right .category-small {
    max-width: 100%;
    width: 100%;
  }
}
.detail-info {
  table-layout: fixed;
  width: 100%;
  margin-bottom: 24px;
}
.detail-info td {
  vertical-align: top;
}

.detail-table-space {
  width: 316px;
}

.breadcrumbs {
  font-size: var(--font-size-sm);
  overflow: hidden; /* 溢出隐藏 */
  white-space: nowrap; /* 强制文本在一行显示 */
  text-overflow: ellipsis; /* 超出部分显示省略号 */
}
.breadcrumbs a:hover {
  text-decoration: underline;
  color: var(--brand-primary);
}
.breadcrumbs a + span {
  margin: 0 4px;
}

@media screen and (max-width: 992px) {
  .breadcrumbs {
    overflow: auto;
    white-space: normal;
    text-overflow: inherit;
  }
}
.detail-title {
  font-size: 32px;
  text-align: left;
  margin-top: 24px;
}

.detail-description {
  color: var(--text-secondary);
  margin: 16px 0 24px 0;
}

.detail-author {
  display: flex;
  justify-content: space-between;
  margin-bottom: 24px;
}

.detail-author-image {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  overflow: hidden;
  object-fit: cover;
}

.detail-author-avatar {
  display: flex;
  gap: 16px;
  align-items: center;
}

.detail-author-description {
  font-size: var(--font-size-sm);
}

.detail-content-layout {
  margin-top: 64px;
  display: flex;
  gap: 20px;
}

.detail-sidebar {
  width: 300px;
  margin-left: 64px;
}
.detail-sidebar .section-title {
  margin-top: 0;
}

.detail-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.detail-content img {
  max-width: 100%;
}
.detail-content img.detail-left-img {
  float: left;
  width: 50%;
  margin-right: 8px;
}
.detail-content img.detail-right-img {
  width: 50%;
  float: right;
  margin-left: 8px;
}
.detail-content table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  box-sizing: border-box;
  overflow-x: auto;
  display: block;
}
.detail-content table tbody {
  display: table;
  width: 100%;
}
.detail-content table tr {
  border: 1px solid #ccc;
}
.detail-content table tr th, .detail-content table tr td {
  padding: 8px;
  border: 1px solid #ccc;
  box-sizing: border-box;
}
.detail-content table tr th {
  background-color: #f2f2f2;
}
.detail-content a {
  color: var(--brand-primary);
}
.detail-content a:hover {
  text-decoration: underline !important;
}

.share-title {
  font-weight: bolder;
}

.detail-body {
  display: flex;
  gap: 24px;
}

.detail-menu-box .detail-menu-item {
  overflow: hidden;
  transition: all 0.3s;
  cursor: pointer;
}
.detail-menu-box .detail-menu-item-title {
  display: flex;
  cursor: pointer;
}
.detail-menu-box .detail-menu-parent .icon-arrow-fill {
  cursor: pointer;
  width: 16px;
  height: 16px;
  transition: all 0.3s;
  flex-shrink: 0;
  margin-top: 4px;
}
.detail-menu-box .detail-menu-parent .detail-menu-item {
  padding-left: 16px;
  max-height: 0px;
}
.detail-menu-box .detail-menu-active > .detail-menu-item {
  max-height: 500px;
}
.detail-menu-box .detail-menu-active > .detail-menu-item-title .icon-arrow-fill {
  transform: rotate(90deg);
}
.detail-menu-box .detail-menu-selected {
  color: var(--brand-primary);
}
.detail-menu-box .detail-menu-list {
  width: 0;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s;
}
.detail-menu-box .detail-menu-button {
  cursor: pointer;
}
.detail-menu-box.detail-menu-button-active .detail-menu-button + .detail-menu-list {
  width: 300px;
  max-height: 1000px;
}
.detail-menu-box.detail-menu-button-active + .detail-menu-space {
  width: 316px;
}
.detail-menu-box.detail-menu-button-active .icon-fold {
  transform: rotate(180deg);
}

@media screen and (max-width: 1272px) {
  .detail-sidebar {
    display: none;
  }
  .detail-table-space {
    display: none;
  }
}
@media screen and (max-width: 992px) {
  .detail-menu-box {
    display: none;
  }
  .detail-sidebar {
    display: block;
  }
  .detail-content-box {
    display: flex;
    flex-direction: column;
  }
  .detail-content-box .detail-sidebar {
    width: 100%;
    margin: 16px 0 16px 0;
  }
  .detail-content-box .category-small {
    max-width: 100%;
  }
}

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