incident-substitution.component.less 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162
  1. @import "../../../../../src/theme.less";
  2. .coop span {
  3. display: inline-block;
  4. padding: 0 8px;
  5. cursor: pointer;
  6. position: relative;
  7. }
  8. .modal {
  9. position: fixed;
  10. left: 0;
  11. top: 0;
  12. width: 100%;
  13. height: 100%;
  14. background: rgba(0, 0, 0, 0.4);
  15. z-index: 18;
  16. .ji {
  17. position: absolute;
  18. right: 0px;
  19. top: -3px;
  20. width: 30px;
  21. }
  22. .hospitalTable {
  23. width: 100%;
  24. td {
  25. text-align: center !important;
  26. position: relative;
  27. }
  28. .thead {
  29. background-image: linear-gradient(to right, @bg-start, @bg-end);
  30. th {
  31. text-align: center !important;
  32. color: #fff;
  33. background: transparent;
  34. }
  35. }
  36. }
  37. .modalBody {
  38. width: 442px;
  39. min-height: 220px;
  40. background: #fff;
  41. border-radius: 5px;
  42. padding: 10px 20px;
  43. color: #333;
  44. &.modalBody-search {
  45. width: 480px;
  46. min-height: 250px;
  47. }
  48. .title {
  49. width: 100%;
  50. text-align: center;
  51. font-size: 18px;
  52. position: relative;
  53. i {
  54. position: absolute;
  55. right: 0;
  56. top: 0;
  57. font-size: 20px;
  58. color: #666;
  59. cursor: pointer;
  60. padding: 0 5px;
  61. }
  62. }
  63. .content {
  64. min-height: 117px;
  65. border: 1px solid #e5e9ed;
  66. border-radius: 5px;
  67. overflow: hidden;
  68. margin-top: 12px;
  69. display: flex;
  70. .detail{
  71. width: 366px;
  72. height: 100%;
  73. padding: 16px;
  74. border-right: 1px solid #E9E9E9;
  75. .detailItem{
  76. display: flex;
  77. margin-bottom: 16px;
  78. .name{
  79. width: 5em;
  80. flex-shrink: 0;
  81. }
  82. .value{
  83. flex: 1;
  84. text-align: justify;
  85. }
  86. .thumbs{
  87. display: flex;
  88. align-items: center;
  89. flex-wrap: wrap;
  90. gap: 8px;
  91. .thumb{
  92. width: 64px;
  93. height: 64px;
  94. padding: 4px;
  95. border-radius: 4px;
  96. border: 1px solid rgba(0,0,0,0.15);
  97. img{
  98. max-width: 100%;
  99. height: 100%;
  100. }
  101. }
  102. }
  103. .audio{
  104. width: 264px;
  105. height: 1.5em;
  106. }
  107. }
  108. }
  109. .workingArea{
  110. flex: 1;
  111. height: 100%;
  112. background: #F9FAFB;
  113. .tabs{
  114. height: 44px;
  115. border-bottom: 1px solid #D9D9D9;
  116. display: flex;
  117. align-items: center;
  118. .tab{
  119. flex: 1;
  120. display: flex;
  121. height: 100%;
  122. justify-content: center;
  123. align-items: center;
  124. font-size: #333;
  125. cursor: pointer;
  126. &.active{
  127. color: @primary-color;
  128. border-bottom: 2px solid @primary-color;
  129. }
  130. }
  131. }
  132. }
  133. .knowage{
  134. width: 354px;
  135. height: 100%;
  136. padding: 16px;
  137. border-left: 1px solid #E9E9E9;
  138. .knowageItem{
  139. padding: 16px;
  140. }
  141. .knowageBtns{
  142. text-align: right;
  143. }
  144. }
  145. }
  146. button {
  147. margin-top: 10px;
  148. &.btn {
  149. margin-left: 8px;
  150. }
  151. }
  152. }
  153. }