/* ============================================
   页面样式文件 - 统一管理所有页面特定样式
   使用页面body类名避免样式冲突
   ============================================ */

/* ========== 公共样式（多个页面共用） ========== */

/* PC端强制显示滚动条，避免布局右移 */
@media (min-width: 768px) {
    html {
        overflow-y: scroll;
    }
}

/* 页面容器基础样式 */
.page-container {
    min-height: 100vh;
    background: #f5f7f9;
    width: 100%;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-y;
}

/* 页面容器需要为导航栏留出空间 */
.page-container {
    padding-top: 70px;
}

/* 表单卡片 */
.form-card {
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    padding: 0;
    margin-bottom: 20px;
    border: 0;
}

/* 表单头部 */
.form-header {
    margin-top: 20px;
    margin-bottom: 20px;
    text-align: center;
}

.form-header h1 {
    font-size: 1.2rem;
    font-weight: 500;
    color: #212529;
    margin: 15px 0;
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
    padding: 0;
    border: none;
    line-height: 1.4;
    letter-spacing: -0.5px;
}

/* 表单组 */
.form-group {
    margin-bottom: 20px;
}

/* 按钮基础样式 */
.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 12px 16px;
    background: #3a7bd5;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    line-height: 1.5;
    box-sizing: border-box;
    min-height: 44px;
}

.btn:hover {
    background: #2d6bc7;
}

.btn:active {
    background: #2563c0;
}

.btn[disabled] {
    opacity: 0.6;
    background: #cccccc;
    cursor: not-allowed;
}

.btn-block {
    display: block;
    width: 100%;
}

.btn span {
    display: inline-block;
    line-height: 1.5;
}

/* 信息卡片 */
.info-card {
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    padding: 0;
    margin-bottom: 20px;
    border: 0;
}

.info-card:last-of-type {
    margin-bottom: 0;
}

.info-header {
    margin-bottom: 10px;
}

.info-title {
    font-size: 18px;
    font-weight: 600;
    color: #212529;
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
    padding: 0;
    border: none;
}

.info-content {
    color: #6c757d;
    line-height: 1.6;
    font-size: 14px;
}

.info-content span {
    display: block;
    margin-bottom: 8px;
}

.info-content p {
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
    padding: 0;
    margin-bottom: 8px;
}

.info-divider {
    height: 1px;
    background: #e5e7eb;
    margin: 20px 0;
}

/* 全局button样式 */
button {
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
}

button::after {
    border: none;
}

input, textarea {
    font-size: 14px;
}

/* ========== 订单查询页面 (orders-page) ========== */
.orders-page .page-container {
    padding: 0;
    padding-bottom: 0px;
    padding-top: 0;
}

@media (min-width: 768px) {
    .orders-page .success-banner {
        width: 100vw;
        margin-left: calc(-50vw + 50%);
        margin-right: calc(-50vw + 50%);
        max-width: none;
    }
}

/* 成功横幅 */
.orders-page .success-banner {
    width: 100vw;
    margin: 0 calc(-50vw + 50%);
    padding: 90px 20px 40px;
    background: linear-gradient(135deg, #3a7bd5 0%, #2f6fcc 100%);
    color: white;
    text-align: center;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
}

.orders-page .success-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.orders-page .success-banner-content {
    position: relative;
    z-index: 1;
}

.orders-page .success-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    margin: 0 auto 16px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    animation: successPulse 2s infinite;
    line-height: 1;
    font-size: 48px;
    color: #3a7bd5;
}

@keyframes successPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.15); }
    100% { transform: scale(1); }
}

.orders-page .success-title {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 12px;
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
    padding: 0;
    border: none;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.orders-page .success-subtitle {
    font-size: 14px;
    margin-bottom: 16px;
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
    padding: 0;
    opacity: 0.95;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
}

/* 搜索区域 */
.orders-page .search-section {
    background: transparent;
}

.orders-page .empty-state {
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    padding: 0;
    margin: 25px 20px 20px 20px;
}

.orders-page .search-header {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 20px;
}

.orders-page .search-icon-wrapper {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    flex-shrink: 0;
    box-shadow: 0 8px 24px rgba(102, 126, 234, 0.3);
}

.orders-page .search-title {
    font-weight: 600;
    font-size: 18px;
    color: #0f172a;
    margin: 0 0 4px 0;
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
    padding: 0;
    border: none;
}

.orders-page .search-subtitle {
    color: #64748b;
    font-size: 14px;
    margin: 0;
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
    padding: 0;
}

.orders-page .search-form {
    position: relative;
    margin-bottom: 16px;
}

.orders-page .search-input-wrapper {
    position: relative;
    display: flex;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.04);
    overflow: hidden;
}

