index.css 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182
  1. /**
  2. * 这里是uni-app内置的常用样式变量
  3. *
  4. * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
  5. * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
  6. *
  7. */
  8. /**
  9. * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
  10. *
  11. * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
  12. */
  13. /* 颜色变量 */
  14. /* 行为相关颜色 */
  15. /* 文字基本颜色 */
  16. /* 背景颜色 */
  17. /* 边框颜色 */
  18. /* 尺寸变量 */
  19. /* 文字尺寸 */
  20. /* 图片尺寸 */
  21. /* Border Radius */
  22. /* 水平间距 */
  23. /* 垂直间距 */
  24. /* 透明度 */
  25. /* 文章场景相关 */
  26. .uni-popup-dialog[data-v-d78c88b7] {
  27. width: 300px;
  28. border-radius: 11px;
  29. background-color: #fff;
  30. }
  31. .uni-dialog-title[data-v-d78c88b7] {
  32. display: flex;
  33. flex-direction: row;
  34. justify-content: center;
  35. padding-top: 25px;
  36. }
  37. .uni-dialog-title-text[data-v-d78c88b7] {
  38. font-size: 16px;
  39. font-weight: 500;
  40. }
  41. .uni-dialog-content[data-v-d78c88b7] {
  42. display: flex;
  43. flex-direction: row;
  44. justify-content: center;
  45. align-items: center;
  46. padding: 20px;
  47. }
  48. .uni-dialog-content-text[data-v-d78c88b7] {
  49. font-size: 14px;
  50. color: #6C6C6C;
  51. }
  52. .uni-dialog-button-group[data-v-d78c88b7] {
  53. display: flex;
  54. flex-direction: row;
  55. border-top-color: #f5f5f5;
  56. border-top-style: solid;
  57. border-top-width: 1px;
  58. }
  59. .uni-dialog-button[data-v-d78c88b7] {
  60. display: flex;
  61. flex: 1;
  62. flex-direction: row;
  63. justify-content: center;
  64. align-items: center;
  65. height: 45px;
  66. }
  67. .uni-border-left[data-v-d78c88b7] {
  68. border-left-color: #f0f0f0;
  69. border-left-style: solid;
  70. border-left-width: 1px;
  71. }
  72. .uni-dialog-button-text[data-v-d78c88b7] {
  73. font-size: 16px;
  74. color: #333;
  75. }
  76. .uni-button-color[data-v-d78c88b7] {
  77. color: #007aff;
  78. }
  79. .uni-dialog-input[data-v-d78c88b7] {
  80. flex: 1;
  81. font-size: 14px;
  82. border: 1px #eee solid;
  83. height: 40px;
  84. padding: 0 10px;
  85. border-radius: 5px;
  86. color: #555;
  87. }
  88. .uni-popup__success[data-v-d78c88b7] {
  89. color: #4cd964;
  90. }
  91. .uni-popup__warn[data-v-d78c88b7] {
  92. color: #f0ad4e;
  93. }
  94. .uni-popup__error[data-v-d78c88b7] {
  95. color: #dd524d;
  96. }
  97. .uni-popup__info[data-v-d78c88b7] {
  98. color: #909399;
  99. }
  100. /**
  101. * 这里是uni-app内置的常用样式变量
  102. *
  103. * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
  104. * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
  105. *
  106. */
  107. /**
  108. * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
  109. *
  110. * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
  111. */
  112. /* 颜色变量 */
  113. /* 行为相关颜色 */
  114. /* 文字基本颜色 */
  115. /* 背景颜色 */
  116. /* 边框颜色 */
  117. /* 尺寸变量 */
  118. /* 文字尺寸 */
  119. /* 图片尺寸 */
  120. /* Border Radius */
  121. /* 水平间距 */
  122. /* 垂直间距 */
  123. /* 透明度 */
  124. /* 文章场景相关 */
  125. .uni-popup[data-v-4dd3c44b] {
  126. position: fixed;
  127. z-index: 99;
  128. }
  129. .uni-popup.top[data-v-4dd3c44b], .uni-popup.left[data-v-4dd3c44b], .uni-popup.right[data-v-4dd3c44b] {
  130. top: 0;
  131. }
  132. .uni-popup .uni-popup__wrapper[data-v-4dd3c44b] {
  133. display: block;
  134. position: relative;
  135. /* iphonex 等安全区设置,底部安全区适配 */
  136. }
  137. .uni-popup .uni-popup__wrapper.left[data-v-4dd3c44b], .uni-popup .uni-popup__wrapper.right[data-v-4dd3c44b] {
  138. padding-top: 0;
  139. flex: 1;
  140. }
  141. .fixforpc-z-index[data-v-4dd3c44b] {
  142. z-index: 999;
  143. }
  144. .fixforpc-top[data-v-4dd3c44b] {
  145. top: 0;
  146. }
  147. .content {
  148. display: flex;
  149. flex-direction: column;
  150. align-items: center;
  151. justify-content: center;
  152. }
  153. .user-v {
  154. background: rgba(202, 202, 202, 0.5);
  155. border-radius: 50%;
  156. margin-top: 6.25rem;
  157. margin-left: auto;
  158. margin-right: auto;
  159. margin-bottom: 1.125rem;
  160. height: 4.375rem;
  161. width: 4.375rem;
  162. display: flex;
  163. justify-content: center;
  164. align-items: center;
  165. overflow: hidden;
  166. }
  167. .user-icon {
  168. height: 3.125rem;
  169. width: 3.125rem;
  170. }
  171. .text-area {
  172. display: flex;
  173. justify-content: center;
  174. }
  175. .title {
  176. font-size: 1.125rem;
  177. color: #8f8f94;
  178. }
  179. .login-btn {
  180. margin-top: 0.625rem;
  181. }