/* =========================================================
   index.css：公共基础样式开始，index.html 和 view.html 共用
   ========================================================= */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", Arial, sans-serif;
  color: #172033;
  background: #f5f7fb;
}

.view-page {
  padding-top: var(--view-header-height);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: auto;
  border: 0;
}

button {
  font-family: inherit;
  cursor: pointer;
}

/* =========================================================
   index.html 样式开始
   ========================================================= */
:root {
  --home-header-height: 56px;
  --home-main-color: #2563eb;
  --home-card-radius: 18px;
  --home-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

.home-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(148, 163, 184, 0.25);
  backdrop-filter: blur(14px);
}

.home-container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 14px;
}

.home-header-inner {
  min-height: var(--home-header-height);
  padding: 5px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.home-logo {
  flex: 0 0 auto;
  height: 40px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  color: #0f172a;
}

.home-logo-img {
  width: 34px;
  height: 34px;
  object-fit: contain;
  flex: 0 0 auto;
}

.home-logo-text {
  font-size: 16px;
  font-weight: 800;
  white-space: nowrap;
}

.home-nav {
  flex: 1;
  height: 40px;
  display: flex;
  align-items: center;
  gap: 8px;
  overflow-x: auto;
  overflow-y: hidden;
  white-space: nowrap;
  scrollbar-width: none;
}

.home-nav::-webkit-scrollbar {
  display: none;
}

.home-nav a {
  flex: 0 0 auto;
  padding: 8px 12px;
  border-radius: 999px;
  color: #334155;
  font-size: 14px;
  background: #eef4ff;
  border: 1px solid rgba(37, 99, 235, 0.12);
}

.home-nav a:hover {
  color: var(--home-main-color);
  background: #e0ecff;
}

.home-slider {
  width: 100%;
  background: #050816;
  overflow: hidden;
}

.home-slide {
  display: none;
}

.home-slide.home-current {
  display: block;
}

.home-slide a,
.home-slide img {
  width: 100%;
  height: auto;
}

.home-marquee {
  width: 100%;
  margin: 10px 0 8px;
  padding: 8px 0;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(90deg, #eff6ff, #f5f3ff, #ecfeff);
  border-top: 1px solid rgba(37, 99, 235, 0.12);
  border-bottom: 1px solid rgba(37, 99, 235, 0.12);
}

.home-marquee-label {
  flex: 0 0 auto;
  margin-left: 12px;
  padding: 7px 12px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, #2563eb, #7c3aed);
  font-size: 14px;
  font-weight: 800;
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.18);
}

.home-marquee-track {
  flex: 1 1 auto;
  margin: 0 12px;
  white-space: nowrap;
  color: #1e293b;
  font-size: 14px;
  line-height: 32px;
}

.home-main {
  padding-bottom: 18px;
}

.home-section {
  padding: 12px 0;
}

.home-category-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: nowrap;
  margin-bottom: 10px;
}

.home-category-title h3 {
  margin: 0;
  color: #0f172a;
  font-size: 20px;
  white-space: nowrap;
}

.home-category-title small {
  color: #64748b;
  font-size: 13px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: right;
}

.home-product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.home-product-card {
  overflow: hidden;
  border-radius: var(--home-card-radius);
  background: #ffffff;
  border: 1px solid rgba(148, 163, 184, 0.18);
  box-shadow: var(--home-shadow);
}

.home-product-imgbox {
  position: relative;
  width: 100%;
  background: #f1f5f9;
}

.home-product-imgbox img {
  width: 100%;
  height: auto;
}

.home-img-left,
.home-img-right {
  position: absolute;
  top: 10px;
  z-index: 2;
  padding: 5px 9px;
  border-radius: 999px;
  color: #ffffff;
  font-size: 12px;
  background: rgba(15, 23, 42, 0.72);
}

.home-img-left {
  left: 10px;
}

.home-img-right {
  right: 10px;
}

