.wrap_pop_item {
    width: 100%;
    height: 280px;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    
  }
  .wrap_pop_item img{
    width: 100%;
    height: inherit;
    object-fit: cover;
    transition: transform .2s; /* Animation */
  }
  .wrap_pop_item:hover img{
    transform: scale(1.2)
  }
  .pop_text {
    padding: 10px;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 120px;    
    color: #FFF;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.65), transparent);
  }
  .pop_name {
    font-size: 25px;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    height: 38px;
  }
  .pop_detail {
    font-size: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    height: 47px;
    padding-top: 5px;
    padding-bottom: 5px;
  }

  .wrap_ppt_item {
    width: 100%;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    background-color: #f8f8f8;
  }
  .ptt_wrap_img, .ptt_wrap_img > img{
    width: 100%;
    height: 200px;
    object-fit: cover;
    overflow: hidden;
    transition: transform .2s; /* Animation */
    
  }
  .wrap_ppt_item:hover .ptt_wrap_img > img{
    transform: scale(1.2)

  }
  /* .ppt_overlay{
    height: 0%;
    position: absolute;
    width: 100%;
    left: 0px;
    bottom: 0px;
    text-align: center;
    background-color: #FFF;
    -moz-transition: height .3s;
    -ms-transition: height .3s;
    -o-transition: height .3s;
    -webkit-transition: height .3s;
    transition: height .3s;
  }
  .wrap_ppt_item:hover .ppt_overlay{
    padding-top: 50%;
    height: 100%;
  }
  .wrap_ppt_item:hover > img{
    -webkit-filter: blur(9px);
    -moz-filter: blur(9px);
    -o-filter: blur(9px);
    -ms-filter: blur(9px);
    filter: blur(9px);
  } */
  .ppt_type {
    position: absolute;
    padding: 3px 10px;
    font-size: 13px;
    background-color: #FFF;
    border-radius: 5px;
    left: 8px;
    top: 8px;
    z-index: 200;
  }
  .ppt_text {
    padding: 10px;
    padding-bottom: 0px;
    width: 100%;  
  }
  .ppt_name {
    font-size: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    height: 44px;
  }
  .ppt_location {
    font-size: 13px;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    height: 30px;
    padding-top: 5px;
    padding-bottom: 10px;
    color: #797979;
    border-bottom: solid 1px #e0e0e0;
  }
  .ppt_detail{
    padding: 5px 9px;
  }
  .ppt_detail table td {
    width: 50%;
    font-size: 13px;
    padding-top: 3px;
  }
  .ppt_detail table td img{
    width: 18px !important;
    height: auto;
    display: inline-block !important;
    margin-right: 4px;
    opacity: 0.8;
  }