favorite.scss 1.5 KB
@import './../../styles/support';

.page {}

.nav {
  @extend .bb;
  display: flex;
  justify-content: center;
  align-items: center;


  &-v-line {
    width: 4px;
    height: 45px;
    background-color: #adadad;
  }

  &-item {
    color: #adadad;
    position: relative;
    @extend .bb;
    padding: 0 40;
    text-align: center;
    width: 100%;
    height: 112px;
    padding-top: 32px;
    font-size: 30px;

  }

  .active {
    color: #c28585;

    .under {
      position: absolute;
      height: 3px;
      width: 112px;
      background-color: #c28585;
      left: 0;
      right: 0;
      bottom: 24px;
      margin: 0 auto;
    }
  }
}

.shop-list {
  width: $contentWidth;
  margin: 54px auto 0;
}

// 店铺信息
.shop {

  display: flex;
  align-items: center;
  margin: 0 auto 48px;
  height: auto;

  &-icon {
    width: 120px;
    height: 120px;
    border-radius: 120px;
    border: solid 1px #333333;
  }

  &-detail {
    flex: 1;
    @extend .bb;
    height: 120px;
    padding: 0 12px 0 24px;
    flex-wrap: wrap;
    display: flex;
    align-content: space-between;
    height: auto;

    div {
      width: 100%;
    }

    &-title {
      font-size: 28px;
    }

    &-desc {
      font-size: 18px;
    }
  }

  &-btn-wrap {
    .shop-btn {
      @include btc(148px, 52px);
      background-color: #cc9999;
      border-radius: 52px;
      color: #ffffff;
      margin: 12px 0;
      font-size: 24px;
    }

    .shop-btn2 {
      background: transparent;
      border: solid 1px #ffffff;
    }
  }


}