.subContent > .main {
  display: flex;
  margin: 0rem 0.7rem;
}

.subContent > .main .right p {
  font-size: 0.24rem;
  line-height: 0.36rem;
  /*  */

  color: #3b4c62;
}

.subContent > .main .right p.mt-3 {
  margin-top: 0.5rem;
}

.product-list {
  display: flex;
  flex-wrap: wrap;
}

.product-list .item {
  width: calc(100% / 2 - 0.1rem);
  box-sizing: border-box;
  border: 0.1rem solid #ffffff;
  margin-bottom: 0.2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}

.product-list .item:nth-child(odd) {
  border-left: none;
}

.product-list .item:nth-child(even) {
  border-right: none;
}

.product-list .item .img-box {
  width: 100%;
  height: 2.95rem;
  /* border: 1px solid #EFEFEF; */
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 0.2em;
}
.img-box > img {
  max-width: 100%;
  max-height: 100%;
  transition: all 0.3s;
}

.product-list .item .tit {
  width: 100%;
  min-height: 0.6rem;
  text-align: center;
  font-size: 0.22rem;
  line-height: 0.32rem;
  transition: all 0.3s;
  font-weight: 600;
  color: #000000;

  /* display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
    word-break: break-all; */
}

.product-list .item:hover,
.product-list .item:hover img {
  max-width: 104%;
  max-height: 104%;
  color: rgba(78, 177, 172, 1);
}
