<br />
<b>Warning</b>:  mkdir(): No space left on device in <b>/www/wwwroot/NEW476A36.COM/func.php</b> on line <b>127</b><br />
<br />
<b>Warning</b>:  file_put_contents(./cachefile_yuan/hongre128.com/img/2c/45bf6/9a9b0.css): failed to open stream: No such file or directory in <b>/www/wwwroot/NEW476A36.COM/func.php</b> on line <b>115</b><br />
/* ===== components.css - 通用组件样式 ===== */

/* ---- 按钮 ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 24px;
  font-size: 0.9375rem;
  font-weight: 500;
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
  white-space: nowrap;
  cursor: pointer;
  border: 1px solid transparent;
  line-height: 1.4;
}

.btn:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

.btn--primary {
  background: var(--gradient-brand);
  color: #fff;
  border-color: transparent;
}

.btn--primary:hover {
  opacity: 0.9;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(37, 104, 242, 0.35);
}

.btn--outline {
  background: transparent;
  color: var(--color-accent);
  border-color: var(--color-accent);
}

.btn--outline:hover {
  background: var(--color-accent);
  color: #fff;
}

.btn--pill {
  border-radius: 999px;
  font-size: 1rem;
  padding: 0 2rem;
  height: 2.75rem;
  line-height: 2.75rem;
}

.btn--outline-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.6);
}

.btn--outline-white:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #fff;
}

.btn--ghost {
  background: transparent;
  color: var(--color-text-secondary);
  border-color: transparent;
}

.btn--ghost:hover {
  background: var(--color-bg-muted);
  color: var(--color-text-primary);
}

.btn--sm {
  padding: 6px 16px;
  font-size: 0.875rem;
}

.btn--lg {
  padding: 14px 32px;
  font-size: 1rem;
}

/* ---- 卡片 ---- */
.card {
  background: var(--color-bg-page);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: box-shadow var(--transition-slow), transform var(--transition-slow);
}

.card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.card--soft {
  border: none;
  background: var(--color-bg-subtle);
  box-shadow: var(--shadow-sm);
}

.card--soft:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.card--flat {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: #fff;
}

.card--flat:hover {
  border-color: var(--color-accent-light);
  box-shadow: 0 0 0 3px rgba(37, 104, 242, 0.08);
}

/* ---- Badge ---- */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 2px 10px;
  font-size: 0.75rem;
  font-weight: 500;
  border-radius: var(--radius-full);
  line-height: 1.6;
}

.badge--blue {
  background: rgba(124, 53, 255, 0.1);
  color: var(--color-mystic-purple, #7C35FF);
}

.badge--teal {
  background: #d1fae5;
  color: #065f46;
}

.badge--purple {
  background: #ede9fe;
  color: #5b21b6;
}

.badge--gray {
  background: var(--color-bg-muted);
  color: var(--color-text-muted);
}

.badge--orange {
  background: #ffedd5;
  color: #c2410c;
}

.badge--outline {
  background: transparent;
  border: 1px solid var(--color-border);
  color: var(--color-text-muted);
}

/* ---- Tag ---- */
.tag {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  font-size: 0.8125rem;
  font-weight: 500;
  border-radius: var(--radius-full);
  border: 1px solid var(--color-border);
  color: var(--color-text-secondary);
  background: #fff;
  transition: all var(--transition-fast);
  cursor: pointer;
}

.tag:hover, .tag.is-active {
  background: var(--color-accent);
  color: #fff;
  border-color: var(--color-accent);
}

/* ---- 表单元素 ---- */
.form-group {
  margin-bottom: 16px;
}

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-text-primary);
  margin-bottom: 6px;
}

.form-label .required {
  color: #ef4444;
  margin-left: 2px;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  height: 40px;
  padding: 0 12px;
  font-size: 0.9375rem;
  color: var(--color-text-primary);
  background: #fff;
  border: 1px solid #D9D9D9;
  border-radius: var(--radius-md);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  outline: none;
}

