.lm_class {
  display: none;
}
.h_t_line {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.h_fullImg,
.h_fullImg2 {
  overflow: hidden;
}
.h_fullImg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.3s;
}
.h_fullImg2 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transition: transform 0.3s;
}
.h_goodsList .h_item {
  display: flex;
  align-items: flex-start;
  margin-top: 36px;
}
.h_goodsList .h_item .h_col {
  width: 400px;
}
.h_goodsList .h_item .h_col .h_img {
  aspect-ratio: 400/572;
}
.h_goodsList .h_item .h_col .h_name {
  background-color: #007f18;
  text-align: center;
  color: #fff;
  font-size: 20px;
  padding: 13px;
}
.h_goodsList .h_item .h_goods {
  width: calc(100% - 400px);
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
}
.h_goodsList .h_item .h_goods .h_box {
  width: calc(25% - 20px);
  margin: 20px 0 0 20px;
}
.h_goodsList .h_item .h_goods .h_box:nth-child(1),
.h_goodsList .h_item .h_goods .h_box:nth-child(2),
.h_goodsList .h_item .h_goods .h_box:nth-child(3),
.h_goodsList .h_item .h_goods .h_box:nth-child(4) {
  margin-top: 0;
}
.h_goodsList .h_item .h_goods .h_box .h_img {
  aspect-ratio: 1/1;
}
.h_goodsList .h_item .h_goods .h_box .h_text {
  background-color: #eeeeee;
  padding: 17px 14px 15px;
}
.h_goodsList .h_item .h_goods .h_box .h_text .h_name {
  font-size: 18px;
  color: #333;
}
.h_goodsList .h_item .h_goods .h_box .h_text .h_desc {
  margin-top: 12px;
  font-size: 14px;
}
.h_goodsList .h_item .h_goods .h_box:hover .h_text {
  background-color: #007f18;
}
.h_goodsList .h_item .h_goods .h_box:hover .h_name,
.h_goodsList .h_item .h_goods .h_box:hover .h_desc {
  color: #fff;
}
.h_goodsList .h_item .h_goods .h_box:hover .h_img img {
  transform: scale(1.05);
}
.h_row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.h_row .h_col {
  width: 220px;
}
.h_row .h_col a {
  color: #5c5c5c;
  font-weight: normal;
}
.h_row .h_col .h_title {
  font-size: 18px;
  font-weight: bold;
  display: flex;
  align-items: center;
  padding: 8px 14px;
  color: #007f18;
}
.h_row .h_col .h_title img {
  margin-right: 10px;
}
.h_row .h_col .shadow {
  background-color: #fff;
  box-shadow: 0 2px 8px -1px rgba(0, 0, 0, 0.04);
}
.h_row .h_col .h_box {
  overflow: hidden;
  margin-top: 16px;
}
.h_row .h_col .h_cur {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.h_row .h_col .h_cur > a {
  display: block;
}
.h_row .h_col .h_cur > a:hover {
  color: #007f18;
}
.h_row .h_col .h_cur img {
  width: 15px;
  cursor: pointer;
  transition: none;
  transform-origin: center;
}
.h_row .h_col .h_cur.rote > img {
  transform: rotate(180deg);
}
.h_row .h_col .h_sub1 {
  padding: 12px 14px;
}
.h_row .h_col .h_sub1 > .h_cur > a {
  font-size: 15px;
}
.h_row .h_col .h_sub1 a.active {
  color: #007f18 !important;
  font-weight: bold;
}
.h_row .h_col .h_subList2 {
  display: none;
}
.h_row .h_col .h_subList3 {
  display: none;
}
.h_row .h_col .h_sub2 {
  padding: 0 0 0 14px;
  margin-top: 14px;
}
.h_row .h_col .h_sub2 > .h_cur > a {
  font-size: 14px;
}
.h_row .h_col .h_sub2 a:hover {
  color: #007f18;
}
.h_row .h_col .h_sub2 img {
  width: 15px;
  cursor: pointer;
}
.h_row .h_col .h_sub3 {
  padding: 0 0 0 14px;
  margin-top: 14px;
}
.h_row .h_col .h_sub3 a:hover {
  color: #007f18;
}
.h_row .h_list {
  width: calc(100% - 220px);
}
@media screen and (max-width: 1024px) {
  .h_goodsList {
    padding: 0 15px;
    overflow: hidden;
  }
  .h_goodsList .h_item {
    flex-wrap: wrap;
  }
  .h_goodsList .h_item .h_col {
    width: 100%;
  }
  .h_goodsList .h_item .h_goods {
    flex-wrap: wrap;
    width: 100%;
  }
  .h_goodsList .h_item .h_goods .h_box {
    margin-top: 20px !important;
    width: calc(25% - 15px);
  }
  .h_goodsList .h_item .h_goods .h_box:nth-child(5n) {
    margin-left: 0;
  }
  .h_goodsList .h_item .h_goods .h_box:first-child {
    margin-left: 0;
  }
  .h_row2 .h_col {
    display: none;
  }
  .h_row2 .h_list {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .h_goodsList .h_item .h_col .h_img {
    aspect-ratio: 400 / 300;
  }
  .h_goodsList .h_item .h_goods .h_box {
    width: calc(50% - 10px);
  }
  .h_goodsList .h_item .h_goods .h_box:nth-child(2n-1) {
    margin-left: 0 !important;
  }
  .h_row .h_col {
    display: none;
  }
  .lm_class {
    display: block;
  }
  .h_row .h_list {
    width: 100%;
  }
  .cursorshade,
  .magnifier,
  .statusdiv {
    display: none !important;
    opacity: 0;
  }
}
@media screen and (max-width: 480px) {
  .h_goodsList .h_item {
    margin-top: 15px;
  }
  .h_goodsList .h_item .h_goods .h_box {
    margin: 15px 0 0 15px !important;
    width: calc(50% - 7.5px);
  }
  .h_goodsList .h_item .h_col .h_name {
    font-size: 18px;
    padding: 10px;
  }
  .h_goodsList .h_item .h_goods .h_box .h_text .h_name {
    font-size: 16px;
  }
  .h_goodsList .h_item .h_goods .h_box .h_text .h_desc {
    margin-top: 8px;
  }
  .h_goodsList .h_item .h_goods .h_box .h_text {
    padding: 12px 10px 10px;
  }
}
