index.less 1.98 KB
Newer Older
杨思琦's avatar
杨思琦 committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
.jump-panel {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;

  .jump-text {
    font-size: 20px;
    font-family: PingFang SC;
    font-weight: 500;
    color: #233B58;
    height: 35px;
    line-height: 35px;
    margin: auto 50% 10px auto;
    transform: translateX(300px);
  }
19

杨思琦's avatar
杨思琦 committed
20 21 22 23 24
  .jump-button {
    margin: 10px 50% auto auto;
    transform: translateX(109px);
    width: 109px;
    height: 32px;
25
    box-shadow: 0px 7px 8px 0px rgba(22, 133, 255, 0.51);
杨思琦's avatar
杨思琦 committed
26 27 28 29
    border-radius: 16px;
  }
}

30 31 32 33 34
.tab-iframe {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
35
  z-index: 1;
36 37 38 39 40 41 42 43

  iframe {
    border: none;
  }

  .oper-wrap {
    top: 0;
    right: 0;
44 45
    // width: 100px;
    // height: 100px;
46
    position: absolute;
崔佳豪's avatar
崔佳豪 committed
47
    z-index: 2;
48 49 50

    .oper-btn {
      cursor: pointer;
51
      color: #fff;
52 53
      position: absolute;
      top: 10px;
54
      right: 15px;
55
      transition: right ease-in-out 0.8s;
杨思琦's avatar
杨思琦 committed
56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73
      display: flex;
    }

    .btn-fullscreen_container {
      display: flex;
      width: 32px;
      height: 32px;
      background: #ffffff26;
      border-radius: 4px;
    }

    .btn-fullscreen_exit,
    .btn-fullscreen_full,
    .btn-fullscreen_reduce {
      width: 18px;
      height: 18px;
      opacity: 0.7;
      margin: auto;
74
    }
75

76
    .btn-fullscreen_exit {
杨思琦's avatar
杨思琦 committed
77 78 79 80 81 82 83 84 85 86 87 88 89 90 91
      background-image: url('../../../assets/images/commonMenu/退出-01.svg');
    }

    .btn-fullscreen_full {
      background-image: url('../../../assets/images/commonMenu/放大-01.svg');
    }

    .btn-fullscreen_reduce {
      background-image: url('../../../assets/images/commonMenu/缩小-01.svg');
    }

    .btn-fullscreen_exit:hover,
    .btn-fullscreen_full:hover,
    .btn-fullscreen_reduce:hover {
      opacity: 1;
92
    }
93

94
    .btn-fullscreen {
杨思琦's avatar
杨思琦 committed
95
      opacity: 0.7;
96

97 98 99
      svg {
        width: 1.2rem;
        height: 1.2rem;
100 101
      }
    }
杨思琦's avatar
杨思琦 committed
102 103 104 105

    .btn-fullscreen:hover {
      opacity: 1;
    }
106
  }
107
}
108

109 110 111
.IntegratedLogin {
  width: 100%;
  height: 100%;
112
}