1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
|
<?php $cur_img_url = $j3_imgm_url."/".$sk['sk_img_path']; $bank_list = bankbook_get(); $notice_list = notice_simple_get(1);
if($skin_css!=''){ echo $skin_css; } else { ?> <style>
</style> <?php }?> <!-- 고객센터 --> <div class="class_skin_idx_<?php echo $sk_idx;?>"> <h1 class="screen_out">하단메뉴</h1> <div class="width_full height35 align_c black_line_t black_line_b bg_dark_gray"> <h2 class="screen_out">회원메뉴/PC버전보기</h2> <ul> <?php if($id_ccode==''){ ?> <li class="float_l black_line_r ellipsis" style="width:19.75%;"><a class="in_block width_full gray txt13 l_height35 space_1 hdgnb_login_class">로그인</a></li> <?php } else {?> <li class="float_l black_line_r ellipsis" style="width:19.75%;"><a class="in_block width_full gray txt13 l_height35 space_1 hdgnb_logout_class">로그아웃</a></li> <?php }?> <li class="float_l black_line_r ellipsis" style="width:19.75%;"><a class="in_block width_full gray txt13 l_height35 space_1 hdgnb_11_class">1:1문의</a></li> <li class="float_l black_line_r ellipsis" style="width:19.75%;"><a class="in_block width_full gray txt13 l_height35 space_1 hdgnb_mypage_class">마이페이지</a></li> <li class="float_l black_line_r ellipsis" style="width:19.75%;"><a class="in_block width_full gray txt13 l_height35 space_1 hdgnb_order_class">주문내역</a></li> <li class="float_l ellipsis" style="width:19.75%;"><a class="in_block width_full gray txt13 l_height35 space_1" href='<?php echo $j3_shopp_url;?>?device=pc'>PC버전</a></li> </ul> </div> <div class="p0_10 height40 l_height40 bg_gray"> <h2 class="float_l mr10 txt14">Notice</h2> <p><em class="float_l in_block txt13 ellipsis" style="width:52%;"><a href='<?php echo $notice_list[0]['href'];?>'><?php echo $notice_list[0]['w_subject'];?></a></em><span class="float_r gray2 txt12"><?php echo $notice_list[0]['reg_date2'];?> <a class="p0_5 box20 align_c" href='<?php echo "{$j3_shop_url}/board.php?b_table=notice";?>'><img src="<?php echo $cur_img_url;?>/ico_more.png" alt="메뉴" class="p3 box14"></a> </div> <div class="p15_0 p0_10 height80"> <h2 class="screen_out">고객센터</h2> <div class="float_l" style="width:48.5%;"> <h3 class="mb5 txt14">Online-Bank</h3> <?php foreach($bank_list as $key=>$val){ ?> <p class="txt10 l_height19 space_1"><?php echo "{$val['bk_name']} : {$val['acntnumber']}";?><span class="gray"> (<?php echo $val['accountholder'];?>)</span></p> <?php } ?> </div> <div class="float_r" style="width:48.5%;"> <h3 class="mb5 txt14">CS center</h3> <p class="mb5 custom2 txt24 bold l_height24 space_1" href='tel:010-9357-0525'><?php echo $configshop['telno1'];?></p> <p class="txt10 l_height15 space_1"><?php echo nl2br($configshop['work_time']);?></p> </div> </div> </div> <!-- //고객센터 -->
|