useroperation.wxss 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121
  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. .useroperations {
  28. width: 100%;
  29. display: -webkit-box;
  30. display: -webkit-flex;
  31. display: flex;
  32. -webkit-box-pack: center;
  33. -webkit-justify-content: center;
  34. justify-content: center;
  35. }
  36. .useroperations .uForm {
  37. margin-top: 44px;
  38. width: 95%;
  39. }
  40. .useroperations .uForm .uFormbg {
  41. width: 100%;
  42. background-color: #f3f3f3;
  43. margin-top: 20rpx;
  44. }
  45. .useroperations .uForm .tishi {
  46. text-align: center;
  47. font-size: 24rpx;
  48. color: red;
  49. }
  50. .useroperations .uForm .u-form-item {
  51. width: 95%;
  52. height: 80rpx;
  53. margin: 0 auto;
  54. padding: 5rpx 0;
  55. }
  56. .useroperations .uForm .uuinput {
  57. background-color: white;
  58. }
  59. .operation_group .group_one .group_one_top {
  60. width: 90%;
  61. margin: 20rpx auto;
  62. display: -webkit-box;
  63. display: -webkit-flex;
  64. display: flex;
  65. -webkit-justify-content: space-around;
  66. justify-content: space-around;
  67. }
  68. .operation_group .group_one .group_one_top button {
  69. width: 23%;
  70. height: 60rpx;
  71. line-height: 60rpx;
  72. background-color: #57C878;
  73. color: white;
  74. font-size: 24rpx;
  75. }
  76. .operation_group .group_one .group_one_bot {
  77. width: 90%;
  78. margin: 20rpx auto;
  79. }
  80. .operation_group .group_one .group_one_bot button {
  81. height: 60rpx;
  82. line-height: 60rpx;
  83. background-color: #57C878;
  84. color: white;
  85. font-size: 30rpx;
  86. }
  87. .operation_group .group_two {
  88. width: 90%;
  89. margin: 20rpx auto;
  90. }
  91. .operation_group .group_two button {
  92. background-color: #57C878;
  93. color: white;
  94. height: 80rpx;
  95. line-height: 80rpx;
  96. font-size: 30rpx;
  97. }
  98. .pop-up .sheet {
  99. background-color: white;
  100. height: 400rpx;
  101. overflow: hidden;
  102. }
  103. .pop-up .sheet .sheet-text {
  104. height: 80rpx;
  105. }
  106. .pop-up .sheet .sheet-text ._p {
  107. text-align: center;
  108. height: 80rpx;
  109. line-height: 80rpx;
  110. color: black;
  111. font-size: 16px;
  112. }
  113. .pop-up button {
  114. color: black;
  115. position: absolute;
  116. bottom: 0;
  117. width: 100%;
  118. font-size: 16px;
  119. height: 80rpx;
  120. }