index.less 20.5 KB
Newer Older
周宏民's avatar
周宏民 committed
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 165
.integrationYixing {
  width: 100%;
  position: relative;
  height: 100%;
  overflow: hidden;
  background: url('@/assets/images/integration/taihu2/背景2.jpg') center/100% 100% no-repeat;

  .iframeExitIcon {
    position: absolute;
    top: 0;
    left: -45px;
    display: flex;
    height: 44px;
    width: 44px;
    background: rgba(28, 94, 180, 0.95);
    border-radius: 0 7px 7px 0;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    font-size: 12px;
    transition: all 0.2s;
    padding: 3px 0;

    img {
      width: 17px;
      height: 12px;
    }
  }


  .iframeExit:hover {
    .iframeExitIcon {
      left: 0;
    }

    .iframeBackLeft {
      left: -15px;
    }
  }


  .iframeBackLeft {
    position: absolute;
    top: 0;
    left: 0;
    width: 14px;
    height: 44px;
    background: rgba(28, 94, 180, 0.95);
    border-radius: 0 7px 7px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;

    img {
      width: 6px;
      height: 11px;
    }
  }

  .iframeExit {
    width: 44px;
    height: 44px;
    position: absolute;
    top: 4px;
    left: 0;
    color: #FFF;
    cursor: pointer;
    user-select: none;
    position: absolute;
    z-index: 110;


  }

  .integrationYixing_exit {
    position: absolute;
    right: 10px;
    top: 10px;
    z-index: 100;
  }

  .integration_content {
    display: flex;
    flex-direction: column;
    align-items: center;
    transform-origin: left top;
    position: absolute;
    left: 50%;
    top: 50%;
    padding: 0px 20px 10px;
  }

  .integration_row {
    display: flex;
    width: 1505px;
    overflow: hidden;

    .integration_row_title {
      flex: none;
      margin-right: 30px;
      position: relative;
      writing-mode: vertical-rl;
      font-weight: bold;
      font-size: 22px;
      color: #fff;
      line-height: 33px;
      text-shadow: 0 0 18px rgba(0, 144, 255, 0.5);
      display: flex;
      align-items: flex-start;
      justify-content: center;
      letter-spacing: 3px;

      img {
        width: 33px;
        height: 42px;
        position: absolute;
        right: -25px;
        top: 50%;
        transform: translateY(-50%);
      }
    }

    .integration_row_list {
      flex: 1;
      display: flex;
      align-items: center;
    }

  }

  .integration_row_col {
    position: relative;
    cursor: pointer;
  }

  .integration_row_col_text {
    font-weight: bold;
    font-size: 20px;
    color: #FFFFFF;
    transition: all 0.1s;
    position: relative;
    white-space: nowrap;

  }

  .integration_row_col:hover {
    filter: brightness(120%);

    .integration_row_col_hover {
      display: block !important;
    }

    .integration_row_col_text {
      color: #fff !important;
    }

    .integration_row_col_sub {
      color: #fff !important;

    }
  }

  .integration_row_title[type='业务中心'] {
    width: 46px;
周宏民's avatar
周宏民 committed
166
    height: 152px;
167
    background: url('@/assets/images/integration/yixing2/业务中心_bg.png') center center no-repeat;
周宏民's avatar
周宏民 committed
168 169 170 171 172
    background-size: 100% 100%;
  }

  .integration_row_title[type='应用系统'] {
    width: 46px;
周宏民's avatar
周宏民 committed
173
    height: 332px;
174
    background: url('@/assets/images/integration/yixing2/应用系统_bg.png') center center no-repeat;
周宏民's avatar
周宏民 committed
175 176 177 178 179 180
    background-size: 100% 100%;

  }

  .integration_row_title[type='基础平台'] {
    width: 46px;
周宏民's avatar
周宏民 committed
181
    height: 208px;
182
    background: url('@/assets/images/integration/yixing2/基础平台_bg.png') center center no-repeat;
周宏民's avatar
周宏民 committed
183 184 185 186 187 188 189 190 191 192 193 194
    background-size: 100% 100%;

  }

  // 综合管控start
  .integration_row[type='业务中心'] {
    height: 153px;
    display: flex;
    align-items: center;
    margin-bottom: 15px;

    .integration_row_list {
周宏民's avatar
周宏民 committed
195
      height: 138px;
周宏民's avatar
周宏民 committed
196 197 198 199
      background: linear-gradient(0deg, rgba(171, 136, 0, 0) 0%, rgba(177, 153, 58, 0.5) 100%);
      border-radius: 20px;
      padding-top: 7px;
      position: relative;
周宏民's avatar
周宏民 committed
200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227
      top: 2px;
    }

    .integration_row_item {
      flex: none;
      width: 338px;
      height: 138px;
      margin-right: 18px;
      background: linear-gradient(0deg, rgba(171, 136, 0, 0) 0%, rgba(177, 153, 58, 0.5) 100%);
      border-radius: 20px;
      padding-top: 10px;
      position: relative;
      top: 2px;
      display: flex;
      justify-content: center;
    }
  }

  .integration_row_col[type='水务业务门户'] {
    width: 304px;
    height: 126px;

    .integration_row_col_text {
      font-weight: bold;
      font-size: 20px;
      color: #FFED9A;
      text-shadow: 2px 3px 4px rgba(0, 0, 0, 0.5);
      margin-bottom: 2px;
周宏民's avatar
周宏民 committed
228
    }
周宏民's avatar
周宏民 committed
229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246

    .integration_row_col_sub {
      font-weight: 400;
      font-size: 13px;
      color: rgba(231, 215, 138, 0.6);
    }

    .integration_row_col_content {
      width: 100%;
      height: 100%;
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 28px 20px 45px 130px;

    }

    .integration_row_col_content[name='水务业务门户'] {
247 248
      background: url('@/assets/images/integration/yixing2/水务业务门户.png') 43px 39px no-repeat,
        url('@/assets/images/integration/yixing2/水务业务门户bg.png') center center no-repeat;
周宏民's avatar
周宏民 committed
249 250 251 252 253
      background-size: 40px 40px, 100% 100%;

    }


周宏民's avatar
周宏民 committed
254 255 256 257 258 259
  }

  .integration_row_grid[type='业务中心'] {
    display: flex;
    justify-content: space-around;
    padding-left: 13px;
周宏民's avatar
周宏民 committed
260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275
    padding-top: 6px;

    .integration_row_grid_title {
      flex: none;
      font-family: Microsoft YaHei;
      font-weight: bold;
      font-size: 20px;
      writing-mode: vertical-rl;
      color: #FFFFFF;
      line-height: 24px;
      text-shadow: 0 0 18px rgba(255, 132, 0, 0.5);
      font-style: italic;
      letter-spacing: 5px;
      padding-top: 8px;
      padding-right: 8px;
    }
周宏民's avatar
周宏民 committed
276 277 278
  }

  .integration_row_col[type='业务中心'] {
周宏民's avatar
周宏民 committed
279 280
    width: 252px;
    height: 126px;
周宏民's avatar
周宏民 committed
281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301

    .integration_row_col_text {
      font-weight: bold;
      font-size: 20px;
      color: #FFED9A;
      text-shadow: 2px 3px 4px rgba(0, 0, 0, 0.5);
      margin-bottom: 2px;
    }

    .integration_row_col_sub {
      font-weight: 400;
      font-size: 13px;
      color: rgba(231, 215, 138, 0.6);
    }

    .integration_row_col_content {
      width: 100%;
      height: 100%;
      display: flex;
      flex-direction: column;
      justify-content: center;
周宏民's avatar
周宏民 committed
302 303
      align-items: center;
      padding: 45px 20px 0 20px;
周宏民's avatar
周宏民 committed
304 305 306

    }

周宏民's avatar
周宏民 committed
307
    .integration_row_col_content[name='综合展示'] {
308 309
      background: url('@/assets/images/integration/yixing2/综合展示.png') 105px 26px no-repeat,
        url('@/assets/images/integration/yixing2/综合大屏.png') center center no-repeat;
周宏民's avatar
周宏民 committed
310
      background-size: 40px 40px, 100% 100%;
周宏民's avatar
周宏民 committed
311 312 313

    }

周宏民's avatar
周宏民 committed
314
    .integration_row_col_content[name='制水管控'] {
315 316
      background: url('@/assets/images/integration/yixing2/制水管控.png') 105px 26px no-repeat,
        url('@/assets/images/integration/yixing2/综合大屏.png') center center no-repeat;
周宏民's avatar
周宏民 committed
317
      background-size: 40px 40px, 100% 100%;
周宏民's avatar
周宏民 committed
318 319
    }

周宏民's avatar
周宏民 committed
320
    .integration_row_col_content[name='管网输配'] {
321 322
      background: url('@/assets/images/integration/yixing2/管网输配.png') 105px 26px no-repeat,
        url('@/assets/images/integration/yixing2/综合大屏.png') center center no-repeat;
周宏民's avatar
周宏民 committed
323 324 325 326 327
      background-size: 40px 40px, 100% 100%;

    }

    .integration_row_col_content[name='营销客服'] {
328 329
      background: url('@/assets/images/integration/yixing2/营销客服.png') 105px 26px no-repeat,
        url('@/assets/images/integration/yixing2/综合大屏.png') center center no-repeat;
周宏民's avatar
周宏民 committed
330
      background-size: 40px 40px, 100% 100%;
周宏民's avatar
周宏民 committed
331 332 333 334 335 336 337 338

    }
  }

  // 综合管控end

  // 应用系统
  .integration_row[type='应用系统'] {
周宏民's avatar
周宏民 committed
339
    height: 331px;
周宏民's avatar
周宏民 committed
340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;

    .integration_row_right2 {
      flex: 1;
      display: flex;
      overflow: hidden;
      padding-top: 12px;
      justify-content: space-between;
    }

    .integration_row_list_title {
      font-weight: bold;
      font-size: 18px;
      color: #FFFFFF;
      font-style: italic;
      letter-spacing: 2px;
      padding-right: 14px;
    }

周宏民's avatar
周宏民 committed
361 362 363 364
    .integration_row_list[type='智慧生产建设'] {

      width: 249px;
      height: 324px;
周宏民's avatar
周宏民 committed
365
      overflow: hidden;
周宏民's avatar
周宏民 committed
366
    }
周宏民's avatar
周宏民 committed
367

周宏民's avatar
周宏民 committed
368
    .integration_row_list[type='智慧生产调度'] {
周宏民's avatar
周宏民 committed
369

周宏民's avatar
周宏民 committed
370 371 372 373 374 375 376 377 378 379
      width: 574px;
      height: 324px;
      overflow: hidden;
    }

    .integration_row_list[type='智慧营收服务'] {

      width: 574px;
      height: 324px;
      overflow: hidden;
周宏民's avatar
周宏民 committed
380 381 382 383
    }

  }

周宏民's avatar
周宏民 committed
384 385 386 387 388 389 390
  .integration_row[type='应用系统'] {
    .integration_row_list[type='智慧生产建设'] {
      overflow: hidden;
      flex-direction: column;
      background: linear-gradient(180deg, rgba(39, 112, 173, 0.5) 0%, rgba(39, 112, 173, 0) 100%);
      border-radius: 20px;
      flex: none;
周宏民's avatar
周宏民 committed
391

周宏民's avatar
周宏民 committed
392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410
    }

    .integration_row_list[type='智慧生产调度'] {
      overflow: hidden;
      flex-direction: column;
      background: linear-gradient(180deg, rgba(39, 112, 173, 0.5) 0%, rgba(39, 112, 173, 0) 100%);
      border-radius: 20px;
      flex: none;

    }

    .integration_row_list[type='智慧营收服务'] {
      overflow: hidden;
      flex-direction: column;
      background: linear-gradient(180deg, rgba(39, 112, 173, 0.5) 0%, rgba(39, 112, 173, 0) 100%);
      border-radius: 20px;
      flex: none;

    }
周宏民's avatar
周宏民 committed
411 412 413

    .integration_row_list_title {
      width: 100%;
周宏民's avatar
周宏民 committed
414
      height: 52px;
周宏民's avatar
周宏民 committed
415
      position: relative;
周宏民's avatar
周宏民 committed
416
      top: -8px;
周宏民's avatar
周宏民 committed
417 418 419 420
      padding-top: 24px;
      line-height: 1;
      text-align: center;

周宏民's avatar
周宏民 committed
421 422 423 424
    }

    .integration_row_list_title[type='智慧生产建设'] {

425
      background: url('@/assets/images/integration/yixing2/智慧生产建设.png') center center no-repeat;
周宏民's avatar
周宏民 committed
426 427 428 429 430 431
      background-size: 100% 52px;
      padding-right: 0;
    }

    .integration_row_list_title[type='智慧生产调度'] {

432
      background: url('@/assets/images/integration/yixing2/智慧生产调度.png') center center no-repeat;
周宏民's avatar
周宏民 committed
433 434 435 436 437 438
      background-size: 100% 52px;
      padding-right: 0;
      // top: -6px;
    }

    .integration_row_list_title[type='智慧营收服务'] {
439
      background: url('@/assets/images/integration/yixing2/智慧生产调度.png') center center no-repeat;
周宏民's avatar
周宏民 committed
440 441 442
      background-size: 100% 52px;
      padding-right: 0;
      // top: -6px;
周宏民's avatar
周宏民 committed
443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461

    }

    .integration_row_col_text {
      font-weight: bold;
      font-size: 20px;
      color: #AEEFFF;
      // padding-top: 50px;
      padding-bottom: 4px;
      text-shadow: 2px 3px 4px rgba(0, 0, 0, 0.5);
    }


    .integration_row_col_content {
      width: 100%;
      height: 100%;
      display: flex;
      flex-direction: column;
      justify-content: center;
周宏民's avatar
周宏民 committed
462
      padding-top: 65px;
周宏民's avatar
周宏民 committed
463
      padding-bottom: 13px;
周宏民's avatar
周宏民 committed
464
      align-items: center;
周宏民's avatar
周宏民 committed
465 466 467 468 469 470 471 472

    }

    .integration_row_col_sub {
      font-weight: 400;
      font-size: 13px;
      color: rgba(174, 239, 255, 0.6);
    }
周宏民's avatar
周宏民 committed
473 474
  }

周宏民's avatar
周宏民 committed
475

周宏民's avatar
周宏民 committed
476 477 478
  .integration_row_grid[type='智慧生产建设'] {
    display: flex;
    flex-direction: column;
周宏民's avatar
周宏民 committed
479 480 481

  }

周宏民's avatar
周宏民 committed
482
  .integration_row_grid[type='智慧生产调度'] {
周宏民's avatar
周宏民 committed
483
    display: flex;
周宏民's avatar
周宏民 committed
484
    flex-wrap: wrap;
485
    justify-content: center;
周宏民's avatar
周宏民 committed
486 487 488

  }

周宏民's avatar
周宏民 committed
489 490 491
  .integration_row_grid[type='智慧营收服务'] {
    display: flex;
    flex-wrap: wrap;
492
    justify-content: center;
周宏民's avatar
周宏民 committed
493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544

  }

  .integration_row_col[type='智慧水厂'] {
    width: 214px;
    height: 130px;

  }

  .integration_row_col[type='实验室管理'] {
    width: 214px;
    height: 130px;

  }

  .integration_row_col[name='智慧生产调度'] {
    width: 178px;
    height: 130px;

  }

  .integration_row_col[type='营业收费'] {
    width: 178px;
    height: 130px;

  }

  .integration_row_col[type='表务系统'] {
    width: 178px;
    height: 130px;

  }

  .integration_row_col[type='客服热线'] {
    width: 178px;
    height: 130px;

  }

  .integration_row_col[type='业扩报装'] {
    width: 270px;
    height: 130px;

  }

  .integration_row_col[type='大用户水表管理'] {
    width: 270px;
    height: 130px;

  }

  .integration_row_col_content[name='智慧水厂'] {
545 546
    background: url('@/assets/images/integration/yixing2/智慧水厂.png') center 23px no-repeat,
      url('@/assets/images/integration/yixing2/智慧水厂bg.png') center center no-repeat;
周宏民's avatar
周宏民 committed
547 548 549 550 551
    background-size: 48px 48px, 100% 100%;

  }

  .integration_row_col_content[name='实验室管理'] {
552 553
    background: url('@/assets/images/integration/yixing2/实验室管理.png') center 23px no-repeat,
      url('@/assets/images/integration/yixing2/智慧水厂bg.png') center center no-repeat;
周宏民's avatar
周宏民 committed
554
    background-size: 48px 48px, 100% 100%;
周宏民's avatar
周宏民 committed
555 556 557

  }

周宏民's avatar
周宏民 committed
558
  .integration_row_col_content[name='二次供水'] {
559 560
    background: url('@/assets/images/integration/yixing2/二次供水.png') center 23px no-repeat,
      url('@/assets/images/integration/yixing2/二次供水bg.png') center center no-repeat;
周宏民's avatar
周宏民 committed
561
    background-size: 48px 48px, 100% 100%;
周宏民's avatar
周宏民 committed
562 563 564

  }

周宏民's avatar
周宏民 committed
565
  .integration_row_col_content[name='GIS服务'] {
566 567
    background: url('@/assets/images/integration/yixing2/GIS服务.png') center 23px no-repeat,
      url('@/assets/images/integration/yixing2/二次供水bg.png') center center no-repeat;
周宏民's avatar
周宏民 committed
568
    background-size: 48px 48px, 100% 100%;
周宏民's avatar
周宏民 committed
569 570 571

  }

周宏民's avatar
周宏民 committed
572
  .integration_row_col_content[name='管网GIS'] {
573 574
    background: url('@/assets/images/integration/yixing2/管网GIS.png') center 23px no-repeat,
      url('@/assets/images/integration/yixing2/二次供水bg.png') center center no-repeat;
周宏民's avatar
周宏民 committed
575
    background-size: 48px 48px, 100% 100%;
周宏民's avatar
周宏民 committed
576 577 578

  }

周宏民's avatar
周宏民 committed
579
  .integration_row_col_content[name='管网运维'] {
580 581
    background: url('@/assets/images/integration/yixing2/管网运维.png') center 23px no-repeat,
      url('@/assets/images/integration/yixing2/二次供水bg.png') center center no-repeat;
周宏民's avatar
周宏民 committed
582
    background-size: 48px 48px, 100% 100%;
周宏民's avatar
周宏民 committed
583 584 585

  }

周宏民's avatar
周宏民 committed
586
  .integration_row_col_content[name='DMA控漏'] {
587 588
    background: url('@/assets/images/integration/yixing2/DMA控漏.png') center 23px no-repeat,
      url('@/assets/images/integration/yixing2/二次供水bg.png') center center no-repeat;
周宏民's avatar
周宏民 committed
589
    background-size: 48px 48px, 100% 100%;
周宏民's avatar
周宏民 committed
590 591 592

  }

周宏民's avatar
周宏民 committed
593
  .integration_row_col_content[name='供水调度'] {
594 595
    background: url('@/assets/images/integration/yixing2/供水调度.png') center 23px no-repeat,
      url('@/assets/images/integration/yixing2/二次供水bg.png') center center no-repeat;
周宏民's avatar
周宏民 committed
596
    background-size: 48px 48px, 100% 100%;
周宏民's avatar
周宏民 committed
597 598 599 600

  }

  .integration_row_col_content[name='营业收费'] {
601 602
    background: url('@/assets/images/integration/yixing2/营业收费.png') center 23px no-repeat,
      url('@/assets/images/integration/yixing2/二次供水bg.png') center center no-repeat;
周宏民's avatar
周宏民 committed
603 604 605 606 607
    background-size: 48px 48px, 100% 100%;

  }

  .integration_row_col_content[name='表务系统'] {
608 609
    background: url('@/assets/images/integration/yixing2/表务系统.png') center 23px no-repeat,
      url('@/assets/images/integration/yixing2/二次供水bg.png') center center no-repeat;
周宏民's avatar
周宏民 committed
610 611 612 613 614
    background-size: 48px 48px, 100% 100%;

  }

  .integration_row_col_content[name='客服热线'] {
615 616
    background: url('@/assets/images/integration/yixing2/客服热线.png') center 23px no-repeat,
      url('@/assets/images/integration/yixing2/二次供水bg.png') center center no-repeat;
周宏民's avatar
周宏民 committed
617
    background-size: 48px 48px, 100% 100%;
周宏民's avatar
周宏民 committed
618 619 620

  }

周宏民's avatar
周宏民 committed
621
  .integration_row_col_content[name='业扩报装'] {
622 623
    background: url('@/assets/images/integration/yixing2/业扩报装.png') center 23px no-repeat,
      url('@/assets/images/integration/yixing2/业扩报装bg.png') center center no-repeat;
周宏民's avatar
周宏民 committed
624
    background-size: 48px 48px, 100% 100%;
周宏民's avatar
周宏民 committed
625 626 627

  }

周宏民's avatar
周宏民 committed
628
  .integration_row_col_content[name='大用户水表管理'] {
629 630
    background: url('@/assets/images/integration/yixing2/大用户水表管理.png') center 23px no-repeat,
      url('@/assets/images/integration/yixing2/业扩报装bg.png') center center no-repeat;
周宏民's avatar
周宏民 committed
631
    background-size: 48px 48px, 100% 100%;
周宏民's avatar
周宏民 committed
632 633 634

  }

周宏民's avatar
周宏民 committed
635 636 637 638




周宏民's avatar
周宏民 committed
639 640 641 642 643 644 645 646 647 648 649 650
  // 智慧生产调度end




  // 基础平台start
  .integration_row[type='基础平台'] {
    display: flex;
    align-items: center;


    .integration_row_list {
周宏民's avatar
周宏民 committed
651
      height: 212px;
周宏民's avatar
周宏民 committed
652 653 654 655 656 657 658 659 660 661
      background: linear-gradient(0deg, rgba(0, 131, 120, 0) 0%, rgba(0, 131, 120, 0.5) 100%);
      border-radius: 20px;
      padding-top: 7px;
      position: relative;
      top: 5px;
    }
  }

  .integration_row_grid[type='基础平台'] {
    display: flex;
662
    justify-content: center;
周宏民's avatar
周宏民 committed
663
    width: 100%;
周宏民's avatar
周宏民 committed
664
    flex-wrap: wrap;
665
    padding: 5px 15px 0 12px;
周宏民's avatar
周宏民 committed
666 667 668
  }

  .integration_row_col[type='基础平台'] {
669
    width: 350px;
周宏民's avatar
周宏民 committed
670
    height: 98px;
周宏民's avatar
周宏民 committed
671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696


    .integration_row_col_text {
      font-weight: bold;
      font-size: 20px;
      color: #89FFDC;
      text-shadow: 2px 3px 4px rgba(0, 0, 0, 0.5);
      margin-bottom: 2px;
    }

    .integration_row_col_sub {
      font-weight: 400;
      font-size: 13px;
      color: rgba(137, 255, 220, 0.6);
    }

    .integration_row_col_content {
      width: 100%;
      height: 100%;
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 28px 20px 45px 144px;

    }

周宏民's avatar
周宏民 committed
697
    .integration_row_col_content[name='数据中台'] {
698 699
      background: url('@/assets/images/integration/yixing2/数据中台.png') 47px 20px no-repeat,
        url('@/assets/images/integration/yixing2/基础平台.png') center center no-repeat;
周宏民's avatar
周宏民 committed
700 701 702 703 704
      background-size: 48px 48px, 100% 100%;

    }

    .integration_row_col_content[name='物联网管理'] {
705 706
      background: url('@/assets/images/integration/yixing2/物联网管理.png') 47px 20px no-repeat,
        url('@/assets/images/integration/yixing2/基础平台.png') center center no-repeat;
周宏民's avatar
周宏民 committed
707
      background-size: 48px 48px, 100% 100%;
周宏民's avatar
周宏民 committed
708 709 710

    }

周宏民's avatar
周宏民 committed
711
    .integration_row_col_content[name='外业管理'] {
712 713
      background: url('@/assets/images/integration/yixing2/外业管理.png') 47px 19px no-repeat,
        url('@/assets/images/integration/yixing2/基础平台.png') center center no-repeat;
周宏民's avatar
周宏民 committed
714 715 716 717 718
      background-size: 48px 48px, 100% 100%;

    }

    .integration_row_col_content[name='公共服务'] {
719 720
      background: url('@/assets/images/integration/yixing2/公共服务.png') 46px 20px no-repeat,
        url('@/assets/images/integration/yixing2/基础平台.png') center center no-repeat;
周宏民's avatar
周宏民 committed
721 722
      background-size: 48px 48px, 100% 100%;

周宏民's avatar
周宏民 committed
723 724
    }

周宏民's avatar
周宏民 committed
725
    .integration_row_col_content[name='统一报警'] {
726 727
      background: url('@/assets/images/integration/yixing2/统一报警.png') 47px 19px no-repeat,
        url('@/assets/images/integration/yixing2/基础平台.png') center center no-repeat;
周宏民's avatar
周宏民 committed
728
      background-size: 48px 48px, 100% 100%;
周宏民's avatar
周宏民 committed
729 730 731

    }

周宏民's avatar
周宏民 committed
732
    .integration_row_col_content[name='WEB组态'] {
733 734
      background: url('@/assets/images/integration/yixing2/WEB组态.png') 47px 19px no-repeat,
        url('@/assets/images/integration/yixing2/基础平台.png') center center no-repeat;
周宏民's avatar
周宏民 committed
735
      background-size: 48px 48px, 100% 100%;
周宏民's avatar
周宏民 committed
736 737

    }
周宏民's avatar
周宏民 committed
738 739

    .integration_row_col_content[name='排班管理'] {
740 741
      background: url('@/assets/images/integration/yixing2/排班管理.png') 47px 19px no-repeat,
        url('@/assets/images/integration/yixing2/基础平台.png') center center no-repeat;
周宏民's avatar
周宏民 committed
742 743 744 745 746
      background-size: 48px 48px, 100% 100%;

    }

    .integration_row_col_content[name='运维监控'] {
747 748
      background: url('@/assets/images/integration/yixing2/运维监控.png') 47px 20px no-repeat,
        url('@/assets/images/integration/yixing2/基础平台.png') center center no-repeat;
周宏民's avatar
周宏民 committed
749 750 751 752
      background-size: 48px 48px, 100% 100%;

    }

周宏民's avatar
周宏民 committed
753 754 755 756 757 758 759 760
  }

  //基础平台end
  .integrationYixing_title {
    display: flex;
    // align-items: center;
    justify-content: center;
    padding-top: 10px;
周宏民's avatar
周宏民 committed
761
    padding-bottom: 20px;
周宏民's avatar
周宏民 committed
762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850



    &_text {
      flex: none;
      color: #fff;

      span {
        line-height: 97px;
        color: #fff;
        font-size: 56px;
        letter-spacing: 4px;
        background: linear-gradient(0deg, #56A1EF 0%, #FFFFFF 59%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        position: relative;
        // top: -8px;
        font-weight: bolder;
      }
    }


  }

}

.integrationJumpLoad {
  width: 100%;
  height: 100%;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 0;
  left: 0;
  z-index: 1080;
  padding-bottom: 50px;
  background-color: rgba(0, 0, 0, 0.6);


}

.hide {
  visibility: hidden;
}



@-webkit-keyframes scale-in-center {
  0% {
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
    opacity: 1;
  }

  100% {
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
    opacity: 1;
  }
}

@keyframes scale-in-center {
  0% {
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
    opacity: 1;
  }

  100% {
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
    opacity: 1;
  }
}

.scaleInCenter {
  visibility: visible;
  -webkit-animation: scale-in-center .3s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
  animation: scale-in-center .3s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

& :global {
  .integrationYixing {
    .anticon {
      vertical-align: 0.125em;
    }
  }
}