.my-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 6px 18px 0 rgba(33, 85, 181, 10%);

  &-small {
    flex: 0 0 47px;
    height: 47px;
  }

  &-header {
    display: flex;
    flex: 0 0 32px;
    align-items: center;
    justify-content: space-between;
    height: 32px;
    padding: 12px;
    font-size: 16px;
    border-bottom: 1px solid #eff1f5;

    &-small {
      flex: 0 0 47px;
      height: 47px;
    }

    &-left {
      display: flex;
      align-items: center;

      &-default {
        display: inline-block;
        width: 4px;
        height: 20px;
        margin-right: 8px;
        background: #37f;
        border-radius: 2px;
      }

      &-icon {
        position: relative;
        // 偏移量
        // top: 2px;
        margin-right: 8px;
        font-size: 21px;
      }

      &-text {
        color: #282d30;
        font-weight: 600;
        font-size: 16px;
      }
    }

    &-right {
      padding-right: 4px;
      color: #8f9bb3;
      font-size: 14px;
      cursor: pointer;

      &:hover {
        color: #37f;
      }
    }
  }

  &-body {
    flex: 1;
    padding: 16px;
    overflow: hidden;
  }
}
