/* Kingdee Star 样式文件 */

/* 全局样式 */
body {
  font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 14px;
  line-height: 1.5;
  color: #333;
  background-color: #fff;
}

/* 紧凑布局 */
.compact-business {
  font-size: 13px;
}

/* 导航栏样式 */
#navbar {
  transition: all 0.3s ease;
}

#navbar.scrolled {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  background-color: rgba(255, 255, 255, 0.98) !important;
}

/* 下拉菜单样式 */
.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #fff;
  min-width: 200px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  border-radius: 8px;
  overflow: hidden;
  margin-top: 8px;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.dropdown:hover .dropdown-content {
  display: block;
}

.dropdown-content a {
  color: #333;
  padding: 10px 16px;
  text-decoration: none;
  display: block;
  transition: all 0.2s ease;
  font-size: 13px;
}

.dropdown-content a:hover {
  background-color: #f5f5f5;
  color: #10B981;
}

.dropdown-header {
  padding: 10px 16px;
  background-color: #f8f9fa;
  font-weight: 600;
  font-size: 12px;
  color: #666;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

/* 移动端菜单样式 */
#mobileMenu {
  transition: all 0.3s ease;
}

/* 按钮样式 */
.tech-btn {
  font-size: 13px;
  font-weight: 500;
}

/* 卡片样式 */
.kingdee-card {
  transition: all 0.3s ease;
  border: 2px solid transparent;
  border-radius: 16px;
  overflow: hidden;
  background-color: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.kingdee-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
  border-color: #10B981;
}

/* 角色卡片样式 */
.role-card {
  transition: all 0.3s ease;
  border-radius: 16px;
  overflow: hidden;
  background-color: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  border: 2px solid transparent;
}

.role-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
  border-color: #10B981;
}

/* 渐变背景 */
.gradient-bg {
  background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 100%);
}

/* 英雄区域样式 */
.hero-section {
  position: relative;
  overflow: hidden;
}

.hero-bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.3;
  animation: pulse 6s infinite ease-in-out;
}

.hero-bg-orb-1 {
  width: 300px;
  height: 300px;
  background: rgba(16, 185, 129, 0.5);
  top: 20%;
  left: 10%;
}

.hero-bg-orb-2 {
  width: 400px;
  height: 400px;
  background: rgba(59, 130, 246, 0.5);
  bottom: -10%;
  right: 10%;
  animation-delay: 2s;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.3;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.4;
  }
}

/* 滚动动画 */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* 按钮动画 */
.pulse-animation {
  animation: pulse-btn 2s infinite;
}

@keyframes pulse-btn {
  0% {
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(16, 185, 129, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
  }
}

/* 响应式样式 */
@media (max-width: 768px) {
  .container {
    padding-left: 16px;
    padding-right: 16px;
  }
  
  .kingdee-card {
    margin-bottom: 16px;
  }
  
  .dropdown-content {
    position: static;
    box-shadow: none;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 4px;
    margin-top: 4px;
  }
}

/* 表格样式 */
table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}

table th,
table td {
  padding: 10px 12px;
  text-align: left;
  border-bottom: 1px solid #e5e7eb;
}

table th {
  background-color: #f8f9fa;
  font-weight: 600;
  color: #333;
}

table tr:hover {
  background-color: #f9fafb;
}

/* 标签样式 */
.tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 16px;
  font-size: 11px;
  font-weight: 500;
  margin-right: 8px;
  margin-bottom: 8px;
}

.tag-primary {
  background-color: rgba(16, 185, 129, 0.1);
  color: #10B981;
}

.tag-secondary {
  background-color: rgba(59, 130, 246, 0.1);
  color: #3B82F6;
}

.tag-gray {
  background-color: rgba(0, 0, 0, 0.05);
  color: #666;
}

/* 图标样式 */
.icon-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-right: 12px;
}

/* 徽章样式 */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 2px 8px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 500;
}

.badge-success {
  background-color: rgba(16, 185, 129, 0.1);
  color: #10B981;
}

.badge-warning {
  background-color: rgba(245, 158, 11, 0.1);
  color: #F59E0B;
}

/* 页脚样式 */
.footer {
  background-color: #f8f9fa;
  border-top: 1px solid #e5e7eb;
}

.footer-link {
  color: #666;
  text-decoration: none;
  transition: color 0.2s ease;
  font-size: 13px;
}

.footer-link:hover {
  color: #10B981;
}

/* 社交图标样式 */
.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.05);
  color: #666;
  margin-right: 12px;
  transition: all 0.2s ease;
}

.social-icon:hover {
  background-color: #10B981;
  color: #fff;
  transform: translateY(-2px);
}

/* 回到顶部按钮 */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #10B981;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
  z-index: 999;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background-color: #059669;
  transform: translateY(-2px);
}

