index.wxss 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166
  1. /**index.wxss**/
  2. page {
  3. height: 100vh;
  4. display: flex;
  5. flex-direction: column;
  6. /* background: url('https://sit-kelamayi.4dage.com/mini/wxImg/user-bg.png') no-repeat; */
  7. /* background-size: cover; */
  8. }
  9. .user-container{
  10. height: 100%;
  11. background: url('https://sit-kelamayi.4dage.com/mini/wxImg/user-bg.png') no-repeat;
  12. background-size: cover;
  13. display: flex;
  14. flex-direction: column;
  15. align-items: center;
  16. justify-content: space-between;
  17. padding: 40rpx;
  18. box-sizing: border-box;
  19. }
  20. .scrollarea {
  21. flex: 1;
  22. overflow-y: hidden;
  23. }
  24. .userinfo {
  25. display: flex;
  26. flex-direction: column;
  27. align-items: center;
  28. color: #aaa;
  29. width: 80%;
  30. }
  31. .userinfo-avatar {
  32. overflow: hidden;
  33. width: 128rpx;
  34. height: 128rpx;
  35. margin: 20rpx;
  36. border-radius: 50%;
  37. }
  38. .usermotto {
  39. margin-top: 200px;
  40. }
  41. .avatar-wrapper {
  42. padding: 0;
  43. width: 56px !important;
  44. border-radius: 8px;
  45. margin-top: 40rpx;
  46. margin-bottom: 40rpx;
  47. }
  48. .avatar {
  49. display: block;
  50. width: 56px;
  51. height: 56px;
  52. }
  53. .nickname-wrapper {
  54. display: flex;
  55. width: 100%;
  56. padding: 0 16px 16px 16px;
  57. box-sizing: border-box;
  58. color: black;
  59. }
  60. .nickname-label {
  61. width: 105px;
  62. }
  63. .nickname-input {
  64. text-align: center;
  65. flex: 1;
  66. }
  67. .login-in{
  68. display: flex;
  69. flex-direction: column;
  70. align-items: center;
  71. justify-content: center;
  72. }
  73. .user-title{
  74. width: 100%;
  75. font-weight: bold;
  76. color: #584735;
  77. text-align: left;
  78. font-size: 40rpx;
  79. margin: 20rpx 0 20rpx 0;
  80. }
  81. .user-zhanwei{
  82. width: 100%;
  83. height: 14px;
  84. margin-bottom: 20rpx;
  85. }
  86. .zhanwei-img{
  87. width: 100%;
  88. height: 14px;
  89. }
  90. /* 功能按钮区域 */
  91. .function-section {
  92. width: 100%;
  93. flex: 1;
  94. display: flex;
  95. flex-direction: column;
  96. }
  97. .main-buttons {
  98. margin-bottom: 20rpx;
  99. }
  100. .btn-reserve {
  101. background: url('https://sit-kelamayi.4dage.com/mini/wxImg/preview-btn.png');
  102. width: 100%;
  103. height: 130rpx;
  104. border-radius: 10rpx;
  105. display: flex;
  106. justify-content: center;
  107. align-items: center;
  108. background-size: 100% auto;
  109. color: #fff;
  110. font-size: 32rpx;
  111. font-weight: bold;
  112. }
  113. .btn-people {
  114. display: flex;
  115. justify-content: center;
  116. align-items: center;
  117. width: 100%;
  118. height: 130rpx;
  119. background: url('https://sit-kelamayi.4dage.com/mini/wxImg/btn_02.png');
  120. background-size: 100% auto;
  121. border-radius: 10rpx;
  122. border: 2rpx solid #94765A;
  123. margin-top: 20rpx;
  124. color: #fff;
  125. font-size: 32rpx;
  126. }
  127. .btn-feed{
  128. display: flex;
  129. justify-content: center;
  130. align-items: center;
  131. width: 100%;
  132. height: 130rpx;
  133. background: #fff;
  134. border-radius: 5px 5px 5px 5px;
  135. border: 1px solid #FFFFFF;
  136. color: #C8583D;
  137. margin-bottom: 20rpx;
  138. }
  139. .btn-out{
  140. display: flex;
  141. justify-content: center;
  142. align-items: center;
  143. width: 100%;
  144. height: 130rpx;
  145. border-radius: 5px 5px 5px 5px;
  146. border: 1px solid #D9D9D9;
  147. color: #584735;
  148. }
  149. /* 按钮置灰样式 */
  150. .btn-disabled {
  151. opacity: 0.5;
  152. filter: grayscale(50%);
  153. }