:root {
  --brand: #42d07d;
  --brand-d: #2eb84f;
  --brand-light: #e8faf0;
  --brand-glow: rgba(66, 208, 125, 0.15);
  --white: #ffffff;
  --text-1: #111;
  --text-2: #4a5568;
  --text-3: #8896a5;
  --border: rgba(0, 0, 0, 0.07);
  --shadow-sm: 0 2px 12px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 24px 64px rgba(0, 0, 0, 0.18);
  --r: 18px;
  --r-sm: 10px;
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  font-family:
    "Noto Sans SC",
    -apple-system,
    "Microsoft YaHei",
    sans-serif;
  color: var(--text-1);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scrollbar-width: none;
  background-image: url(../images/body-bg.jpg);
  background-size: 100% auto;
  background-position: top center;
  background-repeat: no-repeat;
  background-attachment: scroll;
}

body::-webkit-scrollbar {
  display: none;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  background: var(--brand);
  color: #fff;
  padding: 8px 16px;
  border-radius: 0 0 var(--r-sm) var(--r-sm);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  z-index: 9999;
  transition: top 0.2s;
}

.skip-link:focus {
  top: 0;
}

.nav-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
}

.nav-bar-inner {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 10px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media screen and (min-width: 1600px) {
  .nav-bar-inner {
    max-width: 80%;
  }
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo img {
  height: 40px;
  width: auto;
  display: block;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 28px;
  position: relative;
}

.nav-search {
  display: flex;
  align-items: center;
  gap: 0;
  background: #f2f2f2;
  border: none;
  border-radius: 0;
  height: 36px;
  transition: background 0.2s;
  width: 320px;
}

.nav-search:focus-within {
  background: #e8e8e8;
}

.nav-search input {
  border: none;
  background: transparent;
  outline: none;
  border-radius: 0;
  font-size: 13px;
  color: var(--text-1);
  padding: 0 12px;
  flex: 1;
}

.nav-search input::placeholder {
  color: var(--text-3);
}

.nav-search button {
  background: linear-gradient(135deg, #5dc96a, #42d07d);
  border: none;
  border-radius: 0;
  cursor: pointer;
  padding: 0 16px;
  height: 100%;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  transition: background 0.15s;
}

.nav-search button:hover {
  background: linear-gradient(135deg, #4eb85a, #38b846);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-links a {
  font-size: 15px;
  color: var(--text-2);
  text-decoration: none;
  font-weight: 500;
  white-space: nowrap;
  transition: color 0.15s;
}

.nav-links a:hover {
  color: var(--brand);
}

.nav-search-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  padding: 16px;
  z-index: 9999;
  min-width: 320px;
}

.nav-search-dropdown.show {
  display: block;
}

.srch-sec {
  margin-bottom: 16px;
}

.srch-sec:last-child {
  margin-bottom: 0;
}

.srch-sec-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.srch-sec-label svg {
  color: #f5a623;
  flex-shrink: 0;
}

.srch-rec-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.srch-rec-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 6px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s;
}

.srch-rec-item:hover {
  background: var(--brand-light);
}

.srch-rec-item img {
  width: 28px;
  height: 28px;
  border-radius: 5px;
  flex-shrink: 0;
  object-fit: contain;
}

.srch-rec-item .srch-rec-name {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-1);
  line-height: 1.3;
}

.srch-rec-item .srch-rec-desc {
  font-size: 11px;
  color: var(--text-3);
  line-height: 1.3;
  margin-top: 1px;
}

.srch-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.srch-tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  background: #f5f5f5;
  font-size: 12px;
  color: var(--text-2);
  cursor: pointer;
  text-decoration: none;
  transition:
    background 0.15s,
    color 0.15s;
}

.srch-tag:hover {
  background: var(--brand-light);
  color: var(--brand);
}

.hero {
  padding: 20px 32px 0;
  text-align: center;
  position: relative;
  overflow: visible;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1080px;
  margin: 0 auto;
}

.app-icon-wrap {
  display: block;
  flex-shrink: 0;
}

