@charset "UTF-8";
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

html, body, h1, h2, h3, h4, h5, p, div, ul, li, dl, dt, dd, input, button, textarea {
  margin: 0;
  padding: 0;
}

ul, dl, li {
  list-style: none;
}

img {
  vertical-align: middle;
}

input, button, textarea {
  background: none;
  border: none;
  outline: none;
  -webkit-appearance: none;
}

input[type=number] {
  -moz-appearance: textfield;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
}

textarea {
  resize: vertical;
}

a {
  text-decoration: none;
}

audio,
video {
  display: block;
}

iframe {
  display: block;
  border: none;
  outline: none;
}

table {
  empty-cells: show;
  border-collapse: collapse;
  border-spacing: 0;
}

.clearfix:after {
  content: "";
  display: block;
  clear: both;
}

.fl {
  float: left;
}

.fr {
  float: right;
}

.abc {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.text-center {
  text-align: center;
}

[v-cloak] {
  display: none;
}

.fade-enter-active,
.fade-leave-active {
  transition: opacity 0.3s;
}

.fade-enter,
.fade-leave-active {
  opacity: 0;
}

.btn-hover:active {
  opacity: 0.8;
}
.start_study_btn {
background: red;
}

.iconloading {
  display: inline-block;
  animation: icon-loading 2s linear infinite;
}

@keyframes icon-loading {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(1turn);
  }
}
.title-line {
  width: max-content;
  font-size: 14px;
  font-weight: 500;
  color: #333333;
  position: relative;
  line-height: normal;
}
.title-line::after {
  content: "";
  position: absolute;
  left: -5%;
  bottom: 2px;
  width: 110%;
  height: 5px;
  background: rgba(54, 114, 245, 0.14);
}

.collapse-transition {
  transition: 0.3s height ease-in-out, 0.3s padding-top ease-in-out, 0.3s padding-bottom ease-in-out;
}

.popup-enter, .popup-leave-to {
  opacity: 0; /*透明度*/
  transform: translateY(-20px);
}

.popup-enter-active, .popup-leave-active {
  transition: all 0.3s ease;
}

