user_profile.wxss 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  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. .user-profile {
  17. min-height: calc(100vh - env(safe-area-inset-bottom));
  18. display: flex;
  19. flex-direction: column;
  20. }
  21. .user-profile .content {
  22. border-top-left-radius: 28rpx;
  23. border-top-right-radius: 28rpx;
  24. }
  25. .user-profile .content .user-avatar-box {
  26. padding: 30rpx;
  27. }
  28. .user-profile .content .user-avatar-box .user-avatar {
  29. width: 120rpx;
  30. height: 120rpx;
  31. border-radius: 50%;
  32. }
  33. .user-profile .content .row-info {
  34. padding: 30rpx 20rpx;
  35. }
  36. .user-profile .content .row-info .label {
  37. width: 180rpx;
  38. }
  39. .user-profile .content .row-info .bd-btn {
  40. padding: 8rpx 24rpx;
  41. border: 1px solid #FF2C3C;
  42. color: #FF2C3C;
  43. }
  44. .user-profile .content .bdb-line {
  45. border-bottom: 1rpx solid #e5e5e5;
  46. }
  47. .user-profile .license {
  48. margin-top: 80rpx;
  49. color: #a7a7a7;
  50. }
  51. .user-profile .save-btn {
  52. margin: 40rpx 54rpx 0;
  53. height: 88rpx;
  54. border-radius: 10rpx;
  55. }
  56. .user-profile .modify-container {
  57. padding: 30rpx;
  58. width: 620rpx;
  59. border-radius: 30rpx;
  60. }
  61. .user-profile .modify-container .title {
  62. padding: 26rpx 0rpx;
  63. }
  64. .user-profile .modify-container .btn {
  65. height: 80rpx;
  66. border-radius: 20rpx;
  67. margin: 60rpx 50rpx 0;
  68. }
  69. .psw-wrapper {
  70. width: 548rpx;
  71. height: 344rpx;
  72. background-color: #ffffff;
  73. }
  74. .psw-wrapper .psw-title {
  75. width: 100%;
  76. font-size: 35rpx;
  77. padding: 43rpx 0 49rpx;
  78. text-align: center;
  79. font-weight: 800;
  80. }
  81. .psw-wrapper .psw-ipt {
  82. display: block;
  83. background-color: #dce3ed;
  84. height: 90rpx;
  85. width: 464rpx;
  86. padding-left: 30rpx;
  87. margin: 0 auto;
  88. font-size: 80rpx;
  89. }
  90. .psw-wrapper .psw-btn text {
  91. display: inline-block;
  92. text-align: center;
  93. width: 50%;
  94. padding-top: 29rpx;
  95. font-size: 35rpx;
  96. }
  97. .psw-wrapper .psw-qd {
  98. color: #32c6ff;
  99. }