@import url('../css/base.css');

html,body{
    margin: 0;
}
.user-sidebar {
    position: relative;
    width: 250px;
    background-color: #fafafa;
    padding: 0;
    box-sizing: border-box;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    padding: 15px;
    box-sizing: border-box;
}

.sidebar-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 25px;
}
.sidebar-logo img {
    width: 23px;
    height: 23px;
}
.sidebar-logo span {
    font-size: 24px;
    color:#3A4252;
    letter-spacing: 0.5px;
    font-weight: 500;
}

.sidebar-group {
    margin-top: 10px;
}
.sidebar-group + .sidebar-group {
    margin-top: 24px;
}
.sidebar-group-title {
    color: #8695AA;
    font-size: 12px;
    font-weight: 500;

}
.sidebar-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}
.sidebar-menu li {
    margin-bottom: 6px;
}
.sidebar-menu li:last-child {
    margin-bottom: 0;
}
.sidebar-menu a {
    display: flex;
    align-items: center;
    gap: 10px;
    height: 40px;
    line-height: 40px;
    padding: 0 10px;
    box-sizing: border-box;
    border-radius: 8px;
    color: #3A4252;
    font-weight: 500;
    font-size: 15px;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}
.sidebar-menu li.active a {
    background: #EAEBEC;
    color: #605DFF;
    font-weight: 600;
}

.sidebar-menu a img.no-active,
.sidebar-menu a img.active {
    width: 20px;
    height: 20px;
}
.sidebar-menu a img.active {
    display: none;
}
.sidebar-menu a img.no-active {
    display: block;
}

.sidebar-menu li.active a img.no-active {
    display: none;
}
.sidebar-menu li.active a img.active {
    display: block;
}

.sidebar-storage-cdn {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 220px;
    border-radius: 16px;
    background: linear-gradient(180deg, rgba(234,232,253,1) 0%,rgba(250,250,255,1) 100%);
    border: 1px solid rgba(249,249,255,1);
    padding: 15px;
    box-sizing: border-box;
}
.sidebar-storage-cdn .storage-header,
.sidebar-storage-cdn .cdn-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}
.sidebar-storage-cdn .storage-header img,
.sidebar-storage-cdn .cdn-header img {
    width: 23px;
    height: 23px;
}
.sidebar-storage-cdn .storage-header span,
.sidebar-storage-cdn .cdn-header span {
    font-size: 16px;
    font-weight: 600;
    color: #3A4252;
    white-space: nowrap;
}
.sidebar-storage-cdn .expand-btn {
    margin-left: auto;
    background: #605DFF;
    color: #fff;
    font-size: 12px;
    width: 83px;
    height: 26px;
    line-height: 26px;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    flex-wrap: nowrap;
}
.sidebar-storage-cdn .cdn-btn {
    margin-left: auto;
    width: 83px;
    height: 26px;
    line-height: 26px;
    border-radius: 4px;
    background-color: rgba(96,93,255,1);
    color: rgba(255,255,255,1);
    font-size: 12px;
    text-align: center;
    font-weight: 500;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    flex-wrap: nowrap;
}
.sidebar-storage-cdn .storage-info {
    font-size: 14px;
    color: #97A1AD;
}
.sidebar-storage-cdn .storage-bar {
    width: 100%;
    height: 9px;
    background: #E1E1E1;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 12px;
}
.sidebar-storage-cdn .storage-bar-inner {
    width: 20%;
    height: 100%;
    background: #6d6bff;
}
.sidebar-storage-cdn .cdn-status-row {
    font-size: 14px;
    color: #3A4252;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 4px;
}
.sidebar-storage-cdn .cdn-status-row:last-child {
    margin-bottom: 0;
}
.sidebar-storage-cdn .cdn-status-label {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 4px;
}
.sidebar-storage-cdn .cdn-status-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    background: #e2e5f1;
    color: #838B9D;
    font-size: 12px;
    width: 66px;
    height: 25px;
    line-height: 25px;
    border-radius: 10px;
}

.cdn-status-badge img{
    width: 15px;
    height: 15px;
}

.sidebar-content{
    width: 100%;
    height: calc(100vh - 250px);
    overflow-y: auto;
}

/* 头部搜索 */

.user-content{
    width: calc(100% - 250px);
}

.user-content-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 64px;
    padding: 0  20px;
    background: #fff;
    border-bottom: 1px solid #f2f2f2;
}

.user-content-header .search-box {
    position: relative;
    width: 420px;
    height: 44px;
    display: flex;
    align-items: center;
}

.user-content-header .search-input {
    width: 100%;
    height: 40px;
    border: none;
    background: #f7f8fa;
    border-radius: 30px;
    padding: 0 48px 0 20px;
    font-size: 15px;
    color: #3A4252;
    outline: none;
    transition: box-shadow 0.2s;
    box-shadow: none;
    border: 1px solid #D5D9E2;
}

.user-content-header .search-input::placeholder {
    color: #bfc6d1;
    font-size: 15px;
}

.user-content-header .search-btn {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-content-header .search-btn i {
    font-size: 20px;
    color: #B1B5BC;
    opacity: 1;
    transition: opacity 0.2s;
}
.user-content-header .search-btn:hover i {
    opacity: 1;
}

.user-content-header .user-avatar-dropdown {
    position: relative;
    display: flex;
    align-items: center;
}

.user-content-header .user-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    border: 2px solid #f7f8fa;
    object-fit: cover;
    transition: box-shadow 0.2s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}


.user-avatar-dropdown-content .user-name{
    font-size: 14px;
    color: #97A1AD;
    font-weight: 500;
    display: inline-block;
    max-width: 96px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.user-avatar-dropdown-content .user-avatar{
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    background-color: rgba(229,229,229,1);
}

.user-content-header .user-avatar-dropdown-menu {
    display: none;
    position: absolute;
    right: 0;
    top: 30px;
    min-width: 140px;
    padding-top: 30px;
    box-sizing: border-box;
    animation: fadeIn 0.2s;
}

.user-content-header .dropdown-menu {
    width: 100%;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0px 4px 22px 0px rgba(87,88,111,0.13);
    border: 1px solid #f2f2f2;
    z-index: 10;
    padding: 8px 10px;
    box-sizing: border-box;
    display: block;
    border: 1px solid rgba(221,221,237,1);
}

.user-avatar-dropdown:hover .user-avatar-dropdown-menu {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px);}
    to { opacity: 1; transform: translateY(0);}
}



.user-content-header .dropdown-menu a {
    display: flex;
    align-items: center;
    width: 100%;
    height: 30px;
    line-height: 30px;
    color: #3A4252;
    font-size: 14px;
    border-radius: 6px;
    text-decoration: none;
    transition: background 0.15s, color 0.15s;
    white-space: nowrap;
    padding: 0 10px;
    box-sizing: border-box;
    margin: 5px 0;
}

.user-content-header .dropdown-menu a.logout {
    color: #e14c3f;
}

.user-content-header .dropdown-menu a:hover {
    background-color: rgba(246,247,249,1);
}

.user-content-header .dropdown-menu a img{
    width: 22px;
    height: 22px;
    margin-right: 10px;
}

/* 用户信息 */
.user-info-body-form{
    max-width: 999px;
}
.user-info-body-title {
    font-size: 18px;
    font-weight: 700;
    color: #3A4252;
    margin-bottom: 28px;
}
.user-info-body-form-row {
    margin-bottom: 28px;
}
.user-info-body-label {
    display: block;
    font-size: 14px;
    color: #3A4252;
    font-weight: 500;
    line-height: 20px;
}
.user-info-body-label .required {
    color: #ff0000;
    margin-left: 2px;
}
.user-info-body-avatar-upload {
    display: flex;
    gap: 24px;
}
.avatar-upload-box {
    width: 170px;
    height: 170px;
    background: #F7F7F7;
    border: 1.5px dashed #E3E3E3;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
    transition: border-color 0.2s;
}
.avatar-upload-box:hover {
    border-color: #605DFF;
}
.avatar-upload-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: #bfc6d1;
    font-size: 32px;
    font-weight: 700;
    position: relative;
}

.avatar-upload-text {
    font-size: 14px;
    color: #3A4252;
    margin-bottom: 6px;
}
.avatar-upload-tip {
    font-size: 12px;
    color: #B1B5BC;
    text-align: center;
    font-weight: 400;
}
.avatar-upload-btn input[type='file'] {
    position: absolute;
    left: 0; top: 0; width: 100%; height: 100%;
    opacity: 0;
    cursor: pointer;
}
.avatar-preview {
    width: 160px;
    height: 160px;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}
.avatar-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.user-info-body-textarea {
    flex: 1;
    min-height: 80px;
    border: 1px solid #e5e6eb;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 15px;
    color: #3A4252;
    background: #fafbfc;
    outline: none;
    resize: vertical;
    transition: border-color 0.2s;
}
.user-info-body-textarea:focus {
    border-color: #605DFF;
}
.user-info-body-submit-btn {
    margin: 0 auto;
    display: block;
    width: 143px;
    height: 44px;
    background: #605DFF;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.2s;
}
.user-info-body-submit-btn:hover {
    background: #4b48d6;
}
.user-info-body-bind-title {
    font-size: 18px;
    font-weight: 600;
    color: #3A4252;
    margin: 32px 0 18px 0;
}
.user-info-body-bind-list {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}
.user-info-body-bind-item {
    min-width: 180px;
    height: 60px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 18px;
    font-size: 14px;
    color: #3A4252;
    position: relative;
}
.user-info-body-bind-item .bind-icon {
    position: relative;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #F4F4F4;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}
.user-info-body-bind-item .bind-icon img{
    width: 100%;
    height: 100%;
}

.user-info-body-bind-item .bind-icon i{
    position: absolute;
    bottom: -5px;
    right: -5px;
    color: #FFC946;
    font-size: 18px;
}

.user-info-body-bind-item .bind-label {
    flex: 1;
    color: #3A4252;
    font-size: 15px;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.user-info-body-bind-item .bind-status {
    font-size: 18px;
    display: flex;
    align-items: center;
}


/* 我的视频 */

.video-filter-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 20px;
}

.video-filter-bar-left {
  display: flex;
  align-items: center;
  gap: 18px;
}

.video-filter-bar-left button{
  height: 40px;
}

.video-filter-bar-right button{
  height: 40px;
}

.video-filter-checkbox {
  display: flex;
  align-items: center;
  font-size: 14px;
  color: #3A4252;
  gap: 4px;
}

.video-filter-checkbox input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border: 1.5px solid #D5D9E2;
  border-radius: 2px;
  background: #fff;
  outline: none;
  cursor: pointer;
  position: relative;
  vertical-align: middle;
  margin-right: 4px;
}

