/**
 * @file about.css 
 * @description 关于我们页面样式 - 单图响应式布局
 */

/* ==========================================================================
   主内容区域 (单图布局)
   ========================================================================== */
.main-container {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    margin-top: 0;
    position: relative;
    background: #fff; /* 或根据需要设置背景 */
}

.main-container img {
    width: 100%;
    height: auto; /* 核心：高度自适应，保持比例 */
    display: block;
    object-fit: contain; /* 确保不被裁切 */
}