:root {
  --ink: #0f172a;
  --muted: #64748b;
  --soft: #f8fafc;
  --line: rgba(15, 23, 42, 0.07);
  --blue: #3b82f6;
  --deep-blue: #2563eb;
  --pink: #d946ef;
  --green: #10b981;
  --shadow: 0 2px 8px rgba(15, 23, 42, 0.05), 0 1px 2px rgba(15, 23, 42, 0.04);
  --big-shadow: 0 28px 60px -16px rgba(15, 23, 42, 0.24);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  font-family: "PingFang SC", "HarmonyOS Sans SC", "Microsoft YaHei", "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Noto Sans SC", system-ui, sans-serif;
  background:
    radial-gradient(circle at 2% 13%, rgba(255, 219, 236, 0.75), transparent 28%),
    radial-gradient(circle at 48% 18%, rgba(198, 238, 255, 0.8), transparent 31%),
    radial-gradient(circle at 95% 12%, rgba(224, 232, 255, 0.8), transparent 32%),
    linear-gradient(180deg, #fbfdff 0%, #f8fafc 45%, #fff 100%);
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }

.cursor-glow {
  position: fixed;
  z-index: 0;
  left: var(--cursor-x, 50vw);
  top: var(--cursor-y, 30vh);
  width: 420px;
  height: 420px;
  pointer-events: none;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.16), rgba(217, 70, 239, 0.1) 36%, transparent 68%);
  transform: translate(-50%, -50%);
  filter: blur(6px);
  opacity: 0.75;
}

.skip-link {
  position: fixed;
  top: -80px;
  left: 18px;
  z-index: 50;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
}
.skip-link:focus { top: 18px; }

.top-note {
  position: relative;
  z-index: 3;
  min-height: 42px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px max(30px, calc((100vw - 1180px) / 2));
  border-bottom: 1px solid rgba(15, 23, 42, 0.05);
  background: rgba(255, 255, 255, 0.52);
  backdrop-filter: blur(18px);
  color: #334155;
  font-size: 14px;
}
.top-note strong {
  padding: 5px 12px;
  border-radius: 999px;
  border: 1px solid rgba(16, 185, 129, 0.26);
  background: rgba(236, 253, 245, 0.86);
  color: var(--green);
  font-size: 12px;
  letter-spacing: 2px;
}
.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #2dd4bf;
  box-shadow: 0 0 0 7px rgba(45, 212, 191, 0.16);
  animation: pulse 1.8s ease-in-out infinite;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  height: 65px;
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 0 max(30px, calc((100vw - 1180px) / 2));
  border-bottom: 1px solid rgba(15, 23, 42, 0.04);
  background: rgba(255, 255, 255, 0.58);
  backdrop-filter: blur(24px);
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 900;
  white-space: nowrap;
}
.brand em { color: #2563eb; font-style: normal; }
.brand-mark {
  display: grid;
  place-items: center;
  width: 31px;
  height: 31px;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(135deg, #3b82f6, #695cf7);
  box-shadow: 0 10px 24px rgba(59, 130, 246, 0.28);
  font-size: 15px;
}
.nav-links {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 25px;
  color: #64748b;
  font-size: 15px;
}
.nav-links a {
  padding: 8px 0;
  border-radius: 999px;
  transition: color .2s ease, transform .2s ease;
}
.nav-links a:hover { color: var(--ink); transform: translateY(-1px); }

.contact-pill,
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 900;
  white-space: nowrap;
  overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease;
}
.contact-pill,
.btn.dark {
  color: #fff;
  background: #0f172a;
  box-shadow: 0 6px 16px -3px rgba(15, 23, 42, .3), 0 0 0 1.5px rgba(255, 255, 255, .7);
}
.btn.primary {
  color: #fff;
  background: linear-gradient(135deg, #2f80ed, #2563eb);
  box-shadow: 0 6px 16px -2px rgba(59, 130, 246, .4), 0 2px 5px rgba(59, 130, 246, .2);
}
.btn:hover,
.contact-pill:hover { transform: translateY(-3px); }
.btn::after,
.contact-pill::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0%, rgba(255,255,255,.28) 45%, transparent 70%);
  transform: translateX(-130%);
  transition: transform .55s ease;
}
.btn:hover::after,
.contact-pill:hover::after { transform: translateX(130%); }

