:root {
  --primary: #00bcd4;
  --primary-dark: #4caf50;
  --primary-light: #a5b4fc;
  --url-hover: #00BCD4;
  --accent: #f59e0b;
  --bg: #ffffff;
  --bg-soft: #f8fafc;
  --bg-dark: #0f172a;
  --text: #1e293b;
  --text-soft: #64748b;
  --text-light: #94a3b8;
  --border: #e2e8f0;
  --spl: #cbd1d8;
  --hover: #00BCD4;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 20px 40px rgba(99, 102, 241, 0.15);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  min-width: 400px;
}

body {
  font-family: 'Inter', 'Noto Sans SC', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  line-height: 1.6;
  background: var(--bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

img {
  max-width: 100%;
  display: block;
}

.pt20 {
  padding-top: 20px;
}

.ml10 {
  margin-left: 10px;
}

.ml40 {
  margin-left: 40px;
}

.ml60 {
  margin-left: 60px;
}

.mr10 {
  margin-right: 10px;
}

.mr20 {
  margin-right: 20px;
}

.mt10 {
  margin-top: 10px;
}

.mt20 {
  margin-top: 20px;
}

.mt40 {
  margin-top: 40px;
}

.mb10 {
  margin-bottom: 10px
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: var(--transition);
}

.navbar.scrolled {
  border-bottom-color: var(--border);
  box-shadow: var(--shadow-sm);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 18px;
}

.logo-mark {
  background: linear-gradient(135deg, var(--primary), #4caf50);
  color: #fff;
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 14px;
  letter-spacing: 1px;
}

.logo-img {
  height: 16px;
}

.logo-text {
  color: var(--text);
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-soft);
  transition: var(--transition);
  position: relative;
}

.nav-links a:hover {
  color: var(--primary);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: var(--transition);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-links a.active {
  color: var(--primary);
}

.nav-links a.active::after {
  width: 100%;
}

.login-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-soft);
  padding: 6px 12px;
  border: 1px solid var(--border);
  border-radius: 999px;
  transition: var(--transition);
}

.login-toggle:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.login-toggle.active {
  border-color: var(--primary);
  color: var(--primary);
}

.login-btn {
  transition: var(--transition);
}

.login-btn.active {
  color: var(--primary);
}

.login-divider {
  color: var(--spl);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}

.menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: var(--transition);
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 24px 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
}

.grid-bg {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(to right, rgba(99, 102, 241, 0.06) 1px, transparent 1px), linear-gradient(to bottom, rgba(99, 102, 241, 0.06) 1px, transparent 1px);
  background-size: 80px 80px;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
  animation: float 12s ease-in-out infinite;
}

.blob-1 {
  width: 400px;
  height: 400px;
  background: var(--primary);
  top: -100px;
  right: -100px;
}

.blob-2 {
  width: 300px;
  height: 300px;
  background: var(--accent);
  bottom: -100px;
  left: -100px;
  animation-delay: -6s;
}

@keyframes float {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(40px, -40px) scale(1.1);
  }
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-badge {
  display: inline-block;
  padding: 8px 20px;
  background: rgb(0 188 212 / 4%);
  border: 1px solid rgba(99, 102, 241, 0.2);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  color: var(--primary);
  margin-bottom: 50px;
  letter-spacing: 2px;
}

