:root {
    --primary-color: #FF7900; /* 橙色作为主色调 */
    --accent-color: #f9ab00; /* 金色作为强调色 */
    --highlight-color: #FF7900; /* 新增强调色 */
    --light-bg: #f8f9fa;     /* 浅色背景 */
    --text-primary: #333333; /* 主文本色 */
    --text-secondary: #666666; /* 副文本色 */
    --shadow-color: rgba(0,0,0,0.1); /* 柔和的阴影 */
}

body {
    font-family: sans-serif;
    background-color: #f5f7fa;
    color: var(--text-primary);
    overflow-x: hidden;
}

/* 标题栏样式 - 白底橙字 */
.title-bar {
    background: white;
    padding: 0.8rem 1.5rem;
    box-shadow: 0 2px 8px var(--shadow-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 1020;
}

.title-section {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.sidebar-toggle {
    background: none;
    border: none;
    font-size: 1.6rem;
    color: var(--primary-color);
    cursor: pointer;
    padding: 0.4rem;
    border-radius: 4px;
    transition: all 0.3s;
}

.sidebar-toggle:hover {
    background-color: rgba(255, 121, 0, 0.1);
}

.brand-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
}

.menu-button {
    background: none;
    border: none;
    font-size: 1.4rem;
    color: var(--text-primary);
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 4px;
    transition: all 0.3s;
}

.menu-button:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

/* 侧边栏样式 - 调整为宽度60% */
.sidebar {
    position: fixed;
    top: 0;
    left: -60%;
    width: 60%;
    height: 100vh;
    background-color: white;
    box-shadow: 3px 0 15px var(--shadow-color);
    z-index: 1030;
    transition: transform 0.4s cubic-bezier(0.18, 0.81, 0.3, 0.93);
    overflow-y: auto;
}

.sidebar.active {
    transform: translateX(100%);
}

.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.3);
    z-index: 1025;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s;
}

.sidebar-overlay.active {
    visibility: visible;
    opacity: 1;
}

.sidebar-header {
    padding: 1.5rem 1.5rem 1rem;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sidebar-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

.sidebar-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #666;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 4px;
    transition: all 0.3s;
}

.sidebar-close:hover {
    background-color: rgba(0,0,0,0.1);
}

.sidebar-menu {
    list-style: none;
    padding: 0.5rem 0.75rem;
}

/* 菜单项卡片样式 - 左侧边框和增加上下间距 */
.menu-item {
    padding: 14px 1rem;
    margin: 10px 0;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s;
    cursor: pointer;
    border-radius: 8px;
    background-color: white;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    border-left: 4px solid var(--highlight-color);
}

.menu-item:hover {
    background-color: rgba(255, 121, 0, 0.08);
}

/* 选中项样式 - 橙色背景白色文字加发光效果 */
.menu-item.active {
    background-color: var(--highlight-color) !important;
    color: white !important;
    box-shadow: 0 0 15px rgba(255, 121, 0, 0.5);
}

.menu-item.active .menu-icon,
.menu-item.active .menu-text {
    color: white !important;
}

.menu-text {
    font-size: 1rem;
    font-weight: 500;
}

.menu-icon {
    font-size: 1.3rem;
    color: var(--text-secondary);
}

/* 主内容区域 */
.content-container {
    padding: 2rem;
    margin-top: 1rem;
}

/* 简介头部区域 - 添加视差背景 */
.intro-header {
    text-align: center;
    padding: 4rem 0;
    margin-bottom: 3rem;
    position: relative;
    overflow: hidden;
    background-image: url('/public/images/background.png');
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

/* 背景遮罩层 */
.intro-header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* 半透明遮罩层 */
    z-index: 0;
}

.intro-header > * {
    position: relative;
    z-index: 1;
}

.cms-logo {
    width: 120px;
    height: 120px;
    border-radius: 24px;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #FFFFFF;
    box-shadow: 0 10px 20px rgba(255, 121, 0, 0.3);
    padding: 20px;
}

.cms-logo-image {
    background-image: url('/public/images/icon.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
}

.brand-title {
    background-image: url('/public/images/logo.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    min-width: 90px;
    height: 35px;
}

.cms-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: white; /* 白色文字 */
    margin-bottom: 1.5rem;
    letter-spacing: -1.5px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.cms-subtitle {
    font-size: 1.4rem;
    max-width: 700px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.85); /* 半透明白色文字 */
}

.btn-action {
    padding: 0.8rem 2rem;
    border-radius: 8px;
    font-weight: 500;
    font-size: 1.1rem;
    margin: 0 0.75rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    transition: all 0.3s;
}

.btn-primary-action {
    background-color: var(--primary-color);
    border: none;
    color: white;
}

.btn-outline-action {
    background: transparent;
    border: 2px solid rgba(255,255,255,0.9);
    color: rgba(255,255,255,0.9);
}

.btn-primary-action:hover, .btn-outline-action:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.2);
}

