/* 基础样式重置和变量定义 */
: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;
}
.center{
    display:flex;
}
.flex{
	display: flex;
	margin-top: 50px;
	gap: 30px;
}
.flex img{
	width: 550px;
	height: 391px;
	object-fit: contain;
}
.main-card{
	background-color: rgba(239, 251, 248, 1); 
	border-radius: 16px;
	padding-bottom: 20px;
	box-shadow: 0 0 30px rgba(16, 185, 129, 0.2);
}

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

/* 下载页面部分样式 */
.download-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: #ffffff;
  width: 100%;
  
}

.download-container {
  width: 100%;
  max-width: 1200px;
  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;
}

.content-section1 {
  flex: 1;
}

.top-badge {
  display: inline-block;
  background: rgba(19, 167, 174, 0.15);
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 30px;
  align-items: center;
}

.main-title {
  font-size: 48px;
  font-weight: 700;
  color: #1f2937;
  line-height: 1.2;
  margin: 0 0 20px 0;
}
.second-title {
  font-size: 50px;
  font-weight: 700;
  background: linear-gradient(to right, rgba(19, 167, 174, 1), rgba(20, 129, 184, 1), rgba(16, 188, 162, 1));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.2;
  margin: 0 0 20px 0;
}
.highlight {
  color: #10b981;
}
.highlight1 {
  color: #10b981 !important;
}

.subtitle {
  font-size: 18px;
  color: #6b7280;
  margin: 0 0 10px 0;
  font-weight: 400;
}

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

.download-btn {
  width: 131px;
  height: 48px;
  background: rgba(19, 167, 174, 1);
  color: white;
  border: none;
  padding: 16px 32px;
  border-radius: 9999px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  margin-bottom: 30px;
  transition: background-color 0.2s;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  
}

.download-btn:hover {
  background: rgba(20, 129, 184, 1);
}

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

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

.qr-codes {
  display: flex;
  gap: 50px;
  align-items: center;
}

.qr-qr-codes {
  display: flex;
  gap: 50px;
  align-items: center;
}

.qrqrqr{
	display: flex;
	gap: 20px;
}
.qr-item {
  text-align: center;
  background-color: rgba(239, 251, 248, 1);
  box-shadow: 0 0 30px rgba(16, 185, 129, 0.2);
  border-radius: 16px;
  padding: 20px 20px 20px 20px;
}

.qr-code {
  	width: 112px;
  	height: 112px;
  	background-color: #ffffff;
  	text-align: center;
  	flex-direction: column;
  	border: 1px solid #e5e7eb; /* 添加灰色边框 */
  	border-radius: 16px;
  	padding: 10px;
  	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  
}

.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: grid;
  align-items: center;
  position: relative;
  left:50px;
}

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

.phone-image {
  height: auto;
  max-width: 100%;
  box-shadow: 0 0 30px rgba(16, 185, 129, 0.2);
  border-radius: 24px;
}
.two-img{
  display: flex;
  margin-top: 50px;
  gap:65px;
}
.second-image{
	box-shadow: 0 0 30px rgba(16, 185, 129, 0.2); 
	border-radius: 24px;
}

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

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

.features-header {
  text-align: left;
  margin-bottom: 60px;
}

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

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

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

.feature-card {
  background: rgba(239, 251, 248, 1);
  padding: 40px 12px;
  border-radius: 16px;
  text-align: left;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
  width: 250px;

}

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

.feature-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 16px;
  border-radius: 16px;
}

.feature-title {
  font-size: 18px;
  font-weight: 700;
  color: #1f2937;
  margin: 0 0 12px 0;
  text-align: left;
  align-items: center;
  margin: 5px 0 0 15px;
}

.feature-description {
  font-size: 14px;
  color: #6b7280;
  line-height: 2;
  text-align: left;
}

/* 底部新增卡片和图片部分样式 */
.features-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 60px;
}

.bottom-cards {
  display: grid;
  flex-wrap: wrap;
  gap: 20px;
  width: 50%;
}

.feature-bottom-card {
  display: flex;
  background: rgba(239, 251, 248, 1);
  padding: 20px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 0 30px rgba(16, 185, 129, 0.2);
  transition: transform 0.2s;
}

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

