.about-top-box {
    width: 100%;
    height: 400px; /* 设置高度 */
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    font-weight: bold;
    
    /* 默认 JPG 背景 */
    background: url('../images/about_bg.png') no-repeat center center;
    background-size: cover;
}

/* 仅支持 WebP 的浏览器加载 WebP */
@supports (background-image: url('../images/about_bg.webp')) {
    .about-top-box {
        background-image: url('../images/about_bg.webp');
    }
}

.about-content-box {
    width: 100%; /* 横向铺满整个页面 */
    max-width: none; /* 取消最大宽度限制 */
    margin: 0; /* 移除外边距 */
    padding: 60px 10%; /* 上下 60px 间距，左右 10% 让内容不过于贴边 */
    background: url('../images/about_content_bg.jpg') no-repeat center center;
    background-size: cover;
    color: white;
    border-radius: 0; /* 移除圆角，适应整个页面 */
    box-shadow: none; /* 去掉阴影，避免视觉突兀 */
}

/* 兼容 WebP */
@supports (background-image: url('../images/about_content_bg.webp')) {
    .about-content-box {
        background-image: url('../images/about_content_bg.webp');
    }
}

/* 标题样式 */
.about-title {
    font-size: 40px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 20px;
}

/* 日期样式 */
.about-date {
    font-size: 16px;
    font-style: italic;
    text-align: center;
    color: #ffd700; /* 金色 */
    margin-bottom: 20px;
}

/* 内容样式 */
.about-text {
    font-size: 18px;
    line-height: 1.8;
    text-align: justify;
    max-width: 1200px; /* 限制正文最大宽度，避免行太长影响阅读 */
    margin: 0 auto; /* 让文字居中 */
}