.section-shell {
  width: min(1180px, calc(100% - 60px));
  margin: 0 auto;
}
.hero {
  position: relative;
  z-index: 1;
}
.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 496px;
  align-items: center;
  gap: 72px;
  min-height: 600px;
  padding: 82px 0 64px;
}
.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.74);
  border: 1px solid rgba(15, 23, 42, .07);
  box-shadow: 0 8px 24px rgba(15, 23, 42, .05);
  color: #334155;
  font-weight: 800;
}
.eyebrow span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #2f80ed;
  box-shadow: 0 0 0 6px rgba(47, 128, 237, .13);
}
.hero h1 {
  margin: 28px 0 22px;
  font-size: clamp(50px, 5.5vw, 71px);
  line-height: 1.05;
  letter-spacing: 0;
}
.hero h1 span {
  color: transparent;
  background: linear-gradient(92deg, #2f6df6 0%, #6f56f7 42%, #e142af 100%);
  -webkit-background-clip: text;
  background-clip: text;
}
.hero-copy p,
.section-title p,
.cta-card p {
  max-width: 650px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.85;
}
.hero-actions,
.service-tags,
.tool-chips,
.plan-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}
.hero-actions { margin-top: 34px; }
.service-tags {
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}
.service-tags li,
.tool-chips span {
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.76);
  border: 1px solid rgba(15,23,42,.06);
  box-shadow: 0 8px 22px rgba(15,23,42,.04);
  color: #475569;
  font-size: 14px;
}

.tilt-card {
  --mx: 50%;
  --my: 50%;
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}
.tilt-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  background: radial-gradient(circle at var(--mx) var(--my), rgba(59, 130, 246, .16), transparent 36%);
  transition: opacity .22s ease;
}
.tilt-card:hover {
  transform: translateY(-6px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg));
  box-shadow: var(--big-shadow);
}
.tilt-card:hover::before { opacity: 1; }