.hero-title {
  font-size: clamp(40px, 7vw, 72px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.gradient-text {
  background: linear-gradient(135deg, #2196f3, #009688, #8bc34a);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.hero-subtitle {
  font-size: clamp(16px, 2vw, 19px);
  color: var(--text-soft);
  max-width: 720px;
  margin: 0 auto 40px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-bottom: 64px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 30px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), #4CAF50);
  color: #fff;
  box-shadow: 0 8px 24px rgba(99, 102, 241, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(99, 102, 241, 0.4);
}

.btn-video {
  background: linear-gradient(135deg, var(--primary), #4CAF50);
  color: #fff;
}

.btn-video:hover {
  transform: translateY(-2px);
}

.btn-secondary {
  background: #fff;
  color: var(--text);
  border: 2px solid var(--border);
}

.btn-secondary:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
}

.btn-full {
  width: 100%;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.stat {
  text-align: center;
}

.stat-num {
  font-size: 44px;
  font-weight: 800;
  background: linear-gradient(135deg, #673ab7, #9c27b0);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}

.stat-num span {
  font-size: 28px;
}

.stat-label {
  font-size: 14px;
  color: var(--text-soft);
  margin-top: 8px;
  font-weight: 500;
}

/* Section Common */
section {
  padding: 100px 0;
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 50px;
}

.section-tag {
  display: inline-block;
  padding: 6px 16px;
  background: #e0f7fa73;
  border: 1px solid rgba(99, 102, 241, 0.2);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  letter-spacing: 2px;
  margin-top: 20px;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(32px, 4.5vw, 48px);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.section-desc {
  font-size: 17px;
  color: var(--text-soft);
  line-height: 1.8;
}

/* Page Hero (sub-pages) */
.page-hero {
  background: linear-gradient(135deg, #E0F7FA 0%, #fdf4ff5c 100%);
  position: relative;
  padding: 140px 24px 80px;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(to right, rgba(99, 102, 241, 0.06) 1px, transparent 1px), linear-gradient(to bottom, rgba(99, 102, 241, 0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 0;
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

/* soft */
.soft-hero {
  background: linear-gradient(135deg, #eef2ff 0%, #fdf4ff14 100%);
  position: relative;
  padding: 140px 24px 80px;
  overflow: hidden;
}

.soft-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(to right, rgba(99, 102, 241, 0.06) 1px, transparent 1px), linear-gradient(to bottom, rgba(99, 102, 241, 0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 0;
}

.soft-hero .container {
  position: relative;
  z-index: 1;
}

.soft-tag {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(99, 102, 241, 0.08);
  border: 1px solid rgba(99, 102, 241, 0.2);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: #6366f1;
  margin-bottom: 16px;
}

.soft-icon {
  margin-bottom: 20px;
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, #e0f7fa, #e8f5e9a6);
  border-radius: 16px;
}

/* Services */
.services {
  background: var(--bg-soft);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.service-card {
  background: #fff;
  padding: 40px 32px;
  border-radius: var(--radius-lg);
  /* border: 1px solid var(--border); */
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), #4caf50);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  font-size: 44px;
  margin-bottom: 20px;
  display: inline-block;
  width: 72px;
  height: 72px;
  line-height: 72px;
  text-align: center;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.1));
  border-radius: 16px;
}

.service-img {
  padding: 20px;
}

.service-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

.service-card p {
  color: var(--text-soft);
  font-size: 15px;
  line-height: 1.75;
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-text .section-header {
  text-align: left;
  margin: 0 0 24px;
}

.about-text p {
  color: var(--text-soft);
  margin-bottom: 20px;
  line-height: 1.85;
  font-size: 16px;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  font-size: 15px;
}

.feature-icon {
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary), #8b5cf6);
  color: #fff;
  border-radius: 50%;
  font-size: 12px;
  flex-shrink: 0;
}

.about-visual {
  display: flex;
  justify-content: center;
}

.code-window {
  background: #0f172a;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(15, 23, 42, 0.3);
  width: 100%;
  max-width: 500px;
}

.code-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 20px;
  background: #1e293b;
  border-bottom: 1px solid #334155;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.dot-red {
  background: #ef4444;
}

.dot-yellow {
  background: #f59e0b;
}

.dot-green {
  background: #10b981;
}

.code-title {
  margin-left: 12px;
  color: #94a3b8;
  font-size: 13px;
  font-family: 'Courier New', monospace;
}

.code-body {
  padding: 28px;
  overflow-x: auto;
}

.code-body pre {
  font-family: 'JetBrains Mono', 'Fira Code', 'Courier New', monospace;
  font-size: 13px;
  line-height: 1.75;
  color: #e2e8f0;
}

.code-kw {
  color: #c084fc;
}

.code-var {
  color: #60a5fa;
}

.code-prop {
  color: #f472b6;
}

.code-str {
  color: #34d399;
}

.code-num {
  color: #fbbf24;
}

/* Projects */
.projects {
  background: var(--bg-soft);
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
}

.project-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--transition);
}

.project-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.project-image {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.project-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, transparent 30%, rgba(0, 0, 0, 0.1));
}

.project-icon {
  font-size: 72px;
  z-index: 1;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.2));
}

.project-content {
  padding: 28px;
}

.project-tag {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(99, 102, 241, 0.08);
  color: var(--primary);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 12px;
}

.project-content h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

.project-content p {
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.75;
  margin-bottom: 20px;
}

.project-tech {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.project-tech span {
  padding: 4px 12px;
  background: var(--bg-soft);
  color: var(--text-soft);
  border-radius: 6px;
  font-size: 12px;
  font-weight: 500;
}

/* useragr */
.useragr {
  background: var(--bg-soft);
  padding: 80px 0;
}

.useragr-card {
  background: #fff;
  padding: 40px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}

.useragr-card .title {
  font-size: 20px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 20px;
}

.useragr-card .content p {
  line-height: 26px;
}

/* 一级大标题 1、服务对象 */
.useragr-card .content p.title-h1 {
  font-weight: bold;
  margin-top: 15px;
  text-indent: 0;
}

/* 缩进 */
.useragr-card .content p.indent_1em {
  text-indent: 2em;
}

/* 层级缩进，代替 &nbsp; */
.useragr-card .content p.lv1 {
  text-indent: 1.2em;
}

.useragr-card .content strong {
  font-weight: 700;
}

/* privacy */
.privacy {
  background: var(--bg-soft);
  padding: 80px 0;
}

.privacy-card {
  background: #fff;
  padding: 40px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}

.privacy-card .title {
  font-size: 20px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 20px;
}

.privacy-card p {
  line-height: 26px;
}

.privacy-card .content p.title-h1 {
  font-weight: bold;
  margin-top: 15px;
  text-indent: 0;
}

.privacy-card .content p.lv1 {
  text-indent: 2em;
}


/* Team */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
}

.team-card {
  text-align: center;
  padding: 40px 28px;
  border-radius: var(--radius-lg);
  background: #fff;
  border: 1px solid var(--border);
  transition: var(--transition);
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.team-avatar {
  width: 100px;
  height: 100px;
  margin: 0 auto 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  font-weight: 700;
  color: #fff;
}

.team-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 6px;
}

.team-role {
  display: block;
  color: var(--primary);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 16px;
}

.team-card p {
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.7;
}

/* Process */
.process {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: #fff;
}

.process .section-tag {
  background: rgba(99, 102, 241, 0.2);
  border-color: rgba(99, 102, 241, 0.4);
  color: var(--primary-light);
}

.process .section-title {
  color: #fff;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
}

.step {
  padding: 32px 24px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  transition: var(--transition);
  position: relative;
}

.step:hover {
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-4px);
  border-color: rgba(99, 102, 241, 0.4);
}

.step-num {
  font-size: 48px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary), #8b5cf6);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  margin-bottom: 16px;
  font-family: 'Inter', monospace;
}

.step h4 {
  font-size: 18px;
  margin-bottom: 8px;
}

.step p {
  color: #94a3b8;
  font-size: 14px;
  line-height: 1.7;
}

/* Contact */
.contact {
  background: var(--bg-soft);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.contact-info .section-header {
  text-align: left;
  margin: 0 0 24px;
}

.contact-info > p {
  color: var(--text-soft);
  margin-bottom: 32px;
  line-height: 1.85;
  font-size: 16px;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.contact-item:hover {
  border-color: var(--primary);
  transform: translateX(4px);
}

.contact-icon {
  font-size: 24px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.1));
  border-radius: 12px;
  flex-shrink: 0;
}

.contact-label {
  font-size: 13px;
  color: var(--text-soft);
  margin-bottom: 4px;
  font-weight: 500;
}

.contact-value {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
}

.contact-form {
  background: #fff;
  padding: 40px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text);
}

.form-video input,
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 36px 12px 12px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-size: 15px;
  font-family: inherit;
  transition: var(--transition);
  background: var(--bg-soft);
  color: var(--text);
}

.form-video input:focus,
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

/* CTA Section */
.cta-section {
  padding: 80px 0;
  background: var(--bg-soft);
}

.cta-box {
  background: linear-gradient(135deg, var(--primary), #4CAF50);
  border-radius: var(--radius-lg);
  padding: 48px 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  box-shadow: 0 20px 60px rgba(99, 102, 241, 0.3);
}

.cta-text h2 {
  color: #fff;
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 800;
  margin-bottom: 8px;
}

.cta-text p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 18px;
}

.cta-box .btn-primary {
  background: #fff;
  color: var(--primary);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  white-space: nowrap;
}

.cta-box .btn-primary:hover {
  background: #fff;
  color: var(--primary-dark);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .cta-box {
    padding: 32px;
    flex-direction: column;
    text-align: center;
  }
}

/* Footer */
.footer {
  background: #0f172a;
  color: #94a3b8;
  padding: 64px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-col .logo {
  color: #fff;
  margin-bottom: 16px;
  display: inline-flex;
}

.footer-col .logo-text {
  color: #fff;
}

.footer-col p {
  font-size: 14px;
  line-height: 1.75;
  margin-top: 16px;
}

.footer-col h4 {
  color: #fff;
  font-size: 15px;
  margin-bottom: 20px;
  font-weight: 700;
}

.footer-col ul li {
  margin-bottom: 12px;
  font-size: 14px;
}

.footer-col ul a {
  font-size: 14px;
  transition: var(--transition);
}

.footer-col ul a:hover {
  color: var(--url-hover);
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  color: #e2e8f0;
  font-weight: 600;
  transition: var(--transition);
  position: relative;
}

.social-link:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  transform: translateY(-2px);
}

.qr-code-col {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.qr-code-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 16px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.qr-code {
  width: 120px;
  height: 120px;
  border-radius: 8px;
  margin-bottom: 8px;
}

.qr-label {
  font-size: 13px;
  color: #64748b;
  margin: 0;
}

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  font-size: 13px;
}

.footer-bottom .beian {
  margin-top: 8px;
  font-size: 12px;
}

.footer-bottom .beian a {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  transition: color 0.25s ease;
}

.footer-bottom .beian a:hover {
  color: var(--primary);
}

/* Back to Top */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #00BCD4, #8BC34A);
  color: #fff;
  border-radius: 50%;
  font-size: 20px;
  font-weight: 700;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  transition: var(--transition);
  z-index: 999;
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top:hover {
  transform: translateY(-4px);
}

/* Responsive */
@media (max-width: 960px) {

  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {

  .nav-links,
  .login-toggle {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .nav-links.active {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: #fff;
    padding: 24px;
    gap: 20px;
    box-shadow: var(--shadow-md);
    border-top: 1px solid var(--border);
  }

  section {
    padding: 64px 0;
  }

  .hero {
    padding: 100px 24px 64px;
    min-height: auto;
  }

  .hero-stats {
    gap: 32px;
  }

  .stat-num {
    font-size: 36px;
  }

  .about-features {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 28px;
  }

  .process-steps {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions .btn {
    width: 100%;
  }
}

/* Product cards */
.product-card {
  text-align: left;
  cursor: pointer;
  /* border: 1px solid var(--border); */
  border-radius: var(--radius-lg);
  background: #fff;
  padding: 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.product-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), #8b5cf6);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.product-card:hover::after {
  transform: scaleX(1);
}

.product-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text);
}

.product-card p {
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 16px;
}

.product-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--primary);
  font-weight: 600;
  font-size: 14px;
}