.btn-outline-action:hover {
    background-color: rgba(255, 255, 255, 0.15);
}

/* 为什么选择我们部分 */
.why-section {
    margin: 4rem 0;
}

/* 客户评价部分 */
.testimonials-section {
    margin: 5rem 0;
}

.testimonial-container {
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    padding: 2rem;
    position: relative;
    margin-bottom: 2rem;
    border-left: 4px solid var(--primary-color);
}

.testimonial-card::before {
    content: "\F00D";
    font-family: "Material Design Icons";
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 2.5rem;
    color: rgba(255, 121, 0, 0.15);
    z-index: 1;
}

.testimonial-content {
    position: relative;
    z-index: 2;
    font-style: italic;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    padding: 0 1rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #e9ecef;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-right: 1rem;
}

.author-info h4 {
    margin: 0;
    font-weight: 600;
}

.author-info p {
    color: #888;
    margin: 0;
    font-size: 0.95rem;
}

/* 卡片区域 */
.features-section {
    margin: 4rem 0;
}

.section-title {
    font-size: 1.8rem;
    font-weight: 600;
    text-align: center;
    position: relative;
    margin-bottom: 3.5rem;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 10px;
}

.feature-row {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-card {
    flex: 0 0 calc(33.333% - 2rem);
    min-width: 300px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px var(--shadow-color);
    padding: 1.5rem;
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.feature-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.feature-text {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* 版权信息 */
.footer {
    text-align: center;
    padding: 3rem 0;
    margin-top: 3rem;
    border-top: 1px solid rgba(0,0,0,0.05);
    color: var(--text-secondary);
    font-size: 1.02rem;
}

.footer a {
    color: var(--primary-color);
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

.copyright {
    margin-top: 1rem;
    font-size: 0.95rem;
}

/* 新增的"为什么选择我们"卡片样式 */
.highlight-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    padding: 1.5rem;
    transition: all 0.3s;
    margin-bottom: 2rem;
    border-left: 4px solid var(--primary-color);
}

.highlight-icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.highlight-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.8rem;
}

.highlight-content {
    color: var(--text-secondary);
    line-height: 1.7;
}

.btn-highlight {
    background-color: var(--primary-color);
    border: none;
    color: white;
    padding: 0.7rem 1.8rem;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s;
    box-shadow: 0 4px 10px rgba(255, 121, 0, 0.3);
    margin-top: 1.5rem;
    display: inline-block;
}

.btn-highlight:hover {
    background-color: #e06d00;
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(255, 121, 0, 0.4);
    color: white;
}

/* 添加垂直对齐控制 */
.popup-menu-container {
    position: absolute; /* 改为绝对定位 */
    top: 0;
    left: 0;
    transform-origin: top right; /* 重要：设置变换原点为右上角 */
    opacity: 0;
    transform: scale(0.9) translateY(-10px);
    transition: 
        opacity 0.2s cubic-bezier(0.16, 1, 0.3, 1), 
        transform 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
    z-index: 1100;
}

.popup-menu-container.active {
    opacity: 1;
    transform: scale(1) translateY(0);
    pointer-events: auto;
}

/* 添加微妙的打开动画 */
@keyframes popup-appear {
    0% {
        opacity: 0;
        transform: translateY(-5px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.popup-menu {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    padding: 8px 0;
    width: 200px;
    overflow: hidden;
    animation: popup-appear 0.3s ease-out;
}

.popup-item {
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: all 0.2s;
    cursor: pointer;
    color: var(--text-primary);
}

.popup-item:hover {
    background-color: rgba(255, 121, 0, 0.08);
}

.popup-item .popup-icon {
    font-size: 1.2rem;
    color: var(--primary-color);
}

.popup-item .svg-popup {
    max-width: 20px;
}

.popup-item .popup-text {
    font-size: 0.95rem;
    font-weight: 500;
}

.menu-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1090;
    background: rgba(0,0,0,0.1);
    display: none;
}

.menu-backdrop.active {
    display: block;
}

/* 响应式调整 */
@media (max-width: 992px) {
    .feature-card {
        flex: 0 0 calc(50% - 2rem);
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
}

@media (max-width: 768px) {
    .sidebar {
        width: 85%;
        left: -85%;
    }
    
    .sidebar.active {
        transform: translateX(100%);
    }
    
    .title-bar {
        padding: 0.8rem 1rem;
    }
    
    .brand-title {
        font-size: 1.3rem;
    }
    
    .content-container {
        padding: 1.5rem;
    }
    
    .cms-title {
        font-size: 2.5rem;
    }
    
    .cms-subtitle {
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {
    .sidebar {
        width: 92%;
        left: -92%;
    }
    
    .feature-card {
        flex: 0 0 100%;
        min-width: 100%;
    }
    
    .btn-action {
        display: block;
        width: 100%;
        margin: 0.5rem auto;
        max-width: 280px;
    }
    
    .cms-title {
        font-size: 2rem;
    }
}

.inaline_logo {
    max-width: 75px;
    margin: 0 5px;
}

/* ============== 亮色主题重置 ============== */
/* === 安全弹窗间距方案 === */
/* 移除全局margin，改用内部padding和位置控制 */
.jconfirm .jconfirm-box {
  margin: 0 auto; /* 水平居中 */
  max-width: 95%; /* 限制最大宽度防止溢出 */
  max-height: 90vh; /* 限制最大高度 */
}

/* 针对小屏幕设备调整 */
@media (max-width: 600px) {
  .jconfirm .jconfirm-box {
    width: 95% !important;
    max-height: 85vh;
  }
}

/* 在弹窗内容内部添加安全间距 */
.jconfirm-content {
  padding: 15px;
}

.jconfirm .jconfirm-bg {
  background-color: rgba(0,0,0,0.2) !important;
}

.jconfirm .jconfirm-box {
  background: #ffffff !important;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1) !important;
  border-radius: 12px !important;
}

.jconfirm .jconfirm-title-c {
  border-bottom: 1px solid #f0f0f0 !important;
  color: #333 !important;
  font-weight: 600;
  font-size: 18px;
  padding: 20px 15px 15px;
}

.jconfirm .jconfirm-buttons button {
  border-radius: 6px !important;
  font-weight: 500 !important;
  transition: all 0.2s !important;
}

/* 按钮样式 */
.jconfirm .jconfirm-buttons .btn-cancel {
  background: #f5f5f5 !important;
  border: 1px solid #e0e0e0 !important;
  color: #666 !important;
}

.jconfirm .jconfirm-buttons .btn-confirm {
  background: #FF7900 !important;
  color: white !important;
}

.jconfirm .jconfirm-buttons .btn-cancel:hover {
  background: #f0f0f0 !important;
}

.jconfirm .jconfirm-buttons .btn-confirm:hover {
  background: #3367d6 !important;
}

/* 关闭按钮 */
.jconfirm .jconfirm-closeIcon {
  color: #999 !important;
}
.jconfirm .jconfirm-closeIcon:hover {
  color: #333 !important;
}

/* ============== 语言列表样式 ============== */
.language-list {
  max-height: 60vh;
  overflow-y: auto;
  padding: 5px 0;
}

.language-item {
  display: flex;
  align-items: center;
  padding: 12px 15px;
  border-radius: 8px;
  margin: 5px 0;
  cursor: pointer;
  transition: all 0.2s;
  border: 1px solid transparent;
}

.language-item:hover {
  background: #f8f9fa;
  border-color: #e0e0e0;
}

.language-item.selected {
  background: rgba(66, 133, 244, 0.08) !important;
  border: 1px solid rgba(66, 133, 244, 0.3) !important;
  position: relative;
}

.language-item.selected::after {
  content: "✓";
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #4285f4;
  font-weight: bold;
}

.language-names {
  margin-left: 15px;
  line-height: 1.4;
}

.native-name {
  display: block;
  font-weight: 500;
  font-size: 15px;
  color: #333;
}

.english-name {
  display: block;
  font-size: 13px;
  color: #666;
}

/* Toast通知样式 */
#languageChangeToast {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: #4caf50;
  color: white;
  padding: 12px 24px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  z-index: 10000;
  display: none;
  font-weight: 500;
  animation: fadeInUp 0.3s, fadeOut 0.3s 2.7s forwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate(-50%, 10px);
  }
  to {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

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

/* ----------------------------------------------- */

/* 数据统计部分样式 */
.stats-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #f0f7ff 100%);
  position: relative;
  overflow: hidden;
}

.stats-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.stats-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #1a2942;
  text-shadow: 0 2px 4px rgba(0,0,0,0.05);
  position: relative;
  display: inline-block;
  padding: 0 30px;
}

.stats-title:after,
.stats-title:before {
  content: '';
  position: absolute;
  top: 50%;
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #3a86ff, transparent);
}

.stats-title:before {
  left: -90px;
}

.stats-title:after {
  right: -90px;
}

.stats-description {
  text-align: center;
  color: #5a6c8d;
  margin-bottom: 50px;
  font-size: 1.15rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.stats-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 25px;
}

.stats-card {
  background: white;
  border-radius: 16px;
  padding: 30px 25px;
  text-align: center;
  width: 280px;
  position: relative;
  box-shadow: 0 12px 40px rgba(58, 134, 255, 0.1);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  overflow: hidden;
}

/* 不同类型的卡片 */
.stats-card.type1 {
  border-bottom: 4px solid #ff6b6b;
  background: linear-gradient(to bottom, #ffffff 0%, #fff6f6 100%);
}

.stats-card.type2 {
  border-bottom: 4px solid #3a86ff;
  background: linear-gradient(to bottom, #ffffff 0%, #f3f8ff 100%);
}

.stats-card.type3 {
  border-bottom: 4px solid #4cd964;
  background: linear-gradient(to bottom, #ffffff 0%, #f7fff9 100%);
}

.stats-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 15px 50px rgba(58, 134, 255, 0.2);
}

.stats-card:after {
  content: '';
  position: absolute;
  top: -10px;
  right: -10px;
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.4);
  transform: rotate(45deg);
  z-index: 0;
}

.stats-icon-container {
  position: relative;
  width: 100px;
  height: 100px;
  margin: 0 auto 25px;
  z-index: 2;
}

.stats-icon {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.stats-card.type1 .stats-icon {
  background: linear-gradient(135deg, rgba(255, 107, 107, 0.15), rgba(255, 107, 107, 0.05));
  color: #ff6b6b;
  box-shadow: 0 5px 20px rgba(255, 107, 107, 0.2);
}

.stats-card.type2 .stats-icon {
  background: linear-gradient(135deg, rgba(58, 134, 255, 0.15), rgba(58, 134, 255, 0.05));
  color: #3a86ff;
  box-shadow: 0 5px 20px rgba(58, 134, 255, 0.2);
}

.stats-card.type3 .stats-icon {
  background: linear-gradient(135deg, rgba(76, 217, 100, 0.15), rgba(76, 217, 100, 0.05));
  color: #4cd964;
  box-shadow: 0 5px 20px rgba(76, 217, 100, 0.2);
}

.stats-icon i {
  font-size: 2.8rem;
}

.stats-value {
  font-size: 3.2rem;
  font-weight: 800;
  margin: 10px 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #1a2942;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.stats-value:after {
  content: '+';
  font-size: 2.5rem;
  margin-top: 5px;
  font-weight: 600;
}

.stats-label {
  font-size: 1.25rem;
  color: #5a6c8d;
  font-weight: 500;
}

.stats-note {
  text-align: center;
  margin-top: 40px;
  color: #8c9bb5;
  font-size: 0.95rem;
  padding: 10px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 8px;
  display: inline-block;
}

.stats-pattern {
  position: absolute;
  opacity: 0.08;
  z-index: 0;
}

.stats-pattern1 {
  top: 5%;
  left: 5%;
  font-size: 9rem;
}

.stats-pattern2 {
  bottom: 5%;
  right: 5%;
  font-size: 12rem;
  transform: rotate(20deg);
}

/* 响应式调整 */
@media (max-width: 1200px) {
  .stats-container {
    gap: 20px;
  }
  
  .stats-card {
    width: 250px;
  }
}

@media (max-width: 992px) {
  .stats-value {
    font-size: 2.8rem;
  }
}

@media (max-width: 768px) {
  .stats-container {
    flex-direction: column;
    align-items: center;
  }
  
  .stats-card {
    width: 85%;
    max-width: 380px;
  }
  
  .stats-title:before,
  .stats-title:after {
    display: none;
  }
}

@media (max-width: 576px) {
  .stats-section {
    padding: 60px 0;
  }
  
  .stats-title {
    font-size: 2.2rem;
  }
  
  .stats-description {
    font-size: 1rem;
    margin-bottom: 40px;
  }
  
  .stats-value {
    font-size: 2.5rem;
  }
}


/* 新增特色功能区块样式 */
.feature-showcase-section {
  padding: 80px 0;
  background-color: #f8f9fa;
}

.feature-showcase-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.feature-showcase-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 60px;
  color: #1a2942;
  position: relative;
}

.feature-showcase-title:after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #ff6b6b, #3a86ff);
  border-radius: 2px;
}

.feature-showcase-item {
  display: flex;
  align-items: center;
  margin-bottom: 100px;
  position: relative;
}

.feature-showcase-item.reverse {
  flex-direction: row-reverse;
}

.feature-image-container {
  flex: 1;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
  width: 100%;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.feature-image-container:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.2);
}

.feature-image {
  width: 100%;
  height: 400px;
  background-color: #e9ecef;
  background-image: url('/public/images/background.png');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.feature-image:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(58, 134, 255, 0.1), rgba(255, 107, 107, 0.1));
}

.feature-image-placeholder {
  font-size: 2rem;
  color: #3a86ff;
  font-weight: 700;
  text-align: center;
  padding: 20px;
  z-index: 1;
  width: 100%;
  display: none;
}

.feature-content {
  flex: 1;
  padding: 0 50px;
}

.feature-content.reverse {
  padding: 0 0 0 50px;
}

.feature-tag {
  display: inline-block;
  background: linear-gradient(90deg, #ff6b6b, #ff9e7d);
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.feature-heading {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #1a2942;
  line-height: 1.3;
}

.feature-description {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #5a6c8d;
  margin-bottom: 30px;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.feature-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 15px;
  font-size: 1.05rem;
  color: #5a6c8d;
}

.feature-list li:before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 16px;
  height: 16px;
  background: #3a86ff;
  border-radius: 50%;
}

.feature-list li:after {
  content: '';
  position: absolute;
  left: 5px;
  top: 11px;
  width: 6px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.feature-button {
  background: linear-gradient(90deg, #3a86ff, #4cc9f0);
  color: white;
  border: none;
  padding: 12px 30px;
  border-radius: 30px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 10px 20px rgba(58, 134, 255, 0.3);
}

.feature-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(58, 134, 255, 0.4);
}

.mouse-icon {
  width: 40px;
  margin-top: 50px;
}

/* 响应式调整 */
@media (max-width: 992px) {
  .feature-showcase-item,
  .feature-showcase-item.reverse {
    flex-direction: column;
  }
  
  .feature-content,
  .feature-content.reverse {
    padding: 40px 20px 0;
  }
  
  .feature-image-container {
    margin-bottom: 30px;
  }
  
  .feature-heading {
    font-size: 1.8rem;
  }
}

@media (max-width: 768px) {
  .feature-showcase-section {
    padding: 60px 0;
  }
  
  .feature-showcase-title {
    font-size: 2rem;
    margin-bottom: 40px;
  }
  
  .feature-image {
    height: 300px;
  }
  
  .mouse-icon {
    display: none;
  }
}

@media (max-width: 576px) {
  .feature-showcase-title {
    font-size: 1.8rem;
  }
  
  .feature-heading {
    font-size: 1.6rem;
  }
  
  .feature-description {
    font-size: 1rem;
  }
}

  
<!-- 添加轮播控制按钮的自定义样式 -->
.carousel-control-prev, .carousel-control-next {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(0,0,0,0.1);
  top: 50%;
  transform: translateY(-50%);
}
.carousel-control-prev {
  left: -20px;
}
.carousel-control-next {
  right: -20px;
}
.carousel-control-prev-icon, .carousel-control-next-icon {
  filter: invert(1);
  width: 20px;
  height: 20px;
}
.testimonial-carousel .carousel-item {
  padding: 10px;
  transition: all 0.6s ease;
}
.testimonial-carousel .carousel-inner {
  padding: 10px 0;
}
.stats-section {
  position: relative;
}
/* 微调底部留白 */
.footer {
  padding: 30px 0;
}
/* 加载指示器样式 */
.loading-indicator {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 20px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border-radius: 5px;
    display: none; /* 默认隐藏 */
    z-index: 9999;
}

.loading-indicator.active {
    display: block; /* 激活时显示 */
    animation: fadeIn 0.3s ease;
}

/* 错误页面样式 */
.error-page {
    padding: 40px;
    text-align: center;
    background-color: #ffecec;
    border: 1px solid #ffb3b3;
    border-radius: 8px;
    color: #cc0000;
    margin: 20px;
    font-size: 18px;
}

/* 淡入动画 */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

#page-main {
  width: 100vw;
  padding: 0;
  margin: 0;
}












































body.dark-theme {
    --primary-color: #FF7900;
    --accent-color: #f9ab00;
    --highlight-color: #FF7900;
    /* 暗色主题颜色变量 */
    --dark-bg: #121212;
    --dark-bg-2: #1e1e1e;
    --dark-bg-3: #252525;
    --text-primary: #e0e0e0;
    --text-secondary: #a0a0a0;
    --shadow-color: rgba(0,0,0,0.4);
    --border-color: #333;
    --card-bg: #1a1a1a;
}

body.dark-theme {
    background-color: var(--dark-bg);
    color: var(--text-primary);
}

/* 标题栏 */
body.dark-theme .title-bar {
    background-color: var(--dark-bg-3);
    box-shadow: 0 2px 8px var(--shadow-color);
}

body.dark-theme .brand-title {
    color: var(--primary-color);
}

/* 侧边栏 */
body.dark-theme .sidebar {
    background-color: var(--dark-bg-3);
    box-shadow: 3px 0 15px var(--shadow-color);
}

body.dark-theme .sidebar-header {
    border-bottom: 1px solid var(--border-color);
}

/* 菜单项 */
body.dark-theme .menu-item {
    background-color: var(--card-bg);
    box-shadow: 0 2px 8px rgba(0,0,0,0.4);
    border-left: 4px solid var(--highlight-color);
}

body.dark-theme .menu-item:hover {
    background-color: rgba(255, 121, 0, 0.15);
}

body.dark-theme .menu-item.active {
    background-color: var(--highlight-color) !important;
    box-shadow: 0 0 15px rgba(255, 121, 0, 0.4);
}

/* 内容区域 */
body.dark-theme .content-container {
    background-color: var(--dark-bg);
}

/* 简介头部 */
body.dark-theme .intro-header {
    background-image: url('/public/images/background.png');
}

body.dark-theme .intro-header::before {
    background: rgba(0, 0, 0, 0.7);
}

/* 特性卡片 */
body.dark-theme .feature-card,
body.dark-theme .highlight-card,
body.dark-theme .stats-card {
    background-color: var(--card-bg);
    box-shadow: 0 4px 12px var(--shadow-color);
    border-color: var(--border-color);
}

/* 统计数据卡片 */
body.dark-theme .stats-section {
    background: linear-gradient(135deg, #121212 0%, #151a26 100%);
}

body.dark-theme .stats-card {
    background: var(--dark-bg-3);
    box-shadow: 0 12px 40px rgba(0,0,0,0.25);
}

body.dark-theme .stats-card.type1 { 
    background: linear-gradient(to bottom, #1a1a1a 0%, #1f1515 100%); 
}
body.dark-theme .stats-card.type2 { 
    background: linear-gradient(to bottom, #1a1a1a 0%, #151c27 100%); 
}
body.dark-theme .stats-card.type3 { 
    background: linear-gradient(to bottom, #1a1a1a 0%, #152118 100%); 
}

/* 功能展示区 */
body.dark-theme .feature-showcase-section {
    background-color: #101010;
}

body.dark-theme .feature-image-container {
    background-color: #0f0f0f;
}

/* 测试部分 */
body.dark-theme .testimonial-card {
    background-color: var(--card-bg);
    box-shadow: 0 4px 20px rgba(0,0,0,0.25);
}

/* 按钮样式 */
body.dark-theme .btn-action,
body.dark-theme .btn-highlight,
body.dark-theme .feature-button,
body.dark-theme .jconfirm .jconfirm-buttons .btn-confirm {
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

/* 弹出菜单 */
body.dark-theme .popup-menu {
    background-color: var(--dark-bg-3);
}

body.dark-theme .popup-item {
    color: var(--text-primary);
}

/* 语言选择器 */
body.dark-theme .language-item:hover {
    background: #252525;
}

body.dark-theme .language-item.selected {
    background: rgba(66, 133, 244, 0.15) !important;
}

/* 页脚 */
body.dark-theme .footer {
    border-top: 1px solid #252525;
    color: var(--text-secondary);
}

/* 模态框样式 */
body.dark-theme .jconfirm .jconfirm-box {
    background: var(--dark-bg-3) !important;
}

body.dark-theme .jconfirm .jconfirm-title-c {
    border-bottom: 1px solid var(--border-color) !important;
    color: var(--text-primary) !important;
}

body.dark-theme .jconfirm .jconfirm-buttons .btn-cancel {
    background: #2a2a2a !important;
    border: 1px solid var(--border-color) !important;
    color: var(--text-primary) !important;
}

/* 深色主题下的图片处理 */
body.dark-theme .cms-logo {
    filter: brightness(0.9) contrast(1.1);
}

body.dark-theme .intro-header {
    filter: brightness(0.8) contrast(1.1);
}

/* 确保深色主题下的图标可见 */
body.dark-theme .menu-icon,
body.dark-theme .feature-icon,
body.dark-theme .stats-icon {
    filter: brightness(1.2);
}

/* 暗色主题下的滚动条 */
body.dark-theme ::-webkit-scrollbar {
    width: 8px;
}

body.dark-theme ::-webkit-scrollbar-track {
    background: #1a1a1a;
}

body.dark-theme ::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 4px;
}

body.dark-theme ::-webkit-scrollbar-thumb:hover {
    background: #444;
}


#document {
  margin: 0;
  padding: 0;
  width: 100vw;
  max-width: 100vw;
  min-height: calc(100vh - 80px);
}

#document #sidebar {
    background-color: #ffffff;
    height: 100%;
    overflow-y: auto;
    border-right: 1px solid #eaeef2;
    transition: all 0.3s ease-in-out;
    transform: translateX(0);
    opacity: 1;
}

#document .sidebar-header {
    padding: 20px 15px 10px;
    border-bottom: 1px solid #eaeef2;
}

#document .sidebar-item {
    padding: 12px 15px;
    border-left: 3px solid transparent;
    font-size: 0.95rem;
    cursor: pointer;
    color: #444;
}

#document .sidebar-item:hover {
    background-color: #fff3eb;
    border-left-color: #FF7900;
}

#document .sidebar-item.active {
    background-color: #fff3eb;
    border-left-color: #FF7900;
    color: #FF7900;
}

#document .sidebar-subitem {
    padding: 8px 0 8px 35px;
    font-size: 0.9rem;
}

#document .sidebar-subitem.active {
    color: #FF7900;
    background-color: #fff3eb;
}

