1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798 |
- /* pages/list/list.wxss */
- page{
- background: #F4F6F8;
- }
- .top{
- display: flex;
- font-size: 28rpx;
- padding: 24rpx 32rpx;
- background: #fff;
- justify-content: space-between;
- }
- .top image{
- width: 24rpx;
- }
- .item{
- display: flex;
- justify-content: space-between;
- font-size: 28rpx;
- padding: 16rpx 32rpx;
- }
- .item text{
- color: #333;
- width: 21%;
- text-align: right;
- }
- .item .red{
- color: #FF5151;
- }
- .top text{
- color: #999;
- }
- .item image{
- width: 36rpx;
- }
- .title image{
- width: 32rpx;
- position: relative;
- top: 7rpx;
- }
- .list{
- background: #fff;
- /* padding: 20rpx 0;
- margin-bottom: 20rpx; */
- padding-bottom: 20rpx;
- height: calc(100vh - 180rpx);
- box-sizing: border-box;
- }
- .list .note{
- font-size:22rpx;
- padding:10rpx 30rpx;
- color:#999;
- }
- .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;
- }
- .item .name{
- width: 25%;
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- text-align: left;
- margin-left: 5%;
- }
- .item text:last-child{
- text-align: right;
- }
- .more{
- text-align:center;
- color:#999;
- padding:10rpx 0;
- }
- .total{
- line-height: 80rpx;
- background: #F7F7F7;
- padding: 0 28rpx;
- color: #666;
- font-size: 28rpx;
- }
- .total view{
- color: #666;
- font-size: 28rpx;
- float: right;
- }
|