/* 基础样式重置和变量定义 */
:root {
  --vt-c-white: #ffffff;
  --vt-c-white-soft: #f8f8f8;
  --vt-c-white-mute: #f2f2f2;

  --vt-c-black: #181818;
  --vt-c-black-soft: #222222;
  --vt-c-black-mute: #282828;

  --vt-c-indigo: #2c3e50;

  --vt-c-divider-light-1: rgba(60, 60, 60, 0.29);
  --vt-c-divider-light-2: rgba(60, 60, 60, 0.12);
  --vt-c-divider-dark-1: rgba(84, 84, 84, 0.65);
  --vt-c-divider-dark-2: rgba(84, 84, 84, 0.48);

  --vt-c-text-light-1: var(--vt-c-indigo);
  --vt-c-text-light-2: rgba(60, 60, 60, 0.66);
  --vt-c-text-dark-1: var(--vt-c-white);
  --vt-c-text-dark-2: rgba(235, 235, 235, 0.64);
}

:root {
  --color-background: var(--vt-c-white);
  --color-background-soft: var(--vt-c-white-soft);
  --color-background-mute: var(--vt-c-white-mute);

  --color-border: var(--vt-c-divider-light-2);
  --color-border-hover: var(--vt-c-divider-light-1);

  --color-heading: var(--vt-c-text-light-1);
  --color-text: var(--vt-c-text-light-1);

  --section-gap: 160px;
}

@media (prefers-color-scheme: dark) {
  :root {
    --color-background: var(--vt-c-black);
    --color-background-soft: var(--vt-c-black-soft);
    --color-background-mute: var(--vt-c-black-mute);

    --color-border: var(--vt-c-divider-dark-2);
    --color-border-hover: var(--vt-c-divider-dark-1);

    --color-heading: var(--vt-c-text-dark-1);
    --color-text: var(--vt-c-text-dark-2);
  }
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  font-weight: normal;
}

body {
  min-height: 100vh;
  color: var(--color-text);
  background: var(--color-background);
  transition: color 0.5s, background-color 0.5s;
  line-height: 1.6;
  font-family: Inter, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
  font-size: 15px;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin: 0;
  padding: 0;
}

/* 主容器样式 */
.body {
  /* background: linear-gradient(135deg, #E9FBF0 0%, #EEFBF7 100%); */
  margin: 0;
  padding: 0;
}

/* 防晕手环比较表格部分样式 */
.comparison-section {
  padding: 80px 20px;
  background-color: #f8fafc;
}

.comparison-container {
  max-width: 1200px;
  margin: 0 auto;
}

.comparison-header {
  text-align: center;
  margin-bottom: 50px;
}

.comparison-title {
  font-size: 36px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 16px;
}

.comparison-subtitle {
  font-size: 18px;
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
}

.comparison-table {
  background-color: white;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  width: 100%;
  border-collapse: collapse;
}

.table-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  border-bottom: 1px solid #e2e8f0;
  align-items: center;
}

.table-row:last-child {
  border-bottom: none;
  margin-bottom: 40px;
}

.header-row {
  background-color: white;
  font-weight: 700;
}

.header-cell {

  text-align: center;
}

.product-cell {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  border-radius: 16px 16px 0 0;
  margin-top: 40px;
  padding: 10px;
  color: rgba(54, 65, 83, 1);
}


.product-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 8px;
}

