You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12345678910111213141516171819202122232425262728293031323334353637
  1. .table {
  2. margin: 20rpx 0;
  3. border: 1PX #000000 solid;
  4. font-size: 20rpx;
  5. }
  6. .thead, .tr {
  7. display: flex;
  8. justify-content: space-between;
  9. border-bottom: 1PX solid #000000;
  10. }
  11. .th {
  12. display: flex;
  13. align-items: center;
  14. justify-content: center;
  15. border-right: 1PX solid #000000;
  16. padding: 20rpx 8rpx;
  17. font-weight: bold;
  18. }
  19. .tb {
  20. display: flex;
  21. align-items: center;
  22. justify-content: center;
  23. border-right: 1PX solid #000000;
  24. padding: 20rpx 8rpx;
  25. }
  26. .th:last-child, .tb:last-child {
  27. border-right: none;
  28. }
  29. .tr:last-child {
  30. border-bottom: none;
  31. }