| 12345678910111213141516171819202122232425262728293031323334353637 |
- .list{
- position: relative;
- padding: 0 50rpx;
- }
- .medal{
- width: 300rpx;
- height: 150rpx;
- margin-top: 20rpx;
- align-items: center;
- font-size: 28rpx;
- background: #fed32a;
- border: 4rpx solid #ffa400;
- }
- .medal2{
- position: absolute;
- left: 50rpx;
- background: #dddddd;
- }
- .medal3{
- position: absolute;
- right: 50rpx;
- background: #eca553;
- }
- .listItem{
- font-size: 28rpx;
- color: #999999;
- margin-top: 20rpx;
- padding: 20rpx 0;
- border-bottom: 2rpx solid #f7f7f7;
- }
- .listItemFirst{
- margin-top: 220rpx;
- }
|