personInfo.wxss 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141
  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. .content.data-v-2a25b94e {
  27. padding-top: 20rpx;
  28. border-top: 1px solid #F5F6FA;
  29. }
  30. .info-item.data-v-2a25b94e {
  31. height: 104rpx;
  32. background: #FFFFFF;
  33. padding: 0 30rpx;
  34. display: flex;
  35. align-items: center;
  36. justify-content: space-between;
  37. border-bottom: 1px solid #F5F6FA;
  38. }
  39. .info-item.data-v-2a25b94e:last-child {
  40. border-bottom: none;
  41. }
  42. .info-item .label.data-v-2a25b94e {
  43. min-width: 200rpx;
  44. font-size: 30rpx;
  45. font-family: PingFang SC;
  46. font-weight: 400;
  47. color: #0F1826;
  48. }
  49. .info-item .right.data-v-2a25b94e {
  50. display: flex;
  51. align-items: center;
  52. justify-content: center;
  53. }
  54. .info-item .right .text.data-v-2a25b94e {
  55. font-size: 30rpx;
  56. font-family: PingFang SC;
  57. font-weight: 400;
  58. color: #0F1826;
  59. }
  60. .info-item .right .image.data-v-2a25b94e {
  61. min-width: 30rpx;
  62. margin-left: 10rpx;
  63. width: 30rpx;
  64. height: 30rpx;
  65. }
  66. .info-item .right .input.data-v-2a25b94e {
  67. text-align: right;
  68. font-size: 30rpx;
  69. font-family: PingFang SC;
  70. font-weight: 400;
  71. color: #0F1826;
  72. }
  73. .info-item .right .wx-head.data-v-2a25b94e {
  74. position: absolute;
  75. margin-left: 10rpx;
  76. width: 30rpx;
  77. height: 30rpx;
  78. opacity: 0;
  79. }
  80. .info-item .head.data-v-2a25b94e {
  81. border-radius: 50%;
  82. width: 80rpx;
  83. height: 80rpx;
  84. }
  85. .info-item .arrow.data-v-2a25b94e {
  86. width: 30rpx;
  87. height: 30rpx;
  88. }
  89. .info-item .text.data-v-2a25b94e {
  90. font-size: 30rpx;
  91. font-family: PingFang SC;
  92. font-weight: 400;
  93. color: #0F1826;
  94. }
  95. .info-item .input.data-v-2a25b94e {
  96. text-align: right;
  97. font-size: 30rpx;
  98. font-family: PingFang SC;
  99. font-weight: 400;
  100. color: #0F1826;
  101. }
  102. .info-item.password.data-v-2a25b94e {
  103. margin-top: 20rpx;
  104. }
  105. .info-item.password .right.data-v-2a25b94e {
  106. display: flex;
  107. align-items: center;
  108. }
  109. .info-item.password .right .text.data-v-2a25b94e {
  110. font-size: 30rpx;
  111. font-family: PingFang SC;
  112. font-weight: 400;
  113. color: #0F1826;
  114. margin-right: 15rpx;
  115. }
  116. .btn-box.data-v-2a25b94e {
  117. height: 140rpx;
  118. z-index: 9999;
  119. width: 100%;
  120. padding: 0rpx 30rpx;
  121. position: fixed;
  122. bottom: 0;
  123. left: 0;
  124. box-sizing: border-box;
  125. background-color: #ffffff;
  126. display: flex;
  127. align-items: center;
  128. justify-content: center;
  129. }
  130. .btn-box .btn.data-v-2a25b94e {
  131. width: 100%;
  132. height: 88rpx;
  133. line-height: 88rpx;
  134. text-align: center;
  135. font-size: 34rpx;
  136. font-family: PingFang SC;
  137. font-weight: 400;
  138. color: #FFFFFF;
  139. background: #C39A58;
  140. border-radius: 10rpx;
  141. }