.home-tools {
  background: #f7f7f7;
}
.home-tools-content {
  max-width: 1392px;
  margin: 0 auto;
  padding: 24px 0;
}
.home-tools-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.home-tools-content-title {
  font-weight: bold;
  font-size: 30px;
  color: #121418;
  line-height: 35px;
  margin: 24px 0;
  margin-top: 12px;
}
.online-tools {
  font-weight: 400;
  font-size: 14px;
  color: #515762;
  line-height: 15px;
}
.online-tools-num {
  color: #ff4d00;
  font-weight: bold;
}
.home-tools-content-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px 24px;
}
.home-tools-content-list-item {
  background: #ffffff;
  border-radius: 8px;
  padding: 24px;
  cursor: pointer;
}
.home-tools-content-list-item:hover {
  box-shadow: 0px 4px 20px 0px rgba(0,0,0,0.05); /* 阴影效果 */
}
.home-tools-content-list-item-top {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}
.home-tools-content-list-item-top-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}
.home-tools-content-list-item-top-text {
  flex: 1;
  padding-top: 2px;
}
.home-tools-content-list-item-top-text-title {
  font-weight: bold;
  font-size: 16px;
  color: #2d3139;
  line-height: 19px;
}
.home-tools-content-list-item-top-text-desc {
  height: 36px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  /* 限制显示 2 行 */
  overflow: hidden;
  text-overflow: ellipsis;
  font-weight: 400;
  font-size: 13px;
  color: #515762;
  line-height: 18px;
  margin-top: 10px;
}
.home-tools-content-list-item-top-collect .iconfont {
  font-size: 18px;
  color: #cbcbcb;
  cursor: pointer;
}
.home-tools-content-list-item-top-collect .iconfont:hover {
  color: #0066ff !important;
}
/* .home-tools-content-list-item-top-collect .shoucanged {
  color: #ff4d00;
} */
.home-tools-content-list-item-line {
  border-bottom: 1px dashed #d1d1d1;
  margin: 22px 0;
}
.home-tools-content-list-item-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.home-tools-content-list-item-bottom-left {
  font-size: 14px;
  color: #898f98;
  line-height: 16px;
}
.home-tools-content-list-item-bottom-left-num {
  font-weight: bold;
  color: #ff4d00;
  margin-right: 2px;
}
.home-tools-content-list-item-bottom-right {
  display: flex;
  align-items: center;
  gap: 4px;
  font-weight: 400;
  font-size: 12px;
  color: #515762;
  line-height: 16px;
}
.home-tools-content-list-item-bottom-right .show-not-endorse .not-endorse {
  display: block;
}
.home-tools-content-list-item-bottom-right .show-not-endorse .endorse {
  display: none;
}
.home-tools-content-list-item-bottom-right .show-endorse .not-endorse {
  display: none;
}
.home-tools-content-list-item-bottom-right .show-endorse .endorse {
  display: block;
}
.home-tools-content-list-item-bottom-right .not-endorse,
.home-tools-content-list-item-bottom-right .endorse {
  width: 24px;
  height: 24px;
  cursor: pointer;

}
.home-tools-content-list-item-bottom-right-icon{
  transform: scale(1);
  transition: all 0.3s ;
}
.home-tools-content-list-item-bottom-right-icon:hover{
  transform: scale(1.1);
}