index.wxss 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171
  1. .my-info {
  2. width: 100%;
  3. text-align: center;
  4. border-bottom: 20rpx solid #f5f5f5;
  5. padding-bottom: 30rpx;
  6. }
  7. .my-info .avatar {
  8. width: 176rpx;
  9. height: 176rpx;
  10. border-radius: 50%;
  11. }
  12. .my-info .my-info-name {
  13. color: #293539;
  14. font-size: 76rrpx;
  15. margin-top: 10rpx;
  16. position: relative;
  17. }
  18. .my-info .my-info-name text {
  19. width: 10rpx;
  20. height: 10rpx;
  21. position: absolute;
  22. border: 4rpx solid #a78845;
  23. border-radius: 50%;
  24. margin-left: 10rpx;
  25. }
  26. .my-info-order {
  27. width: 95%;
  28. text-align: center;
  29. margin: 0 auto;
  30. margin-top: 60rpx;
  31. }
  32. .my-info-order .list-icon {
  33. display: inline-block;
  34. width: 25%;
  35. position: relative;
  36. }
  37. .my-info-order .list-icon .red-dot {
  38. width: 18rpx;
  39. height: 18rpx;
  40. border-radius: 50%;
  41. position: absolute;
  42. right: 30rpx;
  43. background-color: #ff3f3e;
  44. }
  45. .my-info-order .list-icon text {
  46. display: block;
  47. font-size: 22rpx;
  48. color: #293539;
  49. }
  50. .my-info-order .list-icon image {
  51. width: 56rpx;
  52. height: 56rpx;
  53. }
  54. .my-item-list .my-item {
  55. width: 100%;
  56. height: 120rpx;
  57. border-bottom: 2rpx dashed #f5f5f5;
  58. line-height: 120rpx;
  59. font-size: 32rpx;
  60. color: #293539;
  61. position: relative;
  62. font-weight: 300;
  63. }
  64. .my-item-list .my-item text {
  65. width: 10rpx;
  66. height: 10rpx;
  67. position: absolute;
  68. border: 2rpx solid #a78845;
  69. border-radius: 50%;
  70. left: 30rpx;
  71. bottom: 50rpx;
  72. }
  73. .my-item-list .my-item navigator {
  74. display: inline-block;
  75. margin-left: 70rpx;
  76. width: 90%;
  77. }
  78. .my-item-list .my-item .about {
  79. display: inline-block;
  80. margin-left: 70rpx;
  81. width: 90%;
  82. }
  83. .my-item-list .my-item image {
  84. width: 40rpx;
  85. height: 40rpx;
  86. float: right;
  87. margin-top: 40rpx;
  88. margin-right: 30rpx;
  89. position: absolute;
  90. right: 0;
  91. }
  92. .show-pop {
  93. width: 100%;
  94. height: 100%;
  95. position: fixed;
  96. top: 0;
  97. left: 0;
  98. background-color: rgba(255, 255, 255, 0.8);
  99. }
  100. .show-pop .show-pop-box {
  101. width: 55%;
  102. margin: 0 auto;
  103. margin-top: 30%;
  104. background-color: #fff;
  105. border-radius: 10rpx;
  106. text-align: center;
  107. position: relative;
  108. padding-bottom: 40rpx;
  109. padding-top: 60rpx;
  110. padding-left: 30rpx;
  111. padding-right: 30rpx;
  112. box-shadow: 0rpx 4rpx 30rpx #eee;
  113. }
  114. .show-pop-box .close {
  115. width: 70rpx;
  116. height: 70rpx;
  117. position: absolute;
  118. right: 0;
  119. top: 0;
  120. }
  121. .show-pop .show-pop-box .show-pop-title {
  122. color: #a78845;
  123. font-size: 36rpx;
  124. font-weight: 300;
  125. position: relative;
  126. }
  127. .show-pop .show-pop-box .show-pop-title .r {
  128. width: 10rpx;
  129. height: 10rpx;
  130. position: absolute;
  131. border: 1px solid #a78845;
  132. border-radius: 50%;
  133. margin-left: 20rpx;
  134. margin-top: 20rpx;
  135. }
  136. .show-pop .show-pop-box .show-pop-title .l {
  137. width: 10rpx;
  138. height: 10rpx;
  139. position: absolute;
  140. border: 2rpx solid #a78845;
  141. border-radius: 50%;
  142. margin-left: -30rpx;
  143. margin-top: 20rpx;
  144. }
  145. .show-pop .show-pop-box .show-pop-text {
  146. margin-top: 20rpx;
  147. color: #293539;
  148. font-size: 30rpx;
  149. line-height: 56rpx;
  150. font-weight: 300;
  151. }