profile.css 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133
  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. body {
  27. background-color: #f4f4f4;
  28. }
  29. .viewport {
  30. display: flex;
  31. flex-direction: column;
  32. height: 100%;
  33. background-image: url(https://pcapi-xiaotuxian-front-devtest.itheima.net/miniapp/images/order_bg.png);
  34. background-size: auto 13.125rem;
  35. background-repeat: no-repeat;
  36. }
  37. .navbar {
  38. position: relative;
  39. }
  40. .navbar .title {
  41. height: 40px;
  42. display: flex;
  43. justify-content: center;
  44. align-items: center;
  45. font-size: 16px;
  46. font-weight: 500;
  47. color: #fff;
  48. }
  49. .navbar .back {
  50. position: absolute;
  51. height: 40px;
  52. width: 40px;
  53. left: 0;
  54. font-size: 20px;
  55. color: #fff;
  56. display: flex;
  57. justify-content: center;
  58. align-items: center;
  59. }
  60. .avatar {
  61. text-align: center;
  62. width: 100%;
  63. height: 8.125rem;
  64. display: flex;
  65. flex-direction: column;
  66. justify-content: center;
  67. align-items: center;
  68. }
  69. .avatar .image {
  70. width: 5rem;
  71. height: 5rem;
  72. border-radius: 50%;
  73. background-color: #eee;
  74. }
  75. .avatar .text {
  76. display: block;
  77. padding-top: 0.625rem;
  78. line-height: 1;
  79. font-size: 0.8125rem;
  80. color: #fff;
  81. }
  82. .form {
  83. background-color: #f4f4f4;
  84. }
  85. .form-content {
  86. margin: 0.625rem 0.625rem 0;
  87. padding: 0 0.625rem;
  88. border-radius: 0.3125rem;
  89. background-color: #fff;
  90. }
  91. .form-item {
  92. display: flex;
  93. height: 3rem;
  94. line-height: 1.4375rem;
  95. padding: 0.78125rem 0.3125rem;
  96. background-color: #fff;
  97. font-size: 0.875rem;
  98. border-bottom: 0.03125rem solid #ddd;
  99. }
  100. .form-item:last-child {
  101. border: none;
  102. }
  103. .form-item .label {
  104. width: 5.625rem;
  105. color: #333;
  106. }
  107. .form-item .account {
  108. color: #666;
  109. }
  110. .form-item .input {
  111. flex: 1;
  112. display: block;
  113. height: 1.4375rem;
  114. }
  115. .form-item .radio {
  116. margin-right: 0.625rem;
  117. }
  118. .form-item .picker {
  119. flex: 1;
  120. }
  121. .form-item .placeholder {
  122. color: #808080;
  123. }
  124. .form-button {
  125. height: 2.5rem;
  126. text-align: center;
  127. line-height: 2.5rem;
  128. margin: 0.9375rem 0.625rem;
  129. color: #fff;
  130. border-radius: 2.5rem;
  131. font-size: 0.9375rem;
  132. background-color: #27ba9b;
  133. }