.wrapper {
    width: 640px;
    margin: 30px auto;
    font-size: 1.6rem;
    line-height: 1.5;
  }
  .text_wrapper {
    position: relative;
    margin-bottom: 25px;
    /* margin-bottom: 45px; */
  }
  .text {
    height: 90px;
    overflow: hidden;
  }
  .show_more,
  .show_more2 {
    position: absolute;
    bottom: 0px;
    left: 0px;
    width: 100%;
    height: 30px;
    padding-top: 60px;
    text-align: center;
    line-height: 30px;
    background: linear-gradient(
      180deg,
      rgb(255, 255, 255, 0) 0%,
      rgb(248, 249, 250, 1) 70%
    );
    cursor: pointer;
    transition: bottom 0.2s;
  }
  .active {
    background: none;
    bottom: -30px;
  }