梁彦春 6 years ago
parent
commit
2f10ecdaac

BIN
src/assets/image/logoicon/cancel.png View File


+ 24
- 14
src/components/commonComponents/icon.vue View File

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

+ 0
- 27
src/components/commonComponents/mask.vue View File

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 View File

114
               <div class="peoduce_top">
114
               <div class="peoduce_top">
115
                 <div class="list first" :class="page3 == true ? 'animation fadeIn1' :''">
115
                 <div class="list first" :class="page3 == true ? 'animation fadeIn1' :''">
116
                   <p class="list-name">AI迎宾判客系统</p>
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
                   <p class="list-desc">智慧人脸风控应用于案场、地铁、银行等</p>
118
                   <p class="list-desc">智慧人脸风控应用于案场、地铁、银行等</p>
119
                 </div>
119
                 </div>
120
                 <div class="list" :class="page3 == true ? 'animation fadeIn2' :''">
120
                 <div class="list" :class="page3 == true ? 'animation fadeIn2' :''">
124
                 </div>
124
                 </div>
125
               </div>
125
               </div>
126
               <div class="produce_bottom">
126
               <div class="produce_bottom">
127
-                <div class="list" :class="page3 == true ? 'animation fadeIn3' :''">
127
+                <div class="list" :class="page3 == true ? 'animation fadeIn3' :''" >
128
                   <p class="list-name">银城慧家APP</p>
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
                   <p class="list-desc">智慧社区管理软件,一键开启智慧社区美好生活</p>
130
                   <p class="list-desc">智慧社区管理软件,一键开启智慧社区美好生活</p>
131
                 </div>
131
                 </div>
132
                 <div class="list" :class="page3 == true ? 'animation fadeIn4' :''">
132
                 <div class="list" :class="page3 == true ? 'animation fadeIn4' :''">
173
           </div>
173
           </div>
174
         </div>
174
         </div>
175
         <div class="page-5 fp-auto-height">
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
           <div class="logo-box">
178
           <div class="logo-box">
178
             <div>
179
             <div>
179
               <img src="../../assets/image/home/logo/Group29.png" alt>
180
               <img src="../../assets/image/home/logo/Group29.png" alt>
198
               <img src="../../assets/image/home/logo/Group43.png" alt>
199
               <img src="../../assets/image/home/logo/Group43.png" alt>
199
             </div>
200
             </div>
200
           </div>
201
           </div>
202
+          </div>
201
           <footerNav class="foot"></footerNav>
203
           <footerNav class="foot"></footerNav>
202
         </div>
204
         </div>
203
       </div>
205
       </div>
451
     height: 100%;
453
     height: 100%;
452
     background-size: 100% 100%;
454
     background-size: 100% 100%;
453
     overflow: hidden;
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
     // position: relative;
459
     // position: relative;
458
     .page-3_con {
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
       .title {
466
       .title {
461
         font-size: 56px;
467
         font-size: 56px;
468
+        margin-top: 7%;
462
         // padding-top: 5%;
469
         // padding-top: 5%;
463
         color: #fff;
470
         color: #fff;
464
       }
471
       }
465
       .produce {
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
         margin: 20px auto;
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
         .list {
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
           .list-name {
495
           .list-name {
478
             color: #03033f;
496
             color: #03033f;
479
             border-bottom: 1.5px dashed #040445;
497
             border-bottom: 1.5px dashed #040445;
480
-            padding: 30px 0 18px 0;
498
+            padding: 7.5% 0 4% 0;
481
             font-size: 30px;
499
             font-size: 30px;
482
           }
500
           }
483
           img {
501
           img {
484
-            height: 143px;
502
+            // height: 143px;
503
+            width: 80%;
485
             margin-top: 16px;
504
             margin-top: 16px;
486
           }
505
           }
487
           .list-desc {
506
           .list-desc {
636
     height: 100%;
655
     height: 100%;
637
     background-size: 100% 100%;
656
     background-size: 100% 100%;
638
     overflow: hidden;
657
     overflow: hidden;
639
-    .title {
658
+    .page-5-con{
659
+      // margin: 13%;
660
+      position: absolute;
661
+    bottom: 40%;
662
+      .title {
640
       font-size: 56px;
663
       font-size: 56px;
641
-      padding-top: 11.2%;
642
       color: #fff;
664
       color: #fff;
643
     }
665
     }
644
     .logo-box {
666
     .logo-box {
645
       width: 65.63%;
667
       width: 65.63%;
646
       min-width: 980px;
668
       min-width: 980px;
647
-      margin: 0.63% auto;
669
+      margin: auto;
670
+      // margin: 0.63% auto;
648
       img {
671
       img {
649
         width: 13.14%;
672
         width: 13.14%;
650
         min-width: 183px;
673
         min-width: 183px;
652
         margin: 0.39%;
675
         margin: 0.39%;
653
       }
676
       }
654
     }
677
     }
678
+    }
655
   }
679
   }
656
 }
680
 }
657
 .container {
681
 .container {

+ 15
- 7
src/components/pages/productCenter/AIwelcome.vue View File

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

+ 16
- 6
src/components/pages/productCenter/online.vue View File

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

+ 16
- 5
src/components/pages/productCenter/productCenter.vue View File

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