| 1234567891011121314151617181920 | 
<table class="pure-table">    <thead>        <tr>            <th class="w160">更新时间</th>            <th class="w160"><i class="iconfont icon-renminbi1688"></i>金额</th>            <th>内容</th>         </tr>    </thead>    <tbody>        {foreach $list as $vo}        <tr>            <td>{$vo->update_time|date='Y-m-d H:i'}</td>            <td><i class="iconfont icon-renminbi1688"></i><span class="{if $vo.money > 0}red{else}green{/if}">{$vo.money|money}</span></td>            <td>{$vo.message}</td>        </tr>        {/foreach}    </tbody></table><div class="page">{$list|raw}</div>
 |