.tools-page {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #f7f7f7;
  padding: 200px 0;
}
.tools-page-bg {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 364px;
}
.tools-page .title {
  font-weight: bold;
  font-size: 34px;
  color: #121418;
  line-height: 52px;
  text-align: center;
  margin-bottom: 52px;
}
.content {
  position: relative;
  z-index: 2;
}
.tools-list {
  display: flex;
  align-items: center;
  gap: 52px;
}
.tools-list-itme {
  width: 496px;
  height: 213px;
  padding: 28px;
  background-repeat: no-repeat; /* 不重复 */
  background-size: cover; /* 宽高占满且保持比例，可能裁剪 */
  background-position: center; /* 居中显示 */
  transition: all 0.3s;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
}
.tools-list-itme:hover {
  box-shadow: 0px 4px 40px 0px rgba(0, 0, 0, 0.05);
}
.text-tool {
  background-image: url('/assets/images/tools/text-bg.png');
}
.separation-tool {
  background-image: url('/assets/images/tools/separation-bg.png');
}
.card-title {
  font-weight: bold;
  font-size: 20px;
  color: #121418;
}
.desc {
  font-weight: 400;
  font-size: 14px;
  color: #515762;
  line-height: 20px;
  margin-top: 18px;
  margin-bottom: 30px;
}
.herf-btn {
  position: relative;
  width: 153px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0066ff;
  border-radius: 8px;
  font-weight: bold;
  font-size: 14px;
  color: #ffffff;
  transition: all 0.3s;
  /* background: linear-gradient(90deg, #1e90ff, #006eff, #1e90ff); */
}
