table.wxss 448 B

123456789101112131415161718192021222324
  1. /* components/table/table.wxss */
  2. .table{
  3. color: #fff;
  4. border-top: 1px solid #515266;
  5. }
  6. .table .table_row {
  7. white-space: nowrap;
  8. }
  9. .table .table_rd {
  10. min-width: 4em;
  11. text-align: center;
  12. white-space: nowrap;
  13. display: inline-block;
  14. vertical-align:middle;
  15. border-bottom: 1px solid #515266;
  16. }
  17. .table .table_rd .viewRd{
  18. padding: 0 15px;
  19. line-height: 35px;
  20. height: 35px;
  21. }
  22. .table .table_rd .debuRow{
  23. background-color: #1c1f32;
  24. }