/* =================================
   全局公共样式表 (Less版本)
   ================================= */
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  --FontBody: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, "PingFang SC", "Noto Sans", Roboto, "Microsoft Yahei", sans-serif;
  --FontTitle: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, "PingFang SC", "Noto Sans", Roboto, "Microsoft Yahei", sans-serif;
  --Theme: #0088FF;
  --BgPage: #f8f8f8;
  --BgNav: #FFFFFF;
  --BgFooter: #0088FF;
  --TextPrimary: #111111;
  --TextSecondary: #757575;
  --TextTertiary: #979897;
  --Hover: #0066CC;
  --Link: #0088FF;
  --Divider: #E5E5E5;
  --Border: #E5E5E5;
}
html {
  --dir-multiplier: 1;
  --dir-transform: rotateZ(0deg);
  background-color: var(--BgPage);
  overflow-x: hidden;
}
html[dir="rtl"] {
  --dir-multiplier: -1;
  --dir-transform: rotateZ(180deg);
}
body {
  overflow-x: hidden;
}
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 {
  border: none;
  vertical-align: middle;
  object-fit: cover;
}
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: #000000;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.4;
}
.category-card-title {
  color: #111111;
  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: #0088FF;
}
.text-secondary {
  color: #757575;
}
.text-muted {
  color: #979897;
}
.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: 900px) {
  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: 901px) 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: 1201px) {
  html {
    font-size: 16px;
  }
  .app-card-title {
    font-size: 18px;
  }
  .category-card-title {
    font-size: 20px;
  }
  .adHeight {
    width: 100%;
    height: 280px;
  }
  .ad-box {
    text-align: center;
  }
}
.section-hd {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0 12px;
}
.section-hd-title {
  flex: 1;
  margin: 0;
  color: #0F112F;
  font-size: 20px;
  font-weight: 600;
  line-height: 28px;
}
.section-hd-more {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  text-decoration: none;
  color: #979897;
  font-size: 14px;
  gap: 4px;
  transition: color 0.2s ease;
}
.section-hd-more:hover {
  color: #0088FF;
}
.section-hd-more svg {
  width: 16px;
  height: 16px;
}
.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: #0088FF;
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
}
.breadcrumb-link svg {
  width: 14px;
  height: 14px;
  fill: #0088FF;
  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: 18px;
    line-height: 26px;
  }
  .section-hd-more {
    font-size: 13px;
  }
  .section-hd-more svg {
    width: 14px;
    height: 14px;
  }
  .breadcrumb {
    height: 100%;
    padding: 10px 0;
  }
}
.header {
  width: 100%;
  background: #FFFFFF;
  border-bottom: 1px solid #E5E5E5;
  box-sizing: border-box;
}
.header-body {
  width: 98%;
  max-width: 1200px;
  height: 49px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-sizing: border-box;
}
.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.logo-image {
  height: 30px;
  width: auto;
  object-fit: contain;
}
.logo-text {
  font-size: 18px;
  font-weight: 600;
  color: #111111;
}
.search-btn {
  width: 30px;
  height: 30px;
  border-radius: 30px;
  background: #EDEDED;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s ease;
}
.search-btn:hover {
  background: #DEDEDE;
}
.search-btn svg {
  width: 16px;
  height: 16px;
  color: #666;
}
@media only screen and (min-width: 901px) {
  .header-body {
    padding: 0 24px;
  }
}
.footer {
  width: 100%;
  background: #0088FF;
  margin-top: 20px;
  box-sizing: border-box;
}
.footer-inner {
  width: 98%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 15px 16px 18px;
  box-sizing: border-box;
}
.footer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 12px;
  border-bottom: 1px solid #5AB8FF;
}
.footer-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.footer-logo-image {
  height: 24px;
  width: auto;
  object-fit: contain;
}
.footer-logo-text {
  font-size: 16px;
  font-weight: 600;
  color: #FAFEFF;
}
.footer-lang {
  flex-shrink: 0;
}
.footer-lang-select {
  height: 32px;
  padding: 0 12px;
  border-radius: 4px;
  border: none;
  background: #329DFF;
  color: #FAFEFF;
  font-size: 14px;
  cursor: pointer;
  outline: none;
}
.footer-lang-select option {
  color: #333;
}
.back-to-top {
  height: 32px;
  padding: 0 12px;
  background: #0088FF;
  border-radius: 28px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  text-decoration: none;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  transition: all 0.3s ease;
}
.back-to-top:hover {
  background: #0066CC;
  transform: translateY(-2px);
}
.back-to-top:focus {
  outline: 2px solid #0088FF;
  outline-offset: 2px;
}
.back-to-top-icon {
  width: 20px;
  height: 20px;
  overflow: hidden;
}
.back-to-top-icon svg {
  width: 100%;
  height: 100%;
  stroke: white;
  fill: none;
}
.back-to-top-text {
  color: white;
  font-size: 14px;
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 400;
  white-space: nowrap;
}
.footer-about {
  display: flex;
  justify-content: space-around;
  margin-top: 12px;
  flex-wrap: wrap;
}
.footer-about a {
  color: #FAFEFF;
  font-size: 14px;
  line-height: 20px;
  transition: opacity 0.2s ease;
}
.footer-about a:hover {
  opacity: 0.8;
}
@media only screen and (max-width: 767px) {
  .footer-about {
    gap: 12px;
  }
  .footer-about a {
    font-size: 13px;
  }
}
/* =================================
   应用图标行（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: #0088FF;
  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: #0072d6;
}
@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 文章列表组件
   全局可用
   ================================= */
