index.wxss 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108
  1. .flex-col {
  2. display: flex;
  3. flex-direction: column;
  4. }
  5. .flex-row {
  6. display: flex;
  7. flex-direction: row;
  8. }
  9. .flex-row-reverse {
  10. display: flex;
  11. flex-direction: row-reverse;
  12. }
  13. .bord{
  14. border: 1px solid red;
  15. }
  16. .justify-start {
  17. display: flex;
  18. justify-content: flex-start;
  19. }
  20. .justify-center {
  21. display: flex;
  22. justify-content: center;
  23. }
  24. .justify-end {
  25. display: flex;
  26. justify-content: flex-end;
  27. }
  28. .justify-evenly {
  29. display: flex;
  30. justify-content: space-evenly;
  31. }
  32. .justify-around {
  33. display: flex;
  34. justify-content: space-around;
  35. }
  36. .justify-between {
  37. display: flex;
  38. justify-content: space-between;
  39. }
  40. .align-start {
  41. display: flex;
  42. align-items: flex-start;
  43. }
  44. .align-center {
  45. display: flex;
  46. align-items: center;
  47. }
  48. .align-end {
  49. display: flex;
  50. align-items: flex-end;
  51. }
  52. .sticky {
  53. display: flex;
  54. position: -webkit-sticky;
  55. position: sticky;
  56. top: 0rpx;
  57. z-index: 99;
  58. }
  59. .bord{
  60. border: 1px solid red;
  61. }
  62. .tabBarLineHeight{
  63. height: 138rpx;
  64. }
  65. .tabBarView{
  66. position: fixed;
  67. bottom: 0;
  68. }
  69. .content{
  70. width: 750rpx;
  71. padding: 0 25rpx;
  72. background: #F7F7F7;
  73. }
  74. .outView{
  75. width: 700rpx;
  76. background: #FFFFFF;
  77. border-radius: 15rpx;
  78. position: relative;
  79. top: 250rpx;
  80. }
  81. .member-head-img{
  82. height: 200rpx;
  83. position: absolute;
  84. top: -90rpx;
  85. left: 250rpx;
  86. }
  87. .imageLogo{
  88. width: 200rpx;
  89. height: 200rpx;
  90. }
  91. .member-content{
  92. margin-top: 140rpx;
  93. }
  94. .user-name{
  95. font-size: 40rpx;
  96. font-weight: 600;
  97. }
  98. .qrcodeImage{
  99. width: 480rpx;
  100. height: 480rpx;
  101. }
  102. .qrcode-desc{
  103. font-size: 28rpx;
  104. padding-bottom: 25rpx;
  105. }