.feature-bottom-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 12px;
}

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

.feature-bottom-description {
  font-size: 14px;
  color: #6b7280;
  text-align: left;
  margin-left: 12px;
}

.features-image {
  width: 45%;
}

.feature-main-image {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}



/*适用场景*/

.suit-title {
  font-size: 18px;
  font-weight: 700;
  color: #1f2937;
  margin: 0 0 12px 0;
  text-align: center;
  align-items: center;
  margin: 5px 0 0 10px;
}

.suit-description {
  font-size: 14px;
  color: #6b7280;
  line-height: 2;
  text-align: center;
}

.suit-card {
  background: rgba(239, 251, 248, 1);
  padding: 40px 12px;
  border-radius: 16px;
  text-align: left;
  box-shadow: 0 0 60px rgba(16, 185, 129, 0.2);
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
  width: 280px;

}


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

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





/*技术与优势*/

.tech-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  width: 100%;
  margin: 0 auto;
}

.tech-card {
  display: flex;
  flex-direction: column;
  background: rgba(239, 251, 248, 1);
  padding: 30px 20px;
  border-radius: 16px;
  text-align: left;
  box-shadow: 0 0 30px rgba(16, 185, 129, 0.2);
  transition: transform 0.2s;
}

.tech-card:hover {
  transform: translateY(-4px);
}
.tech-title {
  font-size: 18px;
  font-weight: 700;
  color: #1f2937;
  margin: 0 0 12px 0;
  text-align: left;
}

.tech-description {
  font-size: 14px;
  color: #6b7280;
  line-height: 2;
  text-align: left;
  margin: 0;
}

/* 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 {
  width: 350px;
  height: auto;
}





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



.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, #E9FBF0 0%, #EEFBF7 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: 36px;
  font-weight: 900;
  color: #1f2937;
  margin: 0 0 16px 0;
}

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

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

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

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

.screen-image {
  width: 200px;
  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;
}

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

.user-value-container {
  width: 100%;
  max-width: 1200px;
  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(3, 1fr);
  gap: 40px;
  align-items: start;
}

.value-card {
  background: white;
  padding: 40px 30px;
  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;
}

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

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

.value-icon {
  width: 40px;
  height: 40px;
}

.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;
}

/* 最后一个部分样式 */
.final-section {
  background: white;
  padding: 80px 0;
  width: 100%;
  text-align: center;
}

.final-container {
  width: 80%;
  background-color: rgba(239, 251, 248, 1);
  text-align: left;
  border-radius: 16px;
  padding: 60px 40px;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.2);
}

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

.final-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.final-right {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  margin: 0 80px 0 0;
  
}

.final-download {
  background: rgba(19, 167, 174, 1);
  color: white;
  border: none;
  padding: 16px 32px;
  border-radius: 9999px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  transition: background-color 0.2s;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.4);
}

.final-download:hover {
  background: rgba(20, 129, 184, 1);
}

