user-info.wxss 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108
  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. page {
  28. background: #F5F5F5;
  29. }
  30. page .user-info {
  31. background: #fff;
  32. padding: 0 40rpx;
  33. }
  34. page .user-info .info-item {
  35. display: -webkit-box;
  36. display: -webkit-flex;
  37. display: flex;
  38. -webkit-box-pack: justify;
  39. -webkit-justify-content: space-between;
  40. justify-content: space-between;
  41. line-height: 100rpx;
  42. position: relative;
  43. }
  44. page .user-info .info-item .avater {
  45. width: 100rpx;
  46. height: 100rpx;
  47. border-radius: 50%;
  48. overflow: hidden;
  49. position: relative;
  50. }
  51. page .user-info .info-item .avater .user {
  52. width: 100%;
  53. height: 100%;
  54. position: absolute;
  55. top: 0;
  56. left: 0;
  57. }
  58. page .user-info .info-item .avater .sim_info_loding {
  59. width: 100%;
  60. height: 100%;
  61. background-color: rgba(0, 0, 0, 0.5);
  62. position: absolute;
  63. top: 0;
  64. left: 0;
  65. }
  66. page .user-info .info-item .avater .sim_info_loding image {
  67. width: 100%;
  68. height: 100%;
  69. position: absolute;
  70. left: 6rpx;
  71. top: 6rpx;
  72. }
  73. page .user-info .info-item .tit {
  74. font-size: 14px;
  75. }
  76. page .user-info .info-item .val {
  77. font-size: 12px;
  78. color: #666;
  79. }
  80. page .user-info .info-item .valinput {
  81. margin-top: 24rpx;
  82. text-align: right;
  83. font-size: 12px;
  84. color: #666;
  85. padding: 10rpx 0;
  86. width: 360rpx;
  87. }
  88. page .user-info .info-item .valinput2 {
  89. background-color: #e1e5ee;
  90. }
  91. page .user-info .info-item .hint {
  92. position: absolute;
  93. top: 40rpx;
  94. right: 220rpx;
  95. font-size: 24rpx;
  96. color: #ff0000;
  97. }
  98. page .user-info .compile {
  99. width: 100%;
  100. margin-top: 40rpx;
  101. height: 60rpx;
  102. line-height: 60rpx;
  103. text-align: center;
  104. background-color: #58C77A;
  105. border-radius: 30rpx;
  106. color: #FFFFFF;
  107. }