.box { width: 100%; height: 100%; display: flex; flex-direction: column; color: #303133; .header { width: 100%; height: 56px; display: flex; justify-content: space-between; align-items: center; padding: 0 20px; border-bottom: 1px solid #E4E7EC; span { color: #303133; font-weight: 500; font-size: 16px; } } .searchbox{ height: 70px; display: flex; justify-content: space-between; padding: 0 20px; align-items: center; .search{ width: 60%; display: flex; input{ margin-right: 16px; } button{ margin-right: 16px; } } } .content { flex: 1; box-sizing: border-box; padding: 18px; padding-top: 0px; .operation { a { margin-right: 16px; } } } }