<view
  wx:if="{{isLotteryInfoReady && visible}}"
  class="lottery-fab {{isFullScreen ? 'full-screen':'vertical-screen'}} {{isVerticalPull ? 'vertical-pull-screen':''}}"
  bind:tap="showLotteryDetail">
  <view class="icon-box {{type}} {{customCls}}">
    <image class="icon" src="{{ isFullScreen ? remotePic.prize_icon_new_land : (lotteryIcon || remotePic.prize_icon_new_land) }}" />
  </view>
  <view class="countdown-box" style="{{ !isFullScreen && lotteryText }}">
    <text wx:if="{{isLotteryEnd}}">已开奖</text>
    <block wx:else>
      <block wx:if="{{countdown.hours !== '00'}}">
        <text>{{ countdown.hours || '00' }}</text>
        <text>:</text>
      </block>
      <text>{{ countdown.minutes || "00" }}</text>
      <text>:</text>
      <text>{{ countdown.seconds || "00" }}</text>
    </block>
  </view>
</view>