1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- page{
- height: 100%;
- background: #f9f9f9;
- }
- .box{
- width: 100%;
- display: flex;
- flex-direction: column;
- align-items: center;
- padding-bottom: 20rpx;
- }
- .box .list{
- width: 93%;
- display: flex;
- align-items: center;
- justify-content: space-between;
- background: white;
- margin-top: 20rpx;
- height: 140rpx;
- }
- .list .left{
- margin-left: 20rpx;
- display: flex;
- flex-direction: column;
- justify-content: space-around;
- height: 90%;
- }
- .list .left text:nth-of-type(1){
- font-size: 28rpx;
- color: black;
- }
- .list .left text:nth-of-type(2){
- font-size: 26rpx;
- color: gray;
- padding-left: 16rpx;
- }
- .list .right{
- margin-right: 20rpx;
- font-size: 26rpx;
- display: flex;
- flex-direction: column;
- justify-content: space-around;
- height: 90%;
- align-items: flex-end;
- }
- .no_list{
- font-size:26rpx;
- font-family:PingFang SC;
- font-weight:500;
- color:rgba(127,127,127,1);
- padding-top: 100rpx;
- }
|