.product-card:hover .product-link {
  transform: translateX(4px);
}

/* Back link */
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #673AB7;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 20px;
  padding: 8px 16px;
  background: rgba(99, 102, 241, 0.08);
  border-radius: 999px;
  transition: var(--transition);
}

.back-link:hover {
  background: rgba(99, 102, 241, 0.15);
  transform: translateX(-3px);
}

/* Page marker (hidden, used by JS) */
#page-marker {
  display: none;
}

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Download Section */
.download-section {
  padding: 150px 0;
}

.download-content {
  margin-top: -40px;
  padding-bottom: 100px;
}

.download-hero {
  background: linear-gradient(135deg, #e8f5e9b5 0%, #e0f2f124 100%);
  position: relative;
  padding: 140px 24px 80px;
  overflow: hidden;
}

.download-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(to right, rgba(99, 102, 241, 0.06) 1px, transparent 1px), linear-gradient(to bottom, rgba(99, 102, 241, 0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 0;
}

.download-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  margin: 30px 0;
  justify-items: center;
}

.download-grid-single {
  display: flex;
  justify-content: center;
}

.download-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: center;
  transition: var(--transition);
  max-width: 400px;
  width: 100%;
}

.download-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.download-card.android {
  border-color: #22c55e;
  background: linear-gradient(135deg, #f0fdf4 0%, #ffffff 100%);
}

.download-icon-erp i {
  width: 80px;
  height: 80px;
  margin: 0 auto 26px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 50px;
  padding-left: 6px;
  color: #fff;
  background: linear-gradient(135deg, #03a9f4bd, #2aced7);
}

.download-icon-water i {
  width: 80px;
  height: 80px;
  margin: 0 auto 26px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 56px;
  padding-left: 6px;
  color: #fff;
  background: linear-gradient(135deg, #F44336, #E91E63);
}

.download-icon-cms i {
  width: 80px;
  height: 80px;
  margin: 0 auto 26px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 56px;
  padding-left: 6px;
  color: #fff;
  background: linear-gradient(135deg, #7b6a93, #876dab);
}

.download-icon-picture i {
  font-size: 56px;
}

.download-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text);
}

.download-info {
  display: flex;
  gap: 4px;
  font-size: 13px;
  color: var(--text-soft);
  margin-bottom: 50px;
  text-align: left;
  flex-direction: column;
  height: 100px;
}

.download-info span {
  margin-right: 4px;
}

.download-role {
  display: block;
  color: var(--primary);
  font-size: 12px;
  margin-bottom: 16px;
}

.download-money {
  color: #F44336;
}

.download-tag {
  text-align: center;
  margin: 60px 0 40px 0;
}

.tag-title {
  display: inline-block;
  padding: 6px 80px;
  background: #e0f7fa73;
  border: 1px solid rgba(99, 102, 241, 0.2);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  letter-spacing: 2px;
  margin-top: 20px;
}

.btn-download {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 48px;
  border-radius: 100px;
  font-weight: 600;
  transition: var(--transition);
  white-space: nowrap;
  color: #fff;
  background: linear-gradient(135deg, #00BCD4, #69c9d5);
}

.vip {
  color: #76401D;
  background: linear-gradient(135deg, #FAC67D, #f9c67e);
}

.btn-download:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgb(0 188 212 / 27%);
}

/* help */
.help {
  background: var(--bg-soft);
  padding: 100px 0;
}

.help-wrap {
  display: flex;
  gap: 10px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.help-menu {
  width: 230px;
  background: #fff;
  border-radius: 10px;
  padding: 16px;
  min-width: 220px;
}

.help-cate {
  margin-top: 16px;
  color: var(--text);
  font-weight: 500;
}

.help-menu > .help-cate:first-of-type {
  margin-top: 0;
}

.help-menu a {
  display: block;
  width: 100%;
  padding: 4px 12px;
  font-size: 13px;
  text-decoration: none;
  transition: 0.2s;
  cursor: pointer;
  position: relative;
}

.help-menu a:hover {
  color: #03A9F4;
}

.help-menu a.active:before {
  content: "";
  width: 2px;
  height: 14px;
  background: #00bdff;
  position: absolute;
  left: 0;
  top: 7px;
}

.help-right {
  flex: 1;
  border-radius: 10px;
  min-height: 600px;
  min-width: 600px;
  background: #fff;
  border-radius: 10px;
  padding: 20px 28px;
}

.help-content h2 {
  text-align: center;
  margin-bottom: 16px;
}

.help-body {
  line-height: 26px;
  font-size: 13px;
  font-family: auto;
}

.help-body a {
  color: #000;
}

.help-body a:hover {
  opacity: 0.8;
}

.help-body img {
  margin: 10px 0;
}

.help-menu .active {
  color: #03A9F4;
}

.help-right .title {
  background-image: url("/view/index/image/help-banner.png");
  height: 120px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.help-right .title p {
  color: #fff;
  font-size: 3em;
  letter-spacing: 2px !important;
}

.help-right .list {
  background: #fff;
  border: 1px solid #bbbfc5;
  height: 300px;
  margin-top: 42px;
  border-radius: 10px;
  padding: 20px;
}

.help-right .content-right {
  position: relative;
  height: 100%;
}

.help-right .bottom {
  display: flex;
  align-items: center;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}

.help-right .text-r1 {
  padding: 10px 20px;
}

.help-right .text-t1 {
  line-height: 36px;
  color: #4798fe;
  font-family: emoji;
}



/* Version Tabs */
.version-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 24px;
  padding: 8px;
  background: rgba(0, 0, 0, 0.04);
  border-radius: 10px;
}

.version-tab {
  padding: 10px 24px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-soft);
  transition: var(--transition);
  background: transparent;
}

.version-tab.active {
  background: #fff;
  color: var(--primary);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.version-tab:hover:not(.active) {
  color: var(--text);
}

/* Version Content */
.version-content {
  display: none;
}

.version-content.active {
  display: block;
}

/* Download Buttons */
.download-btn {
  display: block;
  width: 100%;
  padding: 14px 24px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  transition: var(--transition);
  margin-bottom: 12px;
}

.download-btn.primary {
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: #fff;
  box-shadow: 0 4px 16px rgba(34, 197, 94, 0.3);
}

.download-btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(34, 197, 94, 0.4);
}

.download-btn.secondary {
  background: rgba(0, 0, 0, 0.05);
  color: var(--text);
  border: 1px solid var(--border);
}

.download-btn.secondary:hover {
  background: rgba(0, 0, 0, 0.08);
  border-color: var(--text-soft);
}

/* Download Tip */
.download-tip {
  margin-top: 16px;
  padding: 12px 16px;
  background: rgba(251, 191, 36, 0.1);
  border-radius: 8px;
  font-size: 13px;
  color: #92400e;
}

/* QR Code Container */
.qrcode-container {
  margin-bottom: 20px;
}

.qrcode {
  width: 150px;
  height: 150px;
  margin: 0 auto 12px;
  background: #fff;
  padding: 12px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.qrcode img {
  width: 100%;
  height: 100%;
}

.qrcode-container p {
  font-size: 13px;
  color: var(--text-soft);
  margin: 0;
}

/* System Requirements */
.system-requirements {
  background: var(--bg-soft);
}

.requirements-table {
  overflow-x: auto;
}

.requirements-table table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.requirements-table th,
.requirements-table td {
  padding: 16px 24px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.requirements-table th {
  background: var(--bg-soft);
  font-weight: 600;
  color: var(--text);
  font-size: 14px;
}

.requirements-table td {
  font-size: 14px;
  color: var(--text-soft);
}

.requirements-table tr:last-child td {
  border-bottom: none;
}

/* Update History */
.update-history {
  padding: 80px 0;
}

.update-list {
  max-width: 800px;
  margin: 0 auto;
}

.update-item {
  padding: 28px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 16px;
  transition: var(--transition);
}

.update-item:hover {
  border-color: var(--primary);
  box-shadow: 0 4px 16px rgba(99, 102, 241, 0.1);
}

.update-version {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(99, 102, 241, 0.1);
  color: var(--primary);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  margin-right: 12px;
}

.update-date {
  font-size: 13px;
  color: var(--text-soft);
}

.update-changes {
  margin-top: 16px;
  padding-left: 0;
}

.update-changes li {
  position: relative;
  padding-left: 20px;
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 8px;
}

.update-changes li::before {
  content: 'âœ“';
  position: absolute;
  left: 0;
  color: #22c55e;
  font-weight: 700;
}

/* FAQ Download */
.faq-download {
  background: var(--bg-soft);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 12px;
  border: 1px solid var(--border);
}

.faq-q {
  padding: 20px 24px;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  position: relative;
  transition: var(--transition);
}

.faq-q:hover {
  background: rgba(99, 102, 241, 0.03);
}

.faq-q::after {
  content: '+';
  position: absolute;
  right: 24px;
  font-size: 20px;
  font-weight: 400;
  transition: var(--transition);
}

.faq-q.active::after {
  transform: rotate(45deg);
}

.faq-a {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.8;
}

.faq-a.active {
  padding-bottom: 20px;
  max-height: 200px;
}

.video {
  background: var(--bg-soft);
  padding: 150px 0;
}

.video-card {
  background: #fff;
  padding: 56px 56px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}

.video-card .tips {
  text-align: center;
  font-size: 13px;
  margin-top: 30px;
}

.form-video {
  display: flex;
  gap: 16px;
  padding-top: 56px;
  padding-bottom: 20px;
  justify-content: center;
  align-items: center;
}

.video-ico-wrap {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center
}

.video-card .vidor-inp {
  width: 100%;
}

.video-ico img {
  width: 32px;
  object-fit: contain;
}

.video-result {
  margin-top: 20px;
  padding: 26px;
  border: 1px solid var(--border);
  border-radius: 10px;
  display: none;
  font-family: emoji;
}

.display_block {
  display: block;
}

.display_none {
  display: none;
}

.video-result small {
  color: #757575;
  font-size: 14px;
  background: #E0F7FA;
  padding: 6px 6px;
  border-radius: 6px;
}

.video-result span {
  line-height: 38px;
  font-size: 14px;
}

.video-cover {
  display: flex;
  align-items: center;
}

.video-cover img {
  height: 100px;
}

@media (max-width: 768px) {
  .form-video {
    flex-wrap: wrap;
  }

  .btn-video {
    width: 100%;
  }

  .video-ico img {
    width: 22px;
  }
}

.login-model {
  width: 748px;
  height: 480px;
  background-color: #fff;
  box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.4);
  border-radius: 14px;
  box-sizing: border-box;
  display: flex;
}

.login-model * {
  box-sizing: border-box;
}

.login-model .login-title {
  text-align: center;
  font-size: 20px;
  margin-bottom: 26px;
  font-weight: 500;
}

.login-model .login-aside1 {
  width: 300px;
  height: 480px;
  background: url(/View/index/image/bg_login1.png) center no-repeat;
}

.login-model .login-con {
  width: 448px;
  padding: 20px 62px;
  border-radius: 10px;
}

.login-model .login-con .login-con-top {
  position: relative;
  width: 100%;
  height: 374px;
}

.login-captcha {
  margin-left: 6px;
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
}

.login-bottom {
  position: absolute;
  top: 330px;
  left: 360px;
  width: 326px;
}

.login-act {
  display: flex;
  justify-content: space-between;
  margin: 10px 4px;
}

.login-act a {
  color: #999;
}

.login-act a:hover {
  color: var(--hover);
}


.login-other {
  text-align: center;
  margin-top: 60px;
  display: flex;
  gap: 10px;
  justify-content: center;
}

.login-styleItem:first-child {
  border-left: 0;
}

.login-styleItem {
  position: relative;
  width: 35%;
  text-align: center;
  font-size: 14px;
  color: #333;
  border-left: 1px solid #E8E8E8;
}

.login-styleItem:hover {
  color: var(--hover);
}

.login-spl::after {
  content: "";
  position: absolute;
  top: -20px;
  left: 0;
  right: 0;
  height: 1px;
  border-top: 1px dashed #E0E0E0;
}

.login-agree {
  font-size: 12px;
  color: #999;
  text-align: center;
}

.login-agree a {
  color: #999;
  cursor: pointer;
}

.login-agree a:hover {
  color: var(--hover);
}

.wx-qrcode {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
}

.wx-qrcode p {
  color: #999;
  font-size: 12px;
}

.wx-qrcode img {
  width: 200px;
}

.forpwd-code {
  text-align: right;
  margin-bottom: 10px;
}

.forpwd-code a {
  color: #999;
}

.forpwd-code a:hover {
  color: var(--hover)
}

.send-btn {
  width: 100%;
  line-height: 36px;
  text-align: center;
  border: 1px solid #4FC3F7;
  border-radius: 8px;
  color: #ffffff;
  background: #4FC3F7;
  transition: all .2s;
}

.send-btn.disable {
  color: #bcbec2;
  background-color: #f4f4f5;
  border-color: #e9e9eb;
  cursor: not-allowed;
  font-family: 'Inter';
  font-size: 12px;
}

.send-btn:not(.disable):hover {
  background-color: #039BE5;
  border-color: #039BE5;
}

.mail-btn {
  width: 100%;
  line-height: 36px;
  text-align: center;
  border: 1px solid #00cbe5;
  border-radius: 8px;
  color: #ffffff;
  background: #4FC3F7;
  transition: all .2s;
}

.mail-btn.disable {
  color: #bcbec2;
  background-color: #f4f4f5;
  border-color: #e9e9eb;
  cursor: not-allowed;
  font-family: 'Inter';
  font-size: 12px;
}

.mail-btn:not(.disable):hover {
  background-color: #039BE5;
  border-color: #039BE5;
}

.mail-bind {
  width: 100%;
  line-height: 36px;
  text-align: center;
  border: 1px solid #00cbe5;
  border-radius: 8px;
  color: #ffffff;
  background: #4FC3F7;
  transition: all .2s;
}

.mail-bind.disable {
  color: #bcbec2;
  background-color: #f4f4f5;
  border-color: #e9e9eb;
  cursor: not-allowed;
  font-family: 'Inter';
  font-size: 12px;
}

.mail-bind:not(.disable):hover {
  background-color: #039BE5;
  border-color: #039BE5;
}

.login-active {
  border-color: var(--primary);
}

/* member */
.member {
  background: var(--bg-soft);
  padding: 100px 0;
}

.member-bg {
  background-color: #f7f7f7;
}

.member-wrap {
  display: flex;
  gap: 10px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.left-menu {
  width: 200px;
  background: #fff;
  border-radius: 10px;
  padding: 10px 0;
  min-width: 130px
}

@media (max-width: 980px) {
  .left-menu {
    display: none;
  }
}

.left-menu a {
  display: block;
  width: 100%;
  padding: 10px 20px;
  text-decoration: none;
  transition: 0.2s;
  cursor: pointer;
  position: relative;
}

.left-menu a.active {
  color: #00bdff;
}

.left-menu a:hover {
  background: #f4fbff;
}

.left-menu a.active:before {
  content: "";
  width: 3px;
  height: 14px;
  background: #00bdff;
  position: absolute;
  left: 0;
  top: 14px;
}

.right-content {
  flex: 1;
  border-radius: 10px;
  min-height: 600px;
  min-width: 600px;
}

.info-card {
  background: #fff;
  border-radius: 10px;
  padding: 20px 28px;
}

.welcome-text-title {
  font-size: 16px;
  font-weight: 700;
  color: black;
}

.welcome-text-info {
  color: #8c8c8c;
}

.account-detail {
  display: flex;
  align-items: center;
}

.account-name {
  font-size: 24px;
  line-height: 32px;
  font-weight: 700;
  color: #383838;
}

.account-icons {
  margin-left: 20px;
  margin-top: 3px;
  display: flex;
  gap: 6px;
}

.account-icons .real {
  color: #8CBBFF;
  font-size: 20px;
}

.account-icons .not-real {
  font-size: 20px;
  color: #BDBDBD;
}

.account-icons .mobile {
  color: #00BAFF;
  font-size: 20px;
}

.account-icons .not-mobile {
  font-size: 20px;
  color: #BDBDBD;
}

.account-icons .mail {
  color: #FBAD14;
  font-size: 20px;
}

.account-icons .not-mail {
  font-size: 20px;
  color: #BDBDBD;
}

.account-icons .wechat {
  color: #09BB07;
  font-size: 20px;
}

.account-icons .not-wechat {
  font-size: 20px;
  color: #BDBDBD;
}

.account-icons .qq {
  color: #03A9F4;
  font-size: 20px;
}

.account-icons .not-qq {
  font-size: 20px;
  color: #BDBDBD;
}

.account-money {
  margin-top: 40px;
  margin-bottom: 23px;
  display: flex;
}

.account-money .account-price {
  flex-grow: 1;
  display: flex;
  align-items: center;
  gap: 80px;
}

.account-money .account-price .account-price-info {
  font-size: 14px;
}

.account-money .account-price .account-price-line {
  display: flex;
  margin-top: 9px;
  align-items: center;
}

.account-money .account-price .account-price-num {
  flex: 1.4;
  font-size: 20px;
  font-weight: 700;
  color: #262626;
  vertical-align: middle;
  margin-right: 20px;
}

.account-spli {
  border-right: 1px solid #d2d2d2;
  height: 50px;
}

.secure-list {
  padding: 0;
}

.secure-list .list-wrap:last-child {
  border-bottom: 0;
}

.secure-list .list-wrap {
  height: 100px;
  padding: 0 20px;
  border-bottom: 1px dotted #d2d2d2;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.account-wrap {
  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyVpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDYuMC1jMDAzIDExNi5kZGM3YmM0LCAyMDIxLzA4LzE3LTEzOjE4OjM3ICAgICAgICAiPiA8cmRmOlJERiB4bWxuczpyZGY9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkvMDIvMjItcmRmLXN5bnRheC1ucyMiPiA8cmRmOkRlc2NyaXB0aW9uIHJkZjphYm91dD0iIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtbG5zOnhtcE1NPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvbW0vIiB4bWxuczpzdFJlZj0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL3NUeXBlL1Jlc291cmNlUmVmIyIgeG1wOkNyZWF0b3JUb29sPSJBZG9iZSBQaG90b3Nob3AgMjEuMiAoV2luZG93cykiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6M0JGODFGM0I5NUZDMTFGMUIyMDRFQTg0QzBBMzE3MEIiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6M0JGODFGM0M5NUZDMTFGMUIyMDRFQTg0QzBBMzE3MEIiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDozQkY4MUYzOTk1RkMxMUYxQjIwNEVBODRDMEEzMTcwQiIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDozQkY4MUYzQTk1RkMxMUYxQjIwNEVBODRDMEEzMTcwQiIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/Pu54F4cAAAOZSURBVHjaxJdbSBRRGMfPmV11t9W0UlPTUiuDyqQooZKgyIQkgtAIDIwSosSM6CHsoafC6iGiG/RQdCf0IQor04wQsewCWZpmhUX4EIZsbLr36X/sG5mmdXfG3fCDn3PW2Z3zP9/5Lme4LMtsMs2sDOrq6vX+ZgXYBgrATCCBIdADboP7wBnqIaWlJX8L0GFx4BioBFxzLwMsAVvBC1ABOg15IIQlgwawnD6LFbaDV8ANFoPVYAZ5qA2UgbuREvAALKOxeGgN6NJ8JxEcAtUgFtwkwT3BHizpmLxGNfklsDnA5MIGwUGwjz7bSAQLR4BYVTmNO2n/Q9kFcIPGS8GacAQsAPOBH5zRE91k1arxznAELKSI/wWeGsgYO3isWgSfqIBZdPWAAQMChMf6aTyFmJAAxeViBRYDAsT3rTT2ERMS0EtX8bBcAwJMqpoxGCx2Qgn4QPspVl+iM22FrQQ5NG4KJwhFEXlN40pKq1BmUaWhsHPhCPBRcVGshUpusKBtUgWv+O1wuJVQeGA/jafSBJfBBjAPZIJVVDFfUpcUPf5OqNUb6QVnwQg4RSm1g3CRl6yaXL8KdtN9Fq4HlK24CPKp3ytujSFBnFYtPFCqEhexdqyYaELFYDY1qAxKue+gG7whIcZPREHyWVtGxQRfiUAeNY3jQVmvgHjqgCLIsiJ09HOA5+AKBbU8ngDR+R6C7P9w/synWiKy5XggAeI4VaeavNlIB5TQf2JkP/5yr6xaIf4v+biU5mGm7fiYAGqpsV3TChAn3TzgBQfA+WBNRG1W2cscPIo1Weeyjug0tE7TWLCk+B1s00gfm+O1n/ZwSdSGRVSg/hFQRddndPjQuXKZtUWns+u2XPbNHJ9D58c45XYXS258EpNVfsLe/DHbO3TYy6R6dWMza04/wm7pTyE/6zNPZ7UJBX+WK49uozZ+8vwSt70zJ9lzPD9avVzyqOc1a1JF+C6V6a5OEkv1OVjVzw72yJLNeqMSxTG9EExTpeXbWJ/Lvs7Vz9zcFK9Na7WARrAR7AJH9Zz/5NH997Ai52e21tnPWiyZ7vbo9GYXN4/dT0MMbBl+z2yym0NwGVXPgUACTpKAFHCPAqU7tAjOhjEhx6jI+YkVQoysWqQJ2+ThJhv2XtSWI+SBhkACWulIvQesp7eeL3ozQUw6gkwIXExZEqWgUs6rxouBvfSiWUGuSolQEfLR0ayF5hhrVHyyX89/CzAAamvzDq1UrisAAAAASUVORK5CYII=) no-repeat center left 12px;
}

.pwd-wrap {
  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAMAAABEpIrGAAAAk1BMVEUAAACMjIyMjIyOjo6VlZWMjIyMjIyMjIyNjY2MjIwAvv+Ojo6MjIyMjIyNjY0AvP+MjIyNjY2MjIyMjIyMjIyLi4uOjo6KiooAv/+NjY0Avf+MjIyMjIyMjIyMjIyMjIyNjY0Avv+NjY2Li4uPj4+KiooAvv+MjIyNjY0Av/+MjIwAvf8AvP8Auv+AgICMjIwAvf8+q4gnAAAAL3RSTlMA4a4SA3yM0Ln0Myjegm1c7L+mdVNFIRcK/vbw5tjKmEdAOi4aDOKQcltbMiYaCpL+2ucAAADdSURBVDjLxZLJEoIwEAVZQjQGUEER931fXv7/67TQKZWJnKiyT0N1Z2oOODWzjqVMVz/1YoaC8GTVQhZ2iAfJzRLsASXXQuigAzQF8z0g1M9xMwMCFoRQGc3+42NQ8n16ROviUhBh+PFGdOB96VXagAo+cDFJF4K034WVqX4F5Bnulu7rap+RzYHD6z5kzht+qQSEQ+T5u2igyYJ8N7pUBmdjjpVBy5j2v4PryCztAdEizwOCBxHgW4MJPPp95rYVMRAVg5gCymWMAbV5ptqFlXGflm3jxGMkwcCphTuUNiey5+ee4wAAAABJRU5ErkJggg==) no-repeat center left 12px;
}

.mobile-wrap {
  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAMAAABEpIrGAAAANlBMVEUAAACNjY2NjY2NjY2MjIyMjIyNjY2Tk5ONjY0Avv8Av/8Av/+MjIwAvf8Avf8Av/+MjIwAvf87JCelAAAAEHRSTlMAVdR/7al7IfMKBjbi2s8o7F2xAQAAAHBJREFUOMvt0zsSgCAMRVHRBPn7sv/N2pI4QkNh4e0YTpEi2ZZ1MqGP+NT/BBspwQje9fkA7gHBbzoP6p+AM8ABP/gq4EPHBjyzoOy68jJDzHE4ZKxS4whkEckjkJq0pIBd2nQltbTDtZ8ezvT0FnUDkXYM4SbNC1EAAAAASUVORK5CYII=) no-repeat center left 12px;
}

.email-wrap {
  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAMAAABEpIrGAAAAXVBMVEUAAACNjY2Li4uNjY0Av/8Avf8Avv8Avf8Avv+MjIwAvf+Li4uMjIyMjIyFhYUAqv+MjIwAvf+MjIyNjY0Avf8Avf8Avf8Av/8Av/8Awf8AuP+MjIwAu/+MjIwAvf9rDMC/AAAAHXRSTlMAYECfF/kp7tbKuot2PBcG5POrqpuTdGtMOhLjHm4JaHcAAACiSURBVDjL3ZPLDoMgEEVtZUDxgba+25n//8wiLYklQ9i58CwI5B4CQ4bsJNrmztC0Pq8wQvXNa4xSO6FDfN4YHoidExDLjKVE/Ak5L+R/glyP2SpDQQBp6WOpCUQo9EQwbvt6G4GoDwS3i0jNxszKTnR4xM5S2KRww8Jc0mImRRY1Ga4KhxgABsGX6ZU3/w4HrivEGybVcq9k06baPvlxzuEDdq4b0C6wDt4AAAAASUVORK5CYII=) no-repeat center left 12px;
}

.wechat-wrap {
  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAMAAABEpIrGAAAAzFBMVEUAAACMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyNjY2NjY2MjIyLi4uMjIyMjIyQkJCMjIyMjIyNjY2MjIyMjIyMjIyMjIyNjY2NjY2NjY2NjY2NjY0Avv8Avf+MjIyMjIyNjY0Avv8AvP+JiYkAwP8AvP8Avv+MjIyMjIyMjIyMjIwAvv+MjIyNjY0AwP8Awf+MjIyNjY2FjpIGu/oAvv8Avf+NjY0Avv8Avf+NjY0Avv8Avv+Li4s4qdIAwv+NjY2MjIwAvf+zF9JXAAAAQnRSTlMAA/TPCPrt57744ZNDO456MxPZ1cmvqaSJdWNcVRwO5p6Zf2AiDQX97ba0oHFqX088MyoY3tHIxrelkIKBU0lEKiZKJO9FAAABWklEQVQ4y9WRZ2KCQBCFZ5feAipgw26MGkvU9J7n/e+UXREhmAMk3w/2zcxbZhjoP7H1Tdvi1Xh1+Wv5K0KG7rPzepsDCJ3hS90AoHTK9RagOWmWrRXALjk8Dbp3ilQHCH90YQp4QDTuyuBTPK+BZnHUtYiJbq56E6LR/p62zmHWKMleUwdXc8NdHxm1IDVUERFlLT5uAW3mtxZ9A7ASknBc5BPWgKiTyqYFzZXKKhguUAg8DlsVZw1mlqpwoSejjZDd5VjupyXkANou2yjg0nI/FfJ5/0DMONz1gMGpg8Vo03sS8m36Kjeiy7QJVFJDHwYVaUA7LiJwWZqAWjTUDxeYDoHSFttNgIRyVANzcQRI0aqmIowsNzSBtvw2W49Xvo0jcd6kCju3M3cYP84HChAG6U4aig6dUYlKKOdxho2ZBYlHZZjPT39TqHc6Z7cwDY0rjkeq69Kf4BulZzQJIlFChQAAAABJRU5ErkJggg==) no-repeat center left 12px;
}

.qq-wrap {
  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyVpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDYuMC1jMDAzIDExNi5kZGM3YmM0LCAyMDIxLzA4LzE3LTEzOjE4OjM3ICAgICAgICAiPiA8cmRmOlJERiB4bWxuczpyZGY9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkvMDIvMjItcmRmLXN5bnRheC1ucyMiPiA8cmRmOkRlc2NyaXB0aW9uIHJkZjphYm91dD0iIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtbG5zOnhtcE1NPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvbW0vIiB4bWxuczpzdFJlZj0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL3NUeXBlL1Jlc291cmNlUmVmIyIgeG1wOkNyZWF0b3JUb29sPSJBZG9iZSBQaG90b3Nob3AgMjEuMiAoV2luZG93cykiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6NTZCMDFCMDk5NUZCMTFGMUI3NDZDODcxMUE3RTJFMDkiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6NTZCMDFCMEE5NUZCMTFGMUI3NDZDODcxMUE3RTJFMDkiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDo1NkIwMUIwNzk1RkIxMUYxQjc0NkM4NzExQTdFMkUwOSIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDo1NkIwMUIwODk1RkIxMUYxQjc0NkM4NzExQTdFMkUwOSIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/Pv0Vlj8AAASmSURBVHjaxJdraBxVFMfPzO7OZjdu2qx5bGwwKRVTqviAVLQVRJRaRIvth6pUpVqqUETFYKVVi6JVEEMRBSFqVLD4qJAParQUawWtFZW2QuqjaRtLkqbY7aZNsu+d8X9mz+hkOzOdTT70wm/v7J079557XvdexTAMupAlaP/T3d3t55sFYDm4HiRkjBT4C/SDfSDvNUBXV5ezAOcp7eAFcA/QXPpsBIfAJvB51RrwKLeAHaBe/o+BH8ARUABN4FrQCa4AfeB18DQozlaAZaLaAMjJ6t4D4w59bwJbwVLwJGgED3gNrp5n8kvB+zL5ELgBbHOZnMt34Ebwqvy/Hzw/GwF4oBaQASvB/rBSIk3RSalUJdrCaokCihlVz4AeYIgmFsxEALbr3fLMtjygqTrtm4jTQCZGJTSE8Z+FCWHSsXyY9pxppGQxhEENtju7ehLEwMMz8YHHpB4Gb9Rgdf3jzdR/qhVil6hZy9KSWJKaQnnafaaBjuVqqVgMUr2Woy2tv0NDxqRByhP49kPwqCyiKg0sk/od/hnMXkS7Ugj7ABaHFZ/M11BfspV6xubT4XQdFQ0YJVCiVCFM29GulU2xXaIkChqqEaAWxOX5IFZCX6WaeSQe6GbTKXkCqN/gGqaQ0gbtLDowWQ8z1Vlte6W+qhoBGkUItmUmb6j0Z3oOt38EdoOrXb7bCQb4o4NTc0iS/D/ybmE1AlwjafZUSNEHDqVjVvtSqd0E6JB68fF8hHTDjJVvpe3eagRok/pnhNXwUDZq2h3lLE1flVsZScIXRAPfSDTwgiJ+BOBOG+T5cBHqXxidQESbq7kPfAC+d5l4HXgJjCa0jDU4J62sLGqFHwE+BpfzIGALe3dHZNISgB1qrUcm7AXP8cMlCFOlrLWTkp5D4O3KjaxSALbtbSLxKjDFjTrGCQYLVe3zMbVoz5ZvSWaMiYZcBeBJw+Az8JO907xQxvfkyISUCGUrm7eK76z3EuBWqXdM6wRVLopMnDuTjs8N1TLPfyWMv5dFpip7HxcT1noJcKXUf1R+3RlLUR1nQb08oYZVLo+foLVNQxRHOi4LoprvV8RHaW7A0WS/iC+47gV1NmmnlYZgnjYkjtKnyXmULgVodcMIddRMmrHeFk5TX6qFMmhfEjtNnbXjlIUwyrkCjPrdjLKSigNWzBcwYCKUo8chBDulqhqU0QNm53o46LrGv/GkmJPmpk/OKm8GR8UJPcPwiNSbOZuCH21JydxwCqCE4Qv6/5+W21XzXd5QnMJ6ELwrG1zJS4BeOUSwx7bKQWLbLE7dz4I7TNUQPQRul7zgKsArkkiGbW0rZyHARtsze+XXcm50FcBa/QlrL7CdC2ZSeOveb1lKktCgn81osdR8CN3lMYEiuJVfwRpwWvaYdr+74ZjNhlGH95rtEvIbeBHMdegXlYsMh7cuu6KvMHxZLhZ8pH5E0vIxedci17L2igS2Xo7lI6IVduLr5GhvnQv2+BXgTdmIXpMJ73LJFT3isE9JrK926Mdh9wl40OnO6CaAISH5BbhTrltNYrJxyRdf2lJ2r1xY2XculgR2Vi4zOyWn6I5OdKGv5/8KMABbKV3oIumA/wAAAABJRU5ErkJggg==) no-repeat center left 12px;
}

