body {
  margin: 0;
}

@font-face {
  font-display: swap;
  font-family: Mangueira Alt;
  font-style: normal;
  font-weight: 700;
  src: url(https://cdn.luckday.cn/static/font/mangueira-alt-bold.woff2) format("woff2");
}

.load {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ffffff;
  opacity: 1;
  filter: alpha(opacity=80);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.loading {
  font-weight: bold;
  letter-spacing: 2px;
  color: #9c14ba;
  animation: smoke-out 1s ease-in-out infinite alternate;
  text-shadow: 0 0 1px white;
  font-family: Mangueira Alt, sans-serif;
}

@keyframes smoke-out {
  100% {
    opacity: 0.08;
    filter: blur(5px);
    letter-spacing: 4px;
  }
}

.loading:before {
  content: "AUDIO";
}

.flex {
  display: flex;
  justify-content: center;
  align-items: center;
}

.padding {
  padding: 0 6px;
}

.margin {
  margin: 0 6px;
}

.page {
  width: 100%;
  height: calc(-54px + 100vh);
  /* overflow: auto; */
  overflow-y: auto;
}

.upload {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin: 60px 0;
}

.files {
  margin: 34px 20%;
  padding: 12px;
}

.el-button--default:focus,
.el-button--default:hover {
  color: #f4f6f8;
  border-color: #ededed;
  background-color: #f2f2f2;
}

.el-button--default {
  border: 1px solid #f5e0fa;
  background-color: #fff;
}

.el-button--primary:focus,
.el-button--primary:hover {
  color: #db40ff;
  border-color: #f5c6ff;
  background-color: #e8bbf4;
}

.el-button--primary {
  border: 1px solid #f5c6ff;
  background-color: #fbecff;
}

.el-button--danger > span {
  color: #fff;
}

.el-card__body>h4 {
  margin: 0px !important;
}

.el-card__body>p {
  margin: 6px 0;
  font-size: 13px;
}

.el-checkbox__inner:hover {
  border-color: #9c14ba;
}

.el-message-box__headerbtn:focus .el-message-box__close,
.el-message-box__headerbtn:hover .el-message-box__close {
  color: #9c14ba;
}

.el-checkbox__input.is-checked .el-checkbox__inner,
.el-checkbox__input.is-indeterminate .el-checkbox__inner {
  background-color: #9c14ba;
  border-color: #9c14ba;
}

.el-checkbox__input.is-checked+.el-checkbox__label {
  color: #9c14ba;
}

.el-checkbox__input.is-focus .el-checkbox__inner {
  border-color: #9c14ba;
}

.el-select .el-input__inner:focus {
  border-color: #9c14ba !important;
}

.el-select .el-input__inner {
  width: 30% !important;
  min-width: 100px;
  border: none !important;
}

.el-input__inner {
  min-width: 100px;
  border: none !important;
}

.el-select>.el-input {
  width: 130px !important;
}

.el-select>.el-input>.el-input__inner {
  color: #9c14ba;
}

.el-input__suffix {
  right: 0;
  position: relative;
  left: -50px;
}

.el-upload-dragger {
  min-width: 700px;
  border: 3px dashed #d360eb;
  border-radius: 20px;
}

.el-upload-dragger:hover {
  border-color: #9c14ba;
}

.el-upload:focus .el-upload-dragger {
  border-color: #d360eb;
}

.el-timeline-item__tail {
  border-left: 2px solid #e1b7ea;
}

.el-timeline-item__node {
  background-color: #e1b7ea;
}

.drop_target {
  margin-bottom: 30px;
  letter-spacing: 1.7px;
  border-width: 2px;
  height: 225px;
  display: table;
  width: 100%;
  height: 180px;
}

.drop_target .drop_target_text {
  display: table-cell;
  vertical-align: middle;
  height: 100%;
  margin: 0;
  color: #d360eb;
  font-size: 23.4px;
  font-style: italic;
}

.drop_target .img_files_container {
  position: relative;
  display: inline-block;
  vertical-align: middle;
}

.drop_target .img_file {
  display: inline-block;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  filter: drop-shadow(0 15px 15px rgba(174, 0, 183, 0.15));
  position: relative;
  transform: translateZ(0);
}

.drop_target .img_file:nth-child(2) {
  position: absolute;
  top: 0;
  left: 0;
}

.drop_target .img_file:nth-child(3) {
  position: absolute;
  top: 0;
  left: 0;
}

.drop_target .img_files_show_all .img_file:first-child {
  transform-origin: bottom left;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transform: scale(1) rotate(0) translate(-40px, 0) translateZ(0);
  z-index: 1;
}

.drop_target .img_files_show_all .img_file:nth-child(2) {
  transform-origin: bottom left;
  transform: scale(1) rotate(5deg) translate(0, 0) translateZ(0);
  z-index: 2;
}

.drop_target .img_files_show_all .img_file:nth-child(3) {
  transform-origin: bottom left;
  transform: scale(1) rotate(355deg) translate(-80px, 0) translateZ(0);
  z-index: 0;
}

.drop_target:hover .img_file:first-child {
  transform: scale(0.8) rotate(-20deg) translate(-30px, -10px) translateZ(0);
  transform-origin: bottom left;
}

.drop_target:hover .img_files_show_all .img_file:first-child {
  transform: scale(1.05) rotate(-10deg) translate(-40px, -20px) translateZ(0);
}

.drop_target:hover .img_file:nth-child(2) {
  filter: drop-shadow(0 20px 15px rgba(0, 57, 183, 0.15));
  transform: scale(1.1);
}

.drop_target:hover .img_files_show_all .img_file:nth-child(2) {
  transform: scale(1.05) rotate(10deg) translate(5px, 0) translateZ(0);
}

.drop_target:hover .img_files_show_all .img_file:nth-child(3) {
  transform: scale(1.05) rotate(345deg) translate(-80px, 0) translateZ(0);
}

.drop_target .drop_target_text span {
  display: inline-block;
  margin-left: 40px;
  transform: translate(20px, 7px);
}

.drop_target img {
  vertical-align: middle;
}

.el-backtop,
.el-calendar-table td.is-today {
  color: #d940ff;
}

.el-backtop:hover {
  background-color: #faf2fc;
}

.file_card {
  width: 81px;
}

.header {
  width: 100%;
  height: 56px;

  border-bottom: 1px solid #e1b7ea;
}

.logo {
  padding: 0 18%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-left {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  font-weight: bold;
  font-size: 18px;
  color: #8e0ca9;
}

span {
  color: #8e0ca9;
}

.logo-left>span {
  margin-left: 10px;
}

.title {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  color: #8e0ca9;
  margin: 30px 0;
}

.file-list {
  padding: 0 18%;
  justify-content: space-between;
  max-width: 990px;
}

.video-file>div>div {
  padding: 0 6px;
}

.file-name {
  margin-left: 14px;
  display: flex;
  flex-direction: column;
}

.file-name>span:first-child {
  font-size: 20px;
  font-weight: 600;
}

.svg-hover {
  padding: 2px;
  border-radius: 4px;
}

.svg-hover:hover {
  background-color: #f4dbf9;
}

.body {
  margin-bottom: 30px;
  overflow: hidden;
}

.el-icon-loading:before {
  color: #8e0ca9;
}

.footer a {
  color: #8e0ca9;
}

.scrollbar::-webkit-scrollbar {
  width: 8px;
  height: 5px;
  border-radius: 8px;
}

.scrollbar::-webkit-scrollbar-thumb:horizontal {
  width: 8px;
  background-color: #8e0ca9;
  border-radius: 8px;
}

.scrollbar::-webkit-scrollbar-thumb:vertical {
  height: 8px;
  background-color: #8e0ca9;
  border-radius: 8px;
}

.el-drawer__body::-webkit-scrollbar {
  width: 8px;
  height: 5px;
  border-radius: 8px;
}

.el-drawer__body::-webkit-scrollbar-thumb:horizontal {
  width: 8px;
  background-color: #8e0ca9;
  border-radius: 8px;
}

.el-drawer__body::-webkit-scrollbar-thumb:vertical {
  height: 8px;
  background-color: #8e0ca9;
  border-radius: 8px;
}

.video-app {
  flex-direction: column;
}

.transform-app {
  transform: translateX(200px);
  transition: transform 0.3s;
}

.el-drawer__body {
  padding: 0 20px;
}

.video-text {
  text-indent: 2ch;
}

.el-collapse-item__header {
  font-weight: bold;
}

@media screen and (max-width: 1000px) {
  .file-list {
      padding: 0;
      flex-direction: column; 
    }
    .file-list>div {
      width: 100%;
    }
}

@media screen and (max-width: 768px) {
  .file-list {
    padding: 0;
    flex-direction: column;
    margin-left: 20px;
  }

  .file-list > div {
    width: 100%;
    justify-content: start;
  }
}

.el-drawer__body .el-input {
  position: absolute;
  top: 14px;
  left: 60%;
  width: 190px;
}