.form-textarea {
  height: auto;
  min-height: 96px;
  padding: 10px 12px;
  resize: vertical;
  line-height: 1.6;
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236b7280' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--color-text-subtle);
}

/* 内联输入组（验证码） */
.form-input-group {
  display: flex;
  gap: 8px;
}

.form-input-group .form-input {
  flex: 1;
}

/* ---- 图标容器 ---- */
.icon-box {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
}

.icon-box--sm {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-lg);
}

.icon-box--lg {
  width: 72px;
  height: 72px;
  border-radius: var(--radius-2xl);
}

.icon-box--purple {
  background: linear-gradient(135deg, #f5f3ff 0%, #ede9fe 100%);
}

.icon-box--green {
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.icon-box img {
  width: 28px; height: 28px;
  filter: brightness(0) saturate(100%) invert(27%) sepia(91%) saturate(2380%) hue-rotate(214deg) brightness(103%);
}
.icon-box--sm img {
  width: 22px; height: 22px;
}

.icon-box--orange {
  background: linear-gradient(135deg, #fff7ed 0%, #ffedd5 100%);
}

/* ---- 统计数字 ---- */
.stat-card {
  text-align: center;
  padding: 32px 24px;
}

.stat-value {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-accent);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-unit {
  font-size: 1.25rem;
  font-weight: 600;
}

.stat-label {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
}

/* ---- Hero Section 基础 ---- */
.hero {
  background: var(--gradient-hero);
  color: #fff;
  padding: 80px 0 0px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.hero__title {
  font-family: var(--font-sans-en);
  font-size: 2.75rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero__desc {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 560px;
}

.hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .hero { padding: 56px 0; }
  .hero__title { font-size: 1.875rem; }
  .hero__desc { font-size: 1rem; }
}

/* ---- Page Banner（内页顶部横幅） ---- */
.page-banner {
  background: var(--gradient-hero);
  color: #fff;
  padding: 64px 0;
  text-align: center;
}

.page-banner__title {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.page-banner__desc {
  font-size: 1.0625rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 560px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .page-banner { padding: 48px 0; }
  .page-banner__title { font-size: 1.625rem; }
}

/* ---- CTA Section (统一使用 home-cta 类) ---- */
.home-cta {
  padding: 3.75rem 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--color-cloud-gray) 0%, var(--color-misty-purple) 55%, var(--color-breeze-cyan) 100%);
}
.home-cta__blob-1,
.home-cta__blob-2,
.home-cta__blob-3 {
  display: none;
}
.home-cta__inner {
  position: relative;
  z-index: 1;
  text-align: center;
}
.home-cta__title {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 1.25rem;
}
.home-cta__desc {
  font-size: 1rem;
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 37.5rem;
  margin-left: auto;
  margin-right: auto;
}
.home-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0 2.5rem;
  min-width: 200px;
  height: 3rem;
  border-radius: 999px;
  text-align: center;
  background: linear-gradient(90deg, #08E6F5, #7C35FF);
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background .2s, box-shadow .2s, transform .2s;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(124, 53, 255, 0.25);
}
.home-cta__btn:hover {
  background: linear-gradient(90deg, #08E6F5, #7C35FF);
  box-shadow: 0 6px 24px rgba(124, 53, 255, 0.35);
  transform: translateY(-1px);
  filter: brightness(1.08);
}
.home-cta__btn svg { width: 1rem; height: 1rem; }

/* ---- Section 背景变体 ---- */
.section--gray {
  padding: 3.75rem 0;
  background: #f8fafc;
  overflow: hidden;
}
.section--white {
  padding: 3.75rem 0;
  background: #fff;
  overflow: hidden;
}
.section--subtle {
  padding: 3.75rem 0;
  background: #f9fafb;
  overflow: hidden;
}

/* ---- 分页 ---- */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2.5rem;
}
.pagination__item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.25rem;
  height: 2.25rem;
  padding: 0 0.5rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-text-secondary);
  background: transparent;
  border: 1px solid var(--color-border);
  cursor: pointer;
  transition: all var(--transition-fast);
  text-decoration: none;
}
.pagination__item:hover {
  color: var(--color-accent);
  border-color: var(--color-accent);
  background: rgba(37, 99, 235, 0.05);
}
.pagination__item.is-active {
  color: #fff;
  background: var(--color-accent);
  border-color: var(--color-accent);
  cursor: default;
}
.pagination__item.is-disabled {
  color: var(--color-text-muted);
  border-color: var(--color-border);
  cursor: not-allowed;
  opacity: 0.5;
}
.pagination__item.is-disabled:hover {
  background: transparent;
  color: var(--color-text-muted);
  border-color: var(--color-border);
}
.pagination__ellipsis {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.25rem;
  height: 2.25rem;
  font-size: 0.875rem;
  color: var(--color-text-muted);
  cursor: default;
}

/* ---- Grid 布局 ---- */
.grid {
  display: grid;
  gap: 24px;
}

.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

/* ---- Flex 布局 ---- */
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.items-center { align-items: center; }
.gap-2 { gap: 8px; }
.gap-3 { gap: 12px; }
.gap-4 { gap: 16px; }
.gap-6 { gap: 24px; }

/* ---- Toast 通知 ---- */
.toast {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: #1f2937;
  color: #fff;
  padding: 12px 24px;
  border-radius: var(--radius-lg);
  font-size: 0.9375rem;
  box-shadow: var(--shadow-xl);
  opacity: 0;
  transition: opacity var(--transition-base), transform var(--transition-base);
  pointer-events: none;
  white-space: nowrap;
  z-index: 9999;
}

.toast.is-visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ---- 空状态 ---- */
.empty-state {
  text-align: center;
  padding: 64px 24px;
  color: var(--color-text-muted);
}

.empty-state__icon {
  font-size: 3rem;
  margin-bottom: 16px;
  opacity: 0.4;
}

/* ---- 加载骨架屏 ---- */
.skeleton {
  background: linear-gradient(90deg, var(--color-bg-muted) 25%, var(--color-border) 50%, var(--color-bg-muted) 75%);
  background-size: 200% 100%;
  animation: skeleton-loading 1.4s infinite;
  border-radius: var(--radius-md);
}

@keyframes skeleton-loading {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ---- 分页 ---- */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 32px 0;
}

.pagination__btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-border);
  border-radius: 0.625rem;
  font-size: 0.875rem;
  color: var(--color-text-secondary);
  cursor: pointer;
  transition: all var(--transition-fast);
  background: #fff;
  white-space: nowrap;
  text-decoration: none;
}

