/home/mjc1/public_html/html/millennium/web_manual/index.php


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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
<?php
include_once("./dbcon.php");

include_once(
"../Page/common/header_manual.php");
include_once(
"./manual_sub_header.php");
?>

<style>
.wrap{overflow: unset;}
.banner_section{padding: 40px 0px;}

#cate_menu_div{display: flex;justify-content: flex-start;flex-wrap: wrap;}
.tit_blue{color: #1A558C;}
.manual_cate_tit{font-size: 24px;font-weight: 800;line-height: 24px;margin-bottom: 34px;}

/*1Â÷ Ä«Å×°í¸®*/
.cate_first{width: 300px;float: left;margin-bottom: 20px;}
.cate_first:nth-child(n+5){padding-top: 20px;}
.cate_first:nth-child(4n+1){position: relative;}
.cate_first:nth-child(4n+1)::after{content: '';position: absolute;left:0px;top:0px;width: 1200px;height: 1px;background: #eee;}
.cate_first:nth-child(1)::after{background: none;}
.cate_tit_first{width: 100%;height: 44px;display: block;line-height: 44px;font-size: 18px;font-weight: 600;color: #5797D2 !important;}

/*2Â÷,3Â÷ Ä«Å×°í¸®*/
.cate_tit_second{width: 100%;height: 42px;display: block;line-height: 42px;font-size: 16px;font-weight: 600;color: #343434 !important;}
.cate_second:hover .cate_tit_second{background: #F4F4F4;}
.cate_tit_third{width: 100%;height: 32px;display: block;line-height: 32px;font-size: 14px;font-weight: 600;color: #8e8e8e !important;padding-left: 20px !important;}
.cate_tit_third:hover{background: #F4F4F4;color: #343434 !important;}
.cate_second{position: relative;}
.cate_third{position: absolute;left: 90%;top:0px;border: 1px solid #343434;width: 100%;background: #fff;z-index: 9;overflow: hidden;display: none;}
.cate_second:hover .cate_third{display: block;}
</style>

<div class="banner_section">
    <div class="wrap">
        <img src="../img/web_manual/webmanual_main_banner01-1.png" alt="À¥¸Å´º¾ó_¸ÞÀιè³Ê" style="background: #eee;width: 100%;height: 450px;">
    </div>
</div>

<?php

if($stc != "") {
    
$where .= " AND a.name LIKE '%$stc%'";
}

?>

<div class="manual_cate_section">
    <div class="wrap" style="border-top: 1px solid #E9E9E9;">
        <h3 class="tit_blue manual_cate_tit" style="margin-top: 40px;">À¥¸Å´º¾ó ¸ñÂ÷</h3>
        <div id="cate_menu_div"><!--Ä«Å×°í¸® ¸Þ´º ¿µ¿ª-->
            <?php
                $cat1_sql 
"SELECT * FROM mBoard_menual_cate1 AS a WHERE 1=1 ORDER BY idx ASC";
                
$cat1_res mysql_query($cat1_sql,$connect_web);
                while(
$cat1_info mysql_fetch_array($cat1_res)) {
            
?>

            <ul class="cate_first">
                <li>
                    <a class="cate_tit_first"><?php echo $cat1_info['name']; ?></a><!--// 1Â÷ Å±״ aűנȰ¼ºÈ­ ¾øÀ½-->
                    <?php
                        $cat2_sql 
"SELECT * FROM mBoard_menual_cate2 AS a WHERE a.pidx = '{$cat1_info[idx]}$where ORDER BY idx ASC";
                        
$cat2_res mysql_query($cat2_sql,$connect_web);
                        while(
$cat2_info mysql_fetch_array($cat2_res)) {
                    
?>

                    <ul class="cate_second">
                        <li>
                            <a href="./func_detail.php?c2=<?php echo $cat2_info['idx']; ?>" class="cate_tit_second">
                                <?php echo $cat2_info['name']; ?>
                            </a><!--// 2Â÷ Å±״ aűנȰ¼ºÈ­ ¾ø´Â °æ¿ì, Àִ °æ¿ì ±¸ºÐ-->
                            <ul class="cate_third">
                                <?php
                                    $cat3_sql 
"SELECT * FROM mBoard_menual_cate3 AS a WHERE a.pidx = '{$cat2_info[idx]}$where ORDER BY idx ASC";
                                    
$cat3_res mysql_query($cat3_sql,$connect_web);
                                    while(
$cat3_info mysql_fetch_array($cat3_res)) {
                                
?>
                                <li><a href="./func_detail.php?c3=<?php echo $cat3_info['idx']; ?>" class="cate_tit_third"><?php echo $cat3_info['name']; ?></a></li><!--// 2Â÷ Å±״ aűנȰ¼ºÈ­ ¾ø´Â °æ¿ì, Àִ °æ¿ì ±¸ºÐ-->
                                <?php ?>
                            </ul>
                        </li>
                    </ul>
                    <?php ?>
                </li>
            </ul>


            <?php ?>
        </div><!--//Ä«Å×°í¸® ¸Þ´º ¿µ¿ª-->
    </div>
</div>

<style>
.call_bar{background: #EDF7FA; border-radius:6px;display: flex;justify-content: space-between;}
.call_left, .call_right{width: 50%;text-align: center;padding: 32px 0px;}
.call_left p{font-size: 16px;line-height: 28px;letter-spacing: -0.4px;color: #343434;font-weight: 600;}
.call_right span:nth-child(1){font-size: 20px;line-height: 56px;color: #343434;font-weight: 600;}
.call_right span:nth-child(2){font-size: 26px;line-height: 56px;color: #1A558C;font-weight: 900;}

.quick_menu_tit{font-size: 24px;line-height: 24px;font-weight: 600;text-align: center;color: #1A558C;margin-bottom: 30px;}
.quick_menu_section ul{margin: 0 auto;width: 900px;display: flex;justify-content: space-between;}
.quick_menu_section ul li a{width: 210px;display: block;background: #1A558C;font-size: 18px;line-height: 50px;font-weight: 600;color: #fff;text-align: center;border-radius: 8px;}
</style>

<div class="call_section" style="margin-top: 130px;">
    <div class="wrap">
        <div class="call_bar">
            <div class="call_left">
                <p>±âŸ ±Ã±ÝÇÑ »çÇ×ÀÌ ÀÖÀ¸½Ã¸é ¿ìÃøÀÇ ÀüÈ­¹øÈ£·Î ¿¬¶ô¹Ù¶ø´Ï´Ù</p>
                <p>ÆòÀÏ 09:00 - 18:00 (Åä,ÀÏ,°øÈÞÀÏ ÈÞ¹«) / Á¡½É½Ã°£ 12:00 - 13:00</p>
            </div>
            <div class="call_right">
                <span>°í°´Áö¿ø</span>
                <span>1566-8680</span>
            </div>
        </div>
    </div>
</div>

<div class="quick_menu_section" style="margin-top: 60px;">
    <div class="wrap">
        <h3 class="quick_menu_tit">- È¨ÆäÀÌÁö ¹Ù·Î°¡±â -</h3>
        <ul>
            <li><a href="https://mjsoft.co/html/millennium/intro.php?pcver=1" target="_blank">¿¥Á¦À̼ÒÇÁÆ® È¨</a></li>
            <li><a href="https://mjsoft.co/html/millennium/millennium_main.php" target="_blank">õ³â°æ¿µ 3CS</a></li>
            <li><a href="https://mjsoft.co/html/millennium/smart_main.php" target="_blank">½º¸¶Æ®Æù ¿µ¾÷°ü¸®</a></li>
            <li><a href="https://mjsoft.co/html/millennium/product_pdamain.php" target="_blank">PDA ¿µ¾÷°ü¸®</a></li>
        </ul>
    </div>
</div>

<script>
$(function(){
    $('.cate_second').mouseover(function(){ //2Â÷ Ä«Å×°í¸®¿¡ ¸¶¿ì½º ¿Ã¶ó°¬À» °æ¿ì 3Â÷Ä«Å×°í¸® Ç¥½Ã
        var length = $(this).find('.cate_third').children('li').length;
        console.log(length);
        if(length == "0"){
            $(this).find('.cate_third').css('display','none');
        }
    });

    $('.cate_second').each(function(){ //3Â÷ Ä«Å×°í¸®¸¦ °¡Áø 2Â÷Ä«Å×°í¸® µû·Î Ç¥½Ã
        var cate_third_count = $(this).find('.cate_third li').length;
        if(cate_third_count > 0){
            $(this).find('.cate_tit_second').append('<img src="../img/web_manual/icon_manual_body.png" alt="Ç¥½Ã" style="margin-top: -3px;width: 16px;">');
        }
    });
});
</script>

<?php include("./manual_footer.php")?>