.app-icon-img {
  width: 110px;
  height: 110px;
  border-radius: 23px;
  box-shadow:
    0 10px 32px rgba(66, 208, 125, 0.22),
    0 4px 12px rgba(0, 0, 0, 0.08);
  display: block;
}

.app-header-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  overflow: visible;
  animation: fadeUp 0.5s 0.1s var(--ease-out-expo) both;
  padding-top: 70px;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.app-title-block {
  text-align: left;
  display: inline;
}

.app-title-text {
  font-size: 46px;
  font-weight: 900;
  color: var(--text-1);
  letter-spacing: -0.8px;
  background: linear-gradient(
    90deg,
    var(--text-1) 40%,
    var(--brand) 60%,
    var(--text-1) 80%
  );
  background-size: 200% 100%;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: textShimmer 2.8s ease-in-out infinite;
}

@keyframes textShimmer {
  0% {
    background-position: 200% 0;
  }

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

.app-tagline-inline {
  font-size: 30px;
  font-weight: 400;
  color: var(--text-2);
  letter-spacing: 0;
}

.dl-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-top: 30px;
  animation: fadeUp 0.5s 0.18s var(--ease-out-expo) both;
}

.btn-dl {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: linear-gradient(135deg, #5dc96a, #42d07d);
  color: #fff;
  border: none;
  border-radius: 16px;
  padding: 0 64px;
  height: 70px;
  font-size: 22px;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  letter-spacing: 0.5px;
  box-shadow: 0 10px 36px rgba(66, 208, 125, 0.36);
  transition:
    transform 0.22s var(--ease-spring),
    box-shadow 0.22s ease;
  position: relative;
  overflow: hidden;
  touch-action: manipulation;
}

.btn-dl::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.14) 0%,
    transparent 60%
  );
  pointer-events: none;
}

.btn-dl:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 16px 48px rgba(66, 208, 125, 0.44);
}

.btn-dl:active {
  transform: scale(0.97);
}

.btn-dl:focus-visible {
  outline: 3px solid var(--brand);
  outline-offset: 3px;
}

.btn-dl-icon {
  font-size: 20px;
  line-height: 1;
  flex-shrink: 0;
}

.meta-pills {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  animation: fadeUp 0.5s 0.28s var(--ease-out-expo) both;
  margin-top: 90px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  line-height: 1;
  color: var(--text-2);
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 20px;
  padding: 6px 14px;
  transition:
    border-color 0.15s,
    background 0.15s;
  backdrop-filter: blur(8px);
  vertical-align: middle;
}

.pill:hover {
  border-color: rgba(66, 208, 125, 0.3);
  background: rgba(232, 250, 240, 0.9);
}

.pill svg {
  width: 12px;
  height: 12px;
  color: var(--brand);
  flex-shrink: 0;
}

.pill-sep {
  width: 1px;
  height: 12px;
  background: rgba(0, 0, 0, 0.08);
}

.install-platform-tip {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Separator inside pill shows before content */
.pill .pill-sep {
  margin-right: 8px;
  order: -1;
}

.pill-help-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 15px;
  height: 15px;
  border: 1.5px solid var(--brand);
  border-radius: 50%;
  background: none;
  padding: 0;
  cursor: pointer;
  color: var(--brand);
  flex-shrink: 0;
  transition:
    background 0.15s,
    border-color 0.15s;
  margin-left: 1px;
  position: relative;
  margin-left: 6px;
}

.pill-help-btn:hover {
  background: rgba(66, 208, 125, 0.12);
}

.pill-help-btn svg {
  width: 11px;
  height: 11px;
}

.pill-help-btn::after,
.pill-help-btn::before {
  display: none;
}

/* JS tooltip */
.pill-tooltip {
  position: fixed;
  background: rgba(30, 30, 30, 0.82);
  color: #fff;
  font-size: 11px;
  line-height: 1.4;
  white-space: nowrap;
  padding: 4px 9px;
  border-radius: 5px;
  pointer-events: none;
  z-index: 9999;
  opacity: 0;
  transition: opacity 0.15s;
}
.pill-tooltip::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 4px solid transparent;
  border-top-color: rgba(30, 30, 30, 0.82);
}
.pill-tooltip.visible {
  opacity: 1;
}

