detailItem.scss 694 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. .list-item {
  2. width: 100%;
  3. border-bottom: 1rpx solid $border-color;
  4. padding: 28rpx 32rpx;
  5. line-height: 1.8;
  6. background-color: white;
  7. &:last-child {
  8. border-bottom: 0 none;
  9. }
  10. .list-item-main {
  11. @include left;
  12. .left {
  13. flex: 1;
  14. font-size: 30rpx;
  15. color: $dark;
  16. }
  17. .right {
  18. color: $gray;
  19. font-size: 30rpx;
  20. }
  21. }
  22. .list-item-desc {
  23. font-size: 28rpx;
  24. color: #666;
  25. margin-top: 10rpx;
  26. @include left;
  27. .left {
  28. flex: 1;
  29. }
  30. .right {}
  31. }
  32. }
  33. .wk-button {
  34. .list-item {
  35. background-color: unset;
  36. border-bottom: 1rpx solid $border-color;
  37. }
  38. &:last-child .list-item {
  39. border-bottom: 0 none;
  40. }
  41. }