1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- @import '../../app.less';
- .user-table {
- table {
- width: 100%;
- margin-bottom: 10px;
- border-bottom: 1px solid #ECEDEE;
- .select {
- padding-left: 12px;
- padding-right: 0;
- }
- th {
- padding: 0 20px;
- background: #ECEDEE;
- height: 60px;
- border: 1px solid #fff;
- }
- td {
- padding: 20px;
- }
- tbody {
- tr:nth-of-type(even) {
- background: #FBFBFB;
- }
- }
- }
- .empty {
- width: 100%;
- height: 100px;
- line-height: 100px;
- text-align: center;
- }
- .page {
- text-align: center;
- span {
- margin: 0 15px;
- display: inline-block;
- color: #303139;
- b {
- color: #4299FF;
- font-weight: 500;
- }
- }
- }
- }
|