.home-product-title {
  margin: 12px 12px 6px;
  color: #0f172a;
  font-size: 16px;
  line-height: 1.35;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.home-product-desc {
  height: 40px;
  margin: 0 12px 12px;
  color: #64748b;
  font-size: 13px;
  line-height: 20px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.home-product-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 0 12px 14px;
}
.home-product-tool {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  padding: 0 12px 14px;
}

.home-product-actions button,
.home-product-actions a,
.home-term-btn {
  border: 0;
  border-radius: 12px;
  padding: 10px 8px;
  color: #ffffff;
  font-weight: 700;
  text-align: center;
  background: linear-gradient(135deg, #2563eb, #06b6d4);
}

.home-product-actions a {
  background: linear-gradient(135deg, #f97316, #ef4444);
}

.home-product-tool a {
  border: 0;
  border-radius: 12px;
  padding: 10px 8px;
  color: #ffffff;
  font-weight: 700;
  text-align: center;	
  background: linear-gradient(135deg, #f97316, #ef4444);
}

.home-about-section {
  padding: 12px 0 18px;
}

.home-about-card {
  padding: 18px;
  border-radius: var(--home-card-radius);
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.08), rgba(6, 182, 212, 0.08));
  border: 1px solid rgba(37, 99, 235, 0.13);
  box-shadow: var(--home-shadow);
}

.home-about-card h3 {
  margin: 0 0 10px;
  color: #0f172a;
  font-size: 20px;
}

.home-about-card p {
  margin: 8px 0;
  color: #475569;
  line-height: 1.8;
  font-size: 14px;
}

.home-footer {
  margin-top: 8px;
  padding: 24px 0 34px;
  color: #e2e8f0;
  text-align: center;
  background: #0f172a;
}

.home-footer-inner {
  text-align: center;
}

.home-footer p {
  max-width: 880px;
  margin: 0 auto;
  line-height: 1.9;
  font-size: 14px;
}

.home-term-btn {
  margin-top: 10px;
  padding: 10px 18px;
}


/* =========================================================
   index.html：六合彩衍生品科技感栏目样式开始
   ========================================================= */
.home-derivative-section {
  padding-top: 16px;
}

.home-derivative-titlebar {
  padding: 14px 16px;
  border: 1px solid rgba(37, 99, 235, 0.16);
  border-radius: 18px;
  background:
    radial-gradient(circle at 12% 18%, rgba(37, 99, 235, 0.16), transparent 30%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(239, 246, 255, 0.86));
  box-shadow: var(--home-shadow);
}

.home-derivative-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.home-derivative-card {
  position: relative;
  overflow: hidden;
  min-height: 210px;
  padding: 20px;
  border-radius: 22px;
  color: #e2e8f0;
  background:
    linear-gradient(135deg, rgba(15, 23, 42, 0.98), rgba(30, 41, 59, 0.96)),
    radial-gradient(circle at 80% 0%, rgba(37, 99, 235, 0.28), transparent 34%);
  border: 1px solid rgba(125, 211, 252, 0.2);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.2);
}

.home-derivative-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(148, 163, 184, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 163, 184, 0.08) 1px, transparent 1px);
  background-size: 24px 24px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.55), transparent 86%);
}

.home-derivative-glow {
  position: absolute;
  width: 150px;
  height: 150px;
  right: -60px;
  top: -60px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.46), transparent 68%);
}

.home-derivative-title {
  position: relative;
  margin: 0 0 12px;
  color: #ffffff;
  font-size: 19px;
  line-height: 1.35;
  letter-spacing: .3px;
}

.home-derivative-desc {
  position: relative;
  min-height: 74px;
  margin: 0 0 18px;
  color: #cbd5e1;
  font-size: 14px;
  line-height: 1.85;
  overflow: visible;
  display: block;
}

.home-derivative-demo {
  position: relative;
  display: block;
  width: 100%;
  border: 0;
  border-radius: 15px;
  padding: 12px 14px;
  color: #ffffff;
  font-size: 15px;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(135deg, #06b6d4, #2563eb, #7c3aed);
  box-shadow: 0 14px 28px rgba(37, 99, 235, 0.28);
}

.home-derivative-demo:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
}

