
.env-badge[data-v-b24d9ade] {
  position: fixed;
  bottom: 10px;
  right: 10px;
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: bold;
  color: white;
  z-index: 9999;
}
.env-badge-dev[data-v-b24d9ade] {
  background-color: #42b983;
}
.env-badge-test[data-v-b24d9ade] {
  background-color: #f90;
}

#app {
  min-height: 100vh;
  background-color: #13161c;
  color: #ffffff;
}
.header {
  position: fixed;
  top: 15px;
  right: 15px;
  padding: 0;
  z-index: 1000;
}
.logout-btn {
  background-color: #2b3ff2;
  color: white;
  border: none;
  padding: 8px 20px;
  border-radius: 8px;
  font-size: 14px;
  box-shadow: 
    3px 3px 6px rgba(0, 0, 0, 0.2),
    -3px -3px 6px rgba(43, 63, 242, 0.1);
  transition: all 0.3s ease;
  white-space: nowrap;
}
.logout-btn:hover {
  transform: translateY(-2px);
  box-shadow: 
    4px 4px 8px rgba(0, 0, 0, 0.3),
    -4px -4px 8px rgba(43, 63, 242, 0.15);
}
.logout-btn:active {
  transform: translateY(0);
  box-shadow: 
    2px 2px 4px rgba(0, 0, 0, 0.2),
    -2px -2px 4px rgba(43, 63, 242, 0.1);
}
.bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background-color: #1a1d25;
  display: flex;
  justify-content: space-around;
  align-items: center;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
}
.nav-item {
  flex: 1;
  display: flex;
  justify-content: center;
  position: relative;
}
.nav-item:active {
  transform: scale(0.95);
}
.nav-item:active::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
}
.nav-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 8px;
  transition: all 0.3s ease;
}
.nav-icon {
  width: 24px;
  height: 24px;
  margin-bottom: 4px;
}
.nav-text {
  font-size: 12px;
  color: #666;
}
.nav-item.active .nav-text {
  color: #2b3ff2;
}
.nav-item.active .nav-content {
  transform: translateY(-2px);
}

/* 添加内容页面的下边距，避免被导航栏遮挡 */
.content-page {
  padding-bottom: 80px;
}

.login-container[data-v-fc15e66b] {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background-color: #1a1d25;
}
.login-box[data-v-fc15e66b] {
  background: #13161c;
  padding: 30px;
  border-radius: 20px;
  width: 300px;
  box-shadow: 
    8px 8px 16px rgba(0, 0, 0, 0.3),
    -8px -8px 16px rgba(19, 22, 28, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.05);
}
.login-box h2[data-v-fc15e66b] {
  color: #ffffff;
  text-align: center;
  margin-bottom: 30px;
  font-size: 24px;
}
.login-input-container[data-v-fc15e66b] {
  margin-bottom: 20px;
}
.login-input[data-v-fc15e66b] {
  width: 100%;
  height: 40px;
  background-color: #1a1d25;
  border: none;
  border-radius: 10px;
  padding: 0 15px;
  color: #ffffff;
  font-size: 14px;
  box-shadow: 
    inset 2px 2px 5px rgba(0, 0, 0, 0.3),
    inset -2px -2px 5px rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
  box-sizing: border-box;
}
.login-input[data-v-fc15e66b]:focus {
  outline: none;
  box-shadow: 
    inset 4px 4px 8px rgba(0, 0, 0, 0.3),
    inset -4px -4px 8px rgba(255, 255, 255, 0.05),
    0 0 10px rgba(43, 63, 242, 0.3);
  border: 1px solid rgba(43, 63, 242, 0.3);
}
.remember-password[data-v-fc15e66b] {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  color: #ffffff;
}
.remember-password input[type="checkbox"][data-v-fc15e66b] {
  margin-right: 8px;
}
.login-btn[data-v-fc15e66b] {
  position: relative;
  width: 100%;
  height: 45px;
  background: #2b3ff2;
  border: none;
  border-radius: 10px;
  color: white;
  font-size: 16px;
  transition: all 0.3s ease;
  box-shadow: 
    5px 5px 10px rgba(0, 0, 0, 0.3),
    -5px -5px 10px rgba(43, 63, 242, 0.1);
}
.login-btn[data-v-fc15e66b]:disabled {
  opacity: 0.7;
}
.login-btn[data-v-fc15e66b]:not(:disabled):hover {
  transform: translateY(-2px);
  box-shadow: 
    8px 8px 16px rgba(0, 0, 0, 0.3),
    -8px -8px 16px rgba(43, 63, 242, 0.15);
}
.login-btn[data-v-fc15e66b]:not(:disabled):active {
  transform: translateY(0);
  box-shadow: 
    4px 4px 8px rgba(0, 0, 0, 0.2),
    -4px -4px 8px rgba(43, 63, 242, 0.1);
}
.loading-spinner[data-v-fc15e66b] {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  border-top-color: #fff;
  animation: loading-fc15e66b 1s ease-in-out infinite;
  margin-right: 8px;
  vertical-align: middle;
}
@keyframes loading-fc15e66b {
0% { transform: rotate(0deg);
}
100% { transform: rotate(360deg);
}
}
.register-link[data-v-fc15e66b] {
  text-align: center;
  margin-top: 20px;
  color: #ffffff;
  font-size: 14px;
}
.register-btn[data-v-fc15e66b] {
  color: #2b3ff2;
  text-decoration: none;
  transition: color 0.3s ease;
}
.register-btn[data-v-fc15e66b]:hover {
  color: #4d5ef3;
}
.error-message[data-v-fc15e66b] {
  color: #f56c6c;
  font-size: 14px;
  text-align: center;
  margin-bottom: 15px;
  padding: 8px;
  background: rgba(245, 108, 108, 0.1);
  border-radius: 4px;
}

.register-container[data-v-dcf2e547] {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background-color: #1a1d25;
}
.register-box[data-v-dcf2e547] {
  background: #13161c;
  padding: 30px;
  border-radius: 20px;
  width: 300px;
  box-shadow: 
    8px 8px 16px rgba(0, 0, 0, 0.3),
    -8px -8px 16px rgba(19, 22, 28, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.05);
}
.register-box h2[data-v-dcf2e547] {
  color: #ffffff;
  text-align: center;
  margin-bottom: 30px;
  font-size: 24px;
}
.register-input-container[data-v-dcf2e547] {
  margin-bottom: 20px;
}
.register-input[data-v-dcf2e547] {
  width: 100%;
  height: 40px;
  background-color: #1a1d25;
  border: none;
  border-radius: 10px;
  padding: 0 15px;
  color: #ffffff;
  font-size: 14px;
  box-shadow: 
    inset 2px 2px 5px rgba(0, 0, 0, 0.3),
    inset -2px -2px 5px rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
  box-sizing: border-box;
}
.register-input[data-v-dcf2e547]:focus {
  outline: none;
  box-shadow: 
    inset 4px 4px 8px rgba(0, 0, 0, 0.3),
    inset -4px -4px 8px rgba(255, 255, 255, 0.05),
    0 0 10px rgba(43, 63, 242, 0.3);
  border: 1px solid rgba(43, 63, 242, 0.3);
}
.register-btn[data-v-dcf2e547] {
  position: relative;
  width: 100%;
  height: 45px;
  background: #2b3ff2;
  border: none;
  border-radius: 10px;
  color: white;
  font-size: 16px;
  transition: all 0.3s ease;
  box-shadow: 
    5px 5px 10px rgba(0, 0, 0, 0.3),
    -5px -5px 10px rgba(43, 63, 242, 0.1);
}
.register-btn[data-v-dcf2e547]:disabled {
  opacity: 0.7;
}
.register-btn[data-v-dcf2e547]:not(:disabled):hover {
  transform: translateY(-2px);
  box-shadow: 
    8px 8px 16px rgba(0, 0, 0, 0.3),
    -8px -8px 16px rgba(43, 63, 242, 0.15);
}
.register-btn[data-v-dcf2e547]:not(:disabled):active {
  transform: translateY(0);
  box-shadow: 
    4px 4px 8px rgba(0, 0, 0, 0.2),
    -4px -4px 8px rgba(43, 63, 242, 0.1);
}
.loading-spinner[data-v-dcf2e547] {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  border-top-color: #fff;
  animation: loading-dcf2e547 1s ease-in-out infinite;
  margin-right: 8px;
  vertical-align: middle;
}
@keyframes loading-dcf2e547 {
0% { transform: rotate(0deg);
}
100% { transform: rotate(360deg);
}
}
.login-link[data-v-dcf2e547] {
  text-align: center;
  margin-top: 20px;
  color: #ffffff;
  font-size: 14px;
}
.login-btn[data-v-dcf2e547] {
  color: #2b3ff2;
  text-decoration: none;
  transition: color 0.3s ease;
}
.login-btn[data-v-dcf2e547]:hover {
  color: #4d5ef3;
}