.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) {
  .download-container {
    flex-direction: row;
    padding: 20px;
    text-align: left;
    max-width: none;
  }

  .content-section1 {
    padding-right: 10px;
    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-title {
    font-size: 28px;
  }

 
  

  .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(2, 1fr);
    gap: 30px;
  }

  .screen-image {
    width: 150px;
  }

  .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: 480px) {
	
  .top-badge{
      position: relative;
	  border-radius: 9999px;
  }
  .main-title {
    font-size: 24px;
	margin: 0 auto;
	text-align: center;
  }
  .second-title{
	font-size: 30px;
	margin-top: 20px;
  }
  .subtitle {
	position: relative;
	top: 10px;
	width: 235px;
    margin: 0 auto;
    font-size: 16px;
	text-align:center;
	padding: 0 0 0 10px;
  }  

  .qr-codes {
	display:flex;
    gap: 30px;
  	justify-content: center;
    align-items: center;
	margin: 0 auto;
  }
  
  .qr-qr-codes {
  	display:grid;
    gap: 30px;
  	justify-content: center;
    align-items: center;
  	margin: 0 auto;
  }
  
  .qrqrqr{
	  display: flex;
	  margin-top: 50px;
  }
 
  
  .qr-code{
	  width: 112px;
	  height: 112px;
	  background-color: #ffffff;
	  text-align: center;
	   flex-direction: column;
	   align-items: center; /* 居中对齐 */
	   border: 1px solid #e5e7eb; /* 添加灰色边框 */
	   border-radius: 16px;
	   padding: 10px;
	  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  }
  
  .features-title{
	  text-align: center;
  }
  
  .phone-section {
    flex-shrink: 0;
    display: grid;
    align-items: center;
    position: relative;
	left: 0px;
  }
  .two-img{
	gap:30px;

  }
  .second-image{
	  width: 45%;
	  height: auto;
	  object-fit: contain;
  }
  
  .features-bottom{
	display: grid;
	grid-template-columns: 1fr;
	justify-items: center;
	margin-top: 60px;
  }
  .feature-bottom-card{
	  width: 280px;
  }
  
  .bottom-cards{
	  width: auto;
  }
  .features-image{
	  width: auto;
  }
  
  .feature-main-image{
	margin-top: 40px;
  }
  
  .tech-cards{
	grid-template-columns: 1fr;
	width: 280px;
  }
  
  .tech-title{
	  text-align: center;
  }
  
  
  
  .phone-image {
    border-radius: 20px;
    display: block;
  }
  .phone-container{
	  align-items: center;
  }

  .download-container {
  width: 100%;
  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;
  }
  .center{
    text-align: left;
    margin-left: 30px;
  }
  .center img{
	  display: block;
  }
  
  
  .flex{
	  display:grid;
  }
  .main-card{
	  width: 100%;
  }
  .main-card img{
	  width: 100%;
  }
  .features-subtitle{
	  width: 270px;
	  margin: 0 auto;
	  text-align: center;
  }
  .features-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    justify-content: center;
  }
  
  .feature-card {
    padding: 15px 10px;
    min-height: 160px;
	width: 277px;
  }

  .ai-badge{
	position: relative;
	right: 40px;
  }
  
  .ai-title{
	text-align: left;
	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-stats {
    gap: 20px;
  }

 


  .band-item{
	 padding: 0 20px;
	/* justify-content: center;
	gap: 15px; */
  }

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

  .screen-image {
    width: 180px;
  }



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

  .final-container {
    padding: 40px 20px;
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }

  .final-left {
    align-items: center;
  }

  .final-right {
	  display: flex;
    justify-content: center;
	margin-left: 75px;
  }

  .final-title {
    font-size: 32px;
  }

  .final-content {
    font-size: 16px;
  }

   .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;
  }
  
  
  
  
}



/* 链接样式 */

.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);
  }
}

/* 弹窗样式 */
.modal {
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
}

.modal-content {
  background-color: white;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  max-width: 480px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(-20px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.modal-header {
  position: relative;
  padding: 20px 20px 0 20px;
}

.close {
  position: absolute;
  right: 20px;
  top: 20px;
  font-size: 28px;
  font-weight: bold;
  color: #999;
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s ease;
}

.close:hover {
  color: #333;
}

.modal-body {
  padding: 20px 40px 40px 40px;
  text-align: center;
}

.modal-icon {
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
}

.modal-title {
  font-size: 24px;
  font-weight: 600;
  color: #333;
  margin-bottom: 12px;
  line-height: 1.3;
}

.modal-text {
  font-size: 16px;
  color: #666;
  margin-bottom: 8px;
  line-height: 1.5;
}

.modal-subtext {
  font-size: 14px;
  color: #999;
  margin-bottom: 30px;
  line-height: 1.4;
}

.qr-codes-modal {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.qr-item-modal {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.qr-code-modal {
  width: 120px;
  height: 120px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease;
}

.qr-code-modal:hover {
  transform: scale(1.05);
}

.platform-label-modal {
  font-size: 14px;
  color: #666;
  font-weight: 500;
}

/* 响应式设计 */
/* @media (max-width: 768px) {
  .modal-content {
    margin: 20px;
    width: calc(100% - 40px);
  }
  
  .modal-body {
    padding: 20px 30px 30px 30px;
  }
  
  .modal-title {
    font-size: 20px;
  }
  
  .qr-codes-modal {
    gap: 20px;
  }
  
  .qr-code-modal {
    width: 100px;
    height: 100px;
  }
} */