.pkBox { height: 100vh; display: flex; flex-direction: column; .pkRecord { flex: 1; display: flex; flex-direction: column; overflow: hidden; margin-top: 20rpx; .title { position: relative; padding: 0px 60rpx; font-size: 32rpx; } .title::before { position: absolute; left: 30rpx; top: 4rpx; width: 10rpx; height: 90%; background-color: #4CC4FF; content: ''; border-radius: 50rpx; } .scrollBox { height: 100%; margin-top: 20rpx; padding: 0rpx 26rpx 60rpx; box-sizing: border-box; border-top-left-radius: 20rpx; border-top-right-radius: 20rpx; background-color: white; .record { display: flex; align-items: center; justify-content: space-between; padding: 32rpx 0rpx; border-bottom: 2rpx solid #DDDDDD; .record-left { display: flex; align-items: center; justify-content: space-between; .avatar { width: 64rpx; height: 64rpx; border-radius: 50%; background-color: #e4e1e1; } .rl-info { margin-left: 20rpx; .nickName { font-size: 30rpx; } .time { margin-top: 6rpx; font-size: 20rpx; } } } .record-right { display: flex; align-items: center; justify-content: space-between; .score { font-size: 34rpx; color: #30C866; } .play { margin: 0rpx 10rpx 0rpx 26rpx; width: 40rpx; height: 40rpx; } } } } } .footer { position: fixed; bottom: 0px; left: 0px; width: 100%; padding: 50rpx 104rpx; box-sizing: border-box; z-index: 9; background-color: rgb(255, 255, 255); display: flex; align-items: center; justify-content: center; .stBtn { padding: 16rpx 0rpx; text-align: center; border-radius: 50rpx; width: 220rpx; font-size: 30rpx; color: white; background-color: #66C5FF; box-shadow: 0 6px 14px 0 rgba(50, 197, 255, 0.65); } } }