.video-filter-checkbox input[type="checkbox"]:checked {
  border-color: #605DFF;
  background: #605DFF;
}

.video-filter-checkbox input[type="checkbox"]:checked::after {
  content: '';
  position: absolute;
  left: 4px;
  top: 1px;
  width: 6px;
  height: 12px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  display: block;
}


.video-filter-bar-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.video-filter-selects {
  display: flex;
  gap: 10px;
}

.video-filter-select {
  height: 32px;
  border: 1px solid #D5D9E2;
  border-radius: 6px;
  padding: 0 12px;
  font-size: 14px;
  color: #3A4252;
  background: #fff;
  outline: none;
}

.video-filter-btn-upload {
  background: #605DFF;
  color: #fff;
  font-weight: 500;
  border: none;
  border-radius: 6px;
  padding: 6px 18px;
  margin-left: 8px;
  transition: background 0.2s;
}

.video-filter-btn-upload:hover {
  background: #4b48d6;
}

.video-filter-actions-bg {
  display: flex;
  align-items: center;
  background: #ECF0FF;
  border-radius: 24px;
  padding: 0 3px;
  height: 32px;
  gap: 0;
}

.video-filter-action-btn {
  background: none;
  border: none;
  color: #605DFF;
  font-size: 14px;
  display: flex;
  align-items: center;
  padding: 0 14px;
  height: 40px;
  cursor: pointer;
  border-radius: 0;
  transition: color 0.2s;
}

.video-filter-action-btn:focus {
  outline: none;
}

.video-filter-action-btn i {
  font-size: 18px;
  margin-right: 4px;
}

.video-filter-action-divider {
  width: 1px;
  height: 20px;
  background: #dbe2ff;
  display: inline-block;
}

.video-filter-notice {
  display: flex;
  align-items: center;
  background: #F6F6F6;
  color: #B1B5BC;
  font-size: 14px;
  border-radius: 6px;
  height: 37px;
  line-height: 37px;
  padding: 0 10px;
  gap: 8px;
}

.video-filter-notice-icon {
    width: 28px;
    height: 28px;
    background-color: #ffa130;
    text-align: center;
    line-height: 27px;
    border-radius: 50%;
    color: #ffffff;
    font-size: 16px;
}   


.video-list-wrapper{
    overflow: hidden;
}

.video-filter-list {
  overflow: hidden;
}

.video-filter-card {
  position: relative;
  background: #fff;
  border-radius: 14px;
  width: 100%;
  flex-shrink: 0;
  padding: 10px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: box-shadow 0.2s;
  border-radius: 10px;
}

.video-filter-card:hover{
    background-color: #F6F7F9;
}

.video-filter-card-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 1.58/1;
  border-radius: 10px;
  overflow: hidden;
  background: #eee;
  display: flex;
  align-items: center;
  justify-content: center;

}

.video-filter-card-thumb .fm {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-filter-card-thumb .video-filter-card-cover{
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.5);
  display: none;
}

.video-filter-card:hover .video-filter-card-cover{
  display: block;
}

