:root {
  /* 定义主题色 */
  --theme-color: #ffca34; /* 主题金色 */
  --theme-color-light: #ffd75e; /* 浅色变体 */
  --theme-color-dark: #e6b52f; /* 深色变体 */
  --color-white: #ffffff; /* 白色 - 纯净 */
  --section-padding: 4rem 2rem;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Noto Sans SC", sans-serif;
  scroll-behavior: smooth;
}

/* 确保页面在所有设备上都能正确显示 */
html,
body {
  overflow-x: hidden;
  width: 100%;
}

/* 确保所有交互元素都有合适的焦点状态 */
button:focus,
a:focus,
input:focus,
textarea:focus,
select:focus {
  outline: 2px solid var(--theme-color);
  outline-offset: 2px;
}

/* 优化触摸设备的交互 */
@media (hover: none) and (pointer: coarse) {
  /* 在触摸设备上增加点击区域 */
  button,
  a,
  .indicator {
    min-height: 48px;
    min-width: 48px;
  }

  /* 优化触摸滚动 */
  .product-slides {
    -webkit-overflow-scrolling: touch;
  }
}

/* 确保在高分辨率屏幕上显示清晰 */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  img {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
  }
}

/* 通用工具类 */
.text-center {
  text-align: center;
}

/* 导航栏样式 */
.logo-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
  width: 100%;
  margin-bottom: 1em;
}

.logo {
  height: 80px;
  filter: none;
}

.company-name {
  color: #1a1a1a;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 2px;
}

/* 首屏大图轮播 */
.hero-slider {
  margin-top: 0;
  /*height: 100vh;*/
  background: linear-gradient(
    45deg,
    var(--theme-color-light),
    var(--theme-color)
  );
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6em;
  width: 100%;
}

.hero-content {
  flex: 1;
  color: #1a1a1a;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2rem;
}

.hero-content h1,
.hero-content p {
  text-align: left;
  width: 100%;
}

.hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
}

.hero-content p {
  font-size: 1.2rem;
  opacity: 0.9;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 2;
}

.app-screenshot {
  width: 300px;
  height: auto;
  border-radius: 30px;
  transition: transform 0.3s ease;
}

.app-screenshot:hover {
  transform: translateY(-5px);
}

/* 装饰元素 */
.hero-decoration {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  opacity: 0.1;
  background: radial-gradient(
    circle at 70% 50%,
    rgba(255, 255, 255, 0.3) 0%,
    transparent 50%
  );
}

/* 二维码样式 */
.qr-code {
  margin-top: 1rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
}

.qr-code img {
  width: 160px;
  height: 160px;
}

.qr-code p {
  color: #1a1a1a;
  font-size: 0.9rem;
  margin-top: 0.5rem;
  font-weight: 500;
  margin: 0;
}

