血透系统PC前端

index.scss 4.1KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304
  1. @import './variables.scss';
  2. @import './mixin.scss';
  3. @import './transition.scss';
  4. @import './element-ui.scss';
  5. @import './sidebar.scss';
  6. @import './btn.scss';
  7. @import './reset.scss';
  8. body {
  9. height: 100%;
  10. -moz-osx-font-smoothing: grayscale;
  11. -webkit-font-smoothing: antialiased;
  12. text-rendering: optimizeLegibility;
  13. font-family: Helvetica Neue, Helvetica, PingFang SC, Hiragino Sans GB, Microsoft YaHei, Arial, sans-serif;
  14. }
  15. ul {
  16. padding: 0;
  17. }
  18. label {
  19. // font-weight: 700;
  20. }
  21. html {
  22. height: 100%;
  23. box-sizing: border-box;
  24. }
  25. li {
  26. list-style: none;
  27. }
  28. #app {
  29. height: 100%;
  30. }
  31. *,
  32. *:before,
  33. *:after {
  34. box-sizing: inherit;
  35. }
  36. .no-padding {
  37. padding: 0px !important;
  38. }
  39. .padding-content {
  40. padding: 4px 0;
  41. }
  42. a:focus,
  43. a:active {
  44. outline: none;
  45. }
  46. a,
  47. a:focus,
  48. a:hover {
  49. cursor: pointer;
  50. color: inherit;
  51. text-decoration: none;
  52. }
  53. div:focus {
  54. outline: none;
  55. }
  56. .fr {
  57. float: right;
  58. }
  59. .fl {
  60. float: left;
  61. }
  62. .pr-5 {
  63. padding-right: 5px;
  64. }
  65. .pl-5 {
  66. padding-left: 5px;
  67. }
  68. .block {
  69. display: block;
  70. }
  71. .pointer {
  72. cursor: pointer;
  73. }
  74. .inlineBlock {
  75. display: block;
  76. }
  77. .clearfix {
  78. &:after {
  79. visibility: hidden;
  80. display: block;
  81. font-size: 0;
  82. content: " ";
  83. clear: both;
  84. height: 0;
  85. }
  86. }
  87. code {
  88. background: #eef1f6;
  89. padding: 15px 16px;
  90. margin-bottom: 20px;
  91. display: block;
  92. line-height: 36px;
  93. font-size: 15px;
  94. font-family: "Source Sans Pro", "Helvetica Neue", Arial, sans-serif;
  95. a {
  96. color: #337ab7;
  97. cursor: pointer;
  98. &:hover {
  99. color: rgb(32, 160, 255);
  100. }
  101. }
  102. }
  103. .warn-content {
  104. background: rgba(66, 185, 131, .1);
  105. border-radius: 2px;
  106. padding: 16px;
  107. padding: 1rem;
  108. line-height: 1.6rem;
  109. word-spacing: .05rem;
  110. a {
  111. color: #42b983;
  112. font-weight: 600;
  113. }
  114. }
  115. //main-container全局样式
  116. .app-container {
  117. padding: 20px;
  118. }
  119. .components-container {
  120. margin: 30px 50px;
  121. position: relative;
  122. }
  123. .pagination-container {
  124. margin-top: 30px;
  125. }
  126. .text-center {
  127. text-align: center
  128. }
  129. .sub-navbar {
  130. height: 50px;
  131. line-height: 50px;
  132. position: relative;
  133. width: 100%;
  134. text-align: right;
  135. padding-right: 20px;
  136. transition: 600ms ease position;
  137. background: linear-gradient(90deg, rgba(32, 182, 249, 1) 0%, rgba(32, 182, 249, 1) 0%, rgba(33, 120, 241, 1) 100%, rgba(33, 120, 241, 1) 100%);
  138. .subtitle {
  139. font-size: 20px;
  140. color: #fff;
  141. }
  142. &.draft {
  143. background: #d0d0d0;
  144. }
  145. &.deleted {
  146. background: #d0d0d0;
  147. }
  148. }
  149. .link-type,
  150. .link-type:focus {
  151. color: #337ab7;
  152. cursor: pointer;
  153. &:hover {
  154. color: rgb(32, 160, 255);
  155. }
  156. }
  157. .filter-container {
  158. padding-bottom: 10px;
  159. .filter-item {
  160. display: inline-block;
  161. vertical-align: middle;
  162. margin-bottom: 10px;
  163. }
  164. }
  165. //refine vue-multiselect plugin
  166. .multiselect {
  167. line-height: 16px;
  168. }
  169. .multiselect--active {
  170. z-index: 1000 !important;
  171. }
  172. .DetailsTit {
  173. border-bottom: 1px #e5e5e5 solid;
  174. text-align: center;
  175. span {
  176. height: 50px;
  177. line-height: 50px;
  178. color: $main-color;
  179. position: relative;
  180. font-size: 16px;
  181. width: 120px;
  182. margin: 0 auto;
  183. display: inline-block;
  184. font-weight: 700;
  185. &::before,
  186. &::after {
  187. content: '';
  188. display: block;
  189. position: absolute;
  190. top: 23px;
  191. width: 10px;
  192. height: 2px;
  193. background: $main-color;
  194. }
  195. &::before {
  196. left: 10px;
  197. }
  198. &::after {
  199. right: 10px;
  200. }
  201. }
  202. }
  203. .middleLine {
  204. background: #f5f7fa;
  205. height: 18px;
  206. }
  207. .plate {
  208. margin: 12px 100px 0 100px;
  209. padding-bottom: 14px;
  210. @include box-sizing;
  211. @include display-flex;
  212. @include align-items-center;
  213. @include justify-content-between;
  214. // border-bottom: 1px #e6e6e6 dashed;
  215. ul {
  216. li {
  217. font-size: 15px;
  218. line-height: 30px;
  219. label{
  220. color:#34495e;
  221. }
  222. .content {
  223. color: $main-color;
  224. }
  225. .unit {
  226. color: $font-color;
  227. }
  228. }
  229. }
  230. }
  231. .note {
  232. font-size: 14px;
  233. color: $pgh-color;
  234. margin: 0 100px;
  235. line-height: 50px;
  236. border-top: 1px #e5e5e5 dashed;
  237. span {
  238. color: $main-color;
  239. }
  240. }
  241. .el-dialog__body{
  242. padding: 10px 20px !important;
  243. }
  244. .NoData{
  245. width: 200px;
  246. margin: 0 auto;
  247. img{
  248. width: 100%;
  249. }
  250. }