.custom-module:nth-child(3) {
    background: linear-gradient(180deg, #EDF4FF 30%, #FFF 100%), #F7F8FB;
}
/* 产品卡片列表 */
.lmp-product-list {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
}

.lmp-product-card + .lmp-product-card {
  margin-left: 28px;
}

/* 单张卡片 */
.lmp-product-card {
  flex: 1;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0px 4px 20px #E8F1FF;
  overflow: hidden;
}

.lmp-product-content {
  padding: 32px 24px 24px;
}

/* Logo 区域 */
.lmp-product-logo {
  display: flex;
  align-items: center;
}

.lmp-product-logo-icon {
  display: block;
  width: 32px;
  height: 32px;
  margin-right: 10px;
}

.lmp-product-logo-name {
  font-size: 20px;
  font-weight: 400;
  line-height: 36px;
  color: #091221;
}

/* 主体内容 */
.lmp-product-body {
  margin-top: 10px;
}

.lmp-product-title {
  font-size: 24px;
  font-weight: 500;
  line-height: 1.4;
  color: #091221;
  margin: 0;
}

.lmp-product-desc {
  margin: 14px 0 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  color: #525E76;
}

/* 按钮 */
.lmp-product-btn {
  display: block;
  width: 152px;
  height: 40px;
  margin-top: 16px;
  background: #0052D9;
  border-radius: 2px;
  font-size: 14px;
  line-height: 40px;
  text-align: center;
  color: #fff;
  text-decoration: none;
  transition: all .3s ease-in-out;
}

@media screen and (min-width: 769px) {
    .lmp-product-btn {
        cursor: pointer;
    }
    .lmp-product-btn:hover {
        background: #266fe8;
        box-shadow: 8px 8px 20px rgba(55, 99, 170, .1);
    }
}

/* 截图区域 */
.lmp-product-screenshot {
  margin-top: 26px;
  background: #F2F2F2;
  border-radius: 4px;
  overflow: hidden;
}

.lmp-product-screenshot img {
  display: block;
  width: 100%;
  height: auto;
}

/* 移动端适配 */
@media screen and (max-width: 768px) {
  .lmp-product-list {
    flex-direction: column;
  }

  .lmp-product-card + .lmp-product-card {
    margin-left: 0;
    margin-top: 20px;
  }

  .lmp-product-content {
    padding: 24px 16px 16px;
  }

  .lmp-product-title {
    font-size: 20px;
  }

  .lmp-product-btn {
    width: 100%;
  }
}