@media (max-width: 720px) {
  .home-header-inner {
    min-height: 52px;
    padding: 4px 0;
  }

  .home-logo {
    height: 38px;
  }

  .home-logo-img {
    width: 30px;
    height: 30px;
  }

  .home-logo-text {
    font-size: 14px;
  }

  .home-nav {
    height: 38px;
  }

  .home-nav a {
    padding: 8px 10px;
    font-size: 13px;
  }

  .home-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .home-category-title h3 {
    font-size: 17px;
  }

  .home-category-title small {
    max-width: 48%;
    font-size: 12px;
  }

  .home-product-title {
    margin: 10px 9px 5px;
    font-size: 14px;
  }

  .home-product-desc {
    margin: 0 9px 10px;
    font-size: 12px;
  }

  .home-product-actions {
    padding: 0 9px 11px;
    gap: 6px;
  }

  .home-product-actions button,
  .home-product-actions a {
    padding: 8px 4px;
    font-size: 12px;
  }
}


.global-scroll-msg{
    position:fixed;
    top:70px;
    left:50%;
    transform:translateX(-50%);
    width:50%;
    padding:12px 18px;
    background:linear-gradient(135deg,#111827,#2563eb);
    color:#fff;
    border-radius:999px;
    text-align:center;
    font-size:14px;
    font-weight:700;
    z-index:9998;
    box-shadow:0 10px 30px rgba(0,0,0,.25);
}

/* =========================================================
   view.html 样式开始
   ========================================================= */
:root {
  --view-header-height: 56px;
  --view-main-color: #7c3aed;
  --view-card-radius: 18px;
  --view-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

#viewCommonHeaderMount {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 70;
}

.view-common-header {
  width: 100%;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(148, 163, 184, 0.25);
  backdrop-filter: blur(14px);
}

.view-container,
.view-common-container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 14px;
}