#document .content-container {
    padding: 0;
    background-color: #ffffff;
    min-height: 100%;
    margin-top: 0;
    overflow: auto;
    transition: all 0.3s ease-in-out;
}

#document .content-header {
    background-color: #ffffff;
    padding: 15px 20px;
    border-bottom: 1px solid #eaeef2;
    display: flex;
    align-items: center;
}

#document .document-content {
    line-height: 1.7;
    font-size: 1.05rem;
    color: #444;
    min-height: calc(100% - 180px);
    display: flex;
}

#document #mobileMenuBtn {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    color: #FF7900;
    border-radius: 8px;
    padding: 8px 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

#document .pagination-container {
    padding: 20px;
    background: #ffffff;
    border-top: 1px solid #eaeef2;
    display: flex;
    justify-content: flex-end;
}

/* 添加了侧边栏关闭状态样式 */
#document #sidebar.closing {
    transform: translateX(-100%);
    opacity: 0.8;
}

#document #sidebar.hidden {
    transform: translateX(-100%);
    opacity: 0;
}

@media (max-width: 992px) {
    #document #sidebar {
        position: fixed;
        width: 260px;
        left: 0;
        z-index: 999;
        box-shadow: 3px 0 15px rgba(0, 0, 0, 0.1);
        transform: translateX(-100%);
        opacity: 0;
    }
    
    #document #sidebar.active {
        transform: translateX(0);
        opacity: 1;
    }
    
    #document #sidebar.closing {
        transform: translateX(-100%);
        opacity: 0;
    }
    
    #document .sidebar-overlay {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: rgba(0, 0, 0, 0.1);
        z-index: 998;
        display: none;
        transition: opacity 0.3s ease;
        opacity: 0;
    }
    
    #document .sidebar-overlay.active {
        display: block;
        opacity: 1;
    }
}

