@charset "UTF-8";
* {
  box-sizing: border-box;
}

body {
  background-color: #f7fafc;
  margin: 0;
}
:root {
  --force-white-bg: 1;
}

/* 媒体查询，大于750px */
@media screen and (min-width: 751px) {
  .jjfa-banner {
    width: 100%;
    height: 340px;
    margin-top: 80px;
    object-fit: cover;
  }
  .x-solution-container {
    max-width: 1070px;
    margin: 20px auto;
  }
  .x-solution-container .solution-card {
    position: relative;
    display: flex;
    gap: 24px;
    margin-bottom: 30px;
    text-decoration: none;
    /* hover */
  }
  .x-solution-container .solution-card::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    transition: all 0.3s ease;
    z-index: -1;
    border-radius: 12px;
  }
  .x-solution-container .solution-card:hover::after {
    background: #fff;
    left: -24px;
    right: -24px;
    top: -16px;
    bottom: -16px;
    box-shadow: 0px 0px 16px 1px rgba(0, 0, 0, 0.05);
  }
  .x-solution-container .solution-card:hover .img-wrap img {
    transform: scale(1.1);
  }
  .x-solution-container .solution-card:hover .info-box::after {
    width: 100%;
  }
  .x-solution-container .solution-card:hover .info-box .title {
    color: #00a0d8;
  }
  .x-solution-container .solution-card:hover .info-box .title::after {
    opacity: 1;
    right: 10px;
  }
  .x-solution-container .solution-card .img-wrap {
    width: 336px;
    height: 190px;
    overflow: hidden;
    border-radius: 8px;
    flex-shrink: 0;
  }
  .x-solution-container .solution-card .img-wrap img {
    user-select: none;
    -webkit-user-drag: none;
    width: 100%;
    height: 100%;
    transition: all 0.3s ease;
  }
  .x-solution-container .solution-card .info-box {
    overflow: hidden;
    position: relative;
    flex-grow: 1;
  }
  .x-solution-container .solution-card .info-box::after {
    content: "";
    position: absolute;
    bottom: 0;
    width: 0;
    height: 1px;
    background: #00a0d8;
    transition: all 0.3s ease;
  }
  .x-solution-container .solution-card .info-box .title {
    font-size: 18px;
    font-family: Microsoft YaHei-Bold, Microsoft YaHei;
    font-weight: bold;
    color: #313233;
    transition: all 0.3s ease;
    position: relative;
    padding:12px 50px 12px 0;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
  }
  .x-solution-container .solution-card .info-box .title::after {
    content: "→";
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s ease;
    opacity: 0;
    color: #00a0d8;
    z-index: 99;
  }
  .x-solution-container .solution-card .info-box .desc {
    font-size: 14px;
    font-family: PingFang SC-Regular, PingFang SC;
    font-weight: 400;
    color: #7b7e80;
    line-height: 24px;
    display: -webkit-box;
    -webkit-line-clamp: 5; /* 设置最大行数 */
    -webkit-box-orient: vertical; /* 指定文本垂直排列 */
    overflow: hidden; /* 隐藏超出容器的文本 */
    position: relative; /* 添加相对定位 */
  }
}
/* 媒体查询，小于750px */
@media screen and (max-width: 750px) {
  .jjfa-banner {
    width: 100%;
    height: 248rem;
    margin-top: 96rem;
    object-fit: cover;
  }
  .x-solution-container {
    padding: 40rem 32rem;
    margin: 0;
  }
  .x-solution-container .solution-card {
    margin-bottom: 40rem;
    display: flex;
    flex-direction: column;
    gap: 24rem;
    text-decoration: none;
  }
  .x-solution-container .solution-card .img-wrap {
    width: 100%;
    height: 388rem;
    border-radius: 16rem;
    overflow: hidden;
  }
  .x-solution-container .solution-card .img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .x-solution-container .solution-card .info-box {
    display: flex;
    flex-direction: column;
    gap: 16rem;
  }
  .x-solution-container .solution-card .info-box .title {
    font-size: 36rem;
    font-family: Microsoft YaHei-Bold, Microsoft YaHei;
    font-weight: bold;
    color: #092a44;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    margin: 0;
  }
  .x-solution-container .solution-card .info-box .desc {
    font-size: 28rem;
    font-family: PingFang SC-Regular, PingFang SC;
    font-weight: 400;
    color: #7b7e80;
    line-height: 48rem;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3; /* 设置最大行数 */
    -webkit-box-orient: vertical; /* 指定文本垂直排列 */
    overflow: hidden; /* 隐藏超出容器的文本 */
    position: relative; /* 添加相对定位 */
  }
}

/*# sourceMappingURL=product-list.css.map */
