brow-user.wxss 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127
  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_title {
  83. width: 690rpx;
  84. margin: 0 auto;
  85. display: flex;
  86. justify-content: flex-start;
  87. align-items: flex-end;
  88. }
  89. .user .user_data .data_title view {
  90. font-size: 28rpx;
  91. font-weight: bold;
  92. }
  93. .user .user_data .data_title text {
  94. color: #fb231f;
  95. font-size: 60rpx;
  96. font-weight: bold;
  97. }
  98. .user .user_con {
  99. width: 690rpx;
  100. margin: 0 auto;
  101. }
  102. .user .user_con .user_title {
  103. font-size: 36rpx;
  104. font-weight: bold;
  105. height: 100rpx;
  106. line-height: 100rpx;
  107. }
  108. .user .user_con .user_list .list_con {
  109. width: 100%;
  110. padding: 10rpx 0;
  111. box-sizing: border-box;
  112. }
  113. .user .user_con .user_list .list_con .avatar {
  114. width: 68rpx;
  115. height: 68rpx;
  116. border-radius: 50%;
  117. margin-right: 20rpx;
  118. }
  119. .user .user_con .user_list .list_con .user_name view {
  120. font-size: 32rpx;
  121. margin-bottom: 10rpx;
  122. }
  123. .user .user_con .user_list .list_con .user_name text {
  124. font-size: 28rpx;
  125. color: #999;
  126. }