Blame view

src/pages/custom-service/components/policy-change-information.scss 3.59 KB
simon committed
1 2
@import '@/styles/_support';

simon committed
3 4 5 6
.container {
  padding-bottom: 2rem;
}

simon committed
7 8 9

.border {
  @extend .bb;
simon committed
10
  // height: 387px;
simon committed
11 12 13 14
  border-radius: 8px;
  border: solid 1px #f2f2f2;
  background-color: #ffffff;
}
simon committed
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

.table {
  $girdHei: 4.333333rem;
  text-align: center;

  &-header {
    @include border-top-radius(.666667rem);
    display: flex;
    align-items: center;
    height: 2.5rem;
    color: #ffffff;
    font-weight: bold;
    letter-spacing: .1rem;

    &-item {
      @extend .bb;
      padding: 0 2rem;
    }
  }
}


.form {
  @extend .bb;
  padding: 1rem .75rem;

  &-item {
    position: relative;
    margin-bottom: 2.333333rem;
    padding: 0 1.25rem;

    .label {
      color: #f05a23;
      display: flex;
      align-items: center;
simon committed
50

simon committed
51 52 53 54 55 56 57 58 59 60 61 62
      margin-bottom: .7rem;

      .icon {
        width: 2.166667rem;
        display: flex;
      }

      img {
        height: 1rem;
      }
    }

simon committed
63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82
    .label2 {
      justify-content: space-between;

      .icon2 {

        width: 1.2rem;
        display: flex;
      }

      .t1 {
        color: $cFontGray;
      }

      .t2 {
        color: $cOrange;
        text-decoration: underline;
        @extend .pointer;
      }
    }

simon committed
83 84 85 86 87 88 89 90 91 92 93 94 95 96 97
    .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.083333rem;
      }

simon committed
98 99 100 101
      .disable {
        background-color: #dcdddd;
      }

simon committed
102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128
      // 长文本
      .textarea {
        min-height: 8.75rem;
        border-radius: 1rem;
        @extend .bb;
        padding: .75rem;
      }

      .down-arrow {
        position: absolute;
        top: 1.6rem;
        right: 2rem;
        background-image: url('~@/assets/images/reservation/re-down-arrow.png');
        width: 1rem;
        height: .666667rem;
        pointer-events: none;
        cursor: default;
      }
    }
  }

  // 不换行
  &-item2 {
    display: flex;
    margin-bottom: 2.25rem;

    .label {
simon committed
129
      // min-width: 12.833333rem;
simon committed
130
      height: 2.5rem;
simon committed
131 132
      margin-right: 2.25rem;
      color: $cFontGray;
simon committed
133 134 135 136 137 138 139
    }

    .cont {

      display: flex;

      .boo-btn {
simon committed
140 141
        // width: 5.25rem;
        padding: 0 2.25rem;
simon committed
142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189
        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);
      }
    }
  }

}

.orange {
  background-color: $cOrange;
}

.submit-btn {
  width: 13.583333rem;
  height: 4.083333rem;
  margin: 0 auto 0;
  line-height: 4.083333rem;
  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, #ec6429, #ec6429);
  text-align: center;
  font-size: 1.291667rem;
  letter-spacing: .129167rem;
  color: #ffffff;
  border-radius: 3.5rem;
  cursor: pointer;
  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, #ec6429, #ec6429);
}