.user {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 60px;
  left: 0;
  display: flex;
  flex-direction: row;
  align-items: center;
}

.user-nav-box {
  width: 190px;
  height: 100%;
}

.user-content-box {
  width: calc(100% - 230px);
  height: 100%;
  margin: 0 20px;
  margin-top: 10px;
  position: relative;
}

#user-nav-menu {
  height: calc(100% - 100px);
}

.user-nav-box .layui-menu li {
  padding: 10px 10px 10px 15px;
}

.user-nav-box .layui-menu .layui-menu-item-down {
  padding-bottom: 0;
  padding-top: 0;
}

.table-box table {
  width: 100% !important;
}

/* fieldset {
  display: block;
  height: calc(100% - 100px);
} */

#content-box {
  height: calc(100% - 160px);
  overflow: auto;
  padding: 0;
  padding-right: 10px;
}

.layui-menu-item-checked .layui-menu-body-title {
  color: var(--color-base);
}

.user-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

#content-box .layui-table-body {
  background-color: #fff;
}

#cat_ids .layui-input-inline {
  width: 127px;
  margin-right: 3px;
}

.user-avatar-box {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.user-avatar-data {
  margin-left: 10px;
  color: #115dfc;
}

.user-cover {
  width: 63px;
  height: 42px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.model-operation {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 170px;
  flex-direction: row;
}

.model-operation p {
  text-align: center;
  line-height: 25px;
  font-size: 14px;
  cursor: pointer;
}

#user-nav-menu .os-scrollbar-vertical {
  left: 0;
}

#download_task_box {
  --p: 0%;
  position: fixed;
  right: 7px;
  bottom: 200px;
  width: 40px;
  height: 125px;
  border: 1px solid var(--color-base);
  border-radius: 5px;
}

#download_task_box::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  border-radius: 5px;
  background: repeating-linear-gradient(
      45deg,
      var(--color-base) 0 30px,
      #006dfe 0 40px
    )
    right/200% 100%;
  height: var(--p);
}

#download_task_box .download_task {
  width: 100%;
  height: 100%;
  position: relative;
}

#download_task_box .download_task_text {
  width: 100%;
  height: 100%;
  display: block;
  writing-mode: vertical-lr;
  text-align: center;
  line-height: 39px;
  letter-spacing: 3px;
  color: #323232;
  font-size: 16px;
  font-weight: 400;
  padding-top: 2px;
}

#download_task_box .download_task_count {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  position: absolute;
  left: -10px;
  top: -10px;
  background: #e70000;
  text-align: center;
  color: #fff;
  font-size: 12px;
  line-height: 19px;
}

.audio_loader {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  width: 100%;
  height: 100%;
  padding-top: 15px;
}

.audio_slider {
  overflow: hidden;
  background-color: white;
  margin: 0px 4px;
  height: 50px;
  width: 8px;
  border-radius: 15px;
  box-shadow: 15px 15px 20px rgba(0, 0, 0, 0.1), -15px -15px 30px #fff,
    inset -5px -5px 10px rgba(0, 0, 255, 0.1),
    inset 5px 5px 10px rgba(0, 0, 0, 0.1);
  position: relative;
  transform: translateY(-7px);
}

.audio_slider::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  border-radius: 100%;
  box-shadow: inset 0px 0px 0px rgba(0, 0, 0, 0.3), 0px 420px 0 400px #ff6b6b,
    inset 0px 0px 0px rgba(0, 0, 0, 0.1);
  animation: animate-2 1s ease-in-out infinite;
  animation-delay: calc(-0.2s * var(--i));
}

@keyframes animate-2 {
  0% {
    transform: translateY(60px);
    filter: hue-rotate(0deg);
  }

  50% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(60px);
    filter: hue-rotate(360deg);
  }
}

.media-box {
  display: flex;
  flex-direction: row;
}

.media-nav {
  width: 130px;
  background: #fff;
  padding: 15px 10px;
}

.media-list {
  width: calc(100% - 150px);
}

