html,
body {
    height: 100%;
    background: rgb(0, 0, 0);
    scroll-behavior: smooth;
}

.airback {
    width: 100%;
    height: 120px;
}

.header-section {
    display: flex;
}

.header {
    position: relative;
    margin: auto;
    background: rgb(200, 200, 200);
    z-index: 999;
    justify-content: center;
    top: 0;
    /* transform: translate(-50%, 10%); */
    width: 90%;
    height: 80px;
    border-radius: 12px;
    text-align: center;
    color: #fff;
    line-height: 80px;
    font-size: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: all .3s;
}

.header a {
    text-decoration: none;
    color: rgb(32, 32, 32);
    transition: all .3s;
}

.header a:hover {
    color: rgb(0, 132, 255);
}

html,
body {
    height: 100%;
}

.footer-area {
    position: relative;
    margin-top: 100px;
    bottom: 0;
}

.f-container {
    display: grid;
    place-items: center;
}

.f-container {
    min-height: 100%;
    display: flex;
    /* 容器为flex布局 */
    flex-direction: column;
    /* 方向为纵向，保持正常的从上到下文档流 */
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.f-container {
    font-family: SOURCEHANSANSSC-NORMAL;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.fa-info h3 {
    font-size: 17px;
}

.fa-info a {
    font-size: 14px;
}

footer {
    color: #ffffff;
    padding: 20px;
}

footer {
    position: absolute;
    margin-top: auto;
    /* 设置footer的上外边距为auto */
    /* width: 100%; */
    background-color: #1b1b1b;
    box-sizing: border-box;
    padding: 0;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    place-self: center;
}

.footer-area a {
    position: relative;
    /* 设置元素为相对定位，为伪元素提供定位上下文 */
    display: inline-block;
    /* 让元素包裹文本内容，以实现文字下划线 */
    text-decoration: none;
    color: rgb(190, 190, 190);
}

.footer-area a:before {
    content: "";
    /* 生成一个伪元素 */
    position: absolute;
    /* 设置伪元素为绝对定位，相对于包含块 */
    border-radius: 12px;
    top: 20px;
    left: 0;
    /* 将伪元素的左边距设置为0，以实现从左到右的运动效果 */
    width: 0;
    /* 将伪元素的宽度设置为0，初始时不可见 */
    height: 2px;
    /* 设置伪元素的高度为2像素，作为下划线的宽度 */
    background-color: rgb(150, 150, 150);
    /* 设置下划线的颜色为黑色 */
    transition: width 0.3s;
    /* 使用过渡动画实现从0到100%宽度的效果 */
}

.footer-area a:hover:before {
    width: 100%;
    /* 悬停时将伪元素的宽度设置为100%，显示完整的下划线 */
}

.fa-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.f-logo img {
    position: relative;
    width: 90%;
    left: 90px;
}

a {
    text-decoration: none;
}

.hp-banner {
    margin-top: 50px;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    width: 53vw;
    height: auto;
    color: white;
}

.hp-banner h2 {
    font-size: 43px;
}

.hp-banner span,
li,
q {
    color: rgb(210, 210, 210);
}

.hp-banner h3 {
    text-decoration: none;
    font-weight: normal;
    font-size: 12px;
    color: rgb(97, 97, 97);
}

.hp-banner h3:before {
    counter-increment: info-number;
    content: "*"counter(info-number) ". ";
}

.hp-banner h4 {
    font-size: 22px;
    counter-reset: q-number;
}

.hp-banner q:before {
    counter-increment: q-number;
    content: counter(q-number)". ";
}

.create-way:after {
    content: ">";
    position: relative;
    transition: left .3s ease;
}

.create-way:hover:after {
    left: 5px;
}

.hp-banner a {
    position: relative;
    /* 设置元素为相对定位，为伪元素提供定位上下文 */
    display: inline-block;
    /* 让元素包裹文本内容，以实现文字下划线 */
    color: rgb(0, 102, 255);
}

.hp-banner a:before {
    content: "";
    /* 生成一个伪元素 */
    position: absolute;
    /* 设置伪元素为绝对定位，相对于包含块 */
    top: 25px;
    left: 0;
    /* 将伪元素的左边距设置为0，以实现从左到右的运动效果 */
    width: 0;
    /* 将伪元素的宽度设置为0，初始时不可见 */
    height: 3px;
    /* 设置伪元素的高度为2像素，作为下划线的宽度 */
    background-color: rgb(0, 102, 255);
    /* 设置下划线的颜色为黑色 */
    transition: width 0.3s;
    /* 使用过渡动画实现从0到100%宽度的效果 */
}

.hp-banner a:hover:before {
    width: 100%;
    /* 悬停时将伪元素的宽度设置为100%，显示完整的下划线 */
}