.pre_start_title {
  font-family: Urbanist;
  color: #4d236d;
  position: relative;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 600;
  line-height: 44px;
  text-align: center;
  width: 100%;
}

* {
  padding: 0;
  margin: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  list-style: none;
  text-decoration: none;
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
}

html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-size: 16px;
  font-family: Urbanist;
}

body .layout_container {
  overflow: hidden;
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

body .layout_container .body_container {
  flex: 1;
}

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

ol,
ul {
  list-style: none;
  padding: 0;
}

a {
  text-decoration: none;
  background-color: transparent;
  color: inherit;
}

table {
  border-collapse: collapse;
  width: 100%;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button,
input,
select,
textarea {
  font: inherit;
  margin: 0;
}

button {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

textarea {
  resize: none;
}

* {
  box-sizing: border-box;
}

.cs-lazy {
  display: none;
}

/* From Uiverse.io by choudhary-usman */
.loading-img {
  width: 100%;
  height: 100%;
  background-color: #f7f7f7;
  display: flex;
  justify-content: center;
  align-items: center;
}

.loadingInner {
  --s: 15px;
  width: calc(var(--s) * 2.35);
  aspect-ratio: 1;
  display: flex;
  justify-content: space-between;
}

.loadingInner::before,
.loadingInner::after {
  content: "";
  width: var(--s);
  --_g: no-repeat radial-gradient(farthest-side, #ebddf6 94%, #0000);
  background:
    var(--_g) top,
    var(--_g) bottom;
  background-size: 100% var(--s);
  transform-origin: 50% calc(100% - var(--s) / 2);
  animation: l30 1s infinite;
}

.loadingInner::after {
  transform-origin: 50% calc(var(--s) / 2);
}

@keyframes l30 {
  70%,
  100% {
    transform: rotate(-270deg);
  }
}

div:not(.dr_card_box) {
  scrollbar-width: none;
  -ms-overflow-style: none;
}

div:not(.dr_card_box)::-webkit-scrollbar {
  display: none;
}

.card_simple_item {
  width: 150px;
  min-width: 150px;
  height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  margin-right: 20px;
  border-radius: 18px;
  align-items: center;
  background: linear-gradient(145deg, #ffffff 0%, #f8f9ff 100%);
  box-shadow: 0px 6px 20px rgba(77, 35, 109, 0.12);
  padding: 16px 12px;
  border: 1px solid rgba(77, 35, 109, 0.08);
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.card_simple_item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
  opacity: 1;
  transition: opacity 0.3s ease;
}

.card_simple_item .cover_box {
  width: 110px;
  min-width: 110px;
  height: 110px;
  aspect-ratio: 1/1;
  border-radius: 20px;
  border: 3px solid #ffffff;
  overflow: hidden;
  margin-bottom: 14px;
  box-shadow: 0px 4px 16px rgba(77, 35, 109, 0.15);
  background: #ffffff;
  position: relative;
}

.card_simple_item .cover_box::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(102, 126, 234, 0.05) 0%,
    rgba(118, 75, 162, 0.05) 100%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.card_simple_item .cover_box img {
  width: 110px;
  min-width: 110px;
  height: 110px;
  aspect-ratio: 1/1;
  object-fit: cover;
}

.card_simple_item .title {
  font-size: 15px;
  font-weight: 600;
  line-height: 20px;
  color: #2d1b3d;
  margin-bottom: 6px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
  text-align: center;
}

.card_simple_item .class {
  width: auto;
  text-align: center;
  font-size: 12px;
  font-weight: 400;
  line-height: 15px;
  color: #8a7a9a;
  margin-bottom: 10px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding: 3px 10px;
  background: rgba(77, 35, 109, 0.06);
  border-radius: 10px;
  display: inline-block;
}

.card_simple_item .rate {
  margin-top: auto;
  width: 100%;
  display: flex;
  justify-content: center;
}

.card_simple_item #rate_container img.start_icon {
  width: 14px;
  height: 14px;
}

@media screen and (min-width: 1201px) {
  .card_simple_item:hover {
    transform: translateY(-8px);
    box-shadow: 0px 12px 32px rgba(77, 35, 109, 0.2);
    border-color: rgba(102, 126, 234, 0.3);
  }

  .card_simple_item:hover::before {
    opacity: 1;
  }

  .card_simple_item:hover .cover_box {
    box-shadow: 0px 8px 24px rgba(77, 35, 109, 0.25);
    transform: scale(1.05);
  }

  .card_simple_item:hover .cover_box::after {
    opacity: 1;
  }
}

.ads-prompt {
  font-size: 12px;
  color: #ababab;
  margin: 5px auto;
}

.adsbygoogle {
  display: block;
  width: 100%;
}

.adsbygoogle[data-ad-status="unfilled"] {
  display: none !important;
}

.ads {
  width: 100%;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 0 14px 0;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  align-items: center;
}

@font-face {
  font-family: "footerIcon";
  src: url(/static/fonts/subset-SpanishOldSchool.ttf) format(truetype);
}

.footerIconFontStyle {
  font-family: "footerIcon";
  text-align: center;
  font-size: 30px;
  font-weight: 400;
  color: #4d236d;
}

* {
  padding: 0;
  margin: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-family:
    -apple-system,
    BlinkMacSystemFont,
    Segoe UI,
    Helvetica,
    Arial,
    PingFang SC,
    Noto Sans,
    Roboto,
    Microsoft Yahei,
    sans-serif,
    Apple Color Emoji,
    Segoe UI Emoji;
  -webkit-touch-callout: none;
  list-style: none;
  text-decoration: none;
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
}

html,
body {
  overflow-x: unset !important;
}

footer .cs-footer .cs-footer-left .cs-footer-header .cs-footer-logo .copyright {
  white-space: nowrap;
}

html,
body {
  min-height: 100%;
  margin: 0 auto;
  overflow-x: hidden;
  position: relative;
  background-color: #f8f8f8;
}

/* 设置所有标题的字体大小和字体粗细为默认值 */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: initial;
  font-weight: normal;
}

p,
i {
  margin: 0;
  padding: 0;
  font-style: normal;
}

.part-title {
  font-size: 24px;
  font-family: "Source Sans 3", sans-serif;
  font-weight: 600;
  color: #292929;
  margin-bottom: 20px;
}

.mini-title {
  font-size: 18px;
  line-height: 1.25;
  font-family: "Source Sans 3", sans-serif;
  font-weight: 400;
  color: #403f3f;
}

.mini-text {
  font-size: 14px;
  line-height: 1.25;
  font-family: "Source Sans 3", sans-serif;
  font-weight: 400;
  color: #9c9c9c;
}

.one-lines {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}

.two-lines {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.text-line {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.cs-lazy {
  display: none;
}

.loading-img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
}

img {
  max-width: unset;
}

.loading-inner2 {
  height: 100%;
  width: 100%;
  background-image: url(/static/app/images/loading.svg) !important;
  background-size: 50%;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #f0f8ff;
}

.border-radius {
  border-radius: 10px;
}

.logo-border {
  border: 1px solid #e8e6e652;
}

@media screen and (max-width: 600px) {
  .border-radius {
    border-radius: 5px;
  }

  .part-title {
    font-size: 20px;
    margin-bottom: 13px;
  }
}

.content-body {
  width: 100%;
  margin: 0 auto;
}

.main {
  width: 98%;
  max-width: 1200px;
  margin: 0 auto;
}

.primary-color {
  color: #111111;
}

.cs-over-ellipsis {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.second-color {
  color: #979897;
}

/*防止多行文本框拖动*/
img {
  border: 0;
  vertical-align: middle;
}

a {
  text-decoration: none;
}

#searchView {
  display: none;
  width: 0;
  transition: all 0.3 linear;
}

#searchInput,
#fixedInput {
  width: 100%;
  display: none;
  caret-color: black;
  border: none;
  background-color: transparent;
  transition: all 0.3 linear;
}

#searchInput:focus,
#fixedInput:focus {
  outline: none;
}

.header-right .cs-category > img {
  height: 23px;
  width: 23px;
  padding-bottom: 5px;
  display: none;
}

.cs-category {
  display: flex;
  align-items: flex-end;
}

.cs-box-shading {
  box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.12);
  transition: 0.3s;
}

.cs-radius {
  border-radius: 20px;
  margin-top: 15px;
  padding: 20px 20px 20px 20px;
}

.cs-auto {
  width: 95%;
  margin: 0 auto;
}

.adsHeight {
  width: 100%;
  height: 252px;
}

@media (min-width: 356px) {
  .adsHeight {
    width: 100%;
    height: 312px;
  }
}

@media (min-width: 748px) {
  .adsHeight {
    width: 100%;
    height: 280px;
  }
}

.adsbygoogle {
  display: block;
  width: 100%;
}

.adsbygoogle[data-ad-status="unfilled"] {
  display: none !important;
}

.ads {
  width: 100%;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 2px 0;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  align-items: center;
}

html,
body {
  background-color: #fff !important;
}

.t1 {
  font-size: 24px;
  font-family: "Source Sans 3", sans-serif;
  font-weight: 600;
  color: #292929;
  line-height: 1.25;
}

.two-lines {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.text-line {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.t2 {
  font-size: 22px;
  font-family: "Source Sans 3", sans-serif;
  font-weight: 600;
  color: #403f3f;
  line-height: 1.25;
  margin-bottom: 20px;
}

.p-mobile {
  display: none;
}

.p-title {
  font-size: 16px;
  font-weight: 400;
  line-height: 32px;
  font-family: "Source Sans 3", sans-serif;
  color: #403f3f;
}

.p-text {
  font-size: 16px;
  font-weight: 400;
  line-height: 32px;
  font-family: "Source Sans 3", sans-serif;
  color: #9c9c9c;
}

.disabled {
  background-color: #d9d9d9 !important;
  pointer-events: none;
}

.border-radius {
  border-radius: 10px;
  overflow: hidden;
}

.shadow {
  box-shadow: 0 0 5px 3px rgba(188, 188, 188, 0.15);
}

/*.cs-lazy{*/
/*  width: 100%;*/
/*  height: 100%;*/
/*}*/
@media screen and (max-width: 600px) {
  .t1,
  .t2 {
    font-size: 18px;
    font-weight: 600;
    color: #292929;
  }

  .border-radius {
    border-radius: 5px;
  }
}

main {
  width: 100%;
  max-width: 1200px;
  min-width: 300px;
  margin: 0 auto;
  padding: 18px 0 40px;
  display: flex;
}

.main-left {
  padding: 0 20px;
  width: 900px;
}

.main-app {
  display: flex;
  margin-bottom: 20px;
}

.main-app-left {
  width: 156px;
  height: 156px;
  flex-shrink: 0;
  -o-object-fit: cover;
  object-fit: cover;
  margin-right: 40px;
}

.main-app-right {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.main-app-right > .rating {
  margin-top: 15px;
  display: flex;
  align-items: center;
}

.main-app-right .rating .start {
  margin-right: 4px;
  width: 20px;
  height: 20px;
}

.main-app-right .rating span.score {
  color: #747474;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-left: 4px;
}

.main-app .safe-icon {
  margin-left: 10px;
  display: inline-block;
  height: 20px;
  width: 20px;
  vertical-align: middle;
  background-image: url(/static/app/images/safety.svg);
  background-repeat: no-repeat;
  background-size: auto 100%;
  background-position: center;
}

.main-about-list {
  padding: 16px;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px 24px;
  background: linear-gradient(135deg, #f8f9ff 0%, #f0f2ff 100%);
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(77, 35, 109, 0.08);
  margin: 20px 0;
}

.main-about-list .main-about-item {
  overflow: hidden;
  display: flex;
  align-items: center;
}

.main-about-list .cs-main-about-type {
  flex-shrink: 0;
  font-family:
    "Poppins",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Helvetica,
    Arial,
    "PingFang SC",
    "Noto Sans",
    Roboto,
    "Microsoft Yahei",
    sans-serif;
  color: #4d236d;
  font-weight: 600;
  font-size: 14px;
  padding-right: 15px;
  min-width: 120px;
}

.main-about-list .main-about-item .cs-main-about-text {
  flex: 1;
  font-weight: 400;
  font-family:
    "Poppins",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Helvetica,
    Arial,
    "PingFang SC",
    "Noto Sans",
    Roboto,
    "Microsoft Yahei",
    sans-serif;
  color: #333333;
  font-size: 13px;
  text-align: right;
}

@keyframes download-spin {
  to {
    transform: rotate(360deg);
  }
}

.main-app-download .btn-groups-download {
  padding: 0 8px;
  margin-bottom: 35px;
}

.main-app-download .download-tip {
  margin-top: 0;
  padding: 0 16px;
  max-height: 0;
  overflow: hidden;
  background: rgba(77, 35, 109, 0.06);
  border: 1px solid transparent;
  border-radius: 8px;
  font-family: "Source Sans 3", sans-serif;
  font-size: 14px;
  line-height: 1.5;
  color: #4d236d;
  opacity: 0;
  transition:
    opacity 0.25s ease,
    max-height 0.3s ease,
    margin 0.25s ease,
    padding 0.25s ease,
    border-color 0.25s ease;
}

.main-app-download .download-tip.is-visible {
  margin-top: 12px;
  padding: 12px 16px;
  max-height: 100px;
  opacity: 1;
  border-color: rgba(77, 35, 109, 0.2);
}

.main-app-download .download-tip-status {
  font-weight: 500;
  margin-bottom: 4px;
}

.main-app-download .download-tip-hint {
  font-size: 13px;
  color: #5a3d6d;
}

.main-app-download .download-tip-hint a {
  color: #4d236d;
  text-decoration: underline;
  font-weight: 500;
  cursor: pointer;
}

.main-app-download .download-tip-hint a:hover {
  color: #6b2d8a;
}

.main-app-download .desc {
  color: #525252;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  font-family: "Source Sans 3", sans-serif;
}

.main-app-download .btn-groups-download .btn-groups-item,
.main-app-download .btn-download-apk {
  border-radius: 24px;
  background: #6bb5ff;
  padding: 8px 5px;
  display: block;
  text-align: center;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  line-height: 34px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease;
}

.main-app-download
  .btn-download-apk:active:not(.disabled):not(.is-downloading) {
  transform: scale(0.98);
  box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.15);
}

.main-app-download .btn-download-apk.is-downloading {
  opacity: 0.9;
  pointer-events: none;
}

.main-app-download
  .btn-download-apk.is-downloading
  .download-icon-wrap
  .js-download-apk-icon {
  display: none !important;
}

.main-app-download
  .btn-download-apk.is-downloading
  .download-icon-wrap
  .download-loading {
  display: block !important;
}

.main-app-download .btn-download-apk .download-icon-wrap {
  position: relative;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-right: 7px;
}

.main-app-download .btn-download-apk .download-icon-wrap .js-download-apk-icon {
  width: 16px;
  height: 16px;
  display: block;
}

.main-app-download .btn-download-apk .download-icon-wrap .download-loading {
  display: none;
  position: absolute;
  left: 0;
  top: 0;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: download-spin 0.8s linear infinite;
}

.main-app-download .btn-download-apk {
  width: 32%;
}

.main-app-download .btn-groups-download {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
  flex-wrap: wrap;
  margin-top: 35px;
}

.main-app-download .btn-groups-download .btn-groups-item {
  /* width: 32%; */
  width: 45%;
}

.main-app-download .btn-download-apk > img,
.main-app-download .btn-groups-download .btn-groups-item > img {
  width: 16px;
  height: 16px;
  margin-right: 7px;
}

.main-introduction {
  width: 100%;
}

.main-introduction p,
.cs-main-introduction-content,
.main-introduction li {
  font-size: 14.5px;
  font-family:
    "Lora",
    -apple-system,
    BlinkMacSystemFont,
    Segoe UI,
    Helvetica,
    Arial,
    PingFang SC,
    Noto Sans,
    Roboto,
    Microsoft Yahei,
    sans-serif,
    Apple Color Emoji,
    Segoe UI Emoji;
  line-height: 26px;
  font-weight: normal;
  color: #3a3a3a;
  margin: 0px 0 15px 0;
  letter-spacing: 0.4px;
}

.main-introduction li {
  margin-left: 14px;
}

.main-introduction article h1,
.main-introduction article h3:first-child,
.main-introduction article h2 {
  display: none;
}

.main-introduction h1,
.main-introduction h2,
.main-introduction h1 strong,
.main-introduction h2 strong,
.main-introduction h3,
.main-introduction h3 strong {
  font-size: 22px;
  font-family: "Source Sans 3", sans-serif;
  font-weight: 600;
  color: #403f3f;
  line-height: 1.25;
  margin-top: 34px;
  margin-bottom: 20px;
}

.main-introduction p,
.cs-main-introduction-content,
.main-introduction li,
.main-introduction a,
.main-introduction h4,
.main-introduction h5,
.main-introduction h6,
.main-introduction b,
.main-introduction strong {
  font-size: 16px;
  font-weight: 400;
  line-height: 32px;
  font-family: "Source Sans 3", sans-serif;
  color: #3a3a3a;
  list-style: initial;
  margin-bottom: 20px;
}

.ai-content-section {
  margin-top: 34px;
  width: 100%;
}

.ai-content-section h3.t2 {
  margin-bottom: 20px;
}

.updates-section {
  margin-top: 34px;
  width: 100%;
}

.updates-header {
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.updates-section .updates-title {
  margin: 0 0 0 0;
}

.updates-date-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  background: rgba(77, 35, 109, 0.06);
  border-radius: 4px;
  color: #4d236d;
  font-size: 12px;
  width: fit-content;
  border: 1px solid rgba(77, 35, 109, 0.15);
}

.updates-date-badge svg {
  width: 14px;
  height: 14px;
  stroke: #4d236d;
}

.updates-intro {
  color: #595959;
  font-family: "Source Sans 3", sans-serif;
  font-size: 16px;
  line-height: 28px;
  margin-bottom: 24px;
}

.updates-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.updates-item {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 0 12px;
  align-items: start;
}

.updates-icon {
  grid-column: 1;
  width: 20px;
  height: 20px;
  margin-top: 2px;
  color: #4d236d;
}

.updates-icon svg {
  width: 100%;
  height: 100%;
}

.updates-item-title {
  grid-column: 2;
  font-family: "Source Sans 3", sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #4d236d;
  margin: 0;
  margin-bottom: 8px !important;
  line-height: 1.4;
}

.updates-item-text {
  grid-column: 1 / -1;
  color: #595959;
  font-family: "Source Sans 3", sans-serif;
  font-size: 16px;
  line-height: 24px;
  margin-top: 8px;
  margin-bottom: 0 !important;
}

.ai-content-section ul {
  list-style: disc;
  padding-left: 8px;
  margin: 0;
}

.ai-content-section ul li {
  margin-bottom: 10px;
  line-height: 1.6;
}

.main-app-info-mobile {
  padding: 6px 12px 26px 12px;
  /* background-color: #FFFFFF; */
}

.main-app-info-mobile .main-app-info {
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.main-app-info-mobile .main-app-info-rating,
.main-app-info-mobile .main-app-info-age {
  width: 33.3%;
}

.main-app-info-mobile .main-app-info-download {
  width: 33.3%;
  border-left: 1px solid #d5d5d5;
  border-right: 1px solid #d5d5d5;
}

.main-app-info-mobile .app-info-title {
  font-size: 16px;
  font-family: "Source Sans 3", sans-serif;
  font-weight: 400;
  line-height: 1.25;
  color: #595959;
  text-align: center;
  margin-bottom: 5px;
}

.main-app-info-mobile .app-info-text {
  font-size: 14px;
  font-family: "Source Sans 3", sans-serif;
  font-weight: 400;
  line-height: 1.25;
  color: #9c9c9c;
  text-align: center;
}

/* .main-download-pc{
  width: 100%;
  margin-top: 40px;
  padding: 15px;
  background-color: #fff;
  display: flex;
}
.main-download-pc .main-download-left{
  width: 182px;
  height: 182px;
  flex-shrink: 0;
  margin-right: 15px;
}
.main-download-pc .main-download-right{
  width: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.main-download-pc .main-download-right .safe-icon{
  display: inline-block;
  height: 20px;
  width: 20px;
  vertical-align: middle;
  background-image: url(/static/app/images/safety.svg);
  background-repeat: no-repeat;
  background-size: auto 100%;
  background-position: center;
  margin-left: 10px;
}
.main-download-pc .download-title{
  width: 100%;
  font-size: 24px;
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 400;
  line-height: 1.25;
  color: #121212;
  margin-bottom: 16px;
}
.main-download-pc .main-download-info{
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.main-download-pc .main-download-info-rating,
.main-download-pc .main-download-info-age{
  width: 33.3%;
}
.main-download-pc .main-download-info-download{
  width: 33.3%;
  border-left: 1px solid #D5D5D5;
  border-right: 1px solid #D5D5D5;
}
.main-download-pc .download-info-title{
  font-size: 16px;
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 400;
  line-height: 1.25;
  color: #595959;
  text-align: center;
  margin-bottom: 5px;
}
.main-download-pc .download-info-text{
  font-size: 14px;
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 400;
  line-height: 1.25;
  color: #9C9C9C;
  text-align: center;
}
.main-download-pc .main-download-btn{
  margin-top: 18px;
  width: 100%;
  border: 1px solid #11AC4D;
  line-height: 40px;
  font-size: 20px;
  font-family: SourceSans3, SourceSans3;
  font-weight: 400;
  color: #11AC4D;
  text-align: center;
} */

/* .main-download-mobile{
  display: none;
  padding: 15px 12px;
  background-color: #FFFFFF;
}
.main-download-mobile .main-download-top{
  display: flex;
  overflow: hidden;
  margin-bottom: 17px;
  align-items: center;
}
.main-download-mobile .main-download-left{
  width: 65px;
  height: 65px;
  flex-shrink: 0;
  margin-right: 11px;
}
.main-download-mobile .download-title{
  width: 100%;
  font-size: 18px;
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 400;
  line-height: 1.25;
  color: #121212;
}
.main-download-mobile .safe-icon{
  display: inline-block;
  height: 20px;
  width: 20px;
  vertical-align: middle;
  background-image: url(/static/app/images/safety.svg);
  background-repeat: no-repeat;
  background-size: auto 100%;
  background-position: center;
  margin-left: 10px;
}
.main-download-mobile .main-download-info{
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.main-download-mobile .main-download-info-rating,
.main-download-mobile .main-download-info-age{
  width: 33.3%;
}
.main-download-mobile .main-download-info-download{
  width: 33.3%;
  border-left: 1px solid #D5D5D5;
  border-right: 1px solid #D5D5D5;
}
.main-download-mobile .download-info-title{
  font-size: 16px;
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 400;
  line-height: 1.25;
  color: #595959;
  text-align: center;
  margin-bottom: 5px;
}
.main-download-mobile .download-info-text{
  font-size: 14px;
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 400;
  line-height: 1.25;
  color: #9C9C9C;
  text-align: center;
}
.main-download-mobile .main-download-btn{
  margin-top: 17px;
  width: 100%;
  border: 1px solid #11AC4D;
  line-height: 40px;
  font-size: 18px;
  font-family: SourceSans3, SourceSans3;
  font-weight: 400;
  color: #11AC4D;
  text-align: center;
  display: block;
} */

.main-screenshots {
  margin: 40px 0;
  width: 100%;
  position: relative;
}

#main-screenshots-content::-webkit-scrollbar {
  display: none;
  /* Chrome Safari */
}

#main-screenshots-left {
  display: none;
  position: absolute;
  top: 50%;
  margin-top: -25px;
  left: -25px;
  width: 50px;
  height: 50px;
  background: #ffffff;
  box-shadow: 0px 0px 10px 0px rgba(54, 54, 54, 0.19);
  border-radius: 50%;
  background: url("/static/app/images/left.svg") no-repeat center/19% #ffffff;
}

#main-screenshots-right {
  position: absolute;
  top: 50%;
  margin-top: -25px;
  right: -25px;
  width: 50px;
  height: 50px;
  box-shadow: 0px 0px 10px 0px rgba(54, 54, 54, 0.19);
  border-radius: 50%;
  background: url("/static/app/images/right.svg") no-repeat center/19% #ffffff;
}

#main-screenshots-content {
  display: flex;
  height: 320px;
  padding: 5px 0;
  white-space: nowrap;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.main-screenshots-sub-container {
  display: flex;
}

/*.show-left*/
.main-screenshots-item {
  margin-right: 14px;
  height: 100%;
  flex-shrink: 0;
}

.main-screenshots-item .loading-img {
  min-width: 174px;
  border-radius: 5px;
}

.main-screenshots-img {
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.vs-view hr {
  margin: 10px 0;
  border: none;
  height: 1px;
  background-color: #e6e6e6;
}

.vs-title {
  margin-top: 34px;
  margin-bottom: 20px;
}

.vs-card {
  padding: 24px 16px;
  margin-top: 26px;
  background: #ffffff;
}

.vs-line {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.vs-cell {
  display: flex;
  font-size: 14px;
  width: 32%;
  align-items: end;
}

.vs-cell.vs-cell-align-center h2 {
  font-size: 16px;
}

.vs-cell .cs-main-app-rating span:first-child {
  border: none;
}

.vs-cell-align-center {
  justify-content: center;
  flex-wrap: wrap;
}

.vs-cell-align-center {
  text-align: center;
}

.vs-logo {
  display: none;
  width: 70px;
  height: 70px;
  border-radius: 10px;
  margin: 0 auto 10px;
}

.vs-app-name {
  color: #11ac4d !important;
  text-decoration: underline;
  pointer-events: auto !important;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.vs-cell span {
  font-size: 16px;
  font-weight: 400;
  line-height: 32px;
  font-family: "Source Sans 3", sans-serif;
  color: #9c9c9c;
}

.no-dots {
  list-style: none;
}

.line {
  margin: 40px 0;
  height: 1px;
  background-color: #d5d5d5;
}

.main-recommend {
  margin-top: 34px;
}

.featured-apps {
  display: grid;
  gap: 20px;
}

/* TopDownload 模块使用 2 列布局 */
.main-recommend.TopDownload .featured-apps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

/* Similar Apps 和 More Apps 模块使用 3 列布局 */
.main-recommend:not(.TopDownload) .featured-apps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.app-item {
  display: flex;
  align-items: center;
  padding: 16px;
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(145deg, #f8f9ff 0%, #ffffff 100%);
  box-shadow: 0px 4px 16px rgba(77, 35, 109, 0.08);
  border: 1px solid rgba(77, 35, 109, 0.06);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

/* Similar Apps 和 More Apps 模块的卡片布局调整 */
.main-recommend:not(.TopDownload) .app-item {
  flex-direction: column;
  align-items: flex-start;
  padding: 20px;
}

.app-item .app-cover {
  width: 80px;
  height: 80px;
  aspect-ratio: 1 / 1;
  border-radius: 18px;
  /* border: 2px solid rgba(77, 35, 109, 0.08); */
  overflow: hidden;
  margin-right: 14px;
  flex-shrink: 0;
  background: #ffffff;
  box-shadow: 0px 4px 12px rgba(77, 35, 109, 0.12);
}

/* Similar Apps 和 More Apps 模块的图标居中显示，设置小很多 */
.main-recommend:not(.TopDownload) .app-item .app-cover {
  width: 80px;
  height: 80px;
  aspect-ratio: 1 / 1;
  margin-right: 0;
  margin-bottom: 12px;
  align-self: center;
  flex-shrink: 0;
}

.app-item .app-cover img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  transition: transform 0.3s ease;
}

/* Similar Apps 和 More Apps 模块去掉按钮 */
.main-recommend:not(.TopDownload) .app-item .app-jump {
  display: none;
}

.app-info {
  flex: 1;
  min-width: 0;
  margin: 0 12px 0 0;
  height: auto;
  overflow: visible;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Similar Apps 和 More Apps 模块的信息区域 */
.main-recommend:not(.TopDownload) .app-item .app-info {
  width: 100%;
  margin: 0;
  text-align: center;
  align-items: center;
}

.app-title {
  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
  color: #2d1b3d;
  margin-bottom: 6px;
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.app-class {
  font-family: Urbanist;
  font-size: 13px;
  font-weight: 400;
  line-height: 16px;
  color: #8a7a9a;
  margin-bottom: 10px;
  width: auto;
  padding: 4px 12px;
  background: rgba(77, 35, 109, 0.06);
  border-radius: 12px;
  display: inline-block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}

/* Similar Apps 和 More Apps 模块的分类和评分一行展示 */
.main-recommend:not(.TopDownload) .app-item .app-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 8px;
  flex-wrap: wrap;
}

.main-recommend:not(.TopDownload) .app-item .app-class {
  margin-bottom: 0;
  margin-right: 0;
}

.main-recommend:not(.TopDownload) .app-item .app-score {
  font-size: 14px;
  font-weight: 600;
  line-height: 18px;
  color: #4d236d;
}

/* Top Download 模块的分类和评分一行展示 */
.TopDownload .app-item .app-meta {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  margin-top: 8px;
  flex-wrap: wrap;
}

.TopDownload .app-item .app-class {
  margin-bottom: 0;
  margin-right: 0;
}

.TopDownload .app-item .app-score {
  font-size: 14px;
  font-weight: 600;
  line-height: 18px;
  color: #4d236d;
}

.app-rate {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 4px;
}

.app-rate .star_icon {
  width: 18px;
  height: 18px;
  display: block;
  flex-shrink: 0;
}

.app-rate .score {
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
  color: #4d236d;
  margin-left: 2px;
}

.main-top-recommend {
  width: 25%;
  flex-shrink: 0;
  display: flex;
  padding-right: 20px;
  flex-wrap: wrap;
  justify-content: space-between;
  align-self: flex-start;
}

.main-top-recommend h2 {
  width: 100%;
  margin-bottom: 20px;
}

.main-top-recommend .recommend-app-item {
  width: 85px;
}

.main-top-recommend .recommend-app-cover {
  width: 85px;
  height: 85px;
  box-shadow: 0px 0px 3px 1px rgba(188, 188, 188, 0.15);
}

.main-top-recommend .recommend-app-cover img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.TopDownload {
  display: none;
}

@media screen and (max-width: 1200px) {
  .main-left {
    width: 100%;
  }

  .main-top-recommend {
    display: none;
  }

  .TopDownload {
    display: block;
  }

  #main-screenshots-left {
    display: none;
  }

  #main-screenshots-right {
    display: none;
  }
}

@media screen and (min-width: 1201px) {
  .main-recommend.TopDownload .featured-apps {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .main-recommend.TopDownload .featured-apps .app-item:hover {
    transform: translateY(-4px);
    box-shadow: 0px 8px 24px rgba(77, 35, 109, 0.15);
    border-color: rgba(102, 126, 234, 0.2);

    .app-cover {
      box-shadow: 0px 6px 20px rgba(77, 35, 109, 0.2);
      border-color: rgba(102, 126, 234, 0.2);

      img {
        transform: scale(1.08);
      }
    }

    .app-jump {
      background: linear-gradient(135deg, #6bb5ff 0%, #4da3ff 100%);
      box-shadow: 0px 4px 12px rgba(140, 207, 255, 0.5);
      transform: scale(1.05);
    }
  }

  /* Similar Apps 和 More Apps 模块的悬停效果 */
  .main-recommend:not(.TopDownload) .app-item:hover {
    transform: translateY(-4px);
    box-shadow: 0px 8px 24px rgba(77, 35, 109, 0.15);
    border-color: rgba(102, 126, 234, 0.2);

    .app-cover {
      box-shadow: 0px 6px 20px rgba(77, 35, 109, 0.2);
      border-color: rgba(102, 126, 234, 0.2);

      img {
        transform: scale(1.08);
        transition: all 0.3s;
      }
    }
  }
}

/* Similar Apps 和 More Apps 模块的响应式样式 */
@media screen and (max-width: 1200px) and (min-width: 769px) {
  .main-recommend:not(.TopDownload) .featured-apps {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
}

@media screen and (max-width: 768px) {
  .main-recommend:not(.TopDownload) .featured-apps {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

/* TopDownload 模块响应式样式 */
@media screen and (max-width: 1200px) and (min-width: 769px) {
  .main-recommend.TopDownload .featured-apps {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

@media screen and (max-width: 768px) {
  .main-recommend.TopDownload .featured-apps {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

@media screen and (max-width: 768px) {
  .main-left {
    padding: 0 12px;
  }

  .main-app-left {
    width: 90px;
    height: 90px;
    margin-right: 20px;
  }

  /* .main-app,
  .main-introduction{
    padding-left: 8px;
    padding-right: 8px;
  } */
  .main-about-list {
    border-radius: 6px;
    padding: 16px 12px;
    grid-template-columns: 1fr;
  }

  .main-about-list .main-about-item .cs-main-about-text {
    font-size: 14px;
    font-weight: 500;
    /* color: #4D236D; */
  }

  .main-introduction h1,
  .main-introduction h2,
  .main-introduction h1 strong,
  .main-introduction h2 strong,
  .main-introduction h3,
  .main-introduction h3 strong {
    font-size: 20px;
    font-weight: 600;
    color: #292929;
  }

  .updates-section .updates-title {
    font-size: 20px;
  }

  .updates-intro,
  .updates-item-text {
    font-size: 15px;
  }

  /* .main-download-pc{
    display: none;
  } */
  /* .main-download-mobile{
    display: block;
  } */

  .main-screenshots {
    margin: 34px 0;
  }

  #main-screenshots-content {
    height: 250px;
  }

  .main-screenshots-item {
    margin-right: 10px;
  }

  .main-screenshots-item .loading-img {
    min-width: 135px;
  }

  .line {
    margin: 25px 0;
  }

  .featured-apps .app-item {
    width: 100%;
    margin-bottom: 12px;

    &:hover {
      transform: translateY(-4px);
      box-shadow: 0px 8px 24px rgba(77, 35, 109, 0.15);
      border-color: rgba(102, 126, 234, 0.2);

      .app-cover {
        box-shadow: 0px 6px 20px rgba(77, 35, 109, 0.2);
        border-color: rgba(102, 126, 234, 0.2);

        img {
          transform: scale(1.08);
          transition: all 0.3s;
        }
      }

      .app-jump {
        background: linear-gradient(135deg, #6bb5ff 0%, #4da3ff 100%);
        box-shadow: 0px 4px 12px rgba(140, 207, 255, 0.5);
        transform: scale(1.05);
      }
    }
  }
}

@media screen and (max-width: 600px) {
  .main-app-right .rating .start {
    width: 16px;
    height: 16px;
  }

  .main-app-right .rating span.score {
    font-size: 12px;
  }

  .p-mobile {
    display: block;
  }

  .main-app-download {
    padding-top: 10px;
  }

  .main-app-download .btn-download-apk {
    width: 100%;
  }

  .main-app-download .btn-groups-download .btn-groups-item {
    width: 48%;
    margin-top: 10px;
  }

  .main-app-download .btn-groups-download {
    margin-top: 26px;
  }

  .main-app-download {
    margin-bottom: 25px;
  }

  .main-app .safe-icon {
    display: none;
  }

  .cs-main-introduction-content {
    padding: 0 8px;
  }

  .main-app-download .desc {
    padding: 0 8px;
  }
}

header.header-app-container {
  width: 100%;
  height: 55px;
  background: #fff;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.06);
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden !important;
  box-sizing: border-box;
  z-index: 1;
  position: relative;
}

header.header-app-container .header_box {
  display: inline-flex;
  width: 100%;
  height: 99%;
  align-items: center;
  max-width: 1190px;
  box-sizing: border-box;
}

@media screen and (max-width: 1200px) {
  .header-app-container {
    box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.1);
  }

  .header-app-container .header_box {
    max-width: 100%;
    padding: 0 24px;
  }
}

@media screen and (max-width: 767px) {
  .header-app-container {
    width: 100%;
    height: 50px;
    box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.1);
  }

  .header-app-container .header_box {
    max-width: 100%;
    padding: 0 10px;
  }
}

footer {
  width: 100%;
  position: relative;
}

footer::before {
  content: "";
  display: block;
  position: absolute;
  width: calc(100% - 170px);
  min-width: 1200px;
  height: 1px;
  background-color: #dde9f6;
  margin: 0 auto;
  top: 0;
  left: 0;
  right: 0;
}

.footer_box {
  padding: 30px 0;
  width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  text-align: center;
}

.footer_box .icon_box {
  margin-bottom: 20px;
}

.footer_box .icon_box .page_icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer_box .icon_box .desc {
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: 0.01em;
  color: #4d236d;
}

.footer_box .icon_box .desc i {
  color: #fff;
  margin-left: 4px;
  font-size: 18px;
}

.footer_box .link_box {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 120px;
}

.footer_box .link_box a {
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  line-height: 22px;
  color: #4d236d;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.footer_box .link_box a i {
  color: #4d236d;
  margin-right: 6px;
  font-size: 14px;
}

.footer_box .link_box a span {
  position: relative;
}

@media screen and (max-width: 1200px) {
  footer::before {
    width: calc(100% - 28px);
    min-width: calc(100% - 70px);
  }

  footer .footer_box {
    width: calc(100% - 28px);
  }

  footer .footer_box .icon_box .page_icon {
    margin-bottom: 5px;
  }

  footer .footer_box .icon_box .desc {
    font-size: 14px;
  }

  footer .footer_box .link_box {
    gap: 50px;
  }
}

@media screen and (max-width: 648px) {
  footer .footer_box {
    width: calc(100% - 40px) !important;
  }

  footer .footer_box .icon_box .page_icon {
    margin-bottom: 10px;
  }

  footer .footer_box .icon_box .desc {
    margin-bottom: 10px;
  }

  footer .footer_box .link_box {
    width: 100%;
    justify-content: flex-start;
    margin-top: 0;
    text-align: left;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 10px;
  }

  footer .footer_box .link_box a {
    display: flex;
    width: 100%;
    margin: 0 !important;
  }

  footer .footer_box .link_box a span {
    display: inline-block;
    flex: 1;
  }
}

@media screen and (min-width: 1201px) {
  footer .footer_box .link_box a:hover span::after {
    content: "";
    display: block;
    position: absolute;
    right: 0;
    bottom: -1px;
    width: 100%;
    height: 1px;
    background-color: #4d236d;
  }
}
