/* ========================================
   安则行信息服务 - 专业贷款咨询服务
   ======================================== */

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Noto Sans SC', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background: #ffffff;
    overflow-x: hidden;
    padding-top: 88px;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
}

p {
    line-height: 1.8;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255);
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.3s ease;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05);
}

.header.scrolled {
    padding: 16px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.logo-group {
    flex-shrink: 0;
}

.logo {
    font-size: 28px;
    font-weight: 700;
    color: #0a1628;
    letter-spacing: 2px;
    margin-bottom: 2px;
}

.logo-subtitle {
    font-size: 12px;
    color: #64748b;
    font-weight: 500;
    letter-spacing: 1px;
}

.nav {
    display: flex;
    gap: 36px;
    flex: 1;
    justify-content: flex-end;
}

.nav-link {
    font-size: 14px;
    font-weight: 500;
    color: #475569;
    position: relative;
    padding: 6px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #c9a227, #8b6914);
    transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #0a1628;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-shrink: 0;
}

.header-contact {
    text-align: right;
}

.contact-label {
    display: block;
    font-size: 11px;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2px;
}

.contact-phone {
    font-size: 16px;
    font-weight: 600;
    color: #0a1628;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(135deg, #c9a227, #8b6914);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(201, 162, 39, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(201, 162, 39, 0.4);
}

.btn-outline {
    background: transparent;
    color: #0a1628;
    border: 2px solid #0a1628;
}

.btn-outline:hover {
    background: #0a1628;
    color: #ffffff;
}

.btn-large {
    padding: 16px 36px;
    font-size: 15px;
}

.btn-full {
    width: 100%;
}

.btn-arrow {
    transition: transform 0.3s ease;
}

.btn:hover .btn-arrow {
    transform: translateX(4px);
}

.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    pointer-events: none;
}

/* 咨询类型快捷按钮 */
.consultation-buttons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 10px;
}

.consultation-btn {
    padding: 14px 20px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    background: #fff;
    color: #374151;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.consultation-btn:hover {
    border-color: #c9a227;
    background: rgba(201, 162, 39, 0.05);
    color: #c9a227;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(201, 162, 39, 0.15);
}

.consultation-btn.active {
    border-color: #c9a227;
    background: linear-gradient(135deg, #c9a227, #8b6914);
    color: #fff;
    box-shadow: 0 4px 12px rgba(201, 162, 39, 0.25);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #0a1628 0%, #1a365d 100%);
    color: #fff;
    padding: 80px 0 70px;
    overflow: hidden;
}

.hero-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
    align-items: center;
}

.hero-badge {
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
    color: #c9a227;
    margin-bottom: 24px;
    letter-spacing: 0.5px;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 18px;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.hero-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 36px;
    font-weight: 500;
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
}

.hero-actions .btn-outline {
    border-color: rgba(255, 255, 255, 0.3);
    color: #ffffff;
}

.hero-actions .btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
}

.hero-stats {
    display: flex;
    gap: 48px;
}

.stat-item {
    text-align: left;
}

.stat-number {
    font-size: 32px;
    font-weight: 700;
    color: #c9a227;
    margin-bottom: 4px;
    line-height: 1;
}

.stat-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

/* Hero Right - Features */
.hero-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.feature-box {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 18px;
    transition: all 0.3s ease;
}

.feature-box:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(201, 162, 39, 0.2);
    transform: translateX(4px);
}

.feature-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.15), rgba(201, 162, 39, 0.05));
    border: 1px solid rgba(201, 162, 39, 0.25);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c9a227;
    flex-shrink: 0;
}

.feature-icon svg {
    width: 24px;
    height: 24px;
}

.feature-content h3 {
    font-size: 17px;
    font-weight: 600;
    margin: 0 0 4px 0;
    color: rgba(255, 255, 255, 0.95);
}

.feature-content p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

/* Trust Bar */
.trust-bar {
  background: #ffffff;
  padding: 30px 0;
  border-bottom: 1px solid #e2e8f0;
}

.trust-bar-content {
    display: flex;
    justify-content: center;
    gap: 80px;
}

.trust-stat {
    display: flex;
    align-items: center;
    gap: 16px;
}

.stat-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c9a227;
}

.stat-icon svg {
    width: 24px;
    height: 24px;
}

.stat-text {
    flex: 1;
}

.stat-title {
    font-size: 15px;
    font-weight: 600;
    color: #0a1628;
    margin-bottom: 2px;
}