.row-title {
  padding: 15px;
  font-weight: 600;
  color: rgba(54, 65, 83, 1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.cell {
  padding: 15px;
  text-align: center;
  color: rgba(74, 85, 101, 1);
}

.highlight-cell {
  background-color: #f0f9ff;
  color: #0369a1;
  font-weight: 500;

}

/* 响应式适配 */
@media (max-width: 768px) {
  .table-row {
    /* grid-template-columns: 1fr; */
    /* gap: 5px; */
    /* padding: 10px; */
  }
  .table-row:last-child{
	  margin-bottom: 0;
  }
  .product-cell{
	  margin-top: 0;
  }
  
  
  .product-icon{
	  width: 64px;
	  height: 64px;
  }
  
  
  .row-title {
    /* background-color: #f1f5f9; */
    width: 100%;
    /* padding: 10px; */
    /* margin-bottom: 5px; */
  }
  
  .cell {
    width: 100%;
    text-align: center;
    /* padding: 10px; */
   /* border-bottom: 1px solid #e2e8f0; */
  }
  
  .cell:last-child {
    border-bottom: none;
  }
  
  .highlight-cell {
    background-color: #ffffff;
  }
}

/* 下载页面部分样式 */
.download-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(
      150deg,
      rgba(239, 246, 255, 1) 0%,    /* 主背景色 */
      rgba(255, 255, 255, 1) 50%,   /* 中间过渡 */
      rgba(249, 250, 251, 1) 100%   /* 底部色调 */
    );
    background-attachment: fixed;
  width: 100%;
}

.download-container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  /* flex-direction: column; */
  align-items: center;
  justify-content: space-between;
  padding: 40px 40px;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  gap: 120px;
}

.content-section1 {
  flex: 1;
}

.top-badge {
  display: inline-block;
  background: rgba(219, 234, 254, 1);
  color: rgba(20, 71, 230, 1);
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 30px;
}
.top-badge1 {
  display: inline-block;
  background: rgba(220, 252, 231, 1);
  color: rgba(0, 130, 54, 1);
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 30px;
}


.main-title {
  font-size: 48px;
  font-weight: 900;
  color: #1f2937;
  line-height: 1.2;
  margin: 0 0 20px 0;
}
.highlight {
  color: #10b981;
}
.highlight1 {
  color: #10b981 !important;
}

.subtitle {
  font-size: 18px;
  color: rgba(21, 93, 252, 1);
  margin: 0 0 10px 0;
  font-weight: 400;
}

.description {
  font-size: 16px;
  color: #6b7280;
  margin: 0 0 40px 0;
  font-weight: 400;
}

.download-btn {
  background: #10b981;
  color: white;
  border: none;
  padding: 16px 32px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 30px;
  transition: background-color 0.2s;
}

.download-btn:hover {
  background: #059669;
}

.download-icon {
  width: 20px;
  height: 20px;
}

.scan-text {
  font-size: 14px;
  color: #6b7280;
  margin: 0 0 20px 0;
}

.qr-codes {
  display: flex;
  gap: 100px;
}

.qr-item {
  text-align: center;
}

.qr-code {
  width: 120px;
  height: 120px;
  margin-bottom: 12px;
}

.platform-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
  color: #6b7280;
}

.platform-icon {
  width: 20px;
  height: 20px;
}

.phone-section {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  
}

.phone-container {
  position: relative;
  display: inline-block;
}

.phone-image {
 /*background: url("assets/pic.svg") no-repeat center/contain;*/
 /*   -webkit-background-size: contain;*/
	/*background-size: contain;*/
	  transform: translateZ(0);
  width: 760px;
  height: 224px;
}

/* 核心功能亮点部分样式 */
.features-section {
  background: rgba(255, 255, 255, 1);
  padding: 80px 0;
  width: 100%;
  
}

.features-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  text-align: center;
}

.features-header {
  text-align: center;
  margin-bottom: 60px;
}
.top-label {
  display: inline-block;
  background: rgba(219, 234, 254, 1);
  color: rgba(20, 71, 230, 1);
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 30px;
  text-align: center;
}

.features-title {
  font-size: 20px;
  font-weight: 900;
  color: #1f2937;
  margin: 0 0 16px 0;
}

.features-subtitle {
  font-size: 16px;
  color: #6b7280;
  margin: 0;
}

.features-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  margin-top: 60px;
}

.feature-card {
   background: 
      /* 左上角高光 - rgba(239, 246, 255, 1) */
      radial-gradient(
        circle at left top,
        rgba(239, 246, 255, 1) 0%,
        transparent 100%
      ),
      /* 主背景色 - rgba(255, 255, 255, 1) */
      rgba(255, 255, 255, 1);
  padding: 40px 24px;
  border-radius: 16px;
  border: 1px solid rgba(219, 234, 254, 1);
  text-align: center;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s, box-shadow 0.2s;
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
/*  justify-content: center; */
  align-items: center;
  width: 250px;
  height: 150px;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px -3px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 24px;
}

