step1.css 781B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. .container {
  2. }
  3. .container .content {
  4. width: 100%;
  5. height: 100%;
  6. }
  7. .table {
  8. width: 700px;
  9. height: calc(100% - 180px);
  10. margin: 36px auto 0;
  11. overflow: auto;
  12. }
  13. table {
  14. width: 100%;
  15. border: 1px solid #e1e1e1;
  16. /* border-collapse: collapse; */
  17. border-collapse: separate;
  18. border-spacing: 0;
  19. border-radius:5px;
  20. overflow: hidden;
  21. }
  22. .table tr {
  23. height: 34px;
  24. text-align: center;
  25. }
  26. th, td {
  27. border-bottom: 1px solid #f7f7f7;
  28. width: 30%;
  29. }
  30. th:first-child, td:first-child, th:last-child, td:last-child {
  31. width: 20%;
  32. }
  33. th {
  34. font-weight: normal;
  35. background-color: #f7f7f7;
  36. /* color: white; */
  37. font-weight: 600;
  38. }
  39. .catalogue-table {
  40. margin-top: 20px;
  41. }
  42. .control {
  43. margin: 36px auto;
  44. text-align: center;
  45. }
  46. .control .btn {
  47. margin: 0 10px;
  48. }