12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- @import '../../app.less';
- .module.list-table {
- .header {
- font-size: 18px;
- height: 56px;
- line-height: 56px;
- padding-left: 44px;
- border-bottom: 1px solid @line_color;
- .title {
- color: @cornflower;
- margin-right: 9px;
- }
- .sub-title {
- color: @night-blue;
- }
- }
- .filter {
- height: 68px;
- line-height: 68px;
- padding-left: 44px;
- border-bottom: 1px solid @line_color;
- .text {
- margin-right: 14px;
- }
- .filter-list {
- display: inline-block;
- .filter-item {
- margin-right: 32px;
- display: inline-block;
- }
- }
- }
- .table {
- .th {
- padding: 0 44px;
- }
- .tr {
- padding: 0 44px;
- .td {
- height: 78px;
- padding-top: 15px;
- }
- }
- }
- }
|