梁彦春 6 년 전
부모
커밋
2f10ecdaac

BIN
src/assets/image/logoicon/cancel.png 파일 보기


+ 24
- 14
src/components/commonComponents/icon.vue 파일 보기

@@ -38,7 +38,9 @@
38 38
             <div class="submit">提交</div>
39 39
           </div>
40 40
         </div>
41
-        <div class="cancel" @click="cancel">×</div>
41
+        <div class="cancel" @click="cancel">
42
+          <img src="../../assets/image/logoicon/cancel.png" alt="" class="cancelImg">
43
+        </div>
42 44
       </div>
43 45
     </div>
44 46
   </div>
@@ -46,19 +48,18 @@
46 48
 
47 49
 <script>
48 50
 export default {
49
-  name: "top-top",
51
+  name: "to-top",
50 52
   data () {
51 53
     return {
52
-      toTopIsShow: false,//控制回到顶部按钮是否显示
54
+      toTopIsShow: false,
53 55
       mask: false,
54
-
55 56
     }
56 57
   }
57 58
   ,
58 59
   methods: {
59 60
     toTop () {
60
-      if (document.documentElement.scrollTop > 0) {
61
-        document.documentElement.scrollTop = 0;
61
+      if (document.documentElement.scrollTop > 0 || window.pageYOffset > 0 || document.body.scrollTop > 0) {
62
+        window.pageYOffset = document.documentElement.scrollTop = document.body.scrollTop = 0;
62 63
       }
63 64
     },
64 65
     news () {
@@ -71,10 +72,9 @@ export default {
71 72
         this.mask = false
72 73
     }
73 74
   },
74
-  created () {
75
+  mounted () {
75 76
     var _this = this;
76 77
     window.onscroll = function () {
77
-      //鼠标滚轮滚动距离超过10像素时,回到顶部按钮才显示
78 78
       if (document.documentElement.scrollTop > 10) {
79 79
         _this.toTopIsShow = true;
80 80
       } else {
@@ -97,7 +97,7 @@ export default {
97 97
   height: 80px;
98 98
   cursor: pointer;
99 99
   background: url("../../assets/image/program/toTop.png") no-repeat;
100
-  overflow: hidden;
100
+  /* overflow: hidden; */
101 101
 }
102 102
 .toTop:hover {
103 103
   background: url("../../assets/image/program/toTop.png") no-repeat;
@@ -142,7 +142,6 @@ export default {
142 142
 .small_tittle {
143 143
   font-size: 16px;
144 144
   font-family: PingFangSC-Light;
145
-  font-weight: 300;
146 145
   color: rgba(0, 0, 0, 1);
147 146
   margin: 14px auto;
148 147
 }
@@ -171,6 +170,10 @@ export default {
171 170
   justify-content: space-between;
172 171
 }
173 172
 .inp {
173
+  font-size:18px;
174
+font-family:PingFangSC-Light;
175
+font-weight:300;
176
+color:rgba(0,0,0,1);
174 177
   width: 160px;
175 178
   border: none;
176 179
   border-bottom: 1px solid rgba(187, 187, 187, 1);
@@ -200,17 +203,24 @@ export default {
200 203
   cursor: pointer;
201 204
 }
202 205
 .cancel {
206
+  /* background: url("../../assets/image/logoicon/cancel.png") no-repeat;
207
+  background-size: 100% 100%; */
203 208
   margin: 70px auto 0 auto;
204 209
   width: 40px;
205 210
   height: 40px;
206 211
   border-radius: 50%;
207
-  background: rgba(255, 255, 255, 1);
208
-  box-shadow: 0px 1px 14px 0px rgba(65, 101, 242, 0.2);
212
+  /* background: rgba(255, 255, 255, 1); */
213
+  /* box-shadow: 0px 1px 14px 0px rgba(65, 101, 242, 0.2); */
209 214
   display: flex;
210 215
   align-items: center;
211 216
   justify-content: center;
212
-  color: rgba(204,204,204,1);
213
-  font-size: 16px;
217
+  /* color: rgba(204,204,204,1); */
218
+  /* font-size: 16px; */
214 219
   cursor: pointer;
215 220
 }
221
+.cancelImg{
222
+  /* width: 40px;
223
+  height: 40px; */
224
+  border-radius: 50%;
225
+}
216 226
 </style>

+ 0
- 27
src/components/commonComponents/mask.vue 파일 보기

@@ -1,27 +0,0 @@
1
-<template>
2
-    <div class="mask">
3
-        
4
-    </div>
5
-</template>
6
-
7
-<script>
8
-    export default {
9
-        data(){
10
-            return{
11
-                
12
-            }
13
-        }
14
-        ,
15
-        methods:{
16
-        }
17
-    }
18
-</script>
19
-
20
-<style scoped>
21
-.mask{
22
-  width: 100%;
23
-  height: 100%;
24
-  background-color: rgba(0,0,0,0.4);
25
-  z-index: 100;
26
-}
27
-</style>

+ 46
- 22
src/components/pages/index.vue 파일 보기

@@ -114,7 +114,7 @@
114 114
               <div class="peoduce_top">
115 115
                 <div class="list first" :class="page3 == true ? 'animation fadeIn1' :''">
116 116
                   <p class="list-name">AI迎宾判客系统</p>
117
-                  <img src="../../assets/image/home/produce/Group45.png" alt style="margin-top:28px">
117
+                  <img src="../../assets/image/home/produce/Group45.png" alt style="margin-top: 42px;">
118 118
                   <p class="list-desc">智慧人脸风控应用于案场、地铁、银行等</p>
119 119
                 </div>
120 120
                 <div class="list" :class="page3 == true ? 'animation fadeIn2' :''">
@@ -124,9 +124,9 @@
124 124
                 </div>
125 125
               </div>
126 126
               <div class="produce_bottom">
127
-                <div class="list" :class="page3 == true ? 'animation fadeIn3' :''">
127
+                <div class="list" :class="page3 == true ? 'animation fadeIn3' :''" >
128 128
                   <p class="list-name">银城慧家APP</p>
129
-                  <img src="../../assets/image/home/produce/Group47.png" alt>
129
+                  <img src="../../assets/image/home/produce/Group47.png" alt style="margin-top: 42px;">
130 130
                   <p class="list-desc">智慧社区管理软件,一键开启智慧社区美好生活</p>
131 131
                 </div>
132 132
                 <div class="list" :class="page3 == true ? 'animation fadeIn4' :''">
@@ -173,7 +173,8 @@
173 173
           </div>
174 174
         </div>
175 175
         <div class="page-5 fp-auto-height">
176
-          <p class="title">我们的客户</p>
176
+          <div class="page-5-con">
177
+            <p class="title">我们的客户</p>
177 178
           <div class="logo-box">
178 179
             <div>
179 180
               <img src="../../assets/image/home/logo/Group29.png" alt>
@@ -198,6 +199,7 @@
198 199
               <img src="../../assets/image/home/logo/Group43.png" alt>
199 200
             </div>
200 201
           </div>
202
+          </div>
201 203
           <footerNav class="foot"></footerNav>
202 204
         </div>
203 205
       </div>
@@ -451,37 +453,54 @@ export default {
451 453
     height: 100%;
452 454
     background-size: 100% 100%;
453 455
     overflow: hidden;
454
-    display: flex;
455
-    justify-content: center;
456
-    align-items: center;
456
+    // display: flex;
457
+    // justify-content: center;
458
+    // align-items: center;
457 459
     // position: relative;
458 460
     .page-3_con {
459
-      padding: 8.5% 0 3% 0;
461
+      width: 100%;
462
+      margin-top: 8.5%;
463
+    margin-bottom: 3%;
464
+    margin: auto;
465
+      // padding: 8.5% 0 3% 0;
460 466
       .title {
461 467
         font-size: 56px;
468
+        margin-top: 7%;
462 469
         // padding-top: 5%;
463 470
         color: #fff;
464 471
       }
465 472
       .produce {
466
-        width: 1090px;
467
-        height: 680px;
473
+        // width: 1090px;
474
+        // width: 56.77%;
475
+        // height: 680px;
476
+        width: 50%;
477
+        min-width: 720px;
468 478
         margin: 20px auto;
479
+        .peoduce_top{
480
+          display: flex;
481
+          // justify-content: space-between;
482
+        }
483
+        .produce_bottom{
484
+          display: flex;
485
+          // justify-content: space-between;
486
+        }
469 487
         .list {
470
-          width: 443px;
471
-          height: 322px;
472
-          background-color: #fff;
473
-          border-radius: 4px;
474
-          padding: 0 40px;
475
-          margin: 10px;
476
-          float: left;
488
+          
489
+              width: 54.48%;
490
+    /* height: 23.81%; */
491
+    background-color: #fff;
492
+    border-radius: 4px;
493
+    padding: 0 4%;
494
+    margin: 10px;
477 495
           .list-name {
478 496
             color: #03033f;
479 497
             border-bottom: 1.5px dashed #040445;
480
-            padding: 30px 0 18px 0;
498
+            padding: 7.5% 0 4% 0;
481 499
             font-size: 30px;
482 500
           }
483 501
           img {
484
-            height: 143px;
502
+            // height: 143px;
503
+            width: 80%;
485 504
             margin-top: 16px;
486 505
           }
487 506
           .list-desc {
@@ -636,15 +655,19 @@ export default {
636 655
     height: 100%;
637 656
     background-size: 100% 100%;
638 657
     overflow: hidden;
639
-    .title {
658
+    .page-5-con{
659
+      // margin: 13%;
660
+      position: absolute;
661
+    bottom: 40%;
662
+      .title {
640 663
       font-size: 56px;
641
-      padding-top: 11.2%;
642 664
       color: #fff;
643 665
     }
644 666
     .logo-box {
645 667
       width: 65.63%;
646 668
       min-width: 980px;
647
-      margin: 0.63% auto;
669
+      margin: auto;
670
+      // margin: 0.63% auto;
648 671
       img {
649 672
         width: 13.14%;
650 673
         min-width: 183px;
@@ -652,6 +675,7 @@ export default {
652 675
         margin: 0.39%;
653 676
       }
654 677
     }
678
+    }
655 679
   }
656 680
 }
657 681
 .container {

+ 15
- 7
src/components/pages/productCenter/AIwelcome.vue 파일 보기

@@ -146,12 +146,12 @@
146 146
             </div>
147 147
             <div class="secondHouse_content_right">
148 148
               <div class="secondHouse_content_box">
149
-                <div class="box_tittle">
149
+                <div class="box_tittle1">
150 150
                   <p class="box_tittle_p1">客户到访</p>
151 151
                   <p class="box_tittle_p2">卡口相机车牌、司乘抓拍, 云端智能匹配</p>
152 152
                   <p class="box_tittle_p3">有效识别访客身份</p>
153 153
                 </div>
154
-                <div class="box_img">
154
+                <div class="box_img1">
155 155
                   <img src="../../../assets/image/AIwelcome/Group19.png" alt>
156 156
                 </div>
157 157
               </div>
@@ -169,8 +169,7 @@
169 169
               <div class="secondHouse_content_box">
170 170
                 <div class="box_tittle">
171 171
                   <p class="box_tittle_p1">专业地产营销场景设计</p>
172
-                  <p class="box_tittle_p2">合理规划营销动线</p>
173
-                  <p class="box_tittle_p3">全面了解记录客户偏好</p>
172
+                  <p class="box_tittle_p2">合理规划营销动线,全面了解记录客户偏好</p>
174 173
                 </div>
175 174
                 <div class="box_img">
176 175
                   <img src="../../../assets/image/AIwelcome/Group17.png" alt>
@@ -230,7 +229,7 @@ export default {
230 229
 .nav {
231 230
   width: 1280px;
232 231
   position: relative;
233
-  top: 13%;
232
+  top: -8%;
234 233
   // margin-top: -207px;
235 234
   margin: auto;
236 235
   display: flex;
@@ -263,7 +262,7 @@ export default {
263 262
 }
264 263
 .product_top {
265 264
   width: 1260px;
266
-  height: 90%;
265
+  height: 110%;
267 266
   display: flex;
268 267
   justify-content: center;
269 268
 }
@@ -433,6 +432,7 @@ export default {
433 432
   box-shadow: 0px 1px 14px 0px rgba(65, 101, 242, 0.2);
434 433
   border-radius: 7px;
435 434
 }
435
+
436 436
 .box_tittle {
437 437
   width: 406px;
438 438
   margin: 0 35px;
@@ -442,10 +442,18 @@ export default {
442 442
   color: rgba(102, 102, 102, 1);
443 443
   font-size: 18px;
444 444
 }
445
+.box_tittle1{
446
+  padding: 24px 0;
447
+}
445 448
 .box_img {
446 449
   margin-top: 30px;
447 450
   img {
448
-    // width: 357px;
451
+    height: 186px;
452
+  }
453
+}
454
+.box_img1{
455
+  margin-top: 24px;
456
+  img {
449 457
     height: 186px;
450 458
   }
451 459
 }

+ 16
- 6
src/components/pages/productCenter/online.vue 파일 보기

@@ -548,7 +548,7 @@ export default {
548 548
       }
549 549
     }
550 550
     .introduction {
551
-      width: 100%;
551
+      width: 1175px;
552 552
       margin: 0 auto;
553 553
       .introduction_tittle {
554 554
         height: 80px;
@@ -577,12 +577,12 @@ export default {
577 577
           display: flex;
578 578
           justify-content: space-between;
579 579
           .introduction_content_left {
580
-            width: 582px;
580
+            width: 570px;
581 581
             //  height: 50px;
582 582
             //  background-color: orange;
583 583
             .introduction_content_registered {
584
-              width: 100%;
585
-              height: 202px;
584
+              width: 510px;
585
+              height: 162px;
586 586
               background-color: #fff;
587 587
               box-shadow: 0px 1px 14px 0px rgba(65, 101, 242, 0.2);
588 588
               border-radius: 8px;
@@ -600,9 +600,14 @@ export default {
600 600
               .registered_con {
601 601
                 width: 306px;
602 602
                 font-size: 18px;
603
+                margin-left: 80px;
604
+                text-align: left;
605
+                color:rgba(102,102,102,1);
603 606
                 .registered_con_p1 {
604 607
                   font-size: 24px;
605 608
                   margin: 10px 0;
609
+                  font-weight:500;
610
+                  color:rgba(0,0,0,1);
606 611
                 }
607 612
                 .registered_con_p1,
608 613
                 .registered_con_p2,
@@ -620,8 +625,8 @@ export default {
620 625
             width: 582px;
621 626
 
622 627
             .introduction_content_registered {
623
-              width: 100%;
624
-              height: 202px;
628
+              width: 510px;
629
+              height: 162px;
625 630
               background-color: #fff;
626 631
               box-shadow: 0px 1px 14px 0px rgba(65, 101, 242, 0.2);
627 632
               border-radius: 8px;
@@ -639,9 +644,14 @@ export default {
639 644
               .registered_con {
640 645
                 width: 306px;
641 646
                 font-size: 18px;
647
+                margin-left: 80px;
648
+                text-align: left;
649
+                color:rgba(102,102,102,1);
642 650
                 .registered_con_p1 {
643 651
                   font-size: 24px;
644 652
                   margin: 10px 0;
653
+                  font-weight:500;
654
+                  color:rgba(0,0,0,1);
645 655
                 }
646 656
                 .registered_con_p1,
647 657
                 .registered_con_p2,

+ 16
- 5
src/components/pages/productCenter/productCenter.vue 파일 보기

@@ -90,13 +90,13 @@
90 90
                 </div>
91 91
               </div>
92 92
 
93
-              <div class="secondHouse_content_box">
94
-                <div class="box_tittle">
93
+              <div class="secondHouse_content_box1">
94
+                <div class="box_tittle1">
95 95
                   <p class="box_tittle_p1">金融级数据安全, 微软支付核心技术</p>
96 96
                   <p class="box_tittle_p2">更多,更强大的专业功能</p>
97 97
                   <p class="box_tittle_p3">为房产中介公司提供澎湃的发展动力</p>
98 98
                 </div>
99
-                <div class="box_img">
99
+                <div class="box_img1">
100 100
                   <img src="../../../assets/image/secondHandHouse/Group9.png" alt>
101 101
                 </div>
102 102
               </div>
@@ -434,7 +434,7 @@ letter-spacing:7px;
434 434
     margin-top: 20px;
435 435
   }
436 436
 }
437
-.secondHouse_content_box {
437
+.secondHouse_content_box,.secondHouse_content_box1{
438 438
   width: 475px;
439 439
   height: 360px;
440 440
   margin: 0 0 30px 30px;
@@ -442,7 +442,8 @@ letter-spacing:7px;
442 442
   box-shadow: 0px 1px 14px 0px rgba(65, 101, 242, 0.2);
443 443
   border-radius: 7px;
444 444
 }
445
-.box_tittle {
445
+
446
+.box_tittle,.box_tittle1 {
446 447
   width: 406px;
447 448
   margin: 0 35px;
448 449
   padding: 30px 0;
@@ -451,6 +452,16 @@ letter-spacing:7px;
451 452
   color: rgba(102, 102, 102, 1);
452 453
   font-size: 18px;
453 454
 }
455
+.box_tittle1{
456
+  padding: 24px 0;
457
+}
458
+.box_img1{
459
+  margin-top: 24px;
460
+  img {
461
+    width: 357px;
462
+    height: 186px;
463
+  }
464
+}
454 465
 .box_img {
455 466
   margin-top: 30px;
456 467
   img {