tabBar.wxss 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111
  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. .box {
  63. width: 750rpx;
  64. height: 138rpx;
  65. background: #F7F7F7;
  66. }
  67. .tabbar {
  68. width: 750rpx;
  69. height: 108rpx;
  70. background: #FFFFFF;
  71. }
  72. .imageView{
  73. width: 100%;
  74. }
  75. .image {
  76. width: 40rpx;
  77. height: 40rpx;
  78. }
  79. .title{
  80. width: 44rpx;
  81. height: 32rpx;
  82. font-size: 22rpx;
  83. font-family: PingFangSC-Regular, PingFang SC;
  84. font-weight: 400;
  85. color: #333333;
  86. line-height: 32rpx;
  87. }
  88. .title1{
  89. width: 44rpx;
  90. height: 32rpx;
  91. font-size: 22rpx;
  92. font-family: PingFangSC-Regular, PingFang SC;
  93. font-weight: 400;
  94. color: #999999;
  95. line-height: 32rpx;
  96. }
  97. .qrcodeView{
  98. width: 120rpx;
  99. height: 120rpx;
  100. position: relative;
  101. }
  102. .qrcode{
  103. width: 120rpx;
  104. height: 120rpx;
  105. position: absolute;
  106. bottom: 20rpx;
  107. }