@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+SC:wght@400;500;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Noto Sans SC', sans-serif;
  background: linear-gradient(135deg, #87CEFA, #6A5ACD);
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 20px;
}
.app-icon {
  width: 80px; /* 调整为你喜欢的尺寸 */
  height: 80px;
  border-radius: 16px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.container {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
  overflow: hidden;
  max-width: 800px;
  width: 100%;
  text-align: center;
}

.header {
  padding: 30px 20px;
}

.app-icon {
  width: 120px;
  height: 120px;
  border-radius: 24px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.header h1 {
  margin-top: 20px;
  font-size: 28px;
  color: #333;
}

.header p {
  margin-top: 10px;
  color: #555;
}

.splash img {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
}

.download-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 30px;
}

.btn {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #fff;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 18px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.btn img {
  width: 28px;
  height: 28px;
  margin-right: 10px;
}

.btn.android {
  background-color: #32de84;
}


.btn.ios {
  background-color: #000;
}

.btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

@media (max-width: 600px) {
  .download-buttons {
    flex-direction: column;
  }

  .btn {
    justify-content: center;
  }
}

/*.aa {*/
/*  width: 80;*/
/*  height: 80;*/
/*  border-radius: 24px;*/
/*  box-shadow: 0 5px 15px rgba(0,0,0,0.1);*/
/*}*/

/*.aa {*/
/*  width: 80;*/
/*  height: 80;*/
/*  border-radius: 24px;*/
/*  box-shadow: 0 5px 15px rgba(0,0,0,0.1);*/
/*}*/

