index.less 17.8 KB
Newer Older
邓晓峰's avatar
邓晓峰 committed
1
@import '~antd/es/style/themes/variable.less';
dengxiaofeng's avatar
dengxiaofeng committed
2
@pro-header-hover-bg: rgba(0, 0, 0, 0.025);
杨思琦's avatar
杨思琦 committed
3 4 5 6 7 8 9 10
@keyframes marque-animation {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-40%);
  }
}
dengxiaofeng's avatar
dengxiaofeng committed
11 12

.menu {
邓晓峰's avatar
邓晓峰 committed
13
  :global(.@{ant-prefix}icon) {
dengxiaofeng's avatar
dengxiaofeng committed
14 15
    margin-right: 8px;
  }
邓晓峰's avatar
邓晓峰 committed
16
  :global(.@{ant-prefix}-dropdown-menu-item) {
dengxiaofeng's avatar
dengxiaofeng committed
17 18 19 20 21 22
    min-width: 160px;
  }
}

.right {
  display: flex;
23
  // float: right;
24
  height: 46px;
dengxiaofeng's avatar
dengxiaofeng committed
25 26
  margin-left: auto;
  overflow: hidden;
邓晓峰's avatar
邓晓峰 committed
27
  align-items: center;
28
  flex: none;
dengxiaofeng's avatar
dengxiaofeng committed
29 30 31 32
  .action {
    display: flex;
    align-items: center;
    height: 100%;
邓晓峰's avatar
邓晓峰 committed
33
    padding: 0 9px;
dengxiaofeng's avatar
dengxiaofeng committed
34 35 36 37
    cursor: pointer;
    transition: all 0.3s;
    > span {
      vertical-align: middle;
邓晓峰's avatar
邓晓峰 committed
38
      margin: 0 8px 0 0!important;
dengxiaofeng's avatar
dengxiaofeng committed
39 40 41 42 43 44 45 46 47 48 49 50 51 52
    }
    &:hover {
      background: @pro-header-hover-bg;
    }
    &:global(.opened) {
      background: @pro-header-hover-bg;
    }
  }
  .search {
    padding: 0 12px;
    &:hover {
      background: transparent;
    }
  }
53
  .extendsearch {
邓晓峰's avatar
邓晓峰 committed
54
    & :global(.@{ant-prefix}-input-affix-wrapper) {
55 56 57 58
      padding: 3px 11px!important;
      background: #fff;
    }
  }
邓晓峰's avatar
邓晓峰 committed
59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78
  :global(.anticon) {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
    // margin-right: 21px;
    cursor: pointer;
    &.active, &:hover {
      background: rgba(0, 0, 0, 0.15);
      border-radius: 8px;
      transition: all cubic-bezier(0.075, 0.82, 0.165, 1);
    }
    img {
      width: 18px;
      height: 18px;
      display: block;
    }
  }
张帆's avatar
张帆 committed
79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97
  .curentPersonStationWriper{
    width: 217px;
    height: 30px;
    // background-color: red;
    display: flex;
    margin-left: 10px;
    align-items: center;
    >span{
      width: 50;
      font-weight: 600;
      color: white;
      margin-right: 10px;
    }
    .currentPersonStationSlect{
      flex: 1;
      width: 167px;
    }
    :global{
      .@{ant-prefix}-select-selector{
张帆's avatar
张帆 committed
98
          background: linear-gradient(0deg, transparent ,rgba(0,0,0,0.2));
张帆's avatar
张帆 committed
99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120
          padding-left: 30px !important;
          border-radius: 4px !important;
          position: relative;
          &::before{
            display: block;
            content: "";
            position: absolute;
            width: 30px;
            height: 30px;
            top: 0;
            left: 0;
            background: url('../../assets/images/commonMenu/zhandian.png') no-repeat;
            background-position: center;
            background-size: auto;
          }
        input{
          color: white;
          text-indent: 20px;
        }
      }
      .@{ant-prefix}-select-selection-item{
        color: #FEFEFE;
张帆's avatar
张帆 committed
121 122
        background: transparent;
        width: 120px;
张帆's avatar
张帆 committed
123 124 125 126 127 128 129 130 131 132 133 134 135
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
      }
      .@{ant-prefix}-select{
        cursor: pointer;
      }
      .@{ant-prefix}-select-arrow{
        color: white;
        cursor: pointer;
      }
    }
  }
邓晓峰's avatar
邓晓峰 committed
136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151
  //.account {
  //  .avatar {
  //    margin: ~'calc((@{layout-header-height} - 24px) / 2)' 0;
  //    // margin-right: 8px;
  //    color: @primary-color;
  //    vertical-align: top;
  //    background: rgba(255, 255, 255, 0.85);
  //    width: 36px;
  //    height: 36px;
  //    border-radius: 50%;
  //    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
  //    transition: box-shadow 0.1s linear, opacity 0.4s linear;
  //    background-position: center;
  //    overflow: hidden;
  //  }
  //}
邓晓峰's avatar
邓晓峰 committed
152

dengxiaofeng's avatar
dengxiaofeng committed
153
}
张帆's avatar
张帆 committed
154 155 156
.scalnameSlectMenu{
  width: 100%;
  max-height: 300px;
张帆's avatar
张帆 committed
157
  // display: flex;
张帆's avatar
张帆 committed
158 159 160 161 162 163 164 165 166
  flex-direction: column;
  margin: 0;
  padding: 0;
  overflow-y: scroll;
  >li{
      display: flex;
      height: 30px;
      align-items: center;
      color: black;
张帆's avatar
张帆 committed
167 168 169 170 171
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
      padding: 0 5px;
      &:hover{
张帆's avatar
张帆 committed
172
        background-color: #EBEBEB;
张帆's avatar
张帆 committed
173
      }
张帆's avatar
张帆 committed
174
      cursor: pointer;
张帆's avatar
张帆 committed
175 176 177 178 179
      span{
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
      }
张帆's avatar
张帆 committed
180 181 182 183 184 185 186 187
      img{
          width: 20px;
          height: 20px;
          object-fit: none;
          margin: 0 5px;
      }
  }
}
dengxiaofeng's avatar
dengxiaofeng committed
188 189 190 191 192 193 194 195 196 197 198 199
.dark {
  .action {
    color: rgba(255, 255, 255, 0.85);
    > span {
      color: rgba(255, 255, 255, 0.85);
    }
    &:hover,
    &:global(.opened) {
      background: @primary-color;
    }
  }
}
邓晓峰's avatar
邓晓峰 committed
200 201 202 203 204 205 206
.userWrapper {
  .userInfo {
    background-color: #fff;
    width: 300px;
    position: absolute;
    right: 0;
    top: 10px;
邓晓峰's avatar
邓晓峰 committed
207
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
邓晓峰's avatar
邓晓峰 committed
208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276
    border-radius: 6px;
    .header {
      width: 100%;
      height: 80px;
      position: relative;
      background: #40b3f7;
      padding: 14px 12px;
      display: flex;
      border-top-left-radius: 6px;
      border-top-right-radius: 6px;
      .avatar {
        display: inline-block;
        width: 52px;
        height: 52px;
        border: 2px solid #fff;
        background-color: #fff;
        border-radius: 50%;
        background-size: 100%;
        background-repeat: no-repeat;
        background-position: center center;
        background-position: center;
        cursor: pointer;
      }
      .name {
        display: inline-block;
        width: 214px;
        font-size: 18px;
        color: #fff;
        font-weight: bold;
        padding: 14px;
      }
    }
    .body {
      .item {
        border-bottom: 1px solid #e0e0e0;
        ul {
          padding: 0 12px;
          list-style: none;
          margin: 0;
          li {
            height: 40px;
            line-height: 42px;
            border-bottom: 1px dashed #eee;
            position: relative;
            text-indent: 3px;
            overflow: hidden;
            width: 100%;
            font-size: 12px;
            font-weight: 100;
            span.label {
              padding: 0 2px;
              max-width: 200px;
            }
            span.value {
              padding: 0 2px;
              max-width: 200px;
            }
          }
        }
      }
      .exit {
        height: 30px;
        line-height: 30px;
        text-align: right;
        padding: 0 10px;
        a {
          color: #777;
          text-decoration: none;
          margin: 0 5px;
邓晓峰's avatar
邓晓峰 committed
277 278 279
          &:hover {
            color: @primary-7;
          }
邓晓峰's avatar
邓晓峰 committed
280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296
        }
      }
    }
  }
}
.nav {
  display: flex;
  align-items: center;
  span {
    &:first-child {
      margin-right: 20px;
      margin-left: 20px;
    }
    svg {
      transform: scale(0.88);
    }
  }
297 298 299 300 301 302 303 304
  .item {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    height: 100%;
    padding: 0 16px;
    cursor: pointer;
邓晓峰's avatar
邓晓峰 committed
305
    transition: border-color .3s,background .3s,padding .1s cubic-bezier(.215,.61,.355,1);
306 307 308 309
    span:first-child {
      margin: 0 8px 0 0!important;
    }
    span:last-child {
邓晓峰's avatar
邓晓峰 committed
310 311 312 313 314 315 316 317 318 319
      color: hsla(221, 100%, 95%, 0.7)
    }
    &:hover {
      background: transparent!important;
      path {
        fill: #FFFFFF!important;
      }
      span:last-child {
        color: #fff;
      }
320
    }
邓晓峰's avatar
邓晓峰 committed
321 322
    &.active {
      background: rgba(22,133,255, 0.4)!important;
323 324 325 326 327 328 329 330
      path {
        fill: #FFFFFF!important;
      }
      span:last-child {
        color: #fff;
      }
    }
  }
邓晓峰's avatar
邓晓峰 committed
331
}
崔佳豪's avatar
崔佳豪 committed
332 333 334 335