.feature-num{
	color:rgba(21, 93, 252, 1);
	font-size: 16px;
}
.feature-title {
  font-size: 16px;
  font-weight: 700;
  color: #1f2937;
  margin: 0 0 12px 0;
}

.feature-description {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.5;
  margin: 0;
}






/*六大核心优势*/
.features-section1 {
  background: rgba(255, 255, 255, 1);
  padding: 80px 0;
  width: 100%;
  
}

.features-container1 {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  text-align: center;
}

.features-header1 {
  text-align: center;
  margin-bottom: 60px;
}

.features-title1 {
  font-size: 20px;
  font-weight: 900;
  color: #1f2937;
  margin: 0 0 16px 0;
}

.features-subtitle1 {
  font-size: 16px;
  color: #6b7280;
  margin: 0;
}

.features-grid1 {
  display: grid;
  grid-template-columns: repeat(3,2fr);
  justify-content: center;
  gap: 40px;
  margin-top: 60px;
}

.feature-card1 {
   background: white;
  padding: 40px 24px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s, box-shadow 0.2s;
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
 justify-content: center;
  width: 350px;
  height: 200px;
}

.feature-card1:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px -3px rgba(0, 0, 0, 0.1);
}

.feature-icon1 {
  width: 64px;
  height: 64px;
  margin-bottom: 24px;
}

.feature-title1 {
  font-size: 16px;
  font-weight: 700;
  color: #1f2937;
  margin: 0 0 12px 0;
  text-align: left;
}

.feature-description1 {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.5;
  margin: 0;
  text-align: left;
}
/* AI音乐大模型部分样式 */
.ai-music-section {
  background: linear-gradient(135deg, #E9FBF0 0%, #EEFBF7 100%);
  padding: 40px 0;
  width: 100%;
}

.ai-music-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 400px;
}

.phone-display {
  flex-shrink: 0;
}

.phone-display-image {
  
  height: auto;
}

.ai-music-content {
  flex: 1;
}

.ai-badge {
  cursor: pointer;
  display: inline-block;
  background: #10b981;
  color: white;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 24px;
}

.ai-title {
  font-size: 36px;
  font-weight: 900;
  color: #1f2937;
  line-height: 1.2;
  margin: 0 0 20px 0;
}

.ai-description {
  font-size: 16px;
  color: #6b7280;
  line-height: 1.6;
  margin: 0 0 40px 0;
}

.ai-features {
  margin-bottom: 40px;
}

.ai-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.ai-feature-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.ai-feature-text h4 {
  font-size: 16px;
  font-weight: 600;
  color: #1f2937;
  margin: 0 0 4px 0;
}

.ai-feature-text p {
  font-size: 14px;
  color: #6b7280;
  margin: 0;
  line-height: 1.4;
}

.ai-stats {
  display: flex;
  gap: 80px;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 32px;
  font-weight: 900;
  color: #10b981;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 14px;
  color: #6b7280;
}



.brainwave-analysis {
  background: white;
  padding: 24px;
  border-radius: 16px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.brainwave-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.brainwave-icon {
  width: 32px;
  height: 32px;
}

.brainwave-header h3 {
  font-size: 18px;
  font-weight: 700;
  color: #1f2937;
  margin: 0;
}

.brainwave-bands {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.band-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
}

.band-name {
  font-size: 14px;
  color: #374151;
  font-weight: 500;
}

.band-status {
  font-size: 12px;
  padding: 4px 12px;
  border-radius: 12px;
  font-weight: 500;
}

.deep-sleep {

  color: rgba(54, 211, 153, 1);
}

.light-sleep {

  color: rgba(33, 196, 93, 1);
}

.relaxed {

  color: rgba(54, 211, 153, 1)
}

.awake {

  color: rgba(33, 196, 93, 1);
}



/* App界面展示部分样式 */
.app-showcase-section {
  background: linear-gradient(135deg, rgba(239, 246, 255, 1) 0%, rgba(219, 234, 254, 0.5) 100%);
  padding: 80px 0;
  width: 100%;
}

.app-showcase-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  text-align: center;
}

