1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071 |
- .container{
- height: 100vh;
- }
- .content{
- flex: 1;
- overflow: auto;
- margin: 4rpx 0;
- }
- .card-box{
- margin: 36rpx 58rpx;
- position: relative;
- box-sizing: border-box;
- }
- .card-img{
- width: 100%;
- height: 140rpx;
- }
- .card-cont{
- height: 140rpx;
- position: absolute;
- top: 0;
- display: flex;
- align-items: center;
- box-sizing: border-box;
- padding: 0 28rpx 0 46rpx;
- left: 0;
- right: 0;
- width: 100%;
- }
- .card-cont-lf{
- font-weight: 600;
- font-size: 24rpx;
- color: #FDA233;
- line-height: 34rpx;
- flex-shrink: 0;
- }
- .card-cont-ri{
- margin-left: 110rpx;
- font-weight: 600;
- font-size: 28rpx;
- color: #000000;
- display: flex;
- justify-content: space-between;
- align-items: center;
- flex: 1;
- overflow: hidden;
- box-sizing: border-box;
- }
- .card-cont-ri-text{
- overflow: hidden;
- margin-right: 10rpx;
- box-sizing: border-box;
- }
- .pop-time{
- font-weight: 400;
- font-size: 20rpx;
- color: #B0B0B0;
- line-height: 28rpx;
- margin-top: 6rpx;
- }
- .card-cont-status{
- width: 140rpx;
- height: 56rpx;
- margin-top: 10rpx;
- }
- .loading{
- color: #969799;
- font-size:24rpx;
- text-align: center;
- padding-bottom: 40px;
- }
|