<!-- type="{{finish?'success':'circle'}}" -->
<view
  class="dgd-step-item dgd-step-item-{{vertical ? 'vertical' : 'horizontal'}} {{first ? 'first' : last ? 'last' : ''}} {{process ? 'current' : finish ? 'finish' : ''}}">
  <icon
    wx:if="{{icon && process}}"
    type="{{icon}}"
    size="{{process ? 23 : 15}}"
    color="{{process ? 'rgb(72,194,61)' : ''}}"
    class="step-icon {{process ? 'big' : 'small'}}" />
  <view
    wx:else
    class="step-icon step-icon-dot">
  </view>
  <view class="remark">
    <view class="title">{{title}}</view>
    <view class="content" wx:if="{{desc}}">{{desc}}</view>
  </view>
  <view class="tail" wx:if="{{!last}}"></view> 
</view>