.section_box {
  margin-right: 56px;
}
.product_category {
  padding-top: 43px;
  border-top: 1px solid #ececec;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 20px;
}
.category_main {
  width: 272px;
  min-height: 149px;
  background: #ffffff;
  border-radius: 14px 14px 14px 14px;
  border: 1px solid #cccccc;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.product_list {
  align-items: initial;
}
.category_main:hover {
  border-color: #005DA4;
}
.border_active {
  border-color: #005DA4;
}
.category_img {
  width: 94px;
  height: 61px;
  object-fit: cover !important;
}

.category_name {
  font-weight: 400;
  font-size: 14px;
  color: #333333;
  margin: 5px 0;
}
.category_specif {
  font-weight: 400;
  font-size: 12px;
  color: #999999;
}
.product_container {
  background: #f7f7f7;
  padding-bottom: 36px;
}
.product_box {
  width: 49.4%;
  background: #ffffff;
  border-radius: 5px 5px 5px 5px;
  padding: 60px 48px;
  margin-top: 20px;
  cursor: pointer;
}
.product_img {
  width: 256px;
  max-height: 256px;
}
.product_left {
  flex: 1;
  padding-right: 20px;
}
.product_mode {
  font-weight: bold;
  font-size: 14px;
  color: #005DA4;
}
.product_details {
  margin: 20px 0;
}
.product_name {
  position: relative;
  font-weight: bold;
  font-size: 24px;
  color: #333333;
  padding-bottom: 40px;
}
.product_box:hover .product_left .product_details .product_name::before {
  width: 100%;
}
.product_name::after {
  width: 100%;
  height: 2px;
  background: #e8e8e8;
  position: absolute;
  bottom: 5px;
  left: 0;
  content: "";
}
.product_name::before {
  width: 30%;
  height: 2px;
  background: #005DA4;
  position: absolute;
  bottom: 5px;
  left: 0;
  content: "";
  z-index: 1;
  transition: all 0.3s;
}
.product_text {
  font-weight: 400;
  font-size: 12px;
  color: #666666;
  margin-top: 10px;
}
.product_introduce {
  font-weight: 400;
  font-size: 14px;
  color: #333333;
  line-height: 24px;
}
