body {
  background: #F7F7F8; }

.section {
  padding: 102px 0 122px; }
  .section .wrap {
    border-radius: 12px;
    background: #FFF;
    padding: 50px 60px 60px; }
    .section .wrap .list {
      display: flex;
      flex-wrap: wrap;
      gap: 40px; }
      .section .wrap .list .item {
        width: 100%;
        display: flex;
        justify-content: space-between; }
        .section .wrap .list .item .item_l {
          width: 687px;
          display: flex;
          flex-direction: column;
          justify-content: space-between;
          padding: 0 0 11px;
          border-bottom: 1px solid #EEE;
          position: relative; }
          .section .wrap .list .item .item_l:after {
            content: "";
            width: 100%;
            height: 1px;
            background: #0454F4;
            position: absolute;
            left: 0;
            bottom: -1px;
            transform: scaleX(0);
            transform-origin: left;
            transition: 1s; }
          .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: 18px;
              font-weight: 600;
              transition: 0.6s;
              margin-bottom: 25px;
              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: 2;
              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: 336px;
          height: 190px;
          border-radius: 12px;
          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: 60px 0 0; }
  .page a {
    background: #FFFFFF; }
