38283-vm/policy.php
Flatlogic Bot 27341ce40d 商场
2026-02-08 11:51:31 +00:00

83 lines
5.1 KiB
PHP
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?php
include 'includes/header.php';
$type = $_GET['type'] ?? 'payment';
$title = ($type === 'payment') ? '支付说明' : '售后政策';
?>
<div class="row justify-content-center">
<div class="col-lg-9">
<div class="glass-card p-5">
<h1 class="display-4 fw-bold mb-5 d-flex align-items-center text-dark">
<i class="bi <?php echo ($type === 'payment') ? 'bi-credit-card' : 'bi-shield-check'; ?> me-3 text-primary"></i>
<?php echo $title; ?>
</h1>
<?php if ($type === 'payment'): ?>
<section class="mb-5">
<h3 class="text-dark mb-4"><i class="bi bi-1-circle me-2 text-primary"></i> 为什么选择 USDT 支付?</h3>
<p class="text-muted lh-lg">USDT (Tether) 是一种与美元挂钩的加密货币,具有交易快、手续费低、全球通用等特点。通过 USDT 支付,可以确保您的资金安全和隐私,同时实现全自动化的即时发货。</p>
</section>
<section class="mb-5">
<h3 class="text-dark mb-4"><i class="bi bi-2-circle me-2 text-primary"></i> 支付流程</h3>
<div class="row g-4">
<div class="col-md-4">
<div class="p-4 border border-light bg-light rounded-4 h-100 shadow-sm">
<h5 class="text-dark">1. 选择商品</h5>
<p class="small text-muted mb-0">将您需要的软件 or 账号加入购物车并提交订单。</p>
</div>
</div>
<div class="col-md-4">
<div class="p-4 border border-light bg-light rounded-4 h-100 shadow-sm">
<h5 class="text-dark">2. 转账支付</h5>
<p class="small text-muted mb-0">复制收款地址或扫码,使用您的钱包转入精确金额。</p>
</div>
</div>
<div class="col-md-4">
<div class="p-4 border border-light bg-light rounded-4 h-100 shadow-sm">
<h5 class="text-dark">3. 自动交付</h5>
<p class="small text-muted mb-0">区块链确认后,系统将自动跳转并提供您的卡密信息。</p>
</div>
</div>
</div>
</section>
<section class="mb-5">
<h3 class="text-dark mb-4"><i class="bi bi-exclamation-triangle-fill me-2 text-warning"></i> 注意事项</h3>
<ul class="text-muted lh-lg">
<li>请务必使用 <strong class="text-primary">TRC20 (Tron)</strong> 网络,使用其他网络(如 ERC20, BEP20将导致资金丢失。</li>
<li>请确保转账金额与订单显示的金额 <strong class="text-primary">完全一致</strong>。</li>
<li>支付完成后请保留交易哈希 (TXID) 以备售后查询。</li>
<li>订单有效期为 60 分钟,请在倒计时结束前完成转账。</li>
</ul>
</section>
<?php else: ?>
<section class="mb-5">
<h3 class="text-dark mb-4"><i class="bi bi-patch-check-fill me-2 text-success"></i> 质保范围</h3>
<p class="text-muted lh-lg">我们对所有售出的账号提供首登质保。即在购买后 24 小时内,如出现无法登录、账号密码错误等非人为操作问题,我们将为您免费更换。</p>
</section>
<section class="mb-5">
<h3 class="text-dark mb-4"><i class="bi bi-x-circle-fill me-2 text-danger"></i> 非质保情况</h3>
<ul class="text-muted lh-lg">
<li>登录后因发布违规信息、频繁切换 IP 导致的封号。</li>
<li>因使用劣质代理 (VPN) 导致的登录异常。</li>
<li>购买后超过 24 小时未登录核对的订单。</li>
<li>由于官方政策调整导致的系统性风控。</li>
</ul>
</section>
<section class="mb-5">
<h3 class="text-dark mb-4"><i class="bi bi-headset me-2 text-primary"></i> 售后申请流程</h3>
<p class="text-muted lh-lg">如遇问题,请准备好您的 <strong class="text-primary">订单号</strong> 和 <strong class="text-primary">异常截图</strong>,联系我们的 Telegram 在线客服。客服将在 1-12 小时内处理您的请求。</p>
<div class="mt-4">
<a href="<?php echo $settings['tg_support'] ?? '#'; ?>" class="btn btn-primary px-5 py-3 rounded-pill">联系售后客服</a>
</div>
</section>
<?php endif; ?>
</div>
</div>
</div>
<?php include 'includes/footer.php'; ?>