index.less 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. .tableBox{
  2. // height: 690px;
  3. overflow-y: auto;
  4. padding: 30px;
  5. h1{
  6. font-size: 16px;
  7. font-weight: bold;
  8. margin: 10px 0 30px;
  9. text-align: center;
  10. }
  11. }
  12. strong{
  13. font-weight: bold;
  14. }
  15. .textlh{
  16. p{
  17. line-height: 22px;
  18. }
  19. }
  20. .textContent{
  21. margin: 40px 0 30px;
  22. .group{
  23. border-bottom: 4px solid #EBEBEB;
  24. padding-bottom: 10px;
  25. margin-top: 25px;
  26. .item{
  27. display: inline-block;
  28. margin-right: 24px;
  29. }
  30. .recomand{
  31. color:#3B9ED0;
  32. }
  33. .block{
  34. margin-top: 20px;
  35. padding-top: 5px;
  36. }
  37. .redBorder{
  38. border: 1px solid #f00;
  39. }
  40. // .miniName{
  41. // margin-top: 25px;
  42. // }
  43. }
  44. .groupName{
  45. font-size: 14px;
  46. font-weight: bold;
  47. color:#000;
  48. margin: 25px 0;
  49. }
  50. .subTotal{
  51. height: 49px;
  52. line-height: 49px;
  53. border-top: 1px solid #EBEBEB;
  54. text-align: right;
  55. margin-top: 10px;
  56. }
  57. .total{
  58. height: 72px;
  59. line-height: 72px;
  60. border-bottom: 10px solid #EBEBEB;
  61. text-align: right;
  62. .totalBtn{
  63. display: inline-block;
  64. width: 64px;
  65. height: 32px;
  66. line-height: 32px;
  67. color:#3B9ED0;
  68. border: 1px solid #3B9ED0;
  69. border-radius: 4px;
  70. margin-left: 40px;
  71. text-align: center;
  72. cursor: pointer;
  73. }
  74. }
  75. }
  76. .printShow {
  77. display: none;
  78. }
  79. @media print {
  80. .printShow {
  81. display: block;
  82. }
  83. }