.shop_li{
    margin-bottom: 100px;
}
.shop_li .top_menu{
    width: 100vw;
    height: 36px;
    overflow-x:auto;
    border-bottom: 1px solid #ddd;
    position: relative;
}
.shop_li .top_menu {
    -ms-overflow-style: none; 
    /* IE and Edge */
    scrollbar-width: none;
     /* Firefox */
}
.shop_li .top_menu::-webkit-scrollbar {
    display: none; 
    /* Chrome, Safari, Opera*/
}
.shop_li .top_menu ul{
    display: flex;
    width: 495px;
    justify-content: space-between;
    position: absolute;
    top: 0;
    bottom: 0;
    transform: translate(0px, 0px);
    transition-timing-function: cubic-bezier(0.1, 0.57, 0.1, 1);
    transition-duration: 400ms;
}
.shop_li .top_menu ul li{
    text-align: center;
    padding: 7px 5px;
    width: 55px;
    font-size: 14px;
    color: #666;
    position: relative;
}
.shop_li .top_menu ul li.active{
    color: #222;
}
.shop_li .top_menu ul li.active::after{
    border-bottom: 3px solid #5c7dfb;
    position:absolute;
    content: '';
    left:10px; bottom: 0; right: 10px;
}

/* list */
.list ul li.no_list{
    font-size: 14px;
    color:#999;
    text-align: center;
    display: block;
    flex: none;
    border-bottom: 0;
}
.list ul li{
    border-bottom: 1px solid #ddd;
    display: flex;
    padding: 4% 5%;
    justify-content: space-between;
}
.list ul li.page_hidden { display: none }
.list li .list_img{
    width: 70px;
    height: 70px;
    border-radius: 10px;
    overflow: hidden;
}
.list li .list_img img{
    object-fit: cover;
    height: 100%;
    width: 100%;
}
.list li .list_txt{
    width: calc( 100% - 80px );
}
.list .list_txt .name{
    font-size: 16px;
    font-weight: bold;
}
.list .list_txt .add{
    font-size: 12px;
    line-height: 180%;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}
.list .list_txt .menu{
    width: 100%;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
    font-size: 12px;
    color: #999;
    line-height: 180%;
    display: inline;
    margin-right: 10px;
}
.list .list_txt .menu span{
    color: #222;
}
.list .list_txt .menu span i{
    color: #FFCC26;
}
.list .list_txt .time{
    font-size: 12px;
    background-color: #eee;
    display: inline-block;
    padding: 2px 10px;
    color: #666;
    border-radius: 20px;
    margin-top: 5px;
}

/* 검색페이지  */
.search_list {
    margin-top: 80px;
}
.search_list .search_box{
    background-color: #f4f4f5;
    width: 90%;
    margin:0 auto;
    height: 46px;
    border-radius: 30px;
    /* background-image: url(/public/img/app/search_icon.png); */
    background-position: 6% center;
    background-repeat: no-repeat;
    background-size: 22px;
    font-size: 14px;
    margin-bottom: 10px;
}
.search_list .search_box input[type='text']{
    background-color: transparent !important;
    border: 0;
    width: 100%;
    height: 46px;
    padding-right:50px;
    padding-left:5% ;
    font-size: 16px;

}
.search_list .search_box input::placeholder{
    font-size: 14px;
}
.search_list .search_box input:focus{
    box-shadow: none;
}
.search_list li.no_list{
    font-size: 14px;
    text-align: center;
    display: block;
    color: #999;
    border-bottom: 0;
}
.search_list .search_box input[type='image']{
    display: inline-block;
    height: 33px;
    position:absolute;
    top: 6px; right: 16px;
    background-color: transparent !important;
    border: none;
}
.shop_li .list_img{
    position: relative;
}
.shop_li .open{
    position: absolute;
    background-color: rgba(0, 0, 0, 0.4);
    display: block;
    width: 70px;
    height: 70px;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    font-size: 12px;
    text-align: center;
    line-height: 70px;
    color: #fff;
}