  .category-cover {
    position: relative;
    padding-bottom:var(--collection-cover-pd, 31.25%);
    width: 100%;
    font-size: 0;
    background-color:var(--collection-cover-bg-color, var(--theme-border-color));
  }
  .category-cover img {
    position: absolute;
    height: 100%;
    width: 100%;
    object-fit: cover;
  }

  .pagination-list {
    margin-bottom: var(--collection-section-bottom, 40px);
  }
  .category-description {
    position: relative;
    max-height: 97px;
    margin-bottom:var(--collection-description-bottom,var(--collection-section-bottom,40px));
    overflow-y: hidden;
    font-size: var(--collection-description-size,16px);
    line-height: var(--collection-description-line-height,24px);
    text-overflow: ellipsis;
  }
  .category-description.content-limit--4::after{
    content: "";
    display: block;
    height: 50px;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: linear-gradient(to top, var(--page-bg-color), rgba(0, 0, 0, 0));
  }
  .product-list {
    margin-bottom: calc(var(--collection-section-bottom,40px) - var(--h-space));
  }
  .no-products {
    padding: 80px 0;
    font-size: 36px;
    font-weight: 600;
    text-align: center;
  }
  .category-description.no-limit {
    max-height: initial;
  }
  .auto-product{
    --section-title-align:var(--section-title-text-align);
    padding:var(--list-auto-product-padding, 0 var(--side-padding) var(--section-space)) ;
  }
  @media screen and (max-width: 767px) {
    .no-products{
      font-size: 20px;
    }
  }

  .collection-product-list {
    flex: 1;
  }

  .collection-product-list.isloading {
    opacity: .3;
    pointer-events: none;
  }

  .category-summary.isloading>span {
    opacity: 0;
  }

  .category-summary {
    position: relative;
    margin-right: 15px;
  }

  .category-container .category-header {
    justify-content: var(--collection-cate-header-justify-content, flex-end);
  }

  .collection-product-body {
    display: flex;
  }

  .collection-side-filter {
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
  }

  .collection-sideflt-form {
    width: var(--collection-sideflt-form-width, 230px);
    margin-right: var(--collection-sideflt-form-right, 30px);
  }
  .collection-sideflt-body{
    max-width:var(--collection-sideflt-form-width, 230px);
    overflow: auto;
  }
  .collection-sideflt-body::-webkit-scrollbar{
    display:none;
  }
  .collection-sideflt-section {
    margin-top: var(--collection-sideflt-section-top, 30px);
    border: var(--collection-sideflt-section-border,  1px solid #f7f8f9);
  }

  .collection-sideflt-price {
    display: flex;
    margin-bottom:var(--collection-sideflt-price-bottom, 10px);
  }

  .collection-sideflt-price>input {
    width: 50%;
    border: var(--collection-sideflt-price-border, 1px solid var(--theme-border-color));
  }

  .collection-sideflt-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: var(--collection-sideflt-header-padding, 15px 13px 15px);
    background-color: var(--collection-sideflt-header-bgcolor, #f7f8f9);
    cursor: pointer;
  }

  .collection-sideflt-header:hover .collection-sideflt-title {
    text-decoration: underline;
  }

  .collection-sideflt-title {
    display: flex;
    align-items: center;
    justify-content:var(--sideflt-title-justify-content, space-between);
    font-weight:var(--collection-sideflt-title-weight,700);
    font-size: var(--collection-sideflt-title-size, 16px);
  }

  .sideflt-remove-all {
    font-size:var(--sideflt-remove-all-size, 14px );
    font-weight:var(--sideflt-remove-all-weight, 400);
    text-decoration:var(--sideflt-remove-all-text, underline);
    cursor: pointer;
  }

  .collection-sideflt-header .iconfont {
    font-size:var(--sideflt-header-iconfont-size, 14px);
  }

  .collection-sideflt-select {
    display: flex;
    flex-direction: column;
    padding: var(--collection-sideflt-select-padding, 13px);
  }

  .collection-sideflt-select+.collection-sideflt-select {
    margin-top:var(--collection-sideflt-select-top, -26px);
  }

  .sideflt-body-colors {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .collection-sideflt-label {
    display: flex;
    align-items: center;
    margin-bottom: var(--collection-sideflt-label-bottom, 10px);
    white-space: normal;
    cursor: pointer;
  }

  .sideflt-label-color {
    flex-direction: column;
    flex-wrap: wrap;
  }

  .sideflt-option-color {
    width: 33.33%;
    flex-shrink: 0;
  }

  .collection-sideflt-label:hover .collection-sideflt-txt {
    opacity: var(--sideflt-label-hover-opacity, .8);
  }

  .sideflt-color-txt {
    padding: 0 2px;
    width: 100%;
    text-align: center;
    overflow: hidden;
  }

  .collection-filter-pirce {
    width: 100%;
    text-align: center;
  }

  .sideflt-price-begin {
    margin-right: 10px;
  }

  .collection-sideflt-checkbox {
    position: relative;
    flex-shrink: 0;
    width:var(--collection-sideflt-checkbox-width, 18px);
    height:var(--collection-sideflt-checkbox-height, 18px);
    margin-right: var(--collection-sideflt-checkbox-right, 10px);
    border:var(--collection-sideflt-checkbox-border, 2px solid #eee);
    border-radius: 4px;
  }

  :checked+.collection-sideflt-checkbox::after {
    content: "";
    display: block;
    position: absolute;
    top: 2px;
    left: 2px;
    right: 2px;
    bottom: 2px;
    border-radius: 2px;
    background: var(--highlight-bg-color);
  }

  :checked~.sideflt-color-txt {
    color: var(--highlight-font-color);
  }

  .collection-sideflt-color {
    width: 24px;
    height: 24px;
    border-radius: 50%;
  }

  .collection-sideflt-selected {
    display: flex;
    flex-wrap: wrap;
  }

  .sideflt-selected-item {
    display: flex;
    align-items: var(--sideflt-selected-item-align, baseline);
    margin: var(--sideflt-selected-item-margin, 15px 15px 0 0);
    padding: var(--sideflt-selected-item-padding, 11px 12px 10px);
    border:var(--sideflt-selected-item-border,  1px solid #eee);
    border-radius: 20px;
    font-size: 13px;
    white-space: normal;
    cursor: pointer;
  }

  .sideflt-selected-item:hover {
    background-color: var(--theme-font-color);
    color: var(--page-bg-color);
  }

  .sideflt-selected-text {
    font-weight: 600;
  }

  .sideflt-selected-remove {
    padding-left: var(--sideflt-selected-remove-left, 10px);
    font-size: 12px;
  }

  .collection-sideflt-more {
    margin:var(--collection-sideflt-more-margin , 0 0 13px);
    text-align: center;
    cursor: pointer;
  }

  .collection-sideflt-more:hover {
    color: var(--highlight-font-color);
  }
  .sideflt-top-close {
    float: right;
    width: fit-content;
    padding:var(--sideflt-top-close-padding, 20px);
    cursor:pointer;
  }
  .collection-sideflt-bottom {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--collection-sideflt-bottom-padding, 20px);
    border-top:var(--collection-sideflt-bottom-border, 1px solid #eee);
  }

  .collection-sideflt-apply {
    margin:var(--collection-sideflt-apply-margin,  0 0 0 20px);
    --theme-border-radius: 50px;
  }

  @keyframes rotate {
    from {
      transform: rotate(0deg);
    }

    to {
      transform: rotate(360deg);
    }
  }

  .collection-icon-loading {
    position: absolute;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    animation: rotate 2s linear infinite;
  }
  .collection-sideflt-mask {
    display:none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 299;
    background-color:var(--collection-sideflt-mask-bgcolor, rgba(0, 0, 0, .3));
  }
  @media screen and (min-width: 767px) {
    .collection-product-body {
      margin-bottom: 40px;
    }
    .collection-sideflt-top {
      display:var(--collection-sideflt-top-display , none) ;
    }

    .collection-sideflt-bottom {
      display: var(--collection-sideflt-bottom-display, none);
    }
  }

  @media screen and (max-width: 1024px) {
    .collection-side-filter {
      --collection-sideflt-form-width: 200px;
      --collection-sideflt-form-right: 10px;
    }
  }

  @media screen and (max-width: 767px) {
    .pc-sideflt-remove-all {
      display: none;
    }

    .collection-side-filter {
      position: fixed;
      top:var(--collection-side-filter-top, 0);
      right:var(--collection-side-filter-right, 0);
      bottom:var(--collection-side-filter-bottom, 0);
      width:var(--collection-side-filter-width, 85%);
      height:var(--collection-side-filter-height, 100%);
      background-color: var(--page-bg-color);
      transform:var(--collection-side-filter-transform, translateX(100%));
      z-index: 300;
      transition: var(--theme-transition);
      --collection-sideflt-form-width: 100%;
      --collection-sideflt-section-top: 20px;
      --sideflt-selected-item-padding: 8px 10px 7px;
    }

    .collection-filter-label {
      display: flex;
      align-items: center;
      justify-content: center;
      width:var(--collection-filter-label-width, 50%);
      margin-right: var(--v-space);
      font-size:var(--collection-filter-label-size, 14px);
      border:var(--collection-filter-label-border, 1px solid var(--theme-border-color));
    }

    .collection-filter-label .icon-filter {
      margin:var(--collection-filter-label-margin, 0 10px 0 0);
    }

    .collection-sideflt-form {
      flex: 1;
      overflow-y: auto;
      padding:var(--collection-sideflt-form-padding, 0 15px);
    }
   .collection-sideflt-sections{
    flex-wrap: wrap;
   }
  }

  .category-controller .select-wrapper label,
  .price-filter-label,.category-controller .select-price {
    background-color: #fff;
  }
  .collection-detail{
    --collection-section-bottom: 40px;
    --collection-list-pagination-space: 40px;
    --collection-description-text-bottom: 20px;
    --collection-description-btn-bottom: 40px;
  }
  @media screen and (max-width: 1200px){
    .collection-detail {
      --collection-section-bottom: 30px;
      --collection-list-pagination-space: 20px;
      --collection-description-text-bottom: 20px;
      --collection-description-btn-bottom: 30px;
      --collection-description-size: 14px;
      --collection-description-line-height: 22px;
    }
  }
  .price-range,
  #sortBy {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 11;
    width: 100%;
    padding: 14px;
    text-align: left;
    background: #fff;
    cursor: default;
    border: 1px solid #eee;
  }
  .category-controller {
    display: flex;
    justify-content: space-between;
  }

  .category-controller .select-price,
  .category-controller .select-wrapper {
    position: relative;
    width: 200px;
    cursor: pointer;
  }
  .select-price-text{
    display: flex;
    align-items: center;
    margin-bottom: 14px;
    font-size: 14px;
    line-height: 22px;
  }
  .select-price-remove{
    margin-left: 10px;
    font-size: 12px;
    line-height: 1;
    font-weight: 700;
    transform: scale(0.8);
    cursor: pointer;
  }

  .select-price-inputbox{
    display: flex;
    align-items: center;
    margin-bottom: 14px;
  }
  .price-range .price-input {
    width: 100%;
    padding: 0 10px;
    height: 30px;
    font-size: 14px;
    background-color: #fff;
    border: 1px solid var(--theme-border-color);
  }
  .price-input-line{
    padding: 0 8px;
    font-size: 12px;
    color: var(--theme-border-color);
  }
  .price-range .filter-button {
    width: 100%;
    --btn-height: 40px;
    --btn-font-color: #fff;
    --btn-bg-color: var(--main-color);
    --btn-border:0 none;
    font-size: 16px;
  }
  .category-controller .select-price {
    margin-right: 40px;
    font-size: 16px;
    text-align: center;
    color: var(--theme-font-color);
  }
  .price-filter-label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 14px;
    border: var(--border-width) solid var(--theme-border-color);
    height: 40px;
  }
  .price-label-text{
    font-size: 14px;
  }
  .price-filter-label::after {
    content: "\e7e8";
    font-family: 'iconfont';
    margin-left: 16px;
    font-size: 12px;
    color: var(--theme-border-color);
  }
  .category-controller .select-wrapper label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    width: 100%;
    padding: 6px 14px;
    color: var(--theme-font-color);
    font-size: 16px;
    text-align: center;
    border: var(--border-width) solid var(--theme-border-color);
    pointer-events: none;
  }

  .select-wrapper label::after {
    content: "\e7e8";
    font-family: 'iconfont';
    margin-left: 16px;
    font-size: 12px;
    color: var(--theme-border-color);
  }

  #sortBy li {
    height: 32px;
    line-height: 32px;
    padding: 0 8px;
    cursor: pointer;
  }

  #sortBy li[selected] {
    color: var(--highlight-bg-color);
  }

  #sortBy li:hover {
    opacity: 0.7;
    background: #eee;
  }

  .category-controller-mask {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    z-index: 10;
  }

  @media screen and (max-width: 767px) {
    .category-controller {
      position: relative;
      width: 100%;
      max-width: 400px;
    }
    .category-controller .select-price,
    .category-controller .select-wrapper {
      width: 50%;
    }

    .category-controller .select-price {
      margin-right: var(--v-space);
      border: var(--border-width) solid var(--theme-border-color);
    }

    .category-controller .select-price,
    .category-controller .select-wrapper label {
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 14px;
    }
    .select-price>span::after, .select-wrapper label::after{
      content: '';
    }
    .select-price>span::before {
      content: "\e7d9";
      font-family: 'iconfont';
      margin-right: 10px;
    }
    .select-wrapper label::before {
      content: "\e7df";
      font-family: 'iconfont';
      margin-right: 10px;
    }

    .select-price>span {
      justify-content: center;
      align-items: baseline;
      font-size: 14px;
    }
  }

  .category nav h1 {
    font-size: inherit;
    font-weight: normal;
  }

  .category-container {
    position:relative;
    padding-top: 20px;
    border-top: 1px solid var(--theme-border-color);
  }

  .category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--collection-section-bottom);
  }

  .category-header .header-right {
    display: flex;
  }
  .product-list .product-item:nth-child(4n) {
    margin-right: 0;
  }
  .category-description.content-limit--4 {
    max-height: calc(var(--collection-description-line-height, 24px) * 4);
  }

  .category-container .content-toggle {
    display: block;
    margin: calc(var(--collection-description-text-bottom) - var(--collection-section-bottom)) auto var(--collection-section-bottom);
    line-height: 30px;
  }


  @media screen and (max-width: 767px) {
    .category-container .content-toggle{
      margin-bottom: 10px;
    }
    .category-container {
      padding-top: 15px;
    }
    .category-header {
      flex-direction: column;
      margin-bottom: var(--h-space);
    }
    .category-header .category-summary {
      align-self: flex-start;
      margin-bottom: 15px;
    }
    .product-list {
      margin-right: 0;
    }
    
    .product-list .product-item:nth-child(2n) {
      margin-right: 0;
    }
  }

  .collection-sideflt-form {
    padding:0 10px;
    --collection-sideflt-form-padding:10px;
    --collection-sideflt-title-size:14px;
    font-size:14px;
    background:#f7f8f9;
  }

  .collection-sideflt-sections {
    margin-top:10px;
    border-top:1px solid #d5d5d5;
  }

  .collection-sideflt-form>.collection-sideflt-title {
    padding:10px;
  }

  .collection-sideflt-header {
    --collection-sideflt-header-padding:10px;
    --collection-sideflt-select-padding:0px;
  }

  .collection-sideflt-select {
    --btn-height:30px;
  }

  .collection-sideflt-section{
    --collection-sideflt-section-top:0px;
    --collection-sideflt-section-border:none;
    border-bottom: 1px solid #d5d5d5;
  }

  .pagination-list-top {
    --collection-section-bottom:0;
    position: absolute;
    top: 20px;
    right: 0px;
  }

  .category-container .category-header {
    --collection-cate-header-justify-content:flex-start;
  }

  .collection-sideflt-selected {
    padding:0 10px;
  }


  @media screen and (max-width: 767px) {
    .sideflt-top-close {
      --sideflt-top-close-padding:8px;
      font-size: 22px;
      box-shadow: -0.1875rem 0.1875rem 0.1875rem rgba(0, 0, 0, .3);
      border-bottom-left-radius: 0.4375rem;
    }
    .collection-sideflt-form {
      padding:0;
      --collection-sideflt-form-padding:0;
      --collection-sideflt-header-bgcolor:transparent;
      --collection-sideflt-title-size:16px;
      background:transparent;
    }

    .pagination-list-top {
      top: 13px;
    }

    .pagination-list-top .pagination-ellipsis,
    .pagination-list-top .pagination-item {
      display: none;
      --pagination-item-font-color: var(--theme-font-color);
    }
  
    .pagination-list-top .pagination-button,
    .pagination-list-top .pagination-item.current {
      display: inline-block;
    }
  
    .pagination-list-top .pagination-last {
      position: relative;
      display: inline-block;
      margin-left: 15px;
    }
  
    .pagination-list-top .pagination-last.current {
      margin-left: 30px;
    }
  
    .pagination-list-top .pagination-last::after {
      position: absolute;
      left: -15px;
      content: "for";
    }
  
    .pagination-list-top .pagination-last.current::before {
      position: absolute;
      content: attr(data-pagination-index);
      left: -26px;
    }
  
    .pagination-list-top .pagination-item.current {
      background-color: transparent;
      --pagination-item-current-color: var(--theme-font-color);
      height: fit-content;
      line-height: normal;
    }
  
    .pagination-list-top .pagination-button i {
      font-size: 12px;
    }
  
    .category-controller .m-show-flt {
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 14px;
      gap: 5px;
    }
  }

