reservation.scss 2.24 KB
@import '@/styles/_support';

.content {
  padding-bottom: 6rem;
}

.top-space {
  height: 4.25rem;
}

.box {}

.form {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;

  &-item {
    position: relative;
    padding: 0 1.75rem;
    margin-bottom: 2.5rem;

    .label {
      color: #f05a23;
      display: flex;
      align-items: center;
      margin-bottom: .7rem;

      img {
        height: 1rem;
        margin-right: .8rem;
      }
    }

    .ipt-wrap {
      position: relative;

      // input和下拉
      .ipt {
        @extend .bb;

        width: 100%;
        height: 3.5rem;
        border: solid 1px #dcdddd;
        background-color: #ffffff;
        border-radius: 3.5rem;
        padding: 0 2.5rem;
      }

      // 长文本
      .textarea {
        min-height: 8.75rem;
        border-radius: 1rem;
      }

      .down-arrow {
        position: absolute;
        top: 1.6rem;
        right: 2rem;
      }
    }

  }

  // 不换行
  &-item2 {
    display: flex;

    .label {
      min-width: 13.75rem;
      height: 2.5rem;
    }

    .cont {

      display: flex;

      .boo-btn {
        width: 5.25rem;
        height: 2.5rem;
        line-height: 2.5rem;
        border: solid 1px #dcdddd;
        background-color: #ffffff;
        border-radius: 2.5rem;
        text-align: center;
        margin: 0 0.6rem;
      }

      .active {
        border: none;
        color: #ffffff;
        background-color: #f05a23;
        box-shadow: 0px 10px 13px 0 rgba(236, 100, 41, 0.2);
        background-blend-mode: soft-light, ;
        // background-image: linear-gradient(to top, #000000, #ffffff), linear-gradient(to bottom, #f05a23, #f05a23);
        background-image: linear-gradient(to bottom, #f05f28, #f05021);
      }
    }
  }

  &-item3 {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;

    .label {
      min-width: 13.75rem;
    }

    .cont {
      .calendar {
        img {
          max-width: 96%;
        }
      }
    }
  }
}


.notice {
  margin-top: 4rem;
  @extend .bb;
  padding: 0 1rem;

  &-item {
    position: relative;
    line-height: 2;
    letter-spacing: 1.2px;
    margin-bottom: 1rem;

    &-icon {
      // display: inline-block;
      position: absolute;
      top: .5rem;
    }
  }
}