12345678910111213141516171819202122232425262728293031323334 |
- .list{
- /* min-height: 100vh; */
- }
- .li{
- padding: 24rpx 32rpx;
- border-bottom: 1px solid #f1f1f1;
- background-color: #fff;
- }
- .footer{
- display: flex;
- align-items: center;
- justify-content: center;
- background-color: #fff;
- border-top: 1px solid #f1f1f1;
- padding: 14rpx 0;
- position: fixed;
- bottom: 0;
- left: 0;
- right: 0;
- }
- .footer view{
- background-color: #1188F1;
- color: #fff;
- width: 45%;
- padding: 24rpx 0;
- text-align: center;
- border-radius: 10rpx;
- }
- .footer view:nth-child(1){
- margin-right: 20rpx;
- }
- .list-box{
- overflow: scroll;
- }
|