rank.wxss 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114
  1. /* pages/piano/rank/rank.wxss */
  2. .container {
  3. flex-direction: column;
  4. display: flex;
  5. padding-left: 16rpx;
  6. padding-right: 16rpx;
  7. }
  8. .container .info {
  9. /* width: 100%; */
  10. flex-direction: column;
  11. align-items: center;
  12. display: flex;
  13. padding-top: 16rpx;
  14. }
  15. .container .info .header {
  16. width: 300rpx;
  17. height: 300rpx;
  18. }
  19. .container .info .text_list {
  20. margin-top: 16rpx;
  21. width: 100%;
  22. display: flex;
  23. flex-direction: row;
  24. justify-content: space-around;
  25. }
  26. .container .info .text_list .text_item {
  27. flex-direction: column;
  28. display: flex;
  29. justify-content: center;
  30. align-items: center;
  31. }
  32. .container .info .text_list .text_item_top {
  33. /* height: 50rpx; */
  34. }
  35. .container .info .text_list .text_item_bottom {
  36. /* height: 50rpx; */
  37. }
  38. .container .tab_list {
  39. margin-top: 16rpx;
  40. width: 100%;
  41. display: flex;
  42. flex-direction: row;
  43. justify-content: space-around;
  44. background-color: burlywood;
  45. }
  46. .container .tab_list .tabbar {
  47. height: 88rpx;
  48. }
  49. .select {
  50. height: 88rpx;
  51. color: black;
  52. }
  53. .unselect {
  54. height: 88rpx;
  55. color: gray;
  56. }
  57. .container .rank_scroll {
  58. margin-top: 16rpx;
  59. width: 100%;
  60. height: 100%;
  61. }
  62. .container .rank_scroll .scoll_item {
  63. width: 100%;
  64. flex: 1;
  65. display: flex;
  66. flex-direction: row;
  67. margin-top: 16rpx;
  68. margin-bottom: 16rpx;
  69. align-items: center;
  70. }
  71. .container .rank_scroll .scoll_item .scoll_item_index {
  72. width: 50rpx;
  73. }
  74. .container .rank_scroll .scoll_item .scoll_item_header {
  75. width: 80rpx;
  76. height: 80rpx;
  77. }
  78. .container .rank_scroll .scoll_item .scoll_item_text {
  79. margin-left: 16rpx;
  80. flex-direction: column;
  81. display: flex;
  82. }
  83. .container .rank_scroll .scoll_item .scoll_item_text_name {
  84. }
  85. .container .rank_scroll .scoll_item .scoll_item_text_address {
  86. }
  87. .container .rank_scroll .scoll_item .scoll_item_count{
  88. flex: 1;
  89. text-align: right;
  90. width: 100%;
  91. }