/* 更多侧边栏 */
/* Overlay removed as per request */
.more-drawer-overlay {
  display: none;
}

.more-drawer {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 280px;
  background: #ffffff;
  z-index: 1200;
  transform: translateX(-100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  padding: 20px 20px;
  border-right: 1px solid #F3F3F3;
  box-shadow: none;
  gap: 18px;
}

.more-drawer.visible {
  transform: translateX(0);
}

body.dark-mode .more-drawer {
  background: #1a1a1a;
  box-shadow: none;
  border-right: 1px solid #333333;
}

.drawer-header {
  margin-bottom: 8px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.drawer-header-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.drawer-slogan {
  font-size: 12px;
  color: #989898;
  margin-top: 4px;
  font-weight: normal;
  line-height: 1.2;
}

body.dark-mode .drawer-slogan {
  color: #666666;
}

.drawer-close-btn {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 8px;
  color: #666;
  font-size: 24px;
  transition: background-color 0.2s;
  user-select: none;
}

.drawer-close-btn:hover {
  background-color: rgba(0, 0, 0, 0.05);
  color: #333;
}

body.dark-mode .drawer-close-btn {
  color: #aaa;
}

body.dark-mode .drawer-close-btn:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.drawer-logo {
  width: 120px;
  height: auto;
  object-fit: contain;
}

.drawer-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center;
}

.drawer-btn {
  width: 100%;
  height: 56px;
  padding: 0 16px 0 24px;
  background: #ffffff;
  border: 1px solid #e3e3e3;
  border-radius: 12px;
  color: #333333;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.2s;
  text-decoration: none;
}

.drawer-btn:hover {
  background: #f5f5f5;
  border-color: #d0d0d0;
  text-decoration: none;
}

.drawer-btn:active {
  background: #eeeeee;
}

.drawer-btn.disabled {
  opacity: 0.5;
  cursor: not-allowed;
  background: #f9f9f9;
}

.drawer-btn.disabled .drawer-btn-icon {
  opacity: 0.4;
}

.drawer-btn-icon {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

body.dark-mode .drawer-btn {
  background: #2a2a2a;
  border-color: #404040;
  color: #e0e0e0;
}

body.dark-mode .drawer-btn:hover {
  background: #333333;
  border-color: #505050;
}

body.dark-mode .drawer-btn.disabled {
  background: #252525;
}

.drawer-footer {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.drawer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}

.drawer-link-item {
  font-size: 13px;
  color: #818181;
  text-decoration: none;
  transition: color 0.2s;
  position: relative;
}

.drawer-link-item:hover {
  color: #333333;
  text-decoration: none;
}

body.dark-mode .drawer-link-item {
  color: #999999;
}

body.dark-mode .drawer-link-item:hover {
  color: #e0e0e0;
}

.drawer-avatar {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  overflow: hidden;
  cursor: pointer;
  transition: opacity 0.2s;
}

.drawer-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.drawer-avatar:hover {
  opacity: 0.8;
}