* {
  box-sizing: border-box;
  font-family: -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, "Helvetica Neue", Arial, sans-serif;
  margin: auto;
}

.bg-image {
  position: absolute;
  bottom: -88%;
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 165px 0 124px;
  width: 100%;
  margin: auto;
  border: #BCD2F5;
  height: 100vh;
  background-color: #242628;
  background-image: url(./assets/world.svg);
  background-repeat: no-repeat;
  background-position-x: center;
  background-position-y: bottom; /* 调整背景位置 */
  background-size: cover; /* 覆盖整个容器 */
  background-origin: padding-box;
}

.header {
  display: flex;
  position: relative;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0px;
  font-style: normal;
}

.header h3 {
  text-align: center;
  color: #BCD2F5;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  margin: 0;
  line-height: 36px;
}

.header h4 {
  text-align: center;
  color: #BEBCBB;
  font-size: 32px;
  font-style: oblique;
  font-weight: 750;
  margin: 20px 70px;
  line-height: 45px;
  text-shadow:
    1px 1px 1px blue,
    2px 2px 1px orange;
  font-family: Helvetica, Arial, sans-serif;
}

.header h5 {
  text-align: center;
  color: #6A4FFF;
  font-size: 32px;
  font-style: normal;
  font-weight: 70;
  margin: 20px 70px;
  line-height: 45px;
}

.header > h1 {
  font-style: normal;
  font-weight: 600;
  font-size: 48px;
  line-height: 150%;
  display: flex;
  align-items: center;
  text-align: center;
  color: #ffffff;
}

.header > p {
  font-style: normal;
  font-weight: 400;
  font-size: 24px;
  line-height: 150%;
  text-align: center;
  color: #ffffff;
  flex-grow: 0;
  margin: 16px 0px;
}

.learn-more {
  display: flex;
  justify-content: center; /* 居中显示 */
}

.learn-more > a > button {
  background: #BCD2F5;
  border-radius: 4px;
  border: none;
  width: 120px;
  height: 30px;
  color: #3F7CDC;
  text-align: center;
  font-weight: 600;
  font-size: 16px;
  line-height: 19px;
  background: rgba(188, 210, 245, 1);
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.25);
  cursor: pointer;
}

.app-links {
  display: flex;
  flex-direction: row;
}

.app-links > a {
  color: #ffffff;
  text-decoration: underline;
  margin: 0px 8px;
  font-weight: 400;
  font-size: 24px;
  line-height: 150%;
}

.app-links > a:first-of-type {
  margin-right: 30px;
}

.apps {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px; /* 控制两个应用之间的间距 */
}

.app {
  flex: 1;
  max-width: 35%; /* 控制每个应用容器的最大宽度 */
  padding: 10px;
  text-align: center;
}

.app h4 {
  text-align: center;
  color: #BEBCBB;
  font-size: 32px;
  font-style: oblique;
  font-weight: 750;
  margin: 20px 70px;
  line-height: 45px;
  text-shadow:
    1px 1px 1px blue,
    2px 2px 1px orange;
  font-family: Helvetica, Arial, sans-serif;
}

.app h5 {
  text-align: center;
  color: #6A4FFF;
  font-size: 32px;
  font-style: normal;
  font-weight: 70;
  margin: 20px 70px;
  line-height: 45px;
}

.app p {
  color: #ffffff;
  text-align: left;
  margin: 10px 0;
}

.app a {
  color: #ffffff;
  text-decoration: underline;
  font-weight: 400;
  font-size: 24px;
  line-height: 150%;
}

.logo {
  margin-top: 75px;
  display: flex;
  justify-content: center; /* 居中显示 */
}

.logo > img {
  width: 160px;
  height: 64px;
}

@media screen and (max-width: 1024px) {
  .container {
    background-size: contain;
    background-position-y: center;
  }
}

@media screen and (max-width: 600px) {
  .container {
    background-size: contain;
    background-position-y: center;
  }
  pre {
    font-size: 0.8rem;
    padding: 8px 12px;
    width: 100%;