/*.add-group {*/
/*    width: 90px;*/
/*    margin: auto;*/
/*    display: block;*/
/*    background: var(--color-base);*/
/*    color: #fff;*/
/*    line-height: 30px;*/
/*    border: 0;*/
/*    font-size: 12px;*/
/*}*/

.media-group {
  display: flex;
  justify-content: space-between;
}

.media-group p:nth-child(1) {
  font-size: 15px;
  font-weight: inherit;
}

.media-group p:nth-child(2) i {
  color: var(--color-base);
  font-weight: normal;
  font-size: 19px;
}

#media-group-list ul {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
}

#media-group-list li {
  list-style: none;
  width: 97px;
  line-height: 32px;
  font-size: 12px;
  background-image: url(/static/img/wjj.svg);
  background-size: 16px;
  background-repeat: no-repeat;
  background-position-x: 4px;
  background-position-y: 9px;
  padding-left: 28px;
  display: flex;
  justify-content: space-between;
  padding-right: 5px;
  border-radius: 5px;
  margin-bottom: 5px;
}

#media-group-list li span:nth-child(1) {
  color: #000;
  font-weight: inherit;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  word-spacing: 40px;
  letter-spacing: 1px;
}

#media-group-list li span:nth-child(2) {
  color: #9b9b9b;
  display: flex;
  flex-direction: row;
  align-items: center;
}

#media-group-list li:hover {
  background-color: #f5f5f5;
}

#media-group-list li:hover .media-group-ddd {
  display: block;
}

#media-group-list .selected {
  background-color: var(--color-base) !important;
  background-image: url(/static/img/wjj-s.svg);
}

#media-group-list .selected span {
  color: #fff !important;
}

.add-group-contextmenu {
  border-radius: 10px;
  background: #ffffff;
  border: 2px solid #ffffff;
  overflow: hidden;
  padding: 5px 0px;
}

.add-group-contextmenu:hover {
  border-color: var(--color-base);
  box-shadow: 0 4px 18px 0 rgba(0, 0, 0, 0.25);
}

.add-group-contextmenu-title {
  background-repeat: no-repeat;
  background-size: 15px;
  background-position: 0px 6px;
  padding-left: 26px;
  font-size: 15px;
  color: #515151;
}

.media-group-ddd {
  background-image: url(/static/img/ddd.svg);
  background-size: 100% 100%;
  width: 13px;
  height: 100%;
  background-repeat: no-repeat;
  display: none;
}

.checkbox-wrapper input[type="checkbox"] {
  display: none;
  visibility: hidden;
}

.checkbox-wrapper .cbx {
  margin: auto;
  -webkit-user-select: none;
  user-select: none;
  cursor: pointer;
}

.checkbox-wrapper .cbx span {
  display: inline-block;
  vertical-align: middle;
  transform: translate3d(0, 0, 0);
}

.checkbox-wrapper .cbx span:first-child {
  position: relative;
  width: 18px;
  height: 18px;
  border-radius: 3px;
  transform: scale(1);
  vertical-align: middle;
  border: 1px solid #9098a9;
  transition: all 0.2s ease;
}

.checkbox-wrapper .cbx span:first-child svg {
  position: absolute;
  top: 3px;
  left: 2px;
  fill: none;
  stroke: #ffffff;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 16px;
  stroke-dashoffset: 16px;
  transition: all 0.3s ease;
  transition-delay: 0.1s;
  transform: translate3d(0, 0, 0);
}

.checkbox-wrapper .cbx span:first-child:before {
  content: "";
  width: 100%;
  height: 100%;
  background: var(--color-base);
  display: block;
  transform: scale(0);
  opacity: 1;
  border-radius: 50%;
}

/*.checkbox-wrapper .cbx span:last-child {*/
/*    padding-left: 8px;*/
/*}*/

.checkbox-wrapper .cbx:hover span:first-child {
  border-color: var(--color-base);
}

