index.wxss 1.8KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125
  1. /**index.wxss**/
  2. @import '../../../app.wxss';
  3. .top {
  4. width: 100%;
  5. position: relative;
  6. overflow: hidden;
  7. }
  8. .top > image {
  9. width: 100%;
  10. display: block;
  11. position: relative;
  12. z-index: 1;
  13. }
  14. .top > .centerLabel {
  15. width: 100%;
  16. z-index: 2;
  17. overflow: hidden;
  18. }
  19. .userIcon {
  20. width: 154rpx;
  21. height: 154rpx;
  22. position: relative;
  23. overflow: hidden;
  24. border-radius: 100%;
  25. border: 2rpx solid #fff;
  26. margin: 0 auto;
  27. background: rgba(255, 255, 255, 0.5);
  28. }
  29. .userIcon > view {
  30. width: 144rpx;
  31. height: 144rpx;
  32. overflow: hidden;
  33. border-radius: 100%;
  34. background: #eee;
  35. }
  36. .userName {
  37. width: 100%;
  38. display: block;
  39. text-align: center;
  40. color: #fff;
  41. font-size: 24rpx;
  42. line-height: 40rpx;
  43. margin-top: 5rpx;
  44. font-weight: bold;
  45. }
  46. .unsigned {
  47. width: 100%;
  48. display: block;
  49. text-align: center;
  50. line-height: 40rpx;
  51. margin-top: 5rpx;
  52. }
  53. .unsigned > button {
  54. font-size: 24rpx;
  55. color: #fff;
  56. width: 25%;
  57. background-color: rgba(0, 0, 0, .2);
  58. }
  59. .userPhone {
  60. width: 100%;
  61. display: block;
  62. text-align: center;
  63. color: #fff;
  64. font-size: 20rpx;
  65. line-height: 36rpx;
  66. }
  67. .list {
  68. padding: 25rpx;
  69. position: relative;
  70. overflow: hidden;
  71. }
  72. .list > view {
  73. width: 100%;
  74. position: relative;
  75. overflow: hidden;
  76. border-radius: 10rpx;
  77. box-shadow: 0 0 20rpx 10rpx rgba(0, 0, 0, .05);
  78. }
  79. .listBg {
  80. display: inline-block;
  81. position: absolute;
  82. right: 10rpx;
  83. bottom: 40rpx;
  84. opacity: 0.06;
  85. z-index: 1;
  86. width: 400rpx;
  87. }
  88. .list > view > view {
  89. padding: 0 45rpx;
  90. position: relative;
  91. overflow: hidden;
  92. }
  93. .item {
  94. border-top: 1rpx solid #eee;
  95. position: relative;
  96. overflow: hidden;
  97. padding: 30rpx 0;
  98. align-items: center;
  99. z-index: 2;
  100. }
  101. .item:first-child {
  102. border: none;
  103. }
  104. .list text {
  105. line-height: 42rpx;
  106. font-size: 26rpx;
  107. /* font-weight: bold; */
  108. margin: 0 25rpx;
  109. }