.pro_search_box {
  width: 100%;
  padding: calc(2px + 1.5rem) 0;

}

.pro_search {
  max-width: 1480px;
  width: 85%;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.pro_search_div {
  width: 87.1621%;
  height: calc(16px + 2rem);
  background: #F3F3F3;
  border-radius: calc(8px + 1rem);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: calc(6px + 0.5rem);
  padding: 0 calc(3px + 1.5rem);
}


.pro_search_div img {
  width: calc(2px + 1rem);
}

.pro_search_div input {
  flex: 1;
  height: 100%;
  border: none;
  background-color: transparent;
  font-family: Century Gothic;
  font-weight: 400;
  font-size: calc(6px + 0.5rem);
  color: #979797;
}

.submit {
  width: calc(62px + 5rem);
  height: calc(16px + 2rem);
  background: linear-gradient(154deg, #2271CE, #00529D);
  border-radius: calc(8px + 1rem);
  border: none;
  text-align: center;
  font-family: Century Gothic;
  font-weight: 400;
  font-size: calc(6px + 0.5rem);
  color: #FFFFFF;
}

.pro_list_box {
  width: 100%;
  background: #F8F8F8;
  padding-top: calc(15px + 3rem);
  padding-bottom: calc(60px + 5rem);
}

.pro_list {
  max-width: 1480px;
  width: 85%;
  margin: auto;
}

.product_nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.product_nav_item {
  width: 21.4864%;
  height: calc(2px + 4rem);
  background: #FFFFFF;
  border: 1px solid #E5E5E5;
  transition: .5s;
}

.product_nav .product_nav_item:nth-of-type(1) {
  width: 14.1891%;
}
.product_nav_item:hover{
  background-color: #00529D;
}
.product_nav_item:hover a{
  color: #fff;
}
.product_nav_item a {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: OPPOSans-B;
  font-weight: normal;
  font-size: calc(4px + 0.5rem);
  color: #666666;

}

.product_nav .product_nav_item_act {
  background-color: #00529D;
}

.product_nav .product_nav_item_act a {
  color: #fff;
}

.product_list_card_box {
  margin-top: calc(15px + 2rem);

  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: calc(9px + 0.5rem);
  flex-wrap: wrap;
  row-gap: calc(4px + 1.5rem);
}

.product_list_card {
  width: 18.9189%;
  background: #FFFFFF;
  transition: .5s;
}


.product_list_card_pic {
  width: 100%;
  height: calc(80px + 10rem);

}

.product_list_card_pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product_list_card p {
  text-align: center;
  font-family: OPPOSans-R;
  font-weight: normal;
  font-size: calc(8px + 0.5rem);
  color: #333333;
  margin-top: calc(6px + 1rem);
  margin-bottom: calc(8px + 1.5rem);
}

.product_list_card:hover {
  box-shadow: 0px 0px calc(4px + 0.5rem) 0px rgba(42, 78, 111, 0.16);
transform: scale(1.02);
}

.product_list_card:hover p {
  color: #00529D;
}

@media (max-width: 1100px) {
  .pro_search_div {
    height: calc(16px + 6rem);
    
  }
  .pro_search_div img {
    width: calc(2px + 3rem);
}
  .pro_search_div input{
    font-size: calc(8px + 1rem);
  }
  .submit{
    height: calc(16px + 6rem);
    font-size: calc(10px + 1rem);
  }
  .product_nav{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }
  .product_nav_item{
    width: 100%;
  }
  .product_nav .product_nav_item:nth-of-type(1){
    width: 100%;
  }
 

  .product_nav_item {
  
    height: calc(2px + 9rem);
  }
  .product_nav_item a{
    font-size: calc(10px + 1rem);
  }
  .product_list_card {
    width: 48%;
  }
  .product_list_card p{
    font-size: calc(10px + 1rem);
  }
}