policy-change-contact.scss
2.88 KB
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
54
55
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
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
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
@import '@/styles/_support';
.container {
  @extend .bb;
  padding: 1.833333rem 3rem 2.5rem 2.166667rem;
}
.border {
  border-radius: 8px;
  border: solid 1px #f2f2f2;
  background-color: #ffffff;
}
.form {
  display: flex;
  flex-wrap: wrap;
  &-item {
    position: relative;
    margin-bottom: 2.333333rem;
    width: 100%;
    &:last-child {
      margin-bottom: 0;
    }
    .label {
      color: #f05a23;
      display: flex;
      align-items: center;
      margin-bottom: .7rem;
      .icon {
        width: 2.166667rem;
        display: flex;
      }
      img {
        height: 1rem;
      }
    }
    .ipt-wrap {
      display: flex;
      justify-content: space-between;
      align-items: center;
      position: relative;
      // input和下拉
      .ipt {
        flex: 1;
      }
      .agree {
        cursor: pointer;
      }
      .name-ipt {
        width: 13.666667rem;
      }
      .phone-ipt {
        width: 13.666667rem;
      }
      .mail-ipt {}
      // 长文本
      .textarea {
        min-height: 8.75rem;
        border-radius: 1rem;
        @extend .bb;
        padding: .75rem;
      }
      .down-arrow {
        position: absolute;
        top: 2.2rem;
        right: 2rem;
        background-image: url('~@/assets/images/reservation/re-down-arrow.png');
        width: 1rem;
        height: .666667rem;
        pointer-events: none;
        cursor: default;
      }
      .check-icon {
        display: inline-block;
        margin-left: 2.166667rem;
        margin-right: .666667rem;
      }
    }
    .validator {
      color: $cOrange;
      margin-top: 0.5rem;
      position: absolute;
      right: 16rem;
      display: flex;
      align-items: center;
      // bottom: 0;
      img {
        display: inline-block;
        margin-right: 0.4rem;
      }
    }
  }
}
.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);
}
@media (max-width: 1200px) {
  .container {
    display: -webkit-box;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    width: 92vw;
  }
}
@media (max-width: 768px) {
  .form {
    &-item {
      .ipt-wrap {
        display: block;
      }
      .agree {
        margin-top: $marginSmall-M;
        .check-icon {
          margin-left: 0;
        }
      }
    }
  }
}