| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980 |
- .search {
- background-color: #f5f5f5;
- }
- .total {
- padding: 10rpx 20rpx;
- font-size: 24rpx;
- color: #999;
- background-color: #f5f5f5;
- border-bottom: 1rpx solid #e8e8e8;
- }
- .list-item {
- background-color: #fff;
- margin-bottom: 10rpx;
- }
- .main {
- display: flex;
- padding: 20rpx;
- position: relative;
- }
- .checkbox {
- margin-right: 20rpx;
- display: flex;
- align-items: center;
- }
- .dec {
- flex: 1;
- }
- .title {
- font-size: 32rpx;
- font-weight: bold;
- color: #333;
- margin-bottom: 10rpx;
- }
- .subfield {
- font-size: 24rpx;
- color: #666;
- margin-bottom: 8rpx;
- }
- .line-1 {
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- }
- .footer {
- position: fixed;
- bottom: 0;
- left: 0;
- right: 0;
- display: flex;
- justify-content: space-between;
- align-items: center;
- padding: 20rpx;
- background-color: #fff;
- border-top: 1rpx solid #e8e8e8;
- box-shadow: 0 -2rpx 10rpx rgba(0, 0, 0, 0.1);
- }
- .count {
- font-size: 28rpx;
- color: #333;
- }
- .but {
- width: 180rpx;
- height: 80rpx;
- line-height: 80rpx;
- border-radius: 8rpx !important;
- font-size: 32rpx;
- background-color: #3874F6;
- color: #fff;
- }
|