<div style="width: 100%; height: 40px;">
    <h3 style="float: left; width: 100px;">发票收货信息</h3>
</div>

<div class="table-responsive">
    <table class="table table-bordered text-nowrap">
        <tr>
            <th width="15%">收票人</th>
            <th width="18%">联系电话/手机</th>
            <th>收票地址</th>
        </tr>

        <tr>
            <td><?= $order_invoice_address_info['consignee'] ?></td>
            <td><?= $order_invoice_address_info['mobile'] ?></td>
            <td>
                <?= $order_invoice_address_info['province_val'] ?>&nbsp;&nbsp;<?= $order_invoice_address_info['city_val'] ?>&nbsp;&nbsp;<?= $order_invoice_address_info['district_val'] ?>&nbsp;&nbsp;<?= $order_invoice_address_info['address'] ?>
            </td>
        </tr>
    </table>
</div>