.secure-list .list-wrap dl {
  padding-left: 50px;
}

.secure-list .list-wrap .right-edit {
  color: #00bdff;
  display: flex;
  line-height: 24px;
  gap: 10px;
}

.secure-list .list-wrap .right-edit .btn-edit {
  border: none;
  background: #fff;
  color: #03A9F4;
  line-height: 24px;
  width: 30px;
}

.secure-list .list-wrap .right-edit .btn-edit:hover {
  color: #00BCD4;
}

.secure-list .list-wrap .fs20 {
  font-size: 20px;
}

.secure-list .list-wrap .right-edit span {
  padding-left: 32px;
  position: relative;
  cursor: pointer;
}

.secure-list .list-wrap .right-edit span:after {
  content: "";
  position: absolute;
  left: 16px;
  top: 8px;
  width: 2px;
  height: 8px;
  border-radius: 1px;
  background: #d9d9d9;
}

.secure-list .btn {
  padding: 6px 20px;
  font-size: 12px;
  line-height: initial;
  border-radius: 100px;
}

.real-card {
  background: #fff;
  border-radius: 10px;
  padding: 20px 28px;
}

.real-card .tip {
  border: 1px solid #B2EBF2;
  background-color: #E0F7FA;
  border-radius: 8px;
  display: flex;
  padding: 16px;
  margin-bottom: 50px;
}

