sendRequest.wxss 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150
  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. .dialogMask.data-v-a1117af8 {
  28. display: flex;
  29. flex-direction: column-reverse;
  30. background-color: rgba(0, 0, 0, 0.3);
  31. width: 750rpx;
  32. flex: 1;
  33. height: 100vh;
  34. -webkit-backdrop-filter: blur(1px);
  35. backdrop-filter: blur(1px);
  36. position: fixed;
  37. left: 0;
  38. top: 0;
  39. z-index: 999;
  40. }
  41. .dialogMask .dialogContent.data-v-a1117af8 {
  42. display: flex;
  43. flex-direction: column;
  44. width: 750rpx;
  45. background-color: #fff;
  46. border-radius: 20rpx 20rpx 0 0;
  47. }
  48. .dialogMask .dialogContent .dialogHead.data-v-a1117af8 {
  49. display: flex;
  50. flex-direction: row;
  51. align-items: center;
  52. justify-content: space-between;
  53. height: 80rpx;
  54. border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  55. width: 750rpx;
  56. }
  57. .dialogMask .dialogContent .dialogHead .title.data-v-a1117af8 {
  58. margin-left: 20rpx;
  59. font-size: 24rpx;
  60. line-height: 28rpx;
  61. height: 28rpx;
  62. color: #333;
  63. }
  64. .dialogMask .dialogContent .dialogHead .fold.data-v-a1117af8 {
  65. width: 20rpx;
  66. height: 20rpx;
  67. margin-right: 20rpx;
  68. }
  69. .dialogMask .dialogContent .scrollList.data-v-a1117af8 {
  70. width: 750rpx;
  71. }
  72. .dialogMask .dialogContent .scrollList .inputRow.data-v-a1117af8 {
  73. width: 750rpx;
  74. padding: 0rpx 20rpx;
  75. position: relative;
  76. }
  77. .dialogMask .dialogContent .scrollList .inputRow .input.data-v-a1117af8 {
  78. width: 710rpx;
  79. border: 1px solid rgba(0, 0, 0, 0.05);
  80. padding-left: 5rpx;
  81. padding-top: 5rpx;
  82. padding-bottom: 5rpx;
  83. padding-right: 50rpx;
  84. font-size: 24rpx;
  85. border-radius: 6rpx;
  86. height: 60rpx;
  87. }
  88. .dialogMask .dialogContent .scrollList .inputRow .textarea.data-v-a1117af8 {
  89. width: 710rpx;
  90. border: 1px solid rgba(0, 0, 0, 0.05);
  91. padding-left: 5rpx;
  92. padding-top: 5rpx;
  93. padding-bottom: 5rpx;
  94. padding-right: 50rpx;
  95. font-size: 24rpx;
  96. border-radius: 6rpx;
  97. height: 140rpx;
  98. }
  99. .dialogMask .dialogContent .scrollList .inputRow .del.data-v-a1117af8 {
  100. position: absolute;
  101. right: 24rpx;
  102. top: 10rpx;
  103. height: 40rpx;
  104. background-color: #fff;
  105. padding: 0 10rpx;
  106. font-size: 24rpx;
  107. color: #999;
  108. line-height: 40rpx;
  109. }
  110. .dialogMask .dialogContent .scrollList .inputRow .method.data-v-a1117af8 {
  111. display: flex;
  112. flex-direction: row;
  113. align-items: center;
  114. }
  115. .dialogMask .dialogContent .scrollList .inputRow .method .methodName.data-v-a1117af8 {
  116. font-size: 24rpx;
  117. color: #333;
  118. }
  119. .dialogMask .dialogContent .scrollList .inputRow .method .unfold.data-v-a1117af8 {
  120. margin-left: 10rpx;
  121. width: 24rpx;
  122. height: 24rpx;
  123. }
  124. .dialogMask .dialogContent .scrollList .sendBtn.data-v-a1117af8 {
  125. width: 710rpx;
  126. margin-left: 20rpx;
  127. margin-top: 30rpx;
  128. margin-bottom: 30rpx;
  129. height: 60rpx;
  130. display: flex;
  131. flex-direction: row;
  132. align-items: center;
  133. justify-content: center;
  134. border-radius: 10rpx;
  135. background-color: #ff2d55;
  136. }
  137. .dialogMask .dialogContent .scrollList .sendBtn.loading.data-v-a1117af8 {
  138. background-color: rgba(255, 45, 85, 0.5);
  139. }
  140. .dialogMask .dialogContent .scrollList .sendBtn .sendBtnText.data-v-a1117af8 {
  141. color: #fff;
  142. font-size: 26rpx;
  143. }
  144. .dialogMask .dialogContent .scrollList .sendBtn .msg.data-v-a1117af8 {
  145. color: #fff;
  146. font-size: 20rpx;
  147. margin-left: 20rpx;
  148. }