.title img{
  width: 40px;
  cursor: pointer;
}
.row-one-mold{
  max-width: 1200px;
  margin: 20px auto;
}
.row-one-mold .title{
  align-items: center;
  border-bottom: 1px solid #ccc;
  color: #1a1a1a;
  display: flex;
  font-size: 24px;
  font-weight: 600;
  height: 52px;
  justify-content: space-between;
  line-height: 40px;
  margin-bottom: 16px;
}
.row-one-mold .item-all{
  display: flex;
}
.row-one-mold .item-all .item-all-left{
  width: 50%;
}
.row-one-mold .item-all .item-all-left .img{
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
}
.row-one-mold .item-all .item-all-left div{
  font-size: 20px;
  margin-top: 20px;
}
.row-one-mold .item-all .item-all-left .img img{
  width: 100%;
  cursor: pointer;
}
.row-one-mold .item-all .item-all-right{
  width: 50%;
  margin-left: 20px;
  margin-top: 20px;
}
.row-one-mold .item-all .item-all-right .item{
  display: flex;
  padding-bottom: 20px;
  cursor: pointer;
}
.row-one-mold .item-all .item-all-right .item .img{
  width: 25%;
  display: none;
}
.row-one-mold .item-all .item-all-right .item  img{
  width: 100%;
  border-radius: 20px;
}
.row-one-mold .item-all .item-all-right .item p{
  font-size: 20px;
  height: 30px;
  margin-left: 15px;
  padding: 0;
  line-height: 30px;
  overflow: hidden; /* 隐藏超出部分 */
  display: -webkit-box;
  -webkit-line-clamp: 1; /* 保留两行 */
  -webkit-box-orient: vertical; /* 垂直排列 */
  text-overflow: ellipsis; /* 显示省略号 */

}
.row-one-mold .item-all .item-all-right .item:nth-child(1) .img{
  display: block;
  overflow: hidden;
}
.row-one-mold .item-all .item-all-right .item:nth-child(2) .img{
  display: block;
  overflow: hidden;
}

.row-two-mold{
  max-width: 1200px;
  margin: 20px auto;
}
.row-two-mold .title{
  align-items: center;
  border-bottom: 1px solid #ccc;
  color: #1a1a1a;
  display: flex;
  font-size: 24px;
  font-weight: 600;
  height: 52px;
  justify-content: space-between;
  line-height: 40px;
  margin-bottom: 16px;
}
.row-two-mold .item-all{
  display: grid;
  grid-template-columns: repeat(3,1fr);
  column-gap: 50px;
  align-items: center;
}
.row-two-mold .item-all .item .img{
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
}
.row-two-mold .item-all .item .img img{
  width: 100%;
  border-radius: 20px;
}
.row-two-mold .item-all .item .item-title{
  font-size: 20px;
  margin: 20px 0 20px 0;
  line-height: 24px;
  overflow: hidden; /* 隐藏超出部分 */
  display: -webkit-box;
  -webkit-line-clamp: 1; /* 保留两行 */
  -webkit-box-orient: vertical; /* 垂直排列 */
  text-overflow: ellipsis; /* 显示省略号 */
}





.item .img:hover img{
  transition: all 0.4s;
  transform: scale(1.1);
  z-index:2;
  visibility: visible;
}
.item-title:hover{
  cursor: pointer;
  text-decoration: underline;
}


@media screen and (max-width:1200px){
  .row-one-mold{
    padding: 0 6px;
  }
}


@media screen and (max-width:768px){
  .search{
    padding-bottom: 1.5rem;
    padding-top: 1.5rem;

  }
  .search .search-container{
    width: 80%;
  }
  .row-one-mold{
    padding: 0 6px;
  }
  .row-one-mold .item-all{
    flex-wrap: wrap;
  }
  .row-one-mold .item-all .item-all-left{
    width: 100%;
  }
  .row-one-mold .item-all .item-all-right{
    width: 100%;
    margin: 0;
  }
  .row-one-mold .item-all .item-all-right .item{
    flex-wrap: wrap;
    padding-bottom: 10px;
  }
  .row-one-mold .item-all .item-all-right .item .img{
    width: 30%;
    margin: 0;
  }
  .row-two-mold{
    padding: 0 6px;
  }
  .row-two-mold .item-all{
    grid-template-columns: repeat(1, 1fr);
  }
  .row-one-mold .item-all .item-all-left div{
    font-size: 18px;
    margin: 0;
    padding: 8px 0;
    font-weight: 700;
  }
  .row-one-mold .item-all .item-all-right .item .item-title{
    margin: 0;
    width: 70%;
    padding: 0 8px;
  }
  .row-two-mold .item-all .item .item-title{
    line-height: 24px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
  }
  .row-one-mold .item-all .item-all-right .item{
    display: none;
  }
  .row-one-mold .item-all .item-all-right .item:nth-child(1){
    display: block;
  }
  .row-one-mold .item-all .item-all-right .item:nth-child(2){
    display: block;
  }
}