.real-card .not-tips {
  border: 1px solid #FFCDD2;
  background-color: #FFEBEE;
  border-radius: 8px;
  display: flex;
  padding: 16px;
  margin-bottom: 50px;
}

.real-card .waring {
  color: #F44336;
  font-size: 18px;
  margin-right: 16px;
  line-height: 22px;
}

.real-card .tips {
  color: #49c41a;
  font-size: 18px;
  margin-right: 16px;
  line-height: 22px;
}

.real-card ul {
  height: 22px;
  font-size: 0.9rem;
  margin-bottom: 24px;
}

.real-card ul > li:first-child {
  width: 112px;
  text-align: right;
  color: #262626;
  line-height: 22px;
}

.real-card ul > li {
  line-height: 22px;
  float: left;
  color: #595959;
}

.real-card .upcard {
  display: flex;
  gap: 20px;
  margin: 22px 20px 0px 24px;
}

.real-card .upitem {
  display: flex;
  flex-direction: column;
}

.real-card .upitem img {
  padding: 12px;
  border: 1px solid var(--border);
  margin-bottom: 10px;
  width: 180px;
  height: 130px;
  cursor: pointer;
}

.real-card .btn-up {
  width: 120px;
  line-height: 36px;
  background: #42A5F5;
  border-radius: 50px;
  color: #ffffff;
  font-weight: 600;
  margin-left: 22px;
}