/* 橙色主题 */
#document .btn-outline-primary {
    border-color: #e0e0e0;
    color: #FF7900;
}

#document .btn-outline-primary:hover {
    background-color: #fff3eb;
    border-color: #ffbf99;
}}

#document .mdi {
    opacity: 0.9;
}

#document .content-placeholder {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

#document .text-orange {
    color: #FF7900;
}

#document .alert-custom {
    border-color: #ffc299;
    background-color: #fff8f2;
}

#document .btn-primary-custom {
    background-color: #FF7900;
    border-color: #FF7900;
    color: white;
}

#document .btn-primary-custom:hover {
    background-color: #e06d00;
    border-color: #e06d00;
}

#document .directory-indicator {
    height: 3px;
    width: 16px;
    background: #FF7900;
    position: absolute;
    top: 20px;
    left: 0;
    transition: all 0.2s ease;
}

#document .directory-hierarchy {
    margin-top: 15px;
    background: #f9f9f9;
    padding: 15px;
    border-radius: 8px;
    border-left: 3px solid #FF7900;
}

@media (max-width: 576px) {
    #document .content-container {
        padding: 0;
        background-color: #ffffff;
        min-height: 100%;
        width: 100%;
        transition: all 0.3s ease-in-out;
    }
}



/* ===== 预约通知区块 - 扁平化 / 无卡片 ===== */
.reservation-section {
    padding: 60px 20px;
    color: var(--text-primary);
    background: none;
}