.pill-help-btn:hover::after,
.pill-help-btn:hover::before {
  opacity: 1;
}

/* Install platform tip - top position */
.install-platform-top-wrap {
  margin-top: 25px;
  text-align: center;
  width: 100%;
}
.install-platform-top {
  font-size: 14px;
  height: 20px;
  padding: 0 15px;
  color: #0fb950;
  background: #ecfaf2;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
}
.install-platform-top span {
  color: inherit;
}
.install-platform-top .btn-download {
  cursor: pointer;
  margin-left: 8px;
  color: inherit;
}
.install-platform-top::before {
  content: "";
  margin: 0 6px 0 0;
  width: 14px;
  height: 14px;
  background: url(../images/icon.png) no-repeat;
  background-position: 0 0;
  display: inline-block;
  vertical-align: -2px;
}

.ss-section {
  padding: 32px 0 40px;
  position: relative;
  overflow: visible;
  border: none !important;
  outline: none !important;
  scrollbar-width: none;
}

.ss-section::-webkit-scrollbar {
  display: none;
}

.ss-track-wrap {
  position: relative;
  width: 100%;
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
  border: none !important;
  outline: none !important;
}

.ss-track {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  flex-wrap: nowrap;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
}

/* Swiper styles */
#ssSwiper {
  position: relative;
  width: 100%;
  height: 250px;
}

#ssSwiper .swiper-slide {
  width: 500px;
  height: auto;
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  background: #e8ecef;
}

#ssSwiper .swiper-slide figure {
  margin: 0;
}

#ssSwiper .swiper-slide img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 2/1;
  object-fit: cover;
}

#ssSwiper .swiper-pagination {
  position: relative;
  margin-top: 24px;
  bottom: auto;
}

#ssSwiper .swiper-pagination-bullet {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #d0d5dd;
  opacity: 1;
  margin: 0 6px;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

#ssSwiper .swiper-pagination-bullet-active {
  width: 26px;
  border-radius: 4px;
  background: var(--brand);
}

.content-section {
  max-width: 100%;
  margin: 0 auto;
  padding: 40px 40px 80px;
}

@media screen and (min-width: 1600px) {
  .content-section {
    max-width: 80%;
  }
}

.card-list {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.card {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: var(--r);
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  padding: 28px 32px;
}

.card-intro {
  position: relative;
}

.card-intro::before {
  content: "360";
  position: absolute;
  top: 16px;
  right: 28px;
  font-size: 88px;
  font-weight: 900;
  color: rgba(66, 208, 125, 0.04);
  letter-spacing: -4px;
  line-height: 1;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.card-intro .card-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.card-intro .card-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-1);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.card-intro .card-title-bar {
  width: 3px;
  height: 15px;
  background: var(--brand);
  border-radius: 2px;
  flex-shrink: 0;
}

.desc-tagline {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.8;
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.desc-text {
  font-size: 16px;
  color: var(--text-2);
  line-height: 2;
  letter-spacing: 0.2px;
}

.update-log {
  margin-top: 18px;
  padding: 14px 18px;
  background: var(--brand-light);
  border-left: 3px solid var(--brand);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  font-size: 12.5px;
  color: var(--text-2);
  line-height: 1.8;
}

.update-log-label {
  font-size: 11.5px;
  font-weight: 700;
  color: var(--brand);
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.update-log-label svg {
  width: 12px;
  height: 12px;
}

.card-intro .card-img-wrap {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  aspect-ratio: 2/1;
}

.card-intro .card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.card-detail {
}

.card-detail .card-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
}

.card-detail .card-img-wrap {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  aspect-ratio: 2/1;
  order: -1;
}

.card-detail .card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.card-detail .card-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-1);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.card-detail .card-title-bar {
  width: 3px;
  height: 15px;
  background: var(--brand);
  border-radius: 2px;
  flex-shrink: 0;
}

.dtable {
  width: 100%;
}

.dtable tr td {
  padding: 7px 0;
  font-size: 13px;
  border-bottom: 1px solid #f5f5f5;
  vertical-align: top;
}

.dtable tr:last-child td {
  border-bottom: none;
}

.dtable .lbl {
  color: var(--text-3);
  width: 80px;
}

.dtable .val {
  color: #333;
  font-weight: 500;
}

.dtable .val.ok {
  color: var(--brand);
  font-weight: 600;
}

.mgr-card {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: var(--r);
  padding: 28px 32px;
}

.mgr-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin: 24px 0 28px;
}

