21.css 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144
  1. #Content
  2. {
  3. overflow-y:auto;
  4. }
  5. #Content::-webkit-scrollbar {/*滚动条整体样式*/
  6. width: 5px; /*高宽分别对应横竖滚动条的尺寸*/
  7. height: 1px;
  8. }
  9. #Content::-webkit-scrollbar-thumb {/*滚动条里面小方块*/
  10. border-radius: 10px;
  11. -webkit-box-shadow: inset 0 0 5px rgba(0,0,0,0.2);
  12. box-shadow: inset 0 0 5px rgba(0,0,0,0.2);
  13. background-color: #AAAAAA;
  14. }
  15. #Content::-webkit-scrollbar-track {/*滚动条里面轨道*/
  16. -webkit-box-shadow: inset 0 0 5px rgba(0,0,0,0.2);
  17. box-shadow: inset 0 0 5px rgba(0,0,0,0.2);
  18. border-radius: 10px;
  19. background: #EDEDED;
  20. }
  21. .BlockBanner
  22. {
  23. padding: 0px;
  24. border-bottom:#00AE42 1px solid;
  25. width: 100%;
  26. }
  27. .BannerBtns
  28. {
  29. float: right;
  30. display: flex;
  31. width: 140px;
  32. justify-content: space-around;
  33. align-items: center;
  34. height: 40px;
  35. text-align: center;
  36. margin-right: 10px;
  37. }
  38. .BlockBanner a
  39. {
  40. display: inline-block;
  41. background-color:#00AE42;
  42. line-height: 40px;
  43. height: 40px;
  44. padding: 0px 24px;
  45. color: #fff;
  46. }
  47. .PrinterArea
  48. {
  49. padding: 10px;
  50. display: flex;
  51. flex-wrap: wrap;
  52. }
  53. .PrinterBlock
  54. {
  55. width: 160px;
  56. text-align: center;
  57. padding: 10px;
  58. }
  59. .PrinterBlock img
  60. {
  61. width:160px;
  62. height: 160px;
  63. }
  64. .PName
  65. {
  66. font-weight: 700;
  67. }
  68. .pNozzel
  69. {
  70. display: flex;
  71. align-items: center;
  72. justify-content:flex-start;
  73. color: #5A5A5A;
  74. padding-left: 10px;
  75. }
  76. .pNozzel input
  77. {
  78. vertical-align: middle;
  79. margin-right: 5px;
  80. }
  81. /*-----Notice-----*/
  82. #NoticeMask
  83. {
  84. background-color: #000;
  85. position: absolute;
  86. top: 0px;
  87. left: 0px;
  88. right: 0px;
  89. bottom: 0px;
  90. opacity: 0.05;
  91. display: none;
  92. }
  93. #NoticeBody
  94. {
  95. display: none;
  96. width: 400px;
  97. border: 1px solid #000;
  98. border-radius: 4px;
  99. background-color: #fff;
  100. position: absolute;
  101. left: 50%;
  102. top: 200px;
  103. margin-left: -200px;
  104. }
  105. #NoticeBar
  106. {
  107. background-color:#00B35C;
  108. height: 40px;
  109. line-height: 40px;
  110. color: #fff;
  111. text-align: center;
  112. }
  113. #NoticeContent
  114. {
  115. padding: 4mm 10mm;
  116. }
  117. #NoticeBtns
  118. {
  119. margin-top: 4mm;
  120. display: flex;
  121. justify-content:space-around;
  122. }