/* 搜索框样式 */
.search-box {
  position: relative;
  max-width: 500px;
  margin: 0 auto;
}

.search-box input {
  width: 100%;
  padding: 12px 48px 12px 16px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  font-size: 13px;
  transition: all 0.2s ease;
}

.search-box input:focus {
  outline: none;
  border-color: #10B981;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.search-box button {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #666;
  cursor: pointer;
  transition: color 0.2s ease;
}

.search-box button:hover {
  color: #10B981;
}

/* 加载动画 */
.loading {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 2px solid #f3f3f3;
  border-top: 2px solid #10B981;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

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

/* 错误消息样式 */
.error-message {
  background-color: rgba(239, 68, 68, 0.1);
  color: #EF4444;
  padding: 12px 16px;
  border-radius: 8px;
  margin-bottom: 16px;
  border-left: 4px solid #EF4444;
}

/* 成功消息样式 */
.success-message {
  background-color: rgba(16, 185, 129, 0.1);
  color: #10B981;
  padding: 12px 16px;
  border-radius: 8px;
  margin-bottom: 16px;
  border-left: 4px solid #10B981;
}

/* 警告消息样式 */
.warning-message {
  background-color: rgba(245, 158, 11, 0.1);
  color: #F59E0B;
  padding: 12px 16px;
  border-radius: 8px;
  margin-bottom: 16px;
  border-left: 4px solid #F59E0B;
}

/* 信息消息样式 */
.info-message {
  background-color: rgba(59, 130, 246, 0.1);
  color: #3B82F6;
  padding: 12px 16px;
  border-radius: 8px;
  margin-bottom: 16px;
  border-left: 4px solid #3B82F6;
}

/* 卡片阴影 */
.card-shadow {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s ease;
}

.card-shadow:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

/* 边框样式 */
.border-light {
  border: 1px solid rgba(0, 0, 0, 0.05);
}

/* 背景色 */
.bg-light {
  background-color: #f9fafb;
}

.bg-white {
  background-color: #fff;
}

/* 文本颜色 */
.text-primary {
  color: #10B981;
}

.text-secondary {
  color: #3B82F6;
}

.text-gray {
  color: #666;
}

.text-dark {
  color: #333;
}

/* 字体大小 */
.text-xs {
  font-size: 11px;
}

.text-sm {
  font-size: 13px;
}

.text-base {
  font-size: 14px;
}

.text-lg {
  font-size: 16px;
}

.text-xl {
  font-size: 18px;
}

/* 字体粗细 */
.font-light {
  font-weight: 300;
}

.font-normal {
  font-weight: 400;
}

.font-medium {
  font-weight: 500;
}

.font-semibold {
  font-weight: 600;
}

.font-bold {
  font-weight: 700;
}

/* 间距 */
.mt-1 {
  margin-top: 4px;
}

.mt-2 {
  margin-top: 8px;
}

.mt-3 {
  margin-top: 12px;
}

.mt-4 {
  margin-top: 16px;
}

.mt-5 {
  margin-top: 20px;
}

.mt-6 {
  margin-top: 24px;
}

.mb-1 {
  margin-bottom: 4px;
}

.mb-2 {
  margin-bottom: 8px;
}

.mb-3 {
  margin-bottom: 12px;
}

.mb-4 {
  margin-bottom: 16px;
}

.mb-5 {
  margin-bottom: 20px;
}

.mb-6 {
  margin-bottom: 24px;
}

.ml-1 {
  margin-left: 4px;
}

.ml-2 {
  margin-left: 8px;
}

.ml-3 {
  margin-left: 12px;
}

.ml-4 {
  margin-left: 16px;
}

.mr-1 {
  margin-right: 4px;
}

.mr-2 {
  margin-right: 8px;
}

.mr-3 {
  margin-right: 12px;
}

.mr-4 {
  margin-right: 16px;
}

.p-1 {
  padding: 4px;
}

.p-2 {
  padding: 8px;
}

.p-3 {
  padding: 12px;
}

.p-4 {
  padding: 16px;
}

.p-5 {
  padding: 20px;
}

.p-6 {
  padding: 24px;
}

.px-1 {
  padding-left: 4px;
  padding-right: 4px;
}

.px-2 {
  padding-left: 8px;
  padding-right: 8px;
}

.px-3 {
  padding-left: 12px;
  padding-right: 12px;
}

.px-4 {
  padding-left: 16px;
  padding-right: 16px;
}

.py-1 {
  padding-top: 4px;
  padding-bottom: 4px;
}

.py-2 {
  padding-top: 8px;
  padding-bottom: 8px;
}

.py-3 {
  padding-top: 12px;
  padding-bottom: 12px;
}

.py-4 {
  padding-top: 16px;
  padding-bottom: 16px;
}

/* 圆角 */
.rounded {
  border-radius: 4px;
}

.rounded-lg {
  border-radius: 8px;
}

.rounded-xl {
  border-radius: 12px;
}

.rounded-full {
  border-radius: 9999px;
}

/* 过渡效果 */
.transition {
  transition: all 0.3s ease;
}

/* 文本对齐 */
.text-left {
  text-align: left;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

/* 显示/隐藏 */
.hidden {
  display: none;
}

.block {
  display: block;
}

.inline-block {
  display: inline-block;
}

.flex {
  display: flex;
}

.inline-flex {
  display: inline-flex;
}

/* Flex 布局 */
.flex-col {
  flex-direction: column;
}

.items-center {
  align-items: center;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.justify-around {
  justify-content: space-around;
}

/* 响应式显示 */
@media (max-width: 640px) {
  .sm\:hidden {
    display: none;
  }
  
  .sm\:block {
    display: block;
  }
}

@media (max-width: 768px) {
  .md\:hidden {
    display: none;
  }
  
  .md\:block {
    display: block;
  }
}

@media (max-width: 1024px) {
  .lg\:hidden {
    display: none;
  }
  
  .lg\:block {
    display: block;
  }
}

/* 定位 */
.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.fixed {
  position: fixed;
}

.sticky {
  position: sticky;
}

/* 溢出 */
.overflow-hidden {
  overflow: hidden;
}

.overflow-auto {
  overflow: auto;
}

/* 文本溢出 */
.truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* 不换行 */
.whitespace-nowrap {
  white-space: nowrap;
}

/* 换行 */
.whitespace-normal {
  white-space: normal;
}

/* 大小写 */
.text-uppercase {
  text-transform: uppercase;
}

.text-lowercase {
  text-transform: lowercase;
}

.text-capitalize {
  text-transform: capitalize;
}

/* 文字装饰 */
.underline {
  text-decoration: underline;
}

.no-underline {
  text-decoration: none;
}

/* 列表样式 */
.list-none {
  list-style: none;
}

.list-disc {
  list-style-type: disc;
}

.list-decimal {
  list-style-type: decimal;
}

/* 指针 */
.cursor-pointer {
  cursor: pointer;
}

.cursor-default {
  cursor: default;
}

/* 选择文本 */
::selection {
  background-color: rgba(16, 185, 129, 0.2);
  color: #10B981;
}

/* 滚动条 */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb {
  background: #c1c1c1;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #a1a1a1;
}

/* 禁用状态 */
.disabled {
  opacity: 0.6;
  cursor: not-allowed;
  pointer-events: none;
}

/* 焦点样式 */
.focus\:outline-none:focus {
  outline: none;
}

.focus\:ring-2:focus {
  ring: 2px solid #10B981;
}

/* 网格布局 */
.grid {
  display: grid;
}

.grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.grid-cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-cols-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

/* 响应式网格 */
@media (max-width: 768px) {
  .md\:grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  
  .md\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1024px) {
  .lg\:grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  
  .lg\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  
  .lg\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* 间隙 */
.gap-1 {
  gap: 4px;
}

.gap-2 {
  gap: 8px;
}

.gap-3 {
  gap: 12px;
}

.gap-4 {
  gap: 16px;
}

.gap-5 {
  gap: 20px;
}

.gap-6 {
  gap: 24px;
}

/* 响应式间隙 */
@media (max-width: 768px) {
  .md\:gap-1 {
    gap: 4px;
  }
  
  .md\:gap-2 {
    gap: 8px;
  }
  
  .md\:gap-3 {
    gap: 12px;
  }
}

/* 高度 */
.h-full {
  height: 100%;
}

.h-screen {
  height: 100vh;
}

/* 宽度 */
.w-full {
  width: 100%;
}

.w-screen {
  width: 100vw;
}

/* 最大宽度 */
.max-w-xs {
  max-width: 20rem;
}

.max-w-sm {
  max-width: 24rem;
}

.max-w-md {
  max-width: 28rem;
}

.max-w-lg {
  max-width: 32rem;
}

.max-w-xl {
  max-width: 36rem;
}

.max-w-2xl {
  max-width: 42rem;
}

.max-w-3xl {
  max-width: 48rem;
}

.max-w-4xl {
  max-width: 56rem;
}

.max-w-5xl {
  max-width: 64rem;
}

.max-w-6xl {
  max-width: 72rem;
}

.max-w-full {
  max-width: 100%;
}

/* 最小宽度 */
.min-w-0 {
  min-width: 0;
}

.min-w-full {
  min-width: 100%;
}

/* 容器 */
.container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

@media (max-width: 640px) {
  .container {
    max-width: 640px;
  }
}

@media (max-width: 768px) {
  .container {
    max-width: 768px;
  }
}

@media (max-width: 1024px) {
  .container {
    max-width: 1024px;
  }
}

@media (max-width: 1280px) {
  .container {
    max-width: 1280px;
  }
}

/* 动画 */
.animate-pulse {
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.animate-spin {
  animation: spin 1s linear infinite;
}

.animate-bounce {
  animation: bounce 1s infinite;
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(-25%);
    animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
  }
  50% {
    transform: translateY(0);
    animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
  }
}

/* 变换 */
.transform {
  transform: none;
}

.-translate-y-1 {
  transform: translateY(-0.25rem);
}

.translate-y-1 {
  transform: translateY(0.25rem);
}

.-translate-x-1 {
  transform: translateX(-0.25rem);
}

.translate-x-1 {
  transform: translateX(0.25rem);
}

.scale-105 {
  transform: scale(1.05);
}

.scale-100 {
  transform: scale(1);
}

.scale-95 {
  transform: scale(0.95);
}

/* 透明度 */
.opacity-0 {
  opacity: 0;
}

.opacity-25 {
  opacity: 0.25;
}

.opacity-50 {
  opacity: 0.5;
}

.opacity-75 {
  opacity: 0.75;
}

.opacity-100 {
  opacity: 1;
}

/* 可见性 */
.visibility-hidden {
  visibility: hidden;
}

.visibility-visible {
  visibility: visible;
}

/* 浮动 */
.float-left {
  float: left;
}

.float-right {
  float: right;
}

.float-none {
  float: none;
}

/* 清除浮动 */
.clearfix::after {
  content: "";
  display: table;
  clear: both;
}

/* 垂直对齐 */
.align-baseline {
  vertical-align: baseline;
}

.align-top {
  vertical-align: top;
}

.align-middle {
  vertical-align: middle;
}

.align-bottom {
  vertical-align: bottom;
}

/* 文本阴影 */
.text-shadow {
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.text-shadow-lg {
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.12), 0 2px 4px rgba(0, 0, 0, 0.08);
}

/* 背景模糊 */
.backdrop-blur {
  backdrop-filter: blur(8px);
}

.backdrop-blur-sm {
  backdrop-filter: blur(4px);
}

.backdrop-blur-md {
  backdrop-filter: blur(12px);
}

.backdrop-blur-lg {
  backdrop-filter: blur(16px);
}

/* 背景渐变 */
.bg-gradient-to-r {
  background-image: linear-gradient(to right, var(--tw-gradient-stops));
}

.bg-gradient-to-l {
  background-image: linear-gradient(to left, var(--tw-gradient-stops));
}

.bg-gradient-to-t {
  background-image: linear-gradient(to top, var(--tw-gradient-stops));
}

.bg-gradient-to-b {
  background-image: linear-gradient(to bottom, var(--tw-gradient-stops));
}

.bg-gradient-to-tr {
  background-image: linear-gradient(to top right, var(--tw-gradient-stops));
}

.bg-gradient-to-tl {
  background-image: linear-gradient(to top left, var(--tw-gradient-stops));
}

.bg-gradient-to-br {
  background-image: linear-gradient(to bottom right, var(--tw-gradient-stops));
}

.bg-gradient-to-bl {
  background-image: linear-gradient(to bottom left, var(--tw-gradient-stops));
}

/* 边框 */
.border {
  border-width: 1px;
}

.border-2 {
  border-width: 2px;
}

.border-4 {
  border-width: 4px;
}

.border-transparent {
  border-color: transparent;
}

.border-gray-200 {
  border-color: #e5e7eb;
}

.border-gray-300 {
  border-color: #d1d5db;
}

.border-gray-400 {
  border-color: #9ca3af;
}

.border-gray-500 {
  border-color: #6b7280;
}

/* 边框半径 */
.rounded {
  border-radius: 0.25rem;
}

.rounded-lg {
  border-radius: 0.5rem;
}

.rounded-xl {
  border-radius: 0.75rem;
}

.rounded-2xl {
  border-radius: 1rem;
}

.rounded-3xl {
  border-radius: 1.5rem;
}

.rounded-full {
  border-radius: 9999px;
}

/* 边框样式 */
.border-solid {
  border-style: solid;
}

.border-dashed {
  border-style: dashed;
}

.border-dotted {
  border-style: dotted;
}

.border-double {
  border-style: double;
}

/* 边框位置 */
.border-t {
  border-top-width: 1px;
}

.border-r {
  border-right-width: 1px;
}

.border-b {
  border-bottom-width: 1px;
}

.border-l {
  border-left-width: 1px;
}

/* 阴影 */
.shadow {
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
}

.shadow-sm {
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.shadow-md {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.shadow-lg {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.shadow-xl {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.shadow-2xl {
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

/* 内阴影 */
.shadow-inner {
  box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06);
}

/* 无阴影 */
.shadow-none {
  box-shadow: none;
}

/* 过渡 */
.transition-all {
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 300ms;
}

.transition-colors {
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 300ms;
}

.transition-opacity {
  transition-property: opacity;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 300ms;
}

.transition-transform {
  transition-property: transform;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 300ms;
}

/* 过渡持续时间 */
.duration-150 {
  transition-duration: 150ms;
}

.duration-200 {
  transition-duration: 200ms;
}

.duration-300 {
  transition-duration: 300ms;
}

.duration-500 {
  transition-duration: 500ms;
}

.duration-700 {
  transition-duration: 700ms;
}

.duration-1000 {
  transition-duration: 1000ms;
}

/* 过渡延迟 */
.delay-100 {
  transition-delay: 100ms;
}

.delay-200 {
  transition-delay: 200ms;
}

.delay-300 {
  transition-delay: 300ms;
}

.delay-500 {
  transition-delay: 500ms;
}

/* 过渡计时函数 */
.ease-linear {
  transition-timing-function: linear;
}

.ease-in {
  transition-timing-function: cubic-bezier(0.4, 0, 1, 1);
}

.ease-out {
  transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
}

.ease-in-out {
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

/* 变换原点 */
.origin-center {
  transform-origin: center;
}

.origin-top {
  transform-origin: top;
}

.origin-bottom {
  transform-origin: bottom;
}

.origin-left {
  transform-origin: left;
}

.origin-right {
  transform-origin: right;
}

.origin-top-left {
  transform-origin: top left;
}

.origin-top-right {
  transform-origin: top right;
}

.origin-bottom-left {
  transform-origin: bottom left;
}

.origin-bottom-right {
  transform-origin: bottom right;
}

/* 缩放 */
.scale-0 {
  transform: scale(0);
}

.scale-50 {
  transform: scale(0.5);
}

.scale-75 {
  transform: scale(0.75);
}

.scale-90 {
  transform: scale(0.9);
}

.scale-95 {
  transform: scale(0.95);
}

.scale-100 {
  transform: scale(1);
}

.scale-105 {
  transform: scale(1.05);
}

.scale-110 {
  transform: scale(1.1);
}

.scale-125 {
  transform: scale(1.25);
}

.scale-150 {
  transform: scale(1.5);
}

/* 旋转 */
.rotate-0 {
  transform: rotate(0deg);
}

.rotate-45 {
  transform: rotate(45deg);
}

.rotate-90 {
  transform: rotate(90deg);
}

.rotate-135 {
  transform: rotate(135deg);
}

.rotate-180 {
  transform: rotate(180deg);
}

.rotate-225 {
  transform: rotate(225deg);
}

.rotate-270 {
  transform: rotate(270deg);
}

.rotate-315 {
  transform: rotate(315deg);
}

/* 倾斜 */
.skew-x-0 {
  transform: skewX(0deg);
}

.skew-x-12 {
  transform: skewX(12deg);
}

.skew-x-6 {
  transform: skewX(6deg);
}

.skew-x--6 {
  transform: skewX(-6deg);
}

.skew-x--12 {
  transform: skewX(-12deg);
}

.skew-y-0 {
  transform: skewY(0deg);
}

.skew-y-12 {
  transform: skewY(12deg);
}

.skew-y-6 {
  transform: skewY(6deg);
}

.skew-y--6 {
  transform: skewY(-6deg);
}

.skew-y--12 {
  transform: skewY(-12deg);
}

/* 平移 */
.translate-x-0 {
  transform: translateX(0);
}

.translate-x-1 {
  transform: translateX(0.25rem);
}

.translate-x-2 {
  transform: translateX(0.5rem);
}

.translate-x-3 {
  transform: translateX(0.75rem);
}

.translate-x-4 {
  transform: translateX(1rem);
}

.translate-x-5 {
  transform: translateX(1.25rem);
}

.translate-x-6 {
  transform: translateX(1.5rem);
}

.translate-x-8 {
  transform: translateX(2rem);
}

.translate-x-10 {
  transform: translateX(2.5rem);
}

.translate-x-12 {
  transform: translateX(3rem);
}

.translate-x-16 {
  transform: translateX(4rem);
}

.translate-x-20 {
  transform: translateX(5rem);
}

.translate-x-24 {
  transform: translateX(6rem);
}

.translate-x-32 {
  transform: translateX(8rem);
}

.translate-x-40 {
  transform: translateX(10rem);
}

.translate-x-48 {
  transform: translateX(12rem);
}

.translate-x-56 {
  transform: translateX(14rem);
}

.translate-x-64 {
  transform: translateX(16rem);
}

.translate-x-full {
  transform: translateX(100%);
}

.-translate-x-1 {
  transform: translateX(-0.25rem);
}

.-translate-x-2 {
  transform: translateX(-0.5rem);
}

.-translate-x-3 {
  transform: translateX(-0.75rem);
}

.-translate-x-4 {
  transform: translateX(-1rem);
}

.-translate-x-5 {
  transform: translateX(-1.25rem);
}

.-translate-x-6 {
  transform: translateX(-1.5rem);
}

.-translate-x-8 {
  transform: translateX(-2rem);
}

.-translate-x-10 {
  transform: translateX(-2.5rem);
}

.-translate-x-12 {
  transform: translateX(-3rem);
}

.-translate-x-16 {
  transform: translateX(-4rem);
}

.-translate-x-20 {
  transform: translateX(-5rem);
}

.-translate-x-24 {
  transform: translateX(-6rem);
}

.-translate-x-32 {
  transform: translateX(-8rem);
}

.-translate-x-40 {
  transform: translateX(-10rem);
}

.-translate-x-48 {
  transform: translateX(-12rem);
}

.-translate-x-56 {
  transform: translateX(-14rem);
}

.-translate-x-64 {
  transform: translateX(-16rem);
}

.-translate-x-full {
  transform: translateX(-100%);
}

.translate-y-0 {
  transform: translateY(0);
}

.translate-y-1 {
  transform: translateY(0.25rem);
}

.translate-y-2 {
  transform: translateY(0.5rem);
}

.translate-y-3 {
  transform: translateY(0.75rem);
}

.translate-y-4 {
  transform: translateY(1rem);
}

.translate-y-5 {
  transform: translateY(1.25rem);
}

.translate-y-6 {
  transform: translateY(1.5rem);
}

.translate-y-8 {
  transform: translateY(2rem);
}

.translate-y-10 {
  transform: translateY(2.5rem);
}

.translate-y-12 {
  transform: translateY(3rem);
}

.translate-y-16 {
  transform: translateY(4rem);
}

.translate-y-20 {
  transform: translateY(5rem);
}

.translate-y-24 {
  transform: translateY(6rem);
}

.translate-y-32 {
  transform: translateY(8rem);
}

.translate-y-40 {
  transform: translateY(10rem);
}

.translate-y-48 {
  transform: translateY(12rem);
}

.translate-y-56 {
  transform: translateY(14rem);
}

.translate-y-64 {
  transform: translateY(16rem);
}

.translate-y-full {
  transform: translateY(100%);
}

.-translate-y-1 {
  transform: translateY(-0.25rem);
}

.-translate-y-2 {
  transform: translateY(-0.5rem);
}

.-translate-y-3 {
  transform: translateY(-0.75rem);
}

.-translate-y-4 {
  transform: translateY(-1rem);
}

.-translate-y-5 {
  transform: translateY(-1.25rem);
}

.-translate-y-6 {
  transform: translateY(-1.5rem);
}

.-translate-y-8 {
  transform: translateY(-2rem);
}

.-translate-y-10 {
  transform: translateY(-2.5rem);
}

.-translate-y-12 {
  transform: translateY(-3rem);
}

.-translate-y-16 {
  transform: translateY(-4rem);
}

.-translate-y-20 {
  transform: translateY(-5rem);
}

.-translate-y-24 {
  transform: translateY(-6rem);
}

.-translate-y-32 {
  transform: translateY(-8rem);
}

.-translate-y-40 {
  transform: translateY(-10rem);
}

.-translate-y-48 {
  transform: translateY(-12rem);
}

.-translate-y-56 {
  transform: translateY(-14rem);
}

.-translate-y-64 {
  transform: translateY(-16rem);
}

.-translate-y-full {
  transform: translateY(-100%);
}

/* Z-index */
.z-0 {
  z-index: 0;
}

.z-10 {
  z-index: 10;
}

.z-20 {
  z-index: 20;
}

.z-30 {
  z-index: 30;
}

.z-40 {
  z-index: 40;
}

.z-50 {
  z-index: 50;
}

.z-60 {
  z-index: 60;
}

.z-70 {
  z-index: 70;
}

.z-80 {
  z-index: 80;
}

.z-90 {
  z-index: 90;
}

.z-100 {
  z-index: 100;
}

.z-auto {
  z-index: auto;
}

/* 内容可见性 */
.content-auto {
  content-visibility: auto;
}

/* 断点 */
@media (max-width: 640px) {
  /* sm */
}

@media (max-width: 768px) {
  /* md */
}

@media (max-width: 1024px) {
  /* lg */
}

@media (max-width: 1280px) {
  /* xl */
}

@media (max-width: 1536px) {
  /* 2xl */
}

/* 打印样式 */
@media print {
  .print\:hidden {
    display: none !important;
  }
  
  .print\:block {
    display: block !important;
  }
  
  .print\:inline {
    display: inline !important;
  }
  
  .print\:inline-block {
    display: inline-block !important;
  }
  
  .print\:flex {
    display: flex !important;
  }
  
  .print\:inline-flex {
    display: inline-flex !important;
  }
  
  .print\:grid {
    display: grid !important;
  }
  
  .print\:flow-root {
    display: flow-root !important;
  }
  
  .print\:clear-both {
    clear: both !important;
  }
  
  .print\:clear-left {
    clear: left !important;
  }
  
  .print\:clear-right {
    clear: right !important;
  }
  
  .print\:float-left {
    float: left !important;
  }
  
  .print\:float-right {
    float: right !important;
  }
  
  .print\:float-none {
    float: none !important;
  }
  
  .print\:text-left {
    text-align: left !important;
  }
  
  .print\:text-center {
    text-align: center !important;
  }
  
  .print\:text-right {
    text-align: right !important;
  }
  
  .print\:text-justify {
    text-align: justify !important;
  }
  
  .print\:text-start {
    text-align: start !important;
  }
  
  .print\:text-end {
    text-align: end !important;
  }
  
  .print\:font-normal {
    font-weight: 400 !important;
  }
  
  .print\:font-medium {
    font-weight: 500 !important;
  }
  
  .print\:font-semibold {
    font-weight: 600 !important;
  }
  
  .print\:font-bold {
    font-weight: 700 !important;
  }
  
  .print\:underline {
    text-decoration: underline !important;
  }
  
  .print\:line-through {
    text-decoration: line-through !important;
  }
  
  .print\:no-underline {
    text-decoration: none !important;
  }
  
  .print\:truncate {
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
  }
  
  .print\:overflow-visible {
    overflow: visible !important;
  }
  
  .print\:overflow-hidden {
    overflow: hidden !important;
  }
  
  .print\:overflow-scroll {
    overflow: scroll !important;
  }
  
  .print\:overflow-auto {
    overflow: auto !important;
  }
  
  .print\:whitespace-normal {
    white-space: normal !important;
  }
  
  .print\:whitespace-nowrap {
    white-space: nowrap !important;
  }
  
  .print\:whitespace-pre {
    white-space: pre !important;
  }
  
  .print\:whitespace-pre-wrap {
    white-space: pre-wrap !important;
  }
  
  .print\:whitespace-pre-line {
    white-space: pre-line !important;
  }
  
  .print\:break-normal {
    overflow-wrap: normal !important;
    word-break: normal !important;
  }
  
  .print\:break-words {
    overflow-wrap: break-word !important;
  }
  
  .print\:break-all {
    word-break: break-all !important;
  }
  
  .print\:text-transform-none {
    text-transform: none !important;
  }
  
  .print\:text-transform-capitalize {
    text-transform: capitalize !important;
  }
  
  .print\:text-transform-uppercase {
    text-transform: uppercase !important;
  }
  
  .print\:text-transform-lowercase {
    text-transform: lowercase !important;
  }
  
  .print\:text-xs {
    font-size: 0.75rem !important;
    line-height: 1rem !important;
  }
  
  .print\:text-sm {
    font-size: 0.875rem !important;
    line-height: 1.25rem !important;
  }
  
  .print\:text-base {
    font-size: 1rem !important;
    line-height: 1.5rem !important;
  }
  
  .print\:text-lg {
    font-size: 1.125rem !important;
    line-height: 1.75rem !important;
  }
  
  .print\:text-xl {
    font-size: 1.25rem !important;
    line-height: 1.75rem !important;
  }
  
  .print\:text-2xl {
    font-size: 1.5rem !important;
    line-height: 2rem !important;
  }
  
  .print\:text-3xl {
    font-size: 1.875rem !important;
    line-height: 2.25rem !important;
  }
  
  .print\:text-4xl {
    font-size: 2.25rem !important;
    line-height: 2.5rem !important;
  }
  
  .print\:text-5xl {
    font-size: 3rem !important;
    line-height: 1 !important;
  }
  
  .print\:text-6xl {
    font-size: 3.75rem !important;
    line-height: 1 !important;
  }
  
  .print\:text-7xl {
    font-size: 4.5rem !important;
    line-height: 1 !important;
  }
  
  .print\:text-8xl {
    font-size: 6rem !important;
    line-height: 1 !important;
  }
  
  .print\:text-9xl {
    font-size: 8rem !important;
    line-height: 1 !important;
  }
  
  .print\:font-sans {
    font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !important;
  }
  
  .print\:font-serif {
    font-family: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif !important;
  }
  
  .print\:font-mono {
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace !important;
  }
  
  .print\:border {
    border-width: 1px !important;
  }
  
  .print\:border-0 {
    border-width: 0 !important;
  }
  
  .print\:border-2 {
    border-width: 2px !important;
  }
  
  .print\:border-4 {
    border-width: 4px !important;
  }
  
  .print\:border-8 {
    border-width: 8px !important;
  }
  
  .print\:border-t {
    border-top-width: 1px !important;
  }
  
  .print\:border-r {
    border-right-width: 1px !important;
  }
  
  .print\:border-b {
    border-bottom-width: 1px !important;
  }
  
  .print\:border-l {
    border-left-width: 1px !important;
  }
  
  .print\:border-x {
    border-left-width: 1px !important;
    border-right-width: 1px !important;
  }
  
  .print\:border-y {
    border-top-width: 1px !important;
    border-bottom-width: 1px !important;
  }
  
  .print\:border-solid {
    border-style: solid !important;
  }
  
  .print\:border-dashed {
    border-style: dashed !important;
  }
  
  .print\:border-dotted {
    border-style: dotted !important;
  }
  
  .print\:border-double {
    border-style: double !important;
  }
  
  .print\:border-hidden {
    border-style: hidden !important;
  }
  
  .print\:border-none {
    border-style: none !important;
  }
  
  .print\:rounded-none {
    border-radius: 0 !important;
  }
  
  .print\:rounded-sm {
    border-radius: 0.125rem !important;
  }
  
  .print\:rounded {
    border-radius: 0.25rem !important;
  }
  
  .print\:rounded-md {
    border-radius: 0.375rem !important;
  }
  
  .print\:rounded-lg {
    border-radius: 0.5rem !important;
  }
  
  .print\:rounded-xl {
    border-radius: 0.75rem !important;
  }
  
  .print\:rounded-2xl {
    border-radius: 1rem !important;
  }
  
  .print\:rounded-3xl {
    border-radius: 1.5rem !important;
  }
  
  .print\:rounded-full {
    border-radius: 9999px !important;
  }
  
  .print\:bg-transparent {
    background-color: transparent !important;
  }
  
  .print\:bg-current {
    background-color: currentColor !important;
  }
  
  .print\:bg-black {
    background-color: #000 !important;
  }
  
  .print\:bg-white {
    background-color: #fff !important;
  }
  
  .print\:bg-gray-50 {
    background-color: #f9fafb !important;
  }
  
  .print\:bg-gray-100 {
    background-color: #f3f4f6 !important;
  }
  
  .print\:bg-gray-200 {
    background-color: #e5e7eb !important;
  }
  
  .print\:bg-gray-300 {
    background-color: #d1d5db !important;
  }
  
  .print\:bg-gray-400 {
    background-color: #9ca3af !important;
  }
  
  .print\:bg-gray-500 {
    background-color: #6b7280 !important;
  }
  
  .print\:bg-gray-600 {
    background-color: #4b5563 !important;
  }
  
  .print\:bg-gray-700 {
    background-color: #374151 !important;
  }
  
  .print\:bg-gray-800 {
    background-color: #1f2937 !important;
  }
  
  .print\:bg-gray-900 {
    background-color: #111827 !important;
  }
  
  .print\:text-transparent {
    color: transparent !important;
  }
  
  .print\:text-current {
    color: currentColor !important;
  }
  
  .print\:text-black {
    color: #000 !important;
  }
  
  .print\:text-white {
    color: #fff !important;
  }
  
  .print\:text-gray-50 {
    color: #f9fafb !important;
  }
  
  .print\:text-gray-100 {
    color: #f3f4f6 !important;
  }
  
  .print\:text-gray-200 {
    color: #e5e7eb !important;
  }
  
  .print\:text-gray-300 {
    color: #d1d5db !important;
  }
  
  .print\:text-gray-400 {
    color: #9ca3af !important;
  }
  
  .print\:text-gray-500 {
    color: #6b7280 !important;
  }
  
  .print\:text-gray-600 {
    color: #4b5563 !important;
  }
  
  .print\:text-gray-700 {
    color: #374151 !important;
  }
  
  .print\:text-gray-800 {
    color: #1f2937 !important;
  }
  
  .print\:text-gray-900 {
    color: #111827 !important;
  }
  
  .print\:shadow-none {
    box-shadow: none !important;
  }
  
  .print\:shadow-sm {
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05) !important;
  }
  
  .print\:shadow {
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06) !important;
  }
  
  .print\:shadow-md {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06) !important;
  }
  
  .print\:shadow-lg {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05) !important;
  }
  
  .print\:shadow-xl {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04) !important;
