index.wxss 372 B

123456789101112131415161718192021222324252627
  1. @import '../common/index.wxss';
  2. .v-card {
  3. display: flex;
  4. position: relative;
  5. padding: 8px 12px;
  6. font-size: 12px;
  7. color: #333;
  8. box-sizing: border-box;
  9. width:100%;
  10. height: 125px;
  11. }
  12. .v_card_left {
  13. width: 35%;
  14. }
  15. .van-card__img {
  16. width: 100%;
  17. height: 100%
  18. }
  19. .van-card__content {
  20. position: relative;
  21. min-width: 0;
  22. flex: 1;
  23. padding-left: 10px;
  24. }