/* =================================
   全局公共样式表 (Less版本)
   ================================= */
:root {
  /* ===== App711 设计令牌 ===== */
  --c-primary: #1E77FF;
  --c-primary-d: #155CD6;
  --c-accent: #ff9500;
  --c-text: #282828;
  --c-text2: #3a3a3a;
  --c-text3: #4d4d4d;
  --c-line: #eeeeee;
  --c-bg: #ffffff;
  --c-card: #ffffff;
  --c-footer: #0F2557;
  --radius-card: 12px;
  --radius-icon: 10px;
  --radius-btn: 16px;
  --shadow-card: 0 0 12px 0 rgba(14, 9, 62, 0.08);
  --container: 1200px;
  --gap: 60px;
  --font: "PingFang SC", -apple-system, "Helvetica Neue", Arial, sans-serif;
  /* ===== 兼容旧变量名（映射到绿色体系） ===== */
  --FontBody: var(--font);
  --FontTitle: var(--font);
  --Theme: var(--c-primary);
  --BgPage: var(--c-bg);
  --IndexTopBg: linear-gradient(142deg, #3D8BFF 2.96%, var(--c-primary) 68.67%, var(--c-primary-d) 100.55%);
  --BgNav: #FFFFFF;
  --TextNav: var(--c-text3);
  --BgFooter: var(--c-footer);
  --TextFooter: #ffffff;
  --TextPrimary: var(--c-text);
  --TextSecondary: var(--c-text3);
  --TextTertiary: #999999;
  --Hover: var(--c-primary-d);
  --Link: var(--c-primary);
  --Divider: var(--c-line);
  --Border: var(--c-line);
}
* {
  /* 消除边距 */
  margin: 0;
  padding: 0;
  /*盒模型默认使用内边框*/
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
/* GOTCHAS 防御：禁止横向溢出 */
html,
body {
  overflow-x: hidden;
  max-width: 100vw;
}
body {
  font-family: var(--font);
  color: var(--c-text);
  background: var(--c-bg);
}
html {
  --dir-multiplier: 1;
  --dir-transform: rotateZ(0deg);
}
html[dir="rtl"] {
  --dir-multiplier: -1;
  --dir-transform: rotateZ(180deg);
}
/*全局设置*/
p {
  font-family: var(--FontBody);
}
h1,
h2,
h3,
h4,
h5,
h6,
div,
a,
dl,
dt,
dd,
ul,
ol,
li,
form,
table,
textarea,
button,
span,
input {
  font-family: var(--FontTitle);
}
/*列表样式消除*/
ol,
ul,
li {
  list-style: none;
}
/*img在盒子中有下边距*/
img {
  /*IE7*/
  border: none;
  vertical-align: middle;
  object-fit: cover;
  max-width: 100%;
}
a {
  text-decoration: none;
  color: inherit;
  outline: none;
  border: none;
  box-shadow: none;
  -webkit-tap-highlight-color: transparent;
}
a:focus,
a:visited {
  text-decoration: none;
  outline: none;
}
input {
  outline: none;
  border: none;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
}
input:focus,
input:focus-visible,
input:active {
  outline: none !important;
  border: none !important;
  box-shadow: none !important;
  -webkit-box-shadow: none !important;
  -moz-box-shadow: none !important;
}
button {
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 0;
  margin: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
button:hover,
button:focus,
button:active {
  outline: none !important;
  border: none !important;
  box-shadow: none !important;
}
table,
td,
tr,
th {
  border-collapse: collapse;
}
ul::-webkit-scrollbar {
  width: 0 !important;
}
.app-card-title {
  color: #101828;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.4;
}
.category-card-title {
  color: #101828;
  font-weight: 600;
  font-size: 18px;
  line-height: 1.3;
}
.adTitle {
  text-align: start;
  font-size: 12px;
  line-height: 16px;
  margin: 3px 0 6px 0;
  color: #ccc;
}
.adHeight {
  width: 100%;
  height: 252px;
}
.ad-box {
  width: 100%;
}
.text-left {
  text-align: left;
}
.text-center {
  text-align: center;
}
.text-right {
  text-align: right;
}
.text-start {
  text-align: start;
}
.text-primary {
  color: #1E77FF;
}
.text-secondary {
  color: #666;
}
.text-muted {
  color: #999;
}
.text-light {
  color: #ccc;
}
.text-ellipsis {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.text-oneline {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  word-break: break-all;
}
.cover-link {
  position: absolute;
  top: 0;
  inset-inline-start: 0;
  bottom: 0;
  inset-inline-end: 0;
}
.clearfix {
  display: block;
}
.clearfix:before,
.clearfix:after {
  content: "";
  display: table;
}
.clearfix:after {
  clear: both;
}
* html .clearfix {
  height: 1%;
}
* + html .clearfix {
  min-height: 1%;
}
.left {
  float: left;
}
.right {
  float: right;
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fade-in {
  animation: fadeIn 0.3s ease-in;
}
@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.slide-in-up {
  animation: slideInUp 0.4s ease-out;
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.loading-spinner {
  animation: spin 1s linear infinite;
}
@media only screen and (max-width: 320px) {
  html {
    font-size: 13px;
  }
  .app-card-title {
    font-size: 14px;
  }
  .category-card-title {
    font-size: 16px;
  }
  .adHeight {
    width: 100%;
    height: 200px;
  }
  .ad-box {
    text-align: center;
  }
  .adTitle {
    padding: 0;
    font-size: 11px;
  }
}
@media only screen and (min-width: 321px) and (max-width: 767px) {
  html {
    font-size: 14px;
  }
  .app-card-title {
    font-size: 15px;
  }
  .category-card-title {
    font-size: 17px;
  }
  .adHeight {
    width: 100%;
    height: 252px;
  }
  .ad-box {
    text-align: center;
  }
  .adTitle {
    padding: 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1200px) {
  html {
    font-size: 15px;
  }
  .app-card-title {
    font-size: 16px;
  }
  .category-card-title {
    font-size: 18px;
  }
  .adHeight {
    width: 100%;
    height: 280px;
  }
  .ad-box {
    text-align: center;
    margin: 20px 0;
  }
}
@media only screen and (min-width: 1200px) {
  html {
    font-size: 16px;
  }
  .app-card-title {
    font-size: 18px;
  }
  .category-card-title {
    font-size: 20px;
  }
  .adHeight {
    width: 100%;
    height: 320px;
  }
  .ad-box {
    text-align: center;
  }
}
.section-hd {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
}
.section-hd-title {
  flex: 1;
  margin: 0;
  color: #333333;
  font-size: 22px;
  font-weight: 600;
  line-height: 30px;
}
.section-hd-more {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  flex-shrink: 0;
  text-decoration: none;
  transition: background 0.2s ease;
}
.section-hd-more:hover {
  background: #ffffff;
}
.section-hd-more svg {
  width: 24px;
  height: 24px;
  fill: #5C5E5E;
}
.breadcrumb {
  display: flex;
  align-items: center;
  height: 52px;
  max-width: 100%;
  gap: 0;
}
.breadcrumb-link {
  display: flex;
  align-items: center;
  gap: 4px;
  text-decoration: none;
  color: #1E77FF;
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
}
.breadcrumb-link svg {
  width: 14px;
  height: 14px;
  fill: #1E77FF;
  flex-shrink: 0;
}
.breadcrumb-sep {
  padding: 0 8px;
  color: rgba(0, 0, 0, 0.45);
  font-size: 14px;
  line-height: 22px;
}
.breadcrumb-current {
  color: #666666;
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
@media only screen and (max-width: 767px) {
  .section-hd-title {
    font-size: 20px;
    line-height: 28px;
  }
  .section-hd-more {
    width: 32px;
    height: 32px;
  }
  .section-hd-more svg {
    width: 20px;
    height: 20px;
  }
  .breadcrumb {
    height: 100%;
    padding: 10px 0;
  }
}
.header,
.header-inner,
.mobile-header {
  max-width: 100vw;
  box-sizing: border-box;
}
.logo {
  flex-shrink: 0;
  min-width: 0;
}
.header {
  width: 100%;
  background: var(--c-bg);
  border-bottom: 1px solid var(--c-line);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
}
.header-inner {
  width: 100%;
  max-width: var(--container);
  height: 65px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  box-sizing: border-box;
  min-width: 0;
}
.logo {
  display: block;
  height: 35px;
  width: auto;
  position: relative;
  border-radius: 4px;
}
.logo-image,
.logo img {
  height: 100%;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  display: block;
}
.logo-placeholder {
  height: 100%;
  min-width: 120px;
  background: #D7D7D7;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: #666;
}
.mobile-header {
  display: none;
  width: 100%;
  height: 48px;
  padding: 0 16px;
  background: var(--c-bg);
  justify-content: flex-start;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-sizing: border-box;
}
.mobile-logo {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  height: 32px;
}
.mobile-logo .logo-image {
  height: 100%;
  width: auto;
  max-width: 140px;
  object-fit: contain;
}
.mobile-logo .logo-placeholder {
  height: 32px;
  padding: 0 16px;
  background: var(--c-primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  font-weight: 600;
  font-size: 14px;
}
@media only screen and (min-width: 768px) {
  .mobile-header {
    display: none !important;
  }
  .desktop-nav {
    display: flex;
    width: 100%;
  }
  .header {
    max-width: 100vw;
    overflow-x: hidden;
  }
}
@media only screen and (max-width: 767px) {
  .desktop-nav {
    display: none;
  }
  .mobile-header {
    display: flex !important;
    width: 100%;
    height: 46px;
    box-sizing: border-box;
  }
}
@media only screen and (max-width: 320px) {
  .mobile-logo {
    height: 28px;
  }
  .mobile-logo .logo-image {
    height: 28px;
    max-width: 130px;
  }
  .mobile-logo .logo-placeholder {
    height: 28px;
    font-size: 13px;
    padding: 0 12px;
  }
}
.footer {
  width: 100%;
  padding: 48px 16px;
  background: var(--c-footer);
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
}
.footer-inner {
  width: 100%;
  max-width: var(--container);
  padding: 0 24px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  gap: 48px;
  box-sizing: border-box;
}
.footer-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  flex: 1 1 auto;
  min-width: 0;
}
.footer-disclaimer {
  width: 100%;
  color: rgba(255, 255, 255, 0.85);
  font-size: 13px;
  line-height: 1.7;
}
.footer-disclaimer * {
  color: inherit !important;
  background: transparent !important;
}
.footer-disclaimer p {
  margin: 0 0 10px;
}
.footer-disclaimer p:last-child {
  margin-bottom: 0;
}
.footer-disclaimer a {
  text-decoration: underline;
}
.footer-disclaimer a:hover {
  color: var(--c-accent) !important;
}
.footer-disclaimer ul,
.footer-disclaimer ol {
  margin: 0 0 10px;
  padding-left: 20px;
}
.footer-logo {
  width: auto;
  height: 35px;
  display: block;
  border-radius: 4px;
  flex-shrink: 0;
  text-decoration: none;
}
.footer-logo-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  border-radius: 4px;
}
.footer-logo-placeholder {
  width: 100%;
  height: 100%;
  background: #D7D7D7;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: #666;
  font-weight: 600;
}
.footer-nav {
  width: 100%;
  max-width: var(--container);
  margin-top: 32px;
  padding: 24px 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  box-sizing: border-box;
  color: #ffffff;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.8;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px 28px;
}
.footer-nav-link {
  color: inherit;
  transition: color 0.3s ease;
  white-space: nowrap;
}
.footer-nav-link:hover {
  color: var(--c-accent);
}
@media only screen and (min-width: 768px) and (max-width: 1200px) {
  .footer {
    padding: 40px 16px;
  }
  .footer-inner {
    max-width: 100%;
    padding: 0 20px;
    gap: 32px;
  }
}
@media only screen and (max-width: 767px) {
  .footer {
    padding: 32px 16px;
  }
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
    padding: 0 4px;
  }
  .footer-disclaimer {
    font-size: 12px;
  }
  .footer-logo {
    height: 30px;
  }
  .footer-nav {
    margin-top: 24px;
    padding: 20px 4px 0;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 6px 20px;
    line-height: 2;
  }
  .footer-nav-link {
    padding: 0;
  }
}
@media only screen and (max-width: 767px) and only screen and (max-width: 320px) {
  .footer {
    padding: 24px 12px;
  }
  .footer-inner {
    gap: 20px;
  }
  .footer-logo {
    height: 24px;
  }
  .footer-nav {
    gap: 0 16px;
    font-size: 13px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .footer .footer-nav-link {
    transition: none !important;
  }
}
/* =================================
   应用图标行（Latest Update Apps/Games）
   PC: 8 个一行；移动端: 横向滚动
   全局可用
   ================================= */
.app-row-section {
  display: flex;
  flex-direction: column;
}
.app-row-track {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 16px;
}
.app-row-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-decoration: none;
  min-width: 0;
}
.app-row-item-img-wrap {
  height: 91.5px;
  width: 91.5px;
  border-radius: 14px;
  align-self: stretch;
  aspect-ratio: 1/1;
  overflow: hidden;
}
.app-row-item-img {
  width: 100%;
  height: auto;
  border-radius: 14px;
  object-fit: cover;
  transition: transform 0.3s ease-in-out;
}
.app-row-item:hover .app-row-item-img {
  transform: scale(1.05);
}
.app-row-item-body {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.app-row-item-name {
  color: #333333;
  font-size: 16px;
  font-family: Poppins, -apple-system, sans-serif;
  font-weight: 500;
  text-transform: capitalize;
  line-height: 20px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.app-row-item-rating {
  display: flex;
  align-items: center;
  gap: 2px;
  color: #5C5E5E;
  font-size: 12px;
  font-family: Poppins, -apple-system, sans-serif;
  font-weight: 500;
  line-height: 17px;
}
.app-row-item-rating svg {
  width: 12px;
  height: 12px;
  fill: #FDC700;
  flex-shrink: 0;
}
@media only screen and (min-width: 768px) and (max-width: 1199px) {
  .app-row-track {
    grid-template-columns: repeat(8, minmax(0, 1fr));
    gap: 16px;
  }
  .app-row-item-img-wrap {
    width: 60px;
    height: 60px;
  }
  .app-row-item-img {
    width: 60px;
    height: 60px;
  }
  .app-row-item {
    min-width: 0;
  }
}
@media only screen and (max-width: 767px) {
  .app-row-section {
    overflow: visible;
    min-width: 0;
  }
  .app-row-track {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    overflow-y: visible;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    gap: 12px;
    min-width: 0;
    padding-bottom: 4px;
  }
  .app-row-track::-webkit-scrollbar {
    display: none;
  }
  .app-row-item {
    width: 91.5px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    scroll-snap-align: start;
  }
  .app-row-item-img {
    border-radius: 14px;
  }
}
/* =================================
   横版应用卡片（Hot Apps / Hot Games）
   PC: 两列；移动端: 单列
   ================================= */
.hot-section {
  display: flex;
  flex-direction: column;
}
.hot-section-list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.app-card {
  width: calc(50% - 8px);
  padding: 16px;
  background: white;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 16px;
  border: 1px solid #EEE;
  text-decoration: none;
}
.app-card:hover {
  border: 1px solid #EEE;
  background: #F2F2F2;
}
.app-card-icon {
  width: 72px;
  height: 72px;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
}
.app-card-icon img {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  object-fit: cover;
  display: block;
}
.app-card-info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.app-card-name {
  margin: 0;
  color: #101828;
  font-size: 16px;
  font-family: Poppins, -apple-system, sans-serif;
  font-weight: 500;
  line-height: 24px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.app-card-category {
  margin: 0;
  color: #666666;
  font-size: 14px;
  font-family: Poppins, -apple-system, sans-serif;
  font-weight: 400;
  line-height: 22px;
}
.app-card-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  height: 20px;
}
.app-card-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  color: #666666;
  font-size: 14px;
  font-family: Poppins, -apple-system, sans-serif;
  font-weight: 400;
  line-height: 20px;
}
.app-card-rating svg {
  width: 16px;
  height: 16px;
  fill: #FDC700;
  flex-shrink: 0;
}
.app-card-btn {
  flex-shrink: 0;
  padding: 6px 24px;
  background: #1E77FF;
  border-radius: 10px;
  color: white;
  font-size: 16px;
  font-family: Poppins, -apple-system, sans-serif;
  font-weight: 500;
  line-height: 24px;
  white-space: nowrap;
  transition: background 0.2s ease;
}
.app-card-btn:hover {
  background: #0061f4;
}
@media only screen and (max-width: 767px) {
  .app-card {
    width: 100%;
    padding: 12px;
  }
  .app-card-icon {
    border-radius: 10px;
  }
  .app-card-category {
    font-size: 12px;
    line-height: 18px;
  }
  .app-card-meta {
    gap: 12px;
  }
  .app-card-btn {
    padding: 5px 16px;
    font-size: 14px;
    border-radius: 8px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1199px) {
  .app-card-btn {
    padding: 4px 12px;
    font-size: 14px;
  }
  .app-card-icon {
    border-radius: 10px;
  }
  .app-card-category {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 12px;
  }
}
/* =================================
   Popular articles 文章卡网格
   样式主要由 index.less 提供（.articles-grid / .article-card）。
   此文件在其它页面单独引用时提供同等定义。
   ================================= */
.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.article-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 0 12px 0 rgba(14, 9, 62, 0.08);
  overflow: hidden;
  text-decoration: none;
  transition: transform 0.2s ease;
}
.article-card:hover {
  transform: translateY(-3px);
}
.article-card-cover {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #f2f2f2;
  overflow: hidden;
}
.article-card-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.article-card-title {
  margin: 0;
  padding: 14px 16px;
  color: #3a3a3a;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .articles-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}
/* ---------- 安全报告弹窗（公共组件） ---------- */
.security-modal-wrapper {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 24px;
  box-sizing: border-box;
}
.security-modal-wrapper[hidden] {
  display: none !important;
}
.security-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 0;
}
.security-modal-dialog {
  display: inline-flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 32px;
  width: 100%;
  max-width: 608px;
  padding: 32px;
  background: #ffffff;
  box-shadow: 0 4px 6px -4px rgba(0, 0, 0, 0.1), 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  border-radius: 16px;
  box-sizing: border-box;
  margin: auto;
  z-index: 1;
}
.security-modal-header {
  align-self: stretch;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.security-modal-heading {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 4px;
}
.security-modal-title {
  color: #333333;
  font-size: 22px;
  font-family: Poppins, -apple-system, sans-serif;
  font-weight: 600;
  line-height: 30px;
  word-wrap: break-word;
  margin: 0;
}
.security-modal-subtitle {
  color: #666666;
  font-size: 14px;
  font-family: Poppins, -apple-system, sans-serif;
  font-weight: 400;
  line-height: 22px;
  word-wrap: break-word;
  margin: 0;
}
.security-modal-close {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  color: #99A1AF;
}
.security-modal-close .security-modal-close-icon {
  width: 14px;
  height: 14px;
}
.security-modal-body {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.security-modal-body--has-data {
  gap: 32px;
}
.security-modal-body--no-data {
  gap: 24px;
}
/* 应用信息区 */
.security-modal-app {
  align-self: stretch;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 16px;
  min-height: 80px;
}
.security-modal-app-icon {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  flex-shrink: 0;
  object-fit: cover;
}
.security-modal-app-info {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 4px;
}
.security-modal-app-name {
  align-self: stretch;
  color: #333333;
  font-size: 20px;
  font-family: Poppins, -apple-system, sans-serif;
  font-weight: 600;
  line-height: 28px;
  word-wrap: break-word;
  margin: 0;
}
.security-modal-app-meta {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 10px;
  flex-wrap: wrap;
  margin: 0;
}
.security-modal-app-version,
.security-modal-app-verified {
  color: #666666;
  font-size: 16px;
  font-family: Poppins, -apple-system, sans-serif;
  font-weight: 400;
  line-height: 24px;
  word-wrap: break-word;
}
/* 分析详情区（有数据） */
.security-modal-analysis {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}
.security-modal-analysis-heading {
  color: #99A1AF;
  font-size: 14px;
  font-family: Arial, -apple-system, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 20px;
  letter-spacing: 0.35px;
  word-wrap: break-word;
  margin: 0;
}
.security-modal-banner {
  align-self: stretch;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: #ECFDF5;
  border-radius: 16px;
  box-sizing: border-box;
}
.security-modal-banner--safe {
  border: none;
}
.security-modal-banner-indicator {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 4px solid #00BC7D;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
}
.security-modal-banner-num {
  color: #009966;
  font-size: 24px;
  font-family: Arial, -apple-system, sans-serif;
  font-weight: 700;
  line-height: 32px;
  text-align: center;
}
.security-modal-banner-total {
  color: #009966;
  font-size: 12px;
  font-family: Poppins, -apple-system, sans-serif;
  font-weight: 400;
  line-height: 16px;
  text-align: center;
}
.security-modal-banner-text {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.security-modal-banner-main {
  align-self: stretch;
  color: #333333;
  font-size: 16px;
  font-family: Poppins, -apple-system, sans-serif;
  font-weight: 500;
  line-height: 24px;
  word-wrap: break-word;
  margin: 0;
}
.security-modal-banner-sub {
  color: #666666;
  font-size: 14px;
  font-family: Poppins, -apple-system, sans-serif;
  font-weight: 400;
  line-height: 22px;
  word-wrap: break-word;
  margin: 0;
}
.security-modal-checks {
  align-self: stretch;
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  gap: 16px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.security-modal-check {
  flex: 1 1 0;
  min-width: 0;
  min-height: 58px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 12px;
  padding-left: 16px;
  background: #ECFDF5;
  border-radius: 14px;
  border: 1px solid #D0FAE5;
  box-sizing: border-box;
  color: #364153;
  font-size: 16px;
  font-family: Poppins, -apple-system, sans-serif;
  font-weight: 400;
  line-height: 24px;
  word-wrap: break-word;
}
.security-modal-check-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #00BC7D;
}
.security-modal-check-icon svg {
  width: 24px;
  height: 24px;
}
/* CTA 区（有数据） */
.security-modal-cta {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
.security-modal-vt-btn {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #1E77FF;
  color: #1E77FF;
  font-size: 14px;
  font-family: Poppins, -apple-system, sans-serif;
  font-weight: 500;
  line-height: 20px;
  text-decoration: none;
  box-sizing: border-box;
  background: transparent;
  cursor: pointer;
}
.security-modal-info-link {
  align-self: stretch;
  text-align: center;
  color: #1E77FF;
  font-size: 16px;
  font-family: Poppins, -apple-system, sans-serif;
  font-weight: 400;
  line-height: 24px;
  word-wrap: break-word;
  text-decoration: none;
}
/* 无数据状态 */
.security-modal-empty {
  align-self: stretch;
}
.security-modal-empty-text {
  align-self: stretch;
  color: #666666;
  font-size: 16px;
  font-family: Poppins, -apple-system, sans-serif;
  font-weight: 400;
  line-height: 24px;
  word-wrap: break-word;
  margin: 0;
}
.security-modal-footer {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}
.security-modal-footer-link {
  display: inline-flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  color: #2B7FFF;
  font-size: 16px;
  font-family: Poppins, -apple-system, sans-serif;
  font-weight: 400;
  line-height: 24px;
  word-wrap: break-word;
  text-decoration: none;
}
.security-modal-footer-link .security-modal-footer-link-icon {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  color: #2B7FFF;
}
/* 移动端适配 */
@media only screen and (max-width: 767px) {
  .security-modal-wrapper {
    padding: 16px;
    align-items: flex-end;
    justify-content: center;
  }
  .security-modal-dialog {
    max-width: 100%;
    width: 100%;
    padding: 24px 20px;
    gap: 24px;
    border-radius: 16px;
  }
  .security-modal-body--has-data {
    gap: 24px;
  }
  .security-modal-app {
    min-height: auto;
    flex-wrap: wrap;
  }
  .security-modal-app-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
  }
  .security-modal-app-name {
    font-size: 18px;
    line-height: 26px;
  }
  .security-modal-app-version,
  .security-modal-app-verified {
    font-size: 14px;
    line-height: 22px;
  }
  .security-modal-checks {
    flex-direction: column;
  }
  .security-modal-check {
    min-height: 52px;
    padding-left: 12px;
  }
}
/* =================================
   设计令牌（目标站 app711.com）
   ================================= */
:root {
  --c-primary: #1E77FF;
  --c-accent: #ff9500;
  --c-text: #282828;
  --c-text2: #3a3a3a;
  --c-line: #eee;
  --c-card: #fff;
  --radius-card: 12px;
  --radius-icon: 10px;
  --radius-btn: 16px;
  --shadow-card: 0 0 12px 0 rgba(14, 9, 62, 0.08);
  --container: 1200px;
}
/* ---------- 页面主容器 ---------- */
.appDetailWrap {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px 48px;
  box-sizing: border-box;
}
/* ---------- Sprite 图标着色（currentColor） ---------- */
.detail-hero-verified {
  color: var(--c-primary);
}
.detail-hero-star {
  color: var(--c-accent);
}
.detail-hero-star.is-empty {
  color: #e0e0e0;
}
.detail-screenshots-arrow {
  color: #626365;
}
/* ---------- 左右布局 ---------- */
.detail-layout {
  display: flex;
  align-items: flex-start;
  gap: 40px;
}
.detail-main {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.detail-sidebar {
  width: 300px;
  flex-shrink: 0;
}
/* ---------- 通用区块标题 ---------- */
.detail-section-hd {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.detail-section-hd-title {
  flex: 1;
  margin: 0;
  padding: 0 0 12px;
  color: var(--c-text);
  font-size: 22px;
  font-family: var(--FontTitle);
  font-weight: 600;
  line-height: 30px;
  position: relative;
  padding-left: 14px;
}
.detail-section-hd-title::before {
  content: '';
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 16px;
  width: 4px;
  border-radius: 2px;
  background: var(--c-primary);
}
.detail-section-hd-more {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  flex-shrink: 0;
  cursor: pointer;
  color: #5c5e5e;
}
.detail-section-hd-more:hover {
  background: #f5f5f5;
}
/* =================================
   App 头区：大图标 + 名称 + 星级
   ================================= */
.detail-hero {
  display: flex;
  align-items: center;
  gap: 28px;
  padding-top: 8px;
}
.detail-hero-logo {
  width: 170px;
  height: 170px;
  border-radius: var(--radius-icon);
  object-fit: cover;
  flex-shrink: 0;
  background: #eee;
}
.detail-hero-meta {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.detail-hero-name {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  color: var(--c-text);
  font-size: 32px;
  font-family: var(--FontTitle);
  font-weight: 700;
  line-height: 1.2;
  word-break: break-word;
}
.detail-hero-verified {
  flex-shrink: 0;
}
.detail-hero-rating {
  display: flex;
  align-items: center;
  gap: 8px;
}
.detail-hero-stars {
  display: inline-flex;
  gap: 3px;
}
.detail-hero-score {
  color: var(--c-text2);
  font-size: 17px;
  font-family: var(--FontTitle);
  font-weight: 600;
  margin-left: 4px;
}
/* =================================
   移动端统计条：Ratings / Downloads / Age
   （PC 默认隐藏，仅移动端显示，对齐目标站 .main-app-info-mobile）
   ================================= */
.detail-statbar {
  display: none;
  /* PC 隐藏 */
  justify-content: space-between;
  padding: 6px 0 0;
}
.detail-statbar-col {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}
.detail-statbar-col + .detail-statbar-col {
  border-left: 1px solid var(--c-line);
}
.detail-statbar-num {
  color: #595959;
  font-size: 14px;
  font-family: var(--FontTitle);
  font-weight: 400;
  line-height: 20px;
}
.detail-statbar-label {
  color: #9c9c9c;
  font-size: 13px;
  font-family: var(--FontTitle);
  font-weight: 400;
  line-height: 18px;
}
/* 下载提示文案（位于按钮组顶部） */
.detail-dlbtns-desc {
  width: 100%;
  margin: 0;
  color: #666;
  font-size: 14px;
  line-height: 1.6;
}
/* =================================
   信息表 6 项键值对
   ================================= */
.detail-infotable {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px 56px;
  border-top: 1px solid var(--c-line);
  border-bottom: 1px solid var(--c-line);
  padding: 14px 0;
}
.detail-infotable-row {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding: 10px 0;
  min-width: 0;
}
.detail-infotable-key {
  color: #9a9a9a;
  font-size: 13px;
  font-family: var(--FontTitle);
  font-weight: 500;
  flex-shrink: 0;
  min-width: 86px;
}
.detail-infotable-val {
  color: var(--c-text2);
  font-size: 14px;
  font-family: var(--FontTitle);
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.detail-infotable-val.is-link {
  color: var(--c-primary);
  text-decoration: none;
}
.detail-infotable-val.is-link:hover {
  text-decoration: underline;
}
.detail-infotable #detail-security-val {
  color: var(--c-primary);
  cursor: pointer;
}
/* =================================
   下载按钮组
   ================================= */
.detail-dlbtns {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.detail-dlbtn {
  flex: 1 1 0;
  min-width: 180px;
  height: 54px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--c-card);
  border: 1px solid var(--c-line);
  border-radius: 12px;
  color: var(--c-text);
  font-size: 15px;
  font-family: var(--FontTitle);
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  /* 主按钮：APK 下载，蓝色实心，对齐目标站的主行动按钮 */
}
.detail-dlbtn svg {
  flex-shrink: 0;
}
.detail-dlbtn:hover {
  box-shadow: var(--shadow-card);
}
.detail-dlbtn--apk {
  background: var(--c-primary);
  border-color: var(--c-primary);
  color: #fff;
}
.detail-dlbtn--apk svg {
  color: #fff;
}
.detail-dlbtn--apk:hover {
  background: #1668e6;
  border-color: #1668e6;
}
/* =================================
   正文 article（Features / Pros / Cons 等）
   ================================= */
.detail-article {
  color: var(--c-text2);
}
.detail-article h1,
.detail-article h2,
.detail-article h3,
.detail-article h4,
.detail-article h5 {
  font-family: var(--FontTitle);
  color: var(--c-text);
  margin: 24px 0 12px;
  line-height: 1.3;
}
.detail-article h2 {
  font-size: 22px;
  font-weight: 600;
}
.detail-article h3 {
  font-size: 18px;
  font-weight: 600;
}
.detail-article h4 {
  font-size: 16px;
  font-weight: 600;
}
.detail-article p {
  font-size: 16px;
  line-height: 1.7;
  margin: 0 0 16px;
  color: var(--c-text2);
}
.detail-article ul,
.detail-article ol {
  margin: 0 0 16px;
  padding-left: 22px;
}
.detail-article ul {
  list-style: disc;
}
.detail-article ol {
  list-style: decimal;
}
.detail-article li {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 8px;
  color: var(--c-text2);
}
.detail-article a {
  color: var(--c-primary);
  text-decoration: none;
}
.detail-article a:hover {
  text-decoration: underline;
}
.detail-article img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}
.detail-article table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 0 16px;
  font-size: 15px;
}
.detail-article table th,
.detail-article table td {
  border: 1px solid var(--c-line);
  padding: 10px 12px;
  text-align: left;
}
.detail-article table th {
  background: #f7f7f7;
  color: var(--c-text);
  font-weight: 600;
}
.detail-article strong {
  color: var(--c-text);
}
/* =================================
   Screenshots 模块
   ================================= */
.detail-screenshots {
  display: flex;
  flex-direction: column;
}
.detail-screenshots-track-wrap {
  position: relative;
  overflow: hidden;
}
.detail-screenshots-track {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.detail-screenshots-track::-webkit-scrollbar {
  display: none;
}
.detail-screenshots-img {
  width: 183px;
  height: 326px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
  background: #eee;
}
.detail-screenshots-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  border: none;
  cursor: pointer;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.2), 1px 1px 2px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.detail-screenshots-btn-prev {
  left: 0;
}
.detail-screenshots-btn-next {
  right: 0;
}
.detail-screenshots-btn[disabled] {
  opacity: 0.3;
  cursor: default;
}
/* =================================
   Similar Apps：2 列卡片网格
   ================================= */
.detail-similar {
  display: flex;
  flex-direction: column;
}
.detail-similar-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.detail-similar-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px;
  background: var(--c-card);
  border: 1px solid var(--c-line);
  border-radius: var(--radius-card);
  text-decoration: none;
  transition: box-shadow 0.2s ease;
  min-width: 0;
}
.detail-similar-card:hover {
  box-shadow: var(--shadow-card);
}
.detail-similar-card-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-icon);
  object-fit: cover;
  flex-shrink: 0;
  background: #eee;
}
.detail-similar-card-body {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.detail-similar-card-name {
  margin: 0;
  color: var(--c-text);
  font-size: 15px;
  font-family: var(--FontTitle);
  font-weight: 600;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.detail-similar-card-cat {
  margin: 0;
  color: #8a8a8a;
  font-size: 13px;
  font-family: var(--FontTitle);
  font-weight: 400;
  line-height: 1.4;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.detail-similar-card-go {
  flex-shrink: 0;
  color: var(--c-primary);
  display: flex;
  align-items: center;
}
/* =================================
   右侧 Top Download 侧边栏
   ================================= */
.detail-topdl {
  width: 100%;
  border: 1px solid var(--c-line);
  border-radius: var(--radius-card);
  padding: 16px;
  box-sizing: border-box;
}
.detail-topdl-title {
  margin: 0 0 16px;
  padding-left: 12px;
  color: var(--c-text);
  font-size: 18px;
  font-family: var(--FontTitle);
  font-weight: 600;
  line-height: 26px;
  position: relative;
}
.detail-topdl-title::before {
  content: '';
  position: absolute;
  left: 0;
  top: 3px;
  bottom: 3px;
  width: 4px;
  border-radius: 2px;
  background: var(--c-primary);
}
.detail-topdl-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 12px;
}
.detail-topdl-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  min-width: 0;
}
.detail-topdl-item-icon {
  width: 72px;
  height: 72px;
  border-radius: var(--radius-icon);
  object-fit: cover;
  background: #eee;
}
.detail-topdl-item-name {
  width: 100%;
  text-align: center;
  color: var(--c-text2);
  font-size: 13px;
  font-family: var(--FontTitle);
  font-weight: 500;
  line-height: 18px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
/* =================================
   响应式：移动端栈叠单列
   ================================= */
@media only screen and (max-width: 767px) {
  .appDetailWrap {
    padding: 0 16px 32px;
  }
  .detail-layout {
    flex-direction: column;
    gap: 28px;
  }
  .detail-main {
    width: 100%;
  }
  /* 侧栏移到正文下方 */
  .detail-sidebar {
    width: 100%;
    order: 2;
  }
  /* Hero：移动端居中纵向堆叠（图标在上、名称居中、星级居中），对齐目标站 */
  .detail-hero {
    flex-direction: column;
    gap: 10px;
    padding-top: 8px;
    align-items: center;
    text-align: center;
  }
  .detail-hero-logo {
    width: 80px;
    height: 80px;
  }
  .detail-hero-meta {
    gap: 8px;
    align-items: center;
    width: 100%;
  }
  .detail-hero-name {
    font-size: 18px;
    font-weight: 600;
    gap: 6px;
    justify-content: center;
  }
  .detail-hero-verified {
    width: 18px;
    height: 18px;
  }
  .detail-hero-rating {
    gap: 6px;
    justify-content: center;
  }
  .detail-hero-stars svg {
    width: 16px;
    height: 16px;
  }
  .detail-hero-score {
    font-size: 14px;
    color: #595959;
    margin-left: 2px;
    font-weight: 400;
  }
  /* 移动端显示统计条 */
  .detail-statbar {
    display: flex;
  }
  /* 信息表：单列全宽，label 固定宽度在左、value 紧随其后左对齐（对齐目标站 .main-about-item） */
  .detail-infotable {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 0;
    border-top: none;
    border-bottom: none;
  }
  .detail-infotable-row {
    display: flex;
    align-items: baseline;
    justify-content: flex-start;
    gap: 0;
    padding: 13px 0;
    border-bottom: none;
  }
  .detail-infotable-key {
    width: 144px;
    flex: 0 0 144px;
    min-width: 144px;
    color: #414141;
    font-size: 15px;
    font-weight: 500;
  }
  .detail-infotable-val {
    flex: 0 1 auto;
    text-align: left;
    color: #7e7e7e;
    font-size: 13px;
    font-weight: 400;
    min-width: 0;
  }
  .detail-infotable-val.is-link {
    color: var(--c-primary);
  }
  .detail-infotable #detail-security-val {
    color: var(--c-primary);
  }
  /* 下载区：提示文案 + 全宽栈叠白底描边按钮（对齐目标站 .main-app-download） */
  .detail-dlbtns {
    flex-direction: column;
    gap: 10px;
  }
  .detail-dlbtns-desc {
    margin-bottom: 6px;
  }
  .detail-dlbtn {
    flex: none;
    width: 100%;
    height: 52px;
    min-width: 0;
    border-radius: 10px;
    border: 2px solid var(--c-line);
    background: #fff;
    color: #333;
    /* 移动端主按钮也跟随目标站：白底描边（目标站移动端首屏按钮为白底） */
  }
  .detail-dlbtn--apk {
    background: var(--c-primary);
    border-color: var(--c-primary);
    color: #fff;
  }
  /* Similar / Trending：单列 */
  .detail-similar-grid {
    grid-template-columns: 1fr;
  }
  .detail-section-hd-title {
    font-size: 20px;
    line-height: 28px;
  }
  /* Screenshots 横向滚动 */
  .detail-screenshots-track-wrap {
    overflow: visible;
  }
  .detail-screenshots-track {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .detail-screenshots-track::-webkit-scrollbar {
    display: none;
  }
  .detail-screenshots-img {
    width: 48vw;
    height: auto;
    aspect-ratio: 9/16;
    scroll-snap-align: start;
  }
  .detail-screenshots-btn {
    display: none;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1199px) {
  .detail-layout {
    gap: 24px;
  }
  .detail-sidebar {
    width: 260px;
  }
  .detail-infotable {
    grid-template-columns: repeat(2, 1fr);
    gap: 0 32px;
  }
}
