/*서브-왼쪽메뉴*/

#depth_menu {
    position: absolute;
    transition: all 0.5s;
    width: 100%;
    height: auto;
    line-height: 60px;
    background: #fff;
    border-bottom: 1px solid #e1e4e3;
    margin: 0px auto;
    bottom: 0;
    /*border-top:1px solid #76b227; border-bottom:1px solid #cbd0c3; box-shadow: 1px 1px 5px rgba(0,0,0,.1);*/
    z-index: 0;
    transition: all 0.5s
}

#depth_menu dl {
    white-space: nowrap;
    margin: 0;
    padding: 0;
    display: inline-block;
    /*border-left:1px solid #fff;*/
}

#depth_menu dd {
    color: #fff;
    display: inline;
    /*border-top:1px solid #fff; border-bottom:1px solid #fff;*/
    border-right: 1px solid rgba(255, 255, 255, .6);
    position: relative;
    white-space: nowrap;
    display: inline-block;
    width: auto
}

#depth_menu dd:last-child {
    border-right: 0px
}

#depth_menu dd:after {
    display: block;
    visibiddty: hidden;
    clear: both;
    content: ""
}

#depth_menu dd:first-child {
    /*border-left:1px solid #dcdcdc;*/
}

#depth_menu dd a {
    color: #666;
    font-size: 1.12em;
    display: block;
    font-weight: 500;
    padding: 0 25px;
    transition: all 0.4s;
    line-height: 60px;
    color: rgba(0, 0, 0, .8);
    display: block;
}

#depth_menu dd a:hover {
    text-decoration: none;
    height: auto;
    color: #fff;
    background: #74c500;
    transition: all 0.4s;
}

#depth_menu dd a:hover:before {
    opacity: 1 !important;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(0, 0, 0, .8);
     !important;
}

#depth_menu dd a.current {
    color: #fff;
    height: 60px;
    font-weight: 500;
    /*border-bottom:4px solid #3c3c3c;*/
    width: 100%;
    background: #74c500
}



@media (max-width:1590px) {
    #depth_menu {
        overflow: scroll;
    }
}



@media (max-width:767px) {
    #depth_menu dd a {
        padding: 0 10px;
        transition: all 0.4s;
    }
}