index.module.less 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122
  1. .member-center {
  2. background-color: #FFE5CC;
  3. min-height: 100vh;
  4. position: relative;
  5. :global {
  6. .van-nav-bar {
  7. background-color: transparent;
  8. }
  9. }
  10. .member_container {
  11. padding: 10px 14px 0;
  12. .title {
  13. display: flex;
  14. align-items: center;
  15. font-size: 16px;
  16. line-height: 28px;
  17. font-weight: 500;
  18. color: #333333;
  19. &::before {
  20. content: " ";
  21. width: 4px;
  22. height: 17px;
  23. background: #01c1b5;
  24. display: inline-block;
  25. margin-right: 7px;
  26. border-radius: 8px;
  27. }
  28. }
  29. }
  30. .level {
  31. width: 18px;
  32. height: 16px;
  33. }
  34. .userMember {
  35. background: url("./images/member_bg.png") no-repeat center #534754;
  36. background-size: cover;
  37. width: auto;
  38. border-radius: 10px;
  39. padding: 20px 12px 30px;
  40. .userImg {
  41. width: 46px;
  42. height: 46px;
  43. border-radius: 50%;
  44. margin-right: 12px;
  45. }
  46. .userInfo {
  47. display: flex;
  48. align-items: center;
  49. color: #fff;
  50. padding-bottom: 5px;
  51. .name {
  52. font-size: 18px;
  53. padding-right: 5px;
  54. }
  55. .phone {
  56. font-size: 14px;
  57. }
  58. }
  59. .timeRemaining {
  60. margin-top: 0;
  61. font-size: 14px;
  62. color: #c0c0c0;
  63. .remaining {
  64. color: #f7b500;
  65. padding: 0 5px;
  66. }
  67. }
  68. .member_time {
  69. display: flex;
  70. align-items: center;
  71. justify-content: space-between;
  72. }
  73. }
  74. .memberContainer {
  75. height: calc(100vh - 196px);
  76. overflow-y: auto;
  77. background-color: #fff;
  78. border-radius: 18px 18px 0px 0px;
  79. position: relative;
  80. margin-top: -15px;
  81. padding: 0 14px;
  82. z-index: 99;
  83. }
  84. .btnGroup {
  85. position: fixed;
  86. bottom: 0;
  87. left: 0;
  88. right: 0;
  89. z-index: 100;
  90. background-color: #fff;
  91. display: flex;
  92. align-items: center;
  93. padding: 12px 16px;
  94. justify-content: space-between;
  95. border-top: 1px solid #F0F0F0;
  96. .btn {
  97. padding: 0 22px;
  98. color: #7A3104 !important;
  99. }
  100. .priceSection {
  101. display: flex;
  102. align-items: center;
  103. font-size: 16px;
  104. color: #1A1A1A;
  105. .price {
  106. font-size: 18px;
  107. font-weight: bold;
  108. color: #FF3535;
  109. .priceUnit {
  110. font-size: 14px;
  111. }
  112. }
  113. }
  114. }
  115. }