/* 基础样式重置 */
*, ::before, ::after {
  box-sizing: border-box;
  border-width: 0;
  border-style: solid;
  border-color: #e5e7eb;
}

html {
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
  -moz-tab-size: 4;
  -o-tab-size: 4;
  tab-size: 4;
  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";
}

body {
  margin: 0;
  line-height: inherit;
  background-color: #F9FAFB;
  color: #1F2937;
  font-family: 'Inter', system-ui, sans-serif;
  min-height: 100vh;
}

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

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

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

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

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

/* 布局工具类 */
.flex {
  display: flex;
}

.grid {
  display: grid;
}

.hidden {
  display: none;
}

/* 定位工具类 */
.fixed {
  position: fixed;
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.sticky {
  position: sticky;
}

/* 间距工具类 */
.m-0 {
  margin: 0;
}

.mb-2 {
  margin-bottom: 0.5rem;
}

.mb-3 {
  margin-bottom: 0.75rem;
}

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

.mb-6 {
  margin-bottom: 1.5rem;
}

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

.mt-2 {
  margin-top: 0.5rem;
}

.mt-3 {
  margin-top: 0.75rem;
}

.mt-4 {
  margin-top: 1rem;
}

.mt-6 {
  margin-top: 1.5rem;
}

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

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

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

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

.mt-32 {
  margin-top: 8rem;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.my-0 {
  margin-top: 0;
  margin-bottom: 0;
}

.my-2 {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

.my-4 {
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.py-2 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.py-3 {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

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

.py-6 {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

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

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

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

.py-24 {
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.py-32 {
  padding-top: 8rem;
  padding-bottom: 8rem;
}

.px-2 {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

.px-3 {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}

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

.px-6 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

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

.p-2 {
  padding: 0.5rem;
}

.p-3 {
  padding: 0.75rem;
}

.p-4 {
  padding: 1rem;
}

.p-6 {
  padding: 1.5rem;
}

.p-8 {
  padding: 2rem;
}

/* 排版工具类 */
.text-center {
  text-align: center;
}

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

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

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

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

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

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

.text-xs {
  font-size: 0.75rem;
  line-height: 1rem;
}

.text-sm {
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.text-base {
  font-size: 1rem;
  line-height: 1.5rem;
}

.text-lg {
  font-size: 1.125rem;
  line-height: 1.75rem;
}

.text-xl {
  font-size: 1.25rem;
  line-height: 1.75rem;
}

.text-2xl {
  font-size: 1.5rem;
  line-height: 2rem;
}

.text-3xl {
  font-size: 1.875rem;
  line-height: 2.25rem;
}

.text-4xl {
  font-size: 2.25rem;
  line-height: 2.5rem;
}

.text-5xl {
  font-size: 3rem;
  line-height: 1;
}

.text-6xl {
  font-size: 3.75rem;
  line-height: 1;
}

/* 颜色工具类 */
.text-primary {
  color: #3B82F6;
}

.text-secondary {
  color: #6366F1;
}

.text-accent {
  color: #8B5CF6;
}

.text-neutral {
  color: #F3F4F6;
}

.text-neutral-dark {
  color: #1F2937;
}

.text-gray-50 {
  color: #F9FAFB;
}

.text-gray-100 {
  color: #F3F4F6;
}

.text-gray-200 {
  color: #E5E7EB;
}

.text-gray-300 {
  color: #D1D5DB;
}

.text-gray-400 {
  color: #9CA3AF;
}

.text-gray-500 {
  color: #6B7280;
}

.text-gray-600 {
  color: #4B5563;
}

.text-gray-700 {
  color: #374151;
}

.text-gray-800 {
  color: #1F2937;
}

.text-gray-900 {
  color: #111827;
}

.text-white {
  color: #FFFFFF;
}

.text-yellow-50 {
  color: #FFFBEB;
}

.text-yellow-100 {
  color: #FEF3C7;
}

.text-yellow-800 {
  color: #92400E;
}

.text-blue-50 {
  color: #EFF6FF;
}

.text-blue-100 {
  color: #DBEAFE;
}

.text-blue-500 {
  color: #3B82F6;
}

.text-blue-600 {
  color: #2563EB;
}

.text-blue-800 {
  color: #1E40AF;
}

.text-purple-50 {
  color: #F5F3FF;
}

.text-purple-100 {
  color: #EDE9FE;
}

.text-purple-800 {
  color: #5B21B6;
}

.text-green-50 {
  color: #ECFDF5;
}

.text-green-100 {
  color: #D1FAE5;
}

.text-green-800 {
  color: #166534;
}

.text-pink-100 {
  color: #FCE7F3;
}

.text-pink-800 {
  color: #9D174D;
}

.text-red-100 {
  color: #FEE2E2;
}

.text-red-800 {
  color: #991B1B;
}

.text-teal-100 {
  color: #CCFBF1;
}

.text-teal-800 {
  color: #0F766E;
}

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

.text-i-color {
  color: #6366F1;
}

.text-s-color {
  color: #10B981;
}

.text-n-color {
  color: #8B5CF6;
}

.text-t-color {
  color: #F59E0B;
}

.text-f-color {
  color: #EC4899;
}

.text-j-color {
  color: #EF4444;
}

.text-p-color {
  color: #14B8A6;
}

.bg-primary {
  background-color: #3B82F6;
}

.bg-secondary {
  background-color: #6366F1;
}

.bg-accent {
  background-color: #8B5CF6;
}

.bg-neutral {
  background-color: #F3F4F6;
}

.bg-neutral-dark {
  background-color: #1F2937;
}

.bg-gray-50 {
  background-color: #F9FAFB;
}

.bg-gray-100 {
  background-color: #F3F4F6;
}

.bg-gray-200 {
  background-color: #E5E7EB;
}

.bg-gray-300 {
  background-color: #D1D5DB;
}

.bg-gray-400 {
  background-color: #9CA3AF;
}

.bg-gray-500 {
  background-color: #6B7280;
}

.bg-gray-600 {
  background-color: #4B5563;
}

.bg-gray-700 {
  background-color: #374151;
}

.bg-gray-800 {
  background-color: #1F2937;
}

.bg-gray-900 {
  background-color: #111827;
}

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

.bg-yellow-50 {
  background-color: #FFFBEB;
}

.bg-yellow-100 {
  background-color: #FEF3C7;
}

.bg-blue-50 {
  background-color: #EFF6FF;
}

.bg-blue-100 {
  background-color: #DBEAFE;
}

.bg-blue-500 {
  background-color: #3B82F6;
}

.bg-blue-600 {
  background-color: #2563EB;
}

.bg-purple-50 {
  background-color: #F5F3FF;
}

.bg-purple-100 {
  background-color: #EDE9FE;
}

.bg-green-50 {
  background-color: #ECFDF5;
}

.bg-green-100 {
  background-color: #D1FAE5;
}

.bg-pink-100 {
  background-color: #FCE7F3;
}

.bg-red-100 {
  background-color: #FEE2E2;
}

.bg-teal-100 {
  background-color: #CCFBF1;
}

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

.border-0 {
  border-width: 0;
}

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

.border-gray-100 {
  border-color: #F3F4F6;
}

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

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

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

.border-primary {
  border-color: #3B82F6;
}

.border-blue-500 {
  border-color: #3B82F6;
}

.rounded {
  border-radius: 0.25rem;
}

.rounded-sm {
  border-radius: 0.125rem;
}

.rounded-md {
  border-radius: 0.375rem;
}

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

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

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

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

.rounded-t {
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
}

.rounded-b {
  border-bottom-left-radius: 0.25rem;
  border-bottom-right-radius: 0.25rem;
}

.rounded-l {
  border-top-left-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}

.rounded-r {
  border-top-right-radius: 0.25rem;
  border-bottom-right-radius: 0.25rem;
}

.rounded-t-lg {
  border-top-left-radius: 0.5rem;
  border-top-right-radius: 0.5rem;
}

.rounded-b-lg {
  border-bottom-left-radius: 0.5rem;
  border-bottom-right-radius: 0.5rem;
}

.rounded-l-lg {
  border-top-left-radius: 0.5rem;
  border-bottom-left-radius: 0.5rem;
}

.rounded-r-lg {
  border-top-right-radius: 0.5rem;
  border-bottom-right-radius: 0.5rem;
}

/* 阴影工具类 */
.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;
}

/* 弹性布局工具类 */
.flex-col {
  flex-direction: column;
}

.flex-row {
  flex-direction: row;
}

.flex-wrap {
  flex-wrap: wrap;
}

.flex-nowrap {
  flex-wrap: nowrap;
}

.items-start {
  align-items: flex-start;
}

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

.items-end {
  align-items: flex-end;
}

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

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

.justify-start {
  justify-content: flex-start;
}

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

.justify-end {
  justify-content: flex-end;
}

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

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

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

.content-start {
  align-content: flex-start;
}

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

.content-end {
  align-content: flex-end;
}

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

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

.content-stretch {
  align-content: stretch;
}

.self-auto {
  align-self: auto;
}

.self-start {
  align-self: flex-start;
}

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

.self-end {
  align-self: flex-end;
}

.self-stretch {
  align-self: stretch;
}

.flex-1 {
  flex: 1 1 0%;
}

.flex-auto {
  flex: 1 1 auto;
}

.flex-none {
  flex: none;
}

/* 网格布局工具类 */
.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));
}

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

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

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

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

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

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

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

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

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

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

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

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

.gap-1 {
  gap: 0.25rem;
}

.gap-2 {
  gap: 0.5rem;
}

.gap-3 {
  gap: 0.75rem;
}

.gap-4 {
  gap: 1rem;
}

.gap-5 {
  gap: 1.25rem;
}

.gap-6 {
  gap: 1.5rem;
}

.gap-8 {
  gap: 2rem;
}

.gap-10 {
  gap: 2.5rem;
}

.gap-12 {
  gap: 3rem;
}

.gap-x-1 {
  column-gap: 0.25rem;
}

.gap-x-2 {
  column-gap: 0.5rem;
}

.gap-x-3 {
  column-gap: 0.75rem;
}

.gap-x-4 {
  column-gap: 1rem;
}

.gap-x-6 {
  column-gap: 1.5rem;
}

.gap-x-8 {
  column-gap: 2rem;
}

.gap-y-1 {
  row-gap: 0.25rem;
}

.gap-y-2 {
  row-gap: 0.5rem;
}

.gap-y-3 {
  row-gap: 0.75rem;
}

.gap-y-4 {
  row-gap: 1rem;
}

.gap-y-6 {
  row-gap: 1.5rem;
}

.gap-y-8 {
  row-gap: 2rem;
}

/* 响应式工具类 */
@media (min-width: 640px) {
  .sm\\:flex {
    display: flex;
  }
  .sm\\:hidden {
    display: none;
  }
  .sm\\:grid {
    display: grid;
  }
  .sm\\:grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  .sm\\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .sm\\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .sm\\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .sm\\:col-span-1 {
    grid-column: span 1 / span 1;
  }
  .sm\\:col-span-2 {
    grid-column: span 2 / span 2;
  }
  .sm\\:col-span-3 {
    grid-column: span 3 / span 3;
  }
  .sm\\:col-span-4 {
    grid-column: span 4 / span 4;
  }
  .sm\\:row-span-1 {
    grid-row: span 1 / span 1;
  }
  .sm\\:row-span-2 {
    grid-row: span 2 / span 2;
  }
  .sm\\:flex-row {
    flex-direction: row;
  }
  .sm\\:flex-col {
    flex-direction: column;
  }
  .sm\\:items-center {
    align-items: center;
  }
  .sm\\:justify-center {
    justify-content: center;
  }
  .sm\\:justify-between {
    justify-content: space-between;
  }
  .sm\\:text-sm {
    font-size: 0.875rem;
    line-height: 1.25rem;
  }
  .sm\\:text-base {
    font-size: 1rem;
    line-height: 1.5rem;
  }
  .sm\\:text-lg {
    font-size: 1.125rem;
    line-height: 1.75rem;
  }
  .sm\\:text-xl {
    font-size: 1.25rem;
    line-height: 1.75rem;
  }
  .sm\\:text-2xl {
    font-size: 1.5rem;
    line-height: 2rem;
  }
  .sm\\:text-3xl {
    font-size: 1.875rem;
    line-height: 2.25rem;
  }
  .sm\\:text-4xl {
    font-size: 2.25rem;
    line-height: 2.5rem;
  }
  .sm\\:text-5xl {
    font-size: 3rem;
    line-height: 1;
  }
  .sm\\:text-6xl {
    font-size: 3.75rem;
    line-height: 1;
  }
  .sm\\:p-0 {
    padding: 0;
  }
  .sm\\:p-2 {
    padding: 0.5rem;
  }
  .sm\\:p-4 {
    padding: 1rem;
  }
  .sm\\:p-6 {
    padding: 1.5rem;
  }
  .sm\\:p-8 {
    padding: 2rem;
  }
  .sm\\:px-0 {
    padding-left: 0;
    padding-right: 0;
  }
  .sm\\:px-2 {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
  .sm\\:px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .sm\\:px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
  .sm\\:px-8 {
    padding-left: 2rem;
    padding-right: 2rem;
  }
  .sm\\:py-0 {
    padding-top: 0;
    padding-bottom: 0;
  }
  .sm\\:py-2 {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
  .sm\\:py-4 {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
  .sm\\:py-6 {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }
  .sm\\:py-8 {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
  .sm\\:m-0 {
    margin: 0;
  }
  .sm\\:m-2 {
    margin: 0.5rem;
  }
  .sm\\:m-4 {
    margin: 1rem;
  }
  .sm\\:m-6 {
    margin: 1.5rem;
  }
  .sm\\:m-8 {
    margin: 2rem;
  }
  .sm\\:mx-0 {
    margin-left: 0;
    margin-right: 0;
  }
  .sm\\:mx-auto {
    margin-left: auto;
    margin-right: auto;
  }
  .sm\\:my-0 {
    margin-top: 0;
    margin-bottom: 0;
  }
  .sm\\:mt-0 {
    margin-top: 0;
  }
  .sm\\:mt-2 {
    margin-top: 0.5rem;
  }
  .sm\\:mt-4 {
    margin-top: 1rem;
  }
  .sm\\:mt-6 {
    margin-top: 1.5rem;
  }
  .sm\\:mt-8 {
    margin-top: 2rem;
  }
  .sm\\:mb-0 {
    margin-bottom: 0;
  }
  .sm\\:mb-2 {
    margin-bottom: 0.5rem;
  }
  .sm\\:mb-4 {
    margin-bottom: 1rem;
  }
  .sm\\:mb-6 {
    margin-bottom: 1.5rem;
  }
  .sm\\:mb-8 {
    margin-bottom: 2rem;
  }
  .sm\\:ml-0 {
    margin-left: 0;
  }
  .sm\\:ml-2 {
    margin-left: 0.5rem;
  }
  .sm\\:ml-4 {
    margin-left: 1rem;
  }
  .sm\\:ml-6 {
    margin-left: 1.5rem;
  }
  .sm\\:ml-8 {
    margin-left: 2rem;
  }
  .sm\\:mr-0 {
    margin-right: 0;
  }
  .sm\\:mr-2 {
    margin-right: 0.5rem;
  }
  .sm\\:mr-4 {
    margin-right: 1rem;
  }
  .sm\\:mr-6 {
    margin-right: 1.5rem;
  }
  .sm\\:mr-8 {
    margin-right: 2rem;
  }
  .sm\\:w-0 {
    width: 0;
  }
  .sm\\:w-auto {
    width: auto;
  }
  .sm\\:w-full {
    width: 100%;
  }
  .sm\\:w-1\\/2 {
    width: 50%;
  }
  .sm\\:w-1\\/3 {
    width: 33.333333%;
  }
  .sm\\:w-2\\/3 {
    width: 66.666667%;
  }
  .sm\\:w-1\\/4 {
    width: 25%;
  }
  .sm\\:w-3\\/4 {
    width: 75%;
  }
  .sm\\:h-0 {
    height: 0;
  }
  .sm\\:h-auto {
    height: auto;
  }
  .sm\\:h-full {
    height: 100%;
  }
  .sm\\:h-16 {
    height: 4rem;
  }
  .sm\\:h-24 {
    height: 6rem;
  }
  .sm\\:h-32 {
    height: 8rem;
  }
  .sm\\:h-40 {
    height: 10rem;
  }
  .sm\\:h-48 {
    height: 12rem;
  }
  .sm\\:h-56 {
    height: 14rem;
  }
  .sm\\:h-64 {
    height: 16rem;
  }
  .sm\\:border {
    border-width: 1px;
  }
  .sm\\:border-0 {
    border-width: 0;
  }
  .sm\\:border-2 {
    border-width: 2px;
  }
  .sm\\:rounded {
    border-radius: 0.25rem;
  }
  .sm\\:rounded-sm {
    border-radius: 0.125rem;
  }
  .sm\\:rounded-md {
    border-radius: 0.375rem;
  }
  .sm\\:rounded-lg {
    border-radius: 0.5rem;
  }
  .sm\\:rounded-xl {
    border-radius: 0.75rem;
  }
  .sm\\:rounded-2xl {
    border-radius: 1rem;
  }
  .sm\\:rounded-full {
    border-radius: 9999px;
  }
  .sm\\:shadow {
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  }
  .sm\\:shadow-sm {
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  }
  .sm\\:shadow-md {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  }
  .sm\\:shadow-lg {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  }
  .sm\\:shadow-xl {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  }
  .sm\\:shadow-2xl {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  }
  .sm\\:shadow-inner {
    box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06);
  }
  .sm\\:shadow-none {
    box-shadow: none;
  }
}

@media (min-width: 768px) {
  .md\\:flex {
    display: flex;
  }
  .md\\:hidden {
    display: none;
  }
  .md\\:grid {
    display: grid;
  }
  .md\\:grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  .md\\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .md\\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .md\\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .md\\:grid-cols-5 {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
  .md\\:grid-cols-6 {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
  .md\\:col-span-1 {
    grid-column: span 1 / span 1;
  }
  .md\\:col-span-2 {
    grid-column: span 2 / span 2;
  }
  .md\\:col-span-3 {
    grid-column: span 3 / span 3;
  }
  .md\\:col-span-4 {
    grid-column: span 4 / span 4;
  }
  .md\\:col-span-5 {
    grid-column: span 5 / span 5;
  }
  .md\\:col-span-6 {
    grid-column: span 6 / span 6;
  }
  .md\\:row-span-1 {
    grid-row: span 1 / span 1;
  }
  .md\\:row-span-2 {
    grid-row: span 2 / span 2;
  }
  .md\\:row-span-3 {
    grid-row: span 3 / span 3;
  }
  .md\\:row-span-4 {
    grid-row: span 4 / span 4;
  }
  .md\\:flex-row {
    flex-direction: row;
  }
  .md\\:flex-col {
    flex-direction: column;
  }
  .md\\:items-start {
    align-items: flex-start;
  }
  .md\\:items-center {
    align-items: center;
  }
  .md\\:items-end {
    align-items: flex-end;
  }
  .md\\:justify-start {
    justify-content: flex-start;
  }
  .md\\:justify-center {
    justify-content: center;
  }
  .md\\:justify-end {
    justify-content: flex-end;
  }
  .md\\:justify-between {
    justify-content: space-between;
  }
  .md\\:justify-around {
    justify-content: space-around;
  }
  .md\\:justify-evenly {
    justify-content: space-evenly;
  }
  .md\\:text-xs {
    font-size: 0.75rem;
    line-height: 1rem;
  }
  .md\\:text-sm {
    font-size: 0.875rem;
    line-height: 1.25rem;
  }
  .md\\:text-base {
    font-size: 1rem;
    line-height: 1.5rem;
  }
  .md\\:text-lg {
    font-size: 1.125rem;
    line-height: 1.75rem;
  }
  .md\\:text-xl {
    font-size: 1.25rem;
    line-height: 1.75rem;
  }
  .md\\:text-2xl {
    font-size: 1.5rem;
    line-height: 2rem;
  }
  .md\\:text-3xl {
    font-size: 1.875rem;
    line-height: 2.25rem;
  }
  .md\\:text-4xl {
    font-size: 2.25rem;
    line-height: 2.5rem;
  }
  .md\\:text-5xl {
    font-size: 3rem;
    line-height: 1;
  }
  .md\\:text-6xl {
    font-size: 3.75rem;
    line-height: 1;
  }
  .md\\:text-7xl {
    font-size: 4.5rem;
    line-height: 1;
  }
  .md\\:text-8xl {
    font-size: 6rem;
    line-height: 1;
  }
  .md\\:p-0 {
    padding: 0;
  }
  .md\\:p-2 {
    padding: 0.5rem;
  }
  .md\\:p-4 {
    padding: 1rem;
  }
  .md\\:p-6 {
    padding: 1.5rem;
  }
  .md\\:p-8 {
    padding: 2rem;
  }
  .md\\:p-10 {
    padding: 2.5rem;
  }
  .md\\:p-12 {
    padding: 3rem;
  }
  .md\\:p-16 {
    padding: 4rem;
  }
  .md\\:p-20 {
    padding: 5rem;
  }
  .md\\:p-24 {
    padding: 6rem;
  }
  .md\\:p-32 {
    padding: 8rem;
  }
  .md\\:px-0 {
    padding-left: 0;
    padding-right: 0;
  }
  .md\\:px-2 {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
  .md\\:px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .md\\:px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
  .md\\:px-8 {
    padding-left: 2rem;
    padding-right: 2rem;
  }
  .md\\:px-10 {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
  .md\\:px-12 {
    padding-left: 3rem;
    padding-right: 3rem;
  }
  .md\\:px-16 {
    padding-left: 4rem;
    padding-right: 4rem;
  }
  .md\\:px-20 {
    padding-left: 5rem;
    padding-right: 5rem;
  }
  .md\\:px-24 {
    padding-left: 6rem;
    padding-right: 6rem;
  }
  .md\\:px-32 {
    padding-left: 8rem;
    padding-right: 8rem;
  }
  .md\\:py-0 {
    padding-top: 0;
    padding-bottom: 0;
  }
  .md\\:py-2 {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
  .md\\:py-4 {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
  .md\\:py-6 {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }
  .md\\:py-8 {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
  .md\\:py-10 {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
  .md\\:py-12 {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
  .md\\:py-16 {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
  .md\\:py-20 {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
  .md\\:py-24 {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
  .md\\:py-32 {
    padding-top: 8rem;
    padding-bottom: 8rem;
  }
  .md\\:m-0 {
    margin: 0;
  }
  .md\\:m-2 {
    margin: 0.5rem;
  }
  .md\\:m-4 {
    margin: 1rem;
  }
  .md\\:m-6 {
    margin: 1.5rem;
  }
  .md\\:m-8 {
    margin: 2rem;
  }
  .md\\:m-10 {
    margin: 2.5rem;
  }
  .md\\:m-12 {
    margin: 3rem;
  }
  .md\\:m-16 {
    margin: 4rem;
  }
  .md\\:m-20 {
    margin: 5rem;
  }
  .md\\:m-24 {
    margin: 6rem;
  }
  .md\\:m-32 {
    margin: 8rem;
  }
  .md\\:mx-0 {
    margin-left: 0;
    margin-right: 0;
  }
  .md\\:mx-auto {
    margin-left: auto;
    margin-right: auto;
  }
  .md\\:my-0 {
    margin-top: 0;
    margin-bottom: 0;
  }
  .md\\:mt-0 {
    margin-top: 0;
  }
  .md\\:mt-2 {
    margin-top: 0.5rem;
  }
  .md\\:mt-4 {
    margin-top: 1rem;
  }
  .md\\:mt-6 {
    margin-top: 1.5rem;
  }
  .md\\:mt-8 {
    margin-top: 2rem;
  }
  .md\\:mt-10 {
    margin-top: 2.5rem;
  }
  .md\\:mt-12 {
    margin-top: 3rem;
  }
  .md\\:mt-16 {
    margin-top: 4rem;
  }
  .md\\:mt-20 {
    margin-top: 5rem;
  }
  .md\\:mt-24 {
    margin-top: 6rem;
  }
  .md\\:mt-32 {
    margin-top: 8rem;
  }
  .md\\:mb-0 {
    margin-bottom: 0;
  }
  .md\\:mb-2 {
    margin-bottom: 0.5rem;
  }
  .md\\:mb-4 {
    margin-bottom: 1rem;
  }
  .md\\:mb-6 {
    margin-bottom: 1.5rem;
  }
  .md\\:mb-8 {
    margin-bottom: 2rem;
  }
  .md\\:mb-10 {
    margin-bottom: 2.5rem;
  }
  .md\\:mb-12 {
    margin-bottom: 3rem;
  }
  .md\\:mb-16 {
    margin-bottom: 4rem;
  }
  .md\\:mb-20 {
    margin-bottom: 5rem;
  }
  .md\\:mb-24 {
    margin-bottom: 6rem;
  }
  .md\\:mb-32 {
    margin-bottom: 8rem;
  }
  .md\\:ml-0 {
    margin-left: 0;
  }
  .md\\:ml-2 {
    margin-left: 0.5rem;
  }
  .md\\:ml-4 {
    margin-left: 1rem;
  }
  .md\\:ml-6 {
    margin-left: 1.5rem;
  }
  .md\\:ml-8 {
    margin-left: 2rem;
  }
  .md\\:ml-10 {
    margin-left: 2.5rem;
  }
  .md\\:ml-12 {
    margin-left: 3rem;
  }
  .md\\:ml-16 {
    margin-left: 4rem;
  }
  .md\\:ml-20 {
    margin-left: 5rem;
  }
  .md\\:ml-24 {
    margin-left: 6rem;
  }
  .md\\:ml-32 {
    margin-left: 8rem;
  }
  .md\\:mr-0 {
    margin-right: 0;
  }
  .md\\:mr-2 {
    margin-right: 0.5rem;
  }
  .md\\:mr-4 {
    margin-right: 1rem;
  }
  .md\\:mr-6 {
    margin-right: 1.5rem;
  }
  .md\\:mr-8 {
    margin-right: 2rem;
  }
  .md\\:mr-10 {
    margin-right: 2.5rem;
  }
  .md\\:mr-12 {
    margin-right: 3rem;
  }
  .md\\:mr-16 {
    margin-right: 4rem;
  }
  .md\\:mr-20 {
    margin-right: 5rem;
  }
  .md\\:mr-24 {
    margin-right: 6rem;
  }
  .md\\:mr-32 {
    margin-right: 8rem;
  }
  .md\\:w-0 {
    width: 0;
  }
  .md\\:w-auto {
    width: auto;
  }
  .md\\:w-full {
    width: 100%;
  }
  .md\\:w-1\\/2 {
    width: 50%;
  }
  .md\\:w-1\\/3 {
    width: 33.333333%;
  }
  .md\\:w-2\\/3 {
    width: 66.666667%;
  }
  .md\\:w-1\\/4 {
    width: 25%;
  }
  .md\\:w-3\\/4 {
    width: 75%;
  }
  .md\\:w-1\\/5 {
    width: 20%;
  }
  .md\\:w-2\\/5 {
    width: 40%;
  }
  .md\\:w-3\\/5 {
    width: 60%;
  }
  .md\\:w-4\\/5 {
    width: 80%;
  }
  .md\\:w-1\\/6 {
    width: 16.666667%;
  }
  .md\\:w-5\\/6 {
    width: 83.333333%;
  }
  .md\\:w-1\\/12 {
    width: 8.333333%;
  }
  .md\\:w-2\\/12 {
    width: 16.666667%;
  }
  .md\\:w-3\\/12 {
    width: 25%;
  }
  .md\\:w-4\\/12 {
    width: 33.333333%;
  }
  .md\\:w-5\\/12 {
    width: 41.666667%;
  }
  .md\\:w-6\\/12 {
    width: 50%;
  }
  .md\\:w-7\\/12 {
    width: 58.333333%;
  }
  .md\\:w-8\\/12 {
    width: 66.666667%;
  }
  .md\\:w-9\\/12 {
    width: 75%;
  }
  .md\\:w-10\\/12 {
    width: 83.333333%;
  }
  .md\\:w-11\\/12 {
    width: 91.666667%;
  }
  .md\\:w-16 {
    width: 4rem;
  }
  .md\\:w-20 {
    width: 5rem;
  }
  .md\\:w-24 {
    width: 6rem;
  }
  .md\\:w-32 {
    width: 8rem;
  }
  .md\\:w-40 {
    width: 10rem;
  }
  .md\\:w-48 {
    width: 12rem;
  }
  .md\\:w-56 {
    width: 14rem;
  }
  .md\\:w-64 {
    width: 16rem;
  }
  .md\\:w-72 {
    width: 18rem;
  }
  .md\\:w-80 {
    width: 20rem;
  }
  .md\\:w-96 {
    width: 24rem;
  }
  .md\\:w-px {
    width: 1px;
  }
  .md\\:h-0 {
    height: 0;
  }
  .md\\:h-auto {
    height: auto;
  }
  .md\\:h-full {
    height: 100%;
  }
  .md\\:h-1\\/2 {
    height: 50%;
  }
  .md\\:h-1\\/3 {
    height: 33.333333%;
  }
  .md\\:h-2\\/3 {
    height: 66.666667%;
  }
  .md\\:h-1\\/4 {
    height: 25%;
  }
  .md\\:h-3\\/4 {
    height: 75%;
  }
  .md\\:h-16 {
    height: 4rem;
  }
  .md\\:h-20 {
    height: 5rem;
  }
  .md\\:h-24 {
    height: 6rem;
  }
  .md\\:h-32 {
    height: 8rem;
  }
  .md\\:h-40 {
    height: 10rem;
  }
  .md\\:h-48 {
    height: 12rem;
  }
  .md\\:h-56 {
    height: 14rem;
  }
  .md\\:h-64 {
    height: 16rem;
  }
  .md\\:h-72 {
    height: 18rem;
  }
  .md\\:h-80 {
    height: 20rem;
  }
  .md\\:h-96 {
    height: 24rem;
  }
  .md\\:h-px {
    height: 1px;
  }
  .md\\:border {
    border-width: 1px;
  }
  .md\\:border-0 {
    border-width: 0;
  }
  .md\\:border-2 {
    border-width: 2px;
  }
  .md\\:border-4 {
    border-width: 4px;
  }
  .md\\:border-8 {
    border-width: 8px;
  }
  .md\\:rounded {
    border-radius: 0.25rem;
  }
  .md\\:rounded-sm {
    border-radius: 0.125rem;
  }
  .md\\:rounded-md {
    border-radius: 0.375rem;
  }
  .md\\:rounded-lg {
    border-radius: 0.5rem;
  }
  .md\\:rounded-xl {
    border-radius: 0.75rem;
  }
  .md\\:rounded-2xl {
    border-radius: 1rem;
  }
  .md\\:rounded-3xl {
    border-radius: 1.5rem;
  }
  .md\\:rounded-full {
    border-radius: 9999px;
  }
  .md\\:shadow {
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  }
  .md\\:shadow-sm {
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  }
  .md\\:shadow-md {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  }
  .md\\:shadow-lg {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  }
  .md\\:shadow-xl {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  }
  .md\\:shadow-2xl {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  }
  .md\\:shadow-inner {
    box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06);
  }
  .md\\:shadow-none {
    box-shadow: none;
  }
}

@media (min-width: 1024px) {
  .lg\\:flex {
    display: flex;
  }
  .lg\\:hidden {
    display: none;
  }
  .lg\\:grid {
    display: grid;
  }
  .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));
  }
  .lg\\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .lg\\:grid-cols-5 {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
  .lg\\:grid-cols-6 {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
  .lg\\:grid-cols-7 {
    grid-template-columns: repeat(7, minmax(0, 1fr));
  }
  .lg\\:grid-cols-8 {
    grid-template-columns: repeat(8, minmax(0, 1fr));
  }
  .lg\\:col-span-1 {
    grid-column: span 1 / span 1;
  }
  .lg\\:col-span-2 {
    grid-column: span 2 / span 2;
  }
  .lg\\:col-span-3 {
    grid-column: span 3 / span 3;
  }
  .lg\\:col-span-4 {
    grid-column: span 4 / span 4;
  }
  .lg\\:col-span-5 {
    grid-column: span 5 / span 5;
  }
  .lg\\:col-span-6 {
    grid-column: span 6 / span 6;
  }
  .lg\\:col-span-7 {
    grid-column: span 7 / span 7;
  }
  .lg\\:col-span-8 {
    grid-column: span 8 / span 8;
  }
  .lg\\:row-span-1 {
    grid-row: span 1 / span 1;
  }
  .lg\\:row-span-2 {
    grid-row: span 2 / span 2;
  }
  .lg\\:row-span-3 {
    grid-row: span 3 / span 3;
  }
  .lg\\:row-span-4 {
    grid-row: span 4 / span 4;
  }
  .lg\\:flex-row {
    flex-direction: row;
  }
  .lg\\:flex-col {
    flex-direction: column;
  }
  .lg\\:items-start {
    align-items: flex-start;
  }
  .lg\\:items-center {
    align-items: center;
  }
  .lg\\:items-end {
    align-items: flex-end;
  }
  .lg\\:justify-start {
    justify-content: flex-start;
  }
  .lg\\:justify-center {
    justify-content: center;
  }
  .lg\\:justify-end {
    justify-content: flex-end;
  }
  .lg\\:justify-between {
    justify-content: space-between;
  }
  .lg\\:justify-around {
    justify-content: space-around;
  }
  .lg\\:justify-evenly {
    justify-content: space-evenly;
  }
  .lg\\:text-xs {
    font-size: 0.75rem;
    line-height: 1rem;
  }
  .lg\\:text-sm {
    font-size: 0.875rem;
    line-height: 1.25rem;
  }
  .lg\\:text-base {
    font-size: 1rem;
    line-height: 1.5rem;
  }
  .lg\\:text-lg {
    font-size: 1.125rem;
    line-height: 1.75rem;
  }
  .lg\\:text-xl {
    font-size: 1.25rem;
    line-height: 1.75rem;
  }
  .lg\\:text-2xl {
    font-size: 1.5rem;
    line-height: 2rem;
  }
  .lg\\:text-3xl {
    font-size: 1.875rem;
    line-height: 2.25rem;
  }
  .lg\\:text-4xl {
    font-size: 2.25rem;
    line-height: 2.5rem;
  }
  .lg\\:text-5xl {
    font-size: 3rem;
    line-height: 1;
  }
  .lg\\:text-6xl {
    font-size: 3.75rem;
    line-height: 1;
  }
  .lg\\:text-7xl {
    font-size: 4.5rem;
    line-height: 1;
  }
  .lg\\:text-8xl {
    font-size: 6rem;
    line-height: 1;
  }
  .lg\\:p-0 {
    padding: 0;
  }
  .lg\\:p-2 {
    padding: 0.5rem;
  }
  .lg\\:p-4 {
    padding: 1rem;
  }
  .lg\\:p-6 {
    padding: 1.5rem;
  }
  .lg\\:p-8 {
    padding: 2rem;
  }
  .lg\\:p-10 {
    padding: 2.5rem;
  }
  .lg\\:p-12 {
    padding: 3rem;
  }
  .lg\\:p-16 {
    padding: 4rem;
  }
  .lg\\:p-20 {
    padding: 5rem;
  }
  .lg\\:p-24 {
    padding: 6rem;
  }
  .lg\\:p-32 {
    padding: 8rem;
  }
  .lg\\:px-0 {
    padding-left: 0;
    padding-right: 0;
  }
  .lg\\:px-2 {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
  .lg\\:px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .lg\\:px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
  .lg\\:px-8 {
    padding-left: 2rem;
    padding-right: 2rem;
  }
  .lg\\:px-10 {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
  .lg\\:px-12 {
    padding-left: 3rem;
    padding-right: 3rem;
  }
  .lg\\:px-16 {
    padding-left: 4rem;
    padding-right: 4rem;
  }
  .lg\\:px-20 {
    padding-left: 5rem;
    padding-right: 5rem;
  }
  .lg\\:px-24 {
    padding-left: 6rem;
    padding-right: 6rem;
  }
  .lg\\:px-32 {
    padding-left: 8rem;
    padding-right: 8rem;
  }
  .lg\\:py-0 {
    padding-top: 0;
    padding-bottom: 0;
  }
  .lg\\:py-2 {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
  .lg\\:py-4 {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
  .lg\\:py-6 {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }
  .lg\\:py-8 {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
  .lg\\:py-10 {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
  .lg\\:py-12 {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
  .lg\\:py-16 {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
  .lg\\:py-20 {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
  .lg\\:py-24 {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
  .lg\\:py-32 {
    padding-top: 8rem;
    padding-bottom: 8rem;
  }
  .lg\\:m-0 {
    margin: 0;
  }
  .lg\\:m-2 {
    margin: 0.5rem;
  }
  .lg\\:m-4 {
    margin: 1rem;
  }
  .lg\\:m-6 {
    margin: 1.5rem;
  }
  .lg\\:m-8 {
    margin: 2rem;
  }
  .lg\\:m-10 {
    margin: 2.5rem;
  }
  .lg\\:m-12 {
    margin: 3rem;
  }
  .lg\\:m-16 {
    margin: 4rem;
  }
  .lg\\:m-20 {
    margin: 5rem;
  }
  .lg\\:m-24 {
    margin: 6rem;
  }
  .lg\\:m-32 {
    margin: 8rem;
  }
  .lg\\:mx-0 {
    margin-left: 0;
    margin-right: 0;
  }
  .lg\\:mx-auto {
    margin-left: auto;
    margin-right: auto;
  }
  .lg\\:my-0 {
    margin-top: 0;
    margin-bottom: 0;
  }
  .lg\\:mt-0 {
    margin-top: 0;
  }
  .lg\\:mt-2 {
    margin-top: 0.5rem;
  }
  .lg\\:mt-4 {
    margin-top: 1rem;
  }
  .lg\\:mt-6 {
    margin-top: 1.5rem;
  }
  .lg\\:mt-8 {
    margin-top: 2rem;
  }
  .lg\\:mt-10 {
    margin-top: 2.5rem;
  }
  .lg\\:mt-12 {
    margin-top: 3rem;
  }
  .lg\\:mt-16 {
    margin-top: 4rem;
  }
  .lg\\:mt-20 {
    margin-top: 5rem;
  }
  .lg\\:mt-24 {
    margin-top: 6rem;
  }
  .lg\\:mt-32 {
    margin-top: 8rem;
  }
  .lg\\:mb-0 {
    margin-bottom: 0;
  }
  .lg\\:mb-2 {
    margin-bottom: 0.5rem;
  }
  .lg\\:mb-4 {
    margin-bottom: 1rem;
  }
  .lg\\:mb-6 {
    margin-bottom: 1.5rem;
  }
  .lg\\:mb-8 {
    margin-bottom: 2rem;
  }
  .lg\\:mb-10 {
    margin-bottom: 2.5rem;
  }
  .lg\\:mb-12 {
    margin-bottom: 3rem;
  }
  .lg\\:mb-16 {
    margin-bottom: 4rem;
  }
  .lg\\:mb-20 {
    margin-bottom: 5rem;
  }
  .lg\\:mb-24 {
    margin-bottom: 6rem;
  }
  .lg\\:mb-32 {
    margin-bottom: 8rem;
  }
  .lg\\:ml-0 {
    margin-left: 0;
  }
  .lg\\:ml-2 {
    margin-left: 0.5rem;
  }
  .lg\\:ml-4 {
    margin-left: 1rem;
  }
  .lg\\:ml-6 {
    margin-left: 1.5rem;
  }
  .lg\\:ml-8 {
    margin-left: 2rem;
  }
  .lg\\:ml-10 {
    margin-left: 2.5rem;
  }
  .lg\\:ml-12 {
    margin-left: 3rem;
  }
  .lg\\:ml-16 {
    margin-left: 4rem;
  }
  .lg\\:ml-20 {
    margin-left: 5rem;
  }
  .lg\\:ml-24 {
    margin-left: 6rem;
  }
  .lg\\:ml-32 {
    margin-left: 8rem;
  }
  .lg\\:mr-0 {
    margin-right: 0;
  }
  .lg\\:mr-2 {
    margin-right: 0.5rem;
  }
  .lg\\:mr-4 {
    margin-right: 1rem;
  }
  .lg\\:mr-6 {
    margin-right: 1.5rem;
  }
  .lg\\:mr-8 {
    margin-right: 2rem;
  }
  .lg\\:mr-10 {
    margin-right: 2.5rem;
  }
  .lg\\:mr-12 {
    margin-right: 3rem;
  }
  .lg\\:mr-16 {
    margin-right: 4rem;
  }
  .lg\\:mr-20 {
    margin-right: 5rem;
  }
  .lg\\:mr-24 {
    margin-right: 6rem;
  }
  .lg\\:mr-32 {
    margin-right: 8rem;
  }
  .lg\\:w-0 {
    width: 0;
  }
  .lg\\:w-auto {
    width: auto;
  }
  .lg\\:w-full {
    width: 100%;
  }
  .lg\\:w-1\\/2 {
    width: 50%;
  }
  .lg\\:w-1\\/3 {
    width: 33.333333%;
  }
  .lg\\:w-2\\/3 {
    width: 66.666667%;
  }
  .lg\\:w-1\\/4 {
    width: 25%;
  }
  .lg\\:w-3\\/4 {
    width: 75%;
  }
  .lg\\:w-1\\/5 {
    width: 20%;
  }
  .lg\\:w-2\\/5 {
    width: 40%;
  }
  .lg\\:w-3\\/5 {
    width: 60%;
  }
  .lg\\:w-4\\/5 {
    width: 80%;
  }
  .lg\\:w-1\\/6 {
    width: 16.666667%;
  }
  .lg\\:w-5\\/6 {
    width: 83.333333%;
  }
  .lg\\:w-1\\/12 {
    width: 8.333333%;
  }
  .lg\\:w-2\\/12 {
    width: 16.666667%;
  }
  .lg\\:w-3\\/12 {
    width: 25%;
  }
  .lg\\:w-4\\/12 {
    width: 33.333333%;
  }
  .lg\\:w-5\\/12 {
    width: 41.666667%;
  }
  .lg\\:w-6\\/12 {
    width: 50%;
  }
  .lg\\:w-7\\/12 {
    width: 58.333333%;
  }
  .lg\\:w-8\\/12 {
    width: 66.666667%;
  }
  .lg\\:w-9\\/12 {
    width: 75%;
  }
  .lg\\:w-10\\/12 {
    width: 83.333333%;
  }
  .lg\\:w-11\\/12 {
    width: 91.666667%;
  }
  .lg\\:w-16 {
    width: 4rem;
  }
  .lg\\:w-20 {
    width: 5rem;
  }
  .lg\\:w-24 {
    width: 6rem;
  }
  .lg\\:w-32 {
    width: 8rem;
  }
  .lg\\:w-40 {
    width: 10rem;
  }
  .lg\\:w-48 {
    width: 12rem;
  }
  .lg\\:w-56 {
    width: 14rem;
  }
  .lg\\:w-64 {
    width: 16rem;
  }
  .lg\\:w-72 {
    width: 18rem;
  }
  .lg\\:w-80 {
    width: 20rem;
  }
  .lg\\:w-96 {
    width: 24rem;
  }
  .lg\\:w-px {
    width: 1px;
  }
  .lg\\:h-0 {
    height: 0;
  }
  .lg\\:h-auto {
    height: auto;
  }
  .lg\\:h-full {
    height: 100%;
  }
  .lg\\:h-1\\/2 {
    height: 50%;
  }
  .lg\\:h-1\\/3 {
    height: 33.333333%;
  }
  .lg\\:h-2\\/3 {
    height: 66.666667%;
  }
  .lg\\:h-1\\/4 {
    height: 25%;
  }
  .lg\\:h-3\\/4 {
    height: 75%;
  }
  .lg\\:h-16 {
    height: 4rem;
  }
  .lg\\:h-20 {
    height: 5rem;
  }
  .lg\\:h-24 {
    height: 6rem;
  }
  .lg\\:h-32 {
    height: 8rem;
  }
  .lg\\:h-40 {
    height: 10rem;
  }
  .lg\\:h-48 {
    height: 12rem;
  }
  .lg\\:h-56 {
    height: 14rem;
  }
  .lg\\:h-64 {
    height: 16rem;
  }
  .lg\\:h-72 {
    height: 18rem;
  }
  .lg\\:h-80 {
    height: 20rem;
  }
  .lg\\:h-96 {
    height: 24rem;
  }
  .lg\\:h-px {
    height: 1px;
  }
  .lg\\:border {
    border-width: 1px;
  }
  .lg\\:border-0 {
    border-width: 0;
  }
  .lg\\:border-2 {
    border-width: 2px;
  }
  .lg\\:border-4 {
    border-width: 4px;
  }
  .lg\\:border-8 {
    border-width: 8px;
  }
  .lg\\:rounded {
    border-radius: 0.25rem;
  }
  .lg\\:rounded-sm {
    border-radius: 0.125rem;
  }
  .lg\\:rounded-md {
    border-radius: 0.375rem;
  }
  .lg\\:rounded-lg {
    border-radius: 0.5rem;
  }
  .lg\\:rounded-xl {
    border-radius: 0.75rem;
  }
  .lg\\:rounded-2xl {
    border-radius: 1rem;
  }
  .lg\\:rounded-3xl {
    border-radius: 1.5rem;
  }
  .lg\\:rounded-full {
    border-radius: 9999px;
  }
  .lg\\:shadow {
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  }
  .lg\\:shadow-sm {
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  }
  .lg\\:shadow-md {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  }
  .lg\\:shadow-lg {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  }
  .lg\\:shadow-xl {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  }
  .lg\\:shadow-2xl {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  }
  .lg\\:shadow-inner {
    box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06);
  }
  .lg\\:shadow-none {
    box-shadow: none;
  }
}

@media (min-width: 1280px) {
  .xl\\:flex {
    display: flex;
  }
  .xl\\:hidden {
    display: none;
  }
  .xl\\:grid {
    display: grid;
  }
  .xl\\:grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  .xl\\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .xl\\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .xl\\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .xl\\:grid-cols-5 {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
  .xl\\:grid-cols-6 {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
  .xl\\:grid-cols-7 {
    grid-template-columns: repeat(7, minmax(0, 1fr));
  }
  .xl\\:grid-cols-8 {
    grid-template-columns: repeat(8, minmax(0, 1fr));
  }
  .xl\\:grid-cols-9 {
    grid-template-columns: repeat(9, minmax(0, 1fr));
  }
  .xl\\:grid-cols-10 {
    grid-template-columns: repeat(10, minmax(0, 1fr));
  }
  .xl\\:grid-cols-11 {
    grid-template-columns: repeat(11, minmax(0, 1fr));
  }
  .xl\\:grid-cols-12 {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }
  .xl\\:col-span-1 {
    grid-column: span 1 / span 1;
  }
  .xl\\:col-span-2 {
    grid-column: span 2 / span 2;
  }
  .xl\\:col-span-3 {
    grid-column: span 3 / span 3;
  }
  .xl\\:col-span-4 {
    grid-column: span 4 / span 4;
  }
  .xl\\:col-span-5 {
    grid-column: span 5 / span 5;
  }
  .xl\\:col-span-6 {
    grid-column: span 6 / span 6;
  }
  .xl\\:col-span-7 {
    grid-column: span 7 / span 7;
  }
  .xl\\:col-span-8 {
    grid-column: span 8 / span 8;
  }
  .xl\\:col-span-9 {
    grid-column: span 9 / span 9;
  }
  .xl\\:col-span-10 {
    grid-column: span 10 / span 10;
  }
  .xl\\:col-span-11 {
    grid-column: span 11 / span 11;
  }
  .xl\\:col-span-12 {
    grid-column: span 12 / span 12;
  }
  .xl\\:row-span-1 {
    grid-row: span 1 / span 1;
  }
  .xl\\:row-span-2 {
    grid-row: span 2 / span 2;
  }
  .xl\\:row-span-3 {
    grid-row: span 3 / span 3;
  }
  .xl\\:row-span-4 {
    grid-row: span 4 / span 4;
  }
  .xl\\:row-span-5 {
    grid-row: span 5 / span 5;
  }
  .xl\\:row-span-6 {
    grid-row: span 6 / span 6;
  }
  .xl\\:flex-row {
    flex-direction: row;
  }
  .xl\\:flex-col {
    flex-direction: column;
  }
  .xl\\:items-start {
    align-items: flex-start;
  }
  .xl\\:items-center {
    align-items: center;
  }
  .xl\\:items-end {
    align-items: flex-end;
  }
  .xl\\:justify-start {
    justify-content: flex-start;
  }
  .xl\\:justify-center {
    justify-content: center;
  }
  .xl\\:justify-end {
    justify-content: flex-end;
  }
  .xl\\:justify-between {
    justify-content: space-between;
  }
  .xl\\:justify-around {
    justify-content: space-around;
  }
  .xl\\:justify-evenly {
    justify-content: space-evenly;
  }
  .xl\\:text-xs {
    font-size: 0.75rem;
    line-height: 1rem;
  }
  .xl\\:text-sm {
    font-size: 0.875rem;
    line-height: 1.25rem;
  }
  .xl\\:text-base {
    font-size: 1rem;
    line-height: 1.5rem;
  }
  .xl\\:text-lg {
    font-size: 1.125rem;
    line-height: 1.75rem;
  }
  .xl\\:text-xl {
    font-size: 1.25rem;
    line-height: 1.75rem;
  }
  .xl\\:text-2xl {
    font-size: 1.5rem;
    line-height: 2rem;
  }
  .xl\\:text-3xl {
    font-size: 1.875rem;
    line-height: 2.25rem;
  }
  .xl\\:text-4xl {
    font-size: 2.25rem;
    line-height: 2.5rem;
  }
  .xl\\:text-5xl {
    font-size: 3rem;
    line-height: 1;
  }
  .xl\\:text-6xl {
    font-size: 3.75rem;
    line-height: 1;
  }
  .xl\\:text-7xl {
    font-size: 4.5rem;
    line-height: 1;
  }
  .xl\\:text-8xl {
    font-size: 6rem;
    line-height: 1;
  }
}

/* 其他工具类 */
.w-full {
  width: 100%;
}

.w-0 {
  width: 0;
}

.w-auto {
  width: auto;
}

.w-1\\/2 {
  width: 50%;
}

.w-1\\/3 {
  width: 33.333333%;
}

.w-2\\/3 {
  width: 66.666667%;
}

.w-1\\/4 {
  width: 25%;
}

.w-3\\/4 {
  width: 75%;
}

.w-1\\/5 {
  width: 20%;
}

.w-2\\/5 {
  width: 40%;
}

.w-3\\/5 {
  width: 60%;
}

.w-4\\/5 {
  width: 80%;
}

.w-1\\/6 {
  width: 16.666667%;
}

.w-5\\/6 {
  width: 83.333333%;
}

.w-px {
  width: 1px;
}

.w-1 {
  width: 0.25rem;
}

.w-2 {
  width: 0.5rem;
}

.w-3 {
  width: 0.75rem;
}

.w-4 {
  width: 1rem;
}

.w-5 {
  width: 1.25rem;
}

.w-6 {
  width: 1.5rem;
}

.w-8 {
  width: 2rem;
}

.w-10 {
  width: 2.5rem;
}

.w-12 {
  width: 3rem;
}

.w-16 {
  width: 4rem;
}

.w-20 {
  width: 5rem;
}

.w-24 {
  width: 6rem;
}

.w-32 {
  width: 8rem;
}

.w-40 {
  width: 10rem;
}

.w-48 {
  width: 12rem;
}

.w-56 {
  width: 14rem;
}

.w-64 {
  width: 16rem;
}

.w-72 {
  width: 18rem;
}

.w-80 {
  width: 20rem;
}

.w-96 {
  width: 24rem;
}

.h-full {
  height: 100%;
}

.h-0 {
  height: 0;
}

.h-auto {
  height: auto;
}

.h-1\\/2 {
  height: 50%;
}

.h-1\\/3 {
  height: 33.333333%;
}

.h-2\\/3 {
  height: 66.666667%;
}

.h-1\\/4 {
  height: 25%;
}

.h-3\\/4 {
  height: 75%;
}

.h-px {
  height: 1px;
}

.h-1 {
  height: 0.25rem;
}

.h-2 {
  height: 0.5rem;
}

.h-3 {
  height: 0.75rem;
}

.h-4 {
  height: 1rem;
}

.h-5 {
  height: 1.25rem;
}

.h-6 {
  height: 1.5rem;
}

.h-8 {
  height: 2rem;
}

.h-10 {
  height: 2.5rem;
}

.h-12 {
  height: 3rem;
}

.h-16 {
  height: 4rem;
}

.h-20 {
  height: 5rem;
}

.h-24 {
  height: 6rem;
}

.h-32 {
  height: 8rem;
}

.h-40 {
  height: 10rem;
}

.h-48 {
  height: 12rem;
}

.h-56 {
  height: 14rem;
}

.h-64 {
  height: 16rem;
}

.h-72 {
  height: 18rem;
}

.h-80 {
  height: 20rem;
}

.h-96 {
  height: 24rem;
}

.h-screen {
  height: 100vh;
}

.min-h-screen {
  min-height: 100vh;
}

.max-h-screen {
  max-height: 100vh;
}

.min-h-0 {
  min-height: 0;
}

.max-h-0 {
  max-height: 0;
}

.object-cover {
  object-fit: cover;
}

.object-contain {
  object-fit: contain;
}

.object-fill {
  object-fit: fill;
}

.object-none {
  object-fit: none;
}

.object-scale-down {
  object-fit: scale-down;
}

.object-top {
  object-position: top;
}

.object-right {
  object-position: right;
}

.object-bottom {
  object-position: bottom;
}

.object-left {
  object-position: left;
}

.object-center {
  object-position: center;
}

.overflow-hidden {
  overflow: hidden;
}

.overflow-auto {
  overflow: auto;
}

.overflow-x-auto {
  overflow-x: auto;
}

.overflow-y-auto {
  overflow-y: auto;
}

.overflow-visible {
  overflow: visible;
}

.overflow-scroll {
  overflow: scroll;
}

.overflow-x-scroll {
  overflow-x: scroll;
}

.overflow-y-scroll {
  overflow-y: scroll;
}

/* 交互工具类 */
.focus\\:outline-none:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
}

.focus\\:outline:focus {
  outline: 2px solid currentColor;
  outline-offset: 2px;
}

.focus\\:outline-0:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
}

.focus\\:ring-0:focus {
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
}

.focus\\:ring-1:focus {
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  --tw-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}

.focus\\:ring-2:focus {
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  --tw-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}

.focus\\:ring-4:focus {
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  --tw-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}

.focus\\:ring-8:focus {
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(8px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  --tw-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}

.focus\\:ring-primary:focus {
  --tw-ring-color: #3B82F6;
}

.focus\\:ring-blue-500:focus {
  --tw-ring-color: #3B82F6;
}

.focus\\:ring-blue-600:focus {
  --tw-ring-color: #2563EB;
}

.focus\\:ring-gray-300:focus {
  --tw-ring-color: #D1D5DB;
}

.focus\\:ring-opacity-50:focus {
  --tw-ring-opacity: 0.5;
}

.focus\\:ring-opacity-75:focus {
  --tw-ring-opacity: 0.75;
}

.focus\\:ring-inset:focus {
  --tw-ring-inset: inset;
}

/* 自定义工具类 */
.text-shadow {
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.transition-all-300 {
  transition: all 0.3s ease;
}

.card-hover {
  transition: all 0.3s ease;
}

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

.btn-primary {
  background-color: #3B82F6;
  color: #FFFFFF;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  border-radius: 0.5rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: #2563EB;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.btn-primary:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  --tw-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
  --tw-ring-color: #3B82F6;
  --tw-ring-opacity: 0.5;
}

.btn-secondary {
  background-color: #FFFFFF;
  color: #3B82F6;
  border: 1px solid #3B82F6;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  border-radius: 0.5rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background-color: #F9FAFB;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.btn-secondary:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  --tw-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
  --tw-ring-color: #3B82F6;
  --tw-ring-opacity: 0.5;
}

.input-radio {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 1.25rem;
  height: 1.25rem;
  border: 1px solid #D1D5DB;
  border-radius: 9999px;
  transition: all 0.3s ease;
}

.input-radio:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  --tw-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
  --tw-ring-color: #3B82F6;
  --tw-ring-opacity: 0.5;
}

.input-radio:checked {
  border-color: #3B82F6;
  background-color: #3B82F6;
}

.progress-bar {
  height: 0.5rem;
  background-color: #E5E7EB;
  border-radius: 9999px;
  overflow: hidden;
}

.progress-value {
  height: 100%;
  background-color: #3B82F6;
  transition: all 0.5s ease-out;
}

/* 动画 */
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes slideUp {
  0% {
    transform: translateY(20px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

.animate-fade-in {
  animation: fadeIn 0.5s ease-in-out;
}

.animate-slide-up {
  animation: slideUp 0.5s ease-in-out;
}

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

.animate-pulse-slow {
  animation: pulse 3s infinite;
}

/* 背景相关 */
.bg-cover {
  background-size: cover;
}

.bg-contain {
  background-size: contain;
}

.bg-auto {
  background-size: auto;
}

.bg-repeat {
  background-repeat: repeat;
}

.bg-no-repeat {
  background-repeat: no-repeat;
}

.bg-repeat-x {
  background-repeat: repeat-x;
}

.bg-repeat-y {
  background-repeat: repeat-y;
}

.bg-position-top {
  background-position: top;
}

.bg-position-right {
  background-position: right;
}

.bg-position-bottom {
  background-position: bottom;
}

.bg-position-left {
  background-position: left;
}

.bg-position-center {
  background-position: center;
}

.bg-fixed {
  background-attachment: fixed;
}

.bg-local {
  background-attachment: local;
}

.bg-scroll {
  background-attachment: scroll;
}

/* 行高 */
.line-clamp-1 {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.line-clamp-3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.line-clamp-4 {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.line-clamp-5 {
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.line-clamp-none {
  -webkit-line-clamp: unset;
}

/* 鼠标悬停效果 */
.hover\\:text-primary:hover {
  color: #3B82F6;
}

.hover\\:text-secondary:hover {
  color: #6366F1;
}

.hover\\:text-accent:hover {
  color: #8B5CF6;
}

.hover\\:text-white:hover {
  color: #FFFFFF;
}

.hover\\:text-gray-500:hover {
  color: #6B7280;
}

.hover\\:text-gray-600:hover {
  color: #4B5563;
}

.hover\\:text-gray-700:hover {
  color: #374151;
}

.hover\\:text-gray-800:hover {
  color: #1F2937;
}

.hover\\:text-gray-900:hover {
  color: #111827;
}

.hover\\:bg-primary:hover {
  background-color: #3B82F6;
}

.hover\\:bg-secondary:hover {
  background-color: #6366F1;
}

.hover\\:bg-accent:hover {
  background-color: #8B5CF6;
}

.hover\\:bg-white:hover {
  background-color: #FFFFFF;
}

.hover\\:bg-gray-50:hover {
  background-color: #F9FAFB;
}

.hover\\:bg-gray-100:hover {
  background-color: #F3F4F6;
}

.hover\\:bg-gray-200:hover {
  background-color: #E5E7EB;
}

.hover\\:bg-gray-300:hover {
  background-color: #D1D5DB;
}

.hover\\:bg-gray-400:hover {
  background-color: #9CA3AF;
}

.hover\\:bg-gray-500:hover {
  background-color: #6B7280;
}

.hover\\:bg-gray-600:hover {
  background-color: #4B5563;
}

.hover\\:bg-gray-700:hover {
  background-color: #374151;
}

.hover\\:bg-gray-800:hover {
  background-color: #1F2937;
}

.hover\\:bg-gray-900:hover {
  background-color: #111827;
}

.hover\\:bg-blue-500:hover {
  background-color: #3B82F6;
}

.hover\\:bg-blue-600:hover {
  background-color: #2563EB;
}

.hover\\:bg-blue-700:hover {
  background-color: #1D4ED8;
}

.hover\\:bg-blue-800:hover {
  background-color: #1E40AF;
}

.hover\\:shadow:hover {
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
}

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

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

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

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

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

.hover\\:shadow-inner:hover {
  box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06);
}

.hover\\:shadow-none:hover {
  box-shadow: none;
}

.hover\\:-translate-y-1:hover {
  transform: translateY(-4px);
}

.hover\\:-translate-y-2:hover {
  transform: translateY(-8px);
}

.hover\\:translate-y-1:hover {
  transform: translateY(4px);
}

.hover\\:translate-y-2:hover {
  transform: translateY(8px);
}

.hover\\:-translate-x-1:hover {
  transform: translateX(-4px);
}

.hover\\:-translate-x-2:hover {
  transform: translateX(-8px);
}

.hover\\:translate-x-1:hover {
  transform: translateX(4px);
}

.hover\\:translate-x-2:hover {
  transform: translateX(8px);
}

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

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

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

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

.hover\\:underline:hover {
  text-decoration-line: underline;
}

.hover\\:no-underline:hover {
  text-decoration-line: none;
}

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

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

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

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

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

.list-lower-roman {
  list-style-type: lower-roman;
}

.list-upper-roman {
  list-style-type: upper-roman;
}

.list-lower-alpha {
  list-style-type: lower-alpha;
}

.list-upper-alpha {
  list-style-type: upper-alpha;
}

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

.list-inside {
  list-style-position: inside;
}

.list-outside {
  list-style-position: outside;
}

.pl-0 {
  padding-left: 0;
}

.pl-1 {
  padding-left: 0.25rem;
}

.pl-2 {
  padding-left: 0.5rem;
}

.pl-3 {
  padding-left: 0.75rem;
}

.pl-4 {
  padding-left: 1rem;
}

.pl-5 {
  padding-left: 1.25rem;
}

.pl-6 {
  padding-left: 1.5rem;
}

.pl-8 {
  padding-left: 2rem;
}

.pl-10 {
  padding-left: 2.5rem;
}

.pl-12 {
  padding-left: 3rem;
}

.pl-16 {
  padding-left: 4rem;
}

.pl-20 {
  padding-left: 5rem;
}

.pl-24 {
  padding-left: 6rem;
}

.pl-32 {
  padding-left: 8rem;
}

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

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

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

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

/* 选择文本样式 */
::selection {
  background-color: #3B82F6;
  color: #FFFFFF;
}

::-moz-selection {
  background-color: #3B82F6;
  color: #FFFFFF;
}

/* 链接样式 */
a {
  color: inherit;
  text-decoration: inherit;
}

a:hover {
  text-decoration: underline;
}

/* 表单元素样式 */
button, input, optgroup, select, textarea {
  font-family: inherit;
  font-size: 100%;
  font-weight: inherit;
  line-height: inherit;
  color: inherit;
  margin: 0;
  padding: 0;
}

button, select {
  text-transform: none;
}

button, [type='button'], [type='reset'], [type='submit'] {
  -webkit-appearance: button;
  background-color: transparent;
  background-image: none;
}

:-moz-focusring {
  outline: auto;
}

:-moz-ui-invalid {
  box-shadow: none;
}

progress {
  vertical-align: baseline;
}

::-webkit-inner-spin-button, ::-webkit-outer-spin-button {
  height: auto;
}

[type='search'] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

summary {
  display: list-item;
}

blockquote, dl, dd, h1, h2, h3, h4, h5, h6, hr, figure, p, pre {
  margin: 0;
}

fieldset {
  margin: 0;
  padding: 0;
}

legend {
  padding: 0;
}

ol, ul, menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

textarea {
  resize: vertical;
}

input::placeholder, textarea::placeholder {
  opacity: 1;
  color: #9CA3AF;
}

[role='button'], button {
  cursor: pointer;
}

:disabled {
  cursor: default;
}

img, svg, video, canvas, audio, iframe, embed, object {
  display: block;
  vertical-align: middle;
}

img, video {
  max-width: 50px;
  height: auto;
}

[hidden] {
  display: none;
}

/* 无障碍支持 */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  padding: 0;
  margin: 0;
  overflow: visible;
  clip: auto;
  white-space: normal;
}

/* 打印样式 */
@media print {
  .print\\:hidden {
    display: none !important;
  }
  .print\\:block {
    display: block !important;
  }
  .print\\:inline {
    display: inline !important;
  }
  .print\\:inline-block {
    display: inline-block !important;
  }
}