.popular-articles {
  display: flex;
  flex-direction: column;
}
.popular-articles-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.popular-articles-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-decoration: none;
  transition: opacity 0.2s ease;
}
.popular-articles-item:hover {
  opacity: 0.85;
}
.popular-articles-item-wrap {
  width: 100%;
  border-radius: 8px;
  aspect-ratio: 209 / 111;
  object-fit: cover;
  background: #D9D9D9;
  display: block;
  overflow: hidden;
}
.popular-articles-item-wrap-img {
  width: 100%;
  height: 100%;
  min-height: 110px;
  border-radius: 8px;
  object-fit: cover;
  transition: transform 0.3s ease-in-out;
}
.popular-articles-item:hover .popular-articles-item-wrap-img {
  transform: scale(1.05);
}
.popular-articles-item-title {
  margin: 0;
  color: #333333;
  font-size: 16px;
  font-family: Poppins, -apple-system, sans-serif;
  font-weight: 500;
  line-height: 24px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .popular-articles-list {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    gap: 12px;
  }
  .popular-articles-list::-webkit-scrollbar {
    display: none;
  }
  .popular-articles-item {
    flex-shrink: 0;
    width: 68vw;
    scroll-snap-align: start;
  }
  .popular-articles-item-img {
    aspect-ratio: 16 / 9;
  }
  .popular-articles-item-title {
    font-size: 14px;
    line-height: 22px;
  }
}
/* ---------- 安全报告弹窗（公共组件） ---------- */
.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;
  }
}
/* ---------- 页面主容器 ---------- */
.appDetailWrap {
  width: 100%;
  max-width: 1248px;
  margin: 0 auto;
  padding: 0 24px 48px;
  box-sizing: border-box;
}
/* ---------- Sprite 图标着色（currentColor） ---------- */
.detail-hero-stat-star {
  color: #FFA940;
}
.detail-download-btn-icon {
  color: #fff;
}
.detail-download-guide .detail-download-guide-icon {
  color: #2B7FFF;
}
.detail-about-toggle .detail-chevron,
.detail-whatsnew-toggle .detail-chevron,
.detail-review-more .detail-chevron {
  color: #1E77FF;
}
.detail-info-item-icon {
  color: #575757;
}
.detail-rating-summary-score-stars .detail-rating-star,
.detail-review-card-stars .detail-rating-star {
  color: #FFB900;
}
.detail-review-card-stars .detail-rating-star.is-empty {
  color: #E5E7EB;
}
.detail-review-card-avatar .detail-review-avatar-icon {
  color: #fff;
}
.detail-screenshots-arrow {
  color: #626365;
}
.detail-versions-item-btn .detail-versions-item-btn-icon {
  color: #fff;
}
.detail-popular-star {
  color: #FFA940;
}
.detail-popular-dl-icon {
  color: #1E77FF;
}
/* ---------- 左右布局 ---------- */
.detail-layout {
  display: flex;
  align-items: flex-start;
  gap: 50px;
}
.detail-main {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.detail-sidebar {
  width: 324px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
/* ---------- 通用区块标题 ---------- */
.detail-section-hd {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.detail-section-hd-title {
  flex: 1;
  color: #333333;
  font-size: 18px;
  font-family: var(--FontTitle);
  font-weight: 600;
  line-height: 26px;
  margin: 0;
  padding: 12px 0 0;
}
.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;
}
.detail-section-hd-more:hover {
  background: #F5F5F5;
}
/* =================================
   App 信息卡片
   ================================= */
.detail-hero {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}
.detail-hero-top {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 35px;
  width: 100%;
  min-width: 0;
}
.detail-hero-left {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 16px;
  overflow: hidden;
}
.detail-hero-logo {
  width: 70px;
  height: 70px;
  border-radius: 35px;
  object-fit: cover;
  flex-shrink: 0;
}
.detail-hero-meta {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  overflow: hidden;
}
.detail-hero-name {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  color: #333333;
  font-size: 18px;
  font-family: Poppins, -apple-system, sans-serif;
  font-weight: 600;
  line-height: 26px;
  margin: 0;
  min-width: 0;
  overflow: hidden;
}
.detail-hero-sub {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: nowrap;
  min-width: 0;
  overflow: hidden;
}
.detail-hero-sub span,
.detail-hero-sub a {
  font-size: 14px;
  font-family: Poppins, sans-serif;
  line-height: 24px;
}
.detail-hero-sub .ver {
  color: #666;
  font-weight: 400;
  flex-shrink: 0;
}
.detail-hero-sub .by {
  color: #999;
  font-weight: 400;
  flex-shrink: 0;
}
.detail-hero-sub .dev {
  color: #1E77FF;
  font-weight: 400;
  text-decoration: none;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.detail-hero-sub .dev:hover {
  text-decoration: underline;
}
.detail-hero-safe {
  display: none;
}
.detail-hero-safe-icon {
  display: inline-flex;
  align-items: center;
  vertical-align: middle;
  margin-left: 6px;
  color: #009966;
  cursor: pointer;
  flex-shrink: 0;
}
.detail-hero-safe-icon svg {
  display: block;
}
.detail-hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  padding-left: 20px;
  flex-shrink: 0;
}
.detail-hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 16px;
  min-width: 0;
}
.detail-hero-stat + .detail-hero-stat {
  border-left: 1px solid #F2F2F2;
}
.detail-hero-stat + .detail-hero-stat strong {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 100%;
}
.detail-hero-stat strong {
  color: #333333;
  font-size: 16px;
  font-family: Poppins, sans-serif;
  font-weight: 500;
  line-height: 24px;
  display: flex;
  align-items: center;
  gap: 2px;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.detail-hero-stat span {
  color: #999999;
  font-size: 12px;
  font-family: Poppins, sans-serif;
  font-weight: 400;
  line-height: 20px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
/* ---------- 广告 Banner ---------- */
.detail-banner {
  width: 100%;
  height: 250px;
  background: #D3D3D3;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333;
  font-size: 18px;
  font-family: Poppins, sans-serif;
  overflow: hidden;
}
.detail-banner-sm {
  width: 100%;
  height: 192px;
  background: #D9D9D9;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 32px;
  font-family: 'Segoe UI', sans-serif;
  font-weight: 700;
}
/* ---------- 下载按钮组 ---------- */
.detail-download {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 16px 0;
}
.detail-download-btn {
  width: 100%;
  max-width: 428px;
  height: 56px;
  padding: 0 36px;
  background: #1E77FF;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: white;
  font-size: 16px;
  font-family: Poppins, sans-serif;
  font-weight: 500;
  line-height: 24px;
  text-decoration: none;
}
.detail-download-btn svg {
  flex-shrink: 0;
}
.detail-download-btn:hover {
  background: #1F61E4;
}
.detail-download-guide {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #1E77FF;
  font-size: 16px;
  font-family: Poppins, sans-serif;
  font-weight: 400;
  line-height: 18px;
  text-decoration: none;
  cursor: pointer;
}
.detail-download-guide:hover {
  text-decoration: underline;
}
/* ---------- Google Play / App Store / APK 三合一下载按钮组 ---------- */
.detail-store-btns {
  display: flex;
  flex-direction: row;
  gap: 12px;
  width: 100%;
  margin: 0 auto;
}
.detail-store-btn {
  flex: 1;
  height: 56px;
  padding: 0 12px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #fff;
  font-size: 24px;
  font-weight: 400;
  text-decoration: none;
  white-space: nowrap;
  overflow: hidden;
  transition: background 0.18s, opacity 0.18s;
  /* 置灰禁用状态 */
}
.detail-store-btn svg {
  flex-shrink: 0;
  color: #fff;
}
.detail-store-btn-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  min-width: 0;
}
.detail-store-btn-label {
  font-size: 24px;
  font-weight: 400;
  white-space: nowrap;
}
.detail-store-btn--google {
  background: #0F112F;
}
.detail-store-btn--google:hover:not(.is-disabled) {
  background: #0F112F;
}
.detail-store-btn--apple {
  background: #0F112F;
}
.detail-store-btn--apple:hover:not(.is-disabled) {
  background: #0F112F;
}
.detail-store-btn--apk {
  background: #0F112F;
}
.detail-store-btn--apk:hover:not(.is-disabled) {
  background: #0F112F;
}
.detail-store-btn.is-disabled {
  background: #D1D5DB;
  cursor: not-allowed;
  pointer-events: none;
}
/* ---------- 下载中状态块 ---------- */
.detail-download-progress {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  padding: 24px 16px;
  background: #EBF6FF;
  border-radius: 8px;
  outline: 1px solid #99CCFF;
  outline-offset: -1px;
  overflow: hidden;
  margin-top: 16px;
}
.detail-download-progress.is-visible {
  display: inline-flex;
}
.detail-download-progress-icon-wrap {
  width: 60px;
  height: 60px;
  flex-shrink: 0;
  border-radius: 14px;
  outline: 1px solid #F2F2F2;
  outline-offset: -1px;
  background: #ECECEC;
  overflow: hidden;
}
.detail-download-progress-icon {
  display: block;
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 14px;
}
.detail-download-progress-title {
  align-self: stretch;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  color: #333333;
  font-size: 16px;
  font-family: Poppins, sans-serif;
  font-weight: 500;
  line-height: 24px;
  margin: 0;
}
.detail-download-progress-dots {
  display: inline-flex;
  margin-left: 2px;
}
.detail-download-progress-dots span {
  animation: detail-download-dot 1.4s ease-in-out infinite both;
}
.detail-download-progress-dots span:nth-child(1) {
  animation-delay: 0s;
}
.detail-download-progress-dots span:nth-child(2) {
  animation-delay: 0.2s;
}
.detail-download-progress-dots span:nth-child(3) {
  animation-delay: 0.4s;
}
@keyframes detail-download-dot {
  0%,
  80%,
  100% {
    opacity: 0.3;
    transform: scale(0.8);
  }
  40% {
    opacity: 1;
    transform: scale(1);
  }
}
.detail-download-progress-version {
  align-self: stretch;
  text-align: center;
  color: #333333;
  font-size: 14px;
  font-family: Poppins, sans-serif;
  font-weight: 400;
  line-height: 16.8px;
  margin: 0;
}
.detail-download-progress-hint {
  align-self: stretch;
  text-align: center;
  color: #666666;
  font-size: 14px;
  font-family: Poppins, sans-serif;
  font-weight: 400;
  line-height: 16.8px;
  margin: 0;
}
.detail-download-progress-hint .detail-download-progress-link {
  color: #1E77FF;
  text-decoration: underline;
}
.detail-download-progress-hint .detail-download-progress-link:hover {
  text-decoration: underline;
}
/* =================================
   About 描述区（可展开）
   ================================= */
.detail-about {
  display: flex;
  flex-direction: column;
  color: #333;
}
.detail-about .detail-section-hd-title {
  font-family: "Nunito", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, "PingFang SC", "Noto Sans", Roboto, "Microsoft Yahei", sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
  font-size: 21px;
  color: #1c1c1c;
}
.detail-about-body {
  position: relative;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.detail-about-body.is-collapsed {
  max-height: 380px;
}
.detail-about-body.is-expanded {
  max-height: none;
}
.detail-about-body-fade {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 52px;
  pointer-events: none;
}
.detail-about-body.is-expanded .detail-about-body-fade {
  display: none;
}
.detail-about-content {
  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";
}
.detail-about-content h2,
.detail-about-content h3,
.detail-about-content h4 {
  font-family: "Nunito", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, "PingFang SC", "Noto Sans", Roboto, "Microsoft Yahei", sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
  font-size: 21px;
  color: #1c1c1c;
  margin: 30px 0 20px 0;
  font-weight: normal;
}
.detail-about-content p,
.detail-about-content li,
.detail-about-content span {
  font-size: 14.5px;
  font-weight: 400;
  line-height: 26px;
  color: #3a3a3a;
  letter-spacing: 0.4px;
  margin: 0px 0 15px 0;
  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";
}
.detail-about-content li {
  margin-left: 14px;
}
.detail-about-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #1E77FF;
  font-size: 14px;
  font-family: Poppins, sans-serif;
  font-weight: 500;
  line-height: 22px;
  cursor: pointer;
  border: none;
  padding: 0;
  margin-top: 4px;
}
/* =================================
   App 参数列表（Info List）— flex-wrap 3列网格，对齐参考站
   ================================= */
.detail-info-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
}
.detail-info-row {
  display: flex;
  align-items: center;
  padding: 5px 10px;
  width: 100%;
  line-height: 30px;
}
.detail-info-row-label {
  min-width: 140px;
  font-size: 16px;
  font-family: Poppins, -apple-system, sans-serif;
  color: #262626;
  font-weight: 500;
  flex-shrink: 0;
  padding-right: 10px;
  text-transform: capitalize;
}
.detail-info-row-value {
  flex: 1;
  font-size: 15px;
  font-weight: 350;
  color: #777777;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-decoration: none;
}
.detail-info-row-value.is-link {
  color: #1E77FF;
}
.detail-info-row-value.is-link:hover {
  text-decoration: underline;
}
@media (min-width: 821px) {
  .detail-info-row {
    width: calc(33.3% - 10px);
    margin-left: 10px;
    padding: 25px 10px;
  }
}
/* ---------- 安全检查（隐藏，对齐参考站）---------- */
.detail-safe-badge {
  display: none;
  align-items: flex-start;
  gap: 12px;
  padding: 20px;
  background: linear-gradient(90deg, #ECFDF5 0%, #F0FDFA 100%);
  border-radius: 16px;
  outline: 0.67px solid #A4F4CF;
  margin-top: 16px;
  cursor: pointer;
}
.detail-safe-badge-icon {
  flex-shrink: 0;
  color: #10B981;
}
.detail-safe-badge-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.detail-safe-badge-title {
  color: #009966;
  font-size: 16px;
  font-family: Poppins, sans-serif;
  font-weight: 500;
  line-height: 24px;
  margin: 0;
}
.detail-safe-badge-desc {
  color: #007A55;
  font-size: 14px;
  font-family: Poppins, sans-serif;
  font-weight: 400;
  line-height: 22px;
  margin: 0;
}
/* =================================
   What's New（可展开）
   ================================= */
.detail-whatsnew {
  display: flex;
  flex-direction: column;
  gap: 7px;
  padding: 16px 0;
  position: relative;
}
.detail-whatsnew-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.detail-whatsnew-date {
  color: #666666;
  font-size: 16px;
  font-family: Poppins, sans-serif;
  font-weight: 500;
  line-height: 20px;
}
.detail-whatsnew-tag {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #24A077;
  font-size: 16px;
  font-family: Poppins, sans-serif;
  font-weight: 500;
  line-height: 20px;
}
.detail-whatsnew-tag::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #24A077;
}
.detail-whatsnew-body {
  position: relative;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.detail-whatsnew-body h2,
.detail-whatsnew-body h3,
.detail-whatsnew-body h4,
.detail-whatsnew-body p,
.detail-whatsnew-body li {
  font-style: normal;
  font-family: 'Poppins', sans-serif;
  padding-bottom: 16px;
  margin: 0;
}
.detail-whatsnew-body h2 {
  font-size: 22px;
  font-weight: 600;
  line-height: 30px;
}
.detail-whatsnew-body h3 {
  font-size: 18px;
  font-weight: 600;
  line-height: 26px;
}
.detail-whatsnew-body h4 {
  font-size: 16px;
  font-weight: 600;
  line-height: 26px;
}
.detail-whatsnew-body p,
.detail-whatsnew-body li {
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
}
.detail-whatsnew-body.is-collapsed {
  max-height: 120px;
}
.detail-whatsnew-body.is-collapsed::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 52px;
  pointer-events: none;
}
.detail-whatsnew-body.is-expanded {
  max-height: none;
}
.detail-whatsnew-text {
  color: #666666;
  font-size: 16px;
  font-family: Poppins, sans-serif;
  font-weight: 400;
  line-height: 24px;
  margin: 0;
}
.detail-whatsnew-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #1E77FF;
  font-size: 14px;
  font-family: Poppins, sans-serif;
  font-weight: 500;
  line-height: 22px;
  cursor: pointer;
  border: none;
  padding: 0;
  margin-top: 8px;
}
/* =================================
   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;
  transition: none;
}
.detail-screenshots-track::-webkit-scrollbar {
  display: none;
}
.detail-screenshots-img {
  width: 183px;
  height: 326px;
  border-radius: 6px;
  object-fit: cover;
  flex-shrink: 0;
  background: #EEEEEE;
}
.detail-screenshots-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: white;
  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;
}
/* =================================
   Historical Versions
   ================================= */