.app-showcase-title {
  font-size: 32px;
  font-weight: 900;
  color: rgba(28, 57, 142, 1);
  margin: 0 0 16px 0;
}
.work-image{
    width:600px;
    height: 320px;
}
.use-image{
    margin: 0 auto;
    width: 600px;
    height: 600px;
}

.back{
	padding: 50px;
	background-color: rgba(255, 255, 255, 1);
	border-radius: 16px;
}


.app-screens {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  align-items: start;
  justify-content: center;
}

.screen-item {
  text-align: center;
}

.screen-phone-container {
  position: relative;
  display: inline-block;
  margin-bottom: 20px;
}

.screen-image {
  height: auto;
  border-radius: 20px;
  /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); */
}

.screen-title {
  font-size: 18px;
  font-weight: 600;
  color: #1f2937;
  margin: 0 0 8px 0;
}

.screen-description {
  font-size: 14px;
  color: #6b7280;
  margin: 0;
}

.use-showcase-section {
    background: #ffffff;
  padding: 80px 0;
  width: 100%;
}

.use-showcase-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.use-showcase-title {
  font-size: 32px;
  font-weight: 900;
  margin: 0 0 16px 0;
}

/* 适用于多种场景部分 */
.scenarios-section {
  padding: 80px 24px;
  background-color: #f8fafc;
}

.scenarios-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.scenarios-title {
  font-size: 36px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 16px;
}

.scenarios-subtitle {
  font-size: 18px;
  color: #64748b;
  margin-bottom: 40px;
}

.scenarios-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 24px;
  margin-top: 40px;
}

.scenario-image{
    width: 282px;
    height: 376px;
}

.scenario-card {
  /*background-color: #fff;*/
  border-radius: 16px;
  overflow: hidden;
  /*box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);*/
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.scenario-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}
.scenario-image{
    border-radius: 16px;
}



.scenario-label {
  position: absolute;
  bottom: 16px;
  left: 0;
  right: 0;
  padding: 8px;
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  text-align: center;
  z-index: 100;
}

/* 响应式布局 */
@media (max-width: 1024px) {
  .scenarios-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .scenarios-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .scenarios-grid {
    grid-template-columns: 1fr;
  }
}

/* 用户价值与应用场景部分样式 */
.user-value-section {
  background: #f8fafc;
  padding: 80px 0;
  width: 100%;
}

.user-value-container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  text-align: center;
}

.user-value-title {
  font-size: 36px;
  font-weight: 900;
  color: #1f2937;
  margin: 0 0 16px 0;
}

.user-value-subtitle {
  font-size: 18px;
  color: #6b7280;
  margin: 0 0 60px 0;
}

.value-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  align-items: start;
  background-color: rgba(240, 253, 244, 1);
  /*padding: 40px 40px 50px 40px;*/
  border: 1px solid rgba(220, 252, 231, 1);
  border-radius: 16px;
}

.value-card {
  background: white;
  padding: 10px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s, box-shadow 0.2s;
  margin: 0 auto;
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px -3px rgba(0, 0, 0, 0.1);
}

.value-icon-wrapper {
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px auto;
}

.value-icon {
    width: 242px;
    height: 160px;
  height: auto;
}

.value-card-title {
  font-size: 20px;
  font-weight: 700;
  color: #1f2937;
  margin: 0 0 12px 0;
}

.value-card-description {
  font-size: 16px;
  color: #6b7280;
  margin: 0 0 30px 0;
  line-height: 1.5;
}

.value-features {
  text-align: left;
}

.value-feature {
	padding: 0 0 0 80px;
  text-align: left;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 14px;
  color: #374151;
}

.value-feature:last-child {
  margin-bottom: 0;
}

.check-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* 产品参数部分 */
.product-specs-section {
    padding: 80px 0;
    background-color: #fff;
}

.product-specs-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.product-specs-title {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 16px;
    color: #333;
}

.product-specs-subtitle {
    font-size: 16px;
    text-align: center;
    color: #666;
    margin-bottom: 60px;
}

