.#{$t-cell-prefix-cls} {
  position: relative;
  box-sizing: border-box;
  display: block;
  min-height: .96rem;
  overflow: hidden;
  color: inherit;
  text-decoration: none;
  background-color: #fff;

  &:first-child {
    .#{$t-cell-prefix-cls}wrapper {
      background-origin: border-box;
    }
  }

  &:last-child {
    background-image: linear-gradient(0deg, #d9d9d9, #d9d9d9 50%, transparent 50%);
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: 100% 1px;
  }

  &__wrapper {
    box-sizing: border-box;
    display: flex;
    align-items: center;
    width: 100%;
    min-height: inherit;
    padding: .08rem .32rem;
    overflow: hidden;
    line-height: 1.4;
    // background-image: linear-gradient(180deg, #d9d9d9, #d9d9d9 50%, transparent 50%);
    // background-repeat: no-repeat;
    // background-position: bottom left;
    // background-origin: content-box;
    // background-size: 120% 2px;
    border-bottom: 0.01rem solid #d9d9d9;
  }

  &.#{$t-cell-prefix-cls}-last {
    .#{$t-cell-prefix-cls}__wrapper {
      background: none;
    }
  }

  img {
    vertical-align: middle;
  }

  &__title {
    flex: 1;
    color: #000;
    &--text {
      vertical-align: middle;
    }

    &--label {
      display: block;
      margin-top: .06rem;
      font-size: .24rem;
      color: #999;
    }
  }

  &__content {
    // display: flex;
    display: block;
    // align-items: center;
    max-width: 60%;
    font-size: .28rem;
    color: #333;

    &--link {
      margin-right: .1rem;
    }
  }

  &__left {
    position: absolute;
    left: 0;
    height: 100%;
    transform: translate3d(-100%, 0, 0);
  }

  &__right {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    transform: translate3d(100%, 0, 0);
  }

  &__wrapper,
  &__right {
    transition: transform 150ms ease-in-out;
  }
}