.notification-container[data-v-89204740] {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.notification[data-v-89204740] {
  padding: 12px 20px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 280px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  background: #1a1d25;
  border: 1px solid;
}
.notification.success[data-v-89204740] {
  border-color: #4caf50;
  color: #4caf50;
}
.notification.error[data-v-89204740] {
  border-color: #f44336;
  color: #f44336;
}
.notification.info[data-v-89204740] {
  border-color: #2196f3;
  color: #2196f3;
}
.notification-icon[data-v-89204740] {
  font-size: 18px;
}
.notification-text[data-v-89204740] {
  font-size: 14px;
}
.notification-enter-active[data-v-89204740],
.notification-leave-active[data-v-89204740] {
  transition: all 0.3s ease;
}
.notification-enter-from[data-v-89204740] {
  opacity: 0;
  transform: translateX(100%);
}
.notification-leave-to[data-v-89204740] {
  opacity: 0;
  transform: translateX(100%);
}

.content-page[data-v-8407b4be] {
  width: 100%;
  min-height: 100vh;
  padding: 20px;
  padding-top: 2vh;
  box-sizing: border-box;
  background: #1a1d25;
  position: relative;
  z-index: 0;
}
.function-header[data-v-8407b4be] {
  position: relative;
  z-index: 2;
  margin-bottom: 20px;
  padding: 25px 30px;
  background: linear-gradient(145deg, #1e2128, #1a1d25);
  border-radius: 20px;
  box-shadow: 
    12px 12px 24px rgba(0, 0, 0, 0.3),
    -12px -12px 24px rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.02);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.function-header h2[data-v-8407b4be] {
  color: #fff;
  margin: 0 0 20px 0;
  font-size: 24px;
  font-weight: 600;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  letter-spacing: 0.5px;
}
.search-container[data-v-8407b4be] {
  display: flex;
  align-items: center;
  gap: 15px;
  width: 90%;
  margin: 20px auto 0;
  position: relative;
}
.search-input[data-v-8407b4be] {
  flex: 1;
  height: 58px;
  padding: 0 30px;
  background: linear-gradient(145deg, #1e2128, #1a1d25);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 29px;
  color: #fff;
  font-size: 16px;
  letter-spacing: 0.5px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 
    inset 4px 4px 8px rgba(0, 0, 0, 0.2),
    inset -4px -4px 8px rgba(255, 255, 255, 0.02);
  min-width: 0; /* 防止flex子项溢出 */
}
.search-input[data-v-8407b4be]::placeholder {
  color: rgba(255, 255, 255, 0.3);
}
.search-input[data-v-8407b4be]:focus {
  outline: none;
  border-color: rgba(43, 63, 242, 0.3);
  box-shadow: 
    0 0 0 3px rgba(43, 63, 242, 0.1),
    inset 4px 4px 8px rgba(0, 0, 0, 0.2),
    inset -4px -4px 8px rgba(255, 255, 255, 0.02);
  transform: translateY(-1px);
}
.search-btn[data-v-8407b4be] {
  height: 48px;
  width: 120px;
  flex-shrink: 0;
  border: none;
  border-radius: 24px;
  background: linear-gradient(135deg, #2b3ff2, #1f2caa);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 
    0 10px 20px -10px rgba(43, 63, 242, 0.5),
    inset 0 -3px 0 rgba(0, 0, 0, 0.1);
}
.search-btn[data-v-8407b4be]:before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to right,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: 0.5s;
}
.search-btn[data-v-8407b4be]:hover {
  transform: translateY(-2px);
  box-shadow: 
    0 15px 25px -10px rgba(43, 63, 242, 0.6),
    inset 0 -3px 0 rgba(0, 0, 0, 0.1);
}
.search-btn[data-v-8407b4be]:hover:before {
  left: 100%;
}
.search-btn[data-v-8407b4be]:active {
  transform: translateY(0);
  box-shadow: 
    0 5px 10px -5px rgba(0, 0, 0, 0.3),
    inset 0 2px 4px rgba(0, 0, 0, 0.1);
}
.function-list[data-v-8407b4be] {
  height: calc(100vh - 180px);
  overflow-y: auto;
  padding-right: 10px;
  margin-top: 20px;
  padding-bottom: 80px;
  position: relative;
}
.function-list[data-v-8407b4be]::-webkit-scrollbar {
  width: 4px;
}
.function-list[data-v-8407b4be]::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 2px;
}
.function-list[data-v-8407b4be]::-webkit-scrollbar-thumb {
  background: rgba(43, 63, 242, 0.3);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.function-list[data-v-8407b4be]::-webkit-scrollbar-thumb:hover {
  background: rgba(43, 63, 242, 0.5);
}
.function-list-item[data-v-8407b4be] {
  background: linear-gradient(145deg, #1e2128, #1a1d25);
  border-radius: 16px;
  padding: 18px 25px;
  margin-bottom: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
  box-shadow: 
    6px 6px 12px rgba(0, 0, 0, 0.2),
    -6px -6px 12px rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.03);
  height: 60px;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
}
.function-list-item[data-v-8407b4be]:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, #2b3ff2, #1f2caa);
  opacity: 0;
  transition: all 0.3s ease;
}
.function-list-item[data-v-8407b4be]:hover {
  transform: translateX(5px);
  border-color: rgba(43, 63, 242, 0.2);
  box-shadow: 
    8px 8px 16px rgba(0, 0, 0, 0.25),
    -8px -8px 16px rgba(255, 255, 255, 0.03);
}
.function-list-item[data-v-8407b4be]:hover:before {
  opacity: 1;
}
.function-list-item.selected[data-v-8407b4be] {
  background: linear-gradient(145deg, #1a1d25, #1e2128);
  border: 1px solid rgba(43, 63, 242, 0.3);
  box-shadow: 
    inset 3px 3px 6px rgba(0, 0, 0, 0.2),
    inset -3px -3px 6px rgba(255, 255, 255, 0.02),
    0 0 15px rgba(43, 63, 242, 0.2);
}
.function-name[data-v-8407b4be] {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  margin-left: 20px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  position: absolute;
  left: 25px;
  right: 270px; /* 为按钮预留空间 */
}
.function-btns[data-v-8407b4be] {
  display: flex;
  gap: 15px;
  position: absolute;
  right: 25px;
  z-index: 2;
  background: inherit;
}
.function-btns[data-v-8407b4be]::before {
  content: '';
  position: absolute;
  left: -20px;
  top: 0;
  height: 100%;
  width: 20px;
  background: linear-gradient(to right, transparent, #1a1d25 80%);
  z-index: 1;
}
.function-management-btn[data-v-8407b4be] {
  height: 36px;
  line-height: 36px;
  padding: 0 25px;
  min-width: 90px;
  border-radius: 18px;
  border: none;
  color: white;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 2;
}
.function-management-btn[data-v-8407b4be]:before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to right,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  transition: 0.5s;
}
.function-management-btn[data-v-8407b4be]:hover:before {
  left: 100%;
}
.edit-btn[data-v-8407b4be] {
  background: linear-gradient(145deg, #2b3ff2, #1f2caa);
  box-shadow: 
    3px 3px 6px rgba(0, 0, 0, 0.2),
    -3px -3px 6px rgba(255, 255, 255, 0.02);
}
.edit-btn[data-v-8407b4be]:hover {
  transform: translateY(-2px);
  box-shadow: 
    5px 5px 10px rgba(0, 0, 0, 0.3),
    -5px -5px 10px rgba(255, 255, 255, 0.03);
}
.delete-btn[data-v-8407b4be] {
  background: linear-gradient(145deg, #f23d3d, #aa1f1f);
  box-shadow: 
    3px 3px 6px rgba(0, 0, 0, 0.2),
    -3px -3px 6px rgba(255, 255, 255, 0.02);
}
.delete-btn[data-v-8407b4be]:hover {
  transform: translateY(-2px);
  box-shadow: 
    5px 5px 10px rgba(0, 0, 0, 0.3),
    -5px -5px 10px rgba(255, 255, 255, 0.03);
}

/* 加载动画样式 */
.loading-container[data-v-8407b4be] {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 100px;
  opacity: 0;
  animation: fadeIn-8407b4be 0.3s ease forwards;
}
.loading-spinner[data-v-8407b4be] {
  width: 50px;
  height: 50px;
  border: 3px solid rgba(43, 63, 242, 0.1);
  border-top: 3px solid #2b3ff2;
  border-right: 3px solid #2b3ff2;
  border-radius: 50%;
  animation: spin-8407b4be 1s linear infinite;
  box-shadow: 
    0 0 15px rgba(43, 63, 242, 0.2),
    inset 0 0 15px rgba(43, 63, 242, 0.2);
}
.loading-text[data-v-8407b4be] {
  color: #fff;
  margin-top: 20px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  opacity: 0;
  animation: fadeInText-8407b4be 0.3s ease 0.2s forwards;
}
@keyframes spin-8407b4be {
0% { transform: rotate(0deg);
}
100% { transform: rotate(360deg);
}
}
@keyframes fadeIn-8407b4be {
from { opacity: 0; transform: translateY(20px);
}
to { opacity: 1; transform: translateY(0);
}
}
@keyframes fadeInText-8407b4be {
from { opacity: 0; transform: translateY(10px);
}
to { opacity: 1; transform: translateY(0);
}
}

/* 分页控件样式优化 */
.pagination[data-v-8407b4be] {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 25px;
  gap: 20px;
  padding: 15px 0;
}
.pagination-btn[data-v-8407b4be] {
  height: 36px;
  padding: 0 20px;
  border: none;
  border-radius: 18px;
  background: linear-gradient(145deg, #2b3ff2, #1f2caa);
  color: white;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
  box-shadow: 
    4px 4px 8px rgba(0, 0, 0, 0.2),
    -4px -4px 8px rgba(255, 255, 255, 0.03);
  position: relative;
  overflow: hidden;
}
.pagination-btn[data-v-8407b4be]:before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to right,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  transition: 0.5s;
}
.pagination-btn[data-v-8407b4be]:not(:disabled):hover {
  transform: translateY(-2px);
  box-shadow: 
    6px 6px 12px rgba(0, 0, 0, 0.25),
    -6px -6px 12px rgba(255, 255, 255, 0.04);
}
.pagination-btn[data-v-8407b4be]:not(:disabled):hover:before {
  left: 100%;
}
.pagination-btn[data-v-8407b4be]:disabled {
  opacity: 0.5;
  background: linear-gradient(145deg, #1e2128, #1a1d25);
}
.page-info[data-v-8407b4be] {
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  min-width: 70px;
  text-align: center;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* 响应式设计优化 */
@media (max-width: 768px) {
.function-header[data-v-8407b4be] {
    padding: 20px;
}
.search-container[data-v-8407b4be] {
    width: 100%;
    flex-direction: row; /* 保持在一行 */
    gap: 10px;
    margin: 15px 0 0;
}
.search-input[data-v-8407b4be] {
    height: 46px;
    padding: 0 20px;
    font-size: 14px;
    border-radius: 23px;
}
.search-btn[data-v-8407b4be] {
    width: 90px;
    height: 46px;
    font-size: 14px;
}
.function-list-item[data-v-8407b4be] {
    padding: 16px 20px;
    height: auto;
    min-height: 60px;
}
.function-name[data-v-8407b4be] {
    font-size: 15px;
    margin-left: 15px;
}
.function-btns[data-v-8407b4be] {
    gap: 10px;
}
.function-management-btn[data-v-8407b4be] {
    height: 34px;
    line-height: 34px;
    padding: 0 15px;
    min-width: 70px;
    font-size: 13px;
}
.pagination[data-v-8407b4be] {
    gap: 15px;
    margin-top: 20px;
}
.pagination-btn[data-v-8407b4be] {
    height: 34px;
    padding: 0 15px;
    font-size: 13px;
}
.page-info[data-v-8407b4be] {
    font-size: 14px;
    min-width: 60px;
}
.function-name[data-v-8407b4be] {
    right: 200px; /* 移动端按钮宽度较小，调整文本区域 */
}
}
/* 主容器样式 */
.api-development-container[data-v-8163d88f] {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 0;
    padding-bottom: 80px;
    width: 100%;
    box-sizing: border-box;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow-y: auto;
    background-color: #1a1d25;
}
/* 左侧容器：功能指令相关 */
.api-left-container[data-v-8163d88f] {
    background: #13161c;
    border-radius: 0;
    padding: 20px;
    box-shadow: 
        8px 8px 16px rgba(0, 0, 0, 0.3),
        -8px -8px 16px rgba(19, 22, 28, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    box-sizing: border-box;
}
/* 右侧容器：返回值相关 */
.api-right-container[data-v-8163d88f] {
    background: #13161c;
    border-radius: 0;
    padding: 20px;
    box-shadow: 
        8px 8px 16px rgba(0, 0, 0, 0.3),
        -8px -8px 16px rgba(19, 22, 28, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    box-sizing: border-box;
}
/* 标题样式 */
.api-development-title[data-v-8163d88f] {
    font-size: 16px;
    margin-left: 0;
    margin-top: 15px;
    margin-bottom: 10px;
    color: #ffffff;
}
/* 编辑框容器样式 */
.api-edit-container[data-v-8163d88f] {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 5px;
    margin-bottom: 15px;
    margin-left: 0;
    width: 100%;
    height: 2rem;
    background-color: #13161c;
    border-radius: 20px;
    padding: 5px;
    box-shadow: 
        inset 2px 2px 5px rgba(0, 0, 0, 0.3),
        inset -2px -2px 5px rgba(255, 255, 255, 0.05),
        5px 5px 10px rgba(0, 0, 0, 0.2),
        -5px -5px 10px rgba(19, 22, 28, 0.6);
    transition: all 0.3s ease;
    box-sizing: border-box;
}
/* 针对提交参数的特殊样式 */
.api-edit-container.params-container[data-v-8163d88f] {
    height: 100px;
}
.api-edit-container.params-container .api-edit[data-v-8163d88f] {
    height: 100%;
    padding: 10px;
}
/* 针对返回ANSI的特殊样式 */
.api-edit-container.ansi-container[data-v-8163d88f] {
    height: 150px;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #13161c;
    border-radius: 20px;
    padding: 5px;
    box-shadow: 
        inset 2px 2px 5px rgba(0, 0, 0, 0.3),
        inset -2px -2px 5px rgba(255, 255, 255, 0.05),
        5px 5px 10px rgba(0, 0, 0, 0.2),
        -5px -5px 10px rgba(19, 22, 28, 0.6);
    transition: all 0.3s ease;
}
.api-edit-container.ansi-container[data-v-8163d88f]:focus-within {
    box-shadow: 
        inset 4px 4px 8px rgba(0, 0, 0, 0.3),
        inset -4px -4px 8px rgba(255, 255, 255, 0.05),
        0 0 10px rgba(43, 63, 242, 0.3);
    border: 1px solid rgba(43, 63, 242, 0.3);
}
.api-edit-container.ansi-container .api-edit[data-v-8163d88f] {
    height: 100%;
    padding: 10px;
    margin: 0;
    font-size: 12px;
    width: 100%;
    background-color: transparent;
    border: none;
    color: #ffffff;
    resize: none;
    outline: none;
    font-family: 'Microsoft YaHei', sans-serif;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
.api-edit-container[data-v-8163d88f]:focus-within {
    box-shadow: 
        inset 4px 4px 8px rgba(0, 0, 0, 0.3),
        inset -4px -4px 8px rgba(255, 255, 255, 0.05),
        0 0 10px rgba(43, 63, 242, 0.3);
    border: 1px solid rgba(43, 63, 242, 0.3);
}
/* 编辑框样式 */
.api-edit[data-v-8163d88f] {
    margin-top: 0;
    margin-left: 0;
    font-size: 12px;
    width: 100%;
    height: 100%;
    background-color: transparent;
    border: none;
    color: #ffffff;
    resize: none;
    outline: none;
    font-family: 'Microsoft YaHei', sans-serif;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    padding: 0 10px;
}
.api-edit[data-v-8163d88f]:focus {
    outline: none;
    border-color: transparent;
}
/* 按钮样式 */
.api-development-btn[data-v-8163d88f] {
    margin-top: 20px;
    margin-left: 0;
    width: 100%;
    height: 2.5rem;
    background-color: #2b3ff2;
    border-radius: 20px;
    border: none;
    color: white;
    font-size: 14px;
    transition: all 0.3s ease;
    font-family: 'Microsoft YaHei', sans-serif;
    box-shadow: 
        5px 5px 10px rgba(0, 0, 0, 0.3),
        -5px -5px 10px rgba(43, 63, 242, 0.1);
}
.api-development-btn[data-v-8163d88f]:hover {
    box-shadow: 
        3px 3px 6px rgba(0, 0, 0, 0.3),
        -3px -3px 6px rgba(43, 63, 242, 0.15);
    transform: translateY(-2px);
}
.api-development-btn[data-v-8163d88f]:active {
    transform: translateY(0);
    box-shadow: 
        2px 2px 4px rgba(0, 0, 0, 0.3),
        -2px -2px 4px rgba(43, 63, 242, 0.2);
}
/* 下拉选择框样式 */
.api-select[data-v-8163d88f] {
    width: 100%;
    height: 2rem;
    margin-top: 5px;
    margin-left: 0;
    background-color: #13161c;
    border: none;
    border-radius: 20px;
    color: #ffffff;
    padding: 0 15px;
    font-size: 12px;
    appearance: none;
    box-shadow: 
        inset 2px 2px 5px rgba(0, 0, 0, 0.3),
        inset -2px -2px 5px rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}
.api-select[data-v-8163d88f]:focus {
    outline: none;
    box-shadow: 
        inset 4px 4px 8px rgba(0, 0, 0, 0.3),
        inset -4px -4px 8px rgba(255, 255, 255, 0.05),
        0 0 10px rgba(43, 63, 242, 0.3);
    border: 1px solid rgba(43, 63, 242, 0.3);
}
/* 针对发送格式的特殊样式 */
.api-edit-container.format-container[data-v-8163d88f] {
    height: 8rem;
}
.api-edit-container.format-container .api-edit[data-v-8163d88f] {
    height: 100%;
    padding: 10px;
}
/* 针对textarea的特殊调整 */
textarea.api-edit[data-v-8163d88f] {
  padding: 10px;
}
/* 容器响应式布局 */
@media (min-width: 768px) {
.api-development-container[data-v-8163d88f] {
    flex-direction: row;
}
.api-left-container[data-v-8163d88f],
  .api-right-container[data-v-8163d88f] {
    width: 48%;
}
}
@media (max-width: 767px) {
.api-left-container[data-v-8163d88f],
  .api-right-container[data-v-8163d88f] {
    width: 100%;
}
}
.content-page[data-v-8163d88f] {
  width: 100%;
  min-height: 100vh;
  padding: 20px;
  padding-top: 5vh; /* 修改顶部间距为5% */
  box-sizing: border-box;
  background: #1a1d25;
  position: relative;
  margin-top: 0;
  z-index: 0; /* 修改z-index */
}
.api-development[data-v-8163d88f] {
  width: 100%;
  min-height: 100vh;
  padding: 20px;
  padding-bottom: 100px;
  box-sizing: border-box;
  background: #1a1d25;
}
.api-form[data-v-8163d88f] {
  max-width: 800px;
  margin: 0 auto;
  padding: 30px;
  background: linear-gradient(145deg, #1e2128, #1a1d25);
  border-radius: 20px;
  box-shadow: 
    12px 12px 24px rgba(0, 0, 0, 0.3),
    -12px -12px 24px rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.02);
}
.form-group[data-v-8163d88f] {
  margin-bottom: 25px;
  position: relative;
}
.form-group label[data-v-8163d88f] {
  display: block;
  color: #fff;
  margin-bottom: 10px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}
.form-input[data-v-8163d88f],
.form-select[data-v-8163d88f],
.form-textarea[data-v-8163d88f] {
  width: 100%;
  padding: 15px 20px;
  background: #1a1d25;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  color: #fff;
  font-size: 14px;
  transition: all 0.3s ease;
  box-shadow: 
    inset 4px 4px 8px rgba(0, 0, 0, 0.2),
    inset -4px -4px 8px rgba(255, 255, 255, 0.02);
}
.form-input[data-v-8163d88f]:focus,
.form-select[data-v-8163d88f]:focus,
.form-textarea[data-v-8163d88f]:focus {
  outline: none;
  border-color: rgba(43, 63, 242, 0.3);
  box-shadow: 
    inset 5px 5px 10px rgba(0, 0, 0, 0.25),
    inset -5px -5px 10px rgba(255, 255, 255, 0.03),
    0 0 0 2px rgba(43, 63, 242, 0.1);
  transform: translateY(-1px);
}
.form-textarea[data-v-8163d88f] {
  min-height: 120px;
  resize: vertical;
  line-height: 1.6;
}
.form-select[data-v-8163d88f] {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%232b3ff2' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 16px;
  padding-right: 45px;
}
.form-select option[data-v-8163d88f] {
  background: #1a1d25;
  color: #fff;
  padding: 12px;
  font-size: 14px;
}
.button-group[data-v-8163d88f] {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-top: 40px;
  padding: 0 20px;
}
.api-btn[data-v-8163d88f] {
  min-width: 160px;
  height: 50px;
  border: none;
  border-radius: 25px;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.5px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}
.api-btn[data-v-8163d88f]:before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to right,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: 0.5s;
}
.api-btn[data-v-8163d88f]:hover:before {
  left: 100%;
}
.test-btn[data-v-8163d88f] {
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  box-shadow: 0 10px 20px -10px rgba(59, 130, 246, 0.5),
              inset 0 -3px 0 rgba(0, 0, 0, 0.1);
}
.test-btn[data-v-8163d88f]:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 25px -10px rgba(59, 130, 246, 0.6),
              inset 0 -3px 0 rgba(0, 0, 0, 0.1);
}
.save-btn[data-v-8163d88f] {
  background: linear-gradient(135deg, #10b981, #059669);
  box-shadow: 0 10px 20px -10px rgba(16, 185, 129, 0.5),
              inset 0 -3px 0 rgba(0, 0, 0, 0.1);
}
.save-btn[data-v-8163d88f]:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 25px -10px rgba(16, 185, 129, 0.6),
              inset 0 -3px 0 rgba(0, 0, 0, 0.1);
}
.reset-btn[data-v-8163d88f] {
  background: linear-gradient(135deg, #ef4444, #dc2626);
  box-shadow: 0 10px 20px -10px rgba(239, 68, 68, 0.5),
              inset 0 -3px 0 rgba(0, 0, 0, 0.1);
}
.reset-btn[data-v-8163d88f]:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 25px -10px rgba(239, 68, 68, 0.6),
              inset 0 -3px 0 rgba(0, 0, 0, 0.1);
}
.api-btn[data-v-8163d88f]:active {
  transform: translateY(0);
  box-shadow: 0 5px 10px -5px rgba(0, 0, 0, 0.3),
              inset 0 2px 4px rgba(0, 0, 0, 0.1);
}
.api-btn[data-v-8163d88f]:disabled {
  opacity: 0.7;
  transform: none;
  box-shadow: none;
}
.test-result[data-v-8163d88f] {
  margin-top: 25px;
  padding: 20px;
  border-radius: 15px;
  background: linear-gradient(145deg, #1e2128, #1a1d25);
  box-shadow: 
    inset 4px 4px 8px rgba(0, 0, 0, 0.2),
    inset -4px -4px 8px rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.03);
}
.test-result pre[data-v-8163d88f] {
  margin: 0;
  white-space: pre-wrap;
  word-wrap: break-word;
  color: #fff;
  font-family: 'Fira Code', monospace;
  font-size: 14px;
  line-height: 1.6;
}
.test-result pre.success[data-v-8163d88f] {
  color: #2ecc71;
  text-shadow: 0 0 10px rgba(46, 204, 113, 0.3);
}
.test-result pre.error[data-v-8163d88f] {
  color: #e74c3c;
  text-shadow: 0 0 10px rgba(231, 76, 60, 0.3);
}
@media (max-width: 768px) {
.api-development[data-v-8163d88f] {
    padding: 15px;
    padding-bottom: 120px;
}
.api-form[data-v-8163d88f] {
    padding: 20px;
}
.form-group[data-v-8163d88f] {
    margin-bottom: 20px;
}
.form-group label[data-v-8163d88f] {
    font-size: 14px;
}
.form-input[data-v-8163d88f],
  .form-select[data-v-8163d88f],
  .form-textarea[data-v-8163d88f] {
    padding: 12px 15px;
    font-size: 13px;
}
.button-group[data-v-8163d88f] {
    flex-direction: column;
    gap: 15px;
    padding: 0 15px;
}
.api-btn[data-v-8163d88f] {
    width: 100%;
    height: 45px;
    font-size: 15px;
}
.test-result[data-v-8163d88f] {
    padding: 15px;
    margin-top: 20px;
}
.test-result pre[data-v-8163d88f] {
    font-size: 13px;
}
}

.loading-overlay[data-v-f02bca7f] {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(26, 29, 37, 0.7);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}
.loading-spinner[data-v-f02bca7f] {
  width: 40px;
  height: 40px;
  border: 3px solid #2b3ff2;
  border-top: 3px solid transparent;
  border-radius: 50%;
  animation: spin-f02bca7f 1s linear infinite;
}
.loading-text[data-v-f02bca7f] {
  color: #fff;
  margin-top: 15px;
  font-size: 14px;
}
@keyframes spin-f02bca7f {
0% { transform: rotate(0deg);
}
100% { transform: rotate(360deg);
}
}

.error-message[data-v-beee3c1c] {
  background: rgba(231, 76, 60, 0.1);
  border-left: 4px solid #e74c3c;
  color: #e74c3c;
  padding: 15px;
  margin: 10px 0;
  border-radius: 4px;
  display: flex;
  align-items: center;
  font-size: 14px;
}
.error-icon[data-v-beee3c1c] {
  margin-right: 10px;
  font-size: 18px;
}
.retry-button[data-v-beee3c1c] {
  margin-left: auto;
  background: none;
  border: 1px solid #e74c3c;
  color: #e74c3c;
  padding: 5px 15px;
  border-radius: 15px;
  transition: all 0.3s ease;
}
.retry-button[data-v-beee3c1c]:hover {
  background: #e74c3c;
  color: white;
}
.fade-enter-active[data-v-beee3c1c],
.fade-leave-active[data-v-beee3c1c] {
  transition: opacity 0.3s ease;
}
.fade-enter-from[data-v-beee3c1c],
.fade-leave-to[data-v-beee3c1c] {
  opacity: 0;
}

.edit-dialog[data-v-1d803678] {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}
.dialog-content[data-v-1d803678] {
  background: #1a1d25;
  padding: 30px;
  border-radius: 15px;
  width: 90%;
  max-width: 600px;
  position: relative;
  box-shadow: 
    12px 12px 24px rgba(0, 0, 0, 0.4),
    -12px -12px 24px rgba(255, 255, 255, 0.05);
}
.dialog-content h2[data-v-1d803678] {
  color: #fff;
  margin: 0 0 20px;
  font-size: 20px;
}
.dialog-close-btn[data-v-1d803678] {
  position: absolute;
  top: 15px;
  right: 15px;
  background: none;
  border: none;
  color: #fff;
  font-size: 24px;
  padding: 0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}
.dialog-close-btn[data-v-1d803678]:hover {
  background: rgba(255, 255, 255, 0.1);
}
.form-group[data-v-1d803678] {
  margin-bottom: 20px;
}
.form-group label[data-v-1d803678] {
  display: block;
  color: #fff;
  margin-bottom: 10px;
  font-size: 14px;
}
.form-input[data-v-1d803678],
.form-textarea[data-v-1d803678] {
  width: 100%;
  background: #1a1d25;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 12px;
  color: #fff;
  font-size: 14px;
  box-shadow: 
    inset 8px 8px 16px rgba(0, 0, 0, 0.3),
    inset -8px -8px 16px rgba(255, 255, 255, 0.05);
  outline: none;
  box-sizing: border-box;
  transition: all 0.3s ease;
}
.form-input[data-v-1d803678]:focus,
.form-textarea[data-v-1d803678]:focus {
  border-color: #2b3ff2;
}
.form-input.has-error[data-v-1d803678],
.form-textarea.has-error[data-v-1d803678] {
  border-color: #f44336;
}
.error-text[data-v-1d803678] {
  color: #f44336;
  font-size: 12px;
  margin-top: 5px;
  display: block;
}
.form-textarea[data-v-1d803678] {
  resize: vertical;
  min-height: 100px;
}
.dialog-buttons[data-v-1d803678] {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 20px;
}
.cancel-btn[data-v-1d803678],
.save-btn[data-v-1d803678] {
  height: 35px;
  border: none;
  border-radius: 17.5px;
  color: white;
  font-size: 14px;
  padding: 0 20px;
  transition: all 0.3s ease;
  box-shadow: 
    5px 5px 10px rgba(0, 0, 0, 0.3),
    -5px -5px 10px rgba(255, 255, 255, 0.05);
}
.cancel-btn[data-v-1d803678] {
  background: linear-gradient(145deg, #666, #444);
}
.save-btn[data-v-1d803678] {
  background: linear-gradient(145deg, #2b3ff2, #1f2caa);
}
.cancel-btn[data-v-1d803678]:disabled,
.save-btn[data-v-1d803678]:disabled {
  opacity: 0.7;
}

/* 动画效果 */
.dialog-enter-active[data-v-1d803678],
.dialog-leave-active[data-v-1d803678] {
  transition: opacity 0.3s ease;
}
.dialog-enter-active .dialog-content[data-v-1d803678] {
  animation: slide-up-1d803678 0.3s ease;
}
.dialog-leave-active .dialog-content[data-v-1d803678] {
  animation: slide-down-1d803678 0.3s ease;
}
.dialog-enter-from[data-v-1d803678],
.dialog-leave-to[data-v-1d803678] {
  opacity: 0;
}
@keyframes slide-up-1d803678 {
from {
    opacity: 0;
    transform: translateY(20px);
}
to {
    opacity: 1;
    transform: translateY(0);
}
}
@keyframes slide-down-1d803678 {
from {
    opacity: 1;
    transform: translateY(0);
}
to {
    opacity: 0;
    transform: translateY(20px);
}
}

.content-page[data-v-83dd83de] {
  width: 100%;
  min-height: 100vh;
  background: #1a1d25;
  padding: 20px;
  padding-top: 20px;
  box-sizing: border-box;
  position: relative;
  margin-top: 0;
  z-index: 0;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
}
.menu-header[data-v-83dd83de] {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  background: #1a1d25;
  border-radius: 15px;
  box-shadow: 
    12px 12px 24px rgba(0, 0, 0, 0.4),
    -12px -12px 24px rgba(255, 255, 255, 0.05);
  margin-bottom: 20px;
}
.menu-header h2[data-v-83dd83de] {
  color: #fff;
  margin: 0;
  font-size: 22px;
  font-weight: 600;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  letter-spacing: 0.5px;
}
.add-menu-btn[data-v-83dd83de] {
  height: 38px;
  border: none;
  border-radius: 19px;
  background: linear-gradient(145deg, #2b3ff2, #1f2caa);
  color: white;
  font-size: 14px;
  padding: 0 25px;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  box-shadow: 
    5px 5px 10px rgba(0, 0, 0, 0.3),
    -5px -5px 10px rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.add-menu-btn[data-v-83dd83de]:before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to right,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  transition: 0.5s;
}
.add-menu-btn[data-v-83dd83de]:hover {
  transform: translateY(-2px);
  box-shadow: 
    8px 8px 16px rgba(0, 0, 0, 0.4),
    -8px -8px 16px rgba(255, 255, 255, 0.07);
}
.add-menu-btn[data-v-83dd83de]:hover:before {
  left: 100%;
}
.add-menu-btn[data-v-83dd83de]:active {
  transform: translateY(0);
  box-shadow: 
    inset 4px 4px 8px rgba(0, 0, 0, 0.3),
    inset -4px -4px 8px rgba(255, 255, 255, 0.05);
}
.menu-list-container[data-v-83dd83de] {
  height: calc(100vh - 180px);
  overflow-y: auto;
  padding-right: 10px;
  margin-top: 20px;
  padding-bottom: 80px;
  position: relative;
}
.menu-list-container[data-v-83dd83de]::-webkit-scrollbar {
  width: 4px;
}
.menu-list-container[data-v-83dd83de]::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 2px;
}
.menu-list-container[data-v-83dd83de]::-webkit-scrollbar-thumb {
  background: rgba(43, 63, 242, 0.3);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.menu-list-container[data-v-83dd83de]::-webkit-scrollbar-thumb:hover {
  background: rgba(43, 63, 242, 0.5);
}
.function-list-item[data-v-83dd83de] {
  background: linear-gradient(145deg, #1e2128, #1a1d25);
  border-radius: 16px;
  padding: 18px 25px;
  margin-bottom: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
  box-shadow: 
    6px 6px 12px rgba(0, 0, 0, 0.2),
    -6px -6px 12px rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.03);
  height: 60px;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
}
.function-list-item[data-v-83dd83de]:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, #2b3ff2, #1f2caa);
  opacity: 0;
  transition: all 0.3s ease;
}
.function-list-item[data-v-83dd83de]:hover {
  transform: translateX(5px);
  border-color: rgba(43, 63, 242, 0.2);
  box-shadow: 
    8px 8px 16px rgba(0, 0, 0, 0.25),
    -8px -8px 16px rgba(255, 255, 255, 0.03);
}
.function-list-item[data-v-83dd83de]:hover:before {
  opacity: 1;
}
.function-list-item.selected[data-v-83dd83de] {
  background: linear-gradient(145deg, #1a1d25, #1e2128);
  border: 1px solid rgba(43, 63, 242, 0.3);
  box-shadow: 
    inset 3px 3px 6px rgba(0, 0, 0, 0.2),
    inset -3px -3px 6px rgba(255, 255, 255, 0.02),
    0 0 15px rgba(43, 63, 242, 0.2);
}
.function-list-item label[data-v-83dd83de] {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  flex: 1;
  margin-left: 20px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}
.menu-setting-btn-container[data-v-83dd83de] {
  display: flex;
  gap: 15px;
}
.menu-setting-btn[data-v-83dd83de] {
  height: 36px;
  line-height: 36px;
  padding: 0 25px;
  min-width: 90px;
  border-radius: 18px;
  border: none;
  color: white;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, #2b3ff2, #1f2caa);
  box-shadow: 
    3px 3px 6px rgba(0, 0, 0, 0.2),
    -3px -3px 6px rgba(255, 255, 255, 0.02);
}
.menu-setting-btn[data-v-83dd83de]:before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to right,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  transition: 0.5s;
}
.menu-setting-btn[data-v-83dd83de]:hover {
  transform: translateY(-2px);
  box-shadow: 
    5px 5px 10px rgba(0, 0, 0, 0.3),
    -5px -5px 10px rgba(255, 255, 255, 0.03);
}
.menu-setting-btn[data-v-83dd83de]:hover:before {
  left: 100%;
}
.menu-setting-btn[data-v-83dd83de]:active {
  transform: translateY(0);
  box-shadow: 
    inset 4px 4px 8px rgba(0, 0, 0, 0.3),
    inset -4px -4px 8px rgba(255, 255, 255, 0.05);
}
.menu-setting-delete-btn[data-v-83dd83de] {
  background: linear-gradient(145deg, #f23d3d, #aa1f1f);
}
.menu-setting-btn[data-v-83dd83de]:disabled {
  opacity: 0.7;
  transform: none;
  box-shadow: none;
}

/* 分页控件样式优化 */
.pagination[data-v-83dd83de] {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 25px;
  gap: 20px;
  padding: 15px 0;
}
.pagination-btn[data-v-83dd83de] {
  height: 36px;
  padding: 0 20px;
  border: none;
  border-radius: 18px;
  background: linear-gradient(145deg, #2b3ff2, #1f2caa);
  color: white;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
  box-shadow: 
    4px 4px 8px rgba(0, 0, 0, 0.2),
    -4px -4px 8px rgba(255, 255, 255, 0.03);
  position: relative;
  overflow: hidden;
}
.pagination-btn[data-v-83dd83de]:before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to right,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  transition: 0.5s;
}
.pagination-btn[data-v-83dd83de]:not(:disabled):hover {
  transform: translateY(-2px);
  box-shadow: 
    6px 6px 12px rgba(0, 0, 0, 0.25),
    -6px -6px 12px rgba(255, 255, 255, 0.04);
}
.pagination-btn[data-v-83dd83de]:not(:disabled):hover:before {
  left: 100%;
}
.pagination-btn[data-v-83dd83de]:disabled {
  opacity: 0.5;
  background: linear-gradient(145deg, #1e2128, #1a1d25);
}
.page-info[data-v-83dd83de] {
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  min-width: 70px;
  text-align: center;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}
@media (max-width: 768px) {
.menu-list-container[data-v-83dd83de] {
    padding-right: 0;
}
.function-list-item[data-v-83dd83de] {
    padding: 16px 20px;
    height: auto;
    min-height: 60px;
}
.function-list-item label[data-v-83dd83de] {
    font-size: 15px;
    margin-left: 15px;
}
.menu-setting-btn-container[data-v-83dd83de] {
    gap: 10px;
}
.menu-setting-btn[data-v-83dd83de] {
    height: 34px;
    line-height: 34px;
    padding: 0 20px;
    min-width: 80px;
    font-size: 13px;
}
.pagination[data-v-83dd83de] {
    gap: 15px;
    margin-top: 20px;
}
.pagination-btn[data-v-83dd83de] {
    height: 34px;
    padding: 0 15px;
    font-size: 13px;
}
.page-info[data-v-83dd83de] {
    font-size: 14px;
    min-width: 60px;
}
}

.content-page[data-v-f78cd61d] {
  padding: 10px;
  max-width: 800px;
  margin: 0 auto;
  min-height: 100vh;
  position: relative;
}
@media (min-width: 768px) {
.content-page[data-v-f78cd61d] {
    padding: 20px;
}
}
.header[data-v-f78cd61d] {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 100;
}
h2[data-v-f78cd61d] {
  margin: 10px 0 8px 0;
  color: #ffffff;
  font-size: 15px;
  font-weight: 500;
}
@media (min-width: 768px) {
h2[data-v-f78cd61d] {
    margin: 15px 0 10px 0;
    font-size: 16px;
}
}
.plugin-info-edit-container[data-v-f78cd61d] {
  margin-bottom: 10px;
  border-radius: 10px;
  background: #13161c;
  box-shadow: 
    inset 2px 2px 5px rgba(0, 0, 0, 0.2),
    inset -2px -2px 5px rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}
.plugin-info-edit[data-v-f78cd61d] {
  width: 100%;
  padding: 10px;
  background: transparent;
  border: none;
  color: #ffffff;
  font-size: 14px;
  line-height: 1.3;
  resize: none;
  border-radius: 10px;
}
.plugin-info-edit[data-v-f78cd61d]:focus {
  outline: none;
  box-shadow: 
    inset 4px 4px 8px rgba(0, 0, 0, 0.3),
    inset -4px -4px 8px rgba(255, 255, 255, 0.05),
    0 0 10px rgba(43, 63, 242, 0.3);
}
.plugin-info-edit[data-v-f78cd61d]::placeholder {
  color: rgba(255, 255, 255, 0.3);
}
.plugin-info-edit[data-v-f78cd61d]::placeholder {
  color: rgba(255, 255, 255, 0.3);
}
.plugin-info-edit[data-v-f78cd61d]::placeholder {
  color: rgba(255, 255, 255, 0.3);
}
.plugin-info-btn-up[data-v-f78cd61d] {
  height: 130px !important;
}
.button-container[data-v-f78cd61d] {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 15px;
  margin-top: 15px;
}
.plugin-info-btn[data-v-f78cd61d] {
  position: relative;
  width: 150px;
  height: 38px;
  font-size: 14px;
  background-color: #2b3ff2;
  color: white;
  border: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  box-shadow: 
    3px 3px 6px rgba(0, 0, 0, 0.2),
    -3px -3px 6px rgba(43, 63, 242, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 768px) {
.plugin-info-btn[data-v-f78cd61d] {
    width: 160px;
    height: 40px;
    font-size: 15px;
}
}
.plugin-info-btn[data-v-f78cd61d]:not(:disabled):hover {
  transform: translateY(-3px);
  box-shadow: 
    8px 8px 15px rgba(0, 0, 0, 0.3),
    -8px -8px 15px rgba(43, 63, 242, 0.15);
  background-color: #3346ff;
}
.plugin-info-btn[data-v-f78cd61d]:not(:disabled):active {
  transform: translateY(-1px);
  box-shadow: 
    3px 3px 6px rgba(0, 0, 0, 0.2),
    -3px -3px 6px rgba(43, 63, 242, 0.1);
}
.plugin-info-btn[data-v-f78cd61d]:disabled {
  opacity: 0.7;
}
.logout-btn[data-v-f78cd61d] {
  background-color: transparent;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 8px 15px;
  border-radius: 8px;
  font-size: 13px;
  transition: all 0.3s ease;
}
@media (min-width: 768px) {
.logout-btn[data-v-f78cd61d] {
    padding: 8px 20px;
    font-size: 14px;
}
}
.logout-btn[data-v-f78cd61d]:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}
.logout-btn[data-v-f78cd61d]:active {
  transform: translateY(0);
}

/* 加载遮罩 */
.loading-mask[data-v-f78cd61d] {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(19, 22, 28, 0.8);
  backdrop-filter: blur(5px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}
.loading-mask span[data-v-f78cd61d] {
  margin-top: 15px;
  color: #ffffff;
  font-size: 14px;
}

/* 加载动画 */
@keyframes loading-f78cd61d {
0% { transform: rotate(0deg);
}
100% { transform: rotate(360deg);
}
}
.loading-spinner[data-v-f78cd61d] {
  display: inline-block;
  width: 40px;
  height: 40px;
  border: 3px solid rgba(43, 63, 242, 0.1);
  border-radius: 50%;
  border-top-color: #2b3ff2;
  animation: loading-f78cd61d 0.8s ease-in-out infinite;
  box-shadow: 0 0 10px rgba(43, 63, 242, 0.3);
}
.plugin-info-btn .loading-spinner[data-v-f78cd61d] {
  width: 20px;
  height: 20px;
  border-width: 2px;
  margin-right: 8px;
  border-color: rgba(255, 255, 255, 0.2);
  border-top-color: #ffffff;
}
.dashboard-container[data-v-f78cd61d] {
  padding: 1rem;
  max-width: 1200px;
  margin: 0 auto;
}
.dashboard-header[data-v-f78cd61d] {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}
.dashboard-header h1[data-v-f78cd61d] {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0;
  color: #fff;
}
.dashboard-actions[data-v-f78cd61d] {
  display: flex;
  gap: 1rem;
}
.refresh-button[data-v-f78cd61d] {
  background-color: transparent;
  border: 1px solid #2b3242;
  border-radius: 8px;
  padding: 0.4rem 0.8rem;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: all 0.2s;
  color: #fff;
}
.refresh-button[data-v-f78cd61d]:hover {
  background-color: #2b3242;
}
.logout-button[data-v-f78cd61d] {
  background-color: transparent;
  border: 1px solid #2b3242;
  border-radius: 8px;
  padding: 0.4rem 0.8rem;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: all 0.2s;
  color: #fff;
}
.logout-button[data-v-f78cd61d]:hover {
  background-color: #2b3242;
}
.debug-button[data-v-f78cd61d] {
  background-color: transparent;
  border: 1px solid #2b3242;
  border-radius: 8px;
  padding: 0.4rem 0.8rem;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: all 0.2s;
  color: #fff;
}
.debug-button[data-v-f78cd61d]:hover {
  background-color: #2b3242;
}
.stat-cards[data-v-f78cd61d] {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.stat-card[data-v-f78cd61d] {
  background-color: #1a1d25;
  border-radius: 10px;
  box-shadow: 
    12px 12px 24px rgba(0, 0, 0, 0.3),
    -12px -12px 24px rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 1.25rem;
  display: flex;
  align-items: center;
  transition: transform 0.3s ease;
}
.stat-card[data-v-f78cd61d]:hover {
  transform: translateY(-5px);
}
.icon-container[data-v-f78cd61d] {
  width: 50px;
  height: 50px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
}
.icon-container i[data-v-f78cd61d] {
  font-size: 1.75rem;
  color: white;
}
.menu-icon[data-v-f78cd61d] {
  background-color: #4361ee;
}
.feature-icon[data-v-f78cd61d] {
  background-color: #3a0ca3;
}
.task-icon[data-v-f78cd61d] {
  background-color: #f72585;
}
.client-icon[data-v-f78cd61d] {
  background-color: #4cc9f0;
}
.stat-info[data-v-f78cd61d] {
  flex: 1;
}
.stat-info h3[data-v-f78cd61d] {
  font-size: 0.9rem;
  font-weight: 500;
  margin: 0 0 0.5rem 0;
  color: #adb5bd;
}
.stat-value[data-v-f78cd61d] {
  font-size: 1.5rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  color: #fff;
}
.status-indicator[data-v-f78cd61d] {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
  margin-right: 8px;
}
.status-online[data-v-f78cd61d] {
  background-color: #28a745;
}
.status-offline[data-v-f78cd61d] {
  background-color: #dc3545;
}
.last-heartbeat[data-v-f78cd61d] {
  font-size: 0.75rem;
  color: #adb5bd;
  margin-top: 0.25rem;
}
.recent-commands[data-v-f78cd61d] {
  background-color: #1a1d25;
  border-radius: 10px;
  box-shadow: 
    12px 12px 24px rgba(0, 0, 0, 0.3),
    -12px -12px 24px rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 1.25rem;
}
.recent-commands h2[data-v-f78cd61d] {
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0 0 1rem 0;
  color: #fff;
}
.table-container[data-v-f78cd61d] {
  overflow-x: auto;
}
table[data-v-f78cd61d] {
  width: 100%;
  border-collapse: collapse;
}
th[data-v-f78cd61d] {
  text-align: left;
  padding: 0.75rem;
  border-bottom: 2px solid #2b3242;
  font-weight: 600;
  color: #adb5bd;
}
td[data-v-f78cd61d] {
  padding: 0.75rem;
  border-bottom: 1px solid #2b3242;
  color: #fff;
}
.empty-message[data-v-f78cd61d] {
  text-align: center;
  color: #adb5bd;
  padding: 2rem 0;
}
.status-pending[data-v-f78cd61d] {
  color: #ffc107;
}
.status-success[data-v-f78cd61d] {
  color: #28a745;
}
.status-failed[data-v-f78cd61d] {
  color: #dc3545;
}

/* 添加调试相关样式 */
.debug-overlay[data-v-f78cd61d] {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}
.debug-modal[data-v-f78cd61d] {
  background-color: #1a1d25;
  border-radius: 10px;
  width: 80%;
  max-width: 800px;
  max-height: 80vh;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.debug-header[data-v-f78cd61d] {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  background-color: #13161c;
  border-bottom: 1px solid #2b3242;
}
.debug-header h3[data-v-f78cd61d] {
  margin: 0;
  color: #fff;
}
.close-button[data-v-f78cd61d] {
  background: none;
  border: none;
  color: #fff;
  font-size: 1.5rem;
}
.debug-content[data-v-f78cd61d] {
  padding: 1rem;
  overflow-y: auto;
  color: #fff;
}
.debug-content pre[data-v-f78cd61d] {
  background-color: #13161c;
  padding: 1rem;
  border-radius: 5px;
  overflow-x: auto;
  white-space: pre-wrap;
  word-break: break-all;
}
.debug-content h4[data-v-f78cd61d] {
  margin-top: 1rem;
  margin-bottom: 0.5rem;
}
.debug-content .error[data-v-f78cd61d] {
  color: #f56c6c;
}

/* 抽奖相关样式 */
.gachapon-icon[data-v-f78cd61d] {
  background-color: #f5a623;
}
.gachapon-actions[data-v-f78cd61d] {
  display: flex;
  gap: 8px;
  margin-top: 10px;
}
.action-btn[data-v-f78cd61d] {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 5px 10px;
  border-radius: 6px;
  border: none;
  font-size: 12px;
  transition: all 0.2s;
}
.update-btn[data-v-f78cd61d] {
  background-color: #4cc9f0;
  color: white;
}
.update-btn[data-v-f78cd61d]:hover {
  background-color: #3ab9e0;
}
.settings-btn[data-v-f78cd61d] {
  background-color: #f5a623;
  color: white;
}
.settings-btn[data-v-f78cd61d]:hover {
  background-color: #e59613;
}
.save-btn[data-v-f78cd61d] {
  background-color: #4361ee;
  color: white;
}
.save-btn[data-v-f78cd61d]:hover {
  background-color: #3251de;
}

/* 模态框样式 */
.modal-overlay[data-v-f78cd61d] {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}
.modal-container[data-v-f78cd61d] {
  width: 90%;
  max-width: 400px;
  background-color: #1a1d25;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
}
.modal-header[data-v-f78cd61d] {
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.modal-header h3[data-v-f78cd61d] {
  margin: 0;
  color: #fff;
  font-size: 18px;
}
.close-btn[data-v-f78cd61d] {
  background: none;
  border: none;
  color: #adb5bd;
  font-size: 24px;
  transition: color 0.2s;
}
.close-btn[data-v-f78cd61d]:hover {
  color: #fff;
}
.modal-body[data-v-f78cd61d] {
  padding: 20px;
}
.form-group[data-v-f78cd61d] {
  margin-bottom: 15px;
}
.form-group label[data-v-f78cd61d] {
  display: block;
  margin-bottom: 5px;
  color: #adb5bd;
  font-size: 14px;
}
.form-control[data-v-f78cd61d] {
  width: 100%;
  padding: 10px;
  border-radius: 5px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background-color: rgba(255, 255, 255, 0.05);
  color: #fff;
  font-size: 16px;
}
.form-control[data-v-f78cd61d]:disabled {
  opacity: 0.6;
}
.modal-footer[data-v-f78cd61d] {
  padding: 15px 20px;
  display: flex;
  justify-content: flex-end;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.mt-2[data-v-f78cd61d] {
  margin-top: 10px;
}

.gachapon-container[data-v-a7bb201a] {
  padding: 0;
  margin: 0 auto;
  color: #ffffff;
  height: 100%;
  position: relative;
  z-index: 100;
  opacity: 1 !important;
  display: block !important;
  visibility: visible !important;
}
.game-wrapper[data-v-a7bb201a] {
  position: relative;
  padding: 20px;
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
}
.game-bg[data-v-a7bb201a] {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #0f111a, #1a1d25);
  z-index: -1;
  overflow: hidden;
}
.game-bg[data-v-a7bb201a]:before {
  content: '';
  position: absolute;
  width: 200%;
  height: 200%;
  top: -50%;
  left: -50%;
  background: radial-gradient(ellipse at center, rgba(43, 63, 242, 0.05) 0%, transparent 70%);
  animation: rotate-a7bb201a 60s linear infinite;
}
.game-bg[data-v-a7bb201a]:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: url("data:image/svg+xml,%3Csvg width='20' height='20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0h20v20H0z' fill='%232b3ff2' fill-opacity='0.02'/%3E%3C/svg%3E");
}
.gachapon-header[data-v-a7bb201a] {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}
.gachapon-header h1[data-v-a7bb201a] {
  margin: 0;
  font-size: 28px;
  color: #ffffff;
  text-shadow: 0 0 10px rgba(43, 63, 242, 0.7);
  animation: glowText-a7bb201a 2s ease-in-out infinite alternate;
}
@keyframes glowText-a7bb201a {
0% {
    text-shadow: 0 0 10px rgba(43, 63, 242, 0.7);
}
100% {
    text-shadow: 0 0 20px rgba(74, 144, 226, 0.9);
}
}
.refresh-button[data-v-a7bb201a] {
  background: linear-gradient(135deg, #2b3ff2, #4a90e2);
  color: white;
  border: none;
  border-radius: 8px;
  padding: 8px 16px;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: all 0.3s ease;
  box-shadow: 
    0 0 5px rgba(43, 63, 242, 0.5),
    0 0 20px rgba(43, 63, 242, 0.2);
  position: relative;
  overflow: hidden;
}
.refresh-button[data-v-a7bb201a]:before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.refresh-button[data-v-a7bb201a]:hover {
  background: linear-gradient(135deg, #3547f5, #5aa0f7);
  transform: translateY(-2px) scale(1.05);
  box-shadow: 
    0 0 10px rgba(43, 63, 242, 0.7),
    0 0 30px rgba(43, 63, 242, 0.3);
}
.refresh-button[data-v-a7bb201a]:hover:before {
  opacity: 1;
}
.refresh-button[data-v-a7bb201a]:active {
  transform: translateY(1px) scale(0.98);
}
.gachapon-main[data-v-a7bb201a] {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
  width: 100%;
}
.gachapon-machine[data-v-a7bb201a] {
  position: relative;
  margin-bottom: 30px;
  width: 100%;
  max-width: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.wheel-container[data-v-a7bb201a] {
  position: relative;
  width: 100%;
  max-width: 320px;
  height: auto;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, #141824, #1d212f);
  border-radius: 16px;
  padding: 20px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid rgba(43, 63, 242, 0.2);
}
.prize-wheel[data-v-a7bb201a] {
  position: relative;
  width: 260px;
  height: 260px;
  margin: 15px auto;
  filter: drop-shadow(0 0 15px rgba(43, 63, 242, 0.3));
  perspective: 1000px;
}
.wheel-bg[data-v-a7bb201a] {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  position: relative;
  overflow: hidden;
  background: #1a1d25;
  box-shadow:
    inset 0 0 30px rgba(0, 0, 0, 0.8),
    0 0 10px rgba(255, 255, 255, 0.1),
    0 0 20px rgba(43, 63, 242, 0.3);
  transform: rotate(0deg);
  transition: transform 4s cubic-bezier(0.17, 0.67, 0.28, 0.96);
  border: 5px solid rgba(26, 29, 37, 0.8);
  transform-style: preserve-3d;
}
.wheel-divider[data-v-a7bb201a] {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 3px;
  background: rgba(0, 0, 0, 0.7);
  transform-origin: center;
  z-index: 2;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}
.divider-1[data-v-a7bb201a] { transform: translate(-50%, -50%) rotate(0deg);
}
.divider-2[data-v-a7bb201a] { transform: translate(-50%, -50%) rotate(45deg);
}
.divider-3[data-v-a7bb201a] { transform: translate(-50%, -50%) rotate(90deg);
}
.divider-4[data-v-a7bb201a] { transform: translate(-50%, -50%) rotate(135deg);
}
.wheel-section[data-v-a7bb201a] {
  position: absolute;
  width: 50%;
  height: 50%;
  top: 0;
  left: 50%;
  transform-origin: 0% 100%;
  clip-path: polygon(0 0, 100% 0, 0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  box-shadow: inset 0 0 15px rgba(0, 0, 0, 0.3);
  overflow: hidden;
}
.section-1[data-v-a7bb201a] {
  background: linear-gradient(135deg, #ff9a44 0%, #ff8a00 100%);
  transform: rotate(0deg);
}
.section-2[data-v-a7bb201a] {
  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
  transform: rotate(45deg);
}
.section-3[data-v-a7bb201a] {
  background: linear-gradient(135deg, #43a047 0%, #2e7d32 100%);
  transform: rotate(90deg);
}
.section-4[data-v-a7bb201a] {
  background: linear-gradient(135deg, #d81b60 0%, #880e4f 100%);
  transform: rotate(135deg);
}
.section-5[data-v-a7bb201a] {
  background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
  transform: rotate(180deg);
}
.section-6[data-v-a7bb201a] {
  background: linear-gradient(135deg, #00cdac 0%, #02aab0 100%);
  transform: rotate(225deg);
}
.section-7[data-v-a7bb201a] {
  background: linear-gradient(135deg, #ff5858 0%, #ff416c 100%);
  transform: rotate(270deg);
}
.section-8[data-v-a7bb201a] {
  background: linear-gradient(135deg, #ffc600 0%, #ff9500 100%);
  transform: rotate(315deg);
}
.section-text[data-v-a7bb201a] {
  position: absolute;
  color: white;
  font-size: 14px;
  font-weight: bold;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
  width: 60px;
  text-align: center;
  transform: rotate(-22.5deg) translateX(55px) translateY(-35px);
  white-space: nowrap;
  z-index: 2;
  font-family: 'Arial', sans-serif;
  letter-spacing: 1px;
}
.wheel-center[data-v-a7bb201a] {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: radial-gradient(circle at 30% 30%, #444, #111);
  border-radius: 50%;
  z-index: 3;
  box-shadow: 
    0 0 10px rgba(0, 0, 0, 0.8),
    0 0 20px rgba(43, 63, 242, 0.2);
  border: 5px solid #ffcc00;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.wheel-center[data-v-a7bb201a]:after {
  content: '';
  position: absolute;
  width: 30px;
  height: 30px;
  background: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.7), transparent 70%);
  border-radius: 50%;
}
.wheel-pointer[data-v-a7bb201a] {
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 60px;
  z-index: 4;
  filter: drop-shadow(0 3px 5px rgba(0, 0, 0, 0.8));
  display: flex;
  justify-content: center;
  align-items: center;
  transform-origin: bottom center;
}
.wheel-pointer[data-v-a7bb201a]:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ffcc00;
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}
.wheel-pointer[data-v-a7bb201a]:after {
  content: '';
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 10px;
  clip-path: polygon(50% 10%, 10% 90%, 90% 90%);
  background: linear-gradient(to bottom, #fff7cc, #ffcc00);
}
.wheel-lights[data-v-a7bb201a] {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  pointer-events: none;
  z-index: 2;
}
.wheel-lights[data-v-a7bb201a]:before {
  content: '';
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, transparent 30%, rgba(43, 63, 242, 0.1) 70%);
  animation: lightsRotate-a7bb201a 3s linear infinite;
}
@keyframes lightsRotate-a7bb201a {
0% { transform: rotate(0deg);
}
100% { transform: rotate(360deg);
}
}
.wheel-spin-button[data-v-a7bb201a] {
  background: linear-gradient(135deg, #2b3ff2, #4a90e2);
  color: white;
  border: none;
  border-radius: 50px;
  padding: 12px 30px;
  font-size: 16px;
  margin-top: 20px;
  box-shadow: 0 5px 15px rgba(43, 63, 242, 0.4), 0 0 20px rgba(43, 63, 242, 0.2);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  font-weight: bold;
  z-index: 2;
  text-transform: uppercase;
  letter-spacing: 1px;
  animation: spin-btn-pulse-a7bb201a 1.5s ease-in-out infinite;
}
.wheel-spin-button span[data-v-a7bb201a] {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.wheel-spin-button[data-v-a7bb201a]:before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.wheel-spin-button[data-v-a7bb201a]:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transform: translateX(-100%);
  transition: transform 0.5s ease;
}
.wheel-spin-button[data-v-a7bb201a]:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(43, 63, 242, 0.5), 0 0 30px rgba(43, 63, 242, 0.3);
}
.wheel-spin-button[data-v-a7bb201a]:hover:before {
  opacity: 1;
}
.wheel-spin-button[data-v-a7bb201a]:hover:after {
  transform: translateX(100%);
  transition: transform 1s ease;
}
@keyframes spin-btn-pulse-a7bb201a {
0% { box-shadow: 0 5px 15px rgba(43, 63, 242, 0.4), 0 0 20px rgba(43, 63, 242, 0.2);
}
50% { box-shadow: 0 5px 15px rgba(43, 63, 242, 0.4), 0 0 30px rgba(43, 63, 242, 0.4);
}
100% { box-shadow: 0 5px 15px rgba(43, 63, 242, 0.4), 0 0 20px rgba(43, 63, 242, 0.2);
}
}
.wheel-spin-button[data-v-a7bb201a]:disabled {
  opacity: 0.6;
  transform: none;
}
.wheel-spin-button:disabled .btn-glow[data-v-a7bb201a] {
  display: none;
}
.draw-text[data-v-a7bb201a] {
  font-size: 16px;
  margin-bottom: 5px;
}
.draw-cost[data-v-a7bb201a] {
  font-size: 13px;
  opacity: 0.9;
}
.single[data-v-a7bb201a] {
  background: linear-gradient(135deg, #f5a623, #f7b733);
  color: white;
  animation: btnFloat-a7bb201a 2s ease-in-out infinite alternate;
}
.five[data-v-a7bb201a] {
  background: linear-gradient(135deg, #2b3ff2, #4a90e2);
  color: white;
  animation: btnFloat-a7bb201a 2s ease-in-out infinite alternate;
  animation-delay: 0.3s;
}
.ten[data-v-a7bb201a] {
  background: linear-gradient(135deg, #7ed321, #56ab2f);
  color: white;
  animation: btnFloat-a7bb201a 2s ease-in-out infinite alternate;
  animation-delay: 0.6s;
}
@keyframes btnFloat-a7bb201a {
0% { transform: translateY(0);
}
100% { transform: translateY(-10px);
}
}
.user-info[data-v-a7bb201a] {
  margin-bottom: 20px;
  font-size: 18px;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, rgba(26, 29, 37, 0.8), rgba(42, 46, 58, 0.8));
  padding: 15px 25px;
  border-radius: 15px;
  border: 1px solid rgba(245, 166, 35, 0.3);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}
.points[data-v-a7bb201a] {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #f5a623;
}
.points-icon[data-v-a7bb201a] {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  background: radial-gradient(circle, rgba(245, 166, 35, 0.3) 0%, transparent 70%);
  border-radius: 50%;
  animation: coinPulse-a7bb201a 2s ease-in-out infinite;
}
@keyframes coinPulse-a7bb201a {
0% { transform: scale(1);
}
50% { transform: scale(1.1);
}
100% { transform: scale(1);
}
}
.gachapon-history[data-v-a7bb201a] {
  background: linear-gradient(135deg, rgba(26, 29, 37, 0.8), rgba(42, 46, 58, 0.8));
  border-radius: 15px;
  padding: 25px;
  margin-top: 40px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(43, 63, 242, 0.2);
}
.gachapon-history h2[data-v-a7bb201a] {
  margin: 0 0 20px 0;
  font-size: 22px;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 10px;
}
.history-list[data-v-a7bb201a] {
  max-height: none;
  overflow-y: hidden;
}
.history-item[data-v-a7bb201a] {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}
.history-item[data-v-a7bb201a]:hover {
  background-color: rgba(43, 63, 242, 0.1);
  transform: translateX(5px);
  padding-left: 10px;
  border-radius: 8px;
}
.history-time[data-v-a7bb201a] {
  font-size: 14px;
  color: #888;
  margin-bottom: 8px;
}
.history-prizes[data-v-a7bb201a] {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.history-prize[data-v-a7bb201a] {
  font-size: 12px;
  padding: 5px 10px;
  border-radius: 5px;
  background-color: rgba(42, 46, 58, 0.8);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}
.history-prize[data-v-a7bb201a]:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
}
.history-prize.rarity-1[data-v-a7bb201a] {
  background-color: rgba(58, 58, 58, 0.7);
  color: #e0e0e0;
  border: 1px solid rgba(106, 106, 106, 0.5);
}
.history-prize.rarity-2[data-v-a7bb201a] {
  background-color: rgba(26, 60, 93, 0.7);
  color: #b7e1ff;
  border: 1px solid rgba(74, 144, 226, 0.5);
}
.history-prize.rarity-3[data-v-a7bb201a] {
  background-color: rgba(58, 42, 87, 0.7);
  color: #d0bcff;
  border: 1px solid rgba(156, 100, 255, 0.5);
}
.history-prize.rarity-4[data-v-a7bb201a] {
  background-color: rgba(97, 61, 14, 0.7);
  color: #ffd78c;
  border: 1px solid rgba(245, 166, 35, 0.5);
}
.history-prize.rarity-5[data-v-a7bb201a] {
  background-color: rgba(90, 14, 40, 0.7);
  color: #ffb8b8;
  border: 1px solid rgba(212, 20, 90, 0.5);
  box-shadow: 0 0 10px rgba(212, 20, 90, 0.3);
}
.no-history[data-v-a7bb201a] {
  color: #666;
  text-align: center;
  padding: 30px;
  font-style: italic;
}

/* 移除自定义滚动条样式 */
.history-list[data-v-a7bb201a]::-webkit-scrollbar {
  display: none;
}
.history-list[data-v-a7bb201a]::-webkit-scrollbar-track {
  display: none;
}
.history-list[data-v-a7bb201a]::-webkit-scrollbar-thumb {
  display: none;
}
.history-list[data-v-a7bb201a]::-webkit-scrollbar-thumb:hover {
  display: none;
}

/* 响应式调整 */
@media (max-width: 768px) {
.game-wrapper[data-v-a7bb201a] {
    padding: 10px;
}
.gachapon-header h1[data-v-a7bb201a] {
    font-size: 22px;
}
.refresh-button[data-v-a7bb201a] {
    padding: 6px 12px;
    font-size: 14px;
}
.draw-buttons[data-v-a7bb201a] {
    flex-direction: row;
    gap: 5px;
    width: 100%;
}
.draw-button[data-v-a7bb201a] {
    min-width: auto;
    padding: 10px 5px;
    border-radius: 8px;
}
.draw-text[data-v-a7bb201a] {
    font-size: 14px;
}
.draw-cost[data-v-a7bb201a] {
    font-size: 12px;
}
.wheel-container[data-v-a7bb201a] {
    max-width: 290px;
    padding: 10px 15px;
    margin-bottom: 15px;
}
.prize-wheel[data-v-a7bb201a] {
    width: 240px;
    height: 240px;
    margin: 10px auto;
}
.section-text[data-v-a7bb201a] {
    font-size: 10px;
    transform: rotate(-22.5deg) translateX(42px) translateY(-25px);
}
.wheel-spin-button[data-v-a7bb201a] {
    padding: 10px 20px;
    font-size: 14px;
    margin-top: 10px;
}
.wheel-center[data-v-a7bb201a] {
    width: 50px;
    height: 50px;
}
.wheel-center[data-v-a7bb201a]:after {
    width: 25px;
    height: 25px;
}
.wheel-pointer[data-v-a7bb201a] {
    top: -30px;
    width: 30px;
    height: 45px;
}
.user-info[data-v-a7bb201a] {
    padding: 10px 15px;
    margin-bottom: 15px;
    font-size: 16px;
    width: 100%;
}
.gachapon-history[data-v-a7bb201a] {
    padding: 15px;
    margin-top: 20px;
}
.gachapon-history h2[data-v-a7bb201a] {
    font-size: 18px;
    margin-bottom: 15px;
}
.history-list[data-v-a7bb201a] {
    max-height: 250px;
}
.history-item[data-v-a7bb201a] {
    margin-bottom: 15px;
    padding-bottom: 15px;
}
}
@media (max-width: 480px) {
.wheel-container[data-v-a7bb201a] {
    max-width: 260px;
    padding: 10px;
    border-radius: 12px;
}
.prize-wheel[data-v-a7bb201a] {
    width: 220px;
    height: 220px;
}
.section-text[data-v-a7bb201a] {
    font-size: 9px;
    transform: rotate(-22.5deg) translateX(38px) translateY(-20px);
    width: 45px;
}
.wheel-center[data-v-a7bb201a] {
    width: 40px;
    height: 40px;
    border-width: 3px;
}
.wheel-center[data-v-a7bb201a]:after {
    width: 20px;
    height: 20px;
}
.wheel-pointer[data-v-a7bb201a] {
    top: -25px;
    width: 25px;
    height: 35px;
}
.draw-buttons[data-v-a7bb201a] {
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}
.draw-button[data-v-a7bb201a] {
    width: 100%;
    padding: 12px 10px;
    border-radius: 10px;
    animation: none !important;
}
.history-prize[data-v-a7bb201a] {
    font-size: 11px;
    padding: 4px 8px;
}
}

/* 修复抽奖按钮区样式 */
.draw-buttons[data-v-a7bb201a] {
  display: flex;
  gap: 10px;
  margin-bottom: 30px;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  max-width: 600px;
}
.draw-button[data-v-a7bb201a] {
  border: none;
  border-radius: 12px;
  padding: 15px 20px;
  font-weight: bold;
  min-width: 120px;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
}
@keyframes rotate-a7bb201a {
0% { transform: rotate(0deg);
}
100% { transform: rotate(360deg);
}
}
@keyframes pointerPulse-a7bb201a {
0% { transform: translateX(-50%) scale(1);
}
50% { transform: translateX(-50%) scale(1.1); filter: drop-shadow(0 5px 8px rgba(0, 0, 0, 0.8));
}
100% { transform: translateX(-50%) scale(1);
}
}
.wheel-pointer[data-v-a7bb201a] {
  animation: pointerPulse-a7bb201a 1s ease-in-out infinite;
}
@keyframes spin-a7bb201a {
0% { transform: rotate(0deg);
}
100% { transform: rotate(3600deg);
}
}
.spinning[data-v-a7bb201a] {
  animation: spin-a7bb201a 4s cubic-bezier(0.17, 0.67, 0.28, 0.96) forwards;
}
.prize-card-key[data-v-a7bb201a] {
  font-size: 12px;
  padding: 4px 8px;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 4px;
  margin-top: 5px;
  word-break: break-all;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  border: 1px dashed rgba(255, 255, 255, 0.3);
  color: #ffcc00;
}

.content-page[data-v-72e7bf51] {
  width: 100%;
  min-height: calc(100vh - 60px); /* 减去导航栏高度 */
  background: #1a1d25;
  padding: 20px;
  box-sizing: border-box;
  position: relative;
  margin-top: 60px; /* 添加导航栏高度的上边距 */
  z-index: 0;
}
.page-header[data-v-72e7bf51] {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  background: #1a1d25;
  border-radius: 15px;
  box-shadow: 
    12px 12px 24px rgba(0, 0, 0, 0.4),
    -12px -12px 24px rgba(255, 255, 255, 0.05);
  margin-bottom: 20px;
}
.page-header h2[data-v-72e7bf51] {
  color: #fff;
  margin: 0;
  font-size: 22px;
  font-weight: 600;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}
.input-card[data-v-72e7bf51] {
  background: #1a1d25;
  border-radius: 15px;
  padding: 25px;
  margin-bottom: 30px;
  box-shadow: 
    12px 12px 24px rgba(0, 0, 0, 0.4),
    -12px -12px 24px rgba(255, 255, 255, 0.05);
}
.input-group[data-v-72e7bf51] {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}
.input-field[data-v-72e7bf51] {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.input-field label[data-v-72e7bf51] {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
}
.input-field input[data-v-72e7bf51],
.input-field select[data-v-72e7bf51],
.input-field textarea[data-v-72e7bf51],
.group-select[data-v-72e7bf51] {
  width: 100%;
  height: 45px;
  background-color: #1a1d25 !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: 10px;
  padding: 0 15px;
  color: #fff !important;
  font-size: 14px;
  box-shadow: 
    inset 8px 8px 16px rgba(0, 0, 0, 0.3),
    inset -8px -8px 16px rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}
.input-field input[data-v-72e7bf51]:focus,
.input-field select[data-v-72e7bf51]:focus,
.input-field textarea[data-v-72e7bf51]:focus,
.group-select[data-v-72e7bf51]:focus {
  border-color: #2b3ff2 !important;
  outline: none !important;
  box-shadow: none !important;
}
.button-container[data-v-72e7bf51] {
  display: flex;
  align-items: flex-end;
}
.fetch-button[data-v-72e7bf51] {
  height: 45px;
  width: 100%;
  border: none;
  border-radius: 10px;
  background: linear-gradient(145deg, #2b3ff2, #1f2caa);
  color: white;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
  box-shadow: 
    5px 5px 10px rgba(0, 0, 0, 0.3),
    -5px -5px 10px rgba(255, 255, 255, 0.05);
}
.fetch-button[data-v-72e7bf51]:hover {
  transform: translateY(-2px);
  box-shadow: 
    8px 8px 16px rgba(0, 0, 0, 0.4),
    -8px -8px 16px rgba(255, 255, 255, 0.07);
}
.fetch-button[data-v-72e7bf51]:disabled {
  opacity: 0.7;
  transform: none;
}
.group-list[data-v-72e7bf51] {
  margin-top: 30px;
}
.group-grid[data-v-72e7bf51] {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding: 10px;
  max-width: 1200px;
  margin: 0 auto;
}
.group-card[data-v-72e7bf51] {
  background: #1a1d25;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 
    4px 4px 15px rgba(0, 0, 0, 0.3),
    -4px -4px 15px rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transform: translateY(0);
}
.group-card[data-v-72e7bf51]:hover {
  transform: translateY(-6px);
  box-shadow: 
    8px 8px 20px rgba(0, 0, 0, 0.4),
    -8px -8px 20px rgba(255, 255, 255, 0.07);
  border-color: rgba(43, 63, 242, 0.3);
}
.group-card-inner[data-v-72e7bf51] {
  position: relative;
}
.avatar-container[data-v-72e7bf51] {
  width: 100%;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #262a35;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  padding: 15px;
}
.loading-indicator[data-v-72e7bf51] {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 30px;
  height: 30px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: #fff;
  animation: spin-72e7bf51 1s linear infinite;
  z-index: 1;
}
@keyframes spin-72e7bf51 {
to { transform: translate(-50%, -50%) rotate(360deg);
}
}
.loading .group-avatar[data-v-72e7bf51] {
  opacity: 0.5;
}
.group-avatar[data-v-72e7bf51] {
  max-width: 80%;
  max-height: 80%;
  object-fit: contain;
  border-radius: 50%;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  border: 2px solid rgba(255, 255, 255, 0.1);
}
.group-card:hover .group-avatar[data-v-72e7bf51] {
  transform: scale(1.05);
  border-color: rgba(43, 63, 242, 0.5);
}
.group-info[data-v-72e7bf51] {
  padding: 8px 10px;
  background: #1a1d25;
  text-align: center;
}
.group-name[data-v-72e7bf51] {
  color: #fff;
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.no-data[data-v-72e7bf51] {
  grid-column: 1 / -1;
  text-align: center;
  padding: 40px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 16px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
}
@media (min-width: 1400px) {
.group-grid[data-v-72e7bf51] {
    grid-template-columns: repeat(4, 1fr);
}
}
@media (max-width: 992px) {
.group-grid[data-v-72e7bf51] {
    grid-template-columns: repeat(3, 1fr);
}
}
@media (max-width: 768px) {
.group-grid[data-v-72e7bf51] {
    grid-template-columns: repeat(3, 1fr);
}
}
@media (max-width: 576px) {
.group-grid[data-v-72e7bf51] {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}
.group-name[data-v-72e7bf51] {
    font-size: 12px;
}
.avatar-container[data-v-72e7bf51] {
    height: 80px;
}
}
@media (max-width: 480px) {
  /* 小屏幕仍然保持每行3个，但减小外边距和内边距 */
.content-page[data-v-72e7bf51] {
    padding: 10px;
}
.group-grid[data-v-72e7bf51] {
    grid-template-columns: repeat(3, 1fr);
    gap: 5px;
    padding: 5px;
}
.group-info[data-v-72e7bf51] {
    padding: 5px;
}
}

/* 创建会话按钮样式 */
.create-session-btn[data-v-72e7bf51] {
  height: 38px;
  padding: 0 20px;
  border: none;
  border-radius: 10px;
  background: linear-gradient(145deg, #2b3ff2, #1f2caa);
  color: white;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
  box-shadow: 
    5px 5px 10px rgba(0, 0, 0, 0.3),
    -5px -5px 10px rgba(255, 255, 255, 0.05);
}
.create-session-btn[data-v-72e7bf51]:hover {
  transform: translateY(-2px);
  box-shadow: 
    8px 8px 16px rgba(0, 0, 0, 0.4),
    -8px -8px 16px rgba(255, 255, 255, 0.07);
}
.create-session-btn[data-v-72e7bf51]:disabled {
  opacity: 0.5;
  transform: none;
}

/* 弹窗样式 */
.dialog-overlay[data-v-72e7bf51] {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}
.dialog-content[data-v-72e7bf51] {
  background: #1a1d25;
  border-radius: 15px;
  width: 90%;
  max-width: 500px;
  box-shadow: 
    12px 12px 24px rgba(0, 0, 0, 0.4),
    -12px -12px 24px rgba(255, 255, 255, 0.05);
}
.dialog-header[data-v-72e7bf51] {
  padding: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.dialog-header h3[data-v-72e7bf51] {
  color: #fff;
  margin: 0;
  font-size: 18px;
  font-weight: 500;
}
.close-btn[data-v-72e7bf51] {
  background: none;
  border: none;
  color: #fff;
  font-size: 24px;
  padding: 0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}
.close-btn[data-v-72e7bf51]:hover {
  background: rgba(255, 255, 255, 0.1);
}
.dialog-body[data-v-72e7bf51] {
  padding: 20px;
}
.dialog-footer[data-v-72e7bf51] {
  padding: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

/* 表单元素样式 */
.group-select[data-v-72e7bf51] {
  width: 100%;
  height: 45px;
  background: #1a1d25;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 0 15px;
  color: #fff;
  font-size: 14px;
  box-shadow: 
    inset 8px 8px 16px rgba(0, 0, 0, 0.3),
    inset -8px -8px 16px rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}
.group-select[data-v-72e7bf51]:focus {
  border-color: #2b3ff2;
  outline: none;
}
.input-field textarea[data-v-72e7bf51] {
  height: auto;
  min-height: 100px;
  padding: 15px;
  resize: vertical;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-family: inherit;
}
textarea[data-v-72e7bf51] {
  background-color: #1a1d25 !important;
  color: #fff !important;
  border-color: rgba(255, 255, 255, 0.1) !important;
}
.cancel-btn[data-v-72e7bf51],
.send-btn[data-v-72e7bf51],
.close-dialog-btn[data-v-72e7bf51] {
  height: 38px;
  padding: 0 20px;
  border: none;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
}
.cancel-btn[data-v-72e7bf51] {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}
.send-btn[data-v-72e7bf51] {
  background: linear-gradient(145deg, #2b3ff2, #1f2caa);
  color: white;
  box-shadow: 
    5px 5px 10px rgba(0, 0, 0, 0.3),
    -5px -5px 10px rgba(255, 255, 255, 0.05);
}
.close-dialog-btn[data-v-72e7bf51] {
  background: linear-gradient(145deg, #28a745, #1f7f33);
  color: white;
  box-shadow: 
    5px 5px 10px rgba(0, 0, 0, 0.3),
    -5px -5px 10px rgba(255, 255, 255, 0.05);
}
.cancel-btn[data-v-72e7bf51]:hover,
.send-btn[data-v-72e7bf51]:hover,
.close-dialog-btn[data-v-72e7bf51]:hover {
  transform: translateY(-2px);
}
.send-btn[data-v-72e7bf51]:disabled {
  opacity: 0.5;
  transform: none;
}
@media (max-width: 768px) {
.dialog-content[data-v-72e7bf51] {
    width: 95%;
    margin: 20px;
}
}

/* 错误消息样式 */
.error-message[data-v-72e7bf51] {
  background-color: #fef0f0;
  color: #f56c6c;
  padding: 10px 15px;
  border-radius: 4px;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}
.error-message i[data-v-72e7bf51] {
  margin-right: 5px;
}

/* 消息框样式 */
.message-box[data-v-72e7bf51] {
  padding: 10px 15px;
  margin: 10px 0;
  border-radius: 4px;
  position: relative;
  font-weight: bold;
  border-left: 5px solid;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  color: white;
}
.message-box.error[data-v-72e7bf51] {
  background-color: rgba(211, 47, 47, 0.2);
  border-left-color: #d32f2f;
}
.message-box.success[data-v-72e7bf51] {
  background-color: rgba(56, 142, 60, 0.2);
  border-left-color: #388e3c;
}
.message-box.info[data-v-72e7bf51] {
  background-color: rgba(25, 118, 210, 0.2);
  border-left-color: #1976d2;
}
.message-box.warning[data-v-72e7bf51] {
  background-color: rgba(245, 127, 23, 0.2);
  border-left-color: #f57f17;
}
.message-content[data-v-72e7bf51] {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.clear-message[data-v-72e7bf51] {
  background: none;
  border: none;
  font-size: 18px;
  color: white;
  opacity: 0.7;
  padding: 0;
  margin-left: 10px;
  line-height: 1;
}
.clear-message[data-v-72e7bf51]:hover {
  opacity: 1;
}
/* 全局样式，设置页面背景色等基础样式 */
body {
    margin: 0;
    padding: 0;
    background-color: #1e1f29;
    flex-direction: column;
    min-height: 100vh;
    outline: none;
}

.content-page {
    padding: 0 20px 100px 20px;
    background: #1e1f29;
    min-height: calc(100vh - 80px);
    overflow-y: auto;
}

/* 标题样式重新设计 */
h2, h3 {
    font-family: 'Microsoft YaHei', sans-serif;
    font-size: 15px;
    color: #ffffff;
    margin-left: 2%;
    margin-top: 1%;
    padding: 8px 16px;
    display: inline-block;
    position: relative;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* 标题下方添加渐变线条 */
h2::after, h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent,
        #2b3ff2,
        transparent
    );
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

#app {
  height: 100%;
}

.el-message {
  z-index: 9999 !important;
}

/* 全局变量 */
:root {
  /* 主题色 */
  --primary-color: #2b3ff2;
  --success-color: #67c23a;
  --warning-color: #e6a23c;
  --danger-color: #f56c6c;
  
  /* 背景色 */
  --bg-color: #1e1f29;
  --bg-color-light: #1a1d25;
  --bg-color-dark: #171923;
  
  /* 文字颜色 */
  --text-color: #ffffff;
  --text-color-secondary: rgba(255, 255, 255, 0.7);
  --text-color-disabled: rgba(255, 255, 255, 0.3);
  
  /* 边框颜色 */
  --border-color: rgba(255, 255, 255, 0.1);
  --border-color-light: rgba(255, 255, 255, 0.05);
  
  /* 阴影 */
  --box-shadow: 
    12px 12px 24px rgba(0, 0, 0, 0.4),
    -12px -12px 24px rgba(255, 255, 255, 0.05);
  
  --box-shadow-inset:
    inset 8px 8px 16px rgba(0, 0, 0, 0.3),
    inset -8px -8px 16px rgba(255, 255, 255, 0.05);
}

/* 全局样式 */
body {
  margin: 0;
  font-family: 'Microsoft YaHei', sans-serif;
  background-color: var(--bg-color);
  color: var(--text-color);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* 页面容器通用样式 */
.page-container {
  padding: 20px;
  background-color: var(--el-bg-color);
  border-radius: 4px;
  box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1);
}

/* 卡片样式 */
.el-card {
  background-color: var(--bg-color-light) !important;
  border: none !important;
  border-radius: 10px !important;
  box-shadow: var(--box-shadow) !important;
  margin-bottom: 20px;
}

.el-card__header {
  border-bottom: 1px solid var(--border-color) !important;
  padding: 15px 20px !important;
}

/* 输入框样式 */
.el-input__wrapper {
  background-color: var(--bg-color-light) !important;
  border: none !important;
  box-shadow: var(--box-shadow-inset) !important;
}

.el-input__inner {
  color: var(--text-color) !important;
  background-color: transparent !important;
}

/* 按钮样式 */
.el-button {
  border: none !important;
  border-radius: 8px !important;
  padding: 8px 20px !important;
  transition: all 0.3s ease !important;
}

.el-button--primary {
  background: linear-gradient(145deg, #2b3ff2, #1f2caa) !important;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.3),
    -5px -5px 10px rgba(255, 255, 255, 0.05) !important;
}

.el-button--primary:hover {
  transform: translateY(-2px) !important;
  box-shadow: 8px 8px 16px rgba(0, 0, 0, 0.4),
    -8px -8px 16px rgba(255, 255, 255, 0.07) !important;
}

.el-button--primary:active {
  transform: translateY(0) !important;
  box-shadow: var(--box-shadow-inset) !important;
}

/* 表格样式 */
.el-table {
  background-color: var(--bg-color-light) !important;
  color: var(--text-color) !important;
  border: none !important;
  border-radius: 10px !important;
  box-shadow: var(--box-shadow) !important;
}

.el-table th,
.el-table td {
  background-color: var(--bg-color-light) !important;
  border-bottom: 1px solid var(--border-color) !important;
}

.el-table--striped .el-table__body tr.el-table__row--striped td {
  background-color: var(--bg-color-dark) !important;
}

/* 按钮组样式 */
.button-group {
  margin: 20px 0;
}

/* 表单样式 */
.el-form {
  max-width: 800px;
  margin: 0 auto;
}

/* 搜索栏样式 */
.search-bar {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* 分页样式 */
.el-pagination {
  margin-top: 20px;
  justify-content: center;
  background-color: transparent !important;
}

.el-pagination .el-pagination__total,
.el-pagination .el-pagination__jump {
  color: var(--text-color-secondary) !important;
}

/* 对话框样式 */
.el-dialog {
  background-color: var(--bg-color-light) !important;
  border-radius: 10px !important;
  box-shadow: var(--box-shadow) !important;
}

.el-dialog__header {
  border-bottom: 1px solid var(--border-color) !important;
}

.el-dialog__title {
  color: var(--text-color) !important;
}

/* 表单样式 */
.el-form-item__label {
  color: var(--text-color) !important;
}

/* 下拉菜单样式 */
.el-select-dropdown {
  background-color: var(--bg-color-light) !important;
  border: none !important;
  box-shadow: var(--box-shadow) !important;
}

.el-select-dropdown__item {
  color: var(--text-color) !important;
}

.el-select-dropdown__item.hover,
.el-select-dropdown__item:hover {
  background-color: var(--bg-color-dark) !important;
}

/* 标签样式 */
.el-tag {
  background-color: var(--bg-color-dark) !important;
  border: none !important;
  box-shadow: var(--box-shadow-inset) !important;
}

/* 开关样式 */
.el-switch__core {
  background-color: var(--bg-color-dark) !important;
  border: none !important;
}

.el-switch.is-checked .el-switch__core {
  background-color: var(--primary-color) !important;
}

/* 加载动画样式 */
.loading-spinner {
  width: 40px;
  height: 40px;
  border: 3px solid var(--primary-color);
  border-top: 3px solid transparent;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* 响应式布局 */
@media screen and (max-width: 768px) {
  .page-container {
    padding: 10px;
  }
  
  .el-form {
    max-width: 100%;
  }
} 