// 基本颜色
// -----------------------
$border-color: #f2f6f9 !default; // nav 导航条色

.miao-card {
  &.border {
    &.full {
      border-top: 1px $border-color solid;
      border-bottom: 1px $border-color solid;
    }

    &.card {
      border: 1px $border-color solid;
    }

    .card {
      &-header {
        border-bottom: 1px $border-color solid;
      }

      &-footer {
        border-top: 1px $border-color solid;
      }
    }
  }

  &.shadow {
    box-shadow: 5Px 5Px 10Px rgba(26, 26, 26, 0.2);
  }

  &.full {
    border-radius: 0;
    margin-left: 0;
    margin-right: 0;
    box-shadow: unset;
  }

  &.card {
    border-radius: 8Px;
    margin: 15Px
  }
}