incident-ser-message.component.less 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241
  1. @import "../../../../theme.less";
  2. .coop {
  3. button{
  4. color: #333;
  5. }
  6. span,button {
  7. display: inline-block;
  8. padding: 0 8px;
  9. cursor: pointer;
  10. position: relative;
  11. &::after {
  12. content: "|";
  13. position: absolute;
  14. top: 0;
  15. right: 0;
  16. }
  17. &:hover,
  18. &:active {
  19. color: @primary-color;
  20. }
  21. &:nth-last-child(1) {
  22. &::after {
  23. content: "";
  24. }
  25. }
  26. }
  27. }
  28. .tabs{
  29. width: 100%;
  30. height: 56px;
  31. border-bottom: 1px solid #D9D9D9;
  32. display: flex;
  33. align-items: center;
  34. .tab{
  35. width: 100px;
  36. display: flex;
  37. height: 100%;
  38. justify-content: center;
  39. align-items: center;
  40. font-size: #333;
  41. cursor: pointer;
  42. &.active{
  43. color: @primary-color;
  44. border-bottom: 2px solid @primary-color;
  45. }
  46. }
  47. }
  48. .modal {
  49. position: fixed;
  50. left: 0;
  51. top: 0;
  52. width: 100%;
  53. height: 100%;
  54. background: rgba(0, 0, 0, 0.4);
  55. z-index: 999;
  56. .tableWrap{
  57. margin: 0 16px 16px!important;
  58. background: #F9FAFB;
  59. border-radius: 8px;
  60. border: 1px solid #D9D9D9;
  61. width: calc(100% - 32px);
  62. min-height: 501px;
  63. padding: 16px 16px 0;
  64. ::ng-deep .ant-table-body{
  65. margin: 0!important;
  66. }
  67. }
  68. .hospitalTable {
  69. width: 100%;
  70. td {
  71. text-align: center !important;
  72. position: relative;
  73. word-break: break-all;
  74. }
  75. .thead {
  76. background-image: linear-gradient(to right, @bg-start, @bg-end);
  77. th {
  78. text-align: center !important;
  79. color: #fff;
  80. background: transparent;
  81. }
  82. }
  83. }
  84. .ji {
  85. position: absolute;
  86. right: 0px;
  87. top: -3px;
  88. width: 30px;
  89. }
  90. .list-template__top{
  91. div{
  92. text-align: left!important;
  93. }
  94. }
  95. .modalBody {
  96. width: 1315px;
  97. background: #fff;
  98. border-radius: 5px;
  99. padding: 10px 20px;
  100. color: #333;
  101. &.modalBody-search {
  102. width: 480px;
  103. min-height: 250px;
  104. }
  105. .title {
  106. width: 100%;
  107. text-align: center;
  108. font-size: 18px;
  109. position: relative;
  110. i {
  111. position: absolute;
  112. right: 0;
  113. top: 0;
  114. font-size: 20px;
  115. color: #666;
  116. cursor: pointer;
  117. padding: 0 5px;
  118. }
  119. }
  120. .content {
  121. min-height: 117px;
  122. // background: #f9fafb;
  123. border: 1px solid #e5e9ed;
  124. border-radius: 5px;
  125. overflow: hidden;
  126. margin-top: 12px;
  127. display: flex;
  128. flex-direction: column;
  129. justify-content: center;
  130. align-items: center;
  131. &.content-search {
  132. min-height: 147px;
  133. justify-content: start;
  134. .defeat-search {
  135. width: 100%;
  136. height: 52px;
  137. display: flex;
  138. justify-content: center;
  139. align-items: center;
  140. border-bottom: solid 1px #e5e9ed;
  141. em {
  142. color: #666;
  143. font-style: normal;
  144. }
  145. }
  146. .form {
  147. width: 100%;
  148. padding: 0 16px;
  149. .ant-form-item-label,
  150. .ant-form-explain {
  151. text-align: left !important;
  152. }
  153. }
  154. }
  155. div {
  156. text-align: center;
  157. margin: 0;
  158. &.defeat {
  159. color: #333;
  160. font-size: 28px;
  161. }
  162. &.countDown {
  163. font-size: 14px;
  164. color: 666;
  165. em {
  166. font-style: normal;
  167. color: @primary-color;
  168. }
  169. }
  170. &.pagination {
  171. font-size: 14px;
  172. color: #666;
  173. padding-top: 16px;
  174. padding-bottom: 16px;
  175. text-align: right;
  176. }
  177. }
  178. }
  179. button {
  180. margin-top: 10px;
  181. &.btn {
  182. margin-left: 8px;
  183. }
  184. }
  185. }
  186. // 新增
  187. &.add {
  188. .modalBody {
  189. width: 480px;
  190. height: auto;
  191. .content {
  192. width: 100%;
  193. height: auto;
  194. padding: 18px 14px 0 14px;
  195. .addForm {
  196. .ant-form-item {
  197. margin-bottom: 15px;
  198. .ant-form-item-label {
  199. line-height: 0;
  200. }
  201. }
  202. }
  203. .editForm {
  204. .ant-form-item {
  205. margin-bottom: 15px;
  206. .ant-form-item-label {
  207. line-height: 0;
  208. }
  209. }
  210. }
  211. }
  212. button {
  213. &:nth-child(1) {
  214. margin-right: 20px;
  215. }
  216. }
  217. }
  218. }
  219. }