.container { background-color: transparent; width: 100%; height: 89vh; overflow: hidden; display: flex; flex-direction: column; .TopButton { display: flex; gap: 24px; margin-left: 6px; .TopButtonItem { background-color: transparent !important; color: #333333 !important; font-size: 14px !important; border-radius: 8px !important; padding: 6px 10px !important; height: auto !important; border: none !important; line-height: 1.2 !important; &:hover { color: #333333 !important; border: none !important; } &:focus { background-color: #2E4CD4 !important; color: #fff !important; } &.active { background-color: #2E4CD4 !important; color: #fff !important; } } } .content { // ======== 内容区域样式 ======== flex: 1; // ======== 占据剩余空间 ======== overflow-y: auto; // ======== 允许垂直滚动 ======== padding: 0; // ======== 无内边距 ======== } }