.video-filter-card-cover-img{
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.video-filter-card-share-btn{
  position: absolute;
  right: 20px;
  top: 20px;
  width: 26px;
  height: 26px;
  border-radius: 4px;
  background-color: rgba(244,246,248,0.9);
  color: #3E3D3A;
  font-size: 18px;
  text-align: center;
  line-height: 24px;
}

.video-filter-card-statics-btn{ 
  position: absolute;
  right: 20px;
  top: 60px;
  width: 26px;
  height: 26px;
  border-radius: 4px;
  background-color: rgba(244,246,248,0.9);
  color: #3E3D3A;
  font-size: 18px;
  text-align: center;
  line-height: 24px;
}

.video-filter-card-share-btn:hover{
  background-color: #E5E7EA;
}



.video-filter-card-duration {
  position: absolute;
  right: 8px;
  bottom: 8px;
  background: #68727C;
  color: #fff;
  font-size: 12px;
  border-radius: 5px;
  padding: 2px 8px;
}

.video-filter-card-status{
  position: absolute;
  left: 8px;
  bottom: 8px;
  display: inline-block;
  width: 46px;
  height: 22px;
  line-height: 17px;
  border-radius: 4px;
  background-color: rgba(255,203,0,1);
  color: rgba(255,255,255,1);
  font-size: 12px;
  text-align: center;
}

.video-filter-card-play {
  position: absolute;
  left: 8px;
  top: 8px;
  z-index: 20;
}

.video-filter-card-play input[type="checkbox"]{
    background-color: transparent;
}


.video-filter-card-title {
  font-size: 14px;
  color: #3A4252;
  font-weight: 500;
  margin: 10px 0px 0 0px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.video-filter-card-date {
  font-size: 14px;
  color: #97A1AD;
  margin: 6px 0px 0 0px;
}

.video-filter-card-actions {
  position: absolute;
  right: 10px;
  bottom: 10px;
  cursor: pointer;
  color: #bfc6d1;
  font-size: 20px;
  padding: 2px;
  border-radius: 50%;
  transition: background 0.2s;
}

.video-filter-card-actions:hover {
  background: #f2f2f2;
}

.video-filter-card-more{
    position: absolute;
    right: 0px;
    bottom: 10px;
    cursor: pointer;
    color: #bfc6d1;
    font-size: 20px;
    padding: 2px;
    border-radius: 50%;
    transition: background 0.2s;
}

.video-filter-card-more .btn{
    background-color: transparent;
    border: none;
}

.video-filter-card-more li{
    font-size: 14px;
    border-radius: 6px;
    box-sizing: border-box;
}

.video-filter-card-more li a{
    border-radius: 6px;
    display: flex;
    align-items: center;
    font-weight: 500;
    color: #3A4252;
    padding: 0px 10px;
    height: 30px;
    line-height: 30px;
}

.video-filter-card-more li img{
    width: 20px;
    height: 20px;
    margin-right: 6px;
}

.video-filter-card-more li:hover,
.video-filter-card-more li:hover a{
    background-color: #F6F7F9;
}

.video-filter-card-more  ul{
    padding: 10px;
    box-sizing: border-box;
}

.video-filter-card-more li a.delete-item{
    color: #F25A50;
}

/* 分享弹窗无数据 */

.video-share-modal-nodata {
  height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  background: #fff;
  position: relative;
}

/* 顶部搜索框 */
.video-share-modal-nodata-search {
  width: 100%;
  margin: 20px auto 0 auto;
  position: relative;
}

.video-share-modal-nodata-search-input {
  width: 100%;
  height: 40px;
  border-radius: 70px;
  background-color: #F6F7F9;
  color: #B1B5BC;
  font-size: 14px;
  padding: 0 48px 0 20px;
  outline: none;
  border: none;
}

.video-share-modal-nodata-search-input::placeholder {
  color: #B1B5BC;
}

.video-share-modal-nodata-search-icon {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #B1B5BC;
  font-size: 20px;
}

/* 居中插画和提示 */
.video-share-modal-nodata-center {
  flex: 0.8;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.video-share-modal-nodata-img {
  width: 220px;
  height: 220px;
  object-fit: contain;
  margin-bottom: 18px;
  user-select: none;
  pointer-events: none;
  opacity: 0.9;
}

.video-share-modal-nodata-text {
  color: #97A1AD;
  font-size: 14px;
  text-align: center;
  font-weight: 500;
}

/* 底部新建按钮 */
.video-share-modal-nodata-bottom {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: -5px;
  display: flex;
  justify-content: flex-start;
  border-top: 1px solid #EAEBEC;
  padding-top: 10px;
  box-sizing: border-box;
}

.video-share-modal-nodata-create-btn {
  height: 36px;
  font-size: 16px;
  display: flex;
  align-items: center;
  cursor: pointer;
  transition: background 0.2s;
}

.video-share-modal-nodata-create-btn i{
    color: #605DFF;
}

.video-share-modal-content-form {
  margin-top: 20px;
}

.video-share-modal-content-label-row {
  display: block;
  margin-bottom: 20px;
}

.video-share-modal-content-label {
  display: block;
  font-size: 14px;
  color: #3A4252;
  font-weight: 500;
  margin: 0px 0px 10px 0px;
}

.video-share-modal-content-label .required {
  color: #ff4d4f;
  margin-left: 2px;
}

.video-share-modal-content-title-input {
  width: 100%;
  height: 40px;
  border: 1px solid #E5E6EB;
  border-radius: 8px;
  padding: 0 14px;
  font-size: 15px;
  color: #3A4252;
  outline: none;
  background: #fff;
}

.video-share-modal-content-tags {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  min-height: 44px;
}

.video-share-modal-content-tag-add,
.video-share-modal-content-tag-input-btn {
  height: 36px;
  background: #f4f6ff;
  color: #605dff;
  border: none;
  border-radius: 18px;
  padding: 0 18px;
  font-size: 15px;
  display: flex;
  align-items: center;
  cursor: pointer;
  transition: background 0.2s;
}

.video-share-modal-content-tag-add:hover,
.video-share-modal-content-tag-input-btn:hover {
  background: #e6eaff;
}

.video-share-modal-content-tag-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.video-share-modal-content-tag-input {
  height: 36px;
  border: 1.5px solid #605dff;
  border-radius: 18px;
  padding: 0 18px;
  font-size: 15px;
  min-width: 120px;
  outline: none;
  background: #fff;
  color: #3A4252;
  margin-right: 6px;
}

.video-share-modal-content-tag-dropdown {
  position: absolute;
  top: 40px;
  left: 0;
  min-width: 120px;
  background: #fff;
  border: 1px solid #EAEBEC;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  z-index: 10;
  padding: 6px 0;
}

.video-share-modal-content-tag-dropdown-item {
  padding: 8px 18px;
  font-size: 15px;
  color: #3A4252;
  cursor: pointer;
  transition: background 0.15s;
  font-weight: 600;
}

.video-share-modal-content-tag-dropdown-item:hover {
  background: #f4f6ff;
  color: #605dff;
}

.video-share-modal-content-tag {
  background: #f4f6ff;
  color: #605dff;
  border-radius: 18px;
  padding: 0 14px;
  height: 36px;
  display: flex;
  align-items: center;
  font-size: 15px;
  margin-right: 6px;
  margin-bottom: 6px;
  font-weight: 500;
  position: relative;
}

.video-share-modal-content-tag .video-share-modal-content-tag-close {
  margin-left: 6px;
  color: #605dff;
  font-size: 18px;
  cursor: pointer;
  transition: color 0.2s;
}

.video-share-modal-content-tag .video-share-modal-content-tag-close:hover {
  color: #ff4d4f;
}

.video-share-modal-content-switch-group {
  margin-bottom: 20px;
}

.video-share-modal-content-switch-row {
  position: relative;
  margin-bottom: 15px;
}

.video-share-modal-content-switch-label {
  display: block;
  font-size: 14px;
  color: #3A4252;
  font-weight: 500;
}

.video-share-modal-content-switch-btns {
  display: flex;
  align-items: center;
  gap: 0;
}

.video-share-modal-content-switch-btns label{
    border: 1px solid rgba(221,221,237,1);
    border-radius: 8px;
    overflow: hidden;
    background-color: #f8f8ff;
}

.video-share-modal-content-switch-checkbox {
  display: none;
}

.video-share-modal-content-switch-btn {
  display: block;
  width: 85px;
  height: 42px;
  line-height: 42px;
  background: #ffffff;
  color: #9C9CA3;
  background-color: rgba(248,248,255,1);
  border-right: none;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  user-select: none;
  text-align: center;
}

.video-share-modal-content-switch-btn:nth-child(2) {
    border-radius: 8px 0 0 8px;
  }

.video-share-modal-content-switch-btn:last-child {
    border-radius: 0 8px 8px 0;
}



.video-share-modal-content-switch-btn:first-child {
  border-radius: 8px 0 0 8px;
}
.video-share-modal-content-switch-btn:last-child {
  border-radius: 0 8px 8px 0;
}

.video-share-modal-content-vip {
  position: absolute;
  right: 0;
  top: 0;
  display: flex;
  align-items: center;
  background: #ffffff;
  color: #ffc122;
  border-radius: 30px;
  border: 2px solid #ffc122;
  padding: 0 14px;
  height: 32px;
  font-size: 14px;
  font-weight: 600;
  gap: 4px;
}

.video-share-modal-content-switch-extra {
  margin-top: 10px;
}

.video-share-modal-content-area-range {
  display: flex;
  margin-bottom: 12px;
  border: 1px solid rgba(221,221,237,1);
  border-radius: 8px;
  overflow: hidden;
  width: 200px;
}
.video-share-modal-content-area-range-btn {
  height: 42px;
  line-height: 42px;
  border-radius: 8px;
  background: #f8f8ff;
  color: #9C9CA3;
  font-size: 14px;
  cursor: pointer;
  font-weight: 500;
  transition: background 0.2s, color 0.2s;
  text-align: center;
  width: 100px;
}
.video-share-modal-content-area-range-btn.active {
  background: #ffffff;
  color: rgb(171, 171, 171);
}
.video-share-modal-content-area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 10px;
}
.video-share-modal-content-area-tag {
  background: #f4f6ff;
  color: #605dff;
  border-radius: 18px;
  padding: 0 14px;
  height: 32px;
  display: flex;
  align-items: center;
  font-size: 15px;
  font-weight: 500;
  position: relative;
}
.video-share-modal-content-area-tag .close {
  margin-left: 6px;
  color: #bfc6d1;
  font-size: 18px;
  cursor: pointer;
  transition: color 0.2s;
}
.video-share-modal-content-area-tag .close:hover {
  color: #ff4d4f;
}
.video-share-modal-content-area-selector {
  background: #f8f8fa;
  border-radius: 10px;
  padding: 0;
  margin-bottom: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
  overflow: hidden;
}
.video-share-modal-content-area-layout {
  display: flex;
  min-height: 320px;
}
.video-share-modal-content-area-sidetab {
  width: 90px;
  background: #f4f6fa;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding: 0;
  border-radius: 10px 0 0 10px;
}
.video-share-modal-content-area-sidetab-item {
  height: 44px;
  line-height: 44px;
  text-align: center;
  font-size: 16px;
  color: #3A4252;
  cursor: pointer;
  background: transparent;
  transition: background 0.2s, color 0.2s;
}
.video-share-modal-content-area-sidetab-item.active {
  background: #605dff;
  color: #fff;
  border-radius: 8px 0 0 8px;
}
.video-share-modal-content-area-main {
  flex: 1;
  background: #fff;
  border-radius: 0 10px 10px 0;
  padding: 0 0 20px 0;
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.video-share-modal-content-area-table {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.video-share-modal-content-area-table-head {
  display: flex;
  border-bottom: 1px solid #EAEBEC;
  background: #fff;
  font-size: 15px;
  color: #97A1AD;
  font-weight: 500;
  padding: 0 0 0 0;
  min-width: 0;
}
.video-share-modal-content-area-table-head > div {
  flex: 1;
  text-align: left;
  padding: 14px 0 14px 24px;
}
.video-share-modal-content-area-table-body {
  display: flex;
  min-height: 180px;
  background: #fff;
}
.video-share-modal-content-area-table-col {
  flex: 1;
  padding: 16px 0 0 24px;
  min-width: 8px;
  max-height: 188px;
  overflow-y: auto;
}
.video-share-modal-content-area-table-col .video-share-modal-content-area-select-item {
  background: #f8f8fa;
  border-radius: 6px;
  padding: 0 16px;
  height: 36px;
  line-height: 36px;
  color: #3A4252;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  border: none;
  margin-bottom: 15px;
}
.video-share-modal-content-area-table-col .video-share-modal-content-area-select-item.selected {
  background: #605dff;
  color: #fff;
}
.video-share-modal-content-area-confirm-btn {
  display: block;
  margin: 24px auto 0 auto;
  background: #605dff;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 0 38px;
  height: 38px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}
.video-share-modal-content-area-confirm-btn:hover {
  background: #4b48d6;
}


.step-product-form {
    margin: 20px auto;
    background-color: #fff;
    border-radius: 4px;
}

.step-form-notice {
    color: #555;
    font-size: 14px;
    line-height: 1.5;
}

.step-form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
}


.step-form-actions {
    display: flex;
    justify-content: flex-start;
    padding-top: 10px;
}

.step-submit-btn {
    background-color: #4e44e4;
    border-color: #4e44e4;
    height: 37px;
    font-size: 13px;
    min-width: 80px;
}

.step-cancel-btn{
    height: 37px;
    font-size: 13px;
    min-width: 80px;
}

.step-submit-btn:hover {
    background-color: #3d35d3;
    border-color: #3d35d3;
}


.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 14px;
  color: #3A4252;
  margin-bottom: 8px;
  font-weight: 500;
}

.required {
  color: #ff0000;
  margin-left: 2px;
  font-size: 16px;
}

.form-input {
  width: 100%;
  min-height: 48px;
  background: #f7f8fa;
  border: none;
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 16px;
  color: #222;
  resize: none;
  outline: none;
}

.form-input::placeholder {
  color: #c0c0c0;
}

/* 添加到合集 */

.video-add-to-collection-list {
  margin-top: 18px;
}

.video-add-to-collection-item-wrap{
    height: 528px;
    overflow-y: auto;
}

.video-add-to-collection-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  border-radius: 12px;
  padding: 14px 18px;
  margin-bottom: 14px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
  transition: background 0.2s;
}

.video-add-to-collection-item:hover{
    background-color: #F7F9FA;
}

.video-add-to-collection-item:last-child {
  margin-bottom: 0;
}

.video-add-to-collection-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.video-add-to-collection-cover {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  object-fit: cover;
  background: #f4f6ff;
}

.video-add-to-collection-meta {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.video-add-to-collection-title {
  font-size: 16px;
  font-weight: 600;
  color: #3A4252;
  margin-bottom: 2px;
}

.video-add-to-collection-count {
  font-size: 13px;
  color: #97A1AD;
}

.video-add-to-collection-btn {
  min-width: 85px;
  height: 33px;
  background: #605dff;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s;
}

.video-add-to-collection-btn:hover {
  background: #4b48d6;
}

.video-add-to-collection-btn-disabled,
.video-add-to-collection-btn[disabled] {
  background: #BEBEBE;
  color: #fff;
  cursor: not-allowed;
}

.video-add-to-collection-bottom {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
  padding-top: 12px;
  border-top: 1px solid #f2f2f2;
}

.video-add-to-collection-create {
  background: none;
  border: none;
  color: #605dff;
  font-size: 16px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  padding: 0 10px;
  border-radius: 6px;
  height: 36px;
  transition: background 0.2s;
}

.video-add-to-collection-create:hover {
  background: #f4f6ff;
}

.video-add-to-collection-vip {
  background: #ffffff;
  color: #FFC329;
  border-radius: 30px;
  padding: 0 14px;
  height: 33px;
  display: flex;
  align-items: center;
  font-size: 14px;
  font-weight: 500;
  border: 2px solid #FFC329;
  margin-left: 6px;
}


.video-share-link-card {
  background: #fff;
  border-radius: 10px;
  background-color: rgba(246,247,249,1);
  padding: 18px 20px 16px 20px;
  width: 100%;
  margin: 0 auto;
}

.video-share-link-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  position: relative;
}

.video-share-link-card-title {
  font-size: 14px;
  color: #3E3D3A;
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.video-share-link-card-expire {
  background: #FEEAED;
  color: #FA4F6F;
  font-size: 14px;
  border-radius: 4px;
  padding: 4px 10px;
  margin-right: 8px;
}

.video-share-link-card-expire font{
    padding: 0px 5px;
    height: 18px;
    line-height: 20px;
    border-radius: 4px;
    background-color: rgba(250,79,111,1);
    color: rgba(255,255,255,1);
    font-size: 14px;
    text-align: center;
}

.video-share-link-card-expire-active{
  background: #EBFBEB;
  color: #46B562;
  font-size: 14px;
  border-radius: 4px;
  padding: 4px 10px;
  margin-right: 8px;
}

.video-share-link-card-setting {
  color: #3E3D3A;
  font-size: 20px;
  cursor: pointer;
  transition: color 0.2s;
}
.video-share-link-card-setting:hover {
  color: #605dff;
}

.video-share-link-card-linkrow {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}

.video-share-link-card-linkinput {
  flex: 1;
  height: 45px;
  border-radius: 6px 0px 0px 6px;
  background-color: rgba(255,255,255,1);
  border: 1px solid rgba(213,217,226,1);
  padding: 0 12px;
  font-size: 14px;
  color: #3E3D3A;
  outline: none;
}

.video-share-link-card-copybtn {
  background: #605dff;
  color: #fff;
  border: none;
  border-radius: 0px 6px 6px 0px;
  padding: 0 22px;
  height: 45px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}
.video-share-link-card-copybtn:hover {
  background: #4b48d6;
}

.video-share-link-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 6px;
}

.video-share-link-card-stats {
  color: #B1B5BC;
  font-size: 14px;
  display: flex;
  gap: 18px;
}

.video-share-link-card-statbtn {
  background: none;
  border: none;
  color: #B1B5BC;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  border-radius: 6px;
  padding: 0 10px;
  height: 32px;
  transition: background 0.2s;
}
.video-share-link-card-statbtn:hover {
  color: #605dff;
}

/* 视频统计抽屉数据 */
.video-statistics-drawer-mask {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.3);
  z-index: 1000;
}
.video-statistics-drawer-content {
  position: fixed;
  right: 0; top: 0; bottom: 0;
  width: 500px;
  background: #fff;
  z-index: 1001;
  box-shadow: -2px 0 16px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  padding:0 20px;
  transition: transform 0.3s;
  transform: translateX(100%);
}

