:root {
  font-family:Open Sans,Arial,Hiragino Sans GB,Microsoft YaHei,微软雅黑,STHeiti,WenQuanYi Micro Hei,SimSun,sans-serif;
  line-height: 1.5;
  font-weight: 400;

  color-scheme: light dark;
  color: rgba(255, 255, 255, 0.87);
  background-color: #242424;

  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  font-weight: 500;
  color: #646cff;
  text-decoration: inherit;
}
a:hover {
  color: #535bf2;
}

body {
  margin: 0;
  display: flex;
  place-items: center;
  min-width: 320px;
  min-height: 100vh;
  background-color: #212121;
  overflow: hidden;
}

/* 全局去掉焦点边框 */
*:focus {
  outline: none;
}

*:focus-visible {
  outline: none;
}

h1 {
  font-size: 3.2em;
  line-height: 1.1;
}

button {
  border-radius: 8px;
  border: 1px solid transparent;
  padding: 0.6em 1.2em;
  font-size: 1em;
  font-weight: 500;
  font-family: inherit;
  background-color: #1a1a1a;
  cursor: pointer;
  transition: border-color 0.25s;
}
button:hover {
  border-color: #646cff;
}
button:focus,
button:focus-visible {
  outline: none;
}

.card {
  padding: 2em;
}

#app {
  width: 100vw;
  height: 100vh;
}

@media (prefers-color-scheme: light) {
  :root {
    color: #213547;
    background-color: #ffffff;
  }
  a:hover {
    color: #747bff;
  }
  button {
    background-color: #f9f9f9;
  }
}