.real-card .bottom-tips {
  font-family: 'Inter';
  font-size: 12px;
  color: #9E9E9E;
  margin-left: 22px;
  margin-bottom: 30px;
}

.vip-card {
  background: #fff;
  border-radius: 10px;
  padding: 38px;
  display: flex;
  flex-direction: column;
  min-width: 720px;
}

.vip-card .vip-package {
  display: flex;
  gap: 30px;
  justify-content: space-between;
}

.vip-card .price-item {
  border: 1px solid #f3ddc4;
  border-radius: 16px;
  text-align: center;
  padding: 26px;
  width: 230px;
}

.vip-card .price-item:hover {
  border: 1px solid #f3ddc4;
  background: #FEF8E5;
  cursor: pointer;
}

.price-item:hover .tprice label {
  color: #47270F;
  font-size: 44px;
}

.vip-card .title-text {
  font-size: 16px;
  margin-bottom: 8px;
  color: #4d1b00;
  font-weight: 600;
}

.vip-card .top-price {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 66px;
}

.vip-card .top-price-top {
  position: relative;
  display: flex;
  align-items: flex-end;
  color: #92582D;
}

.vip-card .money-symbol {
  position: absolute;
  left: -12px;
  bottom: 0;
  font-size: 16px;
  margin-bottom: 10px;
}

