suomingxiang 5 mesi fa
parent
commit
253356916d

+ 4
- 0
dev/static/lib/jquery-2.1.1.min.js
File diff soppresso perché troppo grande
Vedi File


+ 1
- 1
src/pages/common/css/common.less Vedi File

@@ -637,7 +637,7 @@ footer{
637 637
                     top: 42px;
638 638
                     left: 0px;
639 639
                     width: 100%;
640
-                    max-height: 100px;
640
+                    max-height: 120px;
641 641
                     overflow-y: auto;
642 642
                     background: #fff;
643 643
                     color: #000;

+ 116
- 61
src/pages/intoZz/App.js Vedi File

@@ -1,10 +1,11 @@
1 1
 import Swiper from 'swiper/bundle'
2 2
 import gsap from 'gsap'
3 3
 import LocomotiveScroll from 'locomotive-scroll';
4
-import Common from '../common/js/Common'
4
+import Common from '../common/js/Common';
5 5
 import {
6 6
     isMobile
7
-} from '../common/js/utils'
7
+} from '../common/js/utils';
8
+import $ from '/dev/static/lib/jquery-2.1.1.min.js';
8 9
 
9 10
 export default class App {
10 11
     constructor() {
@@ -51,8 +52,8 @@ export default class App {
51 52
         });
52 53
         
53 54
         fourRsons.forEach((item, index) => {
54
-            item.style.width = fourR.offsetWidth + 'px';
55
-            item.style.height = fourR.offsetWidth + 'px';
55
+            item.style.width = fourR.offsetWidth+1 + 'px';
56
+            item.style.height = fourR.offsetWidth+1 + 'px';
56 57
             item.style.zIndex = fourRsons.length - index;
57 58
         });
58 59
         function changeDiv(num, val) {
@@ -178,22 +179,22 @@ export default class App {
178 179
             let threeDivs=document.querySelectorAll(".threeDiv");
179 180
             
180 181
             let moresList=[];
181
-            fourMores.forEach((item, index) => {
182
-                let sonList=[];
183
-                let lists=item.querySelectorAll(".fours");
184
-                lists.forEach((item2,index2)=>{
185
-                    let newSlide=item2.cloneNode(true);
186
-                    sonList.push(newSlide);
187
-                });
188
-                moresList.push(sonList);
189
-                item.addEventListener("click", (e) => {
190
-                    moresList[index].forEach((item2,index2)=>{
191
-                        item.parentElement.appendChild(item2);
192
-                    });
193
-                    item.parentElement.parentElement.classList.add("fourMoreShow");
194
-                    item.remove();
195
-                });
196
-            });
182
+            // fourMores.forEach((item, index) => {
183
+            //     let sonList=[];
184
+            //     let lists=item.querySelectorAll(".fours");
185
+            //     lists.forEach((item2,index2)=>{
186
+            //         let newSlide=item2.cloneNode(true);
187
+            //         sonList.push(newSlide);
188
+            //     });
189
+            //     moresList.push(sonList);
190
+            //     item.addEventListener("click", (e) => {
191
+            //         moresList[index].forEach((item2,index2)=>{
192
+            //             item.parentElement.appendChild(item2);
193
+            //         });
194
+            //         item.parentElement.parentElement.classList.add("fourMoreShow");
195
+            //         item.remove();
196
+            //     });
197
+            // });
197 198
 
198 199
             function doFun() {
199 200
                 let fourMoress=document.querySelectorAll(".fourMore");
@@ -208,29 +209,63 @@ export default class App {
208 209
                 });
209 210
             }
210 211
 
211
-            threeDivs.forEach((item, index) => {
212
-                item.addEventListener("click", (e) => {
213
-                    if(item.parentElement.classList.contains("fourMoreShow")){
214
-                        item.parentElement.classList.remove("fourMoreShow");
215
-                        item.parentElement.querySelectorAll(".fours").forEach((item2,index2)=>{
216
-                            if(index2>3){
217
-                                item2.remove();
218
-                            }
212
+            // threeDivs.forEach((item, index) => {
213
+            //     item.addEventListener("click", (e) => {
214
+            //         if(item.parentElement.classList.contains("fourMoreShow")){
215
+            //             item.parentElement.classList.remove("fourMoreShow");
216
+            //             item.parentElement.querySelectorAll(".fours").forEach((item2,index2)=>{
217
+            //                 if(index2>3){
218
+            //                     item2.remove();
219
+            //                 }
219 220
                             
220
-                        });
221
-                        let newDiv = document.createElement('div');
222
-                        newDiv.className = 'fours fourMore';
221
+            //             });
222
+            //             let newDiv = document.createElement('div');
223
+            //             newDiv.className = 'fours fourMore';
223 224
 
224
-                        let innerDiv = document.createElement('div');
225
-                        innerDiv.className = 'fourDiv';
226
-                        innerDiv.textContent = '展开更多';
225
+            //             let innerDiv = document.createElement('div');
226
+            //             innerDiv.className = 'fourDiv';
227
+            //             innerDiv.textContent = '展开更多';
227 228
 
228
-                        newDiv.appendChild(innerDiv);
229
-                        item.parentElement.querySelector(".threeSon").appendChild(newDiv);
230
-                        doFun();
231
-                    }
232
-                });
229
+            //             newDiv.appendChild(innerDiv);
230
+            //             item.parentElement.querySelector(".threeSon").appendChild(newDiv);
231
+            //             doFun();
232
+            //         }
233
+            //     });
234
+            // });
235
+
236
+            $(".twoDiv").click(function(){
237
+                if($(this).parent().hasClass("closeDiv")){
238
+                    $(this).parent().removeClass("closeDiv");
239
+                    $(this).siblings().slideDown();
240
+                }else{
241
+                    $(this).parent().addClass("closeDiv");
242
+                    $(this).siblings().slideUp();
243
+                    
244
+                }
245
+            });
246
+            $(".hasFour").click(function(){
247
+                if($(this).parent().hasClass("closeDiv")){
248
+                    $(this).parent().removeClass("closeDiv");
249
+                    $(this).siblings().slideDown();
250
+                }else{
251
+                    $(this).parent().addClass("closeDiv");
252
+                    $(this).siblings().slideUp();
253
+                    
254
+                }
233 255
             });
256
+            $(".fourMore").click(function(){
257
+                if($(this).hasClass("openSon")){
258
+                    $(this).children(".fourMoreList").slideUp();
259
+                    $(this).removeClass("openSon");
260
+                    $(this).children(".fourDivMore").text("展开更多")
261
+                }else{
262
+                    $(this).children(".fourMoreList").slideDown()
263
+                    $(this).addClass("openSon");
264
+                    $(this).children(".fourDivMore").text("收起更多")
265
+                }
266
+                
267
+            });
268
+            
234 269
         }
235 270
         else{
236 271
             let fourMores=document.querySelectorAll(".fourMore");
@@ -242,32 +277,52 @@ export default class App {
242 277
                 });
243 278
                 item.remove();
244 279
             });
245
-            let twoDivs=document.querySelectorAll(".twoDiv");
246
-            twoDivs.forEach((item, index) => {
247
-                item.addEventListener("click", (e) => {
248
-                    if(item.parentElement.querySelectorAll('.three').length>0){
249
-                        if(item.parentElement.classList.contains("openDiv")){
250
-                            item.parentElement.classList.remove("openDiv");
251
-                        }else{
252
-                            item.parentElement.classList.add("openDiv");
253
-                        }
254
-                    }
280
+            // let twoDivs=document.querySelectorAll(".twoDiv");
281
+            // twoDivs.forEach((item, index) => {
282
+            //     item.addEventListener("click", (e) => {
283
+            //         if(item.parentElement.querySelectorAll('.three').length>0){
284
+            //             if(item.parentElement.classList.contains("openDiv")){
285
+            //                 item.parentElement.classList.remove("openDiv");
286
+            //             }else{
287
+            //                 item.parentElement.classList.add("openDiv");
288
+            //             }
289
+            //         }
255 290
                     
256
-                });
291
+            //     });
292
+            // });
293
+            $(".twoDiv").click(function(){
294
+                if($(this).parent().hasClass("openDiv")){
295
+                    $(this).parent().removeClass("openDiv");
296
+                    $(this).siblings().slideUp();
297
+                }else{
298
+                    $(this).parent().addClass("openDiv");
299
+                    $(this).siblings().slideDown();
300
+                    
301
+                }
257 302
             });
258
-            let threeDivs=document.querySelectorAll(".threeDiv");
259
-            threeDivs.forEach((item, index) => {
260
-                item.addEventListener("click", (e) => {
261
-                    if(item.parentElement.querySelectorAll('.fours').length>0){
262
-                        if(item.parentElement.classList.contains("openDiv")){
263
-                            item.parentElement.classList.remove("openDiv");
264
-                        }else{
265
-                            item.parentElement.classList.add("openDiv");
266
-                        }
267
-                    }
303
+            $(".threeDiv").click(function(){
304
+                if($(this).parent().hasClass("openDiv")){
305
+                    $(this).parent().removeClass("openDiv");
306
+                    $(this).siblings().slideUp();
307
+                }else{
308
+                    $(this).parent().addClass("openDiv");
309
+                    $(this).siblings().slideDown();
268 310
                     
269
-                });
311
+                }
270 312
             });
313
+            // let threeDivs=document.querySelectorAll(".threeDiv");
314
+            // threeDivs.forEach((item, index) => {
315
+            //     item.addEventListener("click", (e) => {
316
+            //         if(item.parentElement.querySelectorAll('.fours').length>0){
317
+            //             if(item.parentElement.classList.contains("openDiv")){
318
+            //                 item.parentElement.classList.remove("openDiv");
319
+            //             }else{
320
+            //                 item.parentElement.classList.add("openDiv");
321
+            //             }
322
+            //         }
323
+                    
324
+            //     });
325
+            // });
271 326
         }
272 327
     }
273 328
 

+ 3
- 2
src/pages/intoZz/index.html Vedi File

@@ -215,8 +215,8 @@
215 215
                             <div class="fourDiv">新疆中泽控股集团有限责任公司</div>
216 216
                           </div>
217 217
                           <!-- 超出的元素加到下面fourMoreList中,如果有更多就加上 fourMore -->
218
-                          <div class="fours fourMore">
219
-                            <div class="fourDiv">展开更多</div>
218
+                          <div class="fourMore">
219
+                            
220 220
                             <div class="fourMoreList">
221 221
                               <div class="fours">
222 222
                                 <div class="fourDiv">吉林中泽控股有限公司</div>
@@ -306,6 +306,7 @@
306 306
                                 <div class="fourDiv">吉林哈达湾开发建设股份有限公司</div>
307 307
                               </div>
308 308
                             </div>
309
+                            <div class="fourDivMore">展开更多</div>
309 310
                           </div>
310 311
                         </div>
311 312
                       </div>

+ 219
- 62
src/pages/intoZz/index.less Vedi File

@@ -170,6 +170,7 @@
170 170
         position: sticky;
171 171
         top: 80px;
172 172
         overflow: hidden;
173
+        max-width: 749px;
173 174
         max-height: 749px;
174 175
         .fourRson{
175 176
           position: absolute;
@@ -203,6 +204,7 @@
203 204
         .one{
204 205
           width: 100%;
205 206
           display: flex;
207
+          align-items: center;
206 208
           .zk{
207 209
             width: 24px;
208 210
             height: 24px;
@@ -220,6 +222,8 @@
220 222
               position: absolute;
221 223
               top: 50%;
222 224
               right: -14px;
225
+              opacity: 1;
226
+              transition: all 0.3s ease-in-out;
223 227
             }
224 228
             &::before{
225 229
               content: '';
@@ -240,6 +244,7 @@
240 244
               top: 50%;
241 245
               left: 50%;
242 246
               transform: translate(-50%,-50%);
247
+              opacity: 0;
243 248
             }
244 249
           }
245 250
           .oneDiv{
@@ -252,7 +257,7 @@
252 257
             writing-mode: vertical-rl;
253 258
             text-align: center;
254 259
             line-height: 112px;
255
-            margin-top: 353px;
260
+            // margin-top: 353px;
256 261
             position: relative;
257 262
             .oneLine{
258 263
               position: absolute;
@@ -282,20 +287,24 @@
282 287
             flex-wrap: wrap;
283 288
             align-content: space-around;
284 289
             position: relative;
285
-            &::before{
286
-              content: '';
287
-              width: 0px;
288
-              height: calc(100% - 560px);
289
-              position: absolute;
290
-              top: 136px;
291
-              left: 53px;
292
-              border-left: 1px solid #BBBEC0;
293
-            }
290
+            
294 291
             .two{
295 292
               width: 100%;
296 293
               display: flex;
297
-              margin-bottom: 100px;
294
+              align-items: center;
295
+              // margin-bottom: 100px;
296
+              padding: 50px 0px;
297
+              box-sizing: border-box;
298 298
               position: relative;
299
+              &::before{
300
+                content: '';
301
+                width: 0px;
302
+                height: 50%;
303
+                position: absolute;
304
+                bottom: 0;
305
+                left: -37px;
306
+                border-left: 1px solid #BBBEC0;
307
+              }
299 308
               &:first-child{
300 309
                 .twoDiv{
301 310
                   &::before{
@@ -306,15 +315,19 @@
306 315
               }
307 316
               &:last-child{
308 317
                 margin-bottom: 0px;
309
-                &::after{
310
-                  content: '';
311
-                  width: 8px;
312
-                  height: 100%;
313
-                  position: absolute;
314
-                  left: -40px;
315
-                  top: 277px;
316
-                  background: #F5F5F6;
318
+                &::before{
319
+                  bottom: auto;
320
+                  top: 0px;
317 321
                 }
322
+                // &::after{
323
+                //   content: '';
324
+                //   width: 8px;
325
+                //   height: 100%;
326
+                //   position: absolute;
327
+                //   left: -40px;
328
+                //   top: 277px;
329
+                //   background: #F5F5F6;
330
+                // }
318 331
                 .twoDiv{
319 332
                   &::before{
320 333
                     background: url('./images/towDw.jpg') no-repeat;
@@ -333,6 +346,7 @@
333 346
                 padding-left: 28px;
334 347
                 box-sizing: border-box;
335 348
                 position: relative;
349
+                cursor: pointer;
336 350
                 &::before{
337 351
                   content: '';
338 352
                   position: absolute;
@@ -345,11 +359,14 @@
345 359
                   transform: translateY(-50%);
346 360
                 }
347 361
               }
348
-              .hasThree{
349
-                margin-top: 110px;
350
-              }
351
-              .hasThreeFour{
352
-                margin-top: 234px;
362
+              // .hasThree{
363
+              //   margin-top: 110px;
364
+              // }
365
+              // .hasThreeFour{
366
+              //   margin-top: 234px;
367
+              // }
368
+              .hasFour{
369
+                cursor: pointer;
353 370
               }
354 371
               .twoSon{
355 372
                 width: calc(100% - 288px);
@@ -359,21 +376,29 @@
359 376
                 flex-wrap: wrap;
360 377
                 align-content: space-around;
361 378
                 position: relative;
362
-                &::before{
363
-                  content: '';
364
-                  width: 0px;
365
-                  height: calc(100% - 60px);
366
-                  position: absolute;
367
-                  top: 30px;
368
-                  left: 26px;
369
-                  border-left: 1px dashed #BBBEC0;
370
-                }
379
+                
380
+                
371 381
                 .three{
372 382
                   width: 100%;
373 383
                   display: flex;
374
-                  margin-bottom: 20px;
384
+                  padding: 10px 0px;
385
+                  align-items: center;
386
+                  position: relative;
387
+                  &::before{
388
+                    content: '';
389
+                    width: 0px;
390
+                    height: 100%;
391
+                    position: absolute;
392
+                    bottom: 0px;
393
+                    left: -34px;
394
+                    border-left: 1px dashed #BBBEC0;
395
+                  }
375 396
                   &:last-child{
376
-                    margin-bottom: 0px;
397
+                    &::before{
398
+                      bottom: auto;
399
+                      top: 0px;
400
+                      height: 50%;
401
+                    }
377 402
                     .threeDiv{
378 403
                       &::before{
379 404
                         background: url('./images/jtDw.jpg') no-repeat;
@@ -382,6 +407,9 @@
382 407
                     }
383 408
                   }
384 409
                   &:first-child{
410
+                    &::before{
411
+                      height: 50%;
412
+                    }
385 413
                     .threeDiv{
386 414
                       &::before{
387 415
                         background: url('./images/jtUp.jpg') no-repeat;
@@ -412,9 +440,7 @@
412 440
                       transform: translateY(-50%);
413 441
                     }
414 442
                   }
415
-                  .hasFour{
416
-                    margin-top: 126px;
417
-                  }
443
+                  
418 444
                   .threeSon{
419 445
                     width: calc(100% - 290px);
420 446
                     padding-left: 60px;
@@ -423,20 +449,27 @@
423 449
                     flex-wrap: wrap;
424 450
                     align-content: space-around;
425 451
                     position: relative;
426
-                    &::before{
427
-                      content: '';
428
-                      width: 0px;
429
-                      height: calc(100% - 60px);
430
-                      position: absolute;
431
-                      top: 30px;
432
-                      left: 26px;
433
-                      border-left: 1px dashed #BBBEC0;
434
-                    }
452
+                    
435 453
                     .fours{
436 454
                       width: 100%;
437
-                      margin-bottom: 20px;
455
+                      // margin-bottom: 20px;
456
+                      padding: 10px 0px;
457
+                      position: relative;
458
+                      &::before{
459
+                        content: '';
460
+                        width: 0px;
461
+                        height:100%;
462
+                        position: absolute;
463
+                        bottom: 0px;
464
+                        left:-34px;
465
+                        border-left: 1px dashed #BBBEC0;
466
+                      }
438 467
                       &:last-child{
439
-                        margin-bottom: 0px;
468
+                        &::before{
469
+                          bottom: auto;
470
+                          top: 0px;
471
+                          height: 50%;
472
+                        }
440 473
                         .fourDiv{
441 474
                           &::before{
442 475
                             background: url('./images/jtDw.jpg') no-repeat;
@@ -445,6 +478,9 @@
445 478
                         }
446 479
                       }
447 480
                       &:first-child{
481
+                        &::before{
482
+                          height: 50%;
483
+                        }
448 484
                         .fourDiv{
449 485
                           &::before{
450 486
                             background: url('./images/jtUp.jpg') no-repeat;
@@ -481,10 +517,109 @@
481 517
                       }
482 518
                     }
483 519
                     .fourMore{
520
+                      width: 100%;
521
+                      padding-top: 10px;
522
+                      position: relative;
523
+                      &::before{
524
+                        content: '';
525
+                        width: 0px;
526
+                        height:50%;
527
+                        position: absolute;
528
+                        top: 0px;
529
+                        left:-34px;
530
+                        border-left: 1px dashed #BBBEC0;
531
+                      
532
+                    }
533
+                      .fourMoreList{
534
+                        display: none;
535
+                        .fours{
536
+                          &:first-child{
537
+                            &::before{
538
+                              height: 100%;
539
+                            }
540
+                          }
541
+                          &:last-child{
542
+                            &::before{
543
+                              height: 100%;
544
+                            }
545
+                          }
546
+                        }
547
+                      }
484 548
                       .fourDiv{
549
+                        width: 396px;
550
+                        height: 60px;
551
+                        background: rgba(216,218,219,0.2);
552
+                        border-radius: 10px;
553
+                        border: 1px dashed #D8DADB;
554
+                        font-size: 20px;
555
+                        line-height: 60px;
556
+                        padding-left: 20px;
557
+                        box-sizing: border-box;
558
+                        position: relative;
559
+                        &::before{
560
+                          content: '';
561
+                          position: absolute;
562
+                          top: 50%;
563
+                          left: -35px;
564
+                          width: 24px;
565
+                          height: 18px;
566
+                          background: url('./images/jt.png') no-repeat;
567
+                          background-size: 24px 18px;
568
+                          transform: translateY(-50%);
569
+                        }
570
+                        &:last-child{
571
+                          
572
+                          &::before{
573
+                            background: url('./images/jt.png') no-repeat;
574
+                            background-size: 24px 18px;
575
+                          }
576
+                          
577
+                        }
578
+                        &:first-child{
579
+                          
580
+                            &::before{
581
+                              background: url('./images/jt.png') no-repeat;
582
+                              background-size: 24px 18px;
583
+                            }
584
+                          
585
+                        }
586
+                      }
587
+                      .fourDivMore{
588
+                        width: 396px;
589
+                        height: 60px;
590
+                        background: rgba(216,218,219,0.2);
591
+                        border-radius: 10px;
485 592
                         font-size: 20px;
486 593
                         color: #666666;
487 594
                         cursor: pointer;
595
+                        padding-left: 20px;
596
+                        box-sizing: border-box;
597
+                        position: relative;
598
+                        border: 1px dashed #D8DADB;
599
+                        line-height: 60px;
600
+                        &::before{
601
+                          content: '';
602
+                          position: absolute;
603
+                          top: 50%;
604
+                          left: -35px;
605
+                          width: 24px;
606
+                          height: 18px;
607
+                          transform: translateY(-50%);
608
+                          background: url('./images/jtDw.jpg') no-repeat;
609
+                          background-size: 24px 18px;
610
+                        }
611
+                        
612
+                      }
613
+                    }
614
+                    .openSon{
615
+                      padding-top: 0px;
616
+                      &::before{
617
+                        height: 40px;
618
+                        bottom: 30px;
619
+                        top: auto;
620
+                      }
621
+                      .fourDivMore{
622
+                        margin-top: 10px;
488 623
                       }
489 624
                     }
490 625
                   }
@@ -500,13 +635,26 @@
500 635
                   }
501 636
                 }
502 637
               }
503
-              .hasfourThree{
504
-                &::before{
505
-                  height: calc(100% - 290px);
506
-                  top: 150px;
507
-                }
508
-                .three{
509
-                  margin-bottom: 100px;
638
+              // .hasfourThree{
639
+              //   &::before{
640
+              //     height: calc(100% - 290px);
641
+              //     top: 150px;
642
+              //   }
643
+              //   .three{
644
+              //     margin-bottom: 0px;
645
+              //     padding: 50px 0px;
646
+              //   }
647
+              // }
648
+            }
649
+            .closeDiv{
650
+              &>div{
651
+                &>.zk{
652
+                  &::after{
653
+                    opacity: 1;
654
+                  }
655
+                  .linez{
656
+                    display: none;
657
+                  }
510 658
                 }
511 659
               }
512 660
             }
@@ -920,6 +1068,7 @@ display: none;
920 1068
               }
921 1069
               .two{
922 1070
                 margin-bottom: 0px;
1071
+                padding: 0px 0px;
923 1072
                 flex-wrap: wrap;
924 1073
                 &:last-child{
925 1074
                   &::after{
@@ -959,7 +1108,11 @@ display: none;
959 1108
                   .three{
960 1109
                     margin-bottom: 0px;
961 1110
                     flex-wrap: wrap;
1111
+                    padding: 0px 0px;
962 1112
                     border-bottom: 1px solid #BBBEC0;
1113
+                    &::before{
1114
+                      display: none;
1115
+                    }
963 1116
                     &:last-child{
964 1117
                       border-bottom: 0px solid #BBBEC0;
965 1118
                     }
@@ -993,7 +1146,11 @@ display: none;
993 1146
                       .fours{
994 1147
                         width: 100%;
995 1148
                         margin-bottom: 0px;
1149
+                        padding: 0px 0px;
996 1150
                         padding-bottom: 20px;
1151
+                        &::before{
1152
+                          display: none;
1153
+                        }
997 1154
                         &:last-child{
998 1155
                           padding-bottom: 30px;
999 1156
                         }
@@ -1018,12 +1175,12 @@ display: none;
1018 1175
             }
1019 1176
           }
1020 1177
           .openDiv{
1021
-            &>.twoSon{
1022
-              display: flex !important;
1023
-            }
1024
-            &>.threeSon{
1025
-              display: flex !important;
1026
-            }
1178
+            // &>.twoSon{
1179
+            //   display: flex !important;
1180
+            // }
1181
+            // &>.threeSon{
1182
+            //   display: flex !important;
1183
+            // }
1027 1184
             &>div{
1028 1185
               &>.zk{
1029 1186
                 div{

+ 5
- 0
src/pages/join/index.less Vedi File

@@ -210,6 +210,11 @@
210 210
                             margin-bottom: 0;
211 211
                         }
212 212
                     }
213
+                    &>p{
214
+                        &:first-child{
215
+                            color: #B81C25;
216
+                        }
217
+                    }
213 218
                     .h4{
214 219
                         margin-top: 50px;
215 220
                         font-size: 24px;

+ 1
- 0
src/pages/news/index.less Vedi File

@@ -180,6 +180,7 @@
180 180
         max-width: 1920px;
181 181
         margin: 0 auto;
182 182
         background: #F6F6F6;
183
+        box-sizing: border-box;
183 184
         .news_list{
184 185
             width: 1300px;
185 186
             margin: 0 auto;

Loading…
Annulla
Salva