progress.less 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252
  1. @media print {
  2. .no-print {
  3. display: none;
  4. }
  5. .pro-content {
  6. display: flex;
  7. flex-direction: column;
  8. .pc-title {
  9. text-align: center;
  10. font-size: 16px;
  11. font-weight: bold;
  12. margin-bottom: 10px;
  13. color: black;
  14. }
  15. .pc-row {
  16. display: flex;
  17. flex-direction: row;
  18. font-size: 12px;
  19. padding: 0 30px;
  20. .pr-item {
  21. width: 25%;
  22. }
  23. .pr-items {
  24. width: 50%;
  25. }
  26. .pr-itemss {
  27. width: 100%;
  28. }
  29. .pr-item,
  30. .pr-items,
  31. .pr-itemss {
  32. .pi-tit {
  33. font-weight: bold;
  34. color: black;
  35. }
  36. span {
  37. color: black;
  38. font-weight: bold;
  39. }
  40. button {
  41. background: "green";
  42. margin: 0 28px;
  43. span {
  44. color: #fff;
  45. }
  46. }
  47. .pi-record {
  48. text-align: center;
  49. color: #999999;
  50. }
  51. }
  52. }
  53. .p-line {
  54. border-top: 1px dashed #000000A6;
  55. margin: 6px 30px;
  56. }
  57. .pc-tit {
  58. font-size: 14px;
  59. padding: 4px 20px;
  60. margin: 4px 0;
  61. color: #fff;
  62. background: #02a7f0;
  63. }
  64. }
  65. }
  66. .progress {
  67. padding: 30px 0;
  68. .pro-content {
  69. display: flex;
  70. flex-direction: column;
  71. .pc-title {
  72. text-align: center;
  73. font-size: 16px;
  74. font-weight: bold;
  75. margin-bottom: 10px;
  76. color: black;
  77. }
  78. .pc-row {
  79. display: flex;
  80. flex-direction: row;
  81. font-size: 12px;
  82. padding: 0 30px;
  83. .pr-item {
  84. width: 25%;
  85. }
  86. .pr-items {
  87. width: 50%;
  88. }
  89. .pr-itemss {
  90. width: 100%;
  91. }
  92. .pr-item,
  93. .pr-items,
  94. .pr-itemss {
  95. .pi-tit {
  96. font-weight: bold;
  97. color: black;
  98. }
  99. span {
  100. color: black;
  101. font-weight: bold;
  102. }
  103. .ant-radio-wrapper {
  104. span {
  105. color: #000000A6;
  106. font-weight: 400;
  107. }
  108. .ant-input {
  109. border: 0px;
  110. border-bottom: 1px solid #d9d9d9;
  111. border-radius: 0;
  112. }
  113. }
  114. .ant-input {
  115. border: 0px;
  116. border-bottom: 1px solid #d9d9d9;
  117. border-radius: 0;
  118. padding: 0 2px;
  119. height: 100%;
  120. text-align: center;
  121. }
  122. button {
  123. background: green;
  124. margin: 0 28px;
  125. span {
  126. color: #fff;
  127. }
  128. }
  129. .pi-record {
  130. text-align: center;
  131. color: #999999;
  132. }
  133. .ant-radio-inner {
  134. border-radius: 2px;
  135. /* 修改圆角 */
  136. width: 14px;
  137. /* 修改宽度 */
  138. height: 14px;
  139. /* 修改高度 */
  140. }
  141. .ant-radio-checked .ant-radio-inner {
  142. border-color: #1890ff;
  143. /* 修改选中时的边框颜色 */
  144. background: #1890ff;
  145. /* 修改选中时的背景颜色 */
  146. }
  147. .ant-radio-inner::after {
  148. content: "\E632";
  149. /* 使用base64的勾选图标 */
  150. // display: block;
  151. // font-weight: 700;
  152. // font-size: 8px;
  153. // border: 0;
  154. // color: #fff;
  155. // left: 2px;
  156. // top: 3px;
  157. // position: absolute;
  158. -webkit-transform: rotate(45deg) scale(0);
  159. -ms-transform: rotate(45deg) scale(0);
  160. transform: rotate(45deg) scale(0);
  161. position: absolute;
  162. left: 4px;
  163. top: 1px;
  164. display: table;
  165. width: 5px;
  166. height: 8px;
  167. border: 2px solid #fff;
  168. background: #fff;
  169. border-top: 0;
  170. border-left: 0;
  171. content: " ";
  172. -webkit-transition: all .1s cubic-bezier(0.71, -0.46, 0.34, -0.91);
  173. transition: all .1s cubic-bezier(.71,-.46,.88,.6)
  174. }
  175. }
  176. }
  177. .p-line {
  178. border-top: 1px dashed #000000A6;
  179. margin: 6px 30px;
  180. }
  181. .pc-tit {
  182. font-size: 14px;
  183. padding: 5px 20px;
  184. margin: 5px 0;
  185. color: #fff;
  186. background: #02a7f0;
  187. }
  188. }
  189. .pro-bottom {
  190. display: flex;
  191. justify-content: center;
  192. }
  193. }