| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- /* pages/list/list.wxss */
- /* pages/rank/rank.wxss */
- page{
- background: #F4F6F8;
- }
- .top{
- display: flex;
- font-size: 28rpx;
- padding: 24rpx 32rpx;
- background: #fff;
- margin-bottom: 20rpx;
- justify-content: space-between;
- }
- .item{
- display: flex;
- justify-content: space-between;
- font-size: 28rpx;
- padding: 16rpx 32rpx;
- }
- .item text{
- color: #333;
- }
- .item .red{
- color: #FF5151;
- }
- .top text{
- color: #999;
- }
- .item image{
- width: 36rpx;
- }
- .title image{
- width: 32rpx;
- position: relative;
- top: 7rpx;
- }
- .list{
- background: #fff;
- padding: 40rpx 0;
- margin-bottom: 20rpx;
- }
- .title{
- border-left: 4px solid #FF5151;
- color: #FF5151;
- font-size: 32rpx;
- font-weight: 500;
- padding-left: 20rpx;
- padding-right: 40rpx;
- margin-bottom: 20rpx;
- }
- .title navigator{
- float: right;
- color: #999;
- font-size: 28rpx;
- }
- .item text{
- display: block;
- }
- .name{
- width: 112rpx;
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- }
|