Blame view

src/pages/reservation/reservation.scss 2.28 KB
simon committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53
@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;
simon committed
54 55
        @extend .bb;
        padding: .75rem;
simon committed
56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103
      }

      .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 {
joe committed
104 105 106
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
simon committed
107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140

    .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;
    }
  }
}