.progress-bar-track[data-v-c5d5b3cc] {
  width: 100%;
  height: 4px;
  background-color: #D9D9D9;
  border-radius: 6px;
  overflow: hidden;
}
.progress-bar-fill[data-v-c5d5b3cc] {
  height: 100%;
  background: linear-gradient(90deg, #874AFF 0%, #4C4CEF 100%);
  border-radius: 6px;
  transition: width 0.2s linear;
}

.publishing-panel-mask[data-v-e55e1a84] {
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1010;
}
.publishing-panel[data-v-e55e1a84] {
    width: 416px;
    min-height: 150px;
    padding: 30px 38px;
    box-sizing: border-box;
    background-color: #212121;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    color: #BCBCBC;
    box-shadow: 0px 3px 5px 0px #0000004D;
}
.status-text[data-v-e55e1a84] {
    font-size: 14px;
    line-height: 100%;
    color: #BCBCBC;
    text-align: center;
}
.status-text.error[data-v-e55e1a84] {
    color: #FF6B6B;
}
.action-buttons[data-v-e55e1a84] {
    display: flex;
    gap: 12px;
}
.cancel-btn[data-v-e55e1a84],
.done-btn[data-v-e55e1a84] {
    width: 68px;
    height: 32px;
    background-color: #2E2E2E;
    border: none;
    border-radius: 6px;
    color: #BCBCBC;
    cursor: pointer;
    transition: background-color 0.2s;
    font-size: 14px;
    line-height: 14px;
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: center;
}
.cancel-btn[data-v-e55e1a84]:hover,
.done-btn[data-v-e55e1a84]:hover {
    background-color: #4a4a4a;
}
.done-btn[data-v-e55e1a84] {
    background-color: #4C4CEF;
    color: white;
}
.done-btn[data-v-e55e1a84]:hover {
    background-color: #3A3AD6;
}
.done-btn.error[data-v-e55e1a84] {
    background-color: #FF6B6B;
}
.done-btn.error[data-v-e55e1a84]:hover {
    background-color: #FF5252;
}

.text-input-container[data-v-9acb2903] {
  display: inline-block;
  width: auto;
}
.text-input[data-v-9acb2903] {
  background-color: #2E2E2E;
  border: none;
  border-radius: 6px;
  padding: 0 10px;
  font-family: 'Source Han Sans CN', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1em;
  color: #FFFFFF;
  outline: none;
  box-sizing: border-box;
  transition: all 0.2s ease;
  min-width: 0;
  box-sizing: border-box;
}
.text-input[data-v-9acb2903]::placeholder {
  color: #BCBCBC;
  opacity: 0.5;
}
.text-input[data-v-9acb2903]:focus {
  background-color: #3A3A3A;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.1);
}
.text-input[data-v-9acb2903]:disabled {
  background-color: #1A1A1A;
  color: #666666;
  cursor: not-allowed;
}
.text-input[data-v-9acb2903]:disabled::placeholder {
  color: #666666;
  opacity: 0.3;
}

/* 响应式设计 */
@media (max-width: 768px) {
.text-input[data-v-9acb2903] {
    min-width: 200px;
}
}

.modal-overlay[data-v-ffad16fe] {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}
.modal-container[data-v-ffad16fe] {
  width: 500px;
  background-color: #181C1F;
  border-radius: 8px;
  overflow: hidden;
}
.modal-header[data-v-ffad16fe] {
  display: flex;
  justify-content: flex-end;
  padding: 20px 20px 0 20px;
}
.close-button {
&[data-v-ffad16fe] {
  border-radius: 6px;
  width: 24px;
  height: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
  cursor: pointer;
  }
&[data-v-ffad16fe]:hover {
    background-color: rgba(240, 248, 254, 0.1);
}
}
.modal-content[data-v-ffad16fe] {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 20px 20px 20px;
  position: relative;
}
.success-section[data-v-ffad16fe] {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.success-icon[data-v-ffad16fe] {
  width: 42px;
  height: 42px;
}
.success-title[data-v-ffad16fe] {
  font-family: "Source Han Sans CN VF", sans-serif;
  font-weight: 400;
  font-size: 18px;
  color: #F0F8FE;
  text-align: center;
}
.share-section[data-v-ffad16fe] {
  background-color: #13171A;
  border: 1px solid #232A30;
  border-radius: 6px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.share-description[data-v-ffad16fe] {
  font-family: "Source Han Sans CN VF", sans-serif;
  font-weight: 400;
  font-size: 13px;
  color: #F0F8FE;
  margin: 0;
}
.share-link-container[data-v-ffad16fe] {
  display: flex;
  align-items: center;
  gap: 15px;
}
.share-link-input[data-v-ffad16fe] {
  flex-grow: 1;
  background-color: #1C2226;
  border: 1px solid #232A30;
  border-radius: 6px;
  padding: 10px;
  height: 32px;
  display: flex;
  align-items: center;
  color: rgba(240, 248, 254, 0.5);
  font-family: "Source Han Sans CN VF", sans-serif;
  font-weight: 400;
  font-size: 13px;
  box-sizing: border-box;
  max-width: 350px;
  text-overflow: ellipsis;
}
.share-link-input span[data-v-ffad16fe] {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.copy-button[data-v-ffad16fe] {
  background: #4C4CEF;
  border-radius: 6px;
  padding: 10px 14px;
  height: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
  cursor: pointer;
  color: #F0F8FE;
  font-family: "Source Han Sans CN VF", sans-serif;
  font-size: 12px;
}

.modal-overlay[data-v-6fce5c22] {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}
.modal-container[data-v-6fce5c22] {
  width: 750px;
  height: 500px;
  background-color: #181C1F;
  border-radius: 8px;
  border: 1px solid #232A30;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.modal-header[data-v-6fce5c22] {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.modal-title[data-v-6fce5c22] {
  font-family: 'Source Han Sans CN VF', sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: #F0F8FE;
}
.right-header[data-v-6fce5c22] {
  display: flex;
  flex-direction: row;
  gap: 12px;
  align-items: center;
  justify-content: center;
}
.close-button[data-v-6fce5c22] {
  width: 24px;
  height: 24px;
  background-color: #212528;
  border-radius: 6px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.modal-content[data-v-6fce5c22] {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 1;
  overflow: hidden;
}
.search-bar[data-v-6fce5c22] {
  position: relative;
  width: 336px;
  align-self: flex-end;
}
.search-bar input[data-v-6fce5c22] {
  width: 100%;
  height: 32px;
  background-color: #1C2226;
  border: 1px solid #232A30;
  border-radius: 66px;
  padding: 0 40px 0 11px;
  color: rgba(240, 248, 254, 0.3);
  font-family: 'Source Han Sans SC', sans-serif;
  font-size: 13px;
  outline: none;
  box-sizing: border-box;
}
.search-icon[data-v-6fce5c22] {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
}
.works-list-container[data-v-6fce5c22] {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  overflow-y: auto;
}
.works-item[data-v-6fce5c22] {
  display: flex;
  flex-direction: column;
  gap: 10px;
  cursor: pointer;
  transition: background-color 0.2s;
  padding: 8px;
  border-radius: 6px;
}
.works-item[data-v-6fce5c22]:hover {
  background-color: #212528;
}
.item-thumbnail[data-v-6fce5c22] {
  width: 212px;
  height: 118px;
  border-radius: 6px;
  overflow: hidden;
}
.placeholder-thumbnail[data-v-6fce5c22] {
  width: 100%;
  height: 100%;
  background-color: #232A30;
  /* Placeholder color */
}
.item-thumbnail img[data-v-6fce5c22] {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.item-info[data-v-6fce5c22] {
  display: flex;
  width: 100%;
  flex-direction: column;
  gap: 10px;
}
.item-title[data-v-6fce5c22] {
  font-family: 'Source Han Sans CN VF', sans-serif;
  font-weight: 400;
  font-size: 13px;
  color: #F0F8FE;
}
.item-date[data-v-6fce5c22] {
  font-family: 'Source Han Sans CN VF', sans-serif;
  font-weight: 400;
  font-size: 13px;
  color: rgba(240, 248, 254, 0.3);
}

.publish-panel-mask[data-v-ed9d0991] {
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1001;
}
.publish-panel[data-v-ed9d0991] {
  width: 416px;
  height: 478px;
  background-color: #212121;
  border-radius: 10px;
  box-shadow: 0px 3px 5px 0px #0000004D;
  z-index: 1001;
  color: #BCBCBC;
  padding: 20px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 30px;
  background: #212121;
}
span[data-v-ed9d0991] {
  user-select: none;
}
.publish-panel-header[data-v-ed9d0991] {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.title[data-v-ed9d0991] {
  font-size: 14px;
  font-weight: 400;
  color: #BCBCBC;
}
.vip-icon[data-v-ed9d0991] {
  position: absolute;
  top: -6px;
  right: -6px;
}
.close-btn[data-v-ed9d0991] {
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 6px;
}
.close-btn[data-v-ed9d0991]:hover {
  background-color: #3E3E3E;
}
.publish-panel-main[data-v-ed9d0991] {
  display: flex;
  flex-direction: column;
  gap: 16px;
  height: 0;
  flex: 1;
  width: 100%;
}
.setting-item[data-v-ed9d0991] {
  display: flex;
  align-items: center;
  flex-direction: row;
  gap: 10px;
}
.setting-item.version-item[data-v-ed9d0991] {
  align-items: flex-start;
}
.setting-item.version-item .label[data-v-ed9d0991] {
  line-height: 36px;
}
.label[data-v-ed9d0991] {
  width: 46px;
  font-size: 14px;
  color: #BCBCBC;
  text-align: left;
}
.options[data-v-ed9d0991] {
  display: flex;
  gap: 12px;
}
.system-options[data-v-ed9d0991] {
  width: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.option-btn[data-v-ed9d0991] {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 36px;
  padding: 0 16px;
  background-color: #2E2E2E;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  gap: 8px;
  box-sizing: border-box;
}
.option-btn[data-v-ed9d0991]:hover {
  border-color: #777;
}
.option-btn.active[data-v-ed9d0991] {
  border: 2px solid #4C4CEF;
  color: white;
}
.option-btn.disabled[data-v-ed9d0991] {
  cursor: not-allowed;
  color: #777;
  background-color: #353535;
  border-color: #444;
}
.check-icon[data-v-ed9d0991] {
  position: absolute;
  bottom: 0;
  right: 0;
}
.coming-soon-badge[data-v-ed9d0991] {
  position: absolute;
  top: -10px;
  right: -10px;
}
.location-control[data-v-ed9d0991] {
  flex-grow: 1;
  display: flex;
  gap: 12px;
}
.location-input[data-v-ed9d0991] {
  flex-grow: 1;
  height: 36px;
  padding: 0 12px;
  background-color: #2E2E2E;
  border-radius: 6px;
  color: #E0E0E0;
  font-size: 14px;
  outline: none;
  border: none;
  box-sizing: border-box;
}
.name-input[data-v-ed9d0991] {
  flex-grow: 1;
  height: 36px;
  padding: 0 12px;
  background-color: #2E2E2E;
  border-radius: 6px;
  color: #E0E0E0;
  font-size: 14px;
  outline: none;
  border: none;
  box-sizing: border-box;
}
.location-input[data-v-ed9d0991]:focus {
  border-color: #4C4CEF;
}
.browse-btn[data-v-ed9d0991] {
  width: 60px;
  height: 36px;
  background-color: #2E2E2E;
  border-radius: 6px;
  color: #BCBCBC;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 14px;
  font-weight: 400;
  transition: background-color 0.2s;
}
.browse-btn[data-v-ed9d0991]:hover {
  background-color: #4a4a4a;
}
.caption-container[data-v-ed9d0991] {
  width: 100%;
  background-color: #EFB14C1A;
  display: flex;
  align-items: center;
  padding: 0 10px;
  box-sizing: border-box;
  font-size: 12px;
  color: #988360;
  border-radius: 6px;
  height: 26px;
}
.publish-action-btn[data-v-ed9d0991] {
  width: 100%;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #4C4CEF;
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 400;
  color: white;
  border: none;
  transition: background-color 0.2s;
}
.publish-action-btn[data-v-ed9d0991]:hover {
  background-color: #4C4CEF;
}
.select-works-btn {
&[data-v-ed9d0991] {
  width: 60px;
  height: 32px;
  opacity: 1;
  border-radius: 6px;
  background: rgba(46, 46, 46, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #BCBCBC;
  user-select: none;
  cursor: pointer;
  }
&[data-v-ed9d0991]:hover {
    background-color: #3E3E3E;
}
}

.publish-complete-panel-mask[data-v-c5191a64] {
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1010;
}
.publish-complete-panel[data-v-c5191a64] {
    width: 400px;
    height: 200px;
    padding: 20px;
    box-sizing: border-box;
    background-color: #212121;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    color: #BCBCBC;
    box-shadow: 0px 3px 5px 0px #0000004D;
}
.publish-complete-panel .header[data-v-c5191a64] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}
.publish-complete-panel .header .title[data-v-c5191a64] {
    font-size: 14px;
    font-weight: 400;
    color: #BCBCBC;
}
.publish-complete-panel .header .close-btn[data-v-c5191a64] {
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 6px;
}
.publish-complete-panel .header .close-btn[data-v-c5191a64]:hover {
    background-color: #3E3E3E;
}
.publish-complete-panel .main[data-v-c5191a64] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
}
.publish-complete-panel .main .publish-success-tips[data-v-c5191a64] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.publish-complete-panel .main .publish-success-tips .title[data-v-c5191a64] {
    font-size: 14px;
    font-weight: 400;
    color: #FFF;
}
.publish-complete-panel .main .action-buttons[data-v-c5191a64] {
    display: flex;
    flex-direction: row;
    gap: 10px;
}
.publish-complete-panel .main .action-buttons .open-exe-btn[data-v-c5191a64] {
    width: 120px;
    height: 32px;
    color: #BCBCBC;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    background-color: #21282D;
    user-select: none;
    cursor: pointer;
}
.publish-complete-panel .main .action-buttons .open-exe-btn[data-v-c5191a64]:hover {
    background-color: #3D3D3D;
}
.publish-complete-panel .main .action-buttons .open-directory-btn[data-v-c5191a64] {
    width: 120px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFF;
    border-radius: 6px;
    background-color: #4C4CEF;
    user-select: none;
    cursor: pointer;
}
.publish-complete-panel .main .action-buttons .open-directory-btn[data-v-c5191a64]:hover {
    background-color: #6060FF;
}


.upgrade-plan-dialog[data-v-82172171] {
  border: none;
  padding: 0;
  border-radius: 8px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2999;
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.upgrade-plan-dialog-content[data-v-82172171] {
  position: relative;
  border-radius: 8px;
  background-color: #fff;
  box-sizing: border-box;
  box-shadow: 0 3px 5px 0 rgba(0, 0, 0, 0.3);
  display: flex;
}
.close-btn {
&[data-v-82172171] {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 26px;
  height: 26px;
  display: flex;
  border-radius: 6px;
  }
&[data-v-82172171]:hover {
    background-color: #f0f0f0;
}
}
.iframe[data-v-82172171] {
  border: none;
  border-radius: 6px;
  padding: 0;
}

.login-dialog[data-v-e6630613] {
  border: none;
  padding: 0;
  border-radius: 6px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2999;
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.login-iframe[data-v-e6630613] {
  padding: 0;
  width: 100vw;
  height: 101vh;
}

.user-info-dialog[data-v-318d174f] {
  border: none;
  padding: 0;
  border-radius: 6px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2999;
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.user-info-content[data-v-318d174f] {
  position: relative;
  border-radius: 6px;
  background-color: #fff;
  box-sizing: border-box;
  border: 1px solid rgba(46, 46, 46, 0.1);
  box-shadow: 0 3px 5px 0 rgba(0, 0, 0, 0.3);
  display: flex;
}
.close-btn {
&[data-v-318d174f] {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 26px;
  height: 26px;
  display: flex;
  border-radius: 6px;
  }
&[data-v-318d174f]:hover {
    background-color: #f0f0f0;
}
}
.iframe[data-v-318d174f] {
  border: none;
  border-radius: 6px;
  padding: 0;
}

.user-info-dialog[data-v-4199c5b5] {
  width: 230px;
  height: 276px;
  display: flex;
  flex-direction: column;
  border-radius: 6px;
  background-color: #212121;
  border: 1px solid rgba(46, 46, 46, 1);
  box-shadow: 0 3px 5px 0 rgba(0, 0, 0, 0.2);
}
.header {
&[data-v-4199c5b5] {
  display: flex;
  width: 100%;
  height: 90px;
  align-items: center;
  box-sizing: border-box;
  padding-left: 22px;
  border-radius: 6px 6px 0 0;
  gap:5px;
  background: url("/src/assets/user/info-bg.png");
  }
img[data-v-4199c5b5] {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 1)
}
span[data-v-4199c5b5] {
    display: inline-block;
    overflow: hidden; /* 超出部分隐藏 */
    white-space: nowrap; /* 确保文本在一行内显示，不换行 */
    text-overflow: ellipsis; /* 超出的部分显示为省略号 */
    font-size: 16px;
    width: 120px; /* 设置一个宽度限制 */
}
}
.main[data-v-4199c5b5] {
  width: 100%;
  height:0;
  flex:1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.info-btn {
&[data-v-4199c5b5] {
  padding-left: 11px;
  box-sizing: border-box;
  width: 209px;
  height: 36px;
  cursor: pointer;
  display:flex;
  gap: 10px;
  align-items: center;
  border-radius: 6px;
  }
&[data-v-4199c5b5]:hover {
    background-color: #2E2E2E;
}
}

.modal-overlay[data-v-c78e1211] {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}
.modal-container[data-v-c78e1211] {
  width: 500px;
  background-color: #181C1F;
  border-radius: 8px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.modal-header[data-v-c78e1211] {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.modal-title[data-v-c78e1211] {
  font-family: "Source Han Sans CN VF", sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: #F0F8FE;
}
.close-button {
&[data-v-c78e1211] {
  border-radius: 6px;
  width: 24px;
  height: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
  cursor: pointer;
  }
&[data-v-c78e1211]:hover {
    background-color: #232A30;
}
}
.modal-content[data-v-c78e1211] {
  background-color: #13171A;
  border: 1px solid #232A30;
  border-radius: 6px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.share-info[data-v-c78e1211] {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.share-content-wrapper[data-v-c78e1211] {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.qrcode-container[data-v-c78e1211] {
  width: 200px;
  height: 200px;
  background-color: #FFFFFF;
  border-radius: 8px;
  padding: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.qrcode-canvas[data-v-c78e1211] {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.share-description[data-v-c78e1211] {
  font-family: "Source Han Sans CN VF", sans-serif;
  font-weight: 400;
  font-size: 13px;
  color: #F0F8FE;
  margin: 0;
}
.share-link-container[data-v-c78e1211] {
  display: flex;
  align-items: center;
  gap: 15px;
}
.share-link-input[data-v-c78e1211] {
  flex-grow: 1;
  background-color: #1C2226;
  border: 1px solid #232A30;
  border-radius: 6px;
  padding: 10px;
  height: 31px;
  display: flex;
  align-items: center;
  color: rgba(240, 248, 254, 0.5);
  font-family: "Source Han Sans CN VF", sans-serif;
  font-weight: 400;
  font-size: 13px;
  box-sizing: border-box;
  max-width: 349px;
  text-overflow: ellipsis;
}
.share-link-input span[data-v-c78e1211] {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.copy-button[data-v-c78e1211] {
  background: #4C4CEF;
  border-radius: 6px;
  padding: 10px 14px;
  height: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
  cursor: pointer;
  color: #F0F8FE;
  font-family: "Source Han Sans CN VF", sans-serif;
  font-weight: 400;
  font-size: 13px;
}

.share-panel-overlay[data-v-cc115723] {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  pointer-events: none;
}
.share-panel[data-v-cc115723] {
  position: fixed;
  width: 328px;
  background-color: #212121;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.5);
  pointer-events: auto;
  z-index: 10000;
  box-sizing: border-box;
}
.share-panel-header[data-v-cc115723] {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.share-panel-title[data-v-cc115723] {
  font-size: 14px;
  font-weight: 600;
  color: #FFFFFF;
}
.close-button[data-v-cc115723] {
  width: 24px;
  height: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  border-radius: 6px;
  transition: background-color 0.2s;
}
.close-button[data-v-cc115723]:hover {
  background-color: #3C3C3C;
}
.share-panel-content[data-v-cc115723] {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* URL 输入框区域 */
.url-section[data-v-cc115723] {
  display: flex;
  width: 100%;
}
.url-input-wrapper[data-v-cc115723] {
  flex: 1;
  position: relative;
  background-color: #2E2E2E;
  border-radius: 6px;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 0;
  overflow: hidden;
}
.url-input[data-v-cc115723] {
  flex: 1;
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  outline: none;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding: 10px 12px;
  min-width: 0;
}
.copy-icon[data-v-cc115723] {
  width: 40px;
  height: 40px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background-color 0.2s;
  padding: 0;
}
.copy-icon[data-v-cc115723]:hover {
  background-color: rgba(255, 255, 255, 0.1);
}
.open-button[data-v-cc115723] {
  background-color: #4C4CEF;
  color: #FFFFFF;
  border: none;
  border-radius: 0 6px 6px 0;
  padding: 10px 16px;
  font-size: 13px;
  cursor: pointer;
  white-space: nowrap;
  transition: background-color 0.2s;
  height: 100%;
  flex-shrink: 0;
}
.open-button[data-v-cc115723]:hover {
  background-color: #6060FF;
}

/* 二维码区域 */
.qrcode-section[data-v-cc115723] {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.qrcode-title[data-v-cc115723] {
  font-size: 13px;
  color: #FFF;
  text-align: left;
}
.qrcode-container[data-v-cc115723] {
  display: flex;
  justify-content: center;
  background-color: #3D3D3D;
  border-radius: 8px;
  padding: 20px;
}
.qrcode-canvas-wrapper[data-v-cc115723] {
  display: flex;
  justify-content: center;
  background-color: #212121;
  border-radius: 8px;
  padding: 10px;
}
.qrcode-canvas[data-v-cc115723] {
  width: 96px;
  height: 96px;
  object-fit: contain;
}
.qrcode-loading[data-v-cc115723] {
  width: 96px;
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.loading-spinner[data-v-cc115723] {
  width: 32px;
  height: 32px;
  border: 3px solid rgba(255, 255, 255, 0.2);
  border-top-color: #FFFFFF;
  border-radius: 50%;
  animation: spin-cc115723 0.8s linear infinite;
}
@keyframes spin-cc115723 {
to {
    transform: rotate(360deg);
}
}

/* 社交分享图标 */
.social-share-section[data-v-cc115723] {
  display: flex;
  justify-content: flex-start;
  gap: 16px;
  padding-top: 0px;
}
.social-icon[data-v-cc115723] {
  cursor: pointer;
  transition: transform 0.2s;
}
.social-icon[data-v-cc115723]:hover {
  transform: scale(1.1);
}
.icon-circle[data-v-cc115723] {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.qq-icon[data-v-cc115723] {
  background-color: #12B7F5;
}
.weibo-icon[data-v-cc115723] {
  background-color: #E6162D;
}
.tieba-icon[data-v-cc115723] {
  background-color: #FFFFFF;
}
.douban-icon[data-v-cc115723] {
  background-color: #FFFFFF;
}
.qq-space-icon[data-v-cc115723] {
  background-color: #FFFFFF;
}
.tieba-text[data-v-cc115723],
.douban-text[data-v-cc115723] {
  font-size: 18px;
  font-weight: 600;
  color: #000000;
}
.tieba-text[data-v-cc115723] {
  color: #3B82F6;
}
.douban-text[data-v-cc115723] {
  color: #10B981;
}

.title-bar[data-v-ae8cabee] {
  width: 100%;
  height: 46px;
  background-color: #000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 10px;
  box-sizing: border-box;
  -webkit-user-select: none;
  user-select: none;
  -webkit-app-region: drag;
}
.disabled[data-v-ae8cabee] {
  cursor: not-allowed;
  opacity: 0.5;
  pointer-events: none;
}
.title-bar-appliation-title[data-v-ae8cabee] {
  font-size: 14px;
  color: #fff;
  font-weight: 600;
  margin-left: 10px;
}
.upgrade-plan-btn {
&[data-v-ae8cabee] {
  width: 76px;
  height: 26px;
  border-radius: 66px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: linear-gradient(269.15deg, #FFE1B3 0.73%, #FFF9DE 90.36%);
  font-size: 13px;
  color: #9F5C43;
  line-height: 14px;
  cursor: pointer;
  user-select: none;
  }
&[data-v-ae8cabee]:hover {
    opacity: 0.9;
}
}
.info-btn {
&[data-v-ae8cabee] {
  display: flex;
  align-items: center;
  padding-left: 3px;
  width: 123px;
  height: 26px;
  border-radius: 66px;
  gap: 6px;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease;
  }
&[data-v-ae8cabee]:hover {
    background-color: #3C3C3C;
}
img[data-v-ae8cabee] {
    width: 20px;
    height: 20px;
    border-radius: 50%;
}
span[data-v-ae8cabee] {
    color: #fff;
    display: inline-block;
    overflow: hidden;
    /* 超出部分隐藏 */
    white-space: nowrap;
    /* 确保文本在一行内显示，不换行 */
    text-overflow: ellipsis;
    /* 超出的部分显示为省略号 */
    width: 90px;
    /* 设置一个宽度限制 */
}
}
.title-bar-left-item[data-v-ae8cabee] {
  display: flex;
  align-items: center;
  -webkit-app-region: no-drag;
  height: 28px;
}
.edit-title-bar-left-item[data-v-ae8cabee] {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 3px 0;
  -webkit-app-region: no-drag;
  height: 28px;
}
.divider[data-v-ae8cabee] {
  width: 1px;
  height: 16px;
  margin: 3px 0;
  background-color: #404040;
}
.negative-btn {
&[data-v-ae8cabee] {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  -webkit-app-region: no-drag;
  border-radius: 6px;
  }
&[data-v-ae8cabee]:hover {
    background-color: #2E2E2E;
}
}
.negative-action-btn {
&[data-v-ae8cabee] {
  display: flex;
  gap: 2px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  -webkit-app-region: no-drag;
  border-radius: 6px;
  padding: 0 10px;
  min-width: 62px;
  height: 28px;
  box-sizing: border-box;
  color: #BCBCBC;
  font-size: 14px;
  font-weight: 500;
  line-height: 100%;
  white-space: nowrap;
  }
svg[data-v-ae8cabee] {
    flex-shrink: 0;
}
&[data-v-ae8cabee]:hover {
    background-color: #3C3C3C;
}
}
.title-bar-right[data-v-ae8cabee] {
  display: flex;
  gap: 8px;
  align-items: center;
}
.title-bar-right span[data-v-ae8cabee] {
  font-size: 14px;
}
.tutorial-btn[data-v-ae8cabee] {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: #BCBCBC;
  cursor: pointer;
}
.login-btn[data-v-ae8cabee] {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: #4C4CEF;
  cursor: pointer;
}
.preview-btn {
&[data-v-ae8cabee] {
  min-width: 70px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 0 10px;
  box-sizing: border-box;
  color: #BCBCBC;
  border-radius: 6px;
  background-color: #3D3D3D;
  cursor: pointer;
  white-space: nowrap;
  }
svg[data-v-ae8cabee] {
    flex-shrink: 0;
}
&[data-v-ae8cabee]:hover:not(.loading) {
    background-color: #3C3C3C;
}
&.loading[data-v-ae8cabee] {
    cursor: not-allowed;
    opacity: 0.8;
}
.loading-spinner[data-v-ae8cabee] {
    animation: spin-ae8cabee 1s linear infinite;
}
}
@keyframes spin-ae8cabee {
from {
    transform: rotate(0deg);
}
to {
    transform: rotate(360deg);
}
}
.publish-btn {
&[data-v-ae8cabee] {
  padding: 0 12px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background-color: #4C4CEF;
  border-radius: 6px;
  gap: 6px;
  cursor: pointer;
  position: relative;
  /* 为小红点提供定位基准 */
  }
&[data-v-ae8cabee]:hover:not(.saving) {
    background-color: #6060FF;
}
&.saving[data-v-ae8cabee] {
    cursor: not-allowed;
    opacity: 0.8;
}
.saving-spinner[data-v-ae8cabee] {
    animation: spin-ae8cabee 1s linear infinite;
}
}

/* 未保存改动提示小红点 */
.save-indicator-dot[data-v-ae8cabee] {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 6px;
  height: 6px;
  background-color: #FF4444;
  border-radius: 50%;
  box-shadow: 0 0 2px rgba(255, 68, 68, 0.5);
  animation: pulse-ae8cabee 2s ease-in-out infinite;
}
@keyframes pulse-ae8cabee {
0%,
  100% {
    opacity: 1;
    transform: scale(1);
}
50% {
    opacity: 0.8;
    transform: scale(1.1);
}
}
.share-btn {
&[data-v-ae8cabee] {
  width: 70px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: #BCBCBC;
  border-radius: 6px;
  background-color: #3D3D3D;
  cursor: pointer;
  }
&[data-v-ae8cabee]:hover {
    background-color: #3C3C3C;
}
}
.window-controls-container[data-v-ae8cabee] {
  width: auto;
  height: 100%;
  display: flex;
  flex-direction: row;
  gap: 10px;
}
.window-control-btn {
&[data-v-ae8cabee] {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  -webkit-app-region: no-drag;
  border-radius: 6px;
  }
&[data-v-ae8cabee]:hover {
    background-color: #3C3C3C;
}
}
.switch-platform-btn {
&[data-v-ae8cabee] {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(90deg, #6366f1 0%, #60a5fa 100%);
  color: #fff;
  border: none;
  border-radius: 16px;
  padding: 3px 14px 3px 9px;
  font-size: 14px;
  cursor: pointer;
  box-shadow: 0 1px 2px rgba(60, 65, 255, 0.08);
  margin-right: 10px;
  transition: background 0.2s;
  user-select: none;
  opacity: 0.9;
  }
&[data-v-ae8cabee]:hover {
    opacity: 1;
}
}
.no-drag[data-v-ae8cabee] {
  -webkit-app-region: no-drag;
}
.back-home-menu[data-v-ae8cabee] {
  position: fixed;
  background-color: #212121;
  border-radius: 6px;
  border: 1px solid #2E2E2E;
  z-index: 10000;
  -webkit-app-region: no-drag;
  pointer-events: auto;
  min-width: 200px;
  box-sizing: border-box;
  overflow: hidden;
}
.menu-item {
&[data-v-ae8cabee] {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  cursor: pointer;
  transition: background-color 0.2s ease;
  }
svg[data-v-ae8cabee] {
    flex-shrink: 0;
}
.arrow-icon[data-v-ae8cabee] {
    margin-left: auto;
    flex-shrink: 0;
}
span[data-v-ae8cabee] {
    color: #BCBCBC;
    font-size: 14px;
    white-space: nowrap;
    flex: 1;
}
&[data-v-ae8cabee]:hover {
    background-color: #2E2E2E;
}
}
.menu-item-divider[data-v-ae8cabee] {
  border-bottom: 1px solid #2E2E2E;
}
.language-menu {
&[data-v-ae8cabee] {
  position: fixed;
  background-color: #212121;
  border-radius: 6px;
  border: 1px solid #2E2E2E;
  z-index: 10001;
  -webkit-app-region: no-drag;
  pointer-events: auto;
  min-width: 160px;
  max-height: 300px;
  overflow-y: auto;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  }
&[data-v-ae8cabee]::-webkit-scrollbar {
    width: 6px;
}
&[data-v-ae8cabee]::-webkit-scrollbar-track {
    background: #1a1a1a;
    border-radius: 3px;
}
&::-webkit-scrollbar-thumb {
&[data-v-ae8cabee] {
    background: #404040;
    border-radius: 3px;
    }
&[data-v-ae8cabee]:hover {
      background: #505050;
}
}
}
.language-menu-item {
&[data-v-ae8cabee] {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px;
  cursor: pointer;
  transition: background-color 0.2s ease;
  }
.language-name[data-v-ae8cabee] {
    color: #BCBCBC;
    font-size: 14px;
}
.check-icon[data-v-ae8cabee] {
    flex-shrink: 0;
    margin-left: 8px;
}
&[data-v-ae8cabee]:hover {
    background-color: #2E2E2E;
}
&.active {
&[data-v-ae8cabee] {
    background-color: #2E2E2E;
    }
.language-name[data-v-ae8cabee] {
      color: #fff;
}
}
}

.tips-container[data-v-3f5db157] {
    position: fixed;
    bottom: 21px;
    right: 21px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.tips-btn[data-v-3f5db157] {
    width: 28px;
    height: 28px;
    border-radius: 88px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #0A0A0F75;
    cursor: pointer;
    position: relative;
}
.shorts-tips-popup-container[data-v-3f5db157] {
    position: absolute;
    right: 38px;
    bottom: 0;
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
    justify-content: center;
    background: #0A0A0F75;
    border: 1px solid #FFFFFF1A;
    border-radius: 12px;
    padding: 40px;
    backdrop-filter: blur(10px);
    color: #FFFFFF;
    width: 528px;
    height: 364px;
    box-sizing: border-box;
}
.shorts-tips-item[data-v-3f5db157] {
    display: flex;
    width: 448px;
    height: 44px;
    align-items: center;
    gap: 20px;
}
.shorts-tips-text[data-v-3f5db157] {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.shorts-name[data-v-3f5db157] {
    font-size: 15px;
    line-height: 15px;
}
.shorts-tips-detail[data-v-3f5db157] {
    font-size: 13px;
    line-height: 14px;
    display: flex;
    align-items: center;
}
.licenses-tips-popup-container[data-v-3f5db157] {
    position: absolute;
    right: 38px;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    font-size: 13px;
    line-height: 14px;
    color: #FFFFFF;
    background: #0A0A0F75;
    border: 1px solid #FFFFFF1A;
    border-radius: 12px;
    backdrop-filter: blur(10px);
}


.show-controls-panel {
&[data-v-54570a65] {
    width: 60px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #10121580;
    border-radius: 88px;
}
&[data-v-54570a65]:hover {
        background: #101215;
}
}
.controls-panel[data-v-54570a65] {
    display: flex;
    flex-direction: row;
    gap: 10px;
}
.trigger-controls-panel[data-v-54570a65] {
    display: flex;
    flex-direction: row;
    padding: 7px 10px;
    border-radius: 8px;
    border-width: 1px;
    padding-right: 10px;
    padding-left: 10px;
    gap: 10px;
    box-sizing: border-box;
    background: #0A0A0F75;
    border: 1px solid #FFFFFF1A;
}
.controls-btn {
&[data-v-54570a65] {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    transition: background 0.3s ease-out;
}
&[data-v-54570a65]:hover {
        background: #FFFFFF1A;
}
}
.controls-btn.active[data-v-54570a65] {
    background: #FFFFFF1A;
}
.setting-btn-container[data-v-54570a65] {
    width: 46px;
    height: 46px;
    border-radius: 8px;
    border-width: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    background: #0A0A0F75;
    border: 1px solid #FFFFFF1A;
    box-sizing: border-box;
}
.divider[data-v-54570a65] {
    width: 1px;
    height: 100%;
    background-color: #FFFFFF1A;
}

.resource-list-panel[data-v-0867083a] {
    width: 1040px;
    height: 116px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 0 10px;
    background: #0A0A0F75;
    border: 1px solid #FFFFFF1A;
    backdrop-filter: blur(8px);
    border-radius: 8px;
    box-sizing: border-box;
}
.resource-list[data-v-0867083a] {
    width: 0;
    height: 100%;
    flex: 1;
    display: flex;
    flex-direction: row;
    gap: 15px;
    align-items: center;
    transition: overflow 0.3s ease;
}
.resource-list.scrollable {
&[data-v-0867083a] {
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    
    /* 自定义滚动条样式 */

    /* Firefox 滚动条样式 */
    scrollbar-width: thin;
    scrollbar-color: #4C4CEF #2A2A2A;
    }
&[data-v-0867083a]::-webkit-scrollbar {
        height: 6px;
}
&[data-v-0867083a]::-webkit-scrollbar-track {
        background: #2A2A2A;
        border-radius: 3px;
}
&[data-v-0867083a]::-webkit-scrollbar-thumb {
        background: #4C4CEF;
        border-radius: 3px;
        transition: background 0.3s ease;
}
&[data-v-0867083a]::-webkit-scrollbar-thumb:hover {
        background: #6B6BFF;
}
}
.image-item {
&[data-v-0867083a] {
  width: 146px;
  height: 86px;
  position: relative;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 6px;
  background: #0A0A0F4D;
  flex-shrink: 0; /* 防止在滚动容器中被压缩 */
    }
&[data-v-0867083a]::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 2px solid #BB55FF;
    border-radius: 6px;
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}
&[data-v-0867083a]:hover::after {
    opacity: 1;
}
}
.image-item img[data-v-0867083a] {
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
  user-select: none
}
.image-item video[data-v-0867083a] {
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
  user-select: none;
}
.image-item .index-container[data-v-0867083a] {
  position: absolute;
  top: 5px;
  left: 5px;
  width: 32px;
  height: 22px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #00000080;
  backdrop-filter: blur(4px);
  border-radius: 4px;
  color: #F0F8FE;
}
.image-item .resource-title[data-v-0867083a] {
  position: absolute;
  bottom: 5px;
  left: 5px;
  right: 5px;
  max-height: 20px;
  padding: 2px 6px;
  background: #00000080;
  backdrop-filter: blur(4px);
  border-radius: 4px;
  color: #F0F8FE;
  font-size: 11px;
  font-weight: 400;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.page-btn[data-v-0867083a] {
    width: 40px;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: opacity 0.3s;
}
.page-btn.disabled[data-v-0867083a] {
    opacity: 0.5;
    cursor: not-allowed;
}
.page-btn[data-v-0867083a]:not(.disabled):hover {
    opacity: 0.8;
}

/* 加载指示器样式 */
.loading-indicator[data-v-0867083a] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 80px;
    height: 86px;
    gap: 8px;
    flex-shrink: 0;
}
.loading-spinner[data-v-0867083a] {
    animation: spin-0867083a 1.5s linear infinite;
}
@keyframes spin-0867083a {
from { transform: rotate(0deg);
}
to { transform: rotate(360deg);
}
}
.loading-text[data-v-0867083a] {
    font-size: 12px;
    color: #4C4CEF;
    font-weight: 400;
}
.finished-indicator[data-v-0867083a] {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 120px;
    height: 86px;
    flex-shrink: 0;
}
.finished-indicator span[data-v-0867083a] {
    font-size: 12px;
    color: #888888;
    font-weight: 400;
}

/* 移动端自适应 */
@media (max-width: 768px) {
.resource-list-panel[data-v-0867083a] {
    width: calc(100% - 24px);
    height: 122px;
    padding: 0 6px;
    gap: 6px;
}
.resource-list[data-v-0867083a] {
    gap: 10px;
    overflow-x: auto;
    overflow-y: hidden;
}
.image-item[data-v-0867083a] {
    width: 120px;
    height: 72px;
}
.page-btn[data-v-0867083a] {
    width: 32px;
}
}

.mask-container[data-v-fd70468e] {
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #000000BB;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1999;
}
.close-btn {
&[data-v-fd70468e] {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 88px;
    background-color: #FFFFFFCC;
    border: 1px solid #0A0A0F1A;
    }
&[data-v-fd70468e]:hover {
        background-color: #FFFFFF;
}
}
.preview-img[data-v-fd70468e] {
    max-width: 90%;
    max-height: 90%;
}
.video-controls[data-v-fd70468e] {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(0, 0, 0, 0.7);
    border-radius: 8px;
    padding: 15px 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-width: 400px;
}
.time-container[data-v-fd70468e] {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.time-label[data-v-fd70468e] {
    color: #BCBCBC;
    font-size: 12px;
    font-family: monospace;
}
.progress-bar[data-v-fd70468e] {
    width: 100%;
    height: 4px;
    margin: 0 10px;
    cursor: pointer;
    position: relative;
}
.progress-track[data-v-fd70468e] {
    width: 100%;
    height: 4px;
    background: #D9D9D9;
    border-radius: 2px;
    position: relative;
    overflow: hidden;
}
.progress-fill[data-v-fd70468e] {
    height: 100%;
    background-color: #D9D9D9;
    border-radius: 2px;
    transition: width 0.1s ease;
}
.progress-thumb[data-v-fd70468e] {
     position: absolute;
     top: 50%;
     width: 12px;
     height: 12px;
     background: linear-gradient(90deg, #874AFF 0%, #4C4CEF 100%);
     border-radius: 50%;
     transform: translate(-50%, -50%);
     transition: left 0.1s ease, width 0.2s ease, height 0.2s ease;
     box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
     opacity: 0;
}
.progress-bar:hover .progress-thumb[data-v-fd70468e] {
     opacity: 1;
     width: 16px;
     height: 16px;
}
.volume-bar:hover .volume-thumb[data-v-fd70468e] {
     opacity: 1;
     width: 12px;
     height: 12px;
}
.controls-container[data-v-fd70468e] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}
.volume-container[data-v-fd70468e] {
     display: flex;
     align-items: center;
     gap: 8px;
     cursor: pointer;
     padding: 5px;
     border-radius: 4px;
     transition: background-color 0.2s ease;
}
.volume-container[data-v-fd70468e]:hover {
     background-color: rgba(255, 255, 255, 0.1);
}
.volume-icon[data-v-fd70468e] {
    display: flex;
    align-items: center;
    justify-content: center;
}
.volume-bar[data-v-fd70468e] {
     width: 60px;
     height: 4px;
     cursor: pointer;
     position: relative;
}
.volume-track[data-v-fd70468e] {
     width: 100%;
     height: 4px;
     background-color: rgba(255, 255, 255, 0.3);
     border-radius: 2px;
     position: relative;
     overflow: hidden;
}
.volume-fill[data-v-fd70468e] {
     height: 100%;
     background-color: #F0F8FE;
     border-radius: 2px;
     transition: width 0.1s ease;
}
.volume-thumb[data-v-fd70468e] {
     position: absolute;
     top: 50%;
     width: 8px;
     height: 8px;
     background-color: #F0F8FE;
     border-radius: 50%;
     transform: translate(-50%, -50%);
     transition: left 0.1s ease, width 0.2s ease, height 0.2s ease;
     box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
     opacity: 1;
}
.play-btn[data-v-fd70468e] {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 5px;
    border-radius: 4px;
    transition: background-color 0.2s ease;
}
.play-btn[data-v-fd70468e]:hover {
    background-color: rgba(255, 255, 255, 0.1);
}
.exit-preview-btn[data-v-fd70468e] {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 5px;
    border-radius: 4px;
    transition: background-color 0.2s ease;
}
.exit-preview-btn[data-v-fd70468e]:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.preview-container[data-v-9d71e217] {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
}
.preview-content[data-v-9d71e217] {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
}
.controls-container[data-v-9d71e217] {
    position: absolute;
    bottom: 31px;
    left: 0;
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 11px;
    z-index: 100;
}
canvas[data-v-9d71e217] {
    width: 100%;
    height: 100%;
    touch-action: none;
}
.watermark-container[data-v-9d71e217] {
    width: auto;
    height: auto;
    position: absolute;
    top: 30px;
    right: 30px;
    z-index: 1000;
}
.watermark-image[data-v-9d71e217] {

    object-fit: cover;
}
.back-btn[data-v-9d71e217] {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background-color: rgba(0, 0, 0, 0.6);
    color: white;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}
.back-btn[data-v-9d71e217]:hover {
    background-color: rgba(0, 0, 0, 0.8);
    transform: translateY(-1px);
}
.back-btn svg[data-v-9d71e217] {
    flex-shrink: 0;
}

.canvas-container[data-v-727f757f] {
  width: 100vw;
  height: 100vh;
  padding: 0;
  margin: 0;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
}
.main[data-v-727f757f] {
  width: 100%;
  height: 0;
  flex: 1;
  position: relative;
}

/* 全局拖拽上传遮罩样式 */
.drag-upload-overlay[data-v-727f757f] {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  animation: fadeIn-727f757f 0.3s ease;
}
.drag-upload-content[data-v-727f757f] {
  text-align: center;
  color: white;
  padding: 40px;
  border: 3px dashed #BB55FF;
  border-radius: 16px;
  background: rgba(187, 85, 255, 0.1);
  max-width: 400px;
  animation: scaleIn-727f757f 0.3s ease;
}
.drag-upload-icon[data-v-727f757f] {
  margin-bottom: 20px;
  animation: bounce-727f757f 2s infinite;
}
.drag-upload-content h2[data-v-727f757f] {
  margin: 0 0 16px 0;
  font-size: 24px;
  font-weight: bold;
  color: #BB55FF;
}
.drag-upload-content p[data-v-727f757f] {
  margin: 8px 0;
  opacity: 0.8;
  font-size: 14px;
  line-height: 1.4;
}
@keyframes fadeIn-727f757f {
from {
    opacity: 0;
}
to {
    opacity: 1;
}
}
@keyframes scaleIn-727f757f {
from {
    transform: scale(0.9);
    opacity: 0;
}
to {
    transform: scale(1);
    opacity: 1;
}
}
@keyframes bounce-727f757f {
0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
}
40% {
    transform: translateY(-10px);
}
60% {
    transform: translateY(-5px);
}
}

/* loading-preview-ui 样式 */
.loading-preview-ui[data-v-727f757f] {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}
.loading-content[data-v-727f757f] {
  text-align: center;
  color: white;
  padding: 40px;
  max-width: 400px;
}
.loading-spinner[data-v-727f757f] {
  position: relative;
  width: 80px;
  height: 80px;
  margin: 0 auto 30px auto;
}
.spinner-ring[data-v-727f757f] {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 3px solid transparent;
  border-top: 3px solid #4C4CEF;
  border-radius: 50%;
  animation: spin-727f757f 1.5s linear infinite;
}
.spinner-ring[data-v-727f757f]:nth-child(2) {
  width: 60px;
  height: 60px;
  top: 10px;
  left: 10px;
  border-top-color: #BB55FF;
  animation-duration: 1.2s;
  animation-direction: reverse;
}
.spinner-ring[data-v-727f757f]:nth-child(3) {
  width: 40px;
  height: 40px;
  top: 20px;
  left: 20px;
  border-top-color: #7C7CFF;
  animation-duration: 0.9s;
}
@keyframes spin-727f757f {
0% {
    transform: rotate(0deg);
}
100% {
    transform: rotate(360deg);
}
}
.loading-title[data-v-727f757f] {
  margin: 0 0 12px 0;
  font-size: 24px;
  font-weight: 600;
  color: #FFFFFF;
  letter-spacing: 0.5px;
}
.loading-subtitle[data-v-727f757f] {
  margin: 0 0 30px 0;
  font-size: 14px;
  color: #BCBCBC;
  line-height: 1.4;
  opacity: 0.8;
}
.loading-dots[data-v-727f757f] {
  display: flex;
  justify-content: center;
  gap: 8px;
}
.dot[data-v-727f757f] {
  width: 8px;
  height: 8px;
  background: #4C4CEF;
  border-radius: 50%;
  animation: dotPulse-727f757f 1.4s ease-in-out infinite both;
}
.dot[data-v-727f757f]:nth-child(1) {
  animation-delay: -0.32s;
}
.dot[data-v-727f757f]:nth-child(2) {
  animation-delay: -0.16s;
}
.dot[data-v-727f757f]:nth-child(3) {
  animation-delay: 0s;
}
@keyframes dotPulse-727f757f {
0%,
  80%,
  100% {
    transform: scale(0.8);
    opacity: 0.5;
}
40% {
    transform: scale(1.2);
    opacity: 1;
}
}
