moduleManager.less 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. .container{
  2. width: 100%;
  3. }
  4. h2{
  5. padding: 11px 10px;
  6. font-size: 16px;
  7. font-weight: 600;
  8. border-bottom: 1px solid #E2E5EF;
  9. }
  10. .main-body{
  11. margin: 20px 40px;
  12. }
  13. .totalSumBox{
  14. margin: 0 0 20px 0;
  15. text-align: right;
  16. .totalSum{
  17. color: red;
  18. }
  19. }
  20. table{
  21. width: 100%;
  22. border:1px solid #E2E5EF;
  23. border-collapse: collapse;/*关键代码*/
  24. thead{
  25. background: #EFF0F9;
  26. }
  27. th,td{
  28. height: 40px;
  29. box-sizing: border-box;
  30. padding: 0 20px;
  31. border:1px solid #E2E5EF;
  32. border-collapse: collapse;/*关键代码*/
  33. }
  34. th{
  35. font-size: 14px;
  36. font-weight: 500;
  37. }
  38. td{
  39. font-size: 14px;
  40. font-weight: 400
  41. }
  42. .moduleNumber{
  43. text-align: center;
  44. }
  45. }
  46. .moduleScore, .totalSum{
  47. text-align: center;
  48. input{
  49. text-align: center ;
  50. height: 30px;
  51. }
  52. }
  53. .saveModuleBox{
  54. margin: 20px 0 0 0;
  55. }
  56. .saveModule{
  57. display: inline-block;
  58. float: right;
  59. background: #5A8EEE;
  60. color:#fff;
  61. padding: 9px 16px;
  62. border-radius: 5px;
  63. cursor: pointer;
  64. }
  65. .tableWrapper{
  66. overflow-y: auto;
  67. }
  68. .mask {
  69. position: fixed;
  70. width: 100%;
  71. height: 100%;
  72. background: #000;
  73. opacity: 0.5;
  74. left: 0;
  75. top: 0;
  76. }
  77. input::-webkit-outer-spin-button,
  78. input::-webkit-inner-spin-button {
  79. -webkit-appearance: none;
  80. }
  81. input[type="number"] {
  82. -moz-appearance: textfield;
  83. }