.stat-desc {
    font-size: 13px;
    color: #64748b;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-subtitle {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    color: #c9a227;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: #0a1628;
    margin-bottom: 12px;
}

.section-description {
    font-size: 15px;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

/* Services Section */
.services {
    padding: 50px 0;
    background: #ffffff;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  align-items: stretch;
}

/* 合规提示 */
.compliance-notice {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #fff9e6;
  border: 1px solid #c9a227;
  border-radius: 12px;
  padding: 16px 20px;
  margin-bottom: 40px;
}

.compliance-notice-icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  background: rgba(201, 162, 39, 0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c9a227;
  flex-shrink: 0;
}

.compliance-notice-icon svg {
  width: 20px;
  height: 20px;
}

.compliance-notice-text {
  font-size: 13px;
  line-height: 1.5;
  color: #64748b;
}

.compliance-notice-text strong {
  color: #c9a227;
  font-weight: 600;
}

.service-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 28px 24px;
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.service-icon {
  width: 52px;
  height: 52px;
  background: rgba(201, 162, 39, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c9a227;
  flex-shrink: 0;
}

.service-icon svg {
  width: 26px;
  height: 26px;
}

.service-number {
  font-size: 32px;
  font-weight: 700;
  color: rgba(201, 162, 39, 0.15);
  line-height: 1;
}

.service-card h3 {
  font-size: 20px;
  font-weight: 600;
  color: #0a1628;
  margin-bottom: 12px;
}

.service-desc {
  font-size: 14px;
  color: #64748b;
  margin-bottom: 24px;
  line-height: 1.8;
}

.service-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
  flex: 1;
}

.service-feature {
  display: flex;
  align-items: center;
  gap: 10px;
}

.service-feature svg {
  width: 18px;
  height: 18px;
  color: #c9a227;
  flex-shrink: 0;
}

.service-feature span {
  font-size: 14px;
  color: #475569;
}

.service-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 14px 20px;
  background: linear-gradient(135deg, #c9a227, #8b6914);
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
  transition: all 0.3s ease;
  text-decoration: none;
  margin-top: auto;
  box-sizing: border-box;
}

.service-btn:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(201, 162, 39, 0.3);
}

.service-btn svg {
  width: 18px;
  height: 18px;
}

