36fc24f2 by simon

默认提交

1 parent 9114bca7
...@@ -5,7 +5,7 @@ ...@@ -5,7 +5,7 @@
5 "scripts": { 5 "scripts": {
6 "serve": "vue-cli-service serve", 6 "serve": "vue-cli-service serve",
7 "dev": "vue-cli-service serve", 7 "dev": "vue-cli-service serve",
8 "build": "vue-cli-service build --no clean", 8 "build": "vue-cli-service build",
9 "sandbox": "vue-cli-service build --mode sandbox", 9 "sandbox": "vue-cli-service build --mode sandbox",
10 "lint": "vue-cli-service lint", 10 "lint": "vue-cli-service lint",
11 "oss": "node build/oss-released.js" 11 "oss": "node build/oss-released.js"
......
...@@ -59,6 +59,11 @@ html { ...@@ -59,6 +59,11 @@ html {
59 box-sizing: border-box; 59 box-sizing: border-box;
60 } 60 }
61 61
62 html,
63 body {
64 -webkit-text-size-adjust: none;
65 }
66
62 body, 67 body,
63 div { 68 div {
64 border: 0; 69 border: 0;
...@@ -232,6 +237,31 @@ input::-webkit-search-cancel-button { ...@@ -232,6 +237,31 @@ input::-webkit-search-cancel-button {
232 display: none; 237 display: none;
233 } 238 }
234 239
240 // input::-webkit-input-placeholder {
241 // color: $cGray !important;
242 // }
243
244 ::-webkit-input-placeholder {
245 /* WebKit, Blink, Edge */
246 color: $cGray;
247 opacity: 1;
248 }
249 :-moz-placeholder {
250 /* Mozilla Firefox 4 to 18 */
251 color: $cGray;
252 opacity: 1;
253 }
254 ::-moz-placeholder {
255 /* Mozilla Firefox 19+ */
256 color: $cGray;
257 opacity: 1;
258 }
259 :-ms-input-placeholder {
260 /* Internet Explorer 10-11 */
261 color: $cGray;
262 opacity: 1;
263 }
264
235 textarea { 265 textarea {
236 outline: none; 266 outline: none;
237 border-radius: 0; 267 border-radius: 0;
...@@ -263,21 +293,18 @@ textarea { ...@@ -263,21 +293,18 @@ textarea {
263 } 293 }
264 294
265 .content { 295 .content {
266 // width: 1024px;
267 max-width: 1024px; 296 max-width: 1024px;
268 width: 100%; 297 width: 100%;
269 margin: 0 auto; 298 margin: 0 auto;
270 } 299 }
271 300
272 .box-w { 301 .box-w {
273 // width: 1024px;
274 max-width: 1024px; 302 max-width: 1024px;
275 width: 100%; 303 width: 100%;
276 margin: 0 auto; 304 margin: 0 auto;
277 } 305 }
278 306
279 .box { 307 .box {
280 // width: 950px;
281 max-width: 950px; 308 max-width: 950px;
282 width: 100%; 309 width: 100%;
283 margin: 0 auto; 310 margin: 0 auto;
......
...@@ -64,19 +64,19 @@ module.exports = { ...@@ -64,19 +64,19 @@ module.exports = {
64 ] 64 ]
65 }, 65 },
66 { 66 {
67 name: "新聞資訊", 67 name: "新闻资讯",
68 path: "/news/list", 68 path: "/news/list",
69 list: [] 69 list: []
70 }, 70 },
71 { 71 {
72 name: "關於平安人壽", 72 name: "关于平安人寿",
73 path: "", 73 path: "",
74 list: [{ 74 list: [{
75 name: "公司介", 75 name: "公司介",
76 path: "/profile" 76 path: "/profile"
77 }, 77 },
78 { 78 {
79 name: "領導人概況", 79 name: "领导人概况",
80 path: "" 80 path: ""
81 }, 81 },
82 ] 82 ]
......
...@@ -8,7 +8,7 @@ ...@@ -8,7 +8,7 @@
8 8
9 .footer-containter { 9 .footer-containter {
10 margin: 0 auto; 10 margin: 0 auto;
11 max-width: 950px; 11 // max-width: 950px;
12 12
13 .cont { 13 .cont {
14 margin-left: 3.166667rem; 14 margin-left: 3.166667rem;
...@@ -35,7 +35,9 @@ ...@@ -35,7 +35,9 @@
35 35
36 // 热线 36 // 热线
37 .hotline { 37 .hotline {
38 margin-right: 8rem; 38 // margin-right: 8rem;
39 // min-width: 280px;
40 flex: 1;;
39 41
40 .contact { 42 .contact {
41 .n-item { 43 .n-item {
...@@ -67,7 +69,7 @@ ...@@ -67,7 +69,7 @@
67 69
68 .n-item { 70 .n-item {
69 cursor: pointer; 71 cursor: pointer;
70 min-width: 15rem; 72 min-width: 14rem;
71 } 73 }
72 } 74 }
73 75
......
1 1
2 <template> 2 <template>
3 <footer class="v-footer"> 3 <footer class="v-footer ">
4 <div class="footer-containter"> 4 <div class="footer-containter box">
5 <div class="cont"> 5 <div class="cont">
6 <div class="logo-wrap"> 6 <div class="logo-wrap">
7 <img class="logo-img" src="@/assets/images/home/footer-logo.png" alt="中国平安人寿保险"> 7 <img class="logo-img" src="@/assets/images/home/footer-logo.png" alt="中国平安人寿保险">
......
...@@ -51,6 +51,8 @@ ...@@ -51,6 +51,8 @@
51 .textarea { 51 .textarea {
52 min-height: 8.75rem; 52 min-height: 8.75rem;
53 border-radius: 1rem; 53 border-radius: 1rem;
54 @extend .bb;
55 padding: .75rem;
54 } 56 }
55 57
56 .down-arrow { 58 .down-arrow {
......
...@@ -52,7 +52,7 @@ ...@@ -52,7 +52,7 @@
52 <img src="@/assets/images/reservation/icon-re-arrow-reservation.png">預約說明 52 <img src="@/assets/images/reservation/icon-re-arrow-reservation.png">預約說明
53 </div> 53 </div>
54 <div class="ipt-wrap"> 54 <div class="ipt-wrap">
55 <textarea class="ipt textarea"></textarea> 55 <textarea placeholder="非必填,字数不超过500字,提示文字“请简单说明您想要咨询的险种或业务”" class="ipt textarea"></textarea>
56 </div> 56 </div>
57 </div> 57 </div>
58 58
...@@ -61,8 +61,8 @@ ...@@ -61,8 +61,8 @@
61 <img src="@/assets/images/reservation/icon-re-custom.png">是否平安香港客戶 61 <img src="@/assets/images/reservation/icon-re-custom.png">是否平安香港客戶
62 </div> 62 </div>
63 <div class="cont"> 63 <div class="cont">
64 <div class="boo-btn active"></div> 64 <div class="boo-btn pointer active"></div>
65 <div class="boo-btn">不是</div> 65 <div class="boo-btn pointer">不是</div>
66 </div> 66 </div>
67 </div> 67 </div>
68 68
......
...@@ -27,7 +27,6 @@ $colorGray: #475669; ...@@ -27,7 +27,6 @@ $colorGray: #475669;
27 $colorBlack: #000; 27 $colorBlack: #000;
28 $colorRed: #FF4949; 28 $colorRed: #FF4949;
29 $colorYellow: #F7BA2A; 29 $colorYellow: #F7BA2A;
30
31 $color: #787878; 30 $color: #787878;
32 $colorLink: #1D8CE0; 31 $colorLink: #1D8CE0;
33 32
...@@ -39,3 +38,9 @@ $fontSizeSmall: 28px; ...@@ -39,3 +38,9 @@ $fontSizeSmall: 28px;
39 $fontSizeSmaller: 24px; 38 $fontSizeSmaller: 24px;
40 $fontSizeLarge: 36px; 39 $fontSizeLarge: 36px;
41 $fontSizeLarger: 44px; 40 $fontSizeLarger: 44px;
41
42
43 $cOrange:#f05a23;
44 $cGreen:#006441;
45 $cGray:#bfbfbf;
46 $cDark:#dcdcdc;
......