1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071 |
- /* pages/ranking/ranking.wxss */
- .list{
- background: #EB8104;
- line-height: 120rpx;
- border-radius:24rpx;
- display: flex;
- justify-content: space-between;
- padding: 0 24rpx;
- margin:20rpx 24rpx;
- box-shadow:0px 3rpx 0px 0px rgba(0, 0, 0, 1);
- font-weight: bold;
- }
- .list-num{
- width: 48rpx;
- height: 56rpx;
- margin-right: 24rpx;
- position: relative;
- top: 14rpx;
- }
- .list-head{
- width: 80rpx;
- height: 80rpx;
- border-radius: 50%;
- position: relative;
- top: 24rpx;
- margin-right: 24rpx;
- }
- .list-info{
- color: #393939;
- font-size: 30rpx;
- width: 80%;
- }
- .list-core{
- color: #393939;
- font-size: 30rpx;
- }
- .list-core-active{
- color: #76CDFF;
- -webkit-text-stroke: 2rpx #393939;
- }
- .list-text{
- margin: 0 38rpx 0 14rpx;
- }
- .list-info-sex{
- width: 38rpx;
- height: 38rpx;
- position: relative;
- top: 13rpx;
- margin-left: 22rpx
- }
- .women-img{
- width: 35rpx;
- height: 47rpx;
- position: relative;
- top: 13rpx;
- margin-left: 22rpx
- }
- .list-info-name{
- display: inline;
- word-break: break-word;
- /* width: 40%; */
- overflow: hidden;
- }
- .li-nodata{
- text-align: center;
- margin: 250rpx auto;
- }
- .li-nodata-img{
- width: 337rpx;
- height: 350rpx;
- }
|