| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650 | .wrap {  width: 100vw;  height: 100vh;  display: flex;  flex-direction: row;  background: #f1f5ff;  overflow: hidden;  .WrapcoreView {    // .WrapcoreViewInfo {    // border-radius: 20px;    // background-color: #fff;    // }    padding: 20px 32px 32px;    height: calc(100vh - 64px);    overflow-y: auto;    // overflow: hidden;    &.isNotPadding {      padding: 0;    }  }}.silder {  width: 100px;  background: #3044ca;  min-height: 100vh;  display: flex;  flex-direction: column;  align-items: center;  flex: 1;  .logoWrap {    margin-top: 22px;    .logo {      img {        width: 62px;        height: 60px;      }    }  }  .sliderList {    // margin-top: 10px;    max-height: calc(100vh - 92px);    --n-scrollbar-width: 0 !important;    :global {      .n-scrollbar-content {        display: flex;        align-items: center;        flex-direction: column;      }    }  }}.silderItem {  position: relative;  width: 84px;  height: 80px;  display: flex;  flex-direction: column;  align-items: center;  margin-bottom: 18px;  justify-content: center;  border-radius: 20px;  cursor: pointer;  &:first-child {    margin-top: 18px;  }  .radiusIcon {    width: 26px;    height: 137px;    position: absolute;    right: -10px;    top: -29px;  }  // .radiusIcon1 {  //   // width: 26px;  //   // height: 137px;  //   width: 92px;  //   height: 124px;  //   position: absolute;  //   right: -10px;  //   top: -29px;  // }  p {    margin-top: 4px;    font-size: max(14px, 10px);    font-weight: 600;    color: #ffffff;    line-height: 20px;  }  &:hover {    background-color: rgba(255, 255, 255, 0.1);  }}.silderItem.isActiveItem {  // position: relative;  background-color: #f1f5ff;  border-radius: 20px 0px 0px 20px;  div,  p {    position: relative;    z-index: 1;  }  p {    color: #21225d;  }}.Wrapcore {  height: 100%;  flex: 1;  .layoutTop {    height: var(--layoutTopHeight, 64px);    background-color: #fff;    line-height: 64px;    padding: 0 50px 0 32px;    display: flex;    flex-direction: row;    align-items: center;    justify-content: space-between;    .layoutLeft {      display: flex;      flex-direction: row;      align-items: center;      .schoolIcon {        margin-right: 8px;        img {          width: 32px;          height: 32px;        }      }      p {        font-size: max(18px, 14px);        font-weight: 600;        color: #131415;      }    }    .layoutRight {      display: flex;      flex-direction: row;      align-items: center;      .messageBadge {        margin-right: 24px;        .messageIcon {          width: 32px;          height: 32px;          cursor: pointer;          &.animation {            -webkit-animation: Tada 1s 2s both infinite;            -moz-animation: Tada 1s 2s both infinite;            -ms-animation: Tada 1s 2s both infinite;            animation: Tada 1s 2s both infinite;          }        }      }      .messageBadgeNo,      .messageBadgeHide {        :global {          .n-badge-sup {            visibility: hidden;          }        }      }      @keyframes Tada {        0% {          transform: scale(1);          transform: scale(1);        }        10%,        20% {          transform: scale(0.9) rotate(-3deg);          transform: scale(0.9) rotate(-3deg);        }        30%,        50%,        70%,        90% {          transform: scale(1.1) rotate(3deg);          transform: scale(1.1) rotate(3deg);        }        40%,        60%,        80% {          transform: scale(1.1) rotate(-3deg);          transform: scale(1.1) rotate(-3deg);        }        100% {          transform: scale(1) rotate(0);          transform: scale(1) rotate(0);        }      }      .line {        width: 1px;        height: 18px;        background-color: #dfdfdf;        margin-right: 24px;      }      .mesgWrap {        display: flex;        flex-direction: row;        align-items: center;        .teacherIcon {          width: 32px;          height: 32px;          border-radius: 50%;          overflow: hidden;        }        flex: 1;        .rotueLeft {          transform: rotate(-90deg);          transition: 0.2s;          margin-left: 10px;        }        .rotueRight {          transform: rotate(90deg);          margin-left: 10px;          transition: 0.2s;        }      }      .optons {        margin-top: 18px;        margin-bottom: 14px;        width: 32px;        height: 32px;        margin-right: 24px;        display: flex;        flex-direction: row;        align-items: center;        cursor: pointer;        &.booxToolDisabled {          opacity: 0.5;          cursor: not-allowed;        }        img {          width: 100%;          height: 100%;        }      }    }  }}:global {  .nameTool.n-popover {    background-color: #000 !important;    color: #fff;  }}:global {  .n-popover {    // overflow: hidden;    border-radius: 16px;  }}:global {  .timerMeterConBoxClass_drag {    box-shadow: initial;    width: 651px;    .topDragDom {      position: absolute;      left: 0;      top: 0;      width: calc(100% - 31px);      height: 40px;    }  }}.timerMeterClose {  position: absolute;  width: 31px;  height: 32px;  top: 16px;  right: 0;  cursor: pointer;}.propWrap {  background-color: var(--n-color);  border-radius: 16px;  width: 300px;  overflow-y: auto;  background: #ffffff;  box-shadow: 0px 2px 17px 0px rgba(0, 0, 0, 0.08);  padding: 20px !important;  .teacherInfo {    display: flex;    flex-direction: row;    align-items: center;    border-bottom: 1px solid #f2f2f2;    padding-bottom: 20px;    .teacherIcon {      width: 58px;      height: 58px;      border-radius: 50%;      border: 1px solid #ffffff;      overflow: hidden;    }    .teacherName {      flex: 1;      font-size: max(20px, 15px);      font-weight: 600;      color: #333333;      overflow: hidden;      text-overflow: ellipsis;      white-space: nowrap;    }    .userInfos {      margin-left: 16px;      display: flex;      align-items: flex-start;      flex-direction: column;      .roleType {        font-size: max(12px, 11px);        margin-left: 4px;        color: #2089ff;        background: #e8f4ff;        border-radius: 3px;        border: 1px solid rgba(25, 140, 254, 0.5);        padding: 0 4px;        line-height: 1.3;      }      .nameWrap {        display: flex;        align-items: center;      }      .membershipWrap {        font-size: max(16px, 14px);        color: #198CFE;        span {          font-weight: bold;          color: #EA4132;        }      }    }  }  .propWrapList {    padding-bottom: 17px;    border-bottom: 1px solid #f2f2f2;    margin-top: 16px;  }  .propWrapItem {    display: flex;    flex-direction: row;    align-items: center;    height: 50px;    line-height: 50px;    cursor: pointer;    &:hover {      background: #f5f6fa;      border-radius: 10px;    }  }  .smallIcon {    width: 22px;    height: 23px;    margin-right: 21px;    margin-left: 10px;  }  .smallTitle {    font-size: 18px;    font-weight: 600;    color: #333333;  }  .logoutInfo {    margin-top: 16px;  }}:global {  .fade-slide-leave-active,  .fade-slide-enter-active {    transition: all 0.3s;  }  .fade-slide-enter-from {    opacity: 0;    transform: translateX(-30px);  }  .fade-slide-leave-to {    opacity: 0;    transform: translateX(30px);  }}.toolboxImg {  width: 83px;  height: 83px;  position: absolute;  right: 32px;  bottom: 84px;  cursor: pointer;  z-index: 1000;}.isDragIng {  width: 83px;  height: 83px;}// .toolClassImg {//   width: 100px;//   height: 100px;//   // position: absolute;//   // right: 32px;//   // bottom: 160px;//   // cursor: pointer;//   // z-index: 1000;// }:global {  .moveable-control-box {    --moveable-color: transparent !important;  }  .n-popover {    background-color: transparent;  }}.booxToolWrap {  // width: 286px;  // height: 95px;  background: #ffffff;  box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.1);  border-radius: 20px;  display: flex;  //flex-direction: column;  // flex-direction: row;  align-items: center;  padding: 16px 20px;  justify-content: space-between;  & > div {    display: flex;    &:last-child {      // margin-top: 16px;    }  }  .booxToolItem {    margin: 0 12px;    display: flex;    flex-direction: column;    align-items: center;    font-size: max(12px, 11px);    cursor: pointer;    text-align: center;    &.booxToolDisabled {      opacity: 0.5;      cursor: not-allowed;      &:hover {        opacity: 0.5;        cursor: not-allowed;      }    }    &:hover {      opacity: 0.8;    }    img {      width: 56px;      height: 56px;      margin-bottom: 4px;    }  }}.setTimeImage {  cursor: pointer;  img {    width: 792px;  }}.beatImage {  cursor: pointer;  img {    width: 698px;  }}.changePwdModal {  border-radius: 16px;}.imChatModal {  border-radius: 20px;}.modeWrap {  overflow: hidden;  border-radius: 16px;  background-color: #fff;}.imGroupContainer,.container {  background-color: #fff;  width: 1156px;  height: 834px;  border-radius: 15px;}.hideModal {  visibility: hidden;}.showClass {  width: 800px;  border-radius: 16px;  overflow: hidden;}.showModalTone {  width: 500px;  .studentRemove {    padding: 32px 40px 46px;    p {      font-size: 18px;      color: #777777;      line-height: 30px;      text-align: center;      span {        color: #ea4132;      }    }  }}.suggestWrap {  // :global {  //   .n-card-header {  //     display: none;  //   }  //   .n-card__content {  //     background-color: transparent;  //   }  // }  width: 754px;  background-color: transparent !important;  box-shadow: none !important;  :global {    .n-card-header {      display: none;    }    .n-card__content {      background-color: transparent;    }    .n-input__border {      display: none;    }    .n-input__state-border {      display: none;    }    // .n-card.n-modal {    //   background-color: transparent !important;    //   box-shadow: none !important;    //   .n-input__border {    //     display: none;    //   }    //   .n-input__state-border {    //     display: none;    //   }    // }  }}.popoverClassModel {  width: 500px !important;  border-radius: 19px !important;  // border-radius: ;}.popBox {  z-index: 9999;}
 |