/* 通用板块样式 */
section {
  padding: var(--section-padding);
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title h2 {
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 1rem;
}

.section-title p {
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

/* 产品展示区 */
.products {
  background: #f9f9f9;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.product-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.product-card:hover {
  transform: translateY(-5px);
}

.product-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.product-info {
  padding: 1.5rem;
}

.value-notice {
  color: #666;
  font-size: 0.9rem;
  padding: 0.5rem;
  background: #f9f9f9;
  border-radius: 4px;
  margin-top: 1rem;
}

/* 产品轮播 */
.product-slider {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
}

.product-slides {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.product-slide {
  min-width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  animation: fadeIn 0.5s ease-in-out;
}

.product-image {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.slider-indicators {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  background-color: #ddd;
  cursor: pointer;
  padding: 0;
  transition: background-color 0.3s;
}

.indicator.active {
  background-color: var(--theme-color);
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* APP功能展示 */
.app-features {
  background: linear-gradient(to bottom, #fff, #f9f9f9);
  padding: var(--section-padding);
}

.features-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.feature-card {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  transition: transform 0.3s ease;
  text-align: center;
  position: relative;
  overflow: visible;
}

.feature-card:hover {
  transform: translateY(-10px);
}

.feature-content {
  margin-top: 2rem;
}

.feature-image {
  position: relative;
  margin: -3rem -2rem 0;
  overflow: hidden;
  border-radius: 20px 20px 0 0;
}

.feature-phone {
  width: 100%;
  max-width: 250px;
  border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  margin: 0 auto;
  display: block;
}

.feature-title {
  font-size: 2rem;
  color: #333;
  margin-bottom: 1.5rem;
}

.feature-desc {
  color: #666;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.feature-list {
  list-style: none;
  padding: 0;
}

.feature-list li {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  color: #555;
}

.feature-list li:before {
  content: "✓";
  color: var(--theme-color);
  font-weight: bold;
  margin-right: 0.5rem;
}

/* 浮动元素 */
.floating-element {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  padding: 0.5rem 1rem;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
}

.floating-element span {
  color: var(--theme-color);
  font-weight: bold;
  font-size: 1rem;
}

.floating-element p {
  font-size: 0.8rem;
  margin: 0;
  color: #666;
}

.floating-element img {
  width: 24px;
  height: auto;
}

/* 为不同位置的浮动元素设置样式 */
.feature-card:nth-child(1) .floating-element {
  top: 15%;
  right: -30px;
}

.feature-card:nth-child(2) .floating-element {
  top: 35%;
  left: -30px;
}

.feature-card:nth-child(3) .floating-element {
  top: 25%;
  left: -30px;
}

/* 梦想计划 */
.dream-program {
  background: linear-gradient(
    to right,
    rgba(255, 202, 52, 0.1),
    rgba(255, 215, 94, 0.1)
  );
}

.program-steps {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.step-card {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  position: relative;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.step-card:hover {
  transform: translateY(-5px);
}

.step-card:nth-child(1) {
  border-top: 4px solid var(--theme-color);
}

.step-card:nth-child(2) {
  border-top: 4px solid var(--theme-color-light);
}

.step-card:nth-child(3) {
  border-top: 4px solid var(--theme-color-dark);
}

.step-card > * {
  margin-bottom: 1rem;
}

.step-card h3 {
  color: #333;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.step-card p {
  color: #666;
  line-height: 1.6;
}

.step-number {
  width: 60px;
  height: 60px;
  background: var(--theme-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  margin: 0 auto 1rem;
  box-shadow: 0 4px 12px rgba(255, 202, 52, 0.3);
}

/* 爱家园 */
.love-community {
  background: #f9f9f9;
}

.community-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.community-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.community-card:hover {
  transform: translateY(-5px);
}

.community-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.community-info {
  padding: 1.5rem;
  text-align: center;
}

.community-info h3 {
  color: #333;
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
}

.community-info p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* 加入我们 */
.join-us {
  background: linear-gradient(
    45deg,
    var(--theme-color-light),
    var(--theme-color)
  );
  text-align: center;
}

.download-container {
  max-width: 600px;
  margin: 0 auto;
  padding: 2rem;
}

.download-tip {
  font-size: 1.2rem;
  color: #1a1a1a;
  margin-bottom: 2rem;
  font-weight: 500;
}

.download-buttons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

.download-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: #1a1a1a;
  color: white;
  text-decoration: none;
  border-radius: 10px;
  transition: all 0.3s ease;
  font-weight: 500;
}

.ios-btn {
  background: #000;
}

.ios-btn:hover {
  background: #333;
  transform: translateY(-2px);
}

.android-btn {
  background: #1a1a1a;
}

.android-btn:hover {
  background: #333;
  transform: translateY(-2px);
}

.download-btn span {
  font-size: 1rem;
}

.app-info-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.app-info-block {
  padding: 1rem;
}

.app-info-block h3 {
  color: #333;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.app-info-block p {
  color: #666;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.app-info p {
  font-size: 0.8rem;
  margin: 0.1rem;
  color: #666;
}

.app-links {
  list-style: none;
}

.app-links li {
  margin-bottom: 0.5rem;
}

.app-links a {
  color: #666;
  text-decoration: underline;
  font-size: 0.8rem;
  transition: color 0.3s;
}

.app-version {
  background: #fff;
  padding: 1rem;
  border-radius: 5px;
  margin-bottom: 1rem;
}

.app-version p {
  margin: 0;
}

.app-qr {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

/* 法律声明样式 */
.legal-notice {
  background: #1a1a1a;
  padding: 3rem 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  text-align: center;
}

.legal-notice-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.legal-content {
  display: inline-flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem 2.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  backdrop-filter: blur(10px);
}

.legal-divider {
  width: 1px;
  height: 20px;
  background: rgba(255, 255, 255, 0.2);
}

.legal-text {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 300;
}

.legal-highlight {
  color: var(--theme-color);
  font-weight: 500;
}

.official-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--theme-color);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  background: rgba(255, 202, 52, 0.1);
  margin-top: 0.5rem;
}

.official-link:hover {
  background: rgba(255, 202, 52, 0.15);
  transform: translateY(-1px);
  color: var(--theme-color-dark);
}

.legal-warning {
  margin-top: 1.5rem;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
}

/* 响应式设计 - 合并所有媒体查询 */
@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  /* 通用优化 */
  img {
    max-width: 100%;
    height: auto;
  }

  button,
  a {
    min-height: 44px;
    min-width: 44px;
  }

  p,
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .container,
  .main-area {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  /* Hero区域 */
  .hero-slider {
    height: auto;
    min-height: 100vh;
    padding: 2rem 0;
    position: relative;
    z-index: 1;
  }

  .hero-container {
    flex-direction: column;
    gap: 2rem;
    padding: 0 1rem;
    text-align: center;
  }

  .hero-content {
    align-items: center;
    gap: 1.5rem;
    order: 2;
  }

  .hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
  }

  .hero-content p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    text-align: center;
    line-height: 1.5;
  }

  .hero-image {
    order: 1;
    margin-bottom: 1rem;
  }

  .app-screenshot {
    width: 250px;
    border-radius: 20px;
  }

  .qr-code {
    margin-top: 0.5rem !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .qr-code img {
    width: 120px !important;
    height: 120px !important;
  }

  .qr-code p {
    font-size: 0.8rem !important;
    margin-top: 0.3rem !important;
  }

  /* 板块标题 */
  section {
    margin: 0;
    padding: 3rem 1rem;
  }

  .section-title {
    margin-bottom: 2rem;
  }

  .section-title h2 {
    font-size: 2rem;
    margin-bottom: 0.8rem;
  }

  .section-title p {
    font-size: 0.95rem;
    max-width: 100%;
  }

  /* 产品轮播 */
  .product-slide {
    padding: 1rem;
  }

  .product-image {
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }

  .slider-indicators {
    margin-top: 1rem;
    gap: 0.5rem;
  }

  .indicator {
    width: 8px;
    height: 8px;
    min-width: 24px;
    min-height: 24px;
    border-radius: 50%;
    background-color: #ddd;
    border: none;
    padding: 0;
    margin: 0;
    box-shadow: none;
  }

  /* 功能展示 */
  .features-container {
    padding: 1rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .feature-card {
    padding: 1.5rem;
    border-radius: 15px;
    margin-bottom: 1rem;
  }

  .feature-image {
    margin: -1.5rem -1.5rem 0;
    border-radius: 15px 15px 0 0;
  }

  .feature-phone {
    max-width: 200px;
    border-radius: 12px;
  }

  .feature-content {
    margin-top: 1.5rem;
  }

  .feature-title {
    font-size: 1.6rem;
    margin-bottom: 1rem;
  }

  .feature-desc {
    font-size: 1rem;
    margin-bottom: 1rem;
    line-height: 1.5;
  }

  .feature-list li {
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
  }

  /* 隐藏浮动元素 */
  .floating-element {
    display: none;
  }

  /* 梦想计划 */
  .program-steps {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 0 1rem;
    margin: 0 1rem;
  }

  .step-card {
    padding: 1.5rem;
    border-radius: 12px;
  }

  .step-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
  }

  .step-card p {
    font-size: 0.95rem;
  }

  .step-number {
    width: 50px;
    height: 50px;
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
  }

  /* 爱家园 */
  .community-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    padding: 0 1rem;
  }

  .community-image {
    height: 150px;
  }

  .community-info {
    padding: 1rem;
  }

  .community-info h3 {
    font-size: 1.2rem;
    margin-bottom: 0.6rem;
  }

  .community-info p {
    font-size: 0.9rem;
  }

  .community-card {
    margin-bottom: 1rem;
  }

  /* 加入我们 */
  .download-container {
    padding: 1.5rem 1rem;
    margin: 0 1rem;
  }

  .download-tip {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
  }

  .download-buttons {
    flex-direction: column;
    gap: 1rem;
  }

  .download-btn {
    width: 100%;
    justify-content: center;
    padding: 0.8rem 1.5rem;
  }

  .download-btn span {
    font-size: 0.95rem;
  }

  /* 应用信息 */
  .app-info {
    padding: 2rem 1rem;
  }

  .app-info-container {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 0 1rem;
  }

  .app-info-block {
    padding: 0.8rem;
  }

  .app-info-block h3 {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
  }

  .app-info-block p {
    font-size: 0.85rem;
  }

  .app-links a {
    font-size: 0.85rem;
  }

  .app-version {
    padding: 0.8rem;
  }

  .app-version p {
    font-size: 0.85rem;
  }

  /* 法律声明 */
  .legal-content {
    flex-direction: column;
    padding: 1.5rem;
    gap: 1rem;
    width: 100%;
  }

  .legal-divider {
    width: 50px;
    height: 1px;
  }
}

@media (max-width: 480px) {
  /* 通用优化 */
  .container,
  .main-area {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }

  button,
  a {
    min-height: 40px;
    min-width: 40px;
  }

  /* Hero区域 */
  .hero-slider {
    padding: 1rem 0;
  }

  .hero-container {
    padding: 0 0.5rem;
    gap: 1.5rem;
  }

  .hero-content h1 {
    font-size: 2rem;
    margin-bottom: 0.8rem;
  }

  .hero-content p {
    font-size: 0.9rem;
    margin-bottom: 1rem;
  }

  .app-screenshot {
    width: 200px;
    border-radius: 15px;
  }

  .qr-code img {
    width: 100px !important;
    height: 100px !important;
  }

  .qr-code p {
    font-size: 0.7rem !important;
  }

  /* 板块标题 */
  section {
    padding: 2rem 0.5rem;
  }

  .section-title h2 {
    font-size: 1.8rem;
    margin-bottom: 0.6rem;
  }

  .section-title p {
    font-size: 0.9rem;
  }

  /* 产品轮播 */
  .product-slide {
    padding: 0.5rem;
  }

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

  .slider-indicators {
    margin-top: 0.7rem;
    gap: 0.3rem;
  }

  .indicator {
    width: 6px;
    height: 6px;
    min-width: 20px;
    min-height: 20px;
  }

  /* 功能展示 */
  .features-container {
    padding: 0.5rem;
  }

  .feature-card {
    padding: 1rem;
    border-radius: 12px;
  }

  .feature-image {
    margin: -1rem -1rem 0;
    border-radius: 12px 12px 0 0;
  }

  .feature-phone {
    max-width: 180px;
    border-radius: 10px;
  }

  .feature-content {
    margin-top: 1rem;
  }

  .feature-title {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
  }

  .feature-desc {
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
  }

  .feature-list li {
    font-size: 0.85rem;
    margin-bottom: 0.6rem;
  }

  /* 梦想计划 */
  .program-steps {
    padding: 0 0.5rem;
    gap: 1rem;
    margin: 0 0.5rem;
  }

  .step-card {
    padding: 1rem;
    border-radius: 10px;
  }

  .step-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.6rem;
  }

  .step-card p {
    font-size: 0.9rem;
  }

  .step-number {
    width: 45px;
    height: 45px;
    font-size: 1.2rem;
    margin-bottom: 0.6rem;
  }

  /* 爱家园 */
  .community-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 0 0.5rem;
  }

  .community-image {
    height: 120px;
  }

  .community-info {
    padding: 0.8rem;
  }

  .community-info h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
  }

  .community-info p {
    font-size: 0.85rem;
  }

  /* 加入我们 */
  .download-container {
    padding: 1rem 0.5rem;
    margin: 0 0.5rem;
  }

  .download-tip {
    font-size: 1rem;
    margin-bottom: 1rem;
  }

  .download-btn {
    padding: 0.7rem 1rem;
  }

  .download-btn span {
    font-size: 0.9rem;
  }

  /* 应用信息 */
  .app-info {
    padding: 1.5rem 0.5rem;
  }

  .app-info-container {
    gap: 1rem;
    margin: 0 0.5rem;
  }

  .app-info-block {
    padding: 0.6rem;
  }

  .app-info-block h3 {
    font-size: 1rem;
    margin-bottom: 0.6rem;
  }

  .app-info-block p {
    font-size: 0.8rem;
  }

  .app-links a {
    font-size: 0.8rem;
  }

  .app-version {
    padding: 0.6rem;
  }

  .app-version p {
    font-size: 0.8rem;
  }
}

@media (max-width: 360px) {
  section {
    padding: 1rem 0.3rem;
  }

  .hero-content h1 {
    font-size: 1.6rem;
  }

  .hero-content p {
    font-size: 0.8rem;
  }

  .app-screenshot {
    width: 160px;
  }

  .qr-code img {
    width: 80px !important;
    height: 80px !important;
  }
}

/* 横屏模式优化 */
