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