personal.wxss 464 B

1234567891011121314151617181920212223242526272829303132
  1. .table {
  2. border: 0px solid darkgray;
  3. }
  4. .tr {
  5. display: flex;
  6. width: 96vw;
  7. justify-content: center;
  8. height: 3rem;
  9. align-items: center;
  10. }
  11. .td {
  12. width: 32vw;
  13. justify-content: center;
  14. text-align: center;
  15. font-size: 14px;
  16. }
  17. .bg-w {
  18. background: snow;
  19. }
  20. .bg-g {
  21. background: #E6F3F9;
  22. }
  23. .th {
  24. width: 32vw;
  25. justify-content: center;
  26. background: #3366FF;
  27. color: #fff;
  28. display: flex;
  29. height: 3rem;
  30. font-size: 14px;
  31. align-items: center;
  32. }