综合办公系统
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

global.scss 2.8KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182
  1. .text-center {
  2. text-align: center;
  3. }
  4. .font-13 {
  5. font-size: 13px;
  6. }
  7. .font-12 {
  8. font-size: 12px;
  9. }
  10. .font-11 {
  11. font-size: 11px;
  12. }
  13. .text-grey1 {
  14. color: #888;
  15. }
  16. .text-grey2 {
  17. color: #aaa;
  18. }
  19. .text-justify {
  20. text-align: justify;
  21. }
  22. .list-cell-arrow::before {
  23. content: ' ';
  24. height: 10px;
  25. width: 10px;
  26. border-width: 2px 2px 0 0;
  27. border-color: #c0c0c0;
  28. border-style: solid;
  29. -webkit-transform: matrix(0.5, 0.5, -0.5, 0.5, 0, 0);
  30. transform: matrix(0.5, 0.5, -0.5, 0.5, 0, 0);
  31. position: absolute;
  32. top: 50%;
  33. margin-top: -6px;
  34. right: 30rpx;
  35. }
  36. .list-cell {
  37. position: relative;
  38. width: 100%;
  39. box-sizing: border-box;
  40. background-color: #fff;
  41. color: #333;
  42. padding: 26rpx 30rpx;
  43. }
  44. .list-cell:first-child {
  45. border-radius: 8rpx 8rpx 0 0;
  46. }
  47. .list-cell:last-child {
  48. border-radius: 0 0 8rpx 8rpx;
  49. }
  50. .list-cell::after {
  51. content: '';
  52. position: absolute;
  53. border-bottom: 1px solid #eaeef1;
  54. -webkit-transform: scaleY(0.5) translateZ(0);
  55. transform: scaleY(0.5) translateZ(0);
  56. transform-origin: 0 100%;
  57. bottom: 0;
  58. right: 0;
  59. left: 0;
  60. pointer-events: none;
  61. }
  62. .menu-list {
  63. margin: 15px 15px;
  64. .menu-item-box {
  65. width: 100%;
  66. display: flex;
  67. align-items: center;
  68. .menu-icon {
  69. color: #007AFF;
  70. font-size: 16px;
  71. margin-right: 5px;
  72. }
  73. .text-right {
  74. margin-left: auto;
  75. margin-right: 34rpx;
  76. color: #999;
  77. }
  78. }
  79. }
  80. // 提交按钮
  81. .submit-btn {
  82. border-radius: 8px;
  83. background-color: #007AFF;
  84. font-size: 16px;
  85. }
  86. // 保存按钮
  87. .save-btn {
  88. border-radius: 8px;
  89. background-color: #f9ae3d;
  90. color: #fff;
  91. font-size: 16px;
  92. }
  93. .form-container {
  94. padding: 20px;
  95. background-color: #f8f8f8;
  96. }
  97. .form-title {
  98. margin-bottom: 15px;
  99. text-align: center;
  100. .title-text {
  101. font-size: 20px;
  102. font-weight: bold;
  103. color: #333;
  104. }
  105. .title-line {
  106. width: 50px;
  107. height: 2px;
  108. background-color: #007AFF;
  109. margin: 8px auto;
  110. }
  111. }
  112. .custom-form {
  113. background-color: #fff;
  114. padding: 15px;
  115. border-radius: 12px;
  116. box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
  117. }
  118. .form-item {
  119. margin-bottom: 20px;
  120. ::v-deep .uni-forms-item__label {
  121. font-weight: 500;
  122. color: #666;
  123. padding-bottom: 8px;
  124. }
  125. }
  126. @font-face {
  127. font-family: 'auditor'; // 根据自己用的去重命名字体名
  128. src: url('~@/static/font/auditor.ttf');
  129. }
  130. .auditor {
  131. font-family: 'auditor';
  132. font-size: 20px;
  133. }
  134. ::v-deep .uni-input-input:disabled {
  135. -webkit-text-fill-color: #333333;
  136. }
  137. ::v-deep .uni-textarea-textarea:disabled {
  138. -webkit-text-fill-color: #333333;
  139. }
  140. ::v-deep .uni-data-checklist .checklist-group .checklist-box.is--default.is-checked.is-disable .radio__inner {
  141. opacity: 1 !important;
  142. }
  143. ::v-deep .uni-data-checklist .checklist-group .checklist-box.is--default.is-checked.is-disable .checklist-text {
  144. opacity: 1 !important;
  145. }