index.wxss 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151
  1. button::after {
  2. border: none;
  3. background-color: none;
  4. }
  5. button {
  6. position: relative;
  7. display: block;
  8. margin-left: auto;
  9. margin-right: auto;
  10. padding-left: 0px;
  11. padding-right: 0px;
  12. box-sizing: border-box;
  13. text-decoration: none;
  14. line-height: 1.35;
  15. overflow: hidden;
  16. color: #666666;
  17. /* background-color: #fff; */
  18. background-color: rgba(255, 255, 255, 0) !important;
  19. width: 100%;
  20. height: 100%;
  21. }
  22. .btn-bg {
  23. width: 64px;
  24. height: 28px;
  25. background: linear-gradient(90deg, #cda26e 0%, #dcb78a 100%);
  26. border-radius: 28px;
  27. text-align: center;
  28. line-height: 28px;
  29. margin-top: 10rpx;
  30. color: '#604320';
  31. }
  32. page {
  33. background: #f5f5f5;
  34. }
  35. .content {
  36. width: 100%;
  37. }
  38. .btn {
  39. font-size: 24rpx;
  40. /* width: 95%; */
  41. text-align: center;
  42. background: #ffffff;
  43. margin-top: 6rpx;
  44. }
  45. .head {
  46. /* width: 100%; */
  47. /* height: 200rpx; */
  48. display: flex;
  49. align-items: center;
  50. padding: 30rpx;
  51. border-radius: 16rpx;
  52. background-image: linear-gradient(#fefbda, #f7f7f7);
  53. }
  54. .head_image {
  55. }
  56. .head_image > image {
  57. width: 90rpx;
  58. height: 90rpx;
  59. border-radius: 50%;
  60. }
  61. .head_name {
  62. margin-left: 10rpx;
  63. }
  64. .name {
  65. font-size: 38rpx;
  66. font-weight: bold;
  67. }
  68. .approve {
  69. position: absolute;
  70. top: 100rpx;
  71. font-size: 24rpx;
  72. color: #999999;
  73. }
  74. /* 列表 */
  75. .use_list {
  76. width: 100%;
  77. background: #ffffff;
  78. margin-top: 20rpx;
  79. }
  80. .list_box {
  81. width: 90%;
  82. margin: 0 auto;
  83. display: flex;
  84. height: 110rpx;
  85. }
  86. .box_left {
  87. flex: 1;
  88. display: flex;
  89. justify-content: left;
  90. align-items: center;
  91. }
  92. .box_right {
  93. flex: 1;
  94. display: flex;
  95. justify-content: flex-end;
  96. align-items: center;
  97. color: #808080;
  98. }
  99. .use_name {
  100. margin-left: 30rpx;
  101. font-size: 32rpx;
  102. }
  103. .use_image image {
  104. width: 50rpx;
  105. height: 50rpx;
  106. }
  107. .center {
  108. width: 94%;
  109. /* line-height: 1.5; */
  110. background-color: #ffffff;
  111. border-radius: 18rpx;
  112. margin: 0 auto 0;
  113. display: flex;
  114. justify-content: space-between;
  115. }
  116. .header_text2 {
  117. font-size: 24rpx;
  118. font-weight: 500;
  119. color: #999999;
  120. margin-top: 10rpx;
  121. }
  122. .header_text4 {
  123. font-size: 32rpx;
  124. font-weight: bold;
  125. color: #333333;
  126. }
  127. .serviceBtn {
  128. position: fixed;
  129. right: 52rpx;
  130. bottom: 50rpx;
  131. display: flex;
  132. flex-direction: column;
  133. align-items: center;
  134. justify-content: center;
  135. width: 140rpx;
  136. height: 140rpx;
  137. border-radius: 50%;
  138. color: #fff;
  139. font-size: 20rpx;
  140. background-color: #3e8ef7;
  141. box-shadow: 0 0 7rpx #000;
  142. }
  143. .serviceBtn_text {
  144. margin-top: 5rpx;
  145. }