table.wxss 757 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. /* myComponents/table/table.wxss */
  2. .table-box{
  3. height: 100%;
  4. overflow-x: auto;
  5. padding-bottom: 40rpx;
  6. }
  7. .table {
  8. margin: 0 auto;
  9. display: table;
  10. border-collapse: collapse;
  11. overflow-x: auto;
  12. word-break: break-all;
  13. white-space:nowrap;
  14. background-color: #FFFFFF;
  15. width: 90%;
  16. border-radius: 20rpx;
  17. }
  18. .tr {
  19. display: table-row;
  20. }
  21. .th {
  22. display: table-cell;
  23. padding: 0 10rpx;
  24. height: 60rpx;
  25. line-height: 60rpx;
  26. text-align: center;
  27. border: 1rpx solid #DDDDDD;
  28. border-right: none;
  29. border-bottom: none;
  30. background-color: #10c52e;
  31. color: #FFFFFF;
  32. }
  33. .td {
  34. padding: 0rpx 30rpx;
  35. display: table-cell;
  36. height: 60rpx;
  37. line-height: 60rpx;
  38. text-align: center;
  39. border: 1rpx solid #DDDDDD;
  40. border-right: none;
  41. }