1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- /* pages/chinka/chinka.wxss */
- .container{
- padding: 0;
- margin: 0;
- width: 100%;
- }
- .card-box{
- width: 700rpx;
- margin: 0 25rpx;
- display: flex;
- flex-wrap: wrap;
- justify-content: space-between;
- }
- .card-list{
- width: 320rpx;
- background: #f1f1f1;
- padding-top: 20rpx;
- padding: 20rpx 10rpx;
- margin-top: 20rpx;
- border-radius: 20rpx;
- }
- .card-img{
- width: 310rpx;
- height: 170rpx;
- margin: 0 5rpx;
- }
- .card-img image{
- width: 100%;
- height: 100%;
- border-radius: 10rpx;
- }
- .card-price,.card-days{
- display: inline-block;
- width: 155rpx;
- line-height: 32rpx;
- font-size: 24rpx;
- overflow: hidden;
- white-space: nowrap;
- text-overflow: ellipsis;
- }
- .card-name{
- width: 310rpx;
- font-size: 28rpx;
- height: 60rpx;
- line-height: 60rpx;
- overflow: hidden;
- white-space: nowrap;
- text-overflow: ellipsis;
- }
- .card-price{
- color: #cc6031;
- }
- .card-days{
- text-align: right;
- }
|