personalData.wxss 3.2 KB

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