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

body {
    line-height: 1.42857143;
    font-size: 16px;
    min-height: 100vh;
    background: #000; /* 页面空白处深色，和背景图适配 */
}

header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
}

h1, h2, h3, h4, h5 {
    margin: 32px 0 16px;
}

p {
    margin: 0 0 16px;
}

.container {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background: url("../images/home_bg.jpg") center / cover no-repeat;
    margin: auto;
}

@media (min-width: 576px) {
    .container {
        max-width: 576px;
    }
}

.header {
    width: 100%;
    height: 64px;
    backdrop-filter: blur(20px);
    background: rgba(0,0,0,.1);
    display: flex;
    align-items: center;
}

.header-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.guide-content {
    width: 100%;
    height: 100%;
    padding: 64px 24px;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.guide-content hr {
    width: 100%;
    border: 0;
    border-bottom: 1px solid rgba(255,255,255,.15);
    margin: 24px 0;
}

.linear-clip-headline {
    line-height: 64px;
    font-size: 48px;
    background: rgb(245,245,245);
    background-image: linear-gradient(110deg,#67ff67 0%,#67ffff 31%,#6767ff 68%,#ff67ff 100%);
    -webkit-text-fill-color: rgba(0,0,0,0);
    -webkit-background-clip: text;
    background-clip: text;
}

button {
    height: 38px;
    font-size: 15px;
    font-weight: 600;
    color: #000;
    border: none;
    border-radius: 999px;
    background-color: #00F9E5;
    background-image: linear-gradient(110deg,#67ff67,#67ffff 44%,#6767ff 100%);
    display: inline-flex;
    align-items: center;
    margin: 0 0 16px;
    padding: 0 24px;
}