/* Strength Section */
.strength {
    padding: 50px 0;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.strength-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.strength-item {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 24px 20px;
    position: relative;
    transition: all 0.3s ease;
    overflow: hidden;
}

.strength-item:hover {
    border-color: #c9a227;
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(201, 162, 39, 0.1);
}

.strength-item-number {
    position: absolute;
    top: 8px;
    right: 12px;
    font-size: 36px;
    font-weight: 700;
    color: rgba(201, 162, 39, 0.12);
    line-height: 1;
}

.strength-header-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.strength-icon-box {
    width: 42px;
    height: 42px;
    background: rgba(201, 162, 39, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c9a227;
    flex-shrink: 0;
}

.strength-icon-box svg {
    width: 22px;
    height: 22px;
}

.strength-item h3 {
    font-size: 18px;
    font-weight: 600;
    color: #0a1628;
    margin: 0;
    padding-right: 40px;
}

.strength-item p {
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
}

/* News Section */
.news {
    padding: 50px 0;
    background: #f8fafc;
}

.news-section-header {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.section-header-left {
    grid-column: 2;
    text-align: center;
    min-width: 0;
}

.news-section-right {
    grid-column: 3;
    display: flex;
    gap: 16px;
    align-items: center;
    justify-self: end;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.news-card {
    display: flex;
    gap: 20px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.news-card:hover {
    border-color: #c9a227;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(201, 162, 39, 0.1);
}

.news-card-left {
    flex-shrink: 0;
}

.news-date-badge {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #c9a227, #8b6914);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.news-date-badge .news-day {
    font-size: 28px;
    font-weight: 700;
    line-height: 1;
}

.news-date-badge .news-month {
    font-size: 13px;
    margin-top: 4px;
    opacity: 0.9;
}

.news-card-right {
    flex: 1;
    min-width: 0;
}

.news-card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.news-card-right .news-tag {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(201, 162, 39, 0.1);
    color: #c9a227;
    font-size: 12px;
    font-weight: 600;
    border-radius: 20px;
    margin: 0;
    flex-shrink: 0;
}

.news-meta {
    display: flex;
    gap: 12px;
    font-size: 11px;
    color: #999;
}

.news-card-right h3 {
    font-size: 17px;
    font-weight: 600;
    color: #0a1628;
    margin-bottom: 8px;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.news-card:hover h3 {
    color: #c9a227;
}

.news-card-right p {
    font-size: 13px;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 0;
}

.news-action-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
    gap: 20px;
}



.btn-small {
    padding: 8px 20px;
    font-size: 13px;
    border-radius: 6px;
}

.btn-small.btn-primary {
    background: linear-gradient(135deg, #c9a227, #8b6914);
    border: none;
    color: #fff;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-small.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(201, 162, 39, 0.4);
}

.btn-small.btn-outline {
    border: 1px solid #c9a227;
    color: #c9a227;
    background: transparent;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-small.btn-outline:hover {
    background: rgba(201, 162, 39, 0.08);
    transform: translateY(-1px);
}

.btn-small.btn-primary {
    background: linear-gradient(135deg, #c9a227, #8b6914);
    border: none;
    color: #fff;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-small.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(201, 162, 39, 0.4);
}

/* News List Page */
.news-list-page,
.news-detail-page {
    padding: 40px 0 80px;
    background: #f8fafc;
    min-height: calc(100vh - 300px);
}

.page-header {
    text-align: center;
    margin-bottom: 40px;
}

.page-header .section-title {
    font-size: 36px;
}

.news-filter-bar {
    background: #fff;
    padding: 24px;
    border-radius: 12px;
    margin-bottom: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.news-filter-bar .news-search-bar {
    display: flex;
    gap: 10px;
    flex: 1;
    max-width: 360px;
}

.news-filter-bar .news-search-bar input {
    flex: 1;
    padding: 10px 16px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 14px;
    background: #f8fafc;
    transition: all 0.3s ease;
}

.news-filter-bar .news-search-bar input:focus {
    outline: none;
    border-color: #c9a227;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.1);
}

.news-filter-bar .news-search-bar input::placeholder {
    color: #94a3b8;
}

.news-filter-bar .btn-small {
    padding: 10px 24px;
    font-size: 14px;
    border-radius: 8px;
}

.news-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.tag-item {
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    color: #64748b;
    background: #f1f5f9;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.tag-item:hover,
.tag-item.active {
    background: linear-gradient(135deg, #c9a227, #8b6914);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(201, 162, 39, 0.25);
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 40px;
    align-items: center;
}

.page-btn {
    min-width: 40px;
    height: 40px;
    padding: 0 16px;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    background: #fff;
    color: #0a1628;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-btn:hover:not(.page-btn:disabled) {
    background: #c9a227;
    color: #fff;
    border-color: #c9a227;
    transform: translateY(-1px);
}

.page-btn.active {
    background: linear-gradient(135deg, #c9a227, #8b6914);
    color: #fff;
    border-color: #c9a227;
    box-shadow: 0 4px 12px rgba(201, 162, 39, 0.3);
}

.page-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.news-list-contact {
    margin-top: 40px;
    text-align: center;
}

.news-list-contact .news-contact-btn {
    display: inline-flex;
}

/* News Detail Page */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #999;
    margin-bottom: 30px;
}

.breadcrumb a {
    color: #64748b;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #c9a227;
}

.breadcrumb-separator {
    color: #cbd5e1;
}

.breadcrumb-current {
    color: #0a1628;
}

.news-article {
    background: #fff;
    padding: 50px;
    border-radius: 16px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
}

.article-header {
    border-bottom: 1px solid #e2e8f0;
    padding-bottom: 24px;
    margin-bottom: 30px;
}

.article-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.article-title {
    font-size: 28px;
    color: #0a1628;
    margin-bottom: 0;
    line-height: 1.4;
    flex: 1;
    min-width: 0;
}

.article-right {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}

.article-row .news-tag {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(201, 162, 39, 0.1);
    color: #c9a227;
    font-size: 12px;
    font-weight: 600;
    border-radius: 20px;
    margin: 0;
}

.article-meta {
    display: flex;
    gap: 16px;
    font-size: 13px;
    color: #999;
}

.article-content {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
}

.article-content h3 {
    font-size: 20px;
    color: #0a1628;
    margin: 30px 0 16px;
    font-weight: 600;
}

.article-content p {
    margin-bottom: 16px;
}

.article-content ul {
    margin-bottom: 16px;
    padding-left: 24px;
}

.article-content li {
    margin-bottom: 8px;
}

.news-share-contact {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #e2e8f0;
}

.news-share {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 0;
    padding: 0;
    border: none;
}

.share-label {
    font-size: 14px;
    color: #64748b;
}

.share-buttons {
    display: flex;
    gap: 10px;
}

.share-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    background: #fff;
    font-size: 13px;
    color: #0a1628;
    cursor: pointer;
    transition: all 0.3s ease;
}

.share-btn svg {
    width: 16px;
    height: 16px;
}

.share-btn:hover {
    border-color: #c9a227;
    color: #c9a227;
}

.share-btn.wechat:hover {
    background: #07c160;
    border-color: #07c160;
    color: #fff;
}

.share-btn.weibo:hover {
    background: #e6162d;
    border-color: #e6162d;
    color: #fff;
}

.share-btn.copy:hover {
    background: #c9a227;
    border-color: #c9a227;
    color: #fff;
}

.news-contact-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    border-radius: 8px;
    background: linear-gradient(135deg, #c9a227, #8b6914);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.news-contact-btn svg {
    width: 18px;
    height: 18px;
}

.news-contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(201, 162, 39, 0.4);
}

.related-news {
    margin-top: 50px;
}

.related-title {
    font-size: 20px;
    color: #0a1628;
    font-weight: 600;
    margin-bottom: 24px;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.related-card {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    text-decoration: none;
    transition: all 0.3s ease;
}

.related-card:hover {
    border-color: #c9a227;
    transform: translateY(-2px);
}

.related-card h4 {
    font-size: 15px;
    color: #0a1628;
    margin-bottom: 8px;
    line-height: 1.4;
    font-weight: 500;
}

.related-card:hover h4 {
    color: #c9a227;
}

.related-date {
    font-size: 13px;
    color: #999;
}
}

.news-modal-content h2 {
    font-size: 24px;
    color: #0a1628;
    margin-bottom: 12px;
    line-height: 1.4;
}

.news-modal-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    font-size: 13px;
    color: #999;
}

.news-modal-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 24px;
}

.news-modal-content .btn {
    width: 100%;
}



/* Process Section */
.process {
    padding: 50px 0;
    background: linear-gradient(135deg, #0a1628, #1e3a5f);
    color: #ffffff;
}

.process .section-subtitle {
    color: #c9a227;
}

.process .section-title {
    color: #ffffff;
}

.process .section-description {
    color: rgba(255, 255, 255, 0.9);
}

.process-timeline {
    display: flex;
    justify-content: space-between;
    gap: 32px;
    position: relative;
}

.process-step {
    flex: 1;
    text-align: center;
    position: relative;
}

.step-number {
    width: 64px;
    height: 64px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(201, 162, 39, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    color: #c9a227;
    margin: 0 auto 20px;
    position: relative;
    z-index: 1;
}

.process-step:first-child .step-number::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 100%;
    width: calc(100% + 16px);
    height: 2px;
    background: linear-gradient(90deg, rgba(201, 162, 39, 0.3), rgba(201, 162, 39, 0.1));
}

.process-step:last-child .step-number::after {
    display: none;
}

.step-content h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
}

.step-content p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.9);
}

/* About Section */
.about {
    padding: 50px 0;
    background: #ffffff;
}

.about-layout {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 80px;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
}

.about-image-placeholder {
    background: linear-gradient(135deg, #0a1628, #1e3a5f);
    border-radius: 24px;
    padding: 90px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 20px 60px rgba(10, 22, 40, 0.15);
}

.image-icon {
    width: 88px;
    height: 88px;
    color: #c9a227;
    margin-bottom: 24px;
}

.image-text {
    font-size: 19px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.5px;
}

.about-card-info {
    position: absolute;
    bottom: -24px;
    right: -24px;
    background: linear-gradient(135deg, #ffffff, #fffbeb);
    border-radius: 16px;
    padding: 24px 32px;
    box-shadow: 0 12px 40px rgba(201, 162, 39, 0.15);
    display: flex;
    gap: 32px;
    border: 1px solid rgba(201, 162, 39, 0.1);
}

.info-item {
    text-align: center;
}

.info-value {
    font-size: 36px;
    font-weight: 800;
    background: linear-gradient(135deg, #c9a227, #8b6914);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 6px;
    line-height: 1;
}

.info-label {
    font-size: 13px;
    color: #64748b;
    font-weight: 500;
}

.about-right .section-header {
    text-align: left;
    margin-bottom: 32px;
}

.about-right .section-subtitle {
    margin-bottom: 12px;
}

.about-right .section-title {
    margin-bottom: 28px;
}

.about-text {
    margin-bottom: 36px;
}

.about-text p {
    font-size: 15px;
    color: #64748b;
    margin-bottom: 18px;
    line-height: 1.8;
}

.company-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 32px;
}

.company-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 20px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    transition: all 0.3s ease;
}

.company-item:hover {
    box-shadow: 0 8px 24px rgba(201, 162, 39, 0.12);
    transform: translateY(-2px);
}

.company-icon {
    width: 46px;
    height: 46px;
    background: linear-gradient(135deg, #c9a227, #8b6914);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(201, 162, 39, 0.25);
}

.company-icon svg {
    width: 24px;
    height: 24px;
}

.company-label {
    font-size: 11px;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 5px;
    font-weight: 600;
}

.company-name {
    font-size: 15px;
    font-weight: 800;
    color: #000000 !important;
    line-height: 1.5;
}

/* Disclaimer Section */
.disclaimer-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8fafc, #ffffff);
}

.disclaimer-card {
    background: #ffffff;
    border: 2px solid #c9a227;
    border-radius: 16px;
    padding: 40px;
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.disclaimer-icon {
    width: 56px;
    height: 56px;
    background: rgba(201, 162, 39, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c9a227;
    flex-shrink: 0;
}

.disclaimer-icon svg {
    width: 28px;
    height: 28px;
}

.disclaimer-content h3 {
    font-size: 18px;
    font-weight: 600;
    color: #0a1628;
    margin-bottom: 16px;
}

.disclaimer-list p {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.disclaimer-list p::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    background: #c9a227;
    border-radius: 50%;
}

/* Contact Section */
.contact {
    padding: 50px 0;
    background: #ffffff;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: stretch;
}

.contact-left .section-header {
    text-align: left;
    margin-bottom: 24px;
}

.contact-intro {
    font-size: 15px;
    color: #64748b;
    margin-bottom: 24px;
    line-height: 1.7;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px;
    background: #f8fafc;
    border-radius: 10px;
}

.contact-icon {
    width: 44px;
    height: 44px;
    background: rgba(201, 162, 39, 0.1);
    border: 1px solid rgba(201, 162, 39, 0.3);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c9a227;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 22px;
    height: 22px;
}

.info-label {
    font-size: 12px;
    color: #64748b;
    margin-bottom: 3px;
    font-weight: 500;
}

.contact-info-item .info-value {
    font-size: 16px;
    font-weight: 700;
    color: #000000;
    -webkit-text-fill-color: currentColor;
    background: none;
    -webkit-background-clip: border-box;
    background-clip: border-box;
}

a.info-value {
    text-decoration: none;
    color: #c9a227;
}

a.info-value:hover {
    text-decoration: underline;
}

.contact-person {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px;
    background: #0a1628;
    border-radius: 14px;
    color: #ffffff;
}

.person-avatar {
    width: 48px;
    height: 48px;
    background: #c9a227;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 700;
    flex-shrink: 0;
}

.person-info {
    flex: 1;
}

.person-name {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 3px;
}

.person-title {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
}

.person-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
}

.person-actions .btn {
    min-width: 96px;
    min-height: 40px;
    padding: 10px 14px;
    font-size: 13px;
}

.person-wechat-btn {
    border-color: rgba(255, 255, 255, 0.35);
    color: #ffffff;
}

.person-wechat-btn:hover {
    background: rgba(255, 255, 255, 0.14);
}

.person-wechat-popup {
    position: absolute;
    right: 0;
    bottom: calc(100% + 10px);
    width: 190px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 -12px 28px rgba(0, 0, 0, 0.2);
    padding: 12px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: all 0.2s ease;
    z-index: 20;
}

.person-wechat-popup.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.person-wechat-popup p {
    margin: 0 0 8px 0;
    text-align: center;
    font-size: 12px;
    font-weight: 600;
    color: #0a1628;
}

.person-wechat-popup .wechat-qr {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.contact-form-wrapper {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 28px;
}

.form-header {
    margin-bottom: 28px;
}

.form-header h3 {
    font-size: 24px;
    font-weight: 600;
    color: #0a1628;
    margin-bottom: 10px;
}

.form-header p {
    font-size: 15px;
    color: #64748b;
    line-height: 1.6;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.captcha-inline {
    display: flex;
    align-items: center;
    gap: 10px;
    height: 54px;
}

/* 验证码模式：短信开 → 仅「获取验证码」；短信关 → 仅图形验证码（与 PC 一致） */
#consultationForm.form-verify-sms #captchaInline {
    display: none !important;
}

#consultationForm.form-verify-captcha #sendCodeBtn {
    display: none !important;
}

#consultationForm.form-verify-captcha #captchaInline {
    display: flex !important;
}

.captcha-inline img {
    height: 44px;
    border-radius: 8px;
    cursor: pointer;
    border: 1.5px solid #e2e8f0;
    flex-shrink: 0;
}

.captcha-inline .btn-sm {
    white-space: nowrap;
    padding: 10px 14px;
    font-size: 13px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-group label {
    font-size: 14px;
    font-weight: 500;
    color: #475569;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 16px 18px;
    border: 1.5px solid #e2e8f0;
    border-radius: 12px;
    font-size: 15px;
    background: #ffffff;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #c9a227;
    box-shadow: 0 0 0 5px rgba(201, 162, 39, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
.footer {
  background: linear-gradient(180deg, #0a1628 0%, #050d18 100%);
  color: #ffffff;
  padding: 40px 0 30px;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 162, 39, 0.3), transparent);
}

/* Disclaimer */
.footer-disclaimer {
    text-align: center;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-disclaimer-title {
    font-size: 14px;
    font-weight: 600;
    color: #c9a227;
    margin-bottom: 12px;
}

.footer-disclaimer-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-width: 800px;
    margin: 0 auto;
}

.footer-disclaimer-list p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.5;
    margin: 0;
}

/* Company Info */
.footer-company {
  text-align: center;
  margin-bottom: 20px;
}

.footer-company-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* 底部版权的公司名称样式 */
.footer-company .company-name {
  font-size: 14px;
  color: #ffffff !important;
  font-weight: 500;
  white-space: nowrap;
}

/* 关于版块的公司名称样式 */
.about .company-name {
  font-size: 13px;
  font-weight: 700;
  color: #000000 !important;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}

.about .company-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  transition: all 0.3s ease;
  flex: 1;
  min-width: 0;
}

.company-separator {
  color: #c9a227;
  white-space: nowrap;
}

/* Bottom */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-bottom-left {
  display: flex;
  align-items: center;
}

.footer-logo {
  font-size: 22px;
  font-weight: 700;
  color: #c9a227;
  letter-spacing: 1px;
}

.footer-bottom-center {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  flex: 1;
}

.footer-bottom-center span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.9);
}

.footer-bottom-center a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
}

.footer-bottom-center a:hover {
  color: #c9a227;
}

.footer-separator {
  color: rgba(255, 255, 255, 0.4);
}

.footer-bottom-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.footer-phone {
  font-size: 13px;
  color: #c9a227;
  font-weight: 500;
  text-decoration: none;
}

.footer-phone:hover {
  color: #ffffff;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #0a1628, #1e3a5f);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    padding: 14px 0;
    display: block;
    animation: slideUp 0.4s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

.cookie-content {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
}

.cookie-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cookie-warning {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(201, 162, 39, 0.3);
    border-radius: 8px;
    padding: 12px 16px;
}

.cookie-warning-title {
    font-size: 13px;
    font-weight: 600;
    color: #c9a227;
    margin-bottom: 8px;
}

.cookie-warning-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.cookie-warning-list p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    line-height: 1.5;
}

.cookie-note {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.cookie-actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
    margin-top: 20px;
}

.cookie-banner .btn {
    padding: 10px 24px;
    font-size: 13px;
}

.cookie-banner .btn-outline {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.3);
}

.cookie-banner .btn-outline:hover {
    background: rgba(255, 255, 255, 0.2);
}

.cookie-banner .btn-primary {
    background: linear-gradient(135deg, #c9a227, #8b6914);
    box-shadow: 0 4px 15px rgba(201, 162, 39, 0.3);
}

.cookie-banner .btn-primary:hover {
    box-shadow: 0 6px 20px rgba(201, 162, 39, 0.4);
}

/* Responsive */
@media (max-width: 1024px) {
    .container {
        padding: 0 24px;
    }

    .header-content {
        gap: 30px;
    }

    .nav {
        gap: 24px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .trust-bar-content {
        gap: 40px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .strength-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .news-section-header {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .section-header-left {
        grid-column: 1;
    }
    
    .news-section-right {
        grid-column: 1;
        justify-self: center;
    }
    
    .news-filter-bar {
        flex-direction: column;
        align-items: stretch;
    }

    .news-tags {
        justify-content: center;
    }
    
    .related-grid {
        grid-template-columns: 1fr;
    }
    
    .news-article {
        padding: 30px 20px;
    }
    
    .article-title {
        font-size: 22px;
    }

    .process-timeline {
        flex-wrap: wrap;
    }

    .process-step {
        flex: 0 0 48%;
    }

    .process-step .step-number::after {
        display: none;
    }

    .about-layout,
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .about-card-info {
        position: relative;
        right: 0;
        bottom: 0;
        margin-top: 24px;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    body {
        padding-top: 66px;
        font-size: 14px;
    }

    .container {
        padding: 0 14px;
    }

    .header-content {
        flex-wrap: wrap;
        gap: 10px;
    }

    .nav {
        order: 3;
        width: 100%;
        justify-content: flex-start;
        overflow-x: auto;
        white-space: nowrap;
        padding-top: 8px;
        padding-bottom: 4px;
        gap: 14px;
    }

    .nav-link {
        font-size: 13px;
        padding: 4px 0;
    }

    .header {
        padding: 12px 0;
    }

    .header.scrolled {
        padding: 10px 0;
    }

    .logo {
        font-size: 22px;
        letter-spacing: 1px;
    }

    .logo-subtitle {
        font-size: 10px;
    }

    .header-cta {
        display: none;
    }

    .hero {
        padding: 40px 0 28px;
    }

    .hero-content {
        gap: 22px;
    }

    .hero-badge {
        margin-bottom: 12px;
        font-size: 12px;
    }

    .hero-title {
        font-size: 30px;
        margin-bottom: 10px;
    }

    .hero-description {
        font-size: 14px;
        margin-bottom: 16px;
    }

    .trust-indicators {
        flex-wrap: wrap;
        gap: 12px;
    }

    .trust-divider {
        display: none;
    }

    .hero-actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        margin-bottom: 16px;
    }

    .hero-actions .btn {
        min-height: 40px;
        padding: 10px 12px;
        font-size: 13px;
    }

    .hero-stats {
        gap: 8px;
    }

    .stat-item {
        flex: 1;
        background: rgba(255, 255, 255, 0.06);
        border: 1px solid rgba(255, 255, 255, 0.12);
        border-radius: 8px;
        padding: 8px 6px;
        text-align: center;
    }

    .stat-number {
        font-size: 20px;
        margin-bottom: 2px;
    }

    .stat-label {
        font-size: 11px;
    }

    .feature-box {
        padding: 12px;
        gap: 10px;
        border-radius: 10px;
    }

    .feature-icon {
        width: 38px;
        height: 38px;
        border-radius: 8px;
    }

    .feature-icon svg {
        width: 18px;
        height: 18px;
    }

    .feature-content h3 {
        font-size: 14px;
    }

    .feature-content p {
        font-size: 12px;
        line-height: 1.4;
    }

    .trust-bar {
        padding: 14px 0;
    }

    .trust-bar-content {
        gap: 10px;
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 4px;
    }

    .trust-stat {
        min-width: 165px;
        gap: 8px;
    }

    .stat-icon {
        width: 34px;
        height: 34px;
        border-radius: 8px;
    }

    .stat-icon svg {
        width: 18px;
        height: 18px;
    }

    .stat-title {
        font-size: 13px;
    }

    .stat-desc {
        font-size: 11px;
    }

    .section-header {
        margin-bottom: 20px;
    }

    .section-subtitle {
        font-size: 11px;
        margin-bottom: 8px;
    }

    .section-title {
        font-size: 24px;
        margin-bottom: 8px;
    }

    .section-description {
        font-size: 13px;
    }

    .services,
    .strength,
    .news,
    .process,
    .about,
    .contact,
    .news-list-page,
    .news-detail-page {
        padding-top: 26px;
        padding-bottom: 30px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .strength-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .news-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .news-card {
        flex-direction: row;
        gap: 10px;
        padding: 12px;
        border-radius: 10px;
    }
    
    .news-card-left {
        margin-bottom: 0;
    }
    
    .news-card-top {
        gap: 6px;
        margin-bottom: 6px;
    }
    
    .news-meta {
        width: auto;
        font-size: 10px;
    }
}

/* Success Modal */
.success-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
}

.success-modal.active {
    display: flex;
}

.success-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 22, 40, 0.75);
    backdrop-filter: blur(6px);
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.success-modal-content {
    position: relative;
    background: #ffffff;
    border-radius: 20px;
    padding: 40px 36px;
    max-width: 480px;
    width: 92%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(10, 22, 40, 0.3);
    animation: scaleIn 0.35s ease;
}

@keyframes scaleIn {
    from {
        transform: scale(0.85);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.success-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    border: none;
    background: rgba(100, 116, 139, 0.1);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    transition: all 0.3s ease;
}

.success-modal-close:hover {
    background: rgba(100, 116, 139, 0.15);
    color: #0a1628;
    transform: rotate(90deg);
}

.success-modal-close svg {
    width: 22px;
    height: 22px;
}

.success-modal-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.12), rgba(139, 105, 20, 0.08));
    border: 2px solid rgba(201, 162, 39, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c9a227;
    animation: iconBounce 0.6s ease 0.1s both;
}

@keyframes iconBounce {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.08);
    }
}

.success-modal-icon svg {
    width: 44px;
    height: 44px;
}

.success-modal-title {
    text-align: center;
    font-size: 26px;
    font-weight: 700;
    color: #0a1628;
    margin-bottom: 10px;
}

.success-modal-desc {
    text-align: center;
    font-size: 15px;
    color: #64748b;
    margin-bottom: 32px;
    line-height: 1.6;
}

.success-modal-contact {
    margin-bottom: 28px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px;
    background: #f8fafc;
    border-radius: 14px;
    margin-bottom: 14px;
}

.contact-item-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.12), rgba(139, 105, 20, 0.06));
    border: 1px solid rgba(201, 162, 39, 0.25);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c9a227;
    flex-shrink: 0;
}

