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
55
56
57
58
59
60
61
62
|
<?php $cur_img_url = $j3_img_url."/".$sk['sk_img_path']; $bank_list = bankbook_get(); $notice_list = notice_simple_get(5);
if($skin_css!=''){ echo $skin_css; } else { ?> <style> /*공지사항/배너2개*/ .notice_txt h4{color: #13a89e;font-weight: bold;font-size: 20px;border-bottom: 1px solid #dfdfdf;padding-bottom: 15px;margin-bottom: 15px;} .notice_txt dl dt a{font-size:13px;color:#676767} .notice_txt dd{font-size:13px;color:#676767;margin-bottom: 15px;}
.video_bn{width:240px;height:240px;float:left;margin-left: 25px;background: url('<?php echo $cur_img_url;?>/box_shadow_bg.png');text-align:center;} .video_bn a img{margin-bottom: 32px;margin-top: 70px;} .video_bn p{font-size: 18px;color: #fff;line-height:22px;} .book_bn{width:240px;height:240px;float:left;margin-left: 15px;box-shadow: inset 3px 3px 3px rgba(0, 0, 0, 0.15);background: #fcb040;text-align:center;} .book_bn a img{margin-bottom: 32px;margin-top: 70px;} .book_bn p{font-size: 18px;color: #fff;line-height:22px;} </style> <script> $(function(){ $(".class_skin_idx_<?php echo $sk_idx;?> .link01").attr("href","http://shop2.mjsoft.co/j3/wittenglish"); $(".class_skin_idx_<?php echo $sk_idx;?> .link02").attr("href","http://shop2.mjsoft.co/j3/wittenglish"); }); </script> <?php }?> <section class="class_skin_idx_<?php echo $sk_idx;?>"> <div class="p10_0"> <div id="w1000"> <div class="width480 float_l height130 p20_0 notice_txt"> <h4>공지사항 <a class="btn_more" href="<?php echo "{$j3_shop_url}/board.php?b_table=notice";?>"><img src="<?php echo $cur_img_url;?>/notice_more.png" alt="더보기"></a></h4> <dl> <?php $cnt = 0; foreach($notice_list as $key=>$val){ ?> <dt class="width380 float_l ellipsis"><a href="<?php echo $val['href'];?>"><?php echo $val['w_subject'];?></a></dt> <dd class="align_r"><?php echo $val['reg_date2'];?></dd> <?php $cnt++; } ?> </dl> </div> <ul> <li class="video_bn"> <a class="block link01"><img src="<?php echo $cur_img_url;?>/video_icon.png"> <p>동영상<br>보러가기</p> </a> </li> <li class="book_bn"> <a class="block link02"><img src="<?php echo $cur_img_url;?>/book_icon.png"> <p>위튼북스 교재<br>보러가기</p> </a> </li> </div> </div> </div> </section><!--//main_section-->
|