.mgr-item {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 12px;
  border: 1px solid rgba(66, 208, 125, 0.1);
  padding: 20px 14px;
  text-align: center;
  box-shadow:
    0 2px 12px rgba(0, 0, 0, 0.06),
    0 1px 4px rgba(0, 0, 0, 0.04);
  transition:
    box-shadow 0.18s,
    transform 0.18s var(--ease-spring);
}

.mgr-item:hover {
  box-shadow:
    0 6px 20px rgba(66, 208, 125, 0.16),
    0 2px 8px rgba(0, 0, 0, 0.06);
  transform: translateY(-2px);
}

.mgr-icon {
  font-size: 24px;
  margin-bottom: 8px;
  display: block;
}

.mgr-t {
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--text-1);
}

.mgr-d {
  font-size: 11px;
  color: var(--text-3);
  line-height: 1.5;
}

.mgr-cta-area {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.btn-dl-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: linear-gradient(135deg, #5dc96a, #42d07d);
  color: #fff;
  border: none;
  border-radius: 16px;
  padding: 0 64px;
  height: 70px;
  font-size: 22px;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  letter-spacing: 0.5px;
  box-shadow: 0 10px 36px rgba(66, 208, 125, 0.36);
  transition:
    transform 0.22s var(--ease-spring),
    box-shadow 0.22s ease;
  position: relative;
  overflow: hidden;
  touch-action: manipulation;
}

.btn-dl-secondary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.14) 0%,
    transparent 60%
  );
  pointer-events: none;
}

.btn-dl-secondary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 10px 32px rgba(66, 208, 125, 0.36);
}

.btn-dl-secondary:active {
  transform: scale(0.97);
}

.btn-dl-secondary:focus-visible {
  outline: 3px solid var(--brand);
  outline-offset: 3px;
}

.mgr-plain-area {
  margin-top: 0;
}

.mgr-plain-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.mgr-plain-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(66, 208, 125, 0.15),
    transparent
  );
}

.mgr-plain-text {
  font-size: 12px;
  color: var(--text-3);
  white-space: nowrap;
}

.mgr-plain-btn {
  display: block;
  width: 100%;
  padding: 12px 0;
  background: none;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 10px;
  font-size: 13px;
  color: #666;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.18s;
  text-align: center;
}

.mgr-plain-btn:hover {
  border-color: #aaa;
  color: #333;
  background: rgba(0, 0, 0, 0.02);
}

.mgr-plain-btn:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 2px;
}

.mgr-plain-hint {
  font-size: 11px;
  color: #999;
  margin-left: 4px;
}

.mrShow {
  display: block;
}

.yybShow {
  display: none;
}

.sticky-dl {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid var(--border);
  padding: 12px 32px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 -6px 32px rgba(0, 0, 0, 0.08);
  transform: translateY(100%);
  transition: transform 0.32s var(--ease-out-expo);
}

.sticky-dl.visible {
  transform: translateY(0);
}

.sticky-app-info {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
}

.sticky-icon-img {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  flex-shrink: 0;
}

.sticky-name {
  font-size: 14px;
  font-weight: 700;
}

.sticky-meta {
  font-size: 12px;
  color: var(--text-3);
}

.sticky-btn {
  background: linear-gradient(135deg, #5dc96a, #42d07d);
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 0 28px;
  height: 42px;
  font-size: 15px;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(66, 208, 125, 0.3);
  transition: all 0.2s var(--ease-spring);
  flex-shrink: 0;
  touch-action: manipulation;
}

.sticky-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(66, 208, 125, 0.4);
}

