123456789101112131415161718192021222324252627 |
- @import '../common/index.wxss';
- .v-card {
- display: flex;
- position: relative;
- padding: 8px 12px;
- font-size: 12px;
- color: #333;
- box-sizing: border-box;
- width:100%;
- height: 125px;
- }
- .v_card_left {
- width: 35%;
- }
- .van-card__img {
- width: 100%;
- height: 100%
- }
- .van-card__content {
- position: relative;
- min-width: 0;
- flex: 1;
- padding-left: 10px;
- }
|