.pd-category-wrap{
  margin-bottom: 40px;
}
.pd-category-wrap .con-line{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.pd-category-wrap .con-line > li{
  width: calc(25% - (30px / 4));  
}
.pd-category-wrap .con-line > li a{
  display: block;
  width: 100%;
  font-size: 20px;
  font-weight: 500;
  text-align: center;
  color: rgb(136, 136, 136);
  padding: 16px 0;
  border: solid 1px rgb(204, 204, 204);
  transition: all 0.3s ease-in-out;
}
.pd-category-wrap .con-line > li.active a,
.pd-category-wrap .con-line > li a:hover
{
  border: solid 1px rgb(0, 0, 0);
  color: rgb(25, 25, 25);
}

.product-top-line{
  margin-bottom: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 2;
}
.product-top-line > .left .total h3{
  font-size: 16px;
  font-weight: normal;
  color: rgb(102, 102, 102);
}
.product-top-line > .left .total h3 b{
  color: rgb(25, 25, 25);
}
.array-selbox{
  width: 152px;
  height: auto;
  position: relative;
  border: solid 1px rgb(216, 216, 216);
  padding: 9px 12px;
  cursor: pointer;
}
.array-selbox .top{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.array-selbox .top > p{
  font-size: 16px;
  font-weight: normal;
  color: rgb(25, 25, 25);
  width: calc(100% - 20px);
  overflow: hidden;
}
.array-selbox .top > img{
  display: block;
  width: 10px;
  transition: all 0.3s ease-in-out;
}
.array-selbox.on .top > img{
  transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
}
.array-selbox .bottom{
  position: absolute;
  top: 100%;
  left: -1px;
  width: calc(100% + 2px);
  height: auto;
  display: none;
  border: 1px solid rgb(216,216,216);
  border-top: none;
  background: #fff;
}
.array-selbox .bottom > a{
  width: 100%;
  display: block;
  font-size: 15px;
  font-weight: 400;
  color: rgb(25,25,25);
  padding: 8px 12px;
  border-top: 1px solid rgb(216,216,216);
}


.product-list-warpper .con-line{
  display: flex;
  flex-wrap: wrap;
  gap: 60px 30px;
}
.product-list-warpper .con-line > li{
  width: calc(33.33% - (60px / 3));
}
.product-list-warpper .con-line > li a{
  display: block;
}
.product-list-warpper .con-line > li a .txtbox{
  text-align: center;
  margin-top: 20px;
}
.product-list-warpper .con-line > li a .txtbox .subject{
  font-size: 22px;
  font-weight: bold;
  color: rgb(25, 25, 25);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.product-list-warpper .con-line > li a .txtbox .dsc{
  font-size: 20px;
  font-weight: normal;
  color: rgb(85, 85, 85);
  margin-top: 6px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.product-list-warpper .con-line > li a .txtbox .mk-price{
  font-size: 20px;
  font-weight: 500;
  color: #ccc;
  margin-top: 12px;
  text-decoration: line-through;
}
.product-list-warpper .con-line > li a .txtbox .price{
  font-size: 24px;
  font-weight: bold;
  color: rgb(25, 25, 25);
  margin-top: 4px;
}
.product-list-warpper .con-line > li a .pd-thumb-imgbox img{
  transform: scale(1);
  -webkit-transform: scale(1);
  transition: all 0.3s ease-in-out;
  width: 100%;
}
.product-list-warpper .con-line > li a:hover .pd-thumb-imgbox img{
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
}

@media(max-width:1024px){
  .pd-category-wrap{
    margin-bottom: 30px;
  }
  .pd-category-wrap .con-line{
    gap: 6px;
  }
  .pd-category-wrap .con-line > li{
    width: calc(50% - 3px);  
  }
  .pd-category-wrap .con-line > li a{
    font-size: 16px;
    padding: 8px 0;
  }
  .product-top-line{
    margin-bottom: 16px;
    gap: 10px;
  }
  .product-top-line > .left .total h3{
    font-size: 14px;
  }
  .array-selbox{
    width: 140px;
    padding: 8px 10px;
  }
  .array-selbox .top{
    gap: 6px;
  }
  .array-selbox .top > p{
    font-size: 15px;
    width: calc(100% - 16px);
  }
  .array-selbox .bottom > a{
    font-size: 14px;
    padding: 6px 10px;
  }

}

@media(max-width:1024px){
  .product-list-warpper .con-line{
    gap: 40px 10px;
  }
  .product-list-warpper .con-line > li{
    width: calc(50% - 5px);
    transition-delay: 0s !important;
  }
  .product-list-warpper .con-line > li a .txtbox{
    margin-top: 12px;
  }
  .product-list-warpper .con-line > li a .txtbox .subject{
    font-size: 17px;
  }
  .product-list-warpper .con-line > li a .txtbox .dsc{
    font-size: 15px;
    margin-top: 4px;
  }
  .product-list-warpper .con-line > li a .txtbox .price{
    font-size: 18px;
  }
  .product-list-warpper .con-line > li a .txtbox .mk-price{
    font-size: 16px;
    margin-top: 8px;
  }
}

@media(max-width:767px){
  .product-list-warpper .con-line > li{
    width: 100%;
  }
}

@media(max-width:400px){
  .product-list-warpper .con-line > li a .txtbox .subject{
    font-size: 16px;
  }
  .product-list-warpper .con-line > li a .txtbox .dsc{
    font-size: 14px;
  }

}