@charset "euc-kr";

@font-face {
    font-family: 'NanumBarunGothic';
    /*src: url('../font/NanumBarunGothic.eot');*/
    src: url('//cdn.jsdelivr.net/font-nanumlight/1.0/NanumBarunGothicWeb.eot');
    /*src: url('../font/NanumBarunGothic.woff') format('woff'), url('../font/NanumBarunGothic.ttf') format('truetype');*/
    src: url('//cdn.jsdelivr.net/font-nanumlight/1.0/NanumBarunGothicWeb.woff') format('woff'), url('//cdn.jsdelivr.net/font-nanumlight/1.0/NanumBarunGothicWeb.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'NanumBarunGothicBold';
    src: url('../font/NanumBarunGothicBold.eot');
    src: url('../font/NanumBarunGothicBold.woff') format('woff'), url('../font/NanumBarunGothicBold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

html, body { font-family:"NanumBarunGothic",'ë§??? ê³???', 'Malgun Gothic',"Helvetica Neue",Helvetica,Arial,sans-serif; background-color:#fff; font-size: 14px;}

/* °Ë»ö¹Ù(ºÎ¸ð) */
.sch_cont {
    position: relative;                   /* ? µå·Ó´Ù¿î ±âÁØÁ¡ */
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 520px;                     /* ³× CSS width¿Í ¸ÂÃã */
    height: 42px;
    border: 1px solid #ddd;
    border-radius: 30px;
    background-color: #fff;
    padding: 0 45px 0 20px;
    box-sizing: border-box;
    box-shadow: 0 0 4px rgba(0,0,0,0.06);
    transition: all 0.2s ease-in-out;
    overflow: visible;                    /* ? µå·Ó´Ù¿îÀÌ ¹ÛÀ¸·Î ³ª¿Íµµ º¸ÀÌ°Ô */
}

/* Æ÷Ä¿½º È¿°ú */
.sch_cont:focus-within {
    border-color: #999;
    box-shadow: 0 0 0 3px rgba(0,0,0,0.05);
}

/* ÀÎÇ² */
.sch_cont input#searchword {
    flex: 1;
    border: none;
    outline: none;
    background: transparent;
    font-size: 14px;
    color: #333;
}
.sch_cont input#searchword::placeholder {
    color: #aaa;
    font-size: 13px;
}

/* µ¸º¸±â ¹öÆ° */
.sch_cont .search-btn {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background: url('/greenmro/images/index/icon_search2.png') no-repeat center;
    background-size: contain;
    border: none;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.2s;
}
.sch_cont .search-btn:hover { opacity: 1; }

/* ? µå·Ó´Ù¿î: °Ë»öÃ¢ ¹Ù·Î ¾Æ·¡ */
.seach_keyword {
    display: none;                        /* ÇÊ¿ä ½Ã JS·Î Åä±Û */
    position: absolute;                   /* ? ºÎ¸ð(sch_cont) ±âÁØ */
    top: calc(100% + 6px);                /* °Ë»öÃ¢ ¾Æ·¡ 6px ¿©¹é */
    left: 0;
    width: 100%;                          /* ? °Ë»öÃ¢ ³Êºñ¿Í µ¿ÀÏ */
    z-index: 305;
}

/* µå·Ó´Ù¿î ¹Ú½º ½ºÅ¸ÀÏ */
.seach_keyword ul {
    margin: 0;                            /* ±âÁ¸ margin-top Á¦°Å */
    list-style: none;
    background: #fff;
    border: 1px solid #ddd;               /* ÁÂ/¿ì/ÇÏ´Ü¸¸ ÁÖ´ø °Í ¡æ Å×µÎ¸® ÀÏ¿øÈ­ */
    border-radius: 10px;                  /* ¸ð¼­¸® »ìÂ¦ µÕ±Û°Ô */
    box-shadow: 0 6px 16px rgba(0,0,0,0.08);
    max-height: 280px;                    /* ±ä ¸ñ·Ï ´ëºñ */
    overflow-y: auto;
}

/* ¾ÆÀÌÅÛ */
.seach_keyword ul li {
    height: 34px;
    line-height: 34px;
    padding: 0 12px;
    cursor: pointer;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.seach_keyword ul li.over,
.seach_keyword ul li:hover {
    background: #f5f5f5;
    color: #4a8208;
}