.contact-item-icon svg {
    width: 24px;
    height: 24px;
}

.contact-item-info {
    flex: 1;
}

.contact-item-label {
    font-size: 12px;
    color: #94a3b8;
    margin-bottom: 4px;
    font-weight: 500;
}

.contact-item-value {
    font-size: 17px;
    font-weight: 700;
    color: #0a1628;
}

a.contact-item-value {
    text-decoration: none;
    color: #c9a227;
}

a.contact-item-value:hover {
    text-decoration: underline;
}

.contact-item-btn {
    flex-shrink: 0;
    font-size: 13px;
    padding: 10px 20px !important;
}

.wechat-qr-wrapper {
    margin-top: 20px;
    padding: 20px;
    background: #f8fafc;
    border-radius: 14px;
    text-align: center;
}

.wechat-qr-large {
    width: 180px;
    height: 180px;
    border-radius: 12px;
    margin-bottom: 12px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.wechat-qr-hint {
    font-size: 13px;
    color: #64748b;
    margin: 0;
    font-weight: 500;
}

.success-modal-confirm {
    margin-top: 8px;
}

@media (max-width: 768px) {
    .success-modal-content {
        padding: 32px 24px;
        border-radius: 16px;
    }
    
    .success-modal-title {
        font-size: 22px;
    }
    
    .success-modal-desc {
        font-size: 14px;
    }
    
    .contact-item {
        flex-wrap: wrap;
    }
    
    .contact-item-btn {
        width: 100%;
        margin-top: 10px;
    }
    
    .wechat-qr-large {
        width: 160px;
        height: 160px;
    }
}

/* Floating Menu */
.floating-menu {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.floating-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #c9a227, #8b6914);
    color: #ffffff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(201, 162, 39, 0.4);
    transition: all 0.3s ease;
    position: relative;
}

.floating-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(201, 162, 39, 0.5);
}