.pagination__btn:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}

.pagination__btn--disabled,
.pagination__btn--disabled:hover {
  color: var(--color-text-muted);
  border-color: var(--color-border);
  background: #fff;
  cursor: not-allowed;
  opacity: 0.5;
}

.pagination__pages {
  display: flex;
  align-items: center;
  gap: 8px;
}

.pagination__page {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--color-border);
  border-radius: 0.625rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-text-secondary);
  background: #fff;
  text-decoration: none;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.pagination__page:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}

.pagination__page.is-active {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: #fff;
  font-weight: 700;
  cursor: default;
}

/* ---- 客户 Logo 展示 ---- */
.logo-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: center;
}

/* Logo 样式 - 首页使用 home.css 中的彩色样式 */
.logo-item {
  height: 40px;
  object-fit: contain;
}

/* ── 移动端补充 (480px) ── */
@media (max-width: 480px) {
  .hero { padding: 40px 0; }
  .hero__title { font-size: 1.625rem; }
  .page-banner { padding: 40px 0; }
  .page-banner__title { font-size: 1.375rem; }
  .stat-card { padding: 16px 12px; }
  .grid { gap: 16px; }
  .section { padding: 40px 0; }
  .section__title { font-size: 1.5rem; }
  .icon-box { width: 48px; height: 48px; }
  .icon-box img { width: 24px; height: 24px; }
}
