
    <div class="modal-header">
        <button type="button" class="close" data-dismiss="modal" aria-hidden="true"></button>
        <h4 class="modal-title"> 請選擇與受訪者關係 及 事由</h4>
    </div>
    <div class="modal-body">
        <label style="color:black;font-size:24px;font-weight:bold;">關係為</label><input id="txt_relationships" type="text" readonly style="margin-left:5px;color:green;border: 0px solid;font-size:24px;font-weight:bold;" value=""><br>
        <?php foreach($guest_relationship as $guest_relationships): ?>
        <button class='btn blue btn_relationships' value="<?php echo e($guest_relationships); ?>" style='font-size:16px;height:28px;margin:6px;padding:3px 15px;min-width:70px;'><?php echo e($guest_relationships); ?></button>
        <?php endforeach; ?>
        <br><br>
        <label style="color:black;font-size:24px;font-weight:bold;">事由為</label><input id="txt_guest_cause" type="text" readonly style="margin-left:5px;color:green;border: 0px solid;font-size:24px;font-weight:bold;" value=""><br>
        <?php foreach($guest_cause as $guest_causes): ?>
        <button class='btn blue btn_guest_cause' value="<?php echo e($guest_causes); ?>" style='font-size:16px;height:28px;margin:6px;padding:3px 15px;min-width:70px;'><?php echo e($guest_causes); ?></button>
        <?php endforeach; ?>
        <br><br>
        <div align="center">
            <button class="guest_camera_Button bold" data-toggle="modal" data-target="#camera" style="background:purple;width:200px;height:50px;font-size:20px;color:white">拍 攝 訪 客</button>
        </div>
    </div>
    <div class="modal-footer">
        <button id="btn_add_tags" class="btn red" style="margin-right:55%;">新增項目</button>
        <button type="button" data-dismiss="modal" class="btn btn-outline dark">取消</button>
        <button name="btn_box_id_submit4" type="button" class="btn green">送出</button>
    </div>