user-manage.wxss 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135
  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. .cap_chart {
  28. height: 300px;
  29. margin-top: 30rpx;
  30. width: 100%;
  31. overflow: hidden;
  32. z-index: 99;
  33. }
  34. .user {
  35. padding-bottom: 100rpx;
  36. }
  37. .user .search_box {
  38. width: 690rpx;
  39. margin: 0 auto;
  40. height: 100rpx;
  41. padding: 5rpx 0;
  42. }
  43. .user .search_box .search_inp {
  44. margin: 0 auto;
  45. border: 2rpx solid #ccc;
  46. height: 80rpx;
  47. padding: 0 20rpx;
  48. box-sizing: border-box;
  49. border-radius: 44rpx;
  50. }
  51. .user .search_box .search_inp input {
  52. width: 80%;
  53. height: 80rpx;
  54. line-height: 80rpx;
  55. }
  56. .user .search_box .search_inp .iconfont {
  57. color: #999;
  58. font-size: 40rpx;
  59. }
  60. .user .tabs {
  61. padding: 0 30rpx;
  62. margin: 30rpx 0;
  63. box-sizing: border-box;
  64. }
  65. .user .tabs .active_tab {
  66. background: linear-gradient(95deg, #ff232c 0%, #ff571b 100%);
  67. color: #fff;
  68. border: none;
  69. }
  70. .user .tabs view {
  71. width: 120rpx;
  72. text-align: center;
  73. height: 60rpx;
  74. line-height: 60rpx;
  75. border-radius: 32rpx;
  76. border: 2rpx solid #999999;
  77. color: #999;
  78. }
  79. .user .user_data {
  80. padding: 15rpx 0;
  81. }
  82. .user .user_data .data_item {
  83. text-align: center;
  84. }
  85. .user .user_data .data_item view {
  86. font-size: 60rpx;
  87. font-weight: bold;
  88. margin-bottom: 20rpx;
  89. }
  90. .user .user_data .data_item text {
  91. font-size: 28rpx;
  92. color: #999;
  93. }
  94. .user .user_con {
  95. width: 100%;
  96. }
  97. .user .user_con .user_title {
  98. width: 100%;
  99. height: 88rpx;
  100. border-bottom: 2rpx solid #eee;
  101. font-size: 32rpx;
  102. }
  103. .user .user_con .user_title text {
  104. width: 25%;
  105. text-align: center;
  106. }
  107. .user .user_con .user_list .user_info {
  108. width: 100%;
  109. height: 100rpx;
  110. background: #fff;
  111. }
  112. .user .user_con .user_list .user_info view {
  113. width: 25%;
  114. text-align: center;
  115. font-size: 32rpx;
  116. }
  117. .user .user_con .user_list .user_info view .avatar {
  118. width: 68rpx;
  119. height: 68rpx;
  120. border-radius: 50%;
  121. }
  122. .user .user_con .user_list .user_opear {
  123. width: 100%;
  124. height: 68rpx;
  125. background: #f8f8f8;
  126. }
  127. .user .user_con .user_list .user_opear view {
  128. width: 50%;
  129. height: 68rpx;
  130. line-height: 68rpx;
  131. text-align: center;
  132. color: #fb231f;
  133. font-weight: bold;
  134. }