.orders-page .search-input-wrapper:focus-within {
    border-color: #93c5fd;
    box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.12), 0 6px 18px rgba(0, 0, 0, 0.06);
}

.orders-page .search-input {
    flex: 1;
    height: 48px;
    border: none;
    outline: none;
    padding: 0 16px;
    font-size: 14px;
    color: #0f172a;
    background: transparent;
}

.orders-page .search-input::placeholder {
    color: #94a3b8;
}

.orders-page .search-btn-icon {
    height: 48px;
    padding: 0 16px;
    background: transparent;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #3b82f6;
    cursor: pointer;
}

.orders-page .search-examples {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.orders-page .example-tag {
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    color: #475569;
    padding: 8px 14px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    border: 1px solid transparent;
}

.orders-page .example-tag:hover {
    background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e1 100%);
}

.orders-page .search-error {
    padding: 12px 15px;
    background: #fff5f5;
    color: #dc3545;
    border-radius: 4px;
    margin-bottom: 16px;
    border-left: 3px solid #dc3545;
    font-size: 14px;
    display: none;
}

.orders-page .search-error.show {
    display: block;
}

.orders-page .loading-state {
    padding: 30px;
    color: #6c757d;
    font-size: 14px;
    text-align: center;
    display: none;
}

.orders-page .loading-state.show {
    display: block;
}

.orders-page .btn-back-list {
    border-radius: 10px;
    padding: 12px 16px;
    font-weight: 700;
    background: #fff;
    border: 1px solid #e5e7eb;
    color: #0f172a;
    margin: 6px 20px 16px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    line-height: 1.5;
    position: relative;
    z-index: 10;
    width: calc(100% - 40px);
    cursor: pointer;
}

.orders-page .btn-back-list:active {
    background: #f5f5f5;
    transform: scale(0.98);
}

/* 说明内容区域 */
.orders-page .content-section {
    padding: 0 20px 30px;
    max-width: 100%;
}

