综合办公系统
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.

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160
  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. ::v-deep .uni-input-input:disabled{
  81. -webkit-text-fill-color: #333333;
  82. }
  83. ::v-deep .uni-textarea-textarea:disabled{
  84. -webkit-text-fill-color: #333333;
  85. }
  86. // 提交按钮
  87. .submit-btn {
  88. border-radius: 8px;
  89. background-color: #007AFF;
  90. font-size: 16px;
  91. }
  92. // 保存按钮
  93. .save-btn {
  94. border-radius: 8px;
  95. background-color: #f9ae3d;
  96. color:#fff;
  97. font-size: 16px;
  98. }
  99. .form-container {
  100. padding: 20px;
  101. background-color: #f8f8f8;
  102. }
  103. .form-title {
  104. margin-bottom: 15px;
  105. text-align: center;
  106. .title-text {
  107. font-size: 20px;
  108. font-weight: bold;
  109. color: #333;
  110. }
  111. .title-line {
  112. width: 50px;
  113. height: 2px;
  114. background-color: #007AFF;
  115. margin: 8px auto;
  116. }
  117. }
  118. .custom-form {
  119. background-color: #fff;
  120. padding: 15px;
  121. border-radius: 12px;
  122. box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
  123. }
  124. .form-item {
  125. margin-bottom: 20px;
  126. /deep/ .uni-forms-item__label {
  127. font-weight: 500;
  128. color: #666;
  129. padding-bottom: 8px;
  130. }
  131. }