.view-common-header-inner {
  min-height: var(--view-header-height);
  padding: 5px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.view-common-logo {
  flex: 0 0 auto;
  height: 40px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  color: #0f172a;
}

.view-common-logo-img {
  width: 34px;
  height: 34px;
  object-fit: contain;
  flex: 0 0 auto;
}

.view-common-logo-text {
  font-size: 16px;
  font-weight: 800;
  white-space: nowrap;
}

.view-common-nav {
  flex: 1;
  height: 40px;
  display: flex;
  align-items: center;
  gap: 8px;
  overflow-x: auto;
  overflow-y: hidden;
  white-space: nowrap;
  scrollbar-width: none;
}

.view-common-nav::-webkit-scrollbar {
  display: none;
}

.view-common-nav a {
  flex: 0 0 auto;
  padding: 8px 12px;
  border-radius: 999px;
  color: #334155;
  font-size: 14px;
  background: #f3e8ff;
  border: 1px solid rgba(124, 58, 237, 0.12);
}

.view-common-nav a:hover {
  color: var(--view-main-color);
  background: #ede9fe;
}

.view-common-slider {
  width: 100%;
  background: #050816;
  overflow: hidden;
}

.view-common-slide {
  display: none;
}

.view-common-slide.view-current {
  display: block;
}

.view-common-slide a,
.view-common-slide img {
  width: 100%;
  height: auto;
}

.view-common-marquee {
  width: 100%;
  margin: 10px 0 8px;
  padding: 8px 0;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(90deg, #f5f3ff, #eff6ff, #ecfeff);
  border-top: 1px solid rgba(124, 58, 237, 0.12);
  border-bottom: 1px solid rgba(124, 58, 237, 0.12);
}

.view-common-marquee-label {
  flex: 0 0 auto;
  margin-left: 12px;
  padding: 7px 12px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, #7c3aed, #2563eb);
  font-size: 14px;
  font-weight: 800;
  box-shadow: 0 8px 20px rgba(124, 58, 237, 0.18);
}

.view-common-marquee-track {
  flex: 1 1 auto;
  margin: 0 12px;
  white-space: nowrap;
  color: #1e293b;
  font-size: 14px;
  line-height: 32px;
}

.view-common-recommend {
  padding: 12px 0;
}

.view-common-category-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: nowrap;
  margin-bottom: 10px;
}

.view-common-category-title h3 {
  margin: 0;
  color: #0f172a;
  font-size: 20px;
  white-space: nowrap;
}

.view-common-category-title small {
  color: #64748b;
  font-size: 13px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: right;
}

.view-common-product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.view-common-product-card {
  overflow: hidden;
  border-radius: var(--view-card-radius);
  background: #ffffff;
  border: 1px solid rgba(148, 163, 184, 0.18);
  box-shadow: var(--view-shadow);
}

.view-common-product-imgbox {
  position: relative;
  background: #f8fafc;
}

.view-common-img-left,
.view-common-img-right {
  position: absolute;
  top: 10px;
  z-index: 2;
  padding: 5px 9px;
  border-radius: 999px;
  color: #ffffff;
  font-size: 12px;
  background: rgba(15, 23, 42, 0.72);
}

.view-common-img-left {
  left: 10px;
}

.view-common-img-right {
  right: 10px;
}

.view-common-product-title {
  margin: 12px 12px 6px;
  color: #0f172a;
  font-size: 16px;
  line-height: 1.35;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.view-common-product-desc {
  height: 40px;
  margin: 0 12px 12px;
  color: #64748b;
  font-size: 13px;
  line-height: 20px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.view-common-product-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 0 12px 14px;
}

.view-common-product-actions button,
.view-common-product-actions a,
.view-term-btn {
  border: 0;
  border-radius: 12px;
  padding: 10px 8px;
  color: #ffffff;
  font-weight: 700;
  text-align: center;
  background: linear-gradient(135deg, #7c3aed, #2563eb);
}

.view-common-product-actions a {
  background: linear-gradient(135deg, #f97316, #ef4444);
}

.view-main {
  padding-bottom: 18px;
}

.view-detail-section {
  padding: 12px 0;
}

.view-detail-titlebox {
  padding: 20px;
  border-radius: 22px;
  color: #ffffff;
  background: linear-gradient(135deg, #111827, #312e81, #2563eb);
  box-shadow: var(--view-shadow);
}

.view-detail-titlebox span {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  font-size: 13px;
}

.view-detail-titlebox h1 {
  margin: 12px 0 8px;
  font-size: 28px;
  line-height: 1.3;
}

.view-detail-titlebox p {
  margin: 0;
  color: #dbeafe;
  line-height: 1.8;
  font-size: 14px;
}

.view-detail-card {
  margin-top: 14px;
  padding: 16px;
  border-radius: 20px;
  background: #ffffff;
  border: 1px solid rgba(148, 163, 184, 0.18);
  box-shadow: var(--view-shadow);
}

.view-detail-card h2 {
  margin: 0 0 8px;
  color: #0f172a;
  font-size: 20px;
}

.view-detail-tips {
  margin: 0 0 12px;
  color: #64748b;
  font-size: 14px;
  line-height: 1.7;
}

.view-image-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.view-lazy-image-card {
  cursor: pointer;
  overflow: hidden;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid rgba(148, 163, 184, 0.2);
  box-shadow: 0 6px 20px rgba(15, 23, 42, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.view-lazy-image-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.12);
}

.view-lazy-image-box {
  position: relative;
  min-height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 35% 25%, rgba(37, 99, 235, 0.16), transparent 30%),
    linear-gradient(135deg, #eef2ff, #f8fafc);
}

.view-lazy-see {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 17px;
  font-weight: 900;
  background: linear-gradient(135deg, #2563eb, #7c3aed);
  box-shadow: 0 12px 30px rgba(37, 99, 235, 0.28);
}

.view-lazy-image-card.view-lazy-loading .view-lazy-see {
  font-size: 0;
}

.view-lazy-image-card.view-lazy-loading .view-lazy-see::after {
  content: "加载中";
  font-size: 14px;
}

.view-lazy-image-card.view-lazy-error .view-lazy-see {
  background: linear-gradient(135deg, #ef4444, #f97316);
}

.view-lazy-image-card.view-lazy-error .view-lazy-see::after {
  content: "重试";
}

.view-lazy-image-box img {
  display: none;
  width: 100%;
  height: auto;
  border-radius: 0;
  background: #f1f5f9;
}

.view-lazy-image-card.view-lazy-loaded .view-lazy-see {
  display: none;
}

.view-lazy-image-card.view-lazy-loaded .view-lazy-image-box {
  min-height: auto;
  display: block;
  background: #f8fafc;
}

.view-lazy-image-card.view-lazy-loaded .view-lazy-image-box img {
  display: block;
}

.view-lazy-image-name {
  display: block;
  padding: 10px 12px;
  color: #334155;
  font-size: 14px;
  font-weight: 800;
  text-align: center;
  background: #ffffff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.view-intro-box {
  padding: 14px;
  border-radius: 16px;
  color: #334155;
  background: #f8fafc;
  line-height: 1.9;
  font-size: 14px;
}

.view-intro-box p {
  margin: 0 0 10px;
}

.view-intro-box p:last-child {
  margin-bottom: 0;
}

.view-video-box {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  overflow: hidden;
  border-radius: 16px;
  background: #0f172a;
}

.view-video-box iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.view-download-box {
  padding: 14px;
  text-align: center;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.08), rgba(37, 99, 235, 0.08));
  border: 1px solid rgba(124, 58, 237, 0.14);
}

.view-download-box p {
  margin: 0 0 12px;
  color: #475569;
  line-height: 1.8;
  font-size: 14px;
}

.view-download-box a {
  display: inline-flex;
  margin: 0 auto;
  align-items: center;
  justify-content: center;
  min-width: 128px;
  padding: 11px 18px;
  border-radius: 14px;
  color: #ffffff;
  font-weight: 800;
  background: linear-gradient(135deg, #7c3aed, #2563eb);
  box-shadow: 0 10px 24px rgba(124, 58, 237, 0.22);
}

.view-footer {
  margin-top: 12px;
  padding: 24px 0 34px;
  color: #e2e8f0;
  text-align: center;
  background: #0f172a;
}

.view-footer-inner {
  text-align: center;
}

.view-footer p {
  max-width: 880px;
  margin: 0 auto;
  line-height: 1.9;
  font-size: 14px;
}

.view-term-btn {
  margin-top: 10px;
  padding: 10px 18px;
}

@media (max-width: 720px) {
  .view-page {
    padding-top: 52px;
  }

  .view-common-header-inner {
    min-height: 52px;
    padding: 4px 0;
  }

  .view-common-logo {
    height: 38px;
  }

  .view-common-logo-img {
    width: 30px;
    height: 30px;
  }

  .view-common-logo-text {
    font-size: 14px;
  }

  .view-common-nav {
    height: 38px;
  }

  .view-common-nav a {
    padding: 8px 10px;
    font-size: 13px;
  }

  .view-common-product-grid,
  .view-image-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .view-common-category-title h3 {
    font-size: 17px;
  }

  .view-common-category-title small {
    max-width: 48%;
    font-size: 12px;
  }

  .view-common-product-title {
    margin: 10px 9px 5px;
    font-size: 14px;
  }

  .view-common-product-desc {
    margin: 0 9px 10px;
    font-size: 12px;
  }

  .view-common-product-actions {
    padding: 0 9px 11px;
    gap: 6px;
  }

  .view-common-product-actions button,
  .view-common-product-actions a {
    padding: 8px 4px;
    font-size: 12px;
  }

  .view-lazy-image-box {
    min-height: 135px;
  }

  .view-lazy-see {
    width: 62px;
    height: 62px;
    font-size: 15px;
  }

  .view-lazy-image-name {
    padding: 8px 7px;
    font-size: 12px;
  }

  .view-detail-titlebox {
    padding: 16px;
  }

  .view-detail-titlebox h1 {
    font-size: 22px;
  }
}


@media (max-width: 720px) {
  .home-derivative-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .home-derivative-titlebar {
    padding: 12px 13px;
  }
  .home-derivative-card {
    min-height: auto;
    padding: 17px;
    border-radius: 18px;
  }
  .home-derivative-title {
    font-size: 17px;
  }
  .home-derivative-desc {
    min-height: 0;
    font-size: 13px;
  }
}
