/* 标题样式 */
.about_title h1 {
    text-align: center;
    font-size: 28px;
    color: #333;
    margin-bottom: 20px;
}

/* 介绍文字样式 */
.top p {
    text-align: center;
    font-size: 16px;
    color: #666;
    max-width: 80%;
    margin: 0 auto 20px;
    line-height: 1.5;
}

/* 背景图片区域 */
.full_width_box {
    width: 100%; /* 确保背景图不会超出 */
    height: 550px; /* 设置固定高度 */
    background: url("style/images/org.jpg") no-repeat center center;
    background-size: cover;
    display: flex; /* 使用 flex 居中 */
    justify-content: center;
    align-items: center;
}

/* 响应式优化：小屏幕适配 */
@media (max-width: 600px) {
    .full_width_box {
        height: 400px; /* 小屏幕高度缩小 */
    }
}
