addusers.wxss 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  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. .addusers {
  28. width: 100%;
  29. display: flex;
  30. justify-content: center;
  31. }
  32. .addusers .uForm {
  33. margin-top: 44px;
  34. width: 90%;
  35. }
  36. .addusers .uForm .uFormbg {
  37. width: 100%;
  38. padding: 0 20rpx;
  39. margin: 20rpx 0;
  40. background-color: #F7F8FA;
  41. box-sizing: border-box;
  42. }
  43. .addusers .uForm .uFormbg .u-form-item {
  44. padding: 0 10rpx;
  45. }
  46. .hintgroup {
  47. width: 90%;
  48. margin: 20rpx auto;
  49. color: #FF0000;
  50. display: flex;
  51. justify-content: space-around;
  52. }
  53. .submitbtn {
  54. width: 95%;
  55. position: absolute;
  56. bottom: -80rpx;
  57. background-color: #57C878;
  58. color: white;
  59. left: 2.5%;
  60. height: 70rpx;
  61. font-size: 32rpx;
  62. line-height: 70rpx;
  63. }
  64. .pop-up .sheet {
  65. background-color: white;
  66. height: 400rpx;
  67. overflow: hidden;
  68. }
  69. .pop-up .sheet .sheet-text {
  70. height: 80rpx;
  71. }
  72. .pop-up .sheet .sheet-text ._p {
  73. text-align: center;
  74. height: 80rpx;
  75. line-height: 80rpx;
  76. color: black;
  77. font-size: 16px;
  78. }
  79. .pop-up button {
  80. color: black;
  81. position: absolute;
  82. bottom: 0;
  83. width: 100%;
  84. font-size: 16px;
  85. height: 80rpx;
  86. }