.product-specs-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: flex-start;
}

.product-image-container {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #f8f9fa;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.product-image {
    width: 167px;
    height: 167px;
    margin-bottom: 20px;
}

.product-name {
    text-align: center;
    width: 100%;
}

.product-name h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
}

.product-name p {
    font-size: 14px;
    color: #666;
    margin-bottom: 12px;
}

.certification {
    display: flex;
    justify-content: center;
    margin-top: 8px;
}

.cert-badge {
    display: inline-block;
    background-color: #e6f7ff;
    color: #1890ff;
    font-size: 12px;
    padding: 4px 10px;
    border-radius: 12px;
    font-weight: 500;
}

.specs-table-container {
    flex: 2;
    min-width: 600px;
}

.specs-table {
    width: 100%;
    border-collapse: collapse;
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.specs-row {
    display: grid;
    grid-template-columns: 1fr 1.5fr 1fr 1.5fr;
    border-bottom: 1px solid #f0f0f0;
}

.specs-row:last-child {
    border-bottom: none;
}

.specs-label {
    padding: 14px 20px;
    font-size: 14px;
    color: #666;
    background-color: #fafafa;
    display: flex;
    align-items: center;
    border-right: 1px solid #f0f0f0;
}

.specs-value {
    padding: 14px 14px;
    font-size: 14px;
    color: #333;
    font-weight: 500;
    display: flex;
    align-items: center;
    border-right: 1px solid #f0f0f0;
}

.specs-row > div:nth-child(4) {
    border-right: none;
}
/* 智能模式部分样式 */
.smart-mode-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(21, 93, 252, 1) 0%, rgba(79, 57, 246, 1) 100%);
    color: #FFFFFF;
}

.smart-mode-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.smart-mode-title {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 16px;
    color: #FFFFFF;
}

.smart-mode-subtitle {
    font-size: 18px;
    text-align: center;
    margin-bottom: 48px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    color: rgba(255, 255, 255, 0.8);
}

.smart-mode-content {
    display: flex;
    gap: 40px;
    align-items: center;
}

.mode-features-list {
    flex: 1;
	
}
.mode-label {
	background-color: rgba(255, 255, 255, 0.2);
	display: inline-flex;
	padding: 10px;
    margin-bottom: 32px;
	border-radius: 8px;
}


.mode-feature-item {
    display: flex;
	
    align-items: flex-start;
    margin-bottom: 32px;
}

.mode-feature-item:last-child {
    margin-bottom: 0;
}

.mode-icon {
    width: 32px;
    height: 32px;
    margin-right: 16px;
    filter: brightness(0) invert(1); /* 将SVG图标变为白色 */
}



