index.wxss 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128
  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. .handle-fix-box {
  28. width: 100%;
  29. height: 60px;
  30. padding: 10px 15px;
  31. position: fixed;
  32. z-index: 2;
  33. bottom: 0px;
  34. left: 0px;
  35. background-color: #FFFFFF;
  36. box-sizing: border-box;
  37. }
  38. .content {
  39. width: 100%;
  40. height: 100vh;
  41. float: left;
  42. }
  43. .content .user-info {
  44. width: 100%;
  45. height: 110px;
  46. margin-bottom: 20px;
  47. float: left;
  48. background-color: #ff6e3e;
  49. }
  50. .content .user-info .user-data {
  51. width: calc(100% - 110px);
  52. height: 110px;
  53. padding: 15px 0 15px 15px;
  54. float: left;
  55. }
  56. .content .user-info .user-data .user-name {
  57. width: 100%;
  58. float: left;
  59. font-size: 24px;
  60. color: #FFFFFF;
  61. line-height: 30px;
  62. margin: 10px 0;
  63. white-space: nowrap;
  64. overflow: hidden;
  65. text-overflow: ellipsis;
  66. }
  67. .content .user-info .user-data .user-phone {
  68. width: 100%;
  69. color: #FFFFFF;
  70. line-height: 20px;
  71. float: left;
  72. white-space: nowrap;
  73. overflow: hidden;
  74. text-overflow: ellipsis;
  75. }
  76. .content .user-info .user-img {
  77. width: 110px;
  78. height: 110px;
  79. padding: 15px;
  80. float: left;
  81. display: -webkit-box;
  82. display: -webkit-flex;
  83. display: flex;
  84. -webkit-box-align: center;
  85. -webkit-align-items: center;
  86. align-items: center;
  87. -webkit-box-pack: center;
  88. -webkit-justify-content: center;
  89. justify-content: center;
  90. }
  91. .content .user-handle {
  92. width: 100vw;
  93. height: 40px;
  94. float: left;
  95. padding: 0 15px;
  96. margin-bottom: 10px;
  97. display: -webkit-box;
  98. display: -webkit-flex;
  99. display: flex;
  100. -webkit-box-align: center;
  101. -webkit-align-items: center;
  102. align-items: center;
  103. }
  104. .content .user-handle .handle-icon {
  105. width: 40px;
  106. height: 40px;
  107. text-align: center;
  108. line-height: 40px;
  109. display: -webkit-box;
  110. display: -webkit-flex;
  111. display: flex;
  112. -webkit-box-align: center;
  113. -webkit-align-items: center;
  114. align-items: center;
  115. }
  116. .content .user-handle .handle-label {
  117. height: 40px;
  118. -webkit-box-flex: 1;
  119. -webkit-flex: 1;
  120. flex: 1;
  121. margin-left: 10px;
  122. line-height: 40px;
  123. font-size: 15px;
  124. }
  125. .content .user-handle .handle-arrow {
  126. line-height: 40px;
  127. }