国外MOSE官网
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.

175 lines
3.9 KiB

3 days ago
  1. @charset "UTF-8";
  2. /**
  3. * 这里是uni-app内置的常用样式变量
  4. *
  5. * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
  6. * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
  7. *
  8. */
  9. /**
  10. * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
  11. *
  12. * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
  13. */
  14. /* 颜色变量 */
  15. /* 行为相关颜色 */
  16. /* 文字基本颜色 */
  17. /* 背景颜色 */
  18. /* 边框颜色 */
  19. /* 尺寸变量 */
  20. /* 文字尺寸 */
  21. /* 图片尺寸 */
  22. /* Border Radius */
  23. /* 水平间距 */
  24. /* 垂直间距 */
  25. /* 透明度 */
  26. /* 文章场景相关 */
  27. .publish-page.data-v-48dc3ccc {
  28. min-height: 100vh;
  29. background-color: #F3F7F8;
  30. }
  31. .tip-container.data-v-48dc3ccc {
  32. background-color: #E3F2FD;
  33. padding: 24rpx 32rpx;
  34. margin: 20rpx;
  35. border-radius: 12rpx;
  36. display: flex;
  37. align-items: flex-start;
  38. gap: 16rpx;
  39. border-left: 6rpx solid #007AFF;
  40. }
  41. .tip-text.data-v-48dc3ccc {
  42. font-size: 26rpx;
  43. color: #1976D2;
  44. line-height: 1.5;
  45. flex: 1;
  46. }
  47. .main-container.data-v-48dc3ccc {
  48. flex: 1;
  49. margin: 0 20rpx;
  50. background-color: white;
  51. border-radius: 16rpx;
  52. padding: 32rpx;
  53. box-shadow: 0 2rpx 12rpx rgba(0, 0, 0, 0.05);
  54. }
  55. .title-section.data-v-48dc3ccc {
  56. margin-bottom: 32rpx;
  57. display: flex;
  58. align-items: center;
  59. gap: 16rpx;
  60. }
  61. .vertical-line.data-v-48dc3ccc {
  62. width: 8rpx;
  63. height: 40rpx;
  64. border-radius: 4rpx;
  65. }
  66. .vertical-line.red.data-v-48dc3ccc {
  67. background-color: #FF4757;
  68. }
  69. .vertical-line.blue.data-v-48dc3ccc {
  70. background-color: #007AFF;
  71. }
  72. .title-text.data-v-48dc3ccc {
  73. font-size: 36rpx;
  74. font-weight: bold;
  75. color: #333;
  76. }
  77. .message-section.data-v-48dc3ccc {
  78. margin-bottom: 40rpx;
  79. }
  80. .section-label.data-v-48dc3ccc {
  81. font-size: 28rpx;
  82. color: #666;
  83. display: block;
  84. margin-bottom: 20rpx;
  85. }
  86. .textarea-container.data-v-48dc3ccc {
  87. position: relative;
  88. background-color: #f5f5f5;
  89. border-radius: 12rpx;
  90. padding: 24rpx;
  91. }
  92. .message-textarea.data-v-48dc3ccc {
  93. width: 100%;
  94. min-height: 300rpx;
  95. font-size: 30rpx;
  96. color: #333;
  97. background-color: transparent;
  98. border: none;
  99. outline: none;
  100. resize: none;
  101. line-height: 1.6;
  102. }
  103. .char-count.data-v-48dc3ccc {
  104. position: absolute;
  105. bottom: 16rpx;
  106. right: 16rpx;
  107. }
  108. .count-text.data-v-48dc3ccc {
  109. font-size: 24rpx;
  110. color: #999;
  111. }
  112. .image-section.data-v-48dc3ccc {
  113. margin-bottom: 40rpx;
  114. }
  115. .image-grid.data-v-48dc3ccc {
  116. display: flex;
  117. flex-wrap: wrap;
  118. gap: 16rpx;
  119. }
  120. .image-item.data-v-48dc3ccc {
  121. position: relative;
  122. width: 200rpx;
  123. height: 200rpx;
  124. border-radius: 12rpx;
  125. overflow: hidden;
  126. }
  127. .preview-image.data-v-48dc3ccc {
  128. width: 100%;
  129. height: 100%;
  130. }
  131. .delete-btn.data-v-48dc3ccc {
  132. position: absolute;
  133. top: 8rpx;
  134. right: 8rpx;
  135. width: 40rpx;
  136. height: 40rpx;
  137. background-color: rgba(0, 0, 0, 0.6);
  138. border-radius: 50%;
  139. display: flex;
  140. align-items: center;
  141. justify-content: center;
  142. }
  143. .add-image-btn.data-v-48dc3ccc {
  144. width: 200rpx;
  145. height: 200rpx;
  146. border: 2rpx dashed #ddd;
  147. border-radius: 12rpx;
  148. display: flex;
  149. flex-direction: column;
  150. align-items: center;
  151. justify-content: center;
  152. gap: 12rpx;
  153. background-color: #fafafa;
  154. transition: all 0.3s ease;
  155. }
  156. .add-image-btn.data-v-48dc3ccc:active {
  157. background-color: #f0f0f0;
  158. border-color: #007AFF;
  159. }
  160. .add-text.data-v-48dc3ccc {
  161. font-size: 24rpx;
  162. color: #999;
  163. }
  164. .submit-container.data-v-48dc3ccc {
  165. padding: 32rpx 40rpx;
  166. margin-top: 60rpx;
  167. border-top: 1rpx solid #f0f0f0;
  168. }
  169. .submit-btn.data-v-48dc3ccc {
  170. width: 100%;
  171. height: 88rpx;
  172. border-radius: 44rpx;
  173. font-size: 32rpx;
  174. font-weight: bold;
  175. }