.productsTitle {
  justify-content: center;
  display: flex;
  border-bottom: 1px solid #d9d9d9;
}
.productsTitle span {
  font-size: var(--fz20);
  width: calc(100% / 3);
  border-bottom: 1px solid var(--pointColor3);
  text-align: center;
}
.productSearchBox {
  margin: 3rem 0;
  background: rgba(0, 78, 162, 0.1);
  padding: 2rem;
  box-sizing: border-box;
}
.inputArea {
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.clickArea {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.inputArea .searceBoxTitle,
.clickArea .searceBoxTitle {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  font-weight: 500;
}
.inputArea .searceBoxTitle i,
.clickArea .searceBoxTitle i {
  display: flex;
  margin-right: 0.8rem;
}
.inputArea .inputBox {
  display: flex;
  width: 100%;
  justify-content: center;
}
.inputArea .input {
  all: unset;
  width: 100%;
  max-width: 400px;
  padding: 1rem;
  box-sizing: border-box;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  background-color: #fff;
  border: 1px solid var(--pointColor3);
}
.inputArea .searchBtn {
  background: var(--btnColor1);
  color: #fff;
  padding: 1rem 2rem;
  box-sizing: border-box;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  transition: all 0.7s;
}
.inputArea .searchBtn:hover {
  opacity: 0.7;
}
.productTitleList {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.productTitleList li {
  border: 1px solid var(--pointColor3);
  background-color: #fff;
  border-radius: 70px;
  overflow: hidden;
}

.productTitleList li a {
  display: block;
  padding: 1rem 2rem;
  box-sizing: border-box;
  transition:
    background 0.3s ease,
    color 0.3s ease;
}
.productTitleList li a:hover {
  background: var(--btnColor1);
  color: #fff;
}
.productList {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.productList li {
  width: calc(100% / 3 - 1.5rem);
  border: 1px solid var(--pointColor3);
  border-radius: 10px;
}
.productList li.noResults {
  border: none;
  width: 100%;
  margin-top: 2rem;
}
.productList li a {
  padding: 1rem;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  transition: all 0.5s;
}
.productList li a:hover {
  opacity: 0.6;
}
.productList li a .productTextArea i {
  transition: transform 0.3s ease;
  display: inline-block;
  margin-right: 1rem;
}
.productList li a:hover i {
  transform: translate(1rem, 0);
}

.bannerList .bannerBtn:hover i {
}
.productList li .productImg {
  position: relative;
}
.productList li .productImg span {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  font-size: var(--fz12);
  background-color: #fff;
  border: 1px solid var(--pointColor3);
  padding: 0.5rem 1rem;
  border-radius: 50px;
}
.productList li .productImg figure {
  height: 160px;
  overflow: hidden;
  border: 1px solid var(--pointColor3);
  margin-bottom: 1rem;
}
.productList li .productImg figure img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
}
.productList li .productTitle {
  font-size: var(--fz18);
  font-weight: 500;
}
.productList li .prodouctDesc {
  margin-bottom: 4rem;
}
.productTextArea {
}
.productTextArea p {
  color: var(--pointColor3);
  text-align: right;
}
.productTextArea p i {
  margin-left: 1rem;
}
.countText {
  font-weight: 500;
}
.countText span.searchCount {
  font-size: var(--fz20);
  font-weight: 600;
  color: var(--pointColor3);
}
@media screen and (max-width: 820px) {
  .productList li {
    width: calc(100% / 2 - 1.5rem);
  }
}
@media screen and (max-width: 640px) {
  .productList li {
    width: 100%;
  }
  .inputArea .input {
    max-width: 250px;
  }
  .productTitleList li a {
    padding: 1rem;
    font-size: var(--fz14);
  }
  .inputArea .searchBtn {
    width: 40%;
  }
}
