.filter_wrap .item_main{
    width: 50%;
}

.item_main .item_wrap{
    width: calc(100% - 280px);
    padding-left: 16px;
}

.item_main .price_cont{
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 12px;
    margin-top: 12px;
  }
  
  .item_main .price_cont .price{
    color: #2F2F2F;
    font-size: 24px;
    font-weight: 600;
    line-height: 28px;
    margin-right: 18px;
    position: relative;
  }
  
  .item_main .price_cont .area::before{
    content: "";
    position: absolute;
    width: 2px;
    height: 2px;
    background: #808080;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    left: -8px;
  }
  
  .item_main .price_cont .area{
    color: #808080;
    font-size: 14px;
    line-height: 18px;
    position: relative;
}