/* 布局样式 - 容器、主内容区域 */

/* 主容器 */
.app-container {
    max-width: 1600px;
    margin: 0 auto;
    width: 100%;
    padding: 0 20px;
}

/* 主内容布局 */
.main-content {
    display: flex;
    gap: 30px;
    align-items: stretch;
    justify-content: flex-start;
    width: 100%;
    flex-wrap: nowrap;
}
