common.scss 7.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470
  1. /* common */
  2. body {
  3. font-size: 32rpx;
  4. }
  5. // *:not(input) {
  6. // -webkit-touch-callout: none;
  7. // -webkit-user-select: none;
  8. // -khtml-user-select: none;
  9. // -moz-user-select: none;
  10. // -ms-user-select: none;
  11. // user-select: none;
  12. // }
  13. .border-gray{
  14. border:.5rpx solid #ddd
  15. }
  16. radio,checkbox {
  17. transform: scale(0.7)
  18. }
  19. .inOneLine{
  20. white-space: nowrap;
  21. overflow: hidden;
  22. text-overflow: ellipsis;
  23. }
  24. /* 画面监控引入特殊字体 */
  25. @font-face {
  26. font-family: 'FANDOLFANG-REGULAR'; /* project id 2394829 */
  27. src: url('static/font/FANDOLFANG-REGULAR.OTF');
  28. }
  29. .searchSelect{
  30. position: -webkit-fixed;
  31. position: fixed;
  32. // top: 88rpx;
  33. top: var(--window-top);
  34. z-index: 999;
  35. -webkit-box-flex: 1;
  36. -webkit-flex: 1;
  37. flex: 1;
  38. -webkit-box-orient: vertical;
  39. -webkit-box-direction: normal;
  40. -webkit-flex-direction: column;
  41. flex-direction: column;
  42. overflow: hidden;
  43. background-color: #fff;
  44. width:254rpx;
  45. .search{
  46. min-height:80rpx;
  47. }
  48. .search-form{
  49. border:1px solid #E9E9E9;
  50. height:50rpx;
  51. line-height:50rpx;
  52. .cuIcon-search{
  53. color:#4074E7
  54. }
  55. input{
  56. padding-left:20rpx;
  57. padding-right:0rpx
  58. }
  59. }
  60. .select-item{
  61. padding:12rpx 32rpx;
  62. text-align:center;
  63. border-top:1px solid #E9E9E9;
  64. font-size:28rpx
  65. }
  66. }
  67. /* 九宫格样式 */
  68. .cu-list.grid>.cu-item uni-text {
  69. color: #333;
  70. font-size: 30rpx;
  71. }
  72. .cu-list.menu-avatar>.cu-item>.cu-avatar {
  73. left: 24rpx
  74. }
  75. .cu-list.menu-avatar>.cu-item .action {
  76. width: 132rpx
  77. }
  78. .iconfont.phone {
  79. color:#08BE04!important;
  80. font-size:45rpx;
  81. position:relative;
  82. top:6rpx;
  83. left:10rpx;
  84. }
  85. .iconfont.map{
  86. color:#4074E7!important;
  87. font-size:38rpx;
  88. }
  89. /* 列列表公共样式 */
  90. .processWrapper .cu-avatar {
  91. background-repeat: no-repeat;
  92. background-size: cover;
  93. background-color: #fff
  94. }
  95. .cu-avatar.lg {
  96. width: 90rpx;
  97. height: 90rpx
  98. }
  99. .cu-list.menu-avatar .cu-item {
  100. margin-left: 24rpx;
  101. padding: 30rpx 0;
  102. }
  103. .cu-list.menu-avatar>.cu-item>.cu-avatar {
  104. left: 0
  105. }
  106. .cu-list.menu-avatar>.cu-item .content {
  107. left: 120rpx;
  108. width: 580rpx;
  109. }
  110. .unProcess,.error {
  111. color: #FF4E00
  112. }
  113. .processed ,.online{
  114. color: #08BE04
  115. }
  116. .processing{
  117. color:#D5AC4A
  118. }
  119. /* 页面样式 */
  120. /* 站点列表页 */
  121. /* 筛选框 */
  122. .filter-section {
  123. /* position: fixed; */
  124. /* top: 88rpx; */
  125. width: 100%;
  126. z-index: 9
  127. }
  128. .cu-bar .search-form {
  129. background: #fff;
  130. input,
  131. select,
  132. option{
  133. border:none!important
  134. }
  135. }
  136. .cu-btn {
  137. padding: 0 46rpx;
  138. }
  139. /* 站点列表 */
  140. .site-items {
  141. margin-top:100rpx;
  142. width: 100%;
  143. height: calc(100% - 100rpx);
  144. overflow: scroll
  145. }
  146. .site-items .site-tit {
  147. font-size: 32rpx;
  148. color: #333;
  149. justify-content: space-between;
  150. }
  151. .site-items .cu-avatar {}
  152. /* 新增按钮 */
  153. .plus {
  154. position: fixed;
  155. bottom: 6rpx;
  156. right: 6rpx;
  157. img{
  158. }
  159. }
  160. .ding{
  161. position:fixed;
  162. width:100%;
  163. top: var(--window-top);
  164. // position: sticky;
  165. /* #ifdef H5 */
  166. // top: 44px;
  167. /* #endif */
  168. /* #ifndef H5 */
  169. // top: 0;
  170. /* #endif */
  171. z-index: 999;
  172. flex: 1;
  173. flex-direction: column;
  174. overflow: hidden;
  175. background-color: #ffffff;
  176. }
  177. /* 已处理未处理列表 */
  178. .processList .cu-list.menu-avatar .cu-item {
  179. height: 178rpx;
  180. }
  181. .pro-title {
  182. color: #333;
  183. }
  184. .pro-des,
  185. .pro-date {
  186. font-size: 28rpx;
  187. color: #666;
  188. }
  189. .pro-res {}
  190. .processList {
  191. margin-top:100rpx;
  192. /* position: fixed; */
  193. width: 100%;
  194. height: calc(100% - 100rpx);
  195. overflow-y: scroll;
  196. .cu-form-group{
  197. padding:0;
  198. uni-radio::after, uni-checkbox::after{
  199. content: "";
  200. background-color: transparent;
  201. display: block;
  202. position: absolute;
  203. width: 8px;
  204. height: 8px;
  205. z-index: 999;
  206. top: 0px;
  207. left: 0px;
  208. right: 0;
  209. bottom: 0;
  210. margin: auto;
  211. border-radius: 100px;
  212. border: 7px solid #ffffff !important;
  213. }
  214. uni-radio::before, uni-checkbox::before{
  215. display:none;
  216. }
  217. }
  218. }
  219. /* 已处理未处理详情页样式 */
  220. .timeBox {
  221. height: 88rpx;
  222. background: #EFF4FF;
  223. line-height: 88rpx;
  224. .time {
  225. color: #333
  226. }
  227. }
  228. .info-tit {
  229. color: #4074E7;
  230. line-height: 90rpx;
  231. height: 90rpx;
  232. }
  233. /* // 基本信息 */
  234. .info-content>view {
  235. margin-left: 24rpx;
  236. border-bottom: 1px solid #EDEDED;
  237. line-height: 92rpx;
  238. color: #666;
  239. .checkMore {
  240. color: #4074E7!important
  241. }
  242. }
  243. .info-content view text:first-child {
  244. width: 160rpx;
  245. display: inline-block
  246. }
  247. .info-content view text:last-child {
  248. color:#333
  249. }
  250. .analyse-wrapper {
  251. .top-banner {
  252. width: 100%;
  253. height: 273rpx;
  254. background: url(/static/analyse-bg.png) no-repeat;
  255. background-size:cover;
  256. }
  257. .cu-list.menu-avatar .cu-item{
  258. margin:30rpx 0 0;
  259. margin-left:0;
  260. .cu-avatar{
  261. background-color:rgba(0,0,0,0);
  262. left:26rpx;
  263. }
  264. .content{
  265. left:130rpx;
  266. font-size:32rpx;
  267. }
  268. }
  269. }
  270. .submitBottomBtn {
  271. position: fixed;
  272. width: 100%;
  273. left:0;
  274. bottom: 44rpx;
  275. z-index: 999;
  276. background-color: #ffffff;
  277. }
  278. // 权限新增
  279. .siteItems{
  280. z-index:999;
  281. position:absolute;
  282. border:1px solid #eee;
  283. width:100%;
  284. .site-item{
  285. background:#fff;
  286. padding:10rpx;
  287. font-size:28rpx;
  288. }
  289. }
  290. .selectedBox .cuIcon-close{
  291. position:relative;
  292. top:3rpx;
  293. right:-10rpx;
  294. }
  295. .noResult{
  296. padding:0 20rpx;
  297. font-size:28rpx;
  298. color:#aaa
  299. }
  300. // 已处理未处理详情页样式修复
  301. .dealDetail{
  302. .info-content > uni-view{
  303. display:flex
  304. }
  305. .info-content uni-view uni-text:first-child{
  306. width:24%
  307. }
  308. .info-content uni-view uni-text:last-child{
  309. width:75%;
  310. line-height:auto;
  311. }
  312. .info-content > uni-view{
  313. line-height:50rpx!important;
  314. padding:20rpx 0
  315. }
  316. }
  317. .search-form select{
  318. padding-left:20rpx;
  319. width:100%;
  320. border:none;
  321. outline:none;
  322. color:grey
  323. }
  324. // 监察上报
  325. .appWrapper textarea{
  326. border:1px solid #EDEDED;
  327. padding:10px;
  328. color: #999;
  329. width:500rpx;
  330. }
  331. .cu-form-group {
  332. border-top: 0;
  333. }
  334. input,
  335. select,
  336. option {
  337. line-height: 70rpx;
  338. padding: 0 20rpx;
  339. height: 70rpx;
  340. border: 1px solid #EDEDED;
  341. // width:500rpx!important;
  342. background-color: #fff;
  343. box-sizing: border-box;
  344. appearance: none;
  345. -moz-appearance: none;
  346. -webkit-appearance: none;
  347. color: #999;
  348. }
  349. select {
  350. background: url(./static/arrow.png) no-repeat scroll 98% center;
  351. background-size: 6%;
  352. }
  353. select:focus,
  354. select:active,
  355. select:hover {
  356. outline: none;
  357. }
  358. .form-item {
  359. padding: 0 40rpx;
  360. display: flex;
  361. align-items: top;
  362. margin-bottom: 20rpx;
  363. .title {
  364. width: 170rpx;
  365. position: relative;
  366. .necessary {
  367. color: red;
  368. display: inline-block;
  369. position: absolute;
  370. top: -2rpx;
  371. left: -20rpx;
  372. font-size: 40rpx;
  373. }
  374. }
  375. input,
  376. select,textarea {
  377. width: 500rpx;
  378. font-size: 24rpx;
  379. }
  380. }
  381. // 现场档案新增
  382. .form-item.extraDis .title{
  383. width:65%
  384. }
  385. .checkPos{
  386. position:absolute;
  387. left:0
  388. }