.el-card__header {
  padding: 0;
}
* {
  box-sizing: border-box;
  font-family:
    'PingFang SC', 'Lantinghei SC', 'Helvetica Neue', Helvetica, Arial,
    'Microsoft YaHei', '微软雅黑', STHeitiSC-Light, simsun, '宋体',
    'WenQuanYi Zen Hei', 'WenQuanYi Micro Hei', sans-serif;
}
a {
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
}
.bg-blue-25 {
  background-color: #f8fafc;
}
.font-title {
  background: linear-gradient(to bottom, #c5c5c5, rgba(234, 234, 234, 0.4));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
/* 隐藏滚动条但保持滚动功能 */
.hide-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.hide-scrollbar::-webkit-scrollbar {
  display: none;
}
/* 滚动条样式 - 带平滑过渡效果 */
.scroll-container {
  scrollbar-width: none;
  -ms-overflow-style: none;
  transition: all 0.4s;
}
.scroll-container:hover {
  scrollbar-color: rgba(156, 163, 175, 0.5) transparent;
}
.scroll-container::-webkit-scrollbar {
  width: 8px;
  height: 8px;
  opacity: 0;
  transition: all 0.4s;
}
.scroll-container:hover::-webkit-scrollbar {
  opacity: 1;
}
.scroll-container::-webkit-scrollbar-track {
  background: transparent;
  transition: all 0.4s ease;
}
.scroll-container::-webkit-scrollbar-thumb {
  background: rgba(156, 163, 175, 0.3);
  border-radius: 4px;
  transition: all 0.4s;
  transform: scale(0.8);
}
.scroll-container:hover::-webkit-scrollbar-thumb {
  background: rgba(156, 163, 175, 0.6);
  transform: scale(1);
}
.scroll-container::-webkit-scrollbar-thumb:hover {
  background: rgba(156, 163, 175, 0.8);
  transform: scale(1.1);
}
.scroll-container::-webkit-scrollbar-corner {
  background: transparent;
  transition: all 0.4s ease;
}

/* 通用工具类 */
.w-full {
  width: 100%;
}
.h-full {
  height: 100%;
}
.flex {
  display: flex;
}
.flex-col {
  flex-direction: column;
}
.flex-1 {
  flex: 1 1 0%;
}
.flex-none {
  flex: none;
}
.flex-shrink-0 {
  flex-shrink: 0;
}
.items-center {
  align-items: center;
}
.items-start {
  align-items: flex-start;
}
.justify-center {
  justify-content: center;
}
.justify-between {
  justify-content: space-between;
}
.justify-around {
  justify-content: space-around;
}
.relative {
  position: relative;
}
.absolute {
  position: absolute;
}
.hidden {
  display: none;
}
.block {
  display: block;
}
.cursor-pointer {
  cursor: pointer;
}
.whitespace-nowrap {
  white-space: nowrap;
}
.text-center {
  text-align: center;
}
.font-bold {
  font-weight: 700;
}
.font-medium {
  font-weight: 500;
}
.underline {
  text-decoration: underline;
}
.border-collapse {
  border-collapse: collapse;
}
.border-none {
  border: none;
}
.rounded {
  border-radius: 0.25rem;
}
.rounded-lg {
  border-radius: 0.5rem;
}
.rounded-full {
  border-radius: 9999px;
}
.object-cover {
  object-fit: cover;
}
.overflow-x-auto {
  overflow-x: auto;
}
.overflow-x-auto {
  overflow-x: auto;
}
.z-10 {
  z-index: 10;
}

/* 间距 */
.mb-4 {
  margin-bottom: 1rem;
}
.mb-5 {
  margin-bottom: 1.25rem;
}
.mt-1 {
  margin-top: 0.25rem;
}
.mt-2 {
  margin-top: 0.5rem;
}
.mt-5 {
  margin-top: 1.25rem;
}
.mt-10 {
  margin-top: 2.5rem;
}
.mx-auto {
  margin-left: auto;
  margin-right: auto;
}
.mr-2 {
  margin-right: 0.5rem;
}
.mr-3 {
  margin-right: 0.75rem;
}
.mr-5 {
  margin-right: 1.25rem;
}
.ml-1 {
  margin-left: 0.25rem;
}
.ml-5 {
  margin-left: 1.25rem;
}
.p-2 {
  padding: 0.5rem;
}
.p-5 {
  padding: 1.25rem;
}
.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-5 {
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}
.py-2 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.py-3 {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}
.py-5 {
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}
.pl-12 {
  padding-left: 3rem;
}
.pr-3 {
  padding-right: 0.75rem;
}

/* 尺寸 */
.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-28 {
  width: 7rem;
}
.w-px {
  width: 1px;
}
.h-4 {
  height: 1rem;
}
.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-0\.5 {
  height: 0.125rem;
}
.min-w-1000 {
  min-width: 1000px;
}

/* 颜色 */
.bg-white {
  background-color: #ffffff;
}
.bg-gray-50 {
  background-color: #f9fafb;
}
.bg-gray-300 {
  background-color: #d1d5db;
}
.bg-blue-50 {
  background-color: #eff6ff;
}
.bg-blue-25 {
  background-color: #f8fafc;
}
.bg-red-custom {
  background-color: #c20005;
}
.text-white {
  color: #ffffff;
}
.text-gray-400 {
  color: #9ca3af;
}
.text-gray-600 {
  color: #4b5563;
}
.text-gray-700 {
  color: #374151;
}
.text-gray-900 {
  color: #111827;
}
.text-blue-500 {
  color: #3b82f6;
}
.text-blue-600 {
  color: #2563eb;
}
.text-red-custom {
  color: #c20005;
}
.text-dark {
  color: #333;
}
.text-dark-263 {
  color: #263238;
}

/* 文字大小 */
.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;
}

/* Grid */
.grid {
  display: grid;
}
.grid-cols-1 {
  grid-template-columns: repeat(1, 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-8 {
  grid-template-columns: repeat(8, minmax(0, 1fr));
}
.gap-1 {
  gap: 0.25rem;
}
.gap-3 {
  gap: 0.75rem;
}
.gap-4 {
  gap: 1rem;
}

/* 变换 */
.transform {
  transform: translateZ(0);
}
.-translate-y-1\/2 {
  transform: translateY(-50%);
}
.-translate-y-1px {
  transform: translateY(-1px);
}
.translate-y-50 {
  transform: translateY(-50%);
}

/* 过渡 */
.transition {
  transition-property:
    color, background-color, border-color, text-decoration-color, fill, stroke,
    opacity, box-shadow, transform, filter, backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.transition-all {
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.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: 150ms;
}
.transition-opacity {
  transition-property: opacity;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.duration-300 {
  transition-duration: 300ms;
}

/* 其他 */
.shadow {
  box-shadow:
    0 1px 3px 0 rgb(0 0 0 / 0.1),
    0 1px 2px -1px rgb(0 0 0 / 0.1);
}
.shadow-md {
  box-shadow:
    0 4px 6px -1px rgb(0 0 0 / 0.1),
    0 2px 4px -2px rgb(0 0 0 / 0.1);
}
.opacity-50 {
  opacity: 0.5;
}
.opacity-100 {
  opacity: 1;
}
.backdrop-blur-sm {
  backdrop-filter: blur(4px);
}
.scroll-smooth {
  scroll-behavior: smooth;
}
.snap-x {
  scroll-snap-type: x mandatory;
}
.snap-mandatory {
  scroll-snap-type: mandatory;
}
.snap-start {
  scroll-snap-align: start;
}
.border-gray-100 {
  border-color: #f3f4f6;
}
.border-4 {
  border-width: 4px;
}
.border-r-1 {
  border-right-width: 1px;
}
.border-l-1 {
  border-left-width: 1px;
}
.tracking-4px {
  letter-spacing: 4px;
}
.top-0 {
  top: 0;
}
.top-50 {
  top: 50%;
}
.left-0 {
  left: 0;
}
.right-0 {
  right: 0;
}
.bottom-0 {
  bottom: 0;
}
.leading-30px {
  line-height: 30px;
}
.leading-60px {
  line-height: 60px;
}

/* 特定样式 */
.bg-custom-f5 {
  background-color: #f5f5f5;
}
.bg-custom-red {
  background-color: #c20005;
}
.bg-white-50 {
  background-color: rgba(255, 255, 255, 0.5);
}
.bg-white-10 {
  background-color: rgba(255, 255, 255, 0.1);
}
.bg-white-20 {
  background-color: rgba(255, 255, 255, 0.2);
}
.bg-custom-4a {
  background-color: #4a5a6b;
}
.bg-custom-3a {
  background-color: #3a4a5b;
}
.bg-custom-a0 {
  background-color: #a00005;
}

.w-90 {
  width: 90%;
}
.w-6px {
  width: 6px;
}
.w-96 {
  width: 96%;
}
.w-266px {
  width: 266px;
}
.w-2260px {
  width: 2260px;
}
.w-580px {
  width: 580px;
}
.w-1200px {
  width: 1200px;
}

.h-21px {
  height: 21px;
}
.h-custom-7 {
  height: 1.75rem;
}

.text-custom-333 {
  color: #333;
}
.text-custom-red {
  color: #c20005;
}

.px-10 {
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}
.px-20 {
  padding-left: 5rem;
  padding-right: 5rem;
}
.py-7 {
  padding-top: 1.75rem;
  padding-bottom: 1.75rem;
}
.py-12 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.mt-4 {
  margin-top: 1rem;
}
.my-2 {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}
.my-8 {
  margin-top: 2rem;
  margin-bottom: 2rem;
}
.my-12 {
  margin-top: 3rem;
  margin-bottom: 3rem;
}
.mr-10px {
  margin-right: 10px;
}
.mr-5px {
  margin-right: 5px;
}
.gap-6 {
  gap: 1.5rem;
}

.top-26 {
  top: 26%;
}
.left-7 {
  left: 7%;
}

/* Hover 状态 */
.hover\:bg-gray-50:hover {
  background-color: #f9fafb;
}
.hover\:bg-white-20:hover {
  background-color: rgba(255, 255, 255, 0.2);
}
.hover\:bg-custom-a0:hover {
  background-color: #a00005;
}
.hover\:bg-custom-3a:hover {
  background-color: #3a4a5b;
}
.hover\:text-blue-800:hover {
  color: #1e40af;
}
.hover\:shadow-md:hover {
  box-shadow:
    0 4px 6px -1px rgb(0 0 0 / 0.1),
    0 2px 4px -2px rgb(0 0 0 / 0.1);
}
.hover\:-translate-y-1px:hover {
  transform: translateY(-1px);
}
.hover\:opacity-100:hover {
  opacity: 1;
}

/* 响应式 */
@media (min-width: 640px) {
  .sm\:w-auto {
    width: auto;
  }
  .sm\:px-0 {
    padding-left: 0;
    padding-right: 0;
  }
  .sm\:py-4 {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
  .sm\:px-9 {
    padding-left: 2.25rem;
    padding-right: 2.25rem;
  }
  .sm\:py-5 {
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
  }
  .sm\:w-8 {
    width: 2rem;
  }
  .sm\:h-8 {
    height: 2rem;
  }
  .sm\:w-16 {
    width: 4rem;
  }
  .sm\:h-16 {
    height: 4rem;
  }
  .sm\:w-20 {
    width: 5rem;
  }
  .sm\:h-24 {
    height: 6rem;
  }
  .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\:h-8 {
    height: 2rem;
  }
  .sm\:my-12 {
    margin-top: 3rem;
    margin-bottom: 3rem;
  }
  .sm\:flex {
    display: flex;
  }
  .sm\:hidden {
    display: none;
  }
  .sm\:text-2xl {
    font-size: 1.5rem;
    line-height: 2rem;
  }
  .sm\:h-16 {
    height: 4rem;
  }
  .sm\:leading-60px {
    line-height: 60px;
  }
  .sm\:gap-4 {
    gap: 1rem;
  }
  .sm\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .sm\:m-0 {
    margin: 0;
  }
  .sm\:w-18 {
    width: 4.5rem;
  }
  .sm\:h-18 {
    height: 4.5rem;
  }
}

@media (min-width: 1024px) {
  .lg\:w-full {
    width: 100%;
  }
  .lg\:w-1200px {
    width: 1200px;
  }
  .lg\:w-266px {
    width: 266px;
  }
  .lg\:text-2xl {
    font-size: 1.5rem;
    line-height: 2rem;
  }
  .lg\:text-base {
    font-size: 1rem;
    line-height: 1.5rem;
  }
  .lg\:h-7 {
    height: 1.75rem;
  }
  .lg\:mr-5px {
    margin-right: 5px;
  }
  .lg\:block {
    display: block;
  }
  .lg\:hidden {
    display: none;
  }
  .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\:h-20 {
    height: 5rem;
  }
  .lg\:px-0 {
    padding-left: 0;
    padding-right: 0;
  }
  .lg\:max-w-5xl {
    max-width: 64rem;
  }
}

/* 特定宽度和高度 */
.max-h-custom {
  max-height: calc(2 * var(--card-height, 285px) + 1rem);
}
/* absolute right-0 top-50 transform translate-y-50 w-px h-4 bg-gray-300 */
.tab-item::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 0;
  width: 1px;
  height: 16px;
  background-color: #d1d5db;
  transform: translateY(-75%);
}
.tab-item:last-child::after {
  display: none;
}
/* sm:w-16 sm:h-16 w-8 h-8 rounded-lg flex items-center justify-center text-white text-3xl */
.icon-img {
  width: 2rem;
  height: 2rem;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.875rem;
  line-height: 2.25rem;
}
.icon-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (min-width: 640px) {
  .icon-img {
    width: 4rem;
    height: 4rem;
  }
}
/* absolute top-0 left-0 z-10 bg-white-50 backdrop-blur-sm w-full h-full flex items-center justify-center */
.bg-mask {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  background-color: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(4px);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* border-4 sm:w-20 sm:h-24 w-28 rounded-lg mr-3 */
.bg-img {
  width: 2rem;
  height: 2rem;
  border-radius: 0.5rem;
  margin-right: 0.75rem;
  border: 4px solid rgba(255, 255, 255, 0.3);
}
.bg-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
