app.scss 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232
  1. * {
  2. margin: 0;
  3. padding: 0;
  4. box-sizing: border-box;
  5. }
  6. page {
  7. background: #EFEFF4;
  8. }
  9. text {
  10. display: inline-block;
  11. }
  12. button[type="info"] {
  13. color: #ffffff;
  14. background-color: rgba(137, 137, 137, .5);
  15. }
  16. .hc-bg-white {
  17. background-color: white !important;
  18. }
  19. .hc-search-bar {
  20. position: sticky;
  21. top: 0;
  22. right: 0;
  23. left: 0;
  24. background: white;
  25. border-top: 1rpx solid #f7f7f7;
  26. }
  27. .scroll-h-auto .uni-scroll-view .uni-scroll-view-content {
  28. height: auto;
  29. }
  30. .card-actions {
  31. display: flex;
  32. flex-direction: row;
  33. justify-content: space-between;
  34. align-items: center;
  35. height: 80rpx;
  36. border-top: 2rpx #eee solid;
  37. .card-actions-item {
  38. display: flex;
  39. flex-direction: row;
  40. align-items: center;
  41. color: #999999;
  42. .icon {
  43. text-decoration: none;
  44. text-align: center;
  45. font-size: 32rpx;
  46. }
  47. .card-actions-item-text {
  48. font-size: 24rpx;
  49. margin-left: 10rpx;
  50. }
  51. &.border {
  52. padding: 0 8rpx;
  53. border: 2rpx solid;
  54. border-radius: 6rpx;
  55. }
  56. }
  57. }
  58. .card-slot-title {
  59. font-size: 28rpx;
  60. color: #3a3a3a;
  61. padding: 22rpx 0;
  62. }
  63. .text-df {
  64. font-size: 28rpx;
  65. }
  66. .hc-form-item {
  67. display: flex;
  68. align-items: center;
  69. :deep(.uni-forms-item__content) {
  70. display: flex;
  71. align-items: center;
  72. text {
  73. color: #969692;
  74. }
  75. }
  76. .uni-forms-item__error.msg--active {
  77. text {
  78. color: inherit;
  79. }
  80. }
  81. }
  82. .form-item-div {
  83. font-size: 28rpx;
  84. border: 2rpx solid #e5e5e5;
  85. box-sizing: border-box;
  86. border-radius: 8rpx;
  87. padding: 0 20rpx;
  88. position: relative;
  89. display: flex;
  90. align-items: center;
  91. width: 100%;
  92. flex: 1;
  93. height: 60rpx;
  94. }
  95. .hc-report-page {
  96. .uni-card.uni-card--full {
  97. border-right: 0;
  98. .uni-card__content {
  99. padding-left: 0 !important;
  100. padding-right: 0 !important;
  101. }
  102. }
  103. }
  104. .uni-popup, .uni-picker-container{
  105. z-index: 9999999 !important;
  106. }
  107. uni-toast, .uni-mask, .uni-toast {
  108. z-index: 99999999 !important;
  109. }
  110. .hc-popup.uni-popup {
  111. view[name="content"] {
  112. transition: -webkit-transform 900ms ease 0ms, transform 900ms ease 0ms !important;
  113. .uni-popup__wrapper {
  114. padding: 30rpx 40rpx;
  115. padding-top: 40rpx;
  116. border-radius: 40rpx 40rpx 0 0;
  117. background-color: #ffffff !important;
  118. }
  119. }
  120. .hc-popup-content {
  121. position: relative;
  122. padding: 0 24rpx;
  123. .title {
  124. color: #8E8E93;
  125. font-size: 28rpx;
  126. margin-bottom: 38rpx;
  127. text-align: center;
  128. }
  129. .popup-btn::after {
  130. display: none;
  131. }
  132. .popup-btn-bar {
  133. position: relative;
  134. .c1 {
  135. background-color: #554D84;
  136. }
  137. .c2 {
  138. background-color: #EE5B20;
  139. }
  140. .c3 {
  141. background-color: #BFBFBF;
  142. }
  143. .c4 {
  144. background-color: #81B337;
  145. }
  146. }
  147. .popup-btn-bar + .popup-btn-bar {
  148. margin-top: 24rpx;
  149. }
  150. }
  151. }
  152. .nav-bar-white {
  153. background: white;
  154. color: black;
  155. }
  156. .animation-mode {
  157. opacity: 1;
  158. animation-duration: 1s;
  159. animation-iteration-count: 1;
  160. animation-fill-mode: backwards;
  161. backface-visibility: visible;
  162. }
  163. .hc-parting-line {
  164. position: relative;
  165. height: 2rpx;
  166. width: 100%;
  167. background: #f2f1f1;
  168. }
  169. .zb_tooltip__popper {
  170. .more-bar-item {
  171. position: relative;
  172. font-size: 26rpx;
  173. }
  174. .more-bar-item + .more-bar-item {
  175. margin-top: 20rpx;
  176. }
  177. }
  178. uni-modal {
  179. z-index: 99999999 !important;
  180. }
  181. .uni-picker-container .uni-picker-custom {
  182. z-index: 99999999 !important;
  183. }
  184. .uni-modal {
  185. z-index: 999999999 !important;
  186. }
  187. .mt-1px {
  188. margin-top: 1px;
  189. }
  190. .cu-bar {
  191. background: white;
  192. }
  193. .uv-checkbox-group .uv-checkbox .uv-checkbox__icon-wrap {
  194. margin-right: 0;
  195. }
  196. .z-paging-content {
  197. .hc-paging-top-bar {
  198. position: relative;
  199. }
  200. .hc-tabbar-box.hc-paging-bottom-bar {
  201. position: relative;
  202. padding: 28rpx
  203. }
  204. }
  205. .clip-2 {
  206. display: -webkit-box;
  207. -webkit-line-clamp: 2;
  208. -webkit-box-orient: vertical;
  209. overflow: hidden;
  210. text-overflow: ellipsis;
  211. }
  212. .uni-calendar__mask, .uni-calendar__content {
  213. z-index: 9999999 !important;
  214. }