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
|
<?php include_once("../../_common.php"); ?> <link href="../../css/import.css" rel="stylesheet" type="text/css">
<style> /* ÆË¾÷ */ .HWbuyWrap{ position:relative; width:502px; height:100%; padding:10px; } .HWbuyWrap .close{ position:absolute; right:10px; width:50px; height:50px; z-index:3; } .HWbuyWrap dt{ display:block; width:500px; height:50px; border:1px solid #d9d9d9; background:url('../../images/hardware/hardware_buy_title.png') no-repeat; overflow:hidden; } .HWbuyWrap dt span{ padding-left:150px; line-height:50px; font-size:16px; font-weight:600; } .HWbuyWrap dd{ display:block; width:500px; text-align:center; } .HWbuyWrap .hwTel{ margin:50px 0; } .HWbuyWrap .hwTel .title{ line-height:26px; color:#777; font-size:17px; font-weight:600; } .HWbuyWrap .hwTel .tel{ color:#ff7400; line-height:26px; font-size:24px; font-weight:600; } .HWbuyWrap .hwText{ height:50px; line-height:50px; font-size:15px; font-weight:600; border-top:1px solid #d9d9d9; } </style> <div class="HWbuyWrap"> <a href="javascript:window.close();" class="close"></a> <dl> <dt><span>Çϵå¿þ¾î µµÀԾȳ»</span></dt> <dd class="hwTel"> <span class="title">- Çϵå¿þ¾î µµÀÔ»ó´ã : </span> <span class="tel">(02) 401-5121</span> </dd><!-- //hwTel -->
<dd class="hwText">º» Çϵå¿þ¾î´Â ´ç»çÀÇ ¼Ö·ç¼Ç°ú ÇÔ²² »ç¿ëµË´Ï´Ù.</dd><!-- //hwText --> </dl> </div><!-- HWbuyWrap -->
|