.bobo_goods_type {
  padding: clamp(30px, 4.166667vw, 80px) 0;
  background-size: cover;
  background-repeat: no-repeat;
}

.bobo_goods_type .container {
  padding-left: 0;
  padding-right: 0;
}

.bobo_goods_type .tit {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-align-items: center;
  align-items: center;
}

.bobo_goods_type .tit .t em {
  font-size: clamp(14px, 0.83vw, 16px);
  color: var(--color-primary);
  font-weight: 700;
}

.bobo_goods_type .tit .t h2 {
  margin-top: 10px;
  font-size: clamp(24px, 2.08vw, 40px);
  color:#000000;
  line-height: 1.2;
  font-weight: 700;
  text-transform: capitalize;
}

.bobo_goods_type .tit .more {
  text-align: center;
  font-size: clamp(14px, 0.78vw, 15px);
  font-weight: 700;
  color: #ffffff;
  display: block;
  background: var(--color-primary);
  border-radius: var(--button-radius);
  padding: 10px 35px;
}


.bobo_goods_type .tit .more:hover {
  background: none;
  color: var(--color-primary);
  border: 1px solid var(--color-primary);
}

.bobo_goods_type ul {
  margin: 20px -20px 0;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap
}

.bobo_goods_type ul li {
  padding: 0 20px;
  margin: 20px 0 0;
  box-sizing: border-box;
  text-align: center
}

.bobo_goods_type ul li .box {
  cursor: pointer;
  border: 1px solid #e67817;
}

.bobo_goods_type ul li .pic {
  display: block;
  width: 100%;
  overflow: hidden;
  position: relative;
  box-sizing: border-box
}

.bobo_goods_type ul li .pic img {
  display: block;
  transition: all 0.3s ease 0s;
  -webkit-transition: all 0.3s ease 0s;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.bobo_goods_type ul li h5 {
  margin: 16px 0 0;
  line-height: 26px;
  color: var(--title-text-color);
  font-size: clamp(14px, 0.94vw, 18px);
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.bobo_goods_type ul li h5 a:hover {
  color: var(--color-primary);
  text-decoration: underline
}

.bobo_goods_type ul li:hover img {
  transform: scale(1.05);
  -webkit-transform: scale(1.05)
}



@media screen and (max-width: 992px) {
  .bobo_goods_type .container {
    padding-left: 15px;
    padding-right: 15px;
  }

}

@media screen and (max-width: 991px) {
  .bobo_goods_type {
    background-size: cover;
  }


  .bobo_goods_type .tit .t h2 {
  margin: 10px 0;
  }



  .bobo_goods_type ul {
    margin: 15px -10px 0
  }

  .bobo_goods_type ul li {
    width: 50%;
    padding: 0 10px;
    margin: 15px 0 0
  }

  .bobo_goods_type ul li h5 {
    margin: 10px 0 0;
    line-height: 24px;
  }

  .bobo_goods_type .tit{flex-direction:column;justify-content: flex-start;align-items: flex-start;}
  .bobo_goods_type .tit .more{padding:10px 15px}
}


