@import '../global.scss';
.tea-fold-card {
  box-shadow: 0px 0px 10px 0px rgba(204, 204, 204, 0.7);
  border-radius: 4px;
  flex: 0 0 auto;
  .action {
    border-radius: 50%;
    background: #fff;
    height: 22px;
    width: 22px;
    cursor: pointer;
    display: inline-block;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    text-align: center;
    line-height: 1;
    user-select: none;
    transition: all 0.12s;
  }

  .down {
    transform: rotate(180deg);
  }
  .shrink {
    display: none;
  }

  .cardTitle {
    padding: 0 22px;
    display: flex;
    align-items: center;
    height: 50px;
    background: rgba($color: $text-color, $alpha: 0.08);
    font-size: 16px;
    font-weight: bold;
    color: rgba($color: $text-color, $alpha: 0.62);
    justify-content: space-between;
  }
  .cardContent {
    background-color: #fff;
    font-size: 14px;
    font-weight: 400;
    color: rgba(153, 153, 153, 1);
    padding: 24px 24px;
  }
}