.checkbox-wrapper .inp-cbx:checked + .cbx span:first-child {
  background: var(--color-base);
  border-color: var(--color-base);
  animation: wave-46 0.4s ease;
}

.checkbox-wrapper .inp-cbx:checked + .cbx span:first-child svg {
  stroke-dashoffset: 0;
}

.checkbox-wrapper .inp-cbx:checked + .cbx span:first-child:before {
  transform: scale(3.5);
  opacity: 0;
  transition: all 0.6s ease;
}

@keyframes wave-46 {
  50% {
    transform: scale(0.9);
  }
}

.add-zlk-url {
  width: 450px;
  padding-top: 20px;
}

.add-zlk-url .layui-form-label {
  width: 50px;
}

.add-zlk-url .layui-input-block {
  margin-left: 80px;
}

.add-zlk-url-input .layui-input-prefix {
  width: 75px;
  display: flex;
  align-items: center;
  color: rgba(0, 0, 0, 0.85);
  border-right: 1px solid #eee;
}

.add-zlk-url-input input {
  margin-left: 75px;
  padding-right: 10px;
  width: calc(100% - 75px);
}

.u-pwd .layui-input-wrap {
  width: 100%;
}

.sfz-rmm {
  width: 180px;
  height: 130px;
  background-image: url(/static/img/bm.png);
  background-repeat: no-repeat;
  background-position: center;
  border: 1px dashed #ababab;
}

.sfz-ghm {
  width: 180px;
  height: 130px;
  background-image: url(/static/img/zm.png);
  background-repeat: no-repeat;
  background-position: center;
  border: 1px dashed #ababab;
  margin-left: 10px;
}

.sfz-yyzz {
  width: 180px;
  height: 130px;
  background-image: url(/static/img/yyzz.png);
  background-repeat: no-repeat;
  background-position: center;
  border: 1px dashed #ababab;
}

.sfz-box p {
  text-align: center;
  margin-top: 5px;
  color: #7d7d7d;
}

.p-botton {
  margin-left: 12px;
  color: var(--color-base);
  font-size: 12px;
}

.layui-table-pagebar {
  width: 100%;
}

.bottom-operation-box {
  display: flex;
  justify-content: space-between;
}

.multiple-box {
  display: flex;
  justify-content: space-between;
}

.released-box {
  width: 450px;
}

.released-box .layui-form-label {
  padding: 10px 10px;
  width: 4em;
}

.released-box .layui-input-block {
  margin-left: 76px;
  display: flex;
}

.released-box .released-box-frem {
  width: 440px;
  margin-top: 10px;
}

.released-box textarea {
  height: auto;
  padding: 10px;
}

.released-box .released-box-frem-btn {
  display: flex;
}

.released-box .released-box-frem-btn .layui-form-item {
  margin-right: 5px;
}

.released-box .layui-form-radio {
  width: 90px;
  padding-right: 0;
}

.released-box #released-date {
  display: none;
  width: 155px;
}

.table-box {
  height: 100%;
}

.i-slash {
  font-style: normal;
  color: #353535;
  display: inline-block;
  margin: 0 5px;
}

.private_psd {
  margin-left: 10px !important;
  align-items: center;
}
.private_psd .private_psd_prompt {
  color: red;
  font-size: 12px;
  margin-left: 5px;
}
.interactive-a-n {
  display: flex;
  align-items: center;
}
.interactive-a-n img {
  width: 35px;
  height: 35px;
  object-fit: cover;
  border-radius: 50%;
  overflow: hidden;
}
.interactive-a-n span {
  margin-left: 10px;
  color: #5f5f5f;
}

.interactive-button {
  background: none;
  border: none;
  color: var(--color-base);
}
.get-user-cover-container {
  width: 100%;
  height: 100%;
  /* max-width: 600px; */
  /* max-height: 500px; */
}
/* 小于760时候 */
@media screen and (max-width: 760px) {
  .user-nav-box {
    display: none;
  }
  .user-content-box {
    width: 100%;
    margin: 0;
  }
}