.sticky-btn:focus-visible {
  outline: 3px solid var(--brand);
  outline-offset: 2px;
}

footer {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  color: #8896a5;
  font-size: 12px;
  padding: 28px 0 32px;
  margin-bottom: 70px;
  border-top: 1px solid rgba(66, 208, 125, 0.12);
}

.foot-in {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 40px;
}

@media screen and (min-width: 1600px) {
  .foot-in {
    max-width: 80%;
  }
}

footer a {
  color: var(--text-3);
  text-decoration: none;
  transition: color 0.15s;
}

footer a:hover {
  color: var(--text-2);
}

.foot-icp {
  font-size: 11.5px;
  color: var(--text-3);
  line-height: 2;
  text-align: center;
}

.foot-icp span {
  display: inline-block;
  color: inherit;
}

.foot-icp span + span:not(.fotter-companyName)::before {
  content: " | ";
  margin: 0 4px;
}

.foot-icp .fotter-companyName + .fotter-companyName::before {
  content: " | ";
  margin: 0 4px;
}

.foot-icp a {
  color: var(--text-3);
}

.foot-icp a:hover {
  color: var(--text-2);
}

.foot-disclaimer {
  font-size: 11px;
  color: rgba(136, 150, 165, 0.55);
  line-height: 1.85;
  text-align: center;
  margin-top: 6px;
}

.toast {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.88);
  background: rgba(18, 18, 18, 0.93);
  color: #fff;
  border-radius: 14px;
  padding: 18px 32px;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  pointer-events: none;
  opacity: 0;
  transition: all 0.25s var(--ease-spring);
  z-index: 9999;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.28);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  min-width: 180px;
}

.toast.show {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.toast-icon {
  font-size: 28px;
  line-height: 1;
}

.dl-prog-wrap {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 8888;
  background: #fff;
  border-top: 3px solid var(--brand);
  padding: 14px 36px;
  align-items: center;
  gap: 16px;
  box-shadow: 0 -6px 28px rgba(0, 0, 0, 0.1);
  animation: slideUp 0.28s ease;
}

.dl-prog-wrap.on {
  display: flex;
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
  }

  to {
    transform: translateY(0);
  }
}

.dl-prog-name {
  font-size: 13px;
  font-weight: 600;
  min-width: 200px;
}

.dl-prog-bg {
  flex: 1;
  height: 8px;
  background: #f0f2f5;
  border-radius: 5px;
  overflow: hidden;
}

.dl-prog-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--brand), #7de89e);
  border-radius: 5px;
  transition: width 0.25s ease;
}

.dl-prog-pct {
  font-size: 13px;
  color: var(--brand);
  font-weight: 700;
  min-width: 42px;
  text-align: right;
}

.dl-prog-x {
  cursor: pointer;
  color: #c0c8d4;
  font-size: 18px;
  background: none;
  border: none;
  padding: 4px;
  line-height: 1;
  transition: color 0.15s;
  touch-action: manipulation;
}

.dl-prog-x:hover {
  color: #888;
}

.dl-prog-x:focus-visible {
  outline: 2px solid var(--brand);
  border-radius: 4px;
}

.plain-dl-hint {
  font-size: 12px;
  color: #1aac4b;
  text-decoration: none;
  letter-spacing: 0.1px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #ecfaf2;
  padding: 4px 14px 4px 10px;
  border-radius: 999px;
  line-height: 1.6;
  margin-top: 14px;
}

.plain-dl-hint::before {
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='//www.w3.org/2000/svg' viewBox='0 0 14 14'%3E%3Ccircle cx='7' cy='7' r='7' fill='%231aac4b'/%3E%3Cpolyline points='3,7 6,10 11,4' fill='none' stroke='white' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
}

@keyframes mgrCardHighlight {
  0% {
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  }

  30% {
    box-shadow:
      0 0 0 3px rgba(66, 208, 125, 0.45),
      0 8px 32px rgba(66, 208, 125, 0.18);
  }

  100% {
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  }
}

