1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980 |
- /* pages/ranking_list/ranking_list.wxss */
- @import '../../templates/nodata/nodata.wxss';
- .li{
- display: flex;
- justify-content: space-between;
- margin: 0 24rpx;
- padding: 24rpx 0;
- font-size:30rpx;
- font-family:PingFang SC;
- font-weight:500;
- color:rgba(57,57,57,1);
- }
- .li-items{
- display: flex;
- }
- .li-items-ord{
- width: 45rpx;
- height: 53rpx;
- margin: auto;
- }
- .li-items-block{
- text-align: center;
- display: inline-block;
- width: 60rpx;
- padding-top: 10rpx;
- }
- .li-items-header{
- width:50rpx;
- height:50rpx;
- border-radius:50%;
- margin: auto 20rpx;
- }
- .li-items-info{
- text-align: left;
- font-size:24rpx;
- font-family:PingFang SC;
- font-weight:500;
- color:rgba(124,130,158,1);
- }
- .li-items-info-name{
- font-size:30rpx;
- font-family:PingFang SC;
- font-weight:bold;
- color:rgba(57,57,57,1);
- margin-bottom: 8rpx;
- }
- .li-add{
- font-size:30rpx;
- font-family:PingFang SC;
- font-weight:bold;
- color:rgba(57,57,57,1);
- margin: auto 0;
- }
- .ul{
- display: flex;
- justify-content: space-between;
- margin: 0 45rpx;
- padding: 30rpx 0;
- border-bottom: 1rpx solid #E5E5E5;
- }
- .ol{
- display: flex;
- margin: 0 45rpx;
- padding: 35rpx 0;
- border-bottom: 1rpx solid #E5E5E5;
- }
- .li-blue{
- color:#6174D9;
- }
- .li-up{
- font-size:26rpx;
- font-family:PingFang SC;
- font-weight:bold;
- color:rgba(57,57,57,1);
- margin-left: 30rpx;
- }
- .li-top{
- position: relative;
- top: 0rpx;
- }
|