1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- <template>
- <view class="freight section cm-order-freight-section">
- <view class="lable">运费</view>
- <view class="content">
- <text class="text">包邮</text>
- </view>
- </view>
- </template>
- <script></script>
- <style lang="scss" scoped>
- .section {
- display: flex;
- justify-content: space-between;
- align-items: center;
- padding: 0 24rpx;
- line-height: 90rpx;
- font-size: 28rpx;
- background: #fff;
- .label {
- color: #333333;
- font-weight: 500;
- }
- .content {
- .iconfont {
- color: #b2b2b2;
- margin-left: 8rpx;
- }
- }
- &.coupon {
- .content {
- color: #ff457b;
- }
- }
- &.freight {
- .content {
- .text {
- color: #2398ff;
- }
- }
- }
- }
- </style>
|