.mgr-card-highlight {
  animation: mgrCardHighlight 1.4s var(--ease-out-expo);
}

/* Download process styles */
.xzlcbox {
  width: 100%;
  margin: 0 auto;
  display: inline-block;
}

.xzlcbox ul.mgr-grid {
  grid-template-columns: repeat(3, 1fr);
}

.xzlcbox ul {
  margin-top: 5px;
  width: 100%;
  height: 114px;
}

.xzlcbox ul li {
  float: left;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-sizing: content-box;
  background: #e5f8ff;
  border-radius: 0;
}

.xzlcbox ul li:before {
  content: "";
  width: 409px;
  height: 112px;
  background: url(../images/lc-bg.jpg) no-repeat;
  background-position: 0 0;
  display: inline-block;
  position: absolute;
  top: 0;
  left: 50%;
  margin-left: -204px;
  z-index: 2;
}

.xzlcbox ul li:nth-of-type(2):before {
  background-position: -410px 0;
}

.xzlcbox ul li:nth-of-type(3):before {
  background-position: -819px 0;
}

.xzlcbox ul li:last-child {
  padding-right: 0;
}

.xzlcbox ul li .name {
  width: 150px;
  font-size: 16px;
  color: #1b1b1b;
  position: relative;
  z-index: 3;
}

.xzlcbox ul li.l3 .name {
  width: 178px;
}

.xzlcbox ul li .name span {
  display: block;
  padding-bottom: 12px;
  font-size: 16px;
  font-weight: bold;
}

.xzlcbox ul li .img {
  width: 100px;
  position: relative;
  cursor: pointer;
}

.xzlcbox ul li .smallimg {
  width: 94px;
  height: 63px;
  border: #fff solid 3px;
  box-shadow: 0px 3px 5px rgba(135, 187, 205, 0.2);
}

.xzlcbox ul li .img span {
  width: 376px;
  height: 250px;
  padding-bottom: 0;
  box-shadow: 0px 0px 5px rgba(7, 0, 2, 0.1);
  background: url(../images/aqws-lcimg1.jpg) no-repeat;
  position: absolute;
  top: -275px;
  left: -239px;
  display: none;
  z-index: 1;
}

.xzlcbox ul li .img span img {
  width: 100%;
  height: 100%;
  display: block;
  box-shadow: 0px 0px 5px rgba(7, 0, 2, 0.1);
}

.xzlcbox ul li .img:hover span {
  display: block;
}

.xzlcbox ul li .img:before {
  content: "";
  width: 94px;
  height: 63px;
  border: #fff solid 3px;
  box-shadow: 0px 3px 5px rgba(135, 187, 205, 0.2);
  background: url(../images/aqws-lcimg1.jpg) no-repeat;
  background-size: 94px;
  display: inline-block;
  position: relative;
  z-index: 3;
}

.xzlcbox ul li.l2 .img:before {
  background: url(../images/aqws-lcimg2.jpg) no-repeat;
  background-size: 94px;
}

.xzlcbox ul li.l2 .img span {
  background: url(../images/aqws-lcimg2.jpg) no-repeat;
}

.xzlcbox ul li.l3 .img:before {
  background: url(../images/aqws-lcimg3.jpg) no-repeat;
  background-size: 94px;
}

.xzlcbox ul li.l3 .img span {
  background: url(../images/aqws-lcimg3.jpg) no-repeat;
  left: -267px;
}

.download-process--title {
  font-size: 16px;
  color: #111111;
  line-height: 74px;
}

.download-process--link {
  margin-left: 18px;
  font-size: 14px;
  height: 20px;
  padding: 0 15px 0 7px;
  display: flex;
}

.download-process {
  display: flex;
  height: 74px;
  align-items: center;
}

.download-process a {
  color: #0fb950;
  border-bottom: 1px solid #0fb950;
  cursor: pointer;
  margin-left: 8px;
}