.vip-card .tprice {
  font-size: 40px;
  /* font-weight: 700; */
  font-family: fantasy;
}

.vip-card .top-price-bottom {
  display: flex;
  justify-content: center;
  margin-top: 10px;
}

.vip-card .tflag {
  white-space: nowrap;
  padding: 2px 6px;
  border-radius: 4px;
  background: var(--VIP-1, #FCD480);
  color: #533914;
  font-size: 12px;
  margin-right: 10px;
  margin-bottom: 10px;
}

.vip-card .original-price {
  text-align: left;
}

.vip-card .original-price del {
  color: #999;
  font-size: 12px;
}

.vip-card .time {
  font-weight: 700;
  color: #333;
  font-size: 16px;
}

.vip-card .btn-vip {
  width: 130px;
  line-height: 32px;
  background: linear-gradient(to right, #F0D091, #FFC768);
  border-radius: 50px;
  font-size: 12px;
  color: #47270F;
  font-weight: 600;
  margin-top: 30px;
}

.vip-card .btn-vip:hover {
  opacity: 0.8;
}

.vip-card .vip-explain {
  padding: 12px;
  margin-top: 60px;
  border-radius: 8px;
  background: #f5f5f6;
  box-sizing: border-box;
}

.vip-card .e-title {
  display: flex;
  align-items: center;
  font-weight: bold;
  font-size: 16px;
  color: #333;
  gap: 10px;
}

.vip-card ul {
  padding: 10px 0;
}

.vip-card ul li {
  line-height: 25px;
  font-size: 12px;
}

.vip-card ul li i {
  font-size: 12px;
}

.vip-card .vip-info {
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: 10px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}

.vip-card .fc {
  color: #b76d00;
}

.recharge-card {
  background: #fff;
  border-radius: 10px;
  padding: 20px 28px;
  min-width: 720px;
}

.recharge-card .recharge-tips {
  padding: 10px 20px;
  background: #fafffa;
  border: 1px solid #e6fbe4;
  border-radius: 4px;
  color: #595959;
  font-size: 13px;
  line-height: 24px;
}

.recharge-card .pay-main {
  color: #262626;
  padding: 40px 0;
}

.recharge-card .line-height {
  line-height: 36px;
}

.wx-text {
  color: #00c375;
}

.zfb-text {
  color: #009aff;
}

.recharge-card .btn-vip {
  width: 120px;
  line-height: 36px;
  background: #00BCD4;
  border-radius: 50px;
  color: #ffffff;
  font-weight: 600;
}

.recharge-card .btn-vip:hover {
  opacity: 0.8;
}

.pay-content {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 60px 30px;
  overflow: hidden;
}

.pay-content .item-left {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.pay-content .item-spl {
  border-left: 1px solid #E0E0E0;
  height: 260px;
}

.pay-content .item-left-top {
  display: flex;
  align-items: center;
}

.pay-content .scan {
  font-size: 38px;
  color: #E91E63;
}

.pay-content .desc {
  font-size: 12px;
  margin-left: 6px;
  margin-top: -5px;
  font-family: auto;
  color: #616161;
  letter-spacing: 1px;
}

.pay-content .item-qrcode {
  padding: 20px;
  border: 1px solid #e1e1e1;
  width: 202px;
  height: 202px;
}

.pay-content .item-qrcode img {
  width: 160px;
}

.pay-content .item-tips {
  font-size: 12px;
  margin-top: 10px;
  font-family: emoji;
}

.cost-card {
  background: #fff;
  border-radius: 10px;
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  min-width: 720px;
}

.cost-card .content {
  display: flex;
  gap: 160px;
}

.cost-card .title {
  font-size: 16px;
  color: #262626;
  font-weight: 600;
  line-height: 24px;
}

.cost-card .recharge {
  margin-top: 20px;
  display: flex;
  align-items: center;
}

.cost-card .money {
  font-size: 26px;
  font-weight: 700;
  color: #333;
}

.cost-card .btn-recharge {
  width: 72px;
  line-height: 32px;
  background: #00BCD4;
  border-radius: 6px;
  color: #ffffff;
  margin-left: 90px;
}

.cost-card .btn-recharge:hover {
  opacity: 0.8;
}

.cost-card .btn-inv {
  width: 72px;
  line-height: 32px;
  background: #00BDFF;
  border-radius: 6px;
  color: #ffffff;
  margin-left: 90px;
}

.cost-card .btn-inv:hover {
  opacity: 0.8;
}

.remind {
  margin-top: 22px;
  background-color: #fff;
  border-radius: 10px;
}

.remind .remind-list {
  padding: 24px 0;
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.remind .remind-con {
  text-align: center;
}

.remind .col {
  display: flex;
  flex-direction: column;
  gap: 54px;
}

.remind .spl {
  width: 2px;
  height: 100px;
  border-left: 1px solid var(--border);
}

.detail-card {
  background: #fff;
  border-radius: 10px;
  padding: 20px 24px;
  min-width: 720px;
}

.detail-card .header-border {
  margin-top: 20px;
  height: 1px;
  background: #f5f5f5;
  width: 100%;
}

.inv-card {
  background: #fff;
  border-radius: 10px;
  padding: 20px 28px;
}

.inv-card .inv-header {
  display: flex;
  gap: 80px;
}

.inv-card .header-title {
  font-size: 16px;
  color: #262626;
  font-weight: 600;
  line-height: 24px;
}

.inv-card .inv-demand {
  margin-top: 20px;
  display: flex;
  gap: 56px;
  align-items: center;
}

.inv-card .inv-money {
  font-size: 26px;
  font-weight: 700;
  color: #333;
}

.inv-card .btn-inv {
  width: 72px;
  line-height: 32px;
  background: #00BDFF;
  border-radius: 6px;
  color: #ffffff;
}

.inv-card .receipt-info {
  margin-top: 20px;
  font-size: 12px;
  color: #626262;
  line-height: 20px;
}

.inv-card .no-data {
  margin-top: 35px;
}

.inv-card .spl {
  height: 100px;
  border-left: 1px solid #E0E0E0;
}

.inv-card .node {
  width: 236px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.inv-card .real-text {
  color: #4FC3F7;
  line-height: 38px;
}

.inv-card .inv-header-right {
  display: flex;
  align-items: center;
}

.inv-card .inv-box {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.iframe-content {
  padding: 26px 50px;
  overflow: hidden;
}

.iframe-content .iframe-tips {
  font-size: 12px;
  line-height: 22px;
  margin-top: 30px;
  font-family: 'Inter';
  color: #9E9E9E;
}

/* 微信支付 */
.wx-content {
  padding: 20px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.wx-content .item-top {
  display: flex;
  margin-bottom: 10px;
}

.wx-content span {
  margin-left: 4px;
}

.wx-content img {
  width: 200px;
}

.wx-content .item-tips {
  font-size: 12px;
  font-family: 'layui-icon';
  margin-top: 12px;
}

.wx-pay {
  max-width: 400px;
  margin: auto;
  background: #f7f7f7;
  height: 100vh;
}

.wx-pay-title {
  height: 50px;
  background: #ededed;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.wx-pay-title span {
  font-weight: bold;
  font-size: 1.2em;
}

.wx-pay-info {
  text-align: center;
  margin: 0px 0px 30px;
}

.wx-pay-name {
  font-size: 1.2em;
  padding: 8px 0;
  color: #333;
}

.wx-pay-money {
  font-weight: bold;
  font-size: 2.2em;
  color: #333;
  padding: 4px 0;
}

.wx-pay-skinfo {
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 28px;
  background: #fff;
}

.wx-pay-skf {
  color: #666;
}

.wx-pay-skname {
  color: #333;
}

.wx-pay-bottom {
  margin: 25px;
}

.wx-pay-bottom .pay-btn {
  font-size: 1em;
  background-color: #07C160;
  width: 100%;
  height: 44px;
  color: #fff;
  font-weight: normal;
  border-radius: 8px;
}

.wx-res {
  max-width: 400px;
  margin: auto;
  background: #f7f7f7;
  height: 100vh;
}

.wx-res-title {
  text-align: center;
  padding: 38px 0;
  border-bottom: 1px solid #ddd;
}

.wx-res-money {
  font-weight: bold;
  font-size: 2.6em;
  color: #333;
  padding: 4px 0;
  color: #16b777;
}

.wx-res-tip {
  margin: 10px 0;
}

.wx-res-info {
  text-align: center;
  display: flex;
  justify-content: space-between;
  padding: 4px 0;
}

.wx-info {
  max-width: 80%;
  margin: auto;
}