.stats-card {
  padding: 34px 31px 30px;
  border: 1px solid rgba(15,23,42,.06);
  border-radius: 22px;
  background: rgba(255,255,255,.76);
  box-shadow: 0 28px 80px rgba(15, 23, 42, .10);
}
.stats-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 26px;
}
.stats-head span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(209,250,229,.62);
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
}
.stats-head i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
}
.big-stat {
  font-size: 66px;
  line-height: 1;
  font-weight: 900;
}
.stats-card > p { margin: 9px 0 27px; color: var(--muted); }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px 30px;
  padding: 24px 0;
  border-top: 1px dashed rgba(15,23,42,.12);
  border-bottom: 1px dashed rgba(15,23,42,.12);
}
.stats-grid div { display: grid; grid-template-columns: auto 1fr; column-gap: 2px; }
.stats-grid strong { font-size: 30px; line-height: 1; }
.stats-grid small { align-self: end; color: #2563eb; font-weight: 900; }
.stats-grid span { grid-column: 1 / -1; margin-top: 8px; color: var(--muted); }
.tool-chips { margin-top: 20px; gap: 8px; }
.tool-chips span { background: #eef2f7; font-size: 12px; font-weight: 900; }

.section { padding-top: 92px; position: relative; z-index: 1; }
.section-title {
  display: grid;
  gap: 11px;
  margin-bottom: 26px;
}
.section-title.centered {
  text-align: center;
  justify-items: center;
}
.section-title > span,
.section-kicker {
  color: #2563eb;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 2px;
}
.section-title h2,
.guarantee-panel h2,
.cta-card h2 {
  margin: 0;
  font-size: clamp(30px, 3.3vw, 44px);
  line-height: 1.18;
}
.notice {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  padding: 17px 20px;
  margin-bottom: 22px;
  border-radius: 16px;
  border: 1px solid rgba(37,99,235,.14);
  background: rgba(239,246,255,.72);
  color: #475569;
}
.notice a { margin-left: auto; color: #1d4ed8; font-weight: 900; }

.plans-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.plan-card,
.scenario-card,
.flow-card,
.feature {
  padding: 26px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(15,23,42,.06);
  box-shadow: var(--shadow);
}
.plan-card.is-selected {
  color: #fff;
  border-color: #0f172a;
  background: linear-gradient(180deg, #0f172a, #111827);
  box-shadow: 0 28px 60px -16px rgba(15,23,42,.30), 0 0 0 4px rgba(15,23,42,.06), 0 12px 24px -6px rgba(15,23,42,.10);
}
.badge {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 5px 12px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, #2563eb, #d946ef);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.2;
}
.plan-card.is-selected {
  padding-top: 34px;
}
.plan-meta { justify-content: space-between; color: #64748b; font-size: 13px; font-weight: 900; }
.is-selected .plan-meta,
.is-selected p,
.is-selected li,
.is-selected .price em { color: rgba(255,255,255,.72); }
.plan-card h3 { margin: 20px 0 8px; font-size: 21px; }
.plan-card p { min-height: 48px; margin: 0; color: var(--muted); line-height: 1.6; }
.price { margin: 24px 0 20px; font-size: 52px; line-height: 1; font-weight: 900; }
.price small { font-size: 20px; }
.price em { color: var(--muted); font-size: 15px; font-style: normal; }
.plan-card ul {
  display: grid;
  gap: 11px;
  min-height: 132px;
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
  color: #475569;
}
.plan-card li::before {
  content: "✓";
  margin-right: 9px;
  color: #2563eb;
  font-weight: 900;
}
.is-selected li::before { color: #60a5fa; }
.plan-card > a {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 46px;
  border-radius: 999px;
  color: #fff;
  background: #0f172a;
  font-weight: 900;
}
.is-selected > a { background: #2a3142; color: #fff; }

.table-wrap {
  overflow-x: auto;
  border-radius: 18px;
  border: 1px solid rgba(15,23,42,.06);
  background: #fff;
  box-shadow: 0 18px 45px rgba(15,23,42,.06);
}
table { width: 100%; min-width: 820px; border-collapse: collapse; }
th, td {
  padding: 19px 22px;
  text-align: left;
  border-bottom: 1px solid rgba(15,23,42,.06);
  color: #475569;
}
thead th { color: var(--ink); background: #f8fafc; font-size: 14px; }
tbody th { color: var(--ink); }
td a {
  display: inline-flex;
  padding: 7px 14px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  box-shadow: 0 3px 8px -1px rgba(59,130,246,.35);
  font-weight: 900;
}

.scenario-grid,
.flow-grid,
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.scenario-grid { grid-template-columns: repeat(5, minmax(0, 1fr)); }
.scenario-card b {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: #eff6ff;
  font-size: 24px;
}
.scenario-card h3,
.flow-card h3,
.feature h3 { margin: 18px 0 10px; font-size: 20px; }
.scenario-card p,
.flow-card p,
.feature p { color: var(--muted); line-height: 1.75; }
.scenario-card span { display: inline-flex; gap: 6px; margin-top: 10px; color: #2563eb; }
.scenario-card-ghost {
  border-style: dashed;
  background: rgba(255,255,255,.34);
}
.scenario-card-ghost a { color: #1d4ed8; font-weight: 900; }
.flow-card span {
  color: #cbd5e1;
  font-size: 42px;
  font-weight: 900;
}

.guarantee-panel,
.cta-card {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 38px;
  padding: 44px;
  border-radius: 24px;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(15,23,42,.06);
  box-shadow: 0 22px 70px rgba(15,23,42,.08);
}
.guarantee-panel p { color: var(--muted); line-height: 1.8; }
.pay-box {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 36px;
}
.pay-box span { width: 100%; color: #64748b; font-size: 14px; }
.pay-box strong {
  padding: 10px 14px;
  border-radius: 999px;
  background: #eef2ff;
  color: #1d4ed8;
}
.guarantee-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.guarantee-grid article {
  padding: 20px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(15,23,42,.06);
}

.wechat-wrap {
  display: grid;
  grid-template-columns: 48px 1fr 1fr 48px;
  align-items: center;
  gap: 18px;
}
.slide-btn {
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background: #fff;
  color: #334155;
  box-shadow: var(--shadow);
  font-size: 28px;
  cursor: pointer;
}
.wechat-card {
  min-height: 330px;
  padding: 22px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid rgba(15,23,42,.06);
  box-shadow: 0 18px 55px rgba(15,23,42,.08);
}
.chat-top {
  display: flex;
  justify-content: space-between;
  color: #334155;
  border-bottom: 1px solid rgba(15,23,42,.06);
  padding-bottom: 14px;
}
.chat-time {
  margin: 18px auto;
  width: fit-content;
  color: #94a3b8;
  font-size: 13px;
}
.chat-row { display: grid; grid-template-columns: 42px 1fr; gap: 12px; }
.avatar {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  color: #fff;
  background: linear-gradient(135deg, #14b8a6, #3b82f6);
  font-weight: 900;
}
.avatar.purple { background: linear-gradient(135deg, #8b5cf6, #ec4899); }
.chat-row b,
.chat-service b { color: #334155; font-size: 14px; }
.chat-row p,
.chat-service p {
  margin: 8px 0 0;
  color: #475569;
  line-height: 1.7;
}
.chat-service {
  margin: 18px 0 0 54px;
  padding: 14px 16px;
  border-radius: 18px;
  background: #eff6ff;
}

.feature-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.feature-accent {
  border-color: rgba(16,185,129,.18);
  background: linear-gradient(180deg, rgba(236,253,245,.95), #fff);
}

.faq-section { max-width: 920px; }
.faq-list { display: grid; gap: 12px; }
.faq-item {
  padding: 0;
  border-radius: 18px;
  border: 1px solid rgba(15,23,42,.06);
  background: #fff;
  box-shadow: 0 1px 2px rgba(15,23,42,.04);
  overflow: hidden;
}
.faq-item.open {
  border-color: transparent;
  box-shadow: 0 12px 28px -10px rgba(59,130,246,.15), 0 0 0 1.5px rgba(59,130,246,.25);
}
.faq-item button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 66px;
  padding: 0 22px;
  border: 0;
  background: transparent;
  color: #334155;
  font: inherit;
  font-weight: 900;
  text-align: left;
  cursor: pointer;
}
.faq-item i {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #eff6ff;
  color: #2563eb;
  font-style: normal;
  transition: transform .2s ease;
}
.faq-item p {
  display: none;
  margin: 0;
  padding: 0 22px 20px;
  color: #64748b;
  line-height: 1.8;
}
.faq-item.open p { display: block; }
.faq-item.open i { transform: rotate(45deg); }

.section-cta { padding-bottom: 82px; }
.cta-card {
  grid-template-columns: 1fr 310px;
  align-items: center;
  background: linear-gradient(135deg, rgba(15,23,42,.96), rgba(30,41,59,.94));
  color: #fff;
  box-shadow: 0 28px 70px rgba(15,23,42,.22);
}
.cta-card p,
.cta-card li { color: rgba(255,255,255,.72); }
.cta-card ul {
  display: grid;
  gap: 9px;
  padding-left: 18px;
  margin: 22px 0 0;
}
.cta-card .section-kicker {
  width: fit-content;
  margin-bottom: 16px;
  color: #bfdbfe;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
}
.qr-card {
  justify-self: end;
  width: 280px;
  padding: 22px;
  border-radius: 22px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  text-align: center;
}
.qr-frame {
  width: 220px;
  height: 220px;
  margin: 0 auto 18px;
  border-radius: 14px;
  background: #fff;
  padding: 8px;
  overflow: hidden;
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.22);
}
.qr-card .qr-image {
  display: block;
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  max-height: 100% !important;
  object-fit: contain !important;
  object-position: center center;
  border-radius: 8px;
}
.qr-card p { margin: 0; font-size: 14px; }

footer {
  display: flex;
  justify-content: center;
  gap: 12px;
  padding: 30px 24px 46px;
  color: #64748b;
}

.reveal-init {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal-init.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(.72); opacity: .7; }
}

@media (max-width: 1120px) {
  .nav-links { display: none; }
  .hero-inner { grid-template-columns: 1fr; gap: 34px; min-height: auto; }
  .plans-grid,
  .flow-grid,
  .feature-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .scenario-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .guarantee-panel,
  .cta-card { grid-template-columns: 1fr; }
  .qr-card { justify-self: start; }
  .wechat-wrap { grid-template-columns: 1fr; }
  .slide-btn { display: none; }
}

@media (max-width: 680px) {
  .cursor-glow { display: none; }
  .top-note { align-items: flex-start; padding: 10px 18px; font-size: 12px; }
  .site-header { height: auto; min-height: 64px; padding: 12px 18px; gap: 12px; }
  .brand { font-size: 17px; }
  .brand-mark { width: 28px; height: 28px; }
  .contact-pill { margin-left: auto; min-height: 40px; padding: 0 14px; font-size: 13px; }
  .section-shell { width: min(100% - 32px, 1180px); }
  .hero-inner { padding-top: 48px; }
  .hero h1 { font-size: 48px; }
  .hero-copy p,
  .section-title p,
  .cta-card p { font-size: 16px; }
  .hero-actions .btn { width: 100%; }
  .stats-card { padding: 24px 20px; }
  .big-stat { font-size: 54px; }
  .plans-grid,
  .scenario-grid,
  .flow-grid,
  .feature-grid,
  .guarantee-grid { grid-template-columns: 1fr; }
  .notice { align-items: flex-start; flex-direction: column; }
  .notice a { margin-left: 0; }
  .guarantee-panel,
  .cta-card { padding: 28px 20px; border-radius: 20px; }
  .qr-card { width: 100%; }
  footer { flex-direction: column; align-items: center; }
}

/* Polished YingyuChat floating entry */
#showkefuarea {
  right: clamp(16px, 3vw, 30px) !important;
  bottom: clamp(18px, 5vh, 42px) !important;
  z-index: 9999999919 !important;
  --kefubgcolor: linear-gradient(135deg, #1778ff 0%, #19b7ff 100%) !important;
  --kefufontcolor: #ffffff !important;
  --bradius: 999px !important;
  --bmradius: 999px !important;
  --mtop: 0px !important;
  --mmtop: 0px !important;
}

#showkefuarea .launchYYButtonBox,
#showkefuarea .launchMButtonBox {
  display: flex !important;
  flex-direction: column !important;
  gap: 10px !important;
  padding: 0 !important;
  margin: 0 !important;
  filter: drop-shadow(0 18px 26px rgba(23, 120, 255, 0.20));
}

#showkefuarea .launchYYButton,
#showkefuarea .launcheYYButton,
#showkefuarea .launchMButtonBox li {
  width: auto !important;
  min-width: 122px !important;
  height: 48px !important;
  border-radius: 999px !important;
  border: 1px solid rgba(255, 255, 255, 0.36) !important;
  background: linear-gradient(135deg, #1677ff 0%, #18b7ff 100%) !important;
  box-shadow: 0 14px 30px rgba(22, 119, 255, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.32) !important;
  color: #fff !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  padding: 0 16px !important;
  margin: 0 !important;
  overflow: hidden !important;
  transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease !important;
}

#showkefuarea .launchYYButton:hover,
#showkefuarea .launcheYYButton:hover,
#showkefuarea .launchMButtonBox li:hover {
  opacity: 1 !important;
  transform: translateY(-2px) !important;
  filter: saturate(1.08) brightness(1.02) !important;
  box-shadow: 0 18px 36px rgba(22, 119, 255, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.36) !important;
}

#showkefuarea .launchYYButton .layui-icon,
#showkefuarea .launcheYYButton .layui-icon,
#showkefuarea .launchMButtonBox .layui-icon {
  width: 22px !important;
  height: 22px !important;
  margin: 0 !important;
  font-size: 22px !important;
  line-height: 22px !important;
}

#showkefuarea h5,
#showkefuarea .launchYYButtonText,
#showkefuarea .text_box h5,
#showkefuarea .text_box h5 a {
  color: #fff !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  line-height: 1 !important;
  letter-spacing: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
}

#showkefuarea .showbuttonname li,
#showkefuarea.showbuttonname li {
  width: auto !important;
}

@media (max-width: 640px) {
  #showkefuarea {
    right: 14px !important;
    bottom: 18px !important;
  }

  #showkefuarea .launchYYButton,
  #showkefuarea .launcheYYButton,
  #showkefuarea .launchMButtonBox li {
    min-width: 108px !important;
    height: 44px !important;
    padding: 0 14px !important;
  }

  #showkefuarea h5,
  #showkefuarea .launchYYButtonText,
  #showkefuarea .text_box h5,
  #showkefuarea .text_box h5 a {
    font-size: 14px !important;
  }
}