/* Download process images by lc-type */
.xzlcbox[data-lc-type="aqws"] ul li.l1 .img:before,
.xzlcbox[data-lc-type="aqws"] ul li.l1 .img span {
  background-image: url(../images/aqws-lcimg1.jpg);
}
.xzlcbox[data-lc-type="aqws"] ul li.l2 .img:before,
.xzlcbox[data-lc-type="aqws"] ul li.l2 .img span {
  background-image: url(../images/aqws-lcimg2.jpg);
}
.xzlcbox[data-lc-type="aqws"] ul li.l3 .img:before,
.xzlcbox[data-lc-type="aqws"] ul li.l3 .img span {
  background-image: url(../images/aqws-lcimg3.jpg);
}

.xzlcbox[data-lc-type="jsdb"] ul li.l1 .img:before,
.xzlcbox[data-lc-type="jsdb"] ul li.l1 .img span {
  background-image: url(../images/jsdb-lcimg1.jpg);
}
.xzlcbox[data-lc-type="jsdb"] ul li.l2 .img:before,
.xzlcbox[data-lc-type="jsdb"] ul li.l2 .img span {
  background-image: url(../images/jsdb-lcimg2.jpg);
}
.xzlcbox[data-lc-type="jsdb"] ul li.l3 .img:before,
.xzlcbox[data-lc-type="jsdb"] ul li.l3 .img span {
  background-image: url(../images/jsdb-lcimg3.jpg);
}

.xzlcbox[data-lc-type="360rg"] ul li .img:before,
.xzlcbox[data-lc-type="360rg"] ul li .img span {
  background-size: 100% 100%;
}
.xzlcbox[data-lc-type="360rg"] ul li.l1 .img:before,
.xzlcbox[data-lc-type="360rg"] ul li.l1 .img span {
  background-image: url(../images/rg-lcimg1.png);
}
.xzlcbox[data-lc-type="360rg"] ul li.l2 .img:before,
.xzlcbox[data-lc-type="360rg"] ul li.l2 .img span {
  background-image: url(../images/rg-lcimg2.png);
}
.xzlcbox[data-lc-type="360rg"] ul li.l3 .img:before,
.xzlcbox[data-lc-type="360rg"] ul li.l3 .img span {
  background-image: url(../images/rg-lcimg3.png);
}

.xzlcbox[data-lc-type="yyb"] ul li .img:before,
.xzlcbox[data-lc-type="txgj"] ul li .img:before {
  background-size: 94px;
}
.xzlcbox[data-lc-type="yyb"] ul li .img span,
.xzlcbox[data-lc-type="txgj"] ul li .img span {
  background-size: 100% 100%;
}
.xzlcbox[data-lc-type="yyb"] ul li.l1 .img:before,
.xzlcbox[data-lc-type="yyb"] ul li.l1 .img span {
  background-image: url(../images/yyb-lcimg1.png);
}
.xzlcbox[data-lc-type="yyb"] ul li.l2 .img:before,
.xzlcbox[data-lc-type="yyb"] ul li.l2 .img span {
  background-image: url(../images/yyb-lcimg2.png);
}
.xzlcbox[data-lc-type="yyb"] ul li.l3 .img:before,
.xzlcbox[data-lc-type="yyb"] ul li.l3 .img span {
  background-image: url(../images/yyb-lcimg3.png);
}

.xzlcbox[data-lc-type="txgj"] ul li.l1 .img:before,
.xzlcbox[data-lc-type="txgj"] ul li.l1 .img span {
  background-image: url(../images/tx-lcimg1.png);
}
.xzlcbox[data-lc-type="txgj"] ul li.l2 .img:before,
.xzlcbox[data-lc-type="txgj"] ul li.l2 .img span {
  background-image: url(../images/tx-lcimg2.png);
}
.xzlcbox[data-lc-type="txgj"] ul li.l3 .img:before,
.xzlcbox[data-lc-type="txgj"] ul li.l3 .img span {
  background-image: url(../images/tx-lcimg3.png);
}

/* Hidden */
.hidden {
  display: none;
}

.overflow-hidden {
  overflow: hidden;
}
