cm-order-freight-section.vue 848 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. <template>
  2. <view class="freight section cm-order-freight-section">
  3. <view class="lable">运费</view>
  4. <view class="content">
  5. <text class="text">包邮</text>
  6. </view>
  7. </view>
  8. </template>
  9. <script></script>
  10. <style lang="scss" scoped>
  11. .section {
  12. display: flex;
  13. justify-content: space-between;
  14. align-items: center;
  15. padding: 0 24rpx;
  16. line-height: 90rpx;
  17. font-size: 28rpx;
  18. background: #fff;
  19. .label {
  20. color: #333333;
  21. font-weight: 500;
  22. }
  23. .content {
  24. .iconfont {
  25. color: #b2b2b2;
  26. margin-left: 8rpx;
  27. }
  28. }
  29. &.coupon {
  30. .content {
  31. color: #ff457b;
  32. }
  33. }
  34. &.freight {
  35. .content {
  36. .text {
  37. color: #2398ff;
  38. }
  39. }
  40. }
  41. }
  42. </style>