.contSection {
  padding-bottom: 120px;
  position: relative;
}
.wrapSearch {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}
.wrapSearch img {
  position: absolute;
  left: 32px;
  top: 18px;
}

.wrapSearch input{
  width: 100%;
  background: #FFFFFF;
  outline: 2px solid #1AB6E4;
  box-shadow: 6px 6px 20px rgba(0, 0, 0, 0.05);
  border-radius: 8px;
  box-sizing: border-box;
  padding: 25px 24px 25px 82px;
  border: none;

  font-weight: 400;
  font-size: 22px;
  line-height: 100%;
  color: #222;
}

.wrapSearch input::placeholder {
  color: #222;
}

 /* 상품리스트 */
.productList {
  position: relative;
  margin: 80px 0 0;
  display: grid;
  gap: 25px;
  grid-template-columns: repeat(3, 1fr);
}

.productList.noKeyword {
  margin: 120px 0 140px;
}

.noProdcutMsg {
  width: 100%;
  text-align: center;
  font-weight: 500;
  font-size: 16px;
  line-height: 100%;
  color: #222;
  padding: 80px 0;
}

.productList li {
  min-width: 100%;
  cursor: pointer;
  border-radius: 20px;
  box-shadow: 6px 6px 20px rgba(0, 0, 0, 0.07);
}

.productList li .top {
  position: relative;
  padding: 24px;
  height: 140px;
  box-sizing: border-box;
}

.productList li .top .evnetTag{
  position: absolute;
  top: 24px;
  left: 24px;
  padding: 8px 10px;
  color: #fff;
  background: #1AB6E4;
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  border-radius: 8px;
  margin-bottom: 8px;
}


.productList li .top h3 {
  display: block;
  width: calc(100% - 80px);
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  word-break: break-all;
  font-weight: 700;
  font-size: 22px;
  margin-top: 42px;
  margin-bottom: 12px;
}

.productList li .top p a{
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  color: #545454;
  width: 240px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  word-break: break-all;
}

.productList li .top .iconWish {
  display: block;
  position: absolute;
  right: 27px;
  top:33px;
  width: 34px;
  height: 34px;
  background: url('/images/alpiro/ico-like-unactive.svg') no-repeat center;
}

.productList li .top .iconWish.wishY {
  background: url('/images/alpiro/ico-like-active.svg') no-repeat center;
}

/* .productList li .top img {
  position: absolute;
  right: 27px;
  top:33px;
} */

.productList li .bottom {
  width: 100%;
  overflow-y: hidden;
  border-radius: 0 0 20px 20px;
}

.productList li .bottom img{
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 0 0 20px 20px;
}

.productList .noKeyword {
  width: 200px;
  text-align: center;
  position: absolute;
  left: 50%;
  right: 50%;
  top: 30px;
  transform: translate(-50%, -50%);
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  color: #545454;
  padding: 100px 0;
}

.toastPopup {
  width: fit-content;
  position: fixed;
  margin: 0 auto;
  left: 0;
  right: 0;
  z-index: 10;
  bottom: 80px;
  padding: 20px;
  background: #1AB6E4;
  color: #fff;
  border-radius: 100px;
  font-weight: 500;
  font-size: 18px;
  line-height: 16px;
  display: none;
}

@media screen and (max-width: 1280px) {
  .productList {
    margin-top: 80px;
    display: grid;
    gap: 25px;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 998px) {
  .contSection {
  padding-bottom: 0;
}

.wrapSearch img {
  position: absolute;
  left: 12px;
  top: 8px;
  width: 24px;
  height: 24px;
}

.wrapSearch input{
  padding: 12px 24px 12px 54px;
  font-weight: 400;
  font-size: 14px;
  line-height: 100%;
  color: #222;
}

.productList {
  margin-top: 20px;
}

.productList li .top {
  /* padding: 20px; */
}

.productList li .top .evnetTag {
  font-size: 12px;
  padding: 6px 8px;
}

.productList li .top h3{
  display: block;
  width: calc(100% - 80px);
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  word-break: break-all;
  font-weight: 700;
  font-size: 18px;
  line-height: 100%;
  padding-bottom: 0px;
}

.productList li .top p a{
  font-weight: 400;
  font-size: 14px;
  line-height: 100%;
  width: 200px;
  /* overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  word-break: break-all; */
}

.productList li .top .iconWish {
  right: 20px;
  top:30px;
  width: 34px;
  height: 34px;
}
}

@media screen and (max-width: 700px) {
  .productList {
    grid-template-columns: repeat(1, 1fr);
  }
}