html,
body {
    height: 100%;
    background: rgb(233, 234, 242);
}

.airback {
    width: 100%;
    height: 120px;
}

.header-section {
    display: flex;
}

.header {
    margin: auto;
    background: rgb(255, 255, 255);
    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: gray;
    transition: all .3s;
}

.header a:hover {
    color: rgb(0, 132, 255);
}

.main-area {
    display: grid;
    margin: auto;
    width: 900px;
    height: 100%;
}

.main {
    display: grid;
    margin: auto;
    width: 900px;
    height: 1780px;
    place-items: center;
    background: rgb(255, 255, 255);
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: 0.3s ease;
}

.main:hover {
    transform: scale(1.01);
    box-shadow: 0 0 15px #bfbfbf;
}

.main h2 {
    font-size: 38px;
    font-family: SOURCEHANSANSSC-MEDIUM;
}

.main h3 {
    font-size: 15px;
    font-family: SOURCEHANSANSSC-LIGHT;
    color: rgba(186, 186, 186, 0.8);
}

.mn-img {
    height: 260px;
    width: 399px;
    overflow: hidden;
}

.mn-img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.mn-content {
    width: 700px;
}

.mn-content span {
    white-space: normal;
    word-break: break-all;
    overflow: hidden;
    line-height: 40px;
}

.back-icon a {
    position: relative;
    /* 设置元素为相对定位，为伪元素提供定位上下文 */
    display: block;
    /* 让元素包裹文本内容，以实现文字下划线 */
    text-decoration: none;
    color: rgb(112, 112, 112);
    font-size: 23px;
    float: left;
}

.back-icon a:before {
    content: "";
    /* 生成一个伪元素 */
    position: absolute;
    /* 设置伪元素为绝对定位，相对于包含块 */
    border-radius: 12px;
    top: 30px;
    left: 0;
    /* 将伪元素的左边距设置为0，以实现从左到右的运动效果 */
    width: 0;
    /* 将伪元素的宽度设置为0，初始时不可见 */
    height: 2px;
    /* 设置伪元素的高度为2像素，作为下划线的宽度 */
    background-color: rgb(112, 112, 112);
    /* 设置下划线的颜色为黑色 */
    transition: width 0.3s;
    /* 使用过渡动画实现从0到100%宽度的效果 */
}

.back-icon a:hover:before {
    width: 100%;
    /* 悬停时将伪元素的宽度设置为100%，显示完整的下划线 */
}


/* .footer-area {
    box-sizing: border-box;
    text-align: center;
    margin: 0;
    padding: 0; 
    }
    */

html,
body {
    height: 100%;
}

.footer-area {
    position: relative;
    top: 1500px;
    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: #000000;
    padding: 20px;
}

footer {
    position: absolute;
    margin-top: auto;
    /* 设置footer的上外边距为auto */
    /* width: 100%; */
    background-color: #ffffff;
    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(83, 83, 83);
}

.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;
}

h4 {
    font-size: 20px;
}