setting.wxss 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150
  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.data-v-211ae53c {
  28. width: 100%;
  29. height: 100vh;
  30. background-color: #fff;
  31. }
  32. .wrap .avatar.data-v-211ae53c {
  33. width: 100%;
  34. height: 80px;
  35. text-align: center;
  36. padding: 20px 0;
  37. }
  38. .wrap .avatar view.data-v-211ae53c {
  39. position: relative;
  40. height: 80px;
  41. width: 80px;
  42. text-align: center;
  43. display: inline-block;
  44. }
  45. .wrap .avatar view.data-v-211ae53c:before {
  46. width: 80px;
  47. height: 80px;
  48. display: block;
  49. content: " ";
  50. top: 50%;
  51. left: 50%;
  52. -webkit-transform: translate(-50%, -50%);
  53. transform: translate(-50%, -50%);
  54. position: absolute;
  55. z-index: 99;
  56. background: rgba(0, 0, 0, 0.2);
  57. border-radius: 50%;
  58. }
  59. .wrap .avatar view .file.data-v-211ae53c {
  60. top: 50%;
  61. left: 50%;
  62. -webkit-transform: translate(-50%, -50%);
  63. transform: translate(-50%, -50%);
  64. z-index: 1111;
  65. color: #333;
  66. position: absolute;
  67. display: inline-block;
  68. background: #fff;
  69. width: 40px;
  70. height: 20px;
  71. line-height: 20px;
  72. overflow: hidden;
  73. text-decoration: none;
  74. text-indent: 0;
  75. cursor: pointer;
  76. border-radius: 5px;
  77. font-size: 13px;
  78. }
  79. .wrap .avatar view image.data-v-211ae53c {
  80. width: 80px;
  81. height: 80px;
  82. overflow: hidden;
  83. border-radius: 50%;
  84. position: absolute;
  85. left: 50%;
  86. -webkit-transform: translateX(-50%);
  87. transform: translateX(-50%);
  88. }
  89. .theForm.data-v-211ae53c {
  90. width: 650rpx;
  91. margin: 0 auto;
  92. }
  93. .theForm .fields-box.data-v-211ae53c {
  94. width: 100%;
  95. float: left;
  96. font-size: 31rpx;
  97. height: 110rpx;
  98. line-height: 110rpx;
  99. border: 1px solid #e0e0e0;
  100. border-left: 0;
  101. border-right: 0;
  102. }
  103. .theForm .fields-box.data-v-211ae53c:nth-child(1) {
  104. border-bottom: 0;
  105. }
  106. .theForm .fields-box.data-v-211ae53c:nth-child(2) {
  107. border-bottom: 0;
  108. }
  109. .theForm .fields-box view.data-v-211ae53c:first-child {
  110. float: left;
  111. width: 160rpx;
  112. color: #999;
  113. }
  114. .theForm .fields-box view.data-v-211ae53c:last-child {
  115. float: right;
  116. width: 490rpx;
  117. color: #333;
  118. }
  119. .theForm .fields-box view:last-child input.data-v-211ae53c {
  120. height: 110rpx;
  121. line-height: 110rpx;
  122. }
  123. .theForm .btn.data-v-211ae53c {
  124. float: left;
  125. margin: 25rpx 0;
  126. }
  127. .theForm .btn button.data-v-211ae53c {
  128. width: 650rpx;
  129. height: 100rpx;
  130. line-height: 100rpx;
  131. text-align: center;
  132. background-color: #c30d24;
  133. border: 1px solid #c30d24;
  134. color: #fff;
  135. font-size: 33rpx;
  136. }
  137. .theForm .logout.data-v-211ae53c {
  138. float: left;
  139. }
  140. .theForm .logout button.data-v-211ae53c {
  141. width: 650rpx;
  142. height: 100rpx;
  143. line-height: 100rpx;
  144. text-align: center;
  145. background-color: #ffffff;
  146. color: #a1a1a1;
  147. font-size: 33rpx;
  148. border: 0px solid #d6d6d6;
  149. }