user_list.wxss 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135
  1. .box{
  2. width: 100%;
  3. height: 100%;
  4. border-top: 2rpx solid #cccccc;
  5. }
  6. .box .top{
  7. width: 100%;
  8. display: flex;
  9. align-items: center;
  10. justify-content: space-around;
  11. padding-top: 30rpx;
  12. }
  13. .box .top input{
  14. width: 200rpx;
  15. height: 60rpx;
  16. border: 2rpx solid #cccccc;
  17. box-sizing: border-box;
  18. font-size: 26rpx;
  19. padding-left: 14rpx;
  20. border-radius: 10rpx;
  21. }
  22. .box .top view{
  23. width: 120rpx;
  24. height: 60rpx;
  25. background: #409EFF;
  26. color: white;
  27. font-size: 28rpx;
  28. display: flex;
  29. align-items: center;
  30. justify-content: center;
  31. border-radius: 10rpx;
  32. }
  33. .content{
  34. width: 95%;
  35. display: flex;
  36. flex-direction: column;
  37. align-items: center;
  38. margin: 0 auto;
  39. }
  40. .content .item{
  41. width: 100%;
  42. display: flex;
  43. align-items: center;
  44. justify-content: space-around;
  45. padding: 20rpx 0rpx;
  46. border: 2rpx solid #cccccc;
  47. margin-top: 20rpx;
  48. border-radius: 10rpx;
  49. }
  50. .content .item .left{
  51. display: flex;
  52. flex-direction: column;
  53. width: 70%;
  54. }
  55. .content .item .left .top1{
  56. display: flex;
  57. align-items: center;
  58. }
  59. .content .item .left .top1 text{
  60. padding-left: 20rpx;
  61. font-size: 26rpx;
  62. }
  63. .content .item .left .bottom{
  64. display: flex;
  65. align-items: center;
  66. font-size: 26rpx;
  67. padding-top: 10rpx;
  68. }
  69. .content .item image{
  70. width: 80rpx;
  71. height: 80rpx;
  72. border-radius: 50%;
  73. }
  74. .content .item .right view{
  75. height: 70rpx;
  76. font-size: 26rpx;
  77. background: #43E0B8;
  78. color: white;
  79. padding: 0rpx 15rpx;
  80. border-radius: 10rpx;
  81. display: flex;
  82. align-items: center;
  83. justify-content: center;
  84. }
  85. .background{
  86. width: 100%;
  87. height: 100%;
  88. position: fixed;
  89. top: 0;
  90. left: 0;
  91. background: #333333;
  92. opacity: .5;
  93. z-index: 88;
  94. }
  95. .model{
  96. width: 400rpx;
  97. height: 350rpx;
  98. background: white;
  99. z-index: 99;
  100. position: fixed;
  101. top: 50%;
  102. left: 50%;
  103. transform: translate(-50%,-50%);
  104. display: flex;
  105. flex-direction: column;
  106. align-items: center;
  107. justify-content: space-between;
  108. border-radius: 20rpx;
  109. }
  110. .model input{
  111. font-size: 28rpx;
  112. width: 90%;
  113. height: 70rpx;
  114. padding-left: 20rpx;
  115. border: 2rpx solid #cccccc;
  116. }
  117. .model .model_bottom{
  118. width: 100%;
  119. display: flex;
  120. align-items: center;
  121. border-top: 2rpx solid #cccccc;
  122. }
  123. .model .model_bottom view{
  124. width: 50%;
  125. height: 70rpx;
  126. display: flex;
  127. align-items: center;
  128. justify-content: center;
  129. font-size: 26rpx;
  130. }
  131. .none{
  132. color: #43E0B8;
  133. font-size: 28rpx;
  134. margin-top: 200rpx;
  135. }