.mode-images {
	background-color: rgba(255, 255, 255, 1);
	border-radius: 16px;
	padding: 20px;
    flex: 1;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.mode-image {
    width: 280px;
    height: 565px;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
/* FAQ部分样式 */
.faq-section {
    padding: 40px 20px;
    background-color: #f9fafb;
}

.faq-container {
    max-width: 1200px;
    margin: 0 auto;
	text-align: center;
}

.faq-header {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}



.faq-title {
	display: flex;
    font-size: 24px;
    font-weight: 600;
    color: #101828;
    margin: 0;
	text-align: center;
	justify-content: center;
}

.faq-subtitle {
    font-size: 18px;
    font-weight: 500;
    color: #101828;
    margin: 0 0 8px 0;
	text-align: center;
}

.faq-description {
    font-size: 16px;
    color: #667085;
    margin: 0 0 32px 0;
	text-align: center;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(16, 24, 40, 0.1);
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    cursor: pointer;
    position: relative;
}

.faq-question span {
    font-size: 16px;
    font-weight: 500;
    color: #101828;
}

.arrow-icon {
    transition: transform 0.3s ease;
}

.faq-item.active .arrow-icon {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 20px 20px;
    max-height: 500px;
}

.faq-answer p {
    margin: 0;
    color: #667085;
    font-size: 15px;
    line-height: 1.6;
}
	
	.btm-area {
		width: 100%;
		height: 5vh;
		background: #ffffff;
		font-size: 1rem;
		font-weight: 500;
		
		display: flex;
		align-items: center;
		justify-content: center;
	}

/* 响应式调整 */
@media (max-width: 768px) {
    .faq-title {
        font-size: 20px;
    }
    
    .faq-subtitle {
        font-size: 16px;
    }
    
    .faq-description {
        font-size: 14px;
    }
    
    .faq-question span {
        font-size: 15px;
    }
    
    .faq-answer p {
        font-size: 14px;
    }
}

/* 响应式设计 - 智能模式部分 */
@media (max-width: 768px) {
    .smart-mode-content {
        flex-direction: column;
    }
    
    .mode-images {
        display: grid;
        margin-top: 30px;
        width: 100%;
    }
    
    .mode-image {
        
        width: 166px;
        height: 334px;
    }
}

/* 响应式调整 */
/* @media (max-width: 1024px) {
    .product-specs-content {
        flex-direction: column;
    }
    
    .product-image-container,
    .specs-table-container {
        width: 100%;
        min-width: auto;
    }
} */

/* @media (max-width: 768px) {
    .specs-row {
        grid-template-columns: 1fr 1fr;
    }
    
    .specs-row > div:nth-child(2) {
        border-right: none;
    }
    
    .specs-row:nth-child(odd) > div:nth-child(3),
    .specs-row:nth-child(odd) > div:nth-child(4) {
        background-color: #fafafa;
    }
 */}

@media (max-width: 768px) {
    .product-specs-title {
        font-size: 28px;
    }
    
    .product-specs-subtitle {
        font-size: 14px;
        margin-bottom: 40px;
    }
    
    .specs-label,
    .specs-value {
        padding: 12px 16px;
        font-size: 13px;
    }
}


	
	




/* @media (max-width: 768px) {
  .download-container {
    flex-direction: row;
    padding: 20px;
    text-align: left;
    max-width: none;
  }

  .content-section1 {
    margin-bottom: 0;
    flex: 0.6;
  }

  .phone-section {
    justify-content: flex-end;
    flex: 0.4;

  }

  .main-title {
    font-size: 28px;
  }


  .qr-codes {
    gap: 15px;
    justify-content: flex-start;
  }

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

 

  .features-section {
    padding: 60px 0;
  }

  .features-container {
    padding: 0 20px;
  }

  .features-grid {
    grid-template-columns: 2fr;
    gap: 24px;
  }
  .features-grid1{
    grid-template-columns: 2fr;
    gap: 24px;
  }



  

 

  .ai-music-section {
    padding: 60px 0;
  }

  .ai-music-container {
    flex-direction: column;
    gap: 40px;
    padding: 0 20px;
    text-align: center;
  }

  .ai-title {
    font-size: 28px;
  }

  .ai-stats {
    justify-content: center;
    gap: 30px;
  }

  .app-screens {
    grid-template-columns: repeat(1, 1fr);
    gap: 30px;
  }



  .app-showcase-title {
    font-size: 28px;
  }

  .value-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .user-value-title {
    font-size: 28px;
  }

  .value-card {
    padding: 15px 10px;
    min-height: 160px;
  }
} */

@media (max-width: 768px) {
  .top-badge{
	  border-radius: 9999px;
  }
  .main-title {
	width: 235px;
    font-size: 26px;
	margin: 20px auto;
	text-align: center;
	
  }

  .subtitle {
	width: 235px;
    margin: 0 auto;
    font-size: 16px;
	text-align:left;
	margin-bottom: 20px;
  }  
 

  .phone-image {
    /*  background: url("assets/pic.svg") no-repeat center/contain;*/
    /*-webkit-background-size: contain;*/
    object-fit: contain;
	background-size: contain;
	  transform: translateZ(0);
     width: 321px;
     height: 95px;
  display: block;
  image-rendering: -webkit-optimize-contrast;
    border-radius: 20px;

  }
  .phone-display-image {

    height: auto;
  }
  
  .phone-container{
	  align-items: center;
  }

  .download-container {
  width: 100%;
  height: 666px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 40px 40px;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  gap: 120px;
  text-align: center;
}

  .download-btn {
    text-align: center;
    margin: 0 auto;
  }
  .features-title{
	  font-size: 26px;
  }

  .features-subtitle{
	  width: 229px;
	  margin: 0 auto;
	  text-align: center;
  }
  .features-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    justify-content: center;
  }
  .features-grid1 {
    grid-template-columns: 1fr;
    gap: 30px;
    justify-content: center;
  }
  
  .feature-card {
    padding: 15px 10px;
    min-height: 160px;
	width: 229px;
	justify-content: center;
  }
  
  .feature-card1{
	  align-items: center;
	  margin: 0 auto;
  }
  .feature-description1{
	  text-align: center;
  }
  
  
  
  /*表格比较*/
  .comparison-title{
	  font-size: 26px;
  }
  .comparison-subtitle{
	  font-size: 16px;
  }


  
  .ai-title{
	text-align: center;
	width: 235px;
	margin: 0 auto;  
  }
  
  .ai-description{
	padding: 20px 0 20px 0;
	width: 235px;
	margin:0 auto;
	text-align: left;
  }
  .h{
	text-align: left;
  }
  .ai-text{
	width: 154px;
	text-align: left;
  }
  
  .ai-feature-item{
	justify-content: center;
  }
  
  .ai-stats {
    gap: 20px;
  }

 
  


  .app-screens {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .work-image{
    object-fit: contain;
    width: 100%;
    height: 141px;
}
.scenario-image{
    width: 300px;
    height: 420px;
}
.use-image{
    margin: 0 auto;
    
    width: 320px;
    height: 320px;
}

  /*.screen-image {*/
  /*  width: 200px;*/
  /*}*/

  .phone-display{
  	  order: 2;
  }
  .ai-music-content{
  	  order: 1;
  }


  .app-showcase-container {
    padding: 0 20px;
  }

  .app-showcase-title {
    font-size: 26px;
  }
  .use-showcase-title {
    font-size: 26px;
  }
  .scenarios-title {
	font-size: 26px;
  }
  .user-value-title{
	  font-size: 26px;
  }.user-value-subtitle{
	  font-size: 16px;
  }
  
  .specs-value{
	  padding: 3px;
  }
  
  .specs-table-container{
	  min-width: 100%;
  }
  
  
  .product-specs-title{
	  font-size: 26px;
  }
  .product-image {
    width: 167px;
    height: 167px;
    margin-bottom: 20px;
}
  .smart-mode-title{
	  font-size: 26px;
  }.smart-mode-subtitle{
	  font-size: 16px;
  }
  
  .value-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    width: 100%;
    max-width: none;
    margin: 0 auto;
    padding: 20px 0;
    box-sizing: border-box;
  }
  .value-card{
      margin: 0 auto;
  }
  .value-feature{
	justify-content: center;
  }
  
  .mode-features-list{
	  text-align: center;
  }
  .mode-feature-item{
  	  justify-content: space-between;
	  padding: 0 20px;
  }
  
  
 
  
  .btm-area {
  	width: 100%;
  	height: 5vh;
  	background: #ffffff;
  	font-size: 0.7rem;
  	font-weight: 500;
  	text-align: center;
  	
  	display: flex;
  	align-items: center;
  	justify-content: center;
  }
  
  
}

@media (max-width: 400px) {
  .value-card {
    padding: 10px 5px;
    min-height: 140px;
  }
}

/* 链接样式 */

.green {
  text-decoration: none;
  color: hsla(160, 100%, 37%, 1);
  transition: 0.4s;
  padding: 3px;
}

@media (hover: hover) {
  a:hover {
    background-color: hsla(160, 100%, 37%, 0.2);
  }
}


img[src*=".svg"], 
svg {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    image-rendering: pixelated;
    transform: translateZ(0); /* 触发硬件加速 */
}

/* 针对苹果Safari的特殊优化 */
@media not all and (min-resolution: 0.001dpcm) {
    @media {
        img[src*=".svg"] {
            -webkit-transform: translateZ(0);
            transform: translateZ(0);
        }
    }
}