.orders-page .content-card {
    background: white;
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.orders-page .content-card:last-child {
    margin-bottom: 10px;
}

.orders-page .content-card-title {
    font-size: 18px;
    font-weight: 600;
    color: #0f172a;
    margin: 0 0 16px 0;
    padding: 0;
    border: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.orders-page .content-card-title::before {
    content: '';
    width: 4px;
    height: 18px;
    background: linear-gradient(135deg, #3a7bd5 0%, #2f6fcc 100%);
    border-radius: 2px;
}

.orders-page .content-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.orders-page .content-list-item {
    padding: 12px 0;
    border-bottom: 1px solid #f1f5f9;
    font-size: 14px;
    line-height: 1.6;
    color: #475569;
}

.orders-page .content-list-item:last-child {
    border-bottom: none;
}

.orders-page .content-list-item strong {
    color: #0f172a;
    font-weight: 600;
}

.orders-page .content-text {
    font-size: 14px;
    line-height: 1.8;
    color: #475569;
    margin: 0 0 12px 0;
    padding: 0;
}

.orders-page .content-text:last-child {
    margin-bottom: 0;
}

.orders-page .content-text strong {
    color: #0f172a;
    font-weight: 600;
}

@media (min-width: 768px) {
    .orders-page .content-section {
        max-width: 740px;
        margin: 0 auto;
    }
}

/* ========== 提交表单页面 (submit-page) ========== */
.submit-page .page-container {
    padding: 70px 20px 25px 20px; /* 保留顶部70px为导航栏留出空间 */
}

/* 隐私与加密提示 */
.submit-page .privacy-banner {
    display: flex;
    align-items: center;
    gap: 6px;
    background: #fff0ef;
    color: #dc3545;
    border-radius: 6px;
    padding: 10px 12px;
    margin-bottom: 12px;
    font-size: 14px;
}

.submit-page .privacy-banner .lock {
    font-size: 16px;
    color: #dc3545 !important;
}

.submit-page .privacy-banner p {
    margin: 0;
    padding: 0;
    color: #dc3545;
    font-size: 14px;
}

/* 同意勾选行 */
.submit-page .consent-row {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #495057;
    margin: 8px 0 12px;
    font-size: 14px;
}

.submit-page .consent-row input[type="checkbox"] {
    transform: scale(0.88);
    transform-origin: left center;
    margin-right: 2px;
}

.submit-page .consent-row .link {
    color: #007bff;
    font-size: 14px;
    cursor: pointer;
}

.submit-page .consent-row.consent-error {
    color: #dc3545;
    border: 1px solid #dc3545;
    border-radius: 6px;
    padding: 6px 10px;
    background-color: #fff5f5;
}

/* 表单标签 */
.submit-page .form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333333;
    font-size: 15px;
}

.submit-page .required {
    color: #dc3545;
    margin-left: 4px;
}

.submit-page .optional {
    color: #6c757d;
    font-weight: 400;
    font-size: 13px;
    margin-left: 4px;
}

.submit-page .recommended {
    color: #3a7bd5;
    font-weight: 400;
    font-size: 13px;
    margin-left: 4px;
}

.submit-page .form-hint i {
    margin-right: 4px;
    color: #17a2b8;
}

/* 输入框样式 */
.submit-page .input-field {
    padding: 12px 15px;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    font-size: 16px;
    background: #ffffff;
    width: 100%;
    height: 46px;
    box-sizing: border-box;
    line-height: 1.5;
    outline: none;
    user-select: text;
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    touch-action: manipulation;
}

.submit-page .input-field:focus {
    outline: none;
    border-color: #dee2e6;
}

.submit-page .input-error {
    border-color: #dc3545;
}

.submit-page .input-error:focus {
    border-color: #dc3545;
    outline: none;
}

/* 提示文字 */
.submit-page .form-hint {
    font-size: 14px;
    color: #6c757d;
    margin-top: 6px;
    display: block;
    border: none;
    padding: 0;
    background: transparent;
}

.submit-page .error-text {
    color: #dc3545;
    border: none !important;
    padding: 0;
    background: transparent;
}

.submit-page .form-hint.error-text {
    color: #dc3545;
    border: none !important;
    padding: 0;
    background: transparent;
}

/* 提交按钮 */
.submit-page .btn {
    margin-top: 10px;
}

/* 申请记录卡片 */
.submit-page .applications-card {
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    padding: 0;
    margin-bottom: 20px;
    border: 0;
    overflow: hidden;
}

.submit-page .applications-card:last-of-type {
    margin-bottom: 0;
}

.submit-page .applications-header {
    margin-bottom: 15px;
}

.submit-page .applications-container {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.submit-page .applications-list {
    font-size: 14px;
    will-change: transform;
    transform: translateZ(0);
    backface-visibility: hidden;
    contain: content;
}

.submit-page .applications-list.animate {
    animation: scroll-up 18s linear infinite;
}

@keyframes scroll-up {
    0% { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(0, -50%, 0); }
}

.submit-page .application-item {
    padding: 4px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.submit-page .row-first {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: nowrap;
    white-space: nowrap;
}

.submit-page .row-second {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 0;
}

.submit-page .application-item:last-child {
    border-bottom: none;
}

.submit-page .application-date {
    font-size: 14px;
    color: #6c757d;
    flex-shrink: 0;
}

.submit-page .application-user {
    font-size: 14px;
    color: #212529;
    flex-shrink: 0;
}

.submit-page .application-package {
    color: #007bff;
    font-size: 14px;
    flex-shrink: 0;
}

.submit-page .application-address {
    color: #6c757d;
    font-size: 14px;
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
}

.submit-page .application-status {
    color: #28a745;
    font-size: 14px;
    margin-left: auto;
}

.submit-page .info-card:last-of-type {
    margin-bottom: 0;
}

.submit-page .info-divider {
    background: #e2e8f0;
}

/* 确保所有span标签正确显示 */
.submit-page span {
    display: inline-block;
}

.submit-page .form-label span,
.submit-page .privacy-banner span,
.submit-page .consent-row span:not(.link),
.submit-page .location-text,
.submit-page .location-placeholder {
    display: inline;
}

.submit-page .form-hint,
.submit-page .info-title,
.submit-page .application-date,
.submit-page .application-user,
.submit-page .application-package,
.submit-page .application-address,
.submit-page .application-status {
    display: block;
}

/* ========== 客服页面 (service-page) ========== */
.service-page .page-container {
    padding: 70px 20px 20px 20px; /* 保留顶部70px为导航栏留出空间 */
}

/* 增加客服页面标题与logo区域的间距 */
.service-page .form-header {
    margin-top: 30px;
}

/* ========== FAQ页面 (faq-page) ========== */
.faq-page .page-container {
    padding: 70px 20px 25px 20px; /* 保留顶部70px为导航栏留出空间 */
}

.faq-page .form-card:last-of-type {
    margin-bottom: 0;
}

/* 常见问题样式 */
.faq-page .faq-list {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    margin-bottom: 20px;
}

.faq-page .faq-list:last-of-type {
    margin-bottom: 0;
}

.faq-page .faq-item {
    border-bottom: 1px solid #f0f0f0;
}

.faq-page .faq-item:last-child {
    border-bottom: none;
}

.faq-page .faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    font-size: 15px;
    color: #333;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s;
}

.faq-page .faq-question:hover {
    background-color: #f8f9fa;
}

.faq-page .faq-question-text {
    font-size: 15px;
    color: #333;
    font-weight: 500;
    margin: 0;
    margin-left: 0;
    margin-right: 0;
    padding: 0;
    border: none;
    flex: 1;
}

.faq-page .faq-icon {
    font-size: 20px;
    color: #3a7bd5;
    font-weight: bold;
    margin-left: 10px;
    flex-shrink: 0;
}

.faq-page .faq-answer {
    padding: 0 15px 15px;
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    display: none;
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 0;
}

.faq-page .faq-item.open .faq-answer {
    display: block;
}

/* ========== 首页 (index-page) ========== */
.index-page .container {
    min-height: 100vh;
    background: #f5f7f9;
    padding: 0 !important;
    padding-bottom: 25px !important;
    margin: 0;
    width: 100%;
}

@media (min-width: 768px) {
    .index-page .container {
        max-width: 740px;
        margin: 0 auto;
        box-shadow: none;
        position: relative;
    }
    
    .index-page body {
        background-color: #ffffff;
    }
}

/* 确保所有span标签默认显示 */
.index-page span {
    display: inline-block;
}

.index-page .hero-title,
.index-page .section-title,
.index-page .cta-title {
    display: block;
}

.index-page .highlight-title,
.index-page .highlight-desc,
.index-page .map-name,
.index-page .step-desc,
.index-page .trust-number,
.index-page .trust-label {
    display: block;
}

.index-page .application-date,
.index-page .application-user,
.index-page .application-package,
.index-page .application-address,
.index-page .application-status {
    display: inline-block;
}

/* 顶部Banner */
.index-page .hero-banner {
    text-align: center;
    padding: 50px 20px 70px;
    background: linear-gradient(135deg, #3a7bd5 0%, #00d2ff 100%);
    color: white;
    width: 100%;
    margin: 0;
    box-sizing: border-box;
    display: block;
    position: relative; /* override global header fixed */
    top: auto;
    left: auto;
    right: auto;
    z-index: 0;
    box-shadow: none;
}

/* PC端：限制banner宽度并居中 */
@media (min-width: 768px) {
    .index-page .hero-banner {
        max-width: 740px;
        width: 100%;
        margin-left: auto;
        margin-right: auto;
        padding-left: 20px;
        padding-right: 20px;
        display: block;
    }
}

.index-page .logo {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    display: block;
}

.index-page .hero-title {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 8px;
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
    padding: 0;
    border: none;
}

.index-page .hero-subtitle {
    font-size: 18px;
    margin-bottom: 10px;
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
    padding: 0;
    opacity: 0.95;
}

.index-page .hero-desc {
    font-size: 14px;
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
    padding: 0;
    opacity: 0.9;
}

/* 核心亮点 */
.index-page .highlights {
    display: flex;
    justify-content: space-around;
    padding: 30px 15px;
    background: white;
    margin: -30px 15px 20px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
    position: relative;
    z-index: 10;
}

.index-page .highlight-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

.index-page .highlight-icon {
    font-size: 36px;
    margin-bottom: 8px;
}

.index-page .highlight-title {
    font-size: 16px;
    font-weight: bold;
    color: #333;
    margin-bottom: 4px;
}

.index-page .highlight-desc {
    font-size: 14px;
    color: #999;
}

/* 按钮样式 */
.index-page .btn-primary {
    background: linear-gradient(135deg, #3a7bd5 0%, #00d2ff 100%);
    color: white;
    border: none;
    border-radius: 14px;
    font-size: 16px;
    font-weight: bold;
    box-shadow: 0 10px 24px rgba(58, 123, 213, 0.35), 0 2px 6px rgba(0, 0, 0, 0.06);
    background-size: 200% 200%;
    animation: gradient-flow 8s ease infinite;
}

.index-page .btn-large {
    width: 94%;
    height: auto;
    padding: 16px 20px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.15s ease, box-shadow 0.2s ease;
}

.index-page .btn-row {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.index-page .btn-text {
    font-size: 18px;
    font-weight: bold;
}

/* 主CTA包装器 */
.index-page .main-cta-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 30px 15px 35px;
    padding: 25px 20px;
    background: linear-gradient(135deg, rgba(58, 123, 213, 0.05) 0%, rgba(0, 210, 255, 0.05) 100%);
    border-radius: 16px;
    position: relative;
}

.index-page .cta-hint {
    font-size: 14px;
    color: #3a7bd5;
    margin-bottom: 16px;
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
    padding: 0 20px;
    text-align: center;
    font-weight: 500;
    letter-spacing: 0.5px;
    position: relative;
}

.index-page .cta-hint::before,
.index-page .cta-hint::after {
    content: '⚡';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 14px;
    color: #ff8e53;
    animation: pulse-icon 2s ease-in-out infinite;
}

.index-page .cta-hint::before {
    left: 0;
}

.index-page .cta-hint::after {
    right: 0;
}

@keyframes pulse-icon {
    0%, 100% { opacity: 0.6; transform: translateY(-50%) scale(1); }
    50% { opacity: 1; transform: translateY(-50%) scale(1.15); }
}

.index-page .btn-arrow {
    font-size: 18px;
    opacity: 0.95;
    transform: translateX(0);
    transition: transform 0.2s ease;
}

.index-page .btn-press {
    transform: scale(0.985);
    box-shadow: 0 6px 18px rgba(58, 123, 213, 0.28), 0 2px 4px rgba(0, 0, 0, 0.05);
}

.index-page .btn-press .btn-arrow {
    transform: translateX(4px);
}

@keyframes gradient-flow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.index-page .btn-secondary {
    width: 90%;
    margin: 15px auto 0;
    background: white;
    color: #3a7bd5;
    border: 1px solid #3a7bd5;
    border-radius: 8px;
    font-size: 16px;
    padding: 12px 20px;
}

/* 区块通用样式 */
.index-page .section {
    margin: 25px 0;
    padding: 0 15px;
}

.index-page .section-header {
    text-align: center;
    margin-bottom: 20px;
}

.index-page .section-title {
    font-size: 22px;
    font-weight: bold;
    color: #333;
    margin-bottom: 8px;
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
    padding: 0;
    border: none;
}

.index-page .section-subtitle {
    font-size: 14px;
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
    padding: 0;
    color: #999;
}

/* 地图平台 */
.index-page .map-platforms {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 12px;
}

.index-page .platform-item {
    width: calc((100% - 24px) / 3);
    flex: 0 0 calc((100% - 24px) / 3);
    box-sizing: border-box;
    background: white;
    border-radius: 10px;
    padding: 15px 10px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.index-page .map-logo-wrapper {
    width: 100%;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
}

.index-page .map-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 2px;
}

.index-page .map-name {
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

/* 服务流程 */
.index-page .process-steps {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.index-page .step-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.index-page .step-item:last-child {
    margin-bottom: 0;
}

.index-page .step-number {
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background: linear-gradient(135deg, #3a7bd5 0%, #00d2ff 100%);
    color: white;
    border-radius: 50%;
    font-size: 18px;
    font-weight: bold;
    margin-right: 15px;
    flex-shrink: 0;
}

.index-page .step-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.index-page .step-title {
    font-size: 16px;
    font-weight: bold;
    color: #333;
    margin-bottom: 4px;
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
    padding: 0;
    border: none;
}

.index-page .step-desc {
    font-size: 14px;
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
    padding: 0;
    color: #999;
}

/* 信任背书 */
.index-page .trust-section {
    display: flex;
    justify-content: space-around;
    background: white;
    /* 关键：左右改成 0，让它跟上面的案例卡片一样是 15px 内边距 */
    margin: 25px 0;
    padding: 25px 15px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.index-page .trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

.index-page .trust-number {
    font-size: 24px;
    font-weight: bold;
    color: #3a7bd5;
    margin-bottom: 5px;
}

.index-page .trust-label {
    font-size: 14px;
    color: #999;
}

/* 成功案例轮播 */
.index-page .testimonials {
    height: auto;
    min-height: 240px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

.index-page .testimonials-wrapper {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    height: 100%;
    width: 100%;
}

.index-page .testimonials-wrapper::-webkit-scrollbar {
    display: none;
}

.index-page .testimonials-indicator {
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    z-index: 10;
}

.index-page .testimonials-indicator-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
}

.index-page .testimonials-indicator-dot.active {
    width: 16px;
    height: 6px;
    border-radius: 3px;
    background: #3a7bd5;
}

.index-page .testimonial-card {
    background: white;
    border-radius: 12px;
    padding: 0;
    margin: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    width: 100%;
    box-sizing: border-box;
    flex: 0 0 100%;
    scroll-snap-align: start;
    overflow: hidden;
}

.index-page .testimonial-image-wrapper {
    width: 100%;
    aspect-ratio: 5 / 3;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, #f5f7f9 0%, #e9ecef 100%);
    flex-shrink: 0;
}

.index-page .testimonial-image {
    width: 100%;
    aspect-ratio: 5 / 3;
    object-fit: contain;
    display: block;
    flex-shrink: 0;
    background: linear-gradient(135deg, #f5f7f9 0%, #e9ecef 100%);
}

.index-page .testimonial-content.no-image {
    padding-top: 20px;
}

.index-page .testimonial-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: #999;
    font-size: 12px;
    background: linear-gradient(135deg, #f5f7f9 0%, #e9ecef 100%);
}

.index-page .testimonial-image-placeholder::before {
    content: '📷';
    font-size: 32px;
    margin-bottom: 4px;
    opacity: 0.5;
}

.index-page .testimonial-content {
    padding: 12px 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 0;
}

.index-page .testimonial-text {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    margin-bottom: 8px;
    flex-shrink: 0;
}

.index-page .testimonial-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 8px;
    border-top: 1px solid #f0f0f0;
    flex-shrink: 0;
}

.index-page .testimonial-name {
    font-size: 14px;
    font-weight: bold;
    color: #333;
}

.index-page .testimonial-industry {
    font-size: 14px;
    color: #999;
}

/* 最新申请记录 */
.index-page .applications-card {
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    padding: 0;
    margin-bottom: 10px;
    border: 0;
    overflow: hidden;
}

.index-page .applications-container {
    height: 160px;
    overflow: hidden;
    position: relative;
}

.index-page .applications-list {
    font-size: 14px;
    will-change: transform;
    transform: translateZ(0);
    backface-visibility: hidden;
    contain: content;
}

.index-page .applications-list.animate {
    animation: scroll-up 18s linear infinite;
}

.index-page .application-item {
    padding: 4px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.index-page .application-item:last-child {
    border-bottom: none;
}

.index-page .row-first {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: nowrap;
    white-space: nowrap;
}

.index-page .row-second {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 0;
}

.index-page .application-date {
    font-size: 14px;
    color: #6c757d;
    flex-shrink: 0;
}

.index-page .application-user {
    font-size: 14px;
    color: #212529;
    flex-shrink: 0;
}

.index-page .application-package {
    color: #3a7bd5;
    font-size: 14px;
    flex-shrink: 0;
}

.index-page .application-address {
    color: #6c757d;
    font-size: 14px;
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
}

.index-page .application-status {
    color: #28a745;
    font-size: 14px;
    margin-left: auto;
}

/* 常见问题 */
.index-page .faq-list {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.index-page .faq-item {
    border-bottom: 1px solid #f0f0f0;
}

.index-page .faq-item:last-child {
    border-bottom: none;
}

.index-page .faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    font-size: 15px;
    color: #333;
    font-weight: 500;
    cursor: pointer;
}

.index-page .faq-question-text {
    font-size: 15px;
    color: #333;
    font-weight: 500;
    margin: 0;
    margin-left: 0;
    margin-right: 0;
    padding: 0;
    border: none;
    flex: 1;
}

.index-page .faq-icon {
    font-size: 20px;
    color: #3a7bd5;
    font-weight: bold;
}

.index-page .faq-answer {
    padding: 0 15px 15px;
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    display: none;
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 0;
}

.index-page .faq-item.open .faq-answer {
    display: block;
}

.index-page .more-link {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 15px;
    padding: 12px;
    background: #f8f9fa;
    border-radius: 8px;
    font-size: 14px;
    color: #3a7bd5;
    cursor: pointer;
}

.index-page .arrow {
    margin-left: 8px;
    color: #3a7bd5;
}

/* 底部CTA */
.index-page .bottom-cta {
    text-align: center;
    padding: 30px 20px;
    margin: 30px 15px 0;
    background: linear-gradient(135deg, #f8f9ff 0%, #fff 100%);
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.index-page .cta-title {
    font-size: 20px;
    font-weight: bold;
    color: #333;
    margin-bottom: 8px;
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
    padding: 0;
    border: none;
}

.index-page .cta-subtitle {
    font-size: 14px;
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
    padding: 0;
    color: #999;
    margin-bottom: 20px;
}

.index-page .bottom-cta {
    margin-bottom: 10px;
}

.index-page .text-ellipsis {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.index-page .mt-10 { margin-top: 10px; }
.index-page .mt-20 { margin-top: 20px; }
.index-page .mb-10 { margin-bottom: 10px; }
.index-page .mb-20 { margin-bottom: 20px; }

/* ========== 隐私政策页面 (privacy-page) ========== */
.privacy-page .navbar > .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
    height: 100%;
    padding: 0 20px;
    position: relative;
}

.privacy-page .navbar-back {
    position: absolute;
    left: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: transparent;
    border: none;
    cursor: pointer;
    font-size: 20px;
    color: #333;
    text-decoration: none;
    transition: background-color 0.2s;
    z-index: 10;
}

.privacy-page .navbar-back:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

.privacy-page .navbar-back:active {
    background-color: rgba(0, 0, 0, 0.1);
}

.privacy-page .navbar-brand {
    margin: 0 auto;
    flex: 1;
    justify-content: center;
}

.privacy-page .page-container {
    background: #f5f7f9;
    padding: 20px;
    padding-bottom: 78px;
    padding-top: 90px;
    min-height: 100vh;
    width: 100%;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-y;
}

.privacy-page .info-card {
    background: transparent;
    border-radius: 0;
    padding: 20px;
    margin: 0;
    box-shadow: none;
    border: none;
}

.privacy-page .info-content h2 {
    font-size: 16px;
    font-weight: 600;
    color: #212529;
    margin-top: 20px;
    margin-bottom: 12px;
    margin-left: 0;
    margin-right: 0;
    padding: 0;
    border: none;
}

.privacy-page .info-content h2:first-of-type {
    margin-top: 0;
}

.privacy-page .info-content p {
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
    padding: 0;
    margin-bottom: 12px;
    color: #6c757d;
    line-height: 1.6;
    font-size: 14px;
}

.privacy-page .info-content span {
    display: block;
    margin-bottom: 8px;
}

.privacy-page .info-content {
    color: #6c757d;
    font-size: 14px;
    line-height: 1.8;
}

.privacy-page .info-content span:first-of-type {
    font-weight: 600;
    color: #212529;
    font-size: 16px;
    margin-bottom: 8px;
}