.detail-versions {
  display: flex;
  flex-direction: column;
  border-radius: 16px;
  background: white;
}
.detail-versions-list {
  display: flex;
  flex-direction: column;
}
.detail-versions-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid #E4E4E4;
}
.detail-versions-item--hidden {
  display: none;
}
.detail-versions-item-logo {
  width: 64px;
  height: 64px;
  border-radius: 12px;
  object-fit: cover;
  flex-shrink: 0;
  background: #EEEEEE;
}
.detail-versions-item-body {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.detail-versions-item-name {
  color: #333333;
  font-size: 16px;
  font-family: Poppins, sans-serif;
  font-weight: 500;
  line-height: 24px;
  margin: 0;
}
.detail-versions-item-meta {
  color: #7F7F7F;
  font-size: 14px;
  font-family: Poppins, sans-serif;
  font-weight: 400;
  line-height: 22px;
}
.detail-versions-item-btn {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 6px 10px;
  background: #1E77FF;
  border-radius: 4px;
  color: white;
  font-size: 13px;
  font-family: Poppins, sans-serif;
  font-weight: 500;
  line-height: 20px;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
}
.detail-versions-item-btn:hover {
  background: #1F61E4;
}
.detail-versions-more {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 0 4px;
  margin-top: 16px;
}
.detail-versions-more a,
.detail-versions-more button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  height: 48px;
  border-radius: 6px;
  border: 1px solid #1E77FF;
  color: #1E77FF;
  font-size: 14px;
  font-family: Poppins, sans-serif;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  background: transparent;
}
.detail-versions-seeMore {
  display: block;
}
.detail-versions-seeMore a.detail-versions-seeMore,
.detail-versions-seeMore a,
.detail-versions-seeMore-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  height: 48px;
  border-radius: 6px;
  border: 1px solid #1E77FF;
  color: #1E77FF;
  font-size: 14px;
  font-family: Poppins, sans-serif;
  font-weight: 500;
  line-height: 22px;
  text-decoration: none;
  cursor: pointer;
  background: transparent;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
  -webkit-tap-highlight-color: transparent;
}
.detail-versions-seeMore a.detail-versions-seeMore:hover,
.detail-versions-seeMore a:hover,
.detail-versions-seeMore-btn:hover {
  color: #1F61E4;
  border-color: #1F61E4;
  background: rgba(30, 119, 255, 0.06);
}
.detail-versions-seeMore a.detail-versions-seeMore:focus-visible,
.detail-versions-seeMore a:focus-visible,
.detail-versions-seeMore-btn:focus-visible {
  outline: 2px solid #1E77FF;
  outline-offset: 2px;
}
.detail-versions-seeMore-btn {
  box-sizing: border-box;
  margin: 0;
  padding: 0 16px;
}
.detail-versions-seeMore svg {
  flex-shrink: 0;
}
/* =================================
   User Reviews
   ================================= */