.platformModalWrap {
  pointer-events: none;
}
邓晓峰's avatar
邓晓峰 committed
336
.platformModal {
崔佳豪's avatar
崔佳豪 committed
337
  pointer-events: all;
邓晓峰's avatar
邓晓峰 committed
338 339
  border-radius: 30px;
  :global {
邓晓峰's avatar
邓晓峰 committed
340 341 342 343 344 345
    .@{ant-prefix}-modal-header {
      background: linear-gradient(
        90deg,
        rgba(255, 71, 93, 1) 0%,
        rgba(255, 104, 93, 1) 100%
      );
邓晓峰's avatar
邓晓峰 committed
346
      padding: 8px 24px;
邓晓峰's avatar
邓晓峰 committed
347
      .@{ant-prefix}-modal-title {
邓晓峰's avatar
邓晓峰 committed
348 349 350
        color: #fff;
      }
    }
邓晓峰's avatar
邓晓峰 committed
351

邓晓峰's avatar
邓晓峰 committed
352
    .@{ant-prefix}-modal-close {
邓晓峰's avatar
邓晓峰 committed
353
      color: #fff;
邓晓峰's avatar
邓晓峰 committed
354
      .@{ant-prefix}-modal-close-x {
355 356 357
        width: 40px;
        height: 40px;
        line-height: 40px;
邓晓峰's avatar
邓晓峰 committed
358 359 360
        font-size: 14px;
      }
    }
邓晓峰's avatar
邓晓峰 committed
361 362
    .@{ant-prefix}-list-items {
      .@{ant-prefix}-list-item-meta-description {
邓晓峰's avatar
邓晓峰 committed
363 364 365 366 367
        div {
          b {
            color: rgba(255, 36, 36, 1);
          }
          &:first-child {
邓晓峰's avatar
邓晓峰 committed
368
            color: #616f88;
邓晓峰's avatar
邓晓峰 committed
369 370 371 372 373 374 375 376 377 378 379 380 381 382
          }
          &:last-child {
            display: flex;
            justify-content: space-between;
            margin-top: 10px;
            span {
              &:last-child {
                font-weight: bold;
                color: rgba(51, 62, 81, 1);
              }
            }
          }
        }
      }
邓晓峰's avatar
邓晓峰 committed
383
      .@{ant-prefix}-avatar-image {
邓晓峰's avatar
邓晓峰 committed
384 385 386 387 388
        top: 10px;
        width: 63px;
        height: 63px;
        line-height: 63px;
      }
邓晓峰's avatar
邓晓峰 committed
389
      .@{ant-prefix}-list-item-extra {
邓晓峰's avatar
邓晓峰 committed
390 391 392
        cursor: pointer;
      }
    }
邓晓峰's avatar
邓晓峰 committed
393 394
    .@{ant-prefix}-list-vertical {
      .@{ant-prefix}-list-pagination {
邓晓峰's avatar
邓晓峰 committed
395
        .mini {
邓晓峰's avatar
邓晓峰 committed
396 397
          .@{ant-prefix}-pagination-prev,
          .@{ant-prefix}-pagination-next {
邓晓峰's avatar
邓晓峰 committed
398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418
            line-height: 5px;
          }
        }
      }
    }
  }
  .alarmContent {
    display: flex;
    flex-direction: row;
    flex: 1;
    padding: 10px;
    width: 100%;
    img {
      width: 63px;
      height: 63px;
      margin: 20px 20px 20px 0;
    }
    .content {
      display: flex;
      flex-direction: column;
      flex: 1;
419
      overflow: hidden;
邓晓峰's avatar
邓晓峰 committed
420 421 422 423 424 425 426 427 428 429 430
      &-top {
        font-size: 20px;
        font-family: Source Han Sans CN;
        font-weight: 500;
        color: rgba(51, 62, 81, 1);
        line-height: 32px;
        display: flex;
        flex-direction: row;
        white-space: nowrap;
        justify-content: space-between;
        align-items: center;
杨思琦's avatar
杨思琦 committed
431 432 433
        &-title {
          flex: 1;
          text-overflow: clip;
邓晓峰's avatar
邓晓峰 committed
434
          overflow: hidden;
杨思琦's avatar
杨思琦 committed
435 436 437 438 439 440 441 442
          margin-right: 15px;
          display: flex;
          a {
            animation: marque-animation 10s linear infinite;
          }
          a:hover {
            animation-play-state: paused;
          }
邓晓峰's avatar
邓晓峰 committed
443 444 445 446 447
        }
        span {
          width: 18px;
          height: 14px;
          margin: 17px 0;
邓晓峰's avatar
邓晓峰 committed
448 449
          background: url(https://panda-water.com/web4/assets/images/message/已读-默认.svg)
            no-repeat center;
邓晓峰's avatar
邓晓峰 committed
450 451 452 453 454 455 456 457
          background-size: 100% 100%;
          cursor: pointer;
        }
      }
      &-mid {
        font-size: 16px;
        font-family: Source Han Sans CN;
        font-weight: 400;
邓晓峰's avatar
邓晓峰 committed
458
        color: #616f88;
邓晓峰's avatar
邓晓峰 committed
459 460 461 462
        line-height: 32px;
        b {
          color: rgba(255, 36, 36, 1);
        }
杨思琦's avatar
杨思琦 committed
463 464 465
        &-recover {
          color: #00b809 !important;
        }
邓晓峰's avatar
邓晓峰 committed
466 467 468 469 470 471 472 473
      }
      &-bottom {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        line-height: 32px;
        p {
          b {
邓晓峰's avatar
邓晓峰 committed
474
            color: #ff2929;
邓晓峰's avatar
邓晓峰 committed
475 476
          }
        }
杨思琦's avatar
杨思琦 committed
477 478 479
        &-recover {
          color: #00b809 !important;
        }
邓晓峰's avatar
邓晓峰 committed
480 481 482 483 484 485 486 487 488 489
        span {
          font-size: 16px;
          font-family: Source Han Sans CN;
          font-weight: bold;
          color: rgba(51, 62, 81, 1);
        }
      }
    }
  }
}
杨思琦's avatar
杨思琦 committed
490 491 492 493 494 495 496
.platformModalDefault {
  :global {
    .@{ant-prefix}-modal-header {
      background: var(--panda-console-base-header-bg-color);
    }
  }
}
杨思琦's avatar
杨思琦 committed
497 498 499 500 501 502 503
.platformModalRecover {
  :global {
    .@{ant-prefix}-modal-header {
      background: #00b809;
    }
  }
}
邓晓峰's avatar
邓晓峰 committed
504
.videoPopup {
邓晓峰's avatar
邓晓峰 committed
505
  :global(.@{ant-prefix}-modal-content) {
邓晓峰's avatar
邓晓峰 committed
506 507
    height: 520px;
  }
邓晓峰's avatar
邓晓峰 committed
508
  :global(.@{ant-prefix}-modal-header) {
邓晓峰's avatar
邓晓峰 committed
509 510
    padding: 8px 24px;
  }
邓晓峰's avatar
邓晓峰 committed
511
  :global(.@{ant-prefix}-modal-close-x) {
邓晓峰's avatar
邓晓峰 committed
512 513 514 515
    width: 36px;
    height: 36px;
    line-height: 36px;
  }
邓晓峰's avatar
邓晓峰 committed
516
  :global(.@{ant-prefix}-modal-body) {
邓晓峰's avatar
邓晓峰 committed
517 518
    padding: 0;
    height: 100%;
邓晓峰's avatar
邓晓峰 committed
519
    width: 100%;
邓晓峰's avatar
邓晓峰 committed
520 521
  }
}
邓晓峰's avatar
邓晓峰 committed
522

邓晓峰's avatar
邓晓峰 committed
523
:global(.@{ant-prefix}-pro-global-header) {
dengxiaofeng's avatar
dengxiaofeng committed
524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540
  .dark {
    .action {
      color: @text-color;
      > span {
        color: @text-color;
      }
      &:hover {
        color: rgba(255, 255, 255, 0.85);
        > span {
          color: rgba(255, 255, 255, 0.85);
        }
      }
    }
  }
}

@media only screen and (max-width: @screen-md) {
邓晓峰's avatar
邓晓峰 committed
541
  :global(.@{ant-prefix}-divider-vertical) {
dengxiaofeng's avatar
dengxiaofeng committed
542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559
    vertical-align: unset;
  }
  .name {
    display: none;
  }
  .right {
    position: absolute;
    top: 0;
    right: 12px;
    .account {
      .avatar {
        margin-right: 0;
      }
    }
    .search {
      display: none;
    }
  }
邓晓峰's avatar
邓晓峰 committed
560 561
}
.updatePassword {
邓晓峰's avatar
邓晓峰 committed
562 563
  :global(.@{ant-prefix}-modal-header) {
    padding: 10px 24px !important;
邓晓峰's avatar
邓晓峰 committed
564
  }
邓晓峰's avatar
邓晓峰 committed
565
  :global(.@{ant-prefix}-modal-close .@{ant-prefix}-modal-close-x) {
邓晓峰's avatar
邓晓峰 committed
566 567 568 569 570
    width: 45px;
    height: 45px;
    font-size: 12px;
    line-height: 35px;
  }
邓晓峰's avatar
邓晓峰 committed
571
  :global(.@{ant-prefix}-modal-body) {
邓晓峰's avatar
邓晓峰 committed
572 573
    padding: 10px 24px;
  }
邓晓峰's avatar
邓晓峰 committed
574
  :global(.@{ant-prefix}-modal-footer) {
邓晓峰's avatar
邓晓峰 committed
575 576
    padding: 8px 12px;
  }
邓晓峰's avatar
邓晓峰 committed
577
  :global(.@{ant-prefix}-modal-footer .@{ant-prefix}-btn) {
邓晓峰's avatar
邓晓峰 committed
578 579 580
    line-height: 1.2px;
    height: 28px;
  }
邓晓峰's avatar
邓晓峰 committed
581
}
582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629

.noticeModal {
  :global {
    .@{ant-prefix}-modal-body {
      padding: 10px 24px;
      b {
        float: right;
        text-align: right;
        display: block;
        &:last-child {
          float: inherit;
        }
      }
      .@{ant-prefix}-form-item {
        margin-bottom: 20px;
        padding-top: 4px;
      }
      .@{ant-prefix}-form-item {
        &:last-child {
          text-align: center;
        }
      }
    }
  }
  :global(.@{ant-prefix}-modal-header) {
    padding: 10px 24px !important;
  }
  :global(.@{ant-prefix}-modal-close .@{ant-prefix}-modal-close-x) {
    width: 45px;
    height: 45px;
    font-size: 12px;
    line-height: 35px;
  }
  .title {
    font-size: 20px;
    font-weight: bold;
  }
  .content {
    text-indent: 24px;
    padding-top: 4px;
  }
  .time {
    display: block;
    font-weight: 500;
    font-size: 16px;
    text-align: right;
  }
}
630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 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 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721

.newYearMessage {
  .topPopup-body {
    width: 876px;
    max-height: 90%;
    background: 0;
    box-shadow: none;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    .topPopup-title{
      width: 100%;
      height: 263px;
      flex: none;
      background: url(https://panda-water.com/web4/assets/images/message/%E8%83%8C%E6%99%AF%E4%B8%8A.png) center center no-repeat;
      background-size: 100% 100%;
      font-size: 40px;
      font-family: ZhenyanGB;
      font-weight: 400;
      color: #ffe59f;
      line-height: 60px;
      text-shadow: 0 3px 3px rgb(0 0 0 / 35%);
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      border-radius: 10px 10px 0 0;
      padding: 18px;
      > img {
        width: 40px;
        height: 40px;
        cursor: pointer;
        margin: 0 0 0 auto;
      }
      .newYearTitle {
        display: flex;
        flex-direction: row;
        justify-content: center;
        padding-bottom: 35px;
        > span {
          border-bottom: 2px solid;
          background-image: -webkit-linear-gradient(#fff2c3,#ffbd49);
          -webkit-background-clip: text;
          -webkit-text-fill-color: transparent;
          text-shadow: none;
          font-size: 40px;
          line-height: 60px;
        }
        > img {
          width: 47px;
          height: 20px;
          margin: 27px 25px 0 25px;
        }
      }
    }
    .topPopup-content {
      display: flex;
      flex-direction: column;
      background: url(https://panda-water.com/web4/assets/images/message/%E8%83%8C%E6%99%AF%E4%B8%AD.png) center center no-repeat;
      background-size: 100% 100%;
      flex: 1;
      padding: 0 0 10px 0;
      overflow: hidden;
      margin-top: -30px;
      height: 230px;
      .content {
        display: flex;
        flex-direction: column;
        flex: 1;
        margin: 0 66px;
        overflow-y: auto;
        .content-mid {
          font-size: 16px;
          font-family: Microsoft YaHei;
          font-weight: 700;
          color: #fffaee;
          line-height: 28px;
          padding: 0 10px;
          b {
            font-weight: 600;
            float: right;
          }
          span {
             font-weight: 100;
          }

        }
        .content-bottom {
          display: flex;
          flex-direction: row-reverse;
          justify-content: space-between;
          line-height: 48px;
          padding: 0 5px;
崔佳豪's avatar
崔佳豪 committed
722 723 724
        }
        .message-time {
          color: #fffaee;
725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746
        }
      }
    }
    .feedbackBox {
      flex: none;
      height: 304px;
      border-top: 0;
      padding: 10px 105px;
      background: url(https://panda-water.com/web4/assets/images/message/%E8%83%8C%E6%99%AF%E4%B8%8B.png) center center no-repeat;
      background-size: 100% 100%;
      .question {
        font-size: 15px;
        font-family: "Microsoft YaHei";
        font-weight: 400;
        color: #ffe59f;
        line-height: 26px;
        margin-bottom: 8px;
      }
      .horiztion {
        display: flex;
        width: 100%;
        :global {
邓晓峰's avatar
邓晓峰 committed
747
          .@{ant-prefix}-form-item {
748 749 750 751
            &:first-child {
              width: 55%;
            }
          }
邓晓峰's avatar
邓晓峰 committed
752
          .@{ant-prefix}-btn {
753 754 755 756 757 758 759 760 761 762
            border-color: transparent;
            background: url(https://panda-water.com/web4/assets/images/message/提交.png) center center / 100% 100% no-repeat;
            width: 249px;
            height: 51px;
            padding: 0;
            margin: -8px 0 0 10px;
          }
        }
      }
      :global {
邓晓峰's avatar
邓晓峰 committed
763 764
        .@{ant-prefix}-form {
          .@{ant-prefix}-form-item {
765
            margin-bottom: 8px!important;
邓晓峰's avatar
邓晓峰 committed
766
            .@{ant-prefix}-input {
767 768 769 770 771 772 773 774 775 776 777 778 779 780
              border-radius: 4px!important;
              background: #FFFEEC!important;
              border: 1px solid #ffe59f;
              &:focus, &:hover {
                border-color: #ffe59f;
              }
            }
          }
        }

      }
    }
  }
  :global {
邓晓峰's avatar
邓晓峰 committed
781
    .@{ant-prefix}-modal-content {
782 783
      background-color: transparent!important;
      box-shadow: none!important;
邓晓峰's avatar
邓晓峰 committed
784
      .@{ant-prefix}-modal-close {
785 786 787 788 789
        display: none!important;
      }
    }
  }
}
邓晓峰's avatar
邓晓峰 committed
790 791 792 793 794 795 796 797 798 799 800 801 802 803 804

.opteration {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 9px;
  cursor: pointer;
  transition: all 0.3s;
}

.searchPopupWrapper {
  :global(.@{ant-prefix}-popover-inner-content) {
    padding: 12px 16px 0 16px!important;
  }
}
805 806

.notificationFoter {
崔佳豪's avatar
崔佳豪 committed
807 808 809 810 811
  background-color: #FFF;
  border-top: 1px solid #E4E6EA;
  line-height: 34px;
  & > button {
    width: 100%;
812
  }
813 814 815
}
:global{
  .noticeVideoModal{
816 817 818
    .swiper-title{
      display: none;
    }
819 820 821 822 823 824 825 826 827 828 829
    .@{ant-prefix}-modal-header{
      background: rgb(255, 86, 93);
      .@{ant-prefix}-modal-title{
        color: #fff;
        width: 90%;
      }
    }
    .@{ant-prefix}-modal-close-icon{
      color: #fff;
    }
  }
830
}