.reservation-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.reservation-title {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.reservation-subtitle {
    font-size: 1rem;
    margin-bottom: 30px;
    color: var(--text-secondary);
}

/* 倒计时 - 扁平 */
.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin: 24px 0;
}

.countdown-item {
    min-width: 64px;
    padding: 10px 8px;
    border-radius: 8px;
    background: var(--light-bg);
    border: 1px solid var(--border-color);
}

.countdown-number {
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1;
}

.countdown-label {
    font-size: 0.75rem;
    opacity: 0.7;
    margin-top: 4px;
}

/* 预约表单 - 扁平 */
.reservation-form {
    background: none;
    padding: 0;
    border: none;
    backdrop-filter: none;
    box-shadow: none;
}

.reservation-form h3 {
    display: none;
}

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

.form-group {
    margin: 0;
    text-align: left;
}

.form-group label {
    font-size: 0.875rem;
    margin-bottom: 6px;
    color: var(--text-secondary);
}

.form-control {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    background: var(--light-bg);
    color: var(--text-primary);
    font-size: 0.95rem;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(255, 121, 0, 0.2);
}

/* 阅读偏好 - 一行多列 */
.preferences-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.preferences-row label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    border-radius: 4px;
    background: var(--light-bg);
    border: 1px solid var(--border-color);
    font-size: 0.875rem;
    cursor: pointer;
}

