body {
  background: #F7F7F8; }

.section {
  padding: 100px 0 120px; }
  .section .wrap .list {
    display: flex;
    flex-wrap: wrap;
    gap: 40px; }
    .section .wrap .list .item {
      width: 100%;
      display: flex;
      justify-content: space-between;
      padding: 32px;
      border-radius: 8px;
      background: #FFF;
      box-shadow: 0 5px 10px 0 rgba(4, 84, 244, 0.03); }
      .section .wrap .list .item .item_l {
        width: 600px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        padding: 5px 0 0;
        position: relative; }
        .section .wrap .list .item .item_l .item_l_top {
          padding: 20px 0 0; }
          .section .wrap .list .item .item_l .item_l_top .h5 {
            color: #333;
            font-size: 20px;
            font-weight: 600;
            transition: 0.6s;
            margin-bottom: 16px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis; }
          .section .wrap .list .item .item_l .item_l_top .des {
            color: #999;
            font-size: 14px;
            font-weight: 400;
            -webkit-line-clamp: 3;
            display: -webkit-box;
            -webkit-box-orient: vertical;
            overflow: hidden; }
        .section .wrap .list .item .item_l .item_l_bottom {
          display: flex;
          align-items: center;
          gap: 5px; }
          .section .wrap .list .item .item_l .item_l_bottom img {
            display: block;
            width: 13px; }
          .section .wrap .list .item .item_l .item_l_bottom p {
            color: #999;
            font-size: 14px;
            font-weight: 400; }
      .section .wrap .list .item .item_r {
        width: 384px;
        height: 216px;
        border-radius: 8px;
        overflow: hidden; }
        .section .wrap .list .item .item_r img {
          display: block;
          width: 100%;
          height: 100%;
          transition: 3s; }
      .section .wrap .list .item:hover .item_l .item_l_top .h5 {
        color: #0454F4; }
      .section .wrap .list .item:hover .item_l:after {
        transform: scaleX(1); }
      .section .wrap .list .item:hover .item_r img {
        transform: scale(1.1); }

.page {
  margin: 50px 0 0; }
