commission-info.wxss 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  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. .user-card.data-v-2ef4f675 {
  27. width: 690rpx;
  28. height: 192rpx;
  29. margin: -88rpx 20rpx 0 20rpx;
  30. padding-top: 88rpx;
  31. background: var(--7417b452) no-repeat;
  32. background-size: 100% 100%;
  33. }
  34. .user-card .head-img-box.data-v-2ef4f675 {
  35. margin-right: 20rpx;
  36. width: 100rpx;
  37. height: 100rpx;
  38. border-radius: 50%;
  39. position: relative;
  40. background: #fce0ad;
  41. }
  42. .user-card .head-img-box .head-img.data-v-2ef4f675 {
  43. width: 92rpx;
  44. height: 92rpx;
  45. border-radius: 50%;
  46. position: absolute;
  47. top: 50%;
  48. left: 50%;
  49. transform: translate(-50%, -50%);
  50. }
  51. .user-card .card-top.data-v-2ef4f675 {
  52. box-sizing: border-box;
  53. padding-bottom: 34rpx;
  54. }
  55. .user-card .card-top .user-name.data-v-2ef4f675 {
  56. font-size: 32rpx;
  57. font-weight: bold;
  58. color: #692e04;
  59. line-height: 30rpx;
  60. margin-bottom: 20rpx;
  61. }
  62. .user-card .card-top .log-btn.data-v-2ef4f675 {
  63. width: 84rpx;
  64. height: 42rpx;
  65. border: 2rpx solid rgba(255, 255, 255, 0.33);
  66. border-radius: 21rpx;
  67. font-size: 22rpx;
  68. font-weight: 400;
  69. color: #ffffff;
  70. margin-bottom: 20rpx;
  71. }
  72. .user-card .card-top .look-btn.data-v-2ef4f675 {
  73. color: #fff;
  74. width: 40rpx;
  75. height: 40rpx;
  76. }
  77. .user-card .user-info-box .tag-box.data-v-2ef4f675 {
  78. background: #ff6000;
  79. border-radius: 18rpx;
  80. line-height: 36rpx;
  81. }
  82. .user-card .user-info-box .tag-box .tag-img.data-v-2ef4f675 {
  83. width: 36rpx;
  84. height: 36rpx;
  85. border-radius: 50%;
  86. margin-left: -2rpx;
  87. }
  88. .user-card .user-info-box .tag-box .tag-title.data-v-2ef4f675 {
  89. font-size: 24rpx;
  90. padding: 0 10rpx;
  91. font-weight: 500;
  92. line-height: 36rpx;
  93. color: #fff;
  94. }