.preferences-row input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: var(--primary-color);
}

/* 预约按钮 - 扁平 */
.btn-reservation {
    width: 100%;
    padding: 12px;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 500;
    background: var(--primary-color);
    color: #fff;
    border: none;
    box-shadow: none;
}

.btn-reservation:disabled {
    opacity: 0.5;
}

/* 福利 - 无卡片 */
.reservation-benefits {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 24px;
}

.benefit-item {
    padding: 8px 12px;
    border-radius: 4px;
    background: var(--light-bg);
    border: 1px solid var(--border-color);
    font-size: 0.8125rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.benefit-icon {
    font-size: 1rem;
    margin: 0;
}

/* ===== AI 功能展示区 - 无背景 / 扁平卡片 ===== */
.ai-showcase {
    padding: 60px 20px;
    background: none;
}

.ai-showcase .section-title {
    margin-bottom: 40px;
}

.ai-feature-card {
    background: var(--light-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 20px;
    box-shadow: none;
    height: auto;
}

.ai-icon {
    width: 56px;
    height: 56px;
    font-size: 1.5rem;
    margin-bottom: 16px;
    box-shadow: none;
}

.ai-feature-card h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.ai-feature-card p {
    font-size: 0.9375rem;
    margin-bottom: 12px;
}

.ai-feature-card ul {
    font-size: 0.875rem;
    padding-left: 16px;
}

.ai-feature-card li {
    margin-bottom: 6px;
}

/* ===== 移动端细化 ===== */
@media (max-width: 576px) {
    /* 预约 */
    .reservation-title {
        font-size: 1.5rem;
    }
    .reservation-subtitle {
        font-size: 0.875rem;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
    .countdown-item {
        min-width: 56px;
        padding: 8px 6px;
    }
    .countdown-number {
        font-size: 1.25rem;
    }
    .preferences-row {
        gap: 8px;
    }
    .preferences-row label {
        padding: 5px 8px;
        font-size: 0.8125rem;
    }

    /* AI 功能 */
    .ai-showcase {
        padding: 40px 16px;
    }
    .ai-feature-card {
        padding: 20px 16px;
        margin-bottom: 16px;
    }
    .ai-icon {
        width: 48px;
        height: 48px;
        font-size: 1.25rem;
    }
}

/* ===== 暗色主题变量补全 ===== */
:root {
    --primary-color: #FF7900;
    --accent-color: #f9ab00;
    --light-bg: #f8f9fa;
    --text-primary: #333;
    --text-secondary: #666;
    --border-color: #e0e0e0;
}

body.dark-theme {
    --light-bg: #1e1e1e;
    --text-primary: #e0e0e0;
    --text-secondary: #a0a0a0;
    --border-color: #333;
}

/* 暗色下扁平按钮颜色微调 */
body.dark-theme .btn-reservation {
    background: var(--accent-color);
}
body.dark-theme .countdown-item,
body.dark-theme .form-control,
body.dark-theme .preferences-row label,
body.dark-theme .benefit-item,
body.dark-theme .ai-feature-card {
    background: #252525;
    border-color: #333;
}
body.dark-theme .form-control:focus {
    border-color: var(--accent-color);
}