/** Shopify CDN: Minification failed

Line 31:22 Expected identifier but found "{"
Line 31:23 Unexpected "{"
Line 31:31 Expected ":"

**/
  .collection_custom_top .collection_custom_grid{
     padding:10px;
     overflow-x: auto;
  }
  .collection_custom_top .collection_custom_grid .collection_custom_image_list{
    grid-template-columns: repeat(4, 1fr); /* 每行4列，列宽为1fr */
    /* min-width:1200px; */
    gap:8px;
  }

  
  
  .collection_custom_top .collection_custom_grid .collection_custom_image_list a{
    display:flex;
    align-items:center;
    border-radius:5px;
    padding:4px 10px;
    background-color:#fcfcfc;
    /* box-shadow: 0 0 10px rgba(0, 0, 0, 0.12), 0 0 20px rgba(0, 0, 0, 0.08); */

  }
   .collection_custom_top .collection_custom_grid .collection_custom_image_list a:hover{
    box-shadow: 0 2px 4px rgba(0, 0, 0, .12), 0 0 6px rgba(0, 0, 0, .04);
     background-color:{{section.settings.h_bgc_color}};
   }
  .collection_custom_top .collection_custom_grid .collection_custom_image_list a .collection_custom_image{
    width:100%;
    padding-bottom:0;
    border-radius:0;
    width: 65px;
    height: 65px;
    flex-shrink: 0;
  }
  .collection_custom_top .collection_custom_grid .collection_custom_image_list a .collection_custom_image_title{
    padding: 0 10px 0 30px;
    font-weight: 500;
    font-size: 16px;
    margin:0;
    display: -webkit-box;           /* 使用弹性盒子模型 */
    -webkit-line-clamp: 2;          /* 限制显示的行数为2行 */
    -webkit-box-orient: vertical;   /* 设置盒子方向为垂直 */
    overflow: hidden;               /* 超出部分隐藏 */
    text-overflow: ellipsis;        /* 显示省略号 */
  }
 .collection_custom_top .collection_custom_grid .collection_custom_image_list a .collection_custom_image img{
   height:100%;
   width:100%;
   border-radius:3px;
   object-fit:cover;
 }
   .collection_custom_top .collection_custom_box .collection_custom_image_list a .collection_custom_image_title{
      font-size:16px;
     text-align:left;
  }
  @media screen and (max-width:750px){

    .collection_custom_top .collection_custom_grid .collection_custom_image_list a:hover{
     background-color:#fcfcfc;   
   }
    .collection_custom_grid {
    overflow: scroll;
    -ms-overflow-style: none;  /* 适用于 IE 和 Edge */
    scrollbar-width: none;     /* 适用于 Firefox */
}
.collection_custom_grid::-webkit-scrollbar {
    display: none;  /* 适用于 Webkit 浏览器 */
}
  .collection_custom_box{
    overflow:auto;
  }
  .collection_custom_top .collection_custom_grid .collection_custom_image_list a{
    display:flex;
    align-items:center;
    border-radius:5px;
    padding:5px 8px;
    background-color:#fcfcfc;
  }


   .collection_custom_top .collection_custom_box .collection_custom_image_list a .collection_custom_image_title{
      font-size:14px;
  }
  .collection_custom_top .collection_custom_grid .collection_custom_image_list a .collection_custom_image_title{
      font-size:14px;
      flex:1;
      padding:0 10px;
      font-size: 14px;
    text-align:left;
    font-weight: 600;
  }
    .collection_custom_top .collection_custom_grid{
    padding:0;
  }
  .collection_custom_top .collection_custom_grid .collection_custom_image_list{
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    max-height: 275px;
  }
     .collection_custom_top .collection_custom_grid .collection_custom_image_list a{
       min-width:280px;
     }
}