123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103 |
- .cardbox {
- position: relative;
- display: flex;
- justify-content: space-between;
- padding: 20rpx;
- margin: 20rpx;
- box-shadow: 0rpx 0rpx 10rpx rgb(218, 218, 218);
- border-radius: 10rpx;
- .card {
- width: 260rpx;
- height: 180rpx;
- image {
- width: 100%;
- height: 100%;
- }
- }
- .infobox {
- width: 400rpx;
- height: 200rpx;
- .title {
- font-size: 32rpx;
- display: -webkit-box;
- -webkit-box-orient: vertical;
- -webkit-line-clamp: 3;
- overflow: hidden;
- }
-
- .time {
- font-size: 28rpx;
- }
- }
- .status {
- position: absolute;
- bottom: 0rpx;
- right: 0rpx;
- font-size: 25rpx;
- border-radius: 10rpx;
- background: #4F9AF7;
- padding: 10rpx 20rpx;
- color: white;
- }
- }
|