.video-statistics-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}
.video-statistics-drawer-title {
  font-size: 18px;
  font-weight: 600;
  color: #3A4252;
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.video-statistics-drawer-close {
  font-size: 24px;
  color: #B1B5BC;
  cursor: pointer;
  margin-left: 12px;
}
.video-statistics-drawer-close:hover {
  color: #605dff;
}
.video-statistics-drawer-overview {
  display: flex;
  flex-wrap: wrap;
  gap: 0 20px;
}
.video-statistics-drawer-overview-item {
  width: 30%;
  min-width: 120px;
  margin-bottom: 12px;
}
.video-statistics-drawer-overview-value {
  font-size: 28px;
  font-weight: 700;
  color: #101010;
  margin-bottom: 2px;
}
.video-statistics-drawer-overview-label {
  font-size: 16px;
  color:#101010;
}

.video-statistics-drawer-links .video-share-link-height{
  max-height: calc(100vh - 330px);
  overflow-y: auto;
}

/* 面包屑导航 */
.video-edit-breadcrumb{
  display: flex;
  align-items: center;
}

.video-edit-breadcrumb a{
  color: #97A1AD;
  font-size: 14px;
  font-weight: 500;
}

.video-edit-breadcrumb-divider{
  color: #97A1AD;
}

.video-edit-breadcrumb-text{
  font-size: 14px;
}

/* 视频编辑 */
.video-edit-cover-upload-box {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

/* hover 区域父容器，撑开高度，确保 hover 菜单不会闪 */
.video-edit-cover-upload-hoverarea {
  position: relative;
  min-height: 80px;
  padding-top: 0; /* 可根据实际调整 */
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* + 按钮 */
.video-edit-cover-upload-add {
  width: 142px;
  height: 80px;
  border: 1.5px dashed #E5E6EB;
  border-radius: 10px;
  background: #fafbfc;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color 0.2s;
  z-index: 1;
}

.video-edit-cover-upload-add:hover,
.video-edit-cover-upload-hoverarea:hover .video-edit-cover-upload-add {
  border-color: #605dff;
}

.video-edit-cover-upload-plus {
  font-size: 38px;
  color: #bfc6d1;
  font-weight: 600;
  user-select: none;
}

/* 菜单 */
.video-edit-cover-upload-menu {
  display: none;
  position: absolute;
  left: 0;
  top: 80px; /* 紧贴+按钮下方 */
  width: 142px;
  background: #fff;
  border: 1px solid #EAEBEC;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  z-index: 2;
  flex-direction: column;
  padding: 6px;
}

.video-edit-cover-upload-hoverarea:hover .video-edit-cover-upload-menu {
  display: flex;
}

.video-edit-cover-upload-menu-btn {
  width: 100%;
  background: none;
  border: none;
  color: #101010;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  cursor: pointer;
  transition: background 0.15s;
  text-align: left;
}

.video-edit-cover-upload-menu-btn:hover {
  background: #F6F7F9;
}

.video-edit-cover-upload-preview {
  width: 142px;
  height: 80px;
  border-radius: 10px;
  overflow: hidden;
  background: #eee;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-edit-cover-upload-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.video-edit-cover-crop-modal {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
}
.video-edit-cover-crop-mask {
  position: absolute;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.35);
  z-index: 1;
}
.video-edit-cover-crop-dialog {
  position: relative;
  z-index: 2;
  background: #fff;
  border-radius: 10px;
  width: 680px;
  max-width: 96vw;
  box-shadow: 0 4px 24px rgba(0,0,0,0.13);
  padding: 0 0 18px 0;
  display: flex;
  flex-direction: column;
}
.video-edit-cover-crop-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px 8px 24px;
  font-size: 18px;
  font-weight: 600;
  color: #3A4252;
}
.video-edit-cover-crop-close {
  font-size: 24px;
  color: #B1B5BC;
  cursor: pointer;
}
.video-edit-cover-crop-body {
  padding: 0 24px;
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.video-edit-cover-crop-footer {
  display: flex;
  justify-content: flex-end;
  gap: 16px;
  padding: 12px 24px 0 24px;
}
.video-edit-cover-crop-btn {
  background: #605dff;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 0 24px;
  height: 38px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}
.video-edit-cover-crop-btn:hover {
  background: #4b48d6;
}


/* 通用标签样式 */
.video-edit-tags {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  min-height: 44px;
}

.video-edit-tag-add,
.video-edit-tag-input-btn,
.video-edit-tag {
  height: 36px;
  background: #f4f6ff;
  color: #605dff;
  border: none;
  border-radius: 18px;
  padding: 0 18px;
  font-size: 15px;
  display: flex;
  align-items: center;
  cursor: pointer;
  transition: background 0.2s;
}

.video-edit-tag-add:hover,
.video-edit-tag-input-btn:hover {
  background: #e6eaff;
}

/* 水印设置 */

.video-share-modal-content-watermark-img-upload {
  display: flex;
  align-items: center;
  gap: 24px;
}
.video-share-modal-content-watermark-img-upload-box {
  width: 120px;
  height: 120px;
  border: 1.5px dashed #D5D9E2;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #B0B3C2;
  font-size: 16px;
  cursor: pointer;
  background: #fafbfc;
  position: relative;
}
.video-share-modal-content-watermark-img-upload-plus {
  font-size: 36px;
  color: #605DFF;
  margin-bottom: 8px;
}
.video-share-modal-content-watermark-img-upload-tip {
  font-size: 12px;
  color: #B0B3C2;
  margin-top: 8px;
}
.video-share-modal-content-watermark-img-preview {
  width: 120px;
  height: 120px;
  border-radius: 8px;
  overflow: hidden;
  border: 1.5px solid #D5D9E2;
  display: flex;
  align-items: center;
  justify-content: center;
}
.video-share-modal-content-watermark-img-preview img {
  max-width: 100%;
  max-height: 100%;
  display: block;
}

.video-share-modal-content-watermark-size {
  display: flex;
  align-items: center;
  gap: 12px;
}
.video-share-modal-content-watermark-size-slider {
  width: 200px;
}
.video-share-modal-content-watermark-size-value {
  color: #605DFF;
  font-weight: bold;
  min-width: 40px;
}


.video-share-modal-content-watermark-color {
  width: 40px;
  height: 40px;
  border: none;
  background: none;
  vertical-align: middle;
  margin-left: 8px;
  cursor: pointer;
}

.video-share-modal-content-title-input {
  flex: 1;
  min-width: 0;
  border: 1.5px solid #D5D9E2;
  border-radius: 6px;
  padding: 8px 12px;
  font-size: 15px;
  color: #333;
  background: #fff;
}

@media (max-width: 600px) {
  .video-share-modal-content-watermark-img-upload {
    flex-direction: column;
    gap: 10px;
  }
  .video-share-modal-content-watermark-img-upload-box,
  .video-share-modal-content-watermark-img-preview {
    width: 90px;
    height: 90px;
  }

}

.video-share-modal-content-watermark-font-row {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
}

.video-share-modal-content-watermark-font-row select{
  height: 45px;
  border: 1px solid rgba(213, 217, 226, 1);
}

.video-share-modal-content-watermark-color-btn {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: 2px solid #E5E6EB;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color 0.2s;
  position: relative;
  margin-right: 8px;
}
.video-share-modal-content-watermark-color-btn.selected {
  border-color: #FFCD00;
}
.video-share-modal-content-watermark-color-btn-inner {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: var(--watermark-color, #FFCD00);
  pointer-events: none;
}

.video-share-modal-content-watermark-color-value {
  font-size: 15px;
  color: #333;
  margin-left: 4px;
  min-width: 70px;
}

.video-share-modal-content-watermark-color-input {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

.video-share-modal-content-slider-row {
  display: flex;
  align-items: center;
  margin-bottom: 18px;
}
.video-share-modal-content-label {
  min-width: 90px;
  color: #333;
  font-weight: 500;
  margin-right: 12px;
}
.video-share-modal-content-slider-wrap {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 12px;
}
.video-share-modal-content-slider {
  flex: 1;
  height: 4px;
  background: transparent;
  outline: none;
  margin: 0 8px 0 0;
  appearance: none;
  --slider-main: #605DFF;
  --slider-bg: #E5E6EB;
}
.video-share-modal-content-slider-value {
  min-width: 32px;
  color: #605DFF;
  font-weight: bold;
  font-size: 15px;
}

/* 轨道 */
.video-share-modal-content-slider::-webkit-slider-runnable-track {
  height: 4px;
  border-radius: 2px;
  background: linear-gradient(
    to right,
    var(--slider-main) 0%,
    var(--slider-main) var(--percent, 0%),
    var(--slider-bg) var(--percent, 0%),
    var(--slider-bg) 100%
  );
}
.video-share-modal-content-slider::-moz-range-track {
  height: 4px;
  border-radius: 2px;
  background: var(--slider-bg);
}
.video-share-modal-content-slider::-ms-fill-lower {
  background: var(--slider-main);
  border-radius: 2px;
}
.video-share-modal-content-slider::-ms-fill-upper {
  background: var(--slider-bg);
  border-radius: 2px;
}

/* 圆点 */
.video-share-modal-content-slider::-webkit-slider-thumb {
  appearance: none;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--slider-main);
  border: 2px solid #fff;
  box-shadow: 0 2px 6px rgba(96,93,255,0.08);
  margin-top: -6px;
  cursor: pointer;
  transition: background 0.2s;
}
.video-share-modal-content-slider:focus::-webkit-slider-thumb {
  background: #4B48E5;
}
.video-share-modal-content-slider::-moz-range-thumb {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--slider-main);
  border: 2px solid #fff;
  cursor: pointer;
}
.video-share-modal-content-slider::-ms-thumb {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--slider-main);
  border: 2px solid #fff;
  cursor: pointer;
}

/* 隐藏原生样式 */
.video-share-modal-content-slider::-ms-tooltip {
  display: none;
}
.video-share-modal-content-slider:focus {
  outline: none;
}

/* 兼容firefox */
.video-share-modal-content-slider {
  accent-color: #605DFF;
}

.noUi-target {
  background: transparent;
  border: none;
  box-shadow: none;
  height: 28px;
  margin: 0;
}
.noUi-base {
  height: 4px;
  border-radius: 2px;
}
.noUi-connects {
  background: #E5E6EB;
  border-radius: 2px;
  height: 4px;
}
.noUi-connect {
  background: #605DFF;
  border-radius: 2px;
  height: 4px;
}
.noUi-horizontal .noUi-handle {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #605DFF;
  border: 2px solid #fff;
  box-shadow: 0 2px 6px rgba(96,93,255,0.12);
  top: -7px;
  right: -9px;
  cursor: pointer;
  transition: background 0.2s;
}
.noUi-horizontal .noUi-handle:focus {
  outline: none;
  background: #4B48E5;
}
.noUi-handle:after, .noUi-handle:before {
  display: none;
}
.noUi-tooltip {
  display: none;
}
.noUi-horizontal {
  height: 4px;
}
.noUi-horizontal .noUi-handle {
  box-shadow: 0 2px 6px rgba(96,93,255,0.12);
}


/* 水印位置 */
.video-share-modal-content-watermark-pos-list{
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.video-share-modal-content-watermark-pos-item{
  width: 187px;
}

.video-share-modal-content-watermark-pos-item .c-top{
  width: 100%;
  height: 126px;
  border-radius: 10px;
  background-color: rgba(247,247,247,1);
  position: relative;
  padding: 15px;
  box-sizing: border-box;
  border: 2px solid transparent;
}

.video-share-modal-content-watermark-pos-play i{
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: 30px;
  color: #101010;
}

.video-share-modal-content-watermark-pos-item .c-top.active{
  border: 2px solid #101010;
}

.video-edit-form{
  border-right: 1px solid #ECEEF2;
  padding-right: 50px;
}


.user-info-body-table table th{
  background-color: #f6f7f9!important;
  color: #97A1AD!important;
}

.user-info-body-table table{
  border-radius: 8px!important;
  overflow: hidden!important;
  border: 1px solid rgba(236,238,242,1);
}

/* 视频合集选择视频 */
.video-collection-choose-video{
  width: 100%;
  height: 278px;
  border-radius: 8px;
  background-color: rgba(247,247,247,1);
  border: 2px dashed rgba(227,227,227,1);
}
/* 视频合集选择区域样式 */
.video-collection-choose-video-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
}

.video-collection-choose-video-modal-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  border-radius: 8px;
  min-width: 800px;
  max-height: 80vh;
  overflow-y: auto;
}

