index.less 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116
  1. .pkBox {
  2. height: 100vh;
  3. display: flex;
  4. flex-direction: column;
  5. .pkRecord {
  6. flex: 1;
  7. display: flex;
  8. flex-direction: column;
  9. overflow: hidden;
  10. margin-top: 20rpx;
  11. .title {
  12. position: relative;
  13. padding: 0px 60rpx;
  14. font-size: 32rpx;
  15. }
  16. .title::before {
  17. position: absolute;
  18. left: 30rpx;
  19. top: 4rpx;
  20. width: 10rpx;
  21. height: 90%;
  22. background-color: #4CC4FF;
  23. content: '';
  24. border-radius: 50rpx;
  25. }
  26. .scrollBox {
  27. height: 100%;
  28. margin-top: 20rpx;
  29. padding: 0rpx 26rpx 60rpx;
  30. box-sizing: border-box;
  31. border-top-left-radius: 20rpx;
  32. border-top-right-radius: 20rpx;
  33. background-color: white;
  34. .record {
  35. display: flex;
  36. align-items: center;
  37. justify-content: space-between;
  38. padding: 32rpx 0rpx;
  39. border-bottom: 2rpx solid #DDDDDD;
  40. .record-left {
  41. display: flex;
  42. align-items: center;
  43. justify-content: space-between;
  44. .avatar {
  45. width: 64rpx;
  46. height: 64rpx;
  47. border-radius: 50%;
  48. background-color: #e4e1e1;
  49. }
  50. .rl-info {
  51. margin-left: 20rpx;
  52. .nickName {
  53. font-size: 30rpx;
  54. }
  55. .time {
  56. margin-top: 6rpx;
  57. font-size: 20rpx;
  58. }
  59. }
  60. }
  61. .record-right {
  62. display: flex;
  63. align-items: center;
  64. justify-content: space-between;
  65. .score {
  66. font-size: 34rpx;
  67. color: #30C866;
  68. }
  69. .play {
  70. margin: 0rpx 10rpx 0rpx 26rpx;
  71. width: 40rpx;
  72. height: 40rpx;
  73. }
  74. }
  75. }
  76. }
  77. }
  78. .footer {
  79. position: fixed;
  80. bottom: 0px;
  81. left: 0px;
  82. width: 100%;
  83. padding: 50rpx 104rpx;
  84. box-sizing: border-box;
  85. z-index: 9;
  86. background-color: rgb(255, 255, 255);
  87. display: flex;
  88. align-items: center;
  89. justify-content: center;
  90. .stBtn {
  91. padding: 16rpx 0rpx;
  92. text-align: center;
  93. border-radius: 50rpx;
  94. width: 220rpx;
  95. font-size: 30rpx;
  96. color: white;
  97. background-color: #66C5FF;
  98. box-shadow: 0 6px 14px 0 rgba(50, 197, 255, 0.65);
  99. }
  100. }
  101. }