.popup-mask {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
  min-width: 1200px;
}
.popup-mask .mask {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
}
.popup-mask .slot-content {
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
}
.popup-mask .popup-content {
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
}
.popup-mask .popup-content .title-box {
  padding: 0 10px;
  position: relative;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #EFEFEF;
  background: #fff;
}
.popup-mask .popup-content .title-box .title {
  flex-grow: 1;
  padding-left: 38px;
  font-size: 16px;
  font-weight: 600;
  color: #333333;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.popup-mask .popup-content .title-box .iconfont {
  cursor: pointer;
  color: #999999;
  font-size: 18px;
  padding: 10px;
}
.popup-mask .popup-content .footer-box {
  padding-top: 30px;
  padding-bottom: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.popup-mask .popup-content .footer-box.right {
  padding-right: 36px;
  justify-content: flex-end;
}
.popup-mask .popup-content .footer-box .btn {
  cursor: pointer;
  margin: 0 9px;
  width: 128px;
  height: 40px;
  background: #FFFFFF;
  border-radius: 4px;
  border: 1px solid #50AA00;
  text-align: center;
  line-height: 38px;
  font-size: 14px;
  font-weight: 500;
  color: #50AA00;
}
.popup-mask .popup-content .footer-box .btn.green {
  color: #fff;
  border-color: #50AA00;
  background: #50AA00;
}
.popup-mask .popup-content .footer-box .btn.small {
  width: 80px;
}

.details-table .row {
  display: flex;
  border-bottom: 1px solid #E2EBFF;
}
.details-table .row:first-child {
  border-top: 1px solid #E2EBFF;
}
.details-table .row .col {
  width: 50%;
  display: flex;
  align-items: center;
}
.details-table .row .col .label {
  align-self: stretch;
  flex-shrink: 0;
  background: #F5F8FF;
  width: 110px;
  text-align: center;
  font-size: 14px;
  font-weight: 400;
  color: #333333;
  display: flex;
  align-items: center;
  justify-content: center;
}
.details-table .row .col .val {
  padding: 4px 20px;
  flex-grow: 1;
  font-size: 14px;
  font-weight: 500;
  color: #333333;
  min-height: 28px;
  box-sizing: border-box;
}
.details-table .row .col .iconcharutupian {
  cursor: pointer;
  font-size: 15px;
  color: #999999;
}

.screenshot-uploader {
  display: flex;
  align-items: flex-start;
}
.screenshot-uploader .upload-box {
  border: 1px solid #D9D9D9;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  width: 130px;
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 16px;
}
.screenshot-uploader .upload-box:hover {
  border-color: #409EFF;
}
.screenshot-uploader .upload-box .text {
  font-size: 12px;
  font-weight: 300;
  color: #999999;
}
.screenshot-uploader .upload-box .screenshot {
  width: 100%;
  height: 100%;
  display: block;
}
.screenshot-uploader .progress {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
  background-color: rgba(0, 0, 0, 0.5);
}
.screenshot-uploader .format {
  font-size: 12px;
  font-weight: 400;
  color: #999999;
}

.c-form {
  margin: 0 auto;
}
.c-form .group {
  margin-top: 26px;
  display: flex;
  align-items: center;
}
.c-form .group .label {
  position: relative;
  flex-shrink: 0;
  margin-right: 6px;
  flex-shrink: 0;
  width: 90px;
  text-align: right;
  font-size: 14px;
  font-weight: 500;
  color: #333333;
}
.c-form .group .label.required::before {
  content: "*";
  color: #f56c6c;
  margin-right: 4px;
}
.c-form .group .input-box {
  margin-top: 0;
  flex-grow: 1;
}
.c-form .right {
  position: relative;
  flex-grow: 1;
}
.c-form .right .tips {
  position: absolute;
  left: 10px;
  bottom: -20px;
  font-size: 12px;
  color: red;
}
.c-form .input-box {
  margin-top: 26px;
  height: 50px;
  background: #fff;
  display: flex;
  align-items: center;
  padding: 0 4px;
  border-radius: 4px;
  border: 1px solid #D9D9D9;
}
.c-form .input-box:has(.input:placeholder-shown) {
  background: #F2F2F2;
}
.c-form .input-box:has(.input:focus) {
  background: #fff;
}
.c-form .input-box .input {
  flex-grow: 1;
  height: 100%;
}
.c-form .input-box .eye {
  padding: 0 4px;
  cursor: pointer;
  font-size: 16px;
  color: #D9D9D9;
}
.c-form .textarea {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid #D9D9D9;
  padding: 8px 15px;
  resize: none;
  font-size: 14px;
  color: #333;
  min-height: 60px;
}

.radio-box {
  white-space: nowrap;
  cursor: pointer;
  outline: none;
  display: inline-block;
  line-height: 1;
  position: relative;
  margin-right: 10px;
}
.radio-box.is-checked .icont {
  border-color: #409eff;
  background: #409eff;
}
.radio-box.is-checked .icont::after {
  transform: translate(-50%, -50%) scale(1);
}
.radio-box.is-checked .label {
  color: #409eff;
}
.radio-box:last-child {
  margin-right: 0;
}
.radio-box .icont {
  border: 1px solid #dcdfe6;
  border-radius: 100%;
  width: 14px;
  height: 14px;
  background-color: #fff;
  position: relative;
  cursor: pointer;
  display: inline-block;
  box-sizing: border-box;
  vertical-align: middle;
}
.radio-box .icont::after {
  width: 4px;
  height: 4px;
  border-radius: 100%;
  background-color: #fff;
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.15s ease-in;
}
.radio-box .label {
  font-size: 14px;
  color: #606266;
  font-weight: 500;
}

.image-viewer__wrapper {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.image-viewer__btn {
  position: absolute;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 50%;
  opacity: 0.8;
  cursor: pointer;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.image-viewer__close {
  top: 40px;
  right: 40px;
  width: 40px;
  height: 40px;
  font-size: 24px;
  color: #fff;
  background-color: #606266;
}

.image-viewer__canvas {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.image-viewer__actions {
  left: 50%;
  bottom: 30px;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 282px;
  height: 44px;
  padding: 0 23px;
  background-color: #606266;
  border-color: #fff;
  border-radius: 22px;
}

.image-viewer__actions__inner {
  width: 100%;
  height: 100%;
  text-align: justify;
  cursor: default;
  font-size: 23px;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: distribute;
  justify-content: space-around;
}

.image-viewer__next, .image-viewer__prev {
  top: 50%;
  width: 44px;
  height: 44px;
  font-size: 24px;
  color: #fff;
  background-color: #606266;
  border-color: #fff;
}

.image-viewer__prev {
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 40px;
}

.image-viewer__next {
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 40px;
  text-indent: 2px;
}

.image-viewer__mask {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0.5;
  background: #000;
}

.viewer-fade-enter-active {
  -webkit-animation: viewer-fade-in 0.3s;
  animation: viewer-fade-in 0.3s;
}

.viewer-fade-leave-active {
  -webkit-animation: viewer-fade-out 0.3s;
  animation: viewer-fade-out 0.3s;
}

@-webkit-keyframes viewer-fade-in {
  0% {
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
    opacity: 0;
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes viewer-fade-in {
  0% {
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
    opacity: 0;
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@-webkit-keyframes viewer-fade-out {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
  100% {
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
    opacity: 0;
  }
}
@keyframes viewer-fade-out {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
  100% {
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
    opacity: 0;
  }
}
.play-line {
  display: flex;
  align-items: center;
  justify-content: center;
}
.play-line .line {
  width: 3px;
  background: #FFFFFF;
  border-radius: 4px;
}
.play-line .line1 {
  height: 2px;
  animation: playline1 0.3s linear infinite alternate;
}
.play-line .line2 {
  margin: 2px;
  height: 14px;
  animation: playline2 0.3s linear infinite alternate;
}
.play-line .line3 {
  height: 8px;
  animation: playline1 0.3s linear infinite alternate;
}

@keyframes playline1 {
  0% {
    height: 6px;
  }
  100% {
    height: 14px;
  }
}
@keyframes playline2 {
  0% {
    height: 14px;
  }
  100% {
    height: 6px;
  }
}
@keyframes playline3 {
  0% {
    height: 8px;
  }
  100% {
    height: 14px;
  }
}
.user-container .single-list .group {
  padding-top: 24px;
  padding-bottom: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #EFEFEF;
}
.user-container .single-list .group .left {
  display: flex;
}
.user-container .single-list .group .left .img-box {
  width: 284px;
  height: 164px;
  margin-right: 28px;
}
.user-container .single-list .group .left .img-box .img {
  width: 100%;
  height: 100%;
}
.user-container .single-list .group .left .name {
  padding: 6px 0;
  font-size: 18px;
  font-weight: 500;
  color: #333333;
}
.user-container .single-list .group .left .desc-box {
  margin-top: 24px;
  display: flex;
  align-items: center;
}
.user-container .single-list .group .left .desc-box .label {
  padding-right: 8px;
  margin-right: 6px;
  font-size: 14px;
  font-weight: 500;
  color: #333333;
}
.user-container .single-list .group .left .desc-box .desc {
  margin-right: 15px;
  font-size: 14px;
  font-weight: 400;
  color: #666666;
}
.user-container .single-list .group .left .desc-box .apply {
  cursor: pointer;
  font-size: 14px;
  font-weight: 400;
  color: #6865F7;
}
.user-container .single-list .group .right {
  cursor: pointer;
  width: 92px;
  height: 32px;
  border-radius: 40px;
  border: 1px solid #6865F7;
  font-size: 14px;
  font-weight: 500;
  color: #6865F7;
  text-align: center;
  line-height: 30px;
  box-sizing: border-box;
}
.user-container .order-title {
  height: 60px;
  border-bottom: 1px solid #eee;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.user-container .order-title .title {
  font-size: 18px;
  color: #333;
}
.user-container .order-title .back {
  cursor: pointer;
  font-size: 14px;
  font-weight: 400;
  color: #525DCA;
}
.user-container .catalog-box .name-box {
  display: flex;
  align-items: center;
  padding: 14px 24px 14px 48px;
  border-bottom: 1px solid #f7f7fa;
}
.user-container .catalog-box .name-box.active, .user-container .catalog-box .name-box:hover {
  cursor: pointer;
}
.user-container .catalog-box .name-box .icon {
  flex-shrink: 0;
  margin-right: 8px;
  cursor: pointer;
  width: 16px;
  height: 16px;
  background: url(../images/icon-sprite.png?2102231605) no-repeat;
  background-size: 200px 400px;
}
.user-container .catalog-box .name-box .icon-jia {
  background-position: -17px -361px;
}
.user-container .catalog-box .name-box .icon-jian {
  background-position: 0 -361px;
}
.user-container .catalog-box .name-box .title {
  flex-grow: 1;
  font-size: 16px;
  color: #333;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.user-container .extension-content {
  padding: 12px 20px;
  padding-bottom: 46px;
}
.user-container .extension-content .num-box {
  width: fit-content;
  cursor: pointer;
  display: flex;
  align-items: center;
  font-size: 14px;
  font-weight: 500;
  color: #333333;
}
.user-container .extension-content .num-box .iconfont {
  margin-left: 10px;
  font-size: 12px;
  color: #999999;
  transition: 0.3s;
}
.user-container .extension-content .num-box .iconfont.active {
  transform: rotate(-90deg);
}
.user-container .extension-content .list .group .top {
  padding: 5px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.user-container .extension-content .list .group .top .left {
  font-size: 14px;
  font-weight: 500;
  color: #E37470;
}
.user-container .extension-content .list .group .top .right {
  font-size: 14px;
  font-weight: 400;
  color: #333333;
}
.user-container .extension-content .apply-btn {
  margin-top: 40px;
  cursor: pointer;
  width: 94px;
  height: 30px;
  background: #6865F7;
  font-size: 12px;
  font-weight: 400;
  color: #FFFFFF;
  text-align: center;
  line-height: 30px;
  border-radius: 33px;
}

.live-status {
  margin-left: 16px;
  margin-right: 12px;
  padding: 0 8px;
  background: #24A032;
  border-radius: 2px;
  font-size: 12px;
  font-weight: 400;
  color: #FFFFFF;
  min-height: 20px;
  display: flex;
  align-items: center;
}
.live-status.ing {
  background: #D93021;
}
.live-status .title {
  margin-right: 4px;
}

.live-container {
  position: relative;
  width: 100vw;
  height: 100vh;
  min-width: 1200px;
  min-height: 700px;
  display: flex;
  overflow: hidden;
}
.live-container ::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
.live-container ::-webkit-scrollbar-thumb {
  border-radius: 4px;
  background: #ccc;
}
.live-container ::-webkit-scrollbar-track {
  background-color: transparent;
}
.live-container ::-webkit-scrollbar-corner {
  background: transparent;
}
.live-container .left-content {
  flex-grow: 1;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.live-container .left-content .paly-content {
  position: relative;
  flex-grow: 1;
}
.live-container .left-content .paly-content .img-box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 11;
}
.live-container .left-content .paly-content .img-box .img {
  width: 100%;
  height: 100%;
}
.live-container .left-content .paly-content .time-mask {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 12;
}
.live-container .left-content .paly-content .time-mask .time-content .time-border {
  background: rgba(0, 0, 0, 0.8);
  border-radius: 58px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  width: 410px;
  height: 116px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin-bottom: 20px;
}
.live-container .left-content .paly-content .time-mask .time-content .time-border .time-box {
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
}
.live-container .left-content .paly-content .time-mask .time-content .time-border .time-box .num-box {
  display: flex;
  align-items: center;
  margin-right: 10px;
}
.live-container .left-content .paly-content .time-mask .time-content .time-border .time-box .num-box .num {
  background: rgba(255, 255, 255, 0.2);
  font-size: 16px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  width: 28px;
  height: 28px;
  text-align: center;
  line-height: 28px;
}
.live-container .left-content .paly-content .time-mask .time-content .time-border .time-box .num-box .unit {
  margin: 0 4px;
  font-size: 16px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.3);
}
.live-container .left-content .paly-content .time-mask .time-content .time-border .live-time {
  font-size: 16px;
  font-weight: 500;
  color: #FFFFFF;
  text-align: center;
}
.live-container .left-content .paly-content .time-mask .time-content .status {
  font-size: 30px;
  font-weight: 500;
  color: #FFFFFF;
  text-align: center;
}
.live-container .left-content .live-info {
  flex-shrink: 0;
  height: 118px;
  padding: 30px 46px 0px 34px;
  background: #212127;
  display: flex;
  justify-content: space-between;
  box-sizing: border-box;
}
.live-container .left-content .live-info .left .name-box {
  display: flex;
  align-items: center;
}
.live-container .left-content .live-info .left .name-box .name {
  font-size: 16px;
  font-weight: 500;
  color: #fff;
}
.live-container .left-content .live-info .left .name-box .icon {
  cursor: pointer;
  font-size: 16px;
  color: #fff;
}
.live-container .left-content .live-info .left .speaker {
  margin-top: 10px;
  font-size: 14px;
  font-weight: 400;
  color: #EFEFEF;
}
.live-container .left-content .live-info .right {
  padding-top: 10px;
}
.live-container .left-content .live-info .right .btn {
  cursor: pointer;
  font-size: 16px;
  font-weight: 400;
  color: #FFFFFF;
  width: 92px;
  height: 40px;
  background: #3672F6;
  border-radius: 2px;
  text-align: center;
  line-height: 40px;
}
.live-container .right-content {
  position: relative;
  flex-shrink: 0;
  width: 350px;
  color: #fff;
  background: #1D1D30;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.live-container .right-content .right-mask {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: calc(100% - 93px);
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 12;
}
.live-container .right-content .notice-box {
  flex-shrink: 0;
  padding: 0 15px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
  background: #2E2E43;
}
.live-container .right-content .notice-box .left {
  flex-grow: 1;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.live-container .right-content .notice-box .left .horn {
  flex-shrink: 0;
  font-size: 18px;
  padding-right: 4px;
}
.live-container .right-content .notice-box .left .text {
  flex-grow: 1;
  font-size: 14px;
  font-weight: 400;
  overflow: hidden;
}
.live-container .right-content .notice-box .left .text .box {
  text-align: right;
  padding-left: 100%;
  animation: loop 10s linear infinite both;
  animation-play-state: running;
  box-sizing: border-box;
  width: fit-content;
}
.live-container .right-content .notice-box .left .text .box.stop {
  padding-left: 0;
  animation: none;
}
.live-container .right-content .notice-box .left .text .box .span {
  word-break: keep-all;
  white-space: nowrap;
}
@keyframes loop {
  0% {
    transform: translateZ(0);
  }
  100% {
    transform: translate3d(-100%, 0, 0);
  }
}
.live-container .right-content .notice-box .edit-notice {
  flex-shrink: 0;
  font-size: 18px;
  cursor: pointer;
}
.live-container .right-content .fun-type {
  flex-shrink: 0;
  height: 45px;
  border-bottom: 1px solid #2E2E43;
  padding: 0 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.live-container .right-content .fun-type .type-box {
  flex-grow: 1;
  display: flex;
}
.live-container .right-content .fun-type .type-box .type {
  cursor: pointer;
  margin-right: 20px;
  font-size: 14px;
  font-weight: 500;
  color: #999999;
}
.live-container .right-content .fun-type .type-box .type.active, .live-container .right-content .fun-type .type-box .type:hover {
  color: #3672F5;
}
.live-container .right-content .fun-type .num-box {
  flex-shrink: 0;
  font-size: 12px;
  font-weight: 400;
  color: #999999;
}
.live-container .right-content .fun-type .num-box .num {
  margin: 0 4px;
  font-size: 14px;
  font-weight: 500;
  color: #FFFFFF;
}
.live-container .right-content .chat-list {
  flex-grow: 1;
  padding: 15px 20px;
  box-sizing: border-box;
  overflow-y: scroll;
}
.live-container .right-content .chat-list .group {
  margin-top: 20px;
}
.live-container .right-content .chat-list .group:first-child {
  margin-top: 0;
}
.live-container .right-content .chat-list .group.reversal .name-box {
  flex-direction: row-reverse;
}
.live-container .right-content .chat-list .group.reversal .name-box .avatar-box .prohibition-box {
  left: auto;
  right: 0;
}
.live-container .right-content .chat-list .group.reversal .name-box .avatar-box .prohibition-box::before {
  right: 9px;
  left: auto;
  content: "";
}
.live-container .right-content .chat-list .group.reversal .content-box {
  flex-direction: row-reverse;
  margin-left: 0;
  margin-right: 36px;
}
.live-container .right-content .chat-list .group .name-box {
  display: flex;
  align-items: center;
}
.live-container .right-content .chat-list .group .name-box .avatar-box {
  cursor: pointer;
  position: relative;
  width: 28px;
  height: 28px;
  border-radius: 50%;
}
.live-container .right-content .chat-list .group .name-box .avatar-box:hover .prohibition-box {
  display: block;
}
.live-container .right-content .chat-list .group .name-box .avatar-box .avatar {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
}
.live-container .right-content .chat-list .group .name-box .avatar-box .prohibition-box {
  padding: 4px 0;
  position: absolute;
  left: 0;
  top: calc(100% + 4px);
  width: 82px;
  background: #BDBDC3;
  border-radius: 2px;
  display: none;
  z-index: 2;
}
.live-container .right-content .chat-list .group .name-box .avatar-box .prohibition-box::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 10px;
  left: 0;
  top: -10px;
}
.live-container .right-content .chat-list .group .name-box .avatar-box .prohibition-box::before {
  position: absolute;
  left: 11px;
  top: -4px;
  content: "";
  width: 0;
  height: 0;
  border-color: #BDBDC3 transparent;
  border-width: 0 4px 4px 4px;
  border-style: solid;
}
.live-container .right-content .chat-list .group .name-box .avatar-box .prohibition-box .g {
  cursor: pointer;
  padding: 4px 0;
  text-align: center;
  font-size: 14px;
  font-weight: 400;
  color: #000000;
}
.live-container .right-content .chat-list .group .name-box .avatar-box .prohibition-box .g.disabled {
  opacity: 0.8;
  cursor: not-allowed;
}
.live-container .right-content .chat-list .group .name-box .avatar-box .prohibition-box .g:hover {
  background: rgba(0, 0, 0, 0.2);
}
.live-container .right-content .chat-list .group .name-box .name {
  margin: 0 8px;
  font-size: 14px;
  font-weight: 400;
  color: #FFFFFF;
}
.live-container .right-content .chat-list .group .name-box .role {
  padding: 0px 6px;
  border-radius: 35px 35px 35px 35px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  font-size: 12px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.5);
  line-height: normal;
}
.live-container .right-content .chat-list .group .content-box {
  display: flex;
  margin-left: 36px;
}
.live-container .right-content .chat-list .group .content-box .content {
  word-break: break-all;
  white-space: pre-wrap;
  padding: 3px 10px;
  font-size: 12px;
  font-weight: 400;
  color: #EFEFEF;
  background: #58587D;
  border-radius: 2px;
}
.live-container .right-content .send-box {
  position: relative;
  height: 118px;
  flex-shrink: 0;
  padding: 12px;
  box-sizing: border-box;
  background: #414156;
}
.live-container .right-content .send-box.multiple {
  height: 164px;
}
.live-container .right-content .send-box .expression {
  cursor: pointer;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.live-container .right-content .send-box .expression.active, .live-container .right-content .send-box .expression:hover {
  background: rgba(0, 0, 0, 0.9);
}
.live-container .right-content .send-box .expression .iconfont {
  font-size: 26px;
}
.live-container .right-content .send-box .send-input {
  display: flex;
  justify-content: space-between;
}
.live-container .right-content .send-box .send-input .input-box {
  width: 234px;
  background: #212127;
}
.live-container .right-content .send-box .send-input .input-box .input {
  width: 100%;
  height: 32px;
  box-sizing: border-box;
  border: none;
  outline: none;
  padding: 0 10px;
  background: none;
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  resize: none;
  line-height: 32px;
}
.live-container .right-content .send-box .send-input .input-box .input::placeholder {
  font-size: 14px;
  line-height: 32px;
}
.live-container .right-content .send-box .send-input .input-box .input.multiple {
  height: 78px;
  line-height: normal;
  padding: 8px 10px;
}
.live-container .right-content .send-box .send-input .btn {
  cursor: pointer;
  width: 72px;
  height: 32px;
  background: #3672F5;
  border-radius: 2px;
  text-align: center;
  line-height: 32px;
}
.live-container .right-content .send-box .send-input .len-text {
  margin-top: 10px;
  text-align: center;
  font-size: 14px;
  color: #9b9bd7;
}
.live-container .right-content .send-box .expression-box {
  position: absolute;
  background: #fff;
  left: 0;
  bottom: 100%;
  width: 100%;
  height: 200px;
  display: flex;
  flex-wrap: wrap;
  padding: 10px 0;
  box-sizing: border-box;
}
.live-container .right-content .send-box .expression-box .g {
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.live-container .right-content .send-box .expression-box .g:hover {
  background: rgba(0, 0, 0, 0.1);
}
.live-container .right-content .send-box .mute-mask-box {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 12;
  color: #fff;
}
.live-container .right-content .member-content {
  flex-grow: 1;
  padding-left: 15px;
  padding-right: 9px;
  overflow-y: scroll;
}
.live-container .right-content .member-content .input-box {
  height: 60px;
  display: flex;
  align-items: center;
}
.live-container .right-content .member-content .input-box .input {
  height: 30px;
  flex-grow: 1;
  border: none;
  outline: none;
  padding: 0 15px;
  background: #D9D9D9;
}
.live-container .right-content .member-content .input-box .btn {
  cursor: pointer;
  margin-left: 10px;
  flex-shrink: 0;
  width: 72px;
  height: 30px;
  background: #3672F5;
  border-radius: 2px;
  text-align: center;
  line-height: 30px;
  font-size: 14px;
  font-weight: 400;
  color: #FFFFFF;
}
.live-container .right-content .member-content .member-list .g {
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
}
.live-container .right-content .member-content .member-list .g:first-child {
  margin-top: 0;
}
.live-container .right-content .member-content .member-list .g .left {
  flex-grow: 1;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.live-container .right-content .member-content .member-list .g .left .checkbox {
  flex-shrink: 0;
}
.live-container .right-content .member-content .member-list .g .left .avatar {
  margin-left: 10px;
  flex-shrink: 0;
  width: 28px;
  height: 28px;
}
.live-container .right-content .member-content .member-list .g .left .name {
  margin: 0 8px;
  font-size: 14px;
  font-weight: 400;
  color: #FFFFFF;
}
.live-container .right-content .member-content .member-list .g .left .role {
  flex-shrink: 0;
  padding: 0px 6px;
  border-radius: 35px 35px 35px 35px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  font-size: 12px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.5);
  line-height: normal;
}
.live-container .right-content .member-content .member-list .g .right {
  display: flex;
  align-items: center;
}
.live-container .right-content .member-content .member-list .g .right .iconfont {
  cursor: pointer;
  font-size: 15px;
  margin-left: 12px;
}
.live-container .right-content .member-content .member-list .g .right .disabled {
  cursor: not-allowed;
}
.live-container .right-content .remove-box {
  flex-shrink: 0;
  height: 86px;
  background: #414156;
  display: flex;
  align-items: center;
  justify-content: center;
}
.live-container .right-content .remove-box .btn {
  margin: 0 10px;
  cursor: pointer;
  width: 72px;
  height: 30px;
  background: rgb(54, 114, 245);
  border-radius: 2px;
  line-height: 30px;
  text-align: center;
  font-size: 14px;
  font-weight: 400;
}
.live-container .right-content .remove-box .btn.disabled {
  opacity: 0.8 !important;
  cursor: not-allowed;
}
.live-container .right-content .catalog-content {
  flex-grow: 1;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.live-container .right-content .catalog-content .speciality-box {
  margin: 0 15px;
  position: relative;
  height: 34px;
  flex-shrink: 0;
}
.live-container .right-content .catalog-content .speciality-box .name-box {
  background: #58587D;
  cursor: pointer;
  padding: 0 10px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  font-weight: 400;
  color: #EFEFEF;
}
.live-container .right-content .catalog-content .speciality-box .name-box .arrow {
  font-size: 13px;
}
.live-container .right-content .catalog-content .speciality-box .list {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
}
.live-container .right-content .catalog-content .speciality-box .list .g {
  height: 34px;
  background: #4D4D6F;
}
.live-container .right-content .catalog-content .speciality-box .list .g.active, .live-container .right-content .catalog-content .speciality-box .list .g:hover {
  background: #58587D;
  color: #409eff;
}
.live-container .right-content .catalog-content .catalog-list {
  flex-grow: 1;
  overflow-y: scroll;
  padding: 10px 15px;
  padding-right: 9px;
  box-sizing: border-box;
}
.live-container .right-content .catalog-content .catalog-list .list .name-box {
  padding: 5px 0;
  display: flex;
  align-items: center;
}
.live-container .right-content .catalog-content .catalog-list .list .name-box.active, .live-container .right-content .catalog-content .catalog-list .list .name-box:hover {
  cursor: pointer;
  background: #58587D;
}
.live-container .right-content .catalog-content .catalog-list .list .name-box .iconfont {
  flex-shrink: 0;
  padding: 0 4px;
  cursor: pointer;
  font-size: 14px;
}
.live-container .right-content .catalog-content .catalog-list .list .name-box .title {
  flex-grow: 1;
  font-size: 14px;
  font-weight: 400;
  color: #EFEFEF;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.live-container .remove-mask {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1001;
  color: #fff;
}
.live-container .remove-mask .multiterminal-box {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.live-container .remove-mask .multiterminal-box .btn {
  cursor: pointer;
  margin-top: 30px;
  width: 120px;
  height: 32px;
  background: #3672F6;
  border-radius: 4px;
  text-align: center;
  line-height: 32px;
  font-size: 14px;
  font-weight: 400;
  color: #FFFFFF;
}

.jy-form {
  line-height: 40px;
}
.jy-form.search-form {
  background: #F5F5F5;
  padding: 20px 10px;
  padding-bottom: 0px;
  margin-top: 18px;
  margin-left: 28px;
  margin-right: 28px;
  margin-bottom: 20px;
}
.jy-form.search-form .operate-box {
  float: left;
  padding-left: 10px;
  padding-right: 10px;
}
.jy-form.edit-form {
  padding: 20px 20px;
}
.jy-form .el-select {
  width: 100%;
}
.jy-form .el-input__inner {
  height: 32px;
  line-height: 32px;
}
.jy-form .vue-treeselect__control {
  height: 32px;
  line-height: 32px;
}
.jy-form .vue-treeselect__multi-value-item {
  line-height: 26px;
}
.jy-form .el-cascader {
  width: 100%;
}
.jy-form .el-date-editor.el-input, .jy-form .el-date-editor.el-input__inner {
  width: 100%;
}
.jy-form .el-date-editor.el-input .el-range-separator, .jy-form .el-date-editor.el-input .el-range__icon, .jy-form .el-date-editor.el-input .el-range__close-icon, .jy-form .el-date-editor.el-input__inner .el-range-separator, .jy-form .el-date-editor.el-input__inner .el-range__icon, .jy-form .el-date-editor.el-input__inner .el-range__close-icon {
  height: 32px;
}
.jy-form .compact-label .el-form-item__label {
  line-height: 20px;
}

.btn-size.el-button--medium {
  min-width: 72px;
  padding: 8px 10px;
}

.analysis-container .mid-content {
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
}
.analysis-container .mid-content .mid-box {
  width: calc(50% - 14px);
}
.analysis-container .mid-content .char-box {
  height: 350px;
}
.analysis-container .analysis-top {
  padding: 20px 0;
  display: flex;
  align-items: center;
}
.analysis-container .analysis-top .box {
  margin-right: 20px;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 158px;
  box-shadow: 0px 0px 3px 0px rgba(67, 136, 242, 0.25);
}
.analysis-container .analysis-top .box:last-child {
  margin-right: 0;
}
.analysis-container .analysis-top .box.column {
  flex-direction: column;
}
.analysis-container .analysis-top .box .img {
  width: 85px;
  height: 85px;
}
.analysis-container .analysis-top .box .num-box {
  margin-left: 32px;
}
.analysis-container .analysis-top .box .num {
  font-size: 30px;
  color: #0065FF;
}
.analysis-container .analysis-top .box .name {
  font-size: 14px;
  font-weight: 500;
  color: #333333;
}
.analysis-container .analysis-top .box .desc {
  margin-top: 8px;
  font-size: 14px;
  font-weight: 400;
  color: #666666;
}
.analysis-container .analysis-title {
  background: rgba(213, 230, 252, 0.3);
  position: relative;
  font-size: 16px;
  font-weight: 500;
  color: #333333;
  padding-left: 26px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.analysis-container .analysis-title::before {
  content: "";
  position: absolute;
  left: 13px;
  top: 50%;
  margin-top: -8px;
  width: 7px;
  height: 16px;
  background: #4488F2;
  border-radius: 5px;
}
.analysis-container .analysis-time {
  margin-top: 16px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.analysis-container .analysis-time .label {
  font-size: 14px;
  font-weight: 400;
  color: #333333;
  margin-right: 26px;
}
.analysis-container .analysis-time .time {
  cursor: pointer;
  font-size: 14px;
  font-weight: 400;
  color: #999999;
  margin-right: 20px;
}
.analysis-container .analysis-time .time.active {
  color: #4488F2;
  font-weight: 500;
}
.analysis-container .analysis-time .range {
  width: 240px;
  height: 32px;
  line-height: 32px;
  margin-right: 32px;
}
.analysis-container .analysis-time .range .el-range-separator {
  box-sizing: content-box;
}
.analysis-container .analysis-name-screen {
  display: flex;
  align-items: center;
}
.analysis-container .analysis-name-screen .name {
  flex-shrink: 0;
  width: 110px;
}
.analysis-container .analysis-name-screen .grow {
  flex-grow: 1;
}
.analysis-container .table-avatar {
  display: flex;
  align-items: center;
}
.analysis-container .table-avatar .img {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  margin-right: 4px;
}

.cover-box {
  display: flex;
  align-items: center;
  font-size: 14px;
  font-weight: 500;
  color: #333333;
  overflow: hidden;
}
.cover-box .img {
  cursor: pointer;
  flex-shrink: 0;
  width: 92px;
  height: 62px;
  margin-right: 20px;
}
.cover-box .name {
  flex-grow: 1;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

/*# sourceMappingURL=zkjan4.0.css.map */