.detail-reviews {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
.detail-reviews-title {
  align-self: stretch;
  padding: 12px 0;
  color: #333333;
  font-size: 22px;
  font-family: Poppins, sans-serif;
  font-weight: 600;
  line-height: 30px;
  margin: 0;
}
/* 评分汇总 */
.detail-rating-summary {
  align-self: stretch;
  padding: 20px;
  border-radius: 8px;
  outline: 1px solid #E4E4E4;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.detail-rating-summary-score {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  min-width: 212px;
}
.detail-rating-summary-score strong {
  color: #212326;
  font-size: 56px;
  font-family: Poppins, sans-serif;
  font-weight: 600;
  line-height: 84px;
}
.detail-rating-summary-score-stars {
  display: flex;
  gap: 2px;
}
.detail-rating-summary-score span {
  color: #666666;
  font-size: 14px;
  font-family: Poppins, sans-serif;
  font-weight: 400;
}
.detail-rating-summary-bars {
  flex: 1 1 0;
  min-width: 200px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.detail-rating-summary-bar-row {
  display: flex;
  align-items: center;
  gap: 8px;
}
.detail-rating-summary-bar-row span {
  color: #666666;
  font-size: 12px;
  font-family: Poppins, sans-serif;
  font-weight: 400;
  line-height: 16px;
  min-width: 10px;
  text-align: right;
}
.detail-rating-summary-bar-track {
  flex: 1;
  height: 8px;
  background: #F0F0F0;
  border-radius: 4px;
  overflow: hidden;
}
.detail-rating-summary-bar-fill {
  height: 100%;
  background: #1B65FA;
  border-radius: 4px;
}
/* Review 按钮 */
.detail-review-btn {
  width: 100%;
  max-width: 420px;
  margin-top: 16px;
  padding: 12px 16px;
  background: #5190F2;
  border-radius: 10px;
  color: white;
  font-size: 14px;
  font-family: Poppins, sans-serif;
  font-weight: 500;
  line-height: 22px;
  text-decoration: none;
  display: inline-block;
  min-width: 200px;
  text-align: center;
  cursor: pointer;
  border: none;
}
/* 评论卡片网格 */
.detail-review-grid {
  align-self: stretch;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding: 16px 0;
}
.detail-review-empty {
  grid-column: 1 / -1;
  color: #6B7280;
  font-size: 14px;
  text-align: center;
  padding: 16px 0;
  margin: 0;
}
.detail-review-card {
  padding: 16px 16px 20px;
  border-radius: 8px;
  outline: 1px solid #E4E4E4;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.detail-review-card-header {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.detail-review-card-avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #6DB4FF;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: white;
  font-size: 13px;
  font-family: Poppins, sans-serif;
  overflow: hidden;
}
.detail-review-card-user-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.detail-review-card-username {
  color: #666666;
  font-size: 14px;
  font-family: Poppins, sans-serif;
  font-weight: 400;
  text-transform: capitalize;
  line-height: 22px;
}
.detail-review-card-stars {
  display: flex;
  gap: 2px;
}
.detail-review-card-body {
  padding-left: 40px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.detail-review-card-text {
  color: #333333;
  font-size: 16px;
  font-family: Poppins, sans-serif;
  font-weight: 400;
  text-transform: capitalize;
  line-height: 22px;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  word-break: break-all;
}
.detail-review-card-date {
  color: #999999;
  font-size: 14px;
  font-family: Poppins, sans-serif;
  font-weight: 400;
  text-transform: capitalize;
  line-height: 22px;
}
/* See More reviews */
.detail-review-more {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #1E77FF;
  font-size: 14px;
  font-family: Poppins, sans-serif;
  font-weight: 400;
  line-height: 22px;
  cursor: pointer;
  background: white;
  border: none;
  padding: 0;
  margin-top: 4px;
}
.detail-review-more[disabled] {
  opacity: 0.5;
  cursor: not-allowed;
}
/* =================================
   Popular APK 侧边栏
   ================================= */
.detail-popular {
  width: 100%;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
}
.detail-popular-tabs {
  display: flex;
  border-bottom: 1px solid #DDDDDD;
}
.detail-popular-tab {
  width: 72px;
  height: 51px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-family: Poppins, sans-serif;
  font-weight: 500;
  color: #333333;
  cursor: pointer;
  border: none;
  background: transparent;
  position: relative;
}
.detail-popular-tab.is-active {
  color: #1E77FF;
}
.detail-popular-tab.is-active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3.92px;
  background: #1E77FF;
  border-radius: 2px;
}
.detail-popular-list {
  display: flex;
  flex-direction: column;
  padding: 12px 0;
}
.detail-popular-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  text-decoration: none;
  min-width: 0;
}
.detail-popular-item-left {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1 1 0;
  min-width: 0;
}
.detail-popular-item-icon {
  width: 64px;
  height: 64px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
  background: #EEEEEE;
}
.detail-popular-item-body {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.detail-popular-item-name {
  color: #101828;
  font-size: 16px;
  font-family: Poppins, sans-serif;
  font-weight: 500;
  line-height: 24px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.detail-popular-item-meta {
  display: flex;
  align-items: center;
  gap: 12px;
}
.detail-popular-item-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  color: #4A5565;
  font-size: 14px;
  font-family: Poppins, sans-serif;
  font-weight: 400;
  line-height: 22px;
}
.detail-popular-item-category {
  color: #4A5565;
  font-size: 14px;
  font-family: Poppins, sans-serif;
  font-weight: 400;
  line-height: 20px;
}
.detail-popular-item-dl {
  flex-shrink: 0;
  color: #1E77FF;
  display: flex;
  align-items: center;
}
/* =================================
   响应式
   ================================= */
@media only screen and (max-width: 767px) {
  .appDetailWrap {
    padding: 0 8px 32px;
  }
  .detail-main {
    width: 100%;
  }
  /* 布局改为单列 */
  .detail-layout {
    flex-direction: column;
    gap: 24px;
  }
  .detail-sidebar {
    width: 100%;
  }
  /* Hero 卡片：上下布局，内容不超出容器 */
  .detail-hero-top {
    flex-direction: column;
    align-items: stretch;
    gap: 0px;
    padding: 10px 0;
  }
  .detail-hero-left {
    width: 100%;
    min-width: 0;
    gap: 12px;
  }
  .detail-hero-logo {
    width: 84px;
    height: 84px;
    border-radius: 14px;
  }
  .detail-hero-stats {
    width: 100%;
    padding-left: 0;
    padding: 16px 0;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
  }
  .detail-hero-stat + .detail-hero-stat {
    border-left: none;
  }
  .detail-hero-name {
    font-size: 20px;
    line-height: 24px;
  }
  .detail-banner {
    height: 160px;
  }
  .detail-banner-sm {
    height: 120px;
  }
  .detail-section-hd {
    margin-top: 12px;
  }
  .detail-download-btn {
    height: 52px;
    width: 100%;
    padding: 16px;
  }
  .detail-versions-item-logo {
    display: none;
  }
  .detail-info-grid {
    min-width: 0;
    overflow: hidden;
  }
  .detail-info-grid .detail-info-item {
    min-width: 0;
    padding: 8px;
    gap: 10px;
  }
  .detail-info-grid .detail-info-item-icon {
    width: 32px;
    height: 32px;
    padding: 4px;
  }
  .detail-whatsnew {
    padding: 0 0;
  }
  .detail-whatsnew .detail-download {
    padding: 0 0;
  }
  /* 评分汇总：移动端保持左右布局，score 字号缩小 */
  .detail-rating-summary {
    flex-wrap: nowrap;
  }
  .detail-rating-summary .detail-rating-summary-score {
    min-width: auto;
  }
  .detail-rating-summary .detail-rating-summary-score strong {
    font-size: 42px;
    font-style: normal;
    font-weight: 600;
    line-height: 42px;
  }
  .detail-rating-summary .detail-rating-summary-bars {
    min-width: 0;
  }
  /* Screenshots 移动端：CSS 横向滚动 */
  .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;
    transition: 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;
  }
  /* 评论卡片：移动端单列 */
  .detail-review-grid {
    grid-template-columns: 1fr;
  }
  .detail-reviews-title {
    font-size: 20px;
    line-height: 28px;
  }
  .detail-sidebar {
    display: none;
  }
  .detail-store-btns {
    flex-direction: column;
  }
  .detail-store-btn {
    flex: none;
    width: 100%;
    height: 52px;
  }
  .detail-store-btn-label {
    font-size: 18px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1199px) {
  .detail-layout {
    gap: 24px;
  }
  .detail-sidebar {
    width: 280px;
  }
  .detail-review-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
/* ---------- 评论弹窗 (Share Your Experience) ---------- */
.detail-review-modal-wrapper {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 24px;
  box-sizing: border-box;
}
.detail-review-modal-wrapper[hidden] {
  display: none !important;
}
.detail-review-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 0;
}
.detail-review-modal-dialog {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 16px;
  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;
  max-width: 608px;
  width: 100%;
  box-sizing: border-box;
  border: none;
  margin: auto;
  z-index: 1;
}
.detail-review-modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
  gap: 16px;
}
.detail-review-modal-title {
  flex: 1;
  text-align: center;
  color: #333333;
  font-size: 22px;
  font-family: Poppins, -apple-system, sans-serif;
  font-weight: 600;
  line-height: 30px;
  word-wrap: break-word;
  margin: 0;
}
.detail-review-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;
}
.detail-review-modal-close .detail-review-modal-close-icon {
  width: 14px;
  height: 14px;
}
.detail-review-modal-body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  gap: 32px;
}
.detail-review-modal-rating-tip {
  color: #FF1313;
  text-align: center;
  font-family: Poppins, -apple-system, sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
  width: 100%;
  margin: 0 0 8px 0;
}
.detail-review-modal-rating-tip[hidden] {
  display: none !important;
}
.detail-review-modal-rating {
  display: inline-flex;
  justify-content: center;
  align-items: flex-start;
  gap: 12px;
  width: 100%;
}
.detail-review-modal-star {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  cursor: pointer;
}
.detail-review-modal-star .detail-review-modal-star-icon {
  color: #D7DBE0;
  flex-shrink: 0;
}
.detail-review-modal-star.is-selected .detail-review-modal-star-icon,
.detail-review-modal-star.is-active .detail-review-modal-star-icon {
  color: #FFB900;
}
.detail-review-modal-form {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  width: 100%;
}
.detail-review-modal-label {
  color: #333333;
  font-size: 18px;
  font-family: Poppins, -apple-system, sans-serif;
  font-weight: 500;
  line-height: 26px;
  word-wrap: break-word;
}
.detail-review-modal-textarea {
  align-self: stretch;
  min-height: 144px;
  padding: 12px 16px;
  border: 1px solid #D1D5DC;
  border-radius: 10px;
  color: #333333;
  font-size: 16px;
  font-family: Poppins, -apple-system, sans-serif;
  font-weight: 400;
  line-height: 24px;
  box-sizing: border-box;
  resize: vertical;
}
.detail-review-modal-textarea::placeholder {
  color: #999999;
}
.detail-review-modal-submit {
  align-self: stretch;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  background: #1E77FF;
  border: none;
  border-radius: 10px;
  color: #ffffff;
  font-size: 18px;
  font-family: Arial, -apple-system, sans-serif;
  font-weight: 700;
  line-height: 28px;
  cursor: pointer;
  box-sizing: border-box;
}
/* 评论弹窗：移动端覆盖（须在基础样式之后以保证优先级） */
@media only screen and (max-width: 767px) {
  .detail-review-modal-dialog {
    padding: 32px 16px;
    width: 90%;
  }
  .detail-review-modal-title {
    font-size: 22px;
    font-style: normal;
    font-weight: 600;
    line-height: 30px;
  }
  .detail-review-modal-body {
    gap: 24px;
  }
}
/* ---------- 底部下载卡片 ---------- */
.detail-dl-card {
  border-radius: 12px;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.detail-dl-card-app {
  display: flex;
  align-items: center;
  gap: 12px;
}
.detail-dl-card-logo {
  width: 156px;
  height: 156px;
  border-radius: 35px;
  object-fit: cover;
  flex-shrink: 0;
}
.detail-dl-card-info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 36px;
}
.detail-dl-card-name {
  display: flex;
  align-items: center;
  font-size: 18px;
  font-weight: 700;
  color: #333333;
  margin: 0;
  overflow: hidden;
}
.detail-dl-card-stats {
  display: flex;
  gap: 0;
  margin-left: 10px;
}
.detail-dl-card-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  min-width: 0;
  text-align: center;
}
.detail-dl-card-stat + .detail-dl-card-stat {
  border-left: 2px solid #F2F2F2;
}
.detail-dl-card-stat-val {
  font-size: 21px;
  font-weight: 700;
  color: #484848;
  display: flex;
  align-items: center;
  justify-content: center;
}
.detail-dl-card-stat-lbl {
  font-size: 16px;
  font-weight: 400;
  color: #757575;
}
.detail-dl-card-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 44px;
  background: white;
  border-radius: 5px;
  box-shadow: 0 0 3px 2px rgba(168, 168, 168, 0.42);
  color: #0088FF;
  font-size: 26px;
  font-weight: 400;
  text-decoration: none;
  cursor: pointer;
  margin-top: 10px;
}
/* ---------- 推荐 App 图标网格（Similar / Developer / Trending） ---------- */
.detail-rec-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px 20px;
  width: 100%;
  padding: 8px 0;
}
.detail-rec-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  min-width: 0;
}
.detail-rec-item-img {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 20px;
  object-fit: cover;
  display: block;
  box-shadow: 0 0 10px rgba(128, 128, 128, 0.19);
}
.detail-rec-item-name {
  color: #484848;
  font-size: 13px;
  font-weight: 500;
  margin: 0;
  padding: 0 2px 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
  text-align: center;
}
/* ---------- 下载卡片移动端适配 ---------- */
@media (max-width: 767px) {
  .detail-dl-card-logo {
    width: 70px;
    height: 70px;
    border-radius: 10px;
  }
  .detail-dl-card-info {
    gap: 12px;
  }
  .detail-dl-card-name {
    font-size: 15px;
  }
  .detail-dl-card-stats {
    margin-left: 0;
  }
  .detail-dl-card-stat-val {
    font-size: 15px;
    white-space: nowrap;
  }
  .detail-dl-card-stat-lbl {
    font-size: 12px;
    white-space: nowrap;
  }
  .detail-dl-card-btn {
    font-size: 20px;
  }
  .detail-rec-grid {
    gap: 6px 12px;
  }
}
@media (min-width: 640px) {
  .detail-rec-grid {
    grid-template-columns: repeat(6, 1fr);
  }
}
@media (min-width: 1201px) {
  .detail-rec-grid {
    grid-template-columns: repeat(6, 1fr);
  }
}
/* ---------- 侧边栏 3 列图标网格 ---------- */
.detail-sidebar-grid {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  padding: 16px 0;
  justify-content: space-between;
}
.detail-sidebar-grid .detail-rec-item {
  width: calc(90% / 3);
}
.detail-sidebar-grid .detail-rec-item-img {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 20px;
  object-fit: cover;
  display: block;
  box-shadow: 0 0 10px rgba(128, 128, 128, 0.19);
}
.detail-sidebar-grid .detail-rec-item-name {
  font-size: 14px;
  padding: 6px 4px 10px;
}
/* ---------- Hero logo PC 端放大（对齐参考站 156px）---------- */
@media (min-width: 821px) {
  .detail-hero-logo {
    width: 156px;
    height: 156px;
    border-radius: 35px;
  }
}
/* ---------- 下载卡片：safe icon + star ---------- */
.detail-dl-card-safe-icon {
  display: inline-flex;
  align-items: center;
  vertical-align: middle;
  margin-left: 5px;
  color: #009966;
}
.detail-dl-card-safe-icon svg {
  display: block;
}
.detail-dl-card-star {
  color: #FFA412;
  margin-right: 3px;
  vertical-align: middle;
  display: inline-block;
}
.detail-dl-card-stat-val {
  display: flex;
  align-items: center;
  justify-content: center;
}
/* ---------- 仅移动端显示 ---------- */
.detail-mobile-only {
  display: none;
}
@media only screen and (max-width: 767px) {
  .detail-mobile-only {
    display: block;
  }
}