.video-collection-choose-video-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  border-bottom: 1px solid #e0e0e0;
}

.video-collection-choose-video-modal-close {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #999;
}

.video-collection-choose-video-modal-close:hover {
  color: #333;
}

/* 视频列表项样式 */
.video-collection-video-list {
  margin-top: 20px;
}

.video-collection-video-item {
  position: relative;
  display: flex;
  align-items: center;
  padding: 15px;
  border-radius: 10px;
  margin-bottom: 12px;
  background: white;
}

.video-collection-video-item:hover{
  background: #F6F7F9;
}



.video-collection-video-item-index {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-right: 16px;
  min-width: 40px;
}

.video-collection-video-item-number {
  font-size: 16px;
  font-weight: 500;
  color: #3A4252;
  margin-bottom: 10px;
}



.video-collection-video-item-thumbnail {
  position: relative;
  width: 158px;
  height: 100px;
  margin-right: 16px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
}

.video-collection-video-item-thumbnail .fm {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-collection-video-item-duration {
  position: absolute;
  bottom: 4px;
  right: 4px;
  background: #68727C;
  color: white;
  padding: 2px 6px;
  border-radius: 5px;
  font-size: 12px;
}

.video-collection-video-item-play-icon{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 33px;
  height: 33px;
}

.video-collection-video-item-play-icon img{
  width: 100%;
  height: 100%;
  display: none;
}

.video-collection-video-item-info {
  flex: 1;
  margin-right: 16px;
}

.video-collection-video-item-title {
  font-size: 14px;
  font-weight: 500;
  color: #3A4252;
  margin: 0 0 10px 0;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.video-collection-video-item-stats {
  display: flex;
  gap: 16px;
  margin-bottom: 10px;
}

.video-collection-video-item-stat {
  display: flex;
  align-items: center;
  font-size: 14px;
  color: #97A1AD;
}

.video-collection-video-item-stat img {
  margin-right: 4px;
  width: 20px;
}

.video-collection-video-item-date {
  font-size: 14px;
  color: #97A1AD;
}

.video-collection-video-item-actions {
  position: absolute;
  right: 20px;
  bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  height: 38px;
}


.video-collection-video-item-combine {
  background: #FA4F6F;
  border: 1px solid #FA4F6F;
  color: #ffffff;
  padding: 8px 12px;
  border-radius: 4px;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: all 0.2s;
  display: none;
}


.video-collection-video-item-combine i {
  font-size: 14px;
}

.video-collection-video-item-drag{
  color: #97A1AD;
  display: none;
}

.video-collection-video-item:hover .video-collection-video-item-combine,
.video-collection-video-item:hover .video-collection-video-item-drag,
.video-collection-video-item:hover .video-collection-video-item-play-icon img{
  display: block;
}


/* 响应式样式 */
@media (max-width: 768px) {
  .video-collection-video-item {
      flex-direction: column;
      align-items: flex-start;
  }
  
  .video-collection-video-item-index {
      flex-direction: row;
      margin-bottom: 12px;
      margin-right: 0;
  }
  
  .video-collection-video-item-number {
      margin-bottom: 0;
      margin-right: 12px;
  }
  
  .video-collection-video-item-thumbnail {
      width: 100%;
      height: 200px;
      margin-right: 0;
      margin-bottom: 12px;
  }
  
  .video-collection-video-item-info {
      margin-right: 0;
      margin-bottom: 12px;
      width: 100%;
  }
  
  .video-collection-video-item-stats {
      flex-direction: column;
      gap: 8px;
  }
}

/* 预览视频与拖拽 */

.video-collection-create-modal{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
}

.video-collection-create-modal-content{
  position: relative;
  width: 980px;
  height: 549px;
  overflow: hidden;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.video-collection-create-modal-content #video_player{
  width: 100%;
  height: 100%;
}

.video_player_close{
  position: absolute;
  top: 20px;
  right: 20px;
  width: 30px;
  height: 30px;
  line-height: 20px;
  border-radius: 8px;
  background-color: rgba(238,237,238,1);
  color: rgba(16,16,16,1);
  font-size: 20px;
  cursor: pointer;
  z-index: 1000;
  text-align: center;
  line-height: 30px;
}

.video-collection-video-list-item-placeholder {
  background: #f5f7fa;
  border: 2px dashed #23ade5;
  min-height: 80px;
  margin-bottom: 12px;
}
.dragging {
  opacity: 0.7;
}

/* 添加视频抽屉 */
.video-collection-choose-video-drawer-mask {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.3);
  z-index: 1001;
  display: none;
}
.video-collection-choose-video-drawer {
  position: fixed;
  top: 0; right: 0;
  width: 500px;
  height: 100vh;
  background: #fff;
  z-index: 1002;
  box-shadow: -2px 0 16px 0 rgba(0,0,0,0.08);
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(.4,0,.2,1);
  overflow-y: auto;
  display: block;
}
.video-collection-choose-video-drawer.active {
  transform: translateX(0);
}
.video-collection-choose-video-drawer-content {
  padding: 20px;
}
.video-collection-choose-video-drawer-header {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.video-collection-choose-video-drawer-search-box {
  position: relative;
  margin-bottom: 18px;
}
.video-collection-choose-video-drawer-search-box input {
  width: 100%;
  height: 40px;
  border-radius: 30px;
  padding: 0 36px 0 12px;
  background-color: rgba(246,247,249,1);
  color: rgba(177,181,188,1);
  font-size: 14px;
  border: none;
}

.video-collection-choose-video-drawer-search-box input:focus {
  background-color: rgba(246,247,249,1);
}


.video-collection-choose-video-drawer-search-box .search-icon {
  position: absolute;
  right: 12px;
  top: 5px;
  opacity: 0.6;
  font-size:22px;
}
.video-collection-choose-video-drawer-list {
  max-height: calc(100vh - 135px);
  overflow-y: auto;
}
.video-collection-choose-video-drawer-item {
  padding: 15px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-radius: 10px;
  margin-bottom: 10px;
}

.video-collection-choose-video-drawer-item:hover {
  background-color: #F6F7F9;
}


.video-collection-choose-video-drawer .drawer-thumb {
  width: 129px;
  height: 80px;
  border-radius: 10px;
  object-fit: cover;
  margin-right: 10px;
}
.video-collection-choose-video-drawer .drawer-info {
  flex: 1;
  min-width: 0;
}
.video-collection-choose-video-drawer .drawer-title{
  font-size: 14px;
  color: #3A4252;
  font-weight: 500;
  margin-bottom: 10px;
  height: 40px;
  line-height: 20px;
}
.video-collection-choose-video-drawer .drawer-meta {
  font-size: 13px;
  color: #999;
  gap: 16px;
  display: flex;
  align-items: center;
}
.video-collection-choose-video-drawer .drawer-duration {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: #68727C;
  color: #fff;
  border-radius: 5px;
  padding: 2px 6px;
  font-size: 12px;
}
.video-collection-choose-video-drawer .drawer-date {
  font-size: 14px;
  color: #97A1AD;
}
.video-collection-choose-video-drawer .drawer-action {
  min-width: 56px;
  text-align: right;
  font-size: 25px;
}
.video-collection-choose-video-drawer .drawer-add-btn {
  cursor: pointer;
  transition: transform 0.1s;
}
.video-collection-choose-video-drawer .drawer-add-btn:hover {
  transform: scale(1.15);
}
.video-collection-choose-video-drawer .drawer-added {
  color: #ff4d4f;
  font-size: 14px;
  font-weight: 500;
}
.video-collection-choose-video-drawer-mask.active {
  display: block;
}

/* 更多筛选条件 */

.video-filter-more-group {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.video-filter-more-label {
  color: #3a4252;
  font-size: 14px;
  margin-right: 10px;
  white-space: nowrap;
  width: 98px;
  text-align: right;
}

.video-filter-more-tabs {
  display: flex;
  gap: 12px;
}

.video-filter-more-tab {
  background: #f6f7f9;
  border-radius: 8px;
  padding: 0 22px;
  height: 34px;
  display: flex;
  align-items: center;
  font-size: 14px;
  color: #3a4252;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  position: relative;
}


.video-filter-more-tab.video-filter-more-tab-active {
  background: #e6eaff;
  color: #4356ff;
  font-weight: 600;
}

.video-filter-more-count {
  color: #6d6dff;
  font-size: 14px;
  margin-left: 4px;
}

/* 我的分享表单 */
.my-share-table-wrapper {
  background: #fff;
  border-radius: 12px;
  padding: 0 0 10px 0;
  overflow-x: auto;
}
.my-share-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 15px;
  color: #3a4252;
}
.my-share-table thead th {
  background: #f6f7f9;
  font-weight: 500;
  color: #878a99;
  padding: 14px 8px;
  border-bottom: 1px solid #f0f0f0;
  text-align: left;
  white-space: nowrap;
}
.my-share-table tbody td {
  background: #fff;
  padding: 12px 8px;
  border-bottom: 1px solid #f6f7f9;
  vertical-align: middle;
}

.my-share-checkbox {
  width: 18px;
  height: 18px;
  border: 1.5px solid #d5d9e2;
  border-radius: 4px;
  background: #fff;
  appearance: none;
  outline: none;
  cursor: pointer;
  vertical-align: middle;
  position: relative;
  transition: border-color 0.2s;
}
.my-share-checkbox:checked {
  border-color: #4356ff;
  background: #4356ff;
}
.my-share-checkbox:checked::after {
  content: '\2714';
  color: #fff;
  font-size: 14px;
  position: absolute;
  left: 2px;
  top: -2px;
  line-height: 18px;
}

.my-share-title-cell {
  display: flex;
  align-items: center;
  gap: 12px;
}
.my-share-thumb {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  object-fit: cover;
  margin-right: 6px;
  background: #f6f7f9;
}
.my-share-title-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
}
.my-share-title {
  max-width: 180px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #3A4252;
}
.my-share-tags {
  margin-top: 2px;
  display: flex;
  gap: 4px;
}
.my-share-tag {
  font-size: 12px;
  padding: 1px 7px;
  border-radius: 4px;
  color: #97A1AD;
}
.my-share-tag-blue {
  background: #e6eaff;
  color: #4356ff;
}
.my-share-tag-purple {
  background: #f3eaff;
  color: #a56dff;
}
.my-share-tag-gray {
  color: #97A1AD;
}
.my-share-content-name {
  max-width: 200px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.my-share-expire-tag {
  display: inline-block;
  padding: 2px 12px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
}
.my-share-expire-tag-red {
  background: #FEEAED;
  color: #FA4F6F;
  padding: 5px 8px;
}

.my-share-expire-tag-red font{
  padding: 0px 6px;
  background-color: #FA4F6F;
  color: #ffffff;
  border-radius: 4px;
}


.my-share-expire-tag-green {
  background: #EBFBEB;
  color: #46B562;
}
.my-share-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.my-share-action {
  color: #BEBECD;
  font-size: 24px;
  transition: color 0.2s;
}
.my-share-action:hover {
  color: #4356ff;
}

.my-share-dropdown .dropdown-menu.my-share-action-list {
  min-width: 180px;
  border-radius: 12px;
  box-shadow: 0 4px 16px 0 rgba(40,60,100,0.10);
  padding: 8px 0;
  border: none;
  margin-top: 8px;
}
.my-share-action-item {
  display: flex;
  align-items: center;
  font-size: 15px;
  color: #3a4252;
  padding: 8px 20px;
  border-radius: 6px;
  transition: background 0.2s;
  gap: 8px;
}
.my-share-action-item i {
  font-size: 18px;
  margin-right: 6px;
}
.my-share-action-item:hover:not(.disabled) {
  background: #f6f7f9;
  color: #4356ff;
}
.my-share-action-item.disabled,
.my-share-action-item.disabled:hover {
  color: #c0c4cc !important;
  background: #f6f7f9 !important;
  pointer-events: none;
  cursor: not-allowed;
}
.my-share-action-danger {
  color: #ff4d4f !important;
}
.my-share-action-danger i {
  color: #ff4d4f !important;
}

/* 统计 */
.statistics-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}
.statistics-title {
  font-size: 18px;
  font-weight: bold;
  color: #222;
}
.statistics-date-picker {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 6px;
  border: 1px solid #e6e8f0;
  padding: 4px 12px;
  min-width: 220px;
  position: relative;
  height: 45px;
}
.statistics-date-input {
  border: none;
  background: transparent;
  font-size: 15px;
  color: #222;
  outline: none;
  width: 200px;
  cursor: pointer;
}
.statistics-date-icon {
  color: #bcbcbc;
  font-size: 18px;
  margin-left: 6px;
}

.statistics-cards {
  display: flex;
  gap: 18px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}
.statistics-card {
  flex: 1 1 0;
  min-width: 220px;
  background: #f6f7f9;
  border-radius: 12px;
  padding: 20px;
  box-sizing: border-box;
}
.statistics-card-label {
  font-size: 18px;
  color:#3A4252;
  display: flex;
  align-items: center;
  margin-bottom: 8px;
  font-weight: 500;
}
.statistics-card-icon {
  margin-left: 8px;
  font-size: 20px;
  font-size: 50px;
}
.statistics-card-value {
  font-size: 36px;
  font-weight: 500;
  color: #3A4252;
}
.statistics-card-blue { background: #ECF0FF; }
.statistics-card-blue .statistics-card-icon { color: #6b8cff; }
.statistics-card-orange { background: #fff7f2; }
.statistics-card-orange .statistics-card-icon { color: #ff9c5a; }
.statistics-card-green { background: #f2fff7; }
.statistics-card-green .statistics-card-icon { color: #3ac569; }
.statistics-card-purple { background: #f7f4ff; }
.statistics-card-purple .statistics-card-icon { color: #a56dff; }

.statistics-tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 18px;
}
.statistics-tab {
  background: #F6F7F9;
  border: none;
  border-radius: 6px;
  padding: 6px 22px;
  font-size: 15px;
  color: #969BA6;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.statistics-tab-active, .statistics-tab:hover {
  background: #605DFF;
  color: #fff;
  font-weight: 600;
}

.statistics-chart-container {
  background: #fff;
  border-radius: 12px;
  padding: 18px 18px 8px 18px;
  min-height: 340px;
}
#statistics-chart {
  width: 100%;
  min-height: 300px;
}
@media (max-width: 900px) {
  .statistics-cards { flex-direction: column; gap: 10px; }
  .statistics-card { min-width: 0; }
}
.statistics-table-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 40px;
}
@media (max-width: 900px) {
  .statistics-table-grid {
      grid-template-columns: 1fr;
  }
}
.statistics-table-card {
  background: #fff;
  border-radius: 12px;
  padding: 22px 18px 18px 18px;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  border: 1px solid #EAEAF5;
  height: 538px;
  overflow-y: auto;
}
.statistics-table-card-header {
  display: flex;
  align-items: center;
  font-size: 16px;
  font-weight: 600;
  color: #3A4252;
  margin-bottom: 8px;
}
.statistics-table-card-header-icon {
  font-size: 22px;
  margin-left: 8px;
  color: #605dff;
}
.statistics-table-card-title {
  flex: 1;
  display: flex;
  align-items: center;
}


.statistics-table-card-tabs {
  display: flex;
  gap: 12px;
  margin-bottom: 18px;
  align-items: center;
}
.statistics-table-card-tab {
  font-size: 14px;
  color: #969ba6;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.statistics-table-card-tab-active, .statistics-table-card-tab:hover {
  color: #4356ff;
  font-weight: 600;
}
.statistics-table-list {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 8px;
}
.statistics-table-list-item {
  margin-bottom: 5px;
}
.statistics-table-list-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  color: #3a4252;
  flex: 1.5;
  min-width: 80px;
}
.statistics-table-list-bar-row {
  display: flex;
  align-items: center;
  gap: 10px;
}
.statistics-table-list-bar-wrap {
  width: 100%;
  background: #f6f7f9;
  border-radius: 6px;
  height: 8px;
  position: relative;
}
.statistics-table-list-bar {
  background: linear-gradient(90deg, #605dff 0%, #6bdcff 100%);
  height: 8px;
  border-radius: 6px;
  position: absolute;
  left: 0;
  top: 0;
}
.statistics-table-list-value {
  width: 60px;
  text-align: right;
  color: #222;
  font-weight: 500;
  font-size: 15px;
}
.statistics-table-list-percent {
  width: 60px;
  text-align: right;
  color: #969ba6;
  font-size: 15px;
}
.statistics-table-flag {
  width: 22px;
  height: 16px;
  border-radius: 2px;
  object-fit: cover;
  margin-right: 4px;
}
.statistics-table-list-label {
  max-width: 120px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.statistics-table-browser-icon {
  width: 22px;
  height: 22px;
  border-radius: 4px;
  object-fit: cover;
  margin-right: 4px;
}
.statistics-table-os-icon {
  font-size: 20px;
  color: #605dff;
  margin-right: 4px;
}
.statistics-table-list-head {
  display: flex;
  align-items: center;
  font-size: 12px;
  color: #97A1AD;
  font-weight: 500;
  margin-bottom: 8px;
  padding: 0 2px;
}
.statistics-table-list-th {
  display: inline-block;
}
.statistics-table-list-th-label {
  flex: 1.5;
  min-width: 80px;
}
.statistics-table-list-th-value {
  width: 60px;
  text-align: right;
}
.statistics-table-list-th-percent {
  width: 60px;
  text-align: right;
}
.statistics-table-list-row {
  display: flex;
  align-items: center;
  margin-bottom: 6px;
  padding: 0 2px;
}

.statistics-table-card-tabs .limit-pointer{
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: #000000;
}

.statistics-area-wrapper {
  background: #fff;
  min-height: 420px;
  margin-bottom: 24px;
}

.statistics-area-tabs {
  display: flex;
  gap: 30px;
  margin-bottom: 18px;
}

.statistics-area-tab {
  background: #f6f7f9;
  border: none;
  border-radius: 6px;
  padding: 8px 32px;
  font-size: 16px;
  color: #969ba6;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  width: 50%;
}

.statistics-area-tab-active,
.statistics-area-tab:hover {
  background: #605dff;
  color: #fff;
  font-weight: 600;
}

.statistics-area-maps {
  display: flex;
  width: 100%;
  gap: 24px;
  margin-top: 40px;
}

.statistics-area-map {
  flex: 1 1 0;
  min-width: 350px;
  min-height: 340px;
  height: 340px;
}

@media (max-width: 900px) {
  .statistics-area-maps { flex-direction: column; gap: 16px; }
  .statistics-area-map { min-width: 0; width: 100%; }
}

.statistics-area-legend {
  position: absolute;
  left: 24px;
  top: 60px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 14px;
  z-index: 2;
}
.statistics-area-legend-color {
  display: inline-block;
  width: 16px;
  height: 16px;
  border-radius: 3px;
  margin-right: 6px;
  vertical-align: middle;
}

.statistics-area-table{
    padding: 20px;
    border-radius: 6px;
    border: 1px solid rgba(234,234,245,1);
}

/* 没有权限 */

.statistics-vip-card {
  z-index: 30;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 544px;
  height: 408px;
  border-radius: 32px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255,249,233,1) 0%,rgba(255,255,252,1) 100%);
  box-shadow: 0 4px 24px 0 rgba(0,0,0,0.06);
  margin: 0 auto;
}
.statistics-vip-header {
  width: 100%;
  height: 220px;
  background: #333;
  padding: 32px 32px 24px 32px;
  position: relative;
  border-radius: 32px 32px 0 0;
}
.statistics-vip-title {
  color: #FFFDF5;
  font-size: 50px;
  font-weight: bold;
  z-index: 2;
  position: relative;
  letter-spacing: 2px;
}
.statistics-vip-icon {
  position: absolute;
  top: 0px;
  right: 0px;
  width: 174px;
  z-index: 10;
}
.statistics-vip-bgtext {
  position: absolute;
  left: -3px;
  top: -52px;
  z-index: 1;
  pointer-events: none;
  user-select: none;
}

.statistics-vip-content-wrapper{
  position: relative;
  height: 327px;
}

.statistics-vip-content {
  z-index: 9;
  position: absolute;
  bottom: 100px;
  width: 100%;
  height: 100%;
  background-image: url('../images/user/tj/14.png');
  background-repeat: no-repeat;
  padding: 32px 32px 24px 32px;
  border-radius: 0 0 32px 32px;
}
.statistics-vip-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 32px;
}
.statistics-vip-item {
  display: flex;
  align-items: center;
  font-size: 20px;
  color: #3E3D3A;
  font-weight: 600;
  margin-bottom: 24px;
  width: 48%;
}
.statistics-vip-item-icon {
  display: inline-block;
  width: 40px;
  height: 40px;
  margin-right: 12px;
  border-radius: 50%;
}

.statistics-vip-item-icon img{
  width: 100%;
  height: 100%;
}

.statistics-vip-btn-wrap {
  display: flex;
  justify-content: center;
}
.statistics-vip-btn {
  display: block;
  width: 440px;
  height: 63px;
  text-align: center;
  line-height: 63px;
  background: linear-gradient(90deg, #ffe59a 0%, #ffb86a 100%);
  border: none;
  border-radius: 28px;
  color: #78490D;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0 2px 8px 0 rgba(255,184,106,0.15);
  transition: background 0.2s;
}
.statistics-vip-btn:hover {
  background: linear-gradient(90deg, #ffb86a 0%, #ffe59a 100%);
  color: #78490D;
}

.statistics-vip-card-cover{
  position: fixed;
  width: calc(100% - 250px);
  height: 100%;
  margin-left: 250px;
  background: rgba(255,255,255,0.5);
  z-index: 20;
  top: 0;
  left: 0;
}

/* 视频上传 */
.upload-video-upload-area {
  border: 2px dashed #605DFF;
  border-radius: 16px;
  background: #fff;
  min-height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 32px;
  position: relative;
  transition: border-color 0.2s;
}
.upload-video-upload-area.dragover {
  border-color: #605DFF;
  background: #FCFDFF;
}
.upload-video-upload-inner {
  text-align: center;
  width: 100%;
  padding: 40px 0;
}
.upload-video-upload-icon img {
  width: 56px;
  height: 56px;
  margin-bottom: 20px;
}
.upload-video-upload-title {
  font-size: 18px;
  color: #3A4252;
  font-weight: 600;
  margin-bottom: 10px;
}
.upload-video-upload-desc {
  color: #97A1AD;
  font-size: 14px;
  margin-bottom: 10px;
}
.upload-video-upload-tip {
  color: #97A1AD;
  font-size: 13px;
  margin-bottom: 0;
}
.upload-video-link {
  color: #605DFF;
  text-decoration: underline;
  margin: 0 2px;
}
.upload-video-upload-picker {
  margin-top: 18px;
  display: none;
}


.bg-block-6{
  background-color: rgba(0, 0, 0, 0.6);
}

/* 上传页面右侧存储空间 */
.user-info-panel-card {
  padding: 20px;
  max-width: 439px;
}
.user-info-panel-section + .user-info-panel-section {
  margin-top: 25px;
}
.user-info-panel-title {
  font-size: 18px;
  color: #3A4252;
  font-weight: 600;
  margin-bottom: 12px;
}
.user-info-panel-storage {
  text-align: center;
  margin-bottom: 8px;
}
.user-info-panel-storage-svg {
  position: relative;
  width: 323px;
  height: 160px;
  margin: 0 auto;
}
.user-info-panel-storage-svg-value {
  position: absolute;
  left: 0; 
  right: 0; 
  bottom: 20px;
  font-size: 30px;
  color: #605DFF;
  font-weight: 700;
  text-align: center;
  pointer-events: none;
  user-select: none;
}
.user-info-panel-storage-desc {
  color: #97A1AD;
  font-size: 16px;
  margin-top: 2px;
  margin-top: -15px;
}
.user-info-panel-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 8px;
}
.user-info-panel-tag {
  background: #f5f6fa;
  color: #605DFF;
  font-size: 13px;
  border-radius: 8px;
  padding: 4px 12px;
  margin-bottom: 4px;
  display: inline-block;
  max-width: 90%;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.user-info-panel-data-value {
  font-size: 16px;
  color: #3A4252;
  font-weight: bold;
  margin-bottom: 2px;
}
.user-info-panel-data-label {
  font-size: 16px;
  color: #3A4252;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 4px;
  font-weight: 600;
}
.user-info-panel-data-tip {
  position: absolute;
  right: -12px;
  top: -12px;
  cursor: pointer;
  color: #97A1AD;
  font-weight: 400;
}
.user-info-panel-chart {
  width: 100%;
  height: 160px;
  margin-bottom: 12px;
}
.user-info-panel-tabs {
  display: flex;
  gap: 8px;
  justify-content: center;
}
.user-info-panel-tab {
  background: #f5f6fa;
  color: #605DFF;
  border: none;
  border-radius: 6px;
  padding: 6.5px 18px;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.user-info-panel-tab-active,
.user-info-panel-tab:hover {
  background: #605DFF;
  color: #fff;
}

/* 存储空间半圆环容器优化 */
.user-info-panel-storage-chart {
  width: 100%;
  max-width: 180px;
  height: 90px;
  margin: 0 auto;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

/* 视频标签标题和全部> */
.user-info-panel-title-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
.user-info-panel-title-lg {
  font-size: 18px;
  color: #3A4252;
  font-weight: bold;
}
.user-info-panel-more {
  font-size: 16px;
  color: #97A1AD;
  text-decoration: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  font-weight: 400;
}
.user-info-panel-more-arrow {
  font-size: 16px;
  margin-left: 2px;
  font-weight: bold;
}

/* 视频标签字体 */
.user-info-panel-tag {
  display: inline-block;
  font-size: 14px;
  color: #605DFF;
  background: #ECF0FF;
  border-radius: 6px;
  padding: 4px 12px;
  margin-bottom: 4px;
  display: inline-block;
  max-width: 90%;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

/* 折线图区域背景色 */

.user-info-panel-chart {
  width: 100%;
  height: 160px;
  margin-bottom: 0;
}

.upload-list-wrapper {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 24px 0 rgba(96,93,255,0.06);
  padding: 0 0 24px 0;
  min-width: 900px;
  margin-top: 18px;
  overflow: hidden;
}

/* 头部 */
.upload-list-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 32px 0 32px;
  border-bottom: 1px solid #f0f0f0;
  background: #fff;
}
.upload-list-title {
  font-size: 18px;
  font-weight: 700;
  color: #3A4252;
  display: flex;
  align-items: center;
  gap: 18px;
}
.upload-list-progress {
  font-size: 14px;
  color: #97A1AD;
  font-weight: 400;
  margin-left: 12px;
}
.upload-list-actions {
  display: flex;
  gap: 12px;
}
.upload-list-btn {
  background: #f5f6fa;
  border: none;
  border-radius: 6px;
  color: #333;
  font-size: 15px;
  padding: 0 18px;
  height: 36px;
  cursor: pointer;
  transition: background 0.2s;
  display: flex;
  align-items: center;
  gap: 6px;
}
.upload-list-btn-pause { color: #605DFF; }
.upload-list-btn-start { background: #605DFF; color: #fff; }
.upload-list-btn-delete { color: #F25A50; }
.upload-list-btn:hover { opacity: 0.85; }

/* 表头 */
.upload-list-table-header, .upload-list-row {
  display: flex;
  align-items: center;
  font-size: 15px;
}
.upload-list-table-header {
  background: #f5f6fa;
  font-weight: 600;
  color: #97A1AD;
  padding: 0 32px;
  height: 44px;
  border-bottom: 1px solid #f0f0f0;
}
.upload-list-row {
  padding: 0 32px;
  border-bottom: 1px solid #f0f0f0;
  min-height: 56px;
  background: #fff;
  transition: background 0.2s;
}
.upload-list-row:last-child { border-bottom: none; }
.upload-list-row-active, .upload-list-row:hover { background: #f7faff; }

/* 列宽 */
.upload-list-col { display: flex; align-items: center; padding: 0 8px; }
.upload-list-col-check { width: 48px; }
.upload-list-col-name { flex: 1; min-width: 180px; }
.upload-list-col-size { width: 140px; justify-content: flex-end; }
.upload-list-col-status { width: 220px; flex-direction: column; align-items: flex-start; }

/* checkbox自定义 */
.upload-list-checkbox { display: flex; align-items: center; cursor: pointer; font-size: 16px; color: #333; user-select: none; }
.upload-list-checkbox-input { display: none; }
.upload-list-checkbox-custom {
  width: 18px; height: 18px;
  border: 1.5px solid #d1d5db;
  border-radius: 4px;
  margin-right: 8px;
  background: #fff;
  position: relative;
  transition: border-color 0.2s;
}
.upload-list-checkbox-input:checked + .upload-list-checkbox-custom {
  border-color: #605DFF;
  background: #605DFF;
}
.upload-list-checkbox-input:checked + .upload-list-checkbox-custom::after {
  content: '';
  position: absolute;
  left: 4px; top: 1px;
  width: 7px; height: 12px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

/* 文件名icon */
.upload-list-icon {
  font-size: 20px;
  color: #605DFF;
  margin-right: 8px;
}

/* 状态与进度条 */
.upload-list-status {
  font-size: 14px;
  margin-bottom: 4px;
}
.upload-list-status-paused { color: #909399; }
.upload-list-status-uploading { color: #605DFF; }
.upload-list-speed {
  color: #605DFF;
  font-size: 13px;
  margin-right: 8px;
}
.upload-list-progress-bar {
  width: 120px;
  height: 6px;
  background: #f0f0f0;
  border-radius: 3px;
  overflow: hidden;
}
.upload-list-progress-inner {
  height: 100%;
  background: linear-gradient(90deg, #605DFF 0%, #6ec6ff 100%);
  border-radius: 3px;
  transition: width 0.3s;
}

.upload-list-table-main {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 15px;
  color: #3A4252;
  background: #fff;
}
.upload-list-table-main thead th {
  background: #f5f6fa;
  font-weight: 600;
  color: #97A1AD;
  padding: 0 8px;
  height: 44px;
  border-bottom: 1px solid #f0f0f0;
  text-align: left;
  white-space: nowrap;
  font-size: 15px;
}
.upload-list-table-main tbody td {
  background: #fff;
  padding: 0 8px;
  height: 56px;
  border-bottom: 1px solid #f0f0f0;
  vertical-align: middle;
}
.upload-list-table-main tbody tr:last-child td {
  border-bottom: none;
}
.upload-list-row-active,
.upload-list-table-main tbody tr:hover {
  background: #f7faff;
}
.upload-list-checkbox { display: flex; align-items: center; cursor: pointer; font-size: 16px; color: #333; user-select: none; }
.upload-list-checkbox-input { display: none; }
.upload-list-checkbox-custom {
  width: 18px; height: 18px;
  border: 1.5px solid #d1d5db;
  border-radius: 4px;
  margin-right: 8px;
  background: #fff;
  position: relative;
  transition: border-color 0.2s;
}
.upload-list-checkbox-input:checked + .upload-list-checkbox-custom {
  border-color: #605DFF;
  background: #605DFF;
}
.upload-list-checkbox-input:checked + .upload-list-checkbox-custom::after {
  content: '';
  position: absolute;
  left: 4px; top: 1px;
  width: 7px; height: 12px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.upload-list-filename {
  display: flex;
  align-items: center;
  min-width: 0;
}
.upload-list-filename-text {
  display: inline-block;
  max-width: 340px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  vertical-align: middle;
  font-size: 15px;
  color: #3A4252;
}
.upload-list-icon {
  font-size: 20px;
  color: #605DFF;
  margin-right: 8px;
  flex-shrink: 0;
}
.upload-list-size {
  font-size: 15px;
  color: #3A4252;
  text-align: right;
}
.upload-list-status-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 0;
}
.upload-list-status {
  font-size: 14px;
  margin-bottom: 4px;
  display: inline-block;
}
.upload-list-status-paused { color: #909399; }
.upload-list-status-uploading { color: #605DFF; }
.upload-list-speed {
  color: #605DFF;
  font-size: 13px;
  margin-right: 8px;
}
.upload-list-progress-bar {
  width: 120px;
  height: 6px;
  background: #f0f0f0;
  border-radius: 3px;
  overflow: hidden;
  margin-top: 4px;
}
.upload-list-progress-inner {
  height: 100%;
  background: linear-gradient(90deg, #605DFF 0%, #6ec6ff 100%);
  border-radius: 3px;
  transition: width 0.3s;
}

/* 传输列表样式 - 完全重写按原型图 */
.transfer-list-container {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  margin-top: 20px;
  overflow: hidden;
}

/* 头部区域 */
.transfer-list-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px 16px 24px;
  border-bottom: 1px solid #f0f0f0;
}

.transfer-list-header-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.transfer-list-title {
  font-size: 18px;
  font-weight: 700;
  color: #3A4252;
}

.transfer-list-progress {
  font-size: 14px;
  color: #97A1AD;
  font-weight: 400;
}

.transfer-list-header-right {
  display: flex;
  gap: 12px;
}

.transfer-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  height: 36px;
  padding: 0 16px;
  border: none;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  border: 1px solid #605DFF;
}


/* 表格样式 */
.transfer-table-wrapper {
  overflow: hidden;
}

.transfer-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
  border: 1px solid rgba(236,238,242,1);
}

.transfer-table thead th {
  background: #f8f9fa;
  color: #97A1AD;
  font-weight: 500;
  font-size: 14px;
  text-align: left;
  padding: 12px 20px;
  border-bottom: 1px solid #f0f0f0;
  white-space: nowrap;
}

.transfer-th-name {
  width: 45%;
  min-width: 300px;
}

.transfer-th-size {
  width: 140px;
  text-align: right;
}

.transfer-th-status {
  width: 180px;
}

.transfer-th-actions {
  width: 80px;
  text-align: center;
}

/* 表头checkbox区域 */
.transfer-header-check {
  display: flex;
  align-items: center;
  gap: 8px;
}

.transfer-header-text {
  color: #97A1AD;
  font-size: 14px;
  font-weight: 500;
}

/* 表格行 */
.transfer-table tbody td {
  padding: 8px 20px;
  border-bottom: 1px solid #f6f7f9;
  vertical-align: middle;
  text-align: left;
}

.transfer-row {
  transition: background-color 0.2s;
  height: 48px;
}

.transfer-row:hover,
.transfer-row-selected {
  background: #f7faff;
}

.transfer-row:last-child td {
  border-bottom: none;
}

/* 文件行布局 */
.transfer-file-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.transfer-checkbox {
  width: 16px;
  height: 16px;
  margin: 0;
  accent-color: #605DFF;
  cursor: pointer;
}

.transfer-file-icon {
  font-size: 18px;
  color: #605DFF;
  flex-shrink: 0;
}

.transfer-file-name {
  font-size: 14px;
  color: #3A4252;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 280px;
}

/* 文件大小 */
.transfer-td-size {
  text-align: right;
  padding-right: 24px;
}

.transfer-size-text {
  font-size: 14px;
  color: #3A4252;
  font-weight: 500;
}

/* 操作按钮列 */
.transfer-td-actions {
  text-align: center;
  width: 80px;
  padding: 8px 16px;
}

/* 操作按钮 */
.transfer-actions {
  display: flex;
  gap: 4px;
  justify-content: center;
  opacity: 1;
  transition: opacity 0.2s;
}

.transfer-row:hover .transfer-actions {
  opacity: 1;
}

.transfer-action-btn {
  font-size: 24px;
  cursor: pointer;
  background-color: transparent;
  border: none;
  color: #64748B;
}


/* 状态信息 */
.transfer-status-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.transfer-status-text {
  font-size: 14px;
  font-weight: 500;
}

.transfer-status-paused {
  color: #909399;
}

.transfer-status-uploading {
  color: #605DFF;
  display: flex;
  gap: 8px;
}

.transfer-speed {
  color: #605DFF;
  font-size: 14px;
}

.transfer-time {
  color: #3A4252;
  font-size: 14px;
}

.transfer-status-waiting {
  color: #909399;
}

/* 进度条 */
.transfer-progress-bar {
  width: 120px;
  height: 6px;
  background: #f0f0f0;
  border-radius: 3px;
  overflow: hidden;
  margin-top: 4px;
}

.transfer-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #605DFF 0%, #6ec6ff 100%);
  border-radius: 3px;
  transition: width 0.3s;
}
