index.wxss 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177
  1. /**index.wxss**/
  2. .userinfo {
  3. display: flex;
  4. flex-direction: column;
  5. align-items: center;
  6. }
  7. .userinfo-avatar {
  8. width: 128rpx;
  9. height: 128rpx;
  10. margin: 20rpx;
  11. border-radius: 50%;
  12. }
  13. .userinfo-nickname {
  14. color: #aaa;
  15. }
  16. .usermotto {
  17. margin-top: 200px;
  18. }
  19. /* ---弹窗css--- */
  20. .modal-mask {
  21. width: 100%;
  22. height: 100%;
  23. position: fixed;
  24. top: 0;
  25. left: 0;
  26. background: #000;
  27. opacity: 0.5;
  28. overflow: hidden;
  29. color: #fff;
  30. }
  31. .modal-dialog {
  32. width: 72%;
  33. position: absolute;
  34. top: 30%;
  35. left: 14%;
  36. background: #fff;
  37. border-radius: 12rpx;
  38. }
  39. .modal-content{
  40. text-align: center;
  41. }
  42. .modal-content .show{
  43. width: 450rpx;
  44. height: 323rpx;
  45. display: block;
  46. margin: 0 auto;
  47. margin-top: -118rpx;
  48. z-index: 10000;
  49. }
  50. .iconWx{
  51. width:52rpx;
  52. height: 41rpx;
  53. padding-right: 20rpx;
  54. }
  55. .iconPhone{
  56. width:56rpx;
  57. height: 56rpx;
  58. padding-right: 15rpx;
  59. }
  60. .modal-content view:nth-of-type(2){
  61. font-size: 38rpx;
  62. color: #333333;
  63. line-height: 1;
  64. }
  65. .modal-content view:nth-of-type(3){
  66. font-size: 26rpx;
  67. color: #9c9c9c;
  68. margin: 18rpx 0 29rpx;
  69. line-height: 1;
  70. }
  71. .modal-content button:nth-of-type(1){
  72. width: 80%;
  73. height: 80rpx;
  74. border-radius: 60rpx;
  75. margin: 0 auto 80rpx;
  76. font-size: 30rpx;
  77. color: #fff;
  78. background: #31cc32;
  79. display: flex;
  80. flex-direction: row;
  81. align-items: center;
  82. justify-content: center;
  83. padding: 0;
  84. box-sizing: border-box;
  85. }
  86. .modal-content button:nth-of-type(1)::after{
  87. border: none;
  88. }
  89. .modal-content .wxLogin{
  90. font-size: 26rpx;
  91. color: #424242;
  92. display: flex;
  93. flex-direction: row;
  94. align-items: center;
  95. justify-content: center;
  96. margin: 38rpx 0 80rpx;
  97. }
  98. button::after{
  99. border: none;
  100. }
  101. .mask_layer {
  102. width: 100%;
  103. height: 100%;
  104. position: fixed;
  105. z-index: 999;
  106. left:0;top:0;
  107. background: #000;
  108. opacity: 0.5;
  109. overflow: hidden;
  110. }
  111. .modal_box {
  112. width: 76%;
  113. overflow: hidden;
  114. position: fixed;
  115. top: 50%;
  116. left: 0;
  117. z-index: 1001;
  118. background: #fafafa;
  119. margin: -150px 12% 0 12%;
  120. border-radius: 3px;
  121. }
  122. .title {
  123. padding: 15px;
  124. text-align: center;
  125. background-color: gazure;
  126. }
  127. .content {
  128. overflow-y: scroll; /*超出父盒子高度可滚动*/
  129. }
  130. .input_show1{
  131. margin: 0 auto;
  132. width: 80%;
  133. margin-left: 10%;
  134. font-size: 32rpx;
  135. text-align: center;
  136. }
  137. .btn1 {
  138. width: 100%;
  139. margin-top: 65rpx;
  140. display: flex;
  141. flex-direction: row;
  142. align-items: center;
  143. justify-content: space-between;
  144. box-sizing: border-box;
  145. background-color: white;
  146. }
  147. .cancel {
  148. width: 100%;
  149. padding: 10px;
  150. text-align: center;
  151. color: black;
  152. }
  153. .Sure {
  154. width: 100%;
  155. padding: 10px;
  156. color: #44b549;
  157. background-color: white;
  158. border-left: 1px solid #d0d0d0;
  159. text-align: center;
  160. }
  161. .modalMsg {
  162. text-align: center;
  163. margin-top: 45rpx;
  164. display: block;
  165. }