.content {
  padding-top: 48px;
  padding-bottom: 84px;
  box-sizing: border-box;
}
.content .api-list-ul {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  row-gap: 12px;
}
.content .api-list-li {
  position: relative;
  display: flex;
  height: 140px;
  background: #FFFFFF;
  border-radius: 4px;
  border: 1px solid rgba(51, 51, 51, 0.12);
  box-sizing: border-box;
  transition: all 0.5s;
}
.content .api-list-li:hover {
  box-shadow: 0px 2px 8px 4px rgba(18, 113, 239, 0.04);
  border: 1px solid rgba(51, 51, 51, 0.28);
}
.content .api-list-li:hover .api-more {
  opacity: 1;
}
.content .api-list-item {
  display: flex;
  align-items: flex-start;
  padding: 24px 16px 0 16px;
}
.content .api-list-item-icon {
  width: 36px;
  height: 36px;
  margin-right: 12px;
}
.content .api-info {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.content .api-name {
  margin-bottom: 8px;
  font-size: 16px;
  line-height: 1;
  font-weight: 600;
  color: #333333;
}
.content .api-marks {
  height: 36px;
  font-size: 12px;
  line-height: 18px;
  color: rgba(51, 51, 51, 0.8);
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.content .api-price {
  width: fit-content;
  padding: 3px 4px;
  margin-top: 15px;
  font-size: 12px;
  line-height: 1;
  border-radius: 2px;
}
.content .api-more {
  position: absolute;
  top: 24px;
  right: 20px;
  width: 16px;
  height: 16px;
  background: url(/images/v11/apiservice/arrows-icon.png) center no-repeat;
  background-size: 16px 16px;
  opacity: 0;
  transition: all 0.5s;
}
.content .test-blue {
  color: #2A64FF;
  background: rgba(42, 100, 255, 0.1);
}
.content .gold {
  color: #886212;
  background: rgba(136, 98, 18, 0.1);
}
.content .green {
  color: #29C287;
  background: rgba(41, 194, 135, 0.1);
}
.content .red {
  color: #FF5441;
  background: rgba(255, 84, 65, 0.1);
}
@media screen and (min-width: 751px) {
  .nav-mobile,
  .mobile-footer {
    display: none;
  }
}
@media screen and (min-width: 1440px) {
  .content .api-list-li {
    width: calc((100% - 36px) / 4);
  }
}
@media screen and (max-width: 1439px) {
  .content .api-list-li {
    width: calc((100% - 24px) / 3);
  }
}
@media screen and (max-width: 750px) {
  a {
    -webkit-tap-highlight-color: transparent;
  }
  .content {
    padding-top: 1.28rem;
    padding-bottom: 0.3rem;
  }
  .content .api-list-ul {
    row-gap: 0.2rem;
  }
  .content .api-list-li {
    width: 100%;
    height: 2.34rem;
  }
  .content .api-list-item {
    padding: 0.34rem 0.4rem 0;
  }
  .content .api-list-item-icon {
    width: 0.64rem;
    height: 0.64rem;
    margin-right: 0.2rem;
  }
  .content .api-name {
    font-size: 0.28rem;
  }
  .content .api-marks {
    height: 0.64rem;
    font-size: 0.24rem;
    line-height: 0.32rem;
  }
  .content .api-price {
    margin-top: 0.16rem;
    font-size: 0.2rem;
  }
}