.floating-btn svg {
  width: 24px;
  height: 24px;
}

/* 微信按钮样式 */
.wechat-btn span {
  font-size: 12px;
  font-weight: 700;
  color: #ffffff;
}

.floating-btn.back-to-top {
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.floating-btn.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

/* WeChat QR Code Popup */
.wechat-popup {
    position: absolute;
    right: 70px;
    bottom: 0;
    background: #ffffff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: all 0.3s ease;
    white-space: nowrap;
}

.floating-btn:hover .wechat-popup,
.floating-btn:focus-within .wechat-popup,
.wechat-btn.active .wechat-popup {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.wechat-popup::after {
    content: '';
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    border-left: 8px solid #ffffff;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
}

.wechat-popup p {
    font-size: 13px;
    color: #0a1628;
    font-weight: 600;
    margin: 0 0 12px 0;
    text-align: center;
}

.wechat-qr {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
    display: block;
}

@media (max-width: 768px) {
    .wechat-popup {
        right: 52px;
        bottom: -6px;
        padding: 10px;
        border-radius: 10px;
    }

    .wechat-popup p {
        font-size: 12px;
        margin-bottom: 8px;
    }

    .wechat-popup::after {
        right: -6px;
        border-left-width: 6px;
        border-top-width: 6px;
        border-bottom-width: 6px;
    }

    .wechat-qr {
        width: 108px;
        height: 108px;
        border-radius: 6px;
    }
}
