personalData.wxss 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126
  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. .wrap .info-wrap.data-v-44ded03a {
  28. background-color: #f8f8f8;
  29. padding-top: 36rpx;
  30. }
  31. .wrap .info-wrap .avatar-container.data-v-44ded03a {
  32. margin: 0 auto;
  33. width: 156rpx;
  34. height: 156rpx;
  35. background: rgba(255, 255, 255, 0.39);
  36. border: 2rpx solid #707070;
  37. border-radius: 50%;
  38. position: relative;
  39. overflow: hidden;
  40. margin-bottom: 36rpx;
  41. }
  42. .wrap .info-wrap .avatar-container .avatar.data-v-44ded03a {
  43. width: 156rpx;
  44. height: 156rpx;
  45. border-radius: 50%;
  46. display: block;
  47. }
  48. .wrap .info-wrap .avatar-container .edit.data-v-44ded03a {
  49. width: 100%;
  50. height: 42rpx;
  51. line-height: 42rpx;
  52. text-align: center;
  53. position: absolute;
  54. bottom: 0;
  55. left: 50%;
  56. -webkit-transform: translateX(-50%);
  57. transform: translateX(-50%);
  58. font-size: 26rpx;
  59. font-family: PingFang SC;
  60. font-weight: 400;
  61. color: #FFFFFF;
  62. background: rgba(0, 0, 0, 0.6);
  63. }
  64. .wrap .info-wrap .uni-list-item-custom.data-v-44ded03a {
  65. display: flex;
  66. justify-content: space-between;
  67. align-items: center;
  68. padding: 12rpx 15px;
  69. padding-left: 15px;
  70. border-bottom: 1px solid #e7e7e7;
  71. }
  72. .wrap .info-wrap .uni-list-item-custom .headline.data-v-44ded03a {
  73. font-size: 14px;
  74. color: #3b4144;
  75. overflow: hidden;
  76. }
  77. .wrap .uni-popup-dialog-wrap.data-v-44ded03a {
  78. margin-top: -180rpx;
  79. }
  80. .wrap .submit-BT.data-v-44ded03a {
  81. width: 424rpx;
  82. height: 72rpx;
  83. line-height: 72rpx;
  84. text-align: center;
  85. position: fixed;
  86. bottom: 120rpx;
  87. left: 50%;
  88. -webkit-transform: translateX(-50%);
  89. transform: translateX(-50%);
  90. background: #3D90F4;
  91. border-radius: 42rpx;
  92. font-size: 32rpx;
  93. font-family: PingFang SC;
  94. font-weight: 400;
  95. color: #FFFFFF;
  96. z-index: 999;
  97. }
  98. .wrap .uni-popup-modal.data-v-44ded03a {
  99. width: 500rpx;
  100. background-color: #fff;
  101. box-shadow: 0 0 6rpx rgba(0, 0, 0, 0.6);
  102. border-radius: 16rpx;
  103. }
  104. .wrap .uni-popup-modal .uni-popup-title.data-v-44ded03a {
  105. color: #000;
  106. font-size: 32rpx;
  107. line-height: 1;
  108. text-align: center;
  109. padding: 30rpx 0;
  110. }
  111. .wrap .uni-popup-modal .uni-popup-content.data-v-44ded03a {
  112. padding: 20rpx 20rpx 80rpx;
  113. }
  114. .wrap .uni-popup-modal .handle-wrap .bt.data-v-44ded03a {
  115. display: inline-block;
  116. width: 50%;
  117. height: 80rpx;
  118. line-height: 60rpx;
  119. color: #333;
  120. font-size: 32rpx;
  121. text-align: center;
  122. }
  123. .wrap .uni-popup-modal .handle-wrap .bt.confirm.data-v-44ded03a {
  124. color: #007aff;
  125. }