@import '../../style/variables.less';

.wm-list-item-large {
  width: 100%;
  background: @color-grey-f5;
  display: flex;
  flex-direction: column;
  padding: 24px 24px 0 24px;

  .img {
    width: 100%;
    height: calc(100vw - 48px);
  }

  .info-box {
    padding: 20px 24px 32px;
    background-color: @color-white;
    border-bottom-left-radius: @border-radius-6;
    border-bottom-right-radius: @border-radius-6;

    .title-box {
      font-size: @font-size-12;
      line-height: 32px;
      color: #000000;
      display: flex;
      flex-direction: row;

      .title {
        line-height: 32px;
        word-break: break-all;
      }
    }
  }

  .info-foot {
    font-size: @font-size-10;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-top: 14px;

    .num-box {
      display: flex;
      flex-direction: column;

      .desc {
        .desc-words {
          margin-right: 8px;
          color: rgba(0, 0, 0, 0.4);
          font-size: 20px;
        }

        .desc-num {
          color: rgba(0, 0, 0, 0.4);
          font-size: 20px;
        }
      }
    }

    .button-box {
      display: flex;
      flex-direction: row;
      justify-content: space-between;
      align-items: center;

      .button-desc {
        display: flex;
        flex-direction: row;
        justify-content: flex-end;
        margin: 10px 16px 0 0;
      }
    }
  }
}
