Files
exchange-2.0/resources/views/pages/landing/1688-vip-payment-landing-page-wf-comparison-google.blade.php
T
2026-01-05 19:07:20 +08:00

1284 lines
64 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.
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>1688专属子账号代付 | CIEF - 无需Alipay 完整E-invoice 比WorldFirst更简单</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Microsoft YaHei', sans-serif;
line-height: 1.6;
color: #333;
}
/* Hero Section */
.hero {
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
color: white;
padding: 80px 20px;
text-align: center;
}
.hero h1 {
font-size: 2.5em;
margin-bottom: 20px;
font-weight: 700;
}
.hero .subtitle {
font-size: 1.3em;
margin-bottom: 30px;
opacity: 0.95;
}
.hero .cta-buttons {
display: flex;
gap: 20px;
justify-content: center;
flex-wrap: wrap;
margin-top: 40px;
}
.btn {
padding: 15px 40px;
font-size: 1.1em;
border: none;
border-radius: 8px;
cursor: pointer;
font-weight: 600;
transition: all 0.3s;
text-decoration: none;
display: inline-block;
}
.btn-primary {
background: white;
color: #667eea;
}
.btn-primary:hover {
transform: translateY(-2px);
box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}
.btn-secondary {
background: rgba(255,255,255,0.2);
color: white;
border: 2px solid white;
}
.btn-secondary:hover {
background: rgba(255,255,255,0.3);
}
/* Comparison Section */
.comparison {
padding: 80px 20px;
background: #f8f9fa;
}
.container {
max-width: 1200px;
margin: 0 auto;
}
.section-title {
text-align: center;
font-size: 2.2em;
margin-bottom: 50px;
color: #2d3748;
}
.comparison-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
gap: 30px;
margin-top: 40px;
}
.comparison-card {
background: white;
border-radius: 12px;
padding: 40px;
box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.comparison-card.highlight {
border: 3px solid #667eea;
position: relative;
}
.comparison-card.highlight::before {
content: "✨ 推荐方案";
position: absolute;
top: -15px;
left: 50%;
transform: translateX(-50%);
background: #667eea;
color: white;
padding: 5px 20px;
border-radius: 20px;
font-size: 0.9em;
font-weight: 600;
}
.comparison-card h3 {
font-size: 1.8em;
margin-bottom: 20px;
color: #2d3748;
}
.comparison-card .model-type {
display: inline-block;
padding: 8px 16px;
background: #e2e8f0;
border-radius: 20px;
font-size: 0.9em;
margin-bottom: 20px;
color: #4a5568;
}
.comparison-card.highlight .model-type {
background: #667eea;
color: white;
}
.feature-list {
list-style: none;
margin: 20px 0;
}
.feature-list li {
padding: 12px 0;
border-bottom: 1px solid #e2e8f0;
display: flex;
align-items: flex-start;
}
.feature-list li:last-child {
border-bottom: none;
}
.feature-icon {
margin-right: 10px;
font-size: 1.2em;
flex-shrink: 0;
}
.icon-yes {
color: #48bb78;
}
.icon-no {
color: #f56565;
}
/* Problem Section */
.problem {
padding: 80px 20px;
background: white;
}
.problem-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 30px;
margin-top: 40px;
}
.problem-card {
background: #fff5f5;
border-left: 4px solid #f56565;
padding: 30px;
border-radius: 8px;
}
.problem-card h3 {
color: #c53030;
margin-bottom: 15px;
font-size: 1.3em;
}
.problem-card blockquote {
font-style: italic;
color: #4a5568;
margin: 15px 0;
padding-left: 15px;
border-left: 3px solid #cbd5e0;
}
/* Invoice Example */
.invoice-example {
padding: 80px 20px;
background: #f8f9fa;
}
.invoice-comparison {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
gap: 30px;
margin-top: 40px;
}
.invoice-sample {
background: white;
border-radius: 12px;
padding: 30px;
box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.invoice-sample.bad {
opacity: 0.7;
}
.invoice-sample h3 {
margin-bottom: 20px;
font-size: 1.5em;
}
.invoice-sample.bad h3 {
color: #f56565;
}
.invoice-sample.good h3 {
color: #48bb78;
}
.invoice-content {
background: #f7fafc;
padding: 20px;
border-radius: 8px;
font-family: 'Courier New', monospace;
font-size: 0.9em;
}
.invoice-content .line {
padding: 5px 0;
}
.invoice-content .header {
font-weight: bold;
color: #2d3748;
border-bottom: 2px solid #cbd5e0;
padding-bottom: 10px;
margin-bottom: 10px;
}
.invoice-content .items {
margin: 15px 0;
}
.invoice-content .item-row {
display: grid;
grid-template-columns: 2fr 1fr 1fr 1fr;
gap: 10px;
padding: 8px 0;
border-bottom: 1px solid #e2e8f0;
}
.invoice-content .total {
font-weight: bold;
margin-top: 10px;
padding-top: 10px;
border-top: 2px solid #cbd5e0;
}
.missing-info {
background: #fff5f5;
color: #c53030;
padding: 15px;
border-radius: 8px;
margin-top: 15px;
border: 1px dashed #f56565;
}
/* Image Placeholder */
.image-placeholder {
background: #f7fafc;
border: 2px dashed #cbd5e0;
border-radius: 8px;
padding: 60px 20px;
text-align: center;
color: #718096;
min-height: 300px;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
.image-placeholder .icon {
font-size: 4em;
margin-bottom: 15px;
opacity: 0.5;
}
/* Process Section */
.process {
padding: 80px 20px;
background: white;
}
.process-steps {
display: flex;
justify-content: space-between;
margin-top: 50px;
flex-wrap: wrap;
gap: 20px;
}
.step {
flex: 1;
min-width: 200px;
text-align: center;
padding: 30px 20px;
background: #f8f9fa;
border-radius: 12px;
position: relative;
}
.step::after {
content: "";
position: absolute;
right: -20px;
top: 50%;
transform: translateY(-50%);
font-size: 2em;
color: #cbd5e0;
}
.step:last-child::after {
display: none;
}
.step-number {
display: inline-block;
width: 50px;
height: 50px;
background: #667eea;
color: white;
border-radius: 50%;
line-height: 50px;
font-size: 1.5em;
font-weight: bold;
margin-bottom: 15px;
}
.step h3 {
margin: 15px 0;
color: #2d3748;
}
/* Benefits Section */
.benefits {
padding: 80px 20px;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
color: white;
}
.benefits .section-title {
color: white;
}
.benefits-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 30px;
margin-top: 40px;
}
.benefit-card {
background: rgba(255,255,255,0.1);
backdrop-filter: blur(10px);
padding: 30px;
border-radius: 12px;
border: 1px solid rgba(255,255,255,0.2);
}
.benefit-card .icon {
font-size: 3em;
margin-bottom: 15px;
}
.benefit-card h3 {
font-size: 1.3em;
margin-bottom: 10px;
}
/* CTA Section */
.cta-section {
padding: 80px 20px;
background: #2d3748;
color: white;
text-align: center;
}
.cta-section h2 {
font-size: 2.5em;
margin-bottom: 30px;
color: white;
font-weight: 700;
}
.cta-section h3 {
color: white;
font-weight: 700;
}
.cta-section .highlight-text {
font-size: 1.3em;
margin-bottom: 40px;
color: #fbd38d;
font-weight: 600;
}
/* Footer */
footer {
background: #1a202c;
color: #a0aec0;
padding: 40px 20px;
text-align: center;
}
footer a {
color: #667eea;
text-decoration: none;
}
/* Responsive */
@media (max-width: 768px) {
.hero h1 {
font-size: 1.8em;
}
.hero .subtitle {
font-size: 1.1em;
}
.comparison-grid,
.invoice-comparison {
grid-template-columns: 1fr;
}
.process-steps {
flex-direction: column;
}
.step::after {
display: none;
}
}
</style>
</head>
<body>
<!-- Hero Section -->
<section class="hero">
<div class="container">
<h1>1688付款新方案:专属子账号代付</h1>
<p class="subtitle">无需Alipay 官方认证 完整货物明细E-invoice 符合2026 全面执行的 E-invoice 要求</p>
<div style="background: rgba(255,255,255,0.2); padding: 30px; border-radius: 12px; max-width: 950px; margin: 30px auto;">
<h3 style="margin-bottom: 25px; font-size: 1.5em;">🎯 CIEF独特优势:专属子账号模式</h3>
<div style="display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; text-align: left;">
<div style="padding: 15px; background: rgba(255,255,255,0.15); border-radius: 8px;">
<strong style="font-size: 1.1em;"> 我们提供专属子账号</strong><br>
<small style="opacity: 0.95; margin-top: 8px; display: block;">您用我们的子账号下单,我们主账号统一付款</small>
</div>
<div style="padding: 15px; background: rgba(255,255,255,0.15); border-radius: 8px;">
<strong style="font-size: 1.1em;"> 完全无需Alipay</strong><br>
<small style="opacity: 0.95; margin-top: 8px; display: block;">不需要开Alipay,不需要实名认证</small>
</div>
<div style="padding: 15px; background: rgba(255,255,255,0.15); border-radius: 8px;">
<strong style="font-size: 1.1em;"> 零冻结风险</strong><br>
<small style="opacity: 0.95; margin-top: 8px; display: block;">官方认证付款方式,绝不会冻结</small>
</div>
<div style="padding: 15px; background: rgba(255,255,255,0.15); border-radius: 8px;">
<strong style="font-size: 1.1em;"> 完整E-invoice</strong><br>
<small style="opacity: 0.95; margin-top: 8px; display: block;">逐项货物明细,可直接Stock-in做账</small>
</div>
</div>
</div>
<div style="background: rgba(255,255,255,0.15); padding: 25px; border-radius: 12px; max-width: 800px; margin: 30px auto; text-align: left;">
<h3 style="margin-bottom: 20px; font-size: 1.3em;">💡 与WorldFirst/跨境宝的关键区别</h3>
<div style="display: grid; grid-template-columns: 1fr 1fr; gap: 20px; font-size: 1.05em;">
<div>
<strong style="color: #fbd38d;">WorldFirst (跨境宝):</strong><br>
<small style="opacity: 0.9; margin-top: 5px; display: block;"> 需要您自己有Alipay账户<br> 需要绑定和实名认证<br> 只提供汇款凭证<br> 无货物明细发票</small>
</div>
<div>
<strong style="color: #a7f3d0;">CIEF 子账号:</strong><br>
<small style="opacity: 0.9; margin-top: 5px; display: block;"> 我们提供专属子账号<br> 完全无需Alipay<br> 提供完整E-invoice<br> 逐项货物明细</small>
</div>
</div>
</div>
<div class="cta-buttons">
<a href="https://gentle-toronto-bbndz4uacdz6.vapor-farm-a1.com/signup?tracking=GCLPB1006" class="btn btn-primary" target="_blank">立即获取子账号</a>
</div>
</div>
</section>
<!-- Comparison Section -->
<section style="padding: 80px 20px; background: white;" id="comparison">
<div class="container">
<h2 class="section-title">📊 服务对比:子账号模式 vs 跨境宝</h2>
<p style="text-align: center; font-size: 1.2em; color: #4a5568; margin-bottom: 50px;">
同样是解决1688付款问题,但方式完全不同
</p>
<div style="max-width: 1100px; margin: 0 auto;">
<div style="overflow-x: auto;">
<table style="width: 100%; border-collapse: collapse; background: white; box-shadow: 0 4px 15px rgba(0,0,0,0.1); border-radius: 12px; overflow: hidden;">
<thead>
<tr>
<th style="padding: 20px; text-align: left; font-size: 1.1em; min-width: 200px; font-weight: 700; background: #4a5568; color: #ffffff;">功能/服务</th>
<th style="padding: 20px; text-align: center; font-size: 1.1em; min-width: 200px; font-weight: 700; background: #4a5568; color: #ffffff;">WorldFirst<br>跨境宝</th>
<th style="padding: 20px; text-align: center; font-size: 1.1em; min-width: 200px; font-weight: 700; background: #48bb78; color: #ffffff;">CIEF<br>子账号代付 </th>
</tr>
</thead>
<tbody>
<tr style="border-bottom: 1px solid #e2e8f0;">
<td style="padding: 20px; font-weight: 600; color: #2d3748;">1688账户</td>
<td style="padding: 20px; text-align: center; color: #c53030;">需要自己注册</td>
<td style="padding: 20px; text-align: center; color: #22543d; background: #f0fff4; font-weight: 600;">我们提供专属子账号 </td>
</tr>
<tr style="border-bottom: 1px solid #e2e8f0;">
<td style="padding: 20px; font-weight: 600; color: #2d3748;">Alipay账户</td>
<td style="padding: 20px; text-align: center; color: #c53030;">必须要有<br><small style="color: #718096;">(需实名认证)</small></td>
<td style="padding: 20px; text-align: center; color: #22543d; background: #f0fff4; font-weight: 600;">完全不需要 </td>
</tr>
<tr style="border-bottom: 1px solid #e2e8f0;">
<td style="padding: 20px; font-weight: 600; color: #2d3748;">付款方式</td>
<td style="padding: 20px; text-align: center;">绑定Alipay自动扣款</td>
<td style="padding: 20px; text-align: center; background: #f0fff4; font-weight: 600;">我们主账号统一付款 </td>
</tr>
<tr style="border-bottom: 1px solid #e2e8f0;">
<td style="padding: 20px; font-weight: 600; color: #2d3748;">付款金额限制</td>
<td style="padding: 20px; text-align: center;">无限制</td>
<td style="padding: 20px; text-align: center; background: #f0fff4; font-weight: 600;">无限制 </td>
</tr>
<tr style="border-bottom: 1px solid #e2e8f0;">
<td style="padding: 20px; font-weight: 600; color: #2d3748;">发票类型</td>
<td style="padding: 20px; text-align: center; color: #c53030;">汇款凭证<br><small style="color: #718096;">(无货物明细)</small></td>
<td style="padding: 20px; text-align: center; color: #22543d; background: #f0fff4; font-weight: 600;">完整E-invoice<br><small style="color: #22543d;">(逐项货物明细)</small> </td>
</tr>
<tr style="border-bottom: 1px solid #e2e8f0;">
<td style="padding: 20px; font-weight: 600; color: #2d3748;">可否Stock-in</td>
<td style="padding: 20px; text-align: center; color: #c53030;">不能<br><small style="color: #718096;">(缺货物明细)</small></td>
<td style="padding: 20px; text-align: center; color: #22543d; background: #f0fff4; font-weight: 600;">可以<br><small style="color: #22543d;">直接入账</small> </td>
</tr>
<tr style="border-bottom: 1px solid #e2e8f0;">
<td style="padding: 20px; font-weight: 600; color: #2d3748;">2026 E-invoice合规</td>
<td style="padding: 20px; text-align: center; color: #c53030;">不符合<br><small style="color: #718096;">(缺完整交易信息)</small></td>
<td style="padding: 20px; text-align: center; color: #22543d; background: #f0fff4; font-weight: 600;">完全符合<br><small style="color: #22543d;">审计师认可</small> </td>
</tr>
<tr style="border-bottom: 1px solid #e2e8f0;">
<td style="padding: 20px; font-weight: 600; color: #2d3748;">物流服务</td>
<td style="padding: 20px; text-align: center;">不提供<br><small style="color: #718096;">(需另找货代)</small></td>
<td style="padding: 20px; text-align: center; color: #22543d; background: #f0fff4; font-weight: 600;">一站式<br><small style="color: #22543d;">付款+物流全包</small> </td>
</tr>
<tr>
<td style="padding: 20px; font-weight: 600; color: #2d3748;">客服支持</td>
<td style="padding: 20px; text-align: center;">英文/中文</td>
<td style="padding: 20px; text-align: center; background: #f0fff4; font-weight: 600;">中文/英文/马来文<br><small style="color: #22543d;">本地团队</small> </td>
</tr>
</tbody>
</table>
</div>
<div style="background: #f0fff4; padding: 35px; border-radius: 12px; margin-top: 50px; border-left: 5px solid #48bb78;">
<h3 style="color: #22543d; margin-bottom: 20px; font-size: 1.5em;">💡 核心差异总结</h3>
<div style="display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 25px; margin-top: 25px;">
<div>
<h4 style="color: #667eea; margin-bottom: 12px; font-size: 1.2em;">WorldFirst 模式</h4>
<p style="color: #4a5568; line-height: 1.8;">
<strong>汇款服务商</strong><br>
帮您汇钱到1688<br>
需要您自己有Alipay<br>
只提供汇款凭证<br>
适合:只需要转钱的客户
</p>
</div>
<div>
<h4 style="color: #48bb78; margin-bottom: 12px; font-size: 1.2em;">CIEF 模式</h4>
<p style="color: #2d3748; line-height: 1.8;">
<strong>贸易服务商 + 子账号</strong><br>
提供专属1688子账号<br>
完全不需要Alipay<br>
提供完整货物明细发票<br>
适合:需要proper发票做账的企业
</p>
</div>
</div>
</div>
<div style="background: #fff5f5; padding: 30px; border-radius: 12px; margin-top: 30px; border-left: 5px solid #f56565;">
<h3 style="color: #c53030; margin-bottom: 15px; font-size: 1.3em;">⚠️ 重要提醒</h3>
<p style="color: #2d3748; line-height: 1.8; font-size: 1.05em;">
WorldFirst是优秀的汇款平台,但<strong>业务性质决定了无法提供货物明细发票</strong>。如果您需要:<br><br>
完整的货物明细E-invoice(符合2026 全面执行的 E-invoice 要求)<br>
可以Stock-in入账的正式采购发票<br>
通过审计师认可的文件<br>
无需自己开Alipay的便捷方案<br><br>
那么CIEF的<strong>子账号代付 + 贸易模式</strong>会是更适合的选择。
</p>
</div>
</div>
</div>
</section>
<!-- Pain Points Section -->
<section class="problem" id="pain-points">
<div class="container">
<h2 class="section-title">😰 1688付款的5大困境</h2>
<p style="text-align: center; font-size: 1.2em; color: #4a5568; margin-bottom: 50px;">
自2021年起,1688付款变得越来越难...
</p>
<div class="problem-grid">
<div class="problem-card">
<h3>困境 1Alipay付款限额</h3>
<blockquote>
"我的Alipay有付款限额,金额稍微比较大就会被限制,无法完成付款..."
</blockquote>
<p style="margin-top: 15px;"><strong>问题:</strong>Alipay对单笔和每日付款都有限额,大额采购经常受限,影响业务运作。</p>
</div>
<div class="problem-card">
<h3>困境 2:银行转账被取消</h3>
<blockquote>
"以前可以用银行转账,但2021年底1688取消了这个选项,现在完全不能用..."
</blockquote>
<p style="margin-top: 15px;"><strong>问题:</strong>1688平台已经不再接受国际银行转账,旧方法完全失效。</p>
</div>
<div class="problem-card">
<h3>困境 3Alipay代付风险</h3>
<blockquote>
"我找代付服务帮忙付款,但听说很多人的Alipay账户被冻结,钱拿不回来..."
</blockquote>
<p style="margin-top: 15px;"><strong>问题:</strong>代付服务需求激增,导致大量账户被冻结,资金安全成问题。</p>
</div>
<div class="problem-card">
<h3>困境 4:没有proper E-invoice</h3>
<blockquote>
"我付了款,但只收到汇款凭证,没有货物明细,会计师说不能入账..."
</blockquote>
<p style="margin-top: 15px;"><strong>问题:</strong>汇款凭证只证明付了钱,不是采购E-invoice,无法 Stock-in 和做账。</p>
</div>
<div class="problem-card">
<h3>困境 52026 E-invoice 合规</h3>
<blockquote>
"审计师提醒我,2026年强制E-invoice,现在的凭证格式可能不被接受..."
</blockquote>
<p style="margin-top: 15px;"><strong>问题:</strong>LHDN要求E-invoice包含完整交易详情,简单凭证不符合新规。</p>
</div>
<div class="problem-card">
<h3>困境 6:转账限额限制</h3>
<blockquote>
"我生意越做越大,但每次付款都有限额,要分多次转,很麻烦..."
</blockquote>
<p style="margin-top: 15px;"><strong>问题:</strong>很多付款方式有次数和金额限制,影响业务扩展。</p>
</div>
</div>
<div style="background: #fff5f5; padding: 40px; border-radius: 12px; margin-top: 50px; border: 2px dashed #f56565; text-align: center;">
<h3 style="color: #c53030; margin-bottom: 20px; font-size: 1.8em;">💡 问题的根源</h3>
<p style="font-size: 1.3em; color: #2d3748; line-height: 1.8;">
传统的付款方式要么<strong>无法使用</strong>(银行转账)<br>
要么<strong>风险太高</strong>(代付冻结)<br>
要么<strong>文件不全</strong>(无proper发票)
</p>
<p style="margin-top: 30px; font-size: 1.4em; color: #667eea; font-weight: bold;">
您需要一个全新的解决方案
</p>
</div>
</div>
</section>
<!-- Invoice Example -->
<section class="invoice-example">
<div class="container">
<h2 class="section-title">📄 为什么货物明细E-invoice这么重要?</h2>
<p style="text-align: center; font-size: 1.2em; color: #4a5568; margin-bottom: 50px;">
一张proper的发票 vs 一张汇款凭证,差别在哪里?
</p>
<div class="invoice-comparison">
<!-- Bad Example - Image Placeholder -->
<div class="invoice-sample bad">
<h3> 普通汇款凭证(无法使用)</h3>
<div class="image-placeholder">
<div class="icon">📄</div>
<p style="font-size: 1.2em; font-weight: 600; margin-bottom: 10px;">汇款凭证示例图片</p>
<p style="font-size: 0.95em;">请在此处上传汇款凭证截图</p>
</div>
<div class="missing-info">
<strong> 会计师/审计师的反馈:</strong><br><br>
<strong>"这不是采购发票!"</strong><br><br>
没有货物品名<br>
没有数量信息<br>
没有单价<br>
没有规格说明<br>
无法 Stock-in 入库存<br>
不符合 E-invoice 要求<br>
审计时会被质疑
</div>
</div>
<!-- Good Example - Image Placeholder -->
<div class="invoice-sample good">
<h3> CIEF 完整货物明细 E-invoice</h3>
<div class="image-placeholder" style="border-color: #48bb78;">
<div class="icon"></div>
<p style="font-size: 1.2em; font-weight: 600; margin-bottom: 10px; color: #22543d;">CIEF E-invoice 示例图片</p>
<p style="font-size: 0.95em;">请在此处上传 CIEF E-invoice 截图</p>
</div>
<div style="background: #f0fff4; color: #22543d; padding: 15px; border-radius: 8px; margin-top: 15px; border: 1px solid #48bb78;">
<strong> 会计师/审计师的反馈:</strong><br><br>
<strong>"这是标准采购发票!"</strong><br><br>
货物品名清晰<br>
数量明确<br>
单价透明<br>
可以直接 Stock-in<br>
符合 E-invoice 要求<br>
审计完全没问题
</div>
</div>
</div>
<div style="background: white; padding: 40px; border-radius: 12px; margin-top: 50px; box-shadow: 0 4px 15px rgba(0,0,0,0.1);">
<h3 style="color: #2d3748; margin-bottom: 30px; font-size: 1.6em; text-align: center;">💼 为什么您的生意需要货物明细发票?</h3>
<div style="display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; margin-top: 30px;">
<div style="padding: 20px; background: #f8f9fa; border-radius: 8px;">
<h4 style="color: #667eea; margin-bottom: 15px; font-size: 1.2em;">📊 会计需要</h4>
<p style="color: #4a5568; line-height: 1.7;">
会计师需要知道您买了什么货物,才能正确分类记账。只有金额的凭证无法满足会计准则要求。
</p>
</div>
<div style="padding: 20px; background: #f8f9fa; border-radius: 8px;">
<h4 style="color: #667eea; margin-bottom: 15px; font-size: 1.2em;">📦 库存管理</h4>
<p style="color: #4a5568; line-height: 1.7;">
Stock-in 系统需要货物明细才能入库。没有品名、数量、单价的发票,根本无法在系统操作。
</p>
</div>
<div style="padding: 20px; background: #f8f9fa; border-radius: 8px;">
<h4 style="color: #667eea; margin-bottom: 15px; font-size: 1.2em;">🔍 审计要求</h4>
<p style="color: #4a5568; line-height: 1.7;">
审计师需要看到货物与付款的对应关系。汇款凭证只证明"付了钱",不能证明"买了什么"
</p>
</div>
<div style="padding: 20px; background: #f8f9fa; border-radius: 8px;">
<h4 style="color: #667eea; margin-bottom: 15px; font-size: 1.2em;">⚖️ 2026 合规</h4>
<p style="color: #4a5568; line-height: 1.7;">
LHDN明确要求E-invoice包含完整交易信息。简单的汇款凭证不符合政府2026年的新规定。
</p>
</div>
<div style="padding: 20px; background: #f8f9fa; border-radius: 8px;">
<h4 style="color: #667eea; margin-bottom: 15px; font-size: 1.2em;">🛡️ 风险管理</h4>
<p style="color: #4a5568; line-height: 1.7;">
详细的货物明细可以追溯每一笔交易,出现问题时有据可查,降低业务风险。
</p>
</div>
<div style="padding: 20px; background: #f8f9fa; border-radius: 8px;">
<h4 style="color: #667eea; margin-bottom: 15px; font-size: 1.2em;">📈 业务分析</h4>
<p style="color: #4a5568; line-height: 1.7;">
完整的采购记录帮助您分析哪些产品好卖,哪些供应商可靠,做出更好的商业决策。
</p>
</div>
</div>
</div>
<div style="background: #fff5f5; padding: 30px; border-radius: 12px; margin-top: 50px; border: 2px solid #f56565; text-align: center;">
<h3 style="color: #c53030; margin-bottom: 15px; font-size: 1.5em;">⚠️ 真实案例警告</h3>
<p style="font-size: 1.2em; color: #2d3748; line-height: 1.8;">
"我们公司用汇款凭证做账一年多,去年审计时被要求补充完整的采购发票。<br>
因为拿不出货物明细,不但要重新整理所有文件,还被罚款。<br>
从那以后我们只用有完整货物明细的发票了。"<br><br>
<small style="color: #718096;"> 某电商公司老板的教训</small>
</p>
</div>
</div>
</section>
<!-- Solution Section -->
<section style="padding: 80px 20px; background: #f0fff4;">
<div class="container">
<h2 class="section-title"> CIEF Exchange 的解决方案</h2>
<p style="text-align: center; font-size: 1.3em; color: #4a5568; margin-bottom: 50px;">
<strong>贸易模式</strong> = 真实买卖 = 完整E-invoice
</p>
<div style="max-width: 900px; margin: 0 auto; background: white; padding: 40px; border-radius: 12px; box-shadow: 0 4px 15px rgba(0,0,0,0.1);">
<h3 style="color: #22543d; margin-bottom: 30px; font-size: 1.6em; text-align: center;">🎯 我们如何解决所有痛点?</h3>
<div style="display: grid; gap: 25px;">
<div style="display: flex; gap: 20px; align-items: flex-start;">
<div style="flex-shrink: 0; width: 50px; height: 50px; background: #48bb78; color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.5em; font-weight: bold;"></div>
<div>
<h4 style="color: #2d3748; margin-bottom: 8px; font-size: 1.2em;">无需开Alipay账户</h4>
<p style="color: #4a5568; line-height: 1.7;">您只需要CIEF Exchange账户,我们的系统会帮您在1688平台上完成付款。不需要中国银行账户,不需要实名认证。</p>
</div>
</div>
<div style="display: flex; gap: 20px; align-items: flex-start;">
<div style="flex-shrink: 0; width: 50px; height: 50px; background: #48bb78; color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.5em; font-weight: bold;"></div>
<div>
<h4 style="color: #2d3748; margin-bottom: 8px; font-size: 1.2em;">无账户冻结风险</h4>
<p style="color: #4a5568; line-height: 1.7;">我们采用贸易模式,不是代付服务。所有交易合法合规,完全不会有账户被冻结的问题。</p>
</div>
</div>
<div style="display: flex; gap: 20px; align-items: flex-start;">
<div style="flex-shrink: 0; width: 50px; height: 50px; background: #48bb78; color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.5em; font-weight: bold;"></div>
<div>
<h4 style="color: #2d3748; margin-bottom: 8px; font-size: 1.2em;">完整货物明细E-invoice</h4>
<p style="color: #4a5568; line-height: 1.7;">因为是真实贸易(我们采购再卖给您),所以发票包含完整货物信息:品名、数量、单价、总额,全部逐项列明。</p>
</div>
</div>
<div style="display: flex; gap: 20px; align-items: flex-start;">
<div style="flex-shrink: 0; width: 50px; height: 50px; background: #48bb78; color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.5em; font-weight: bold;"></div>
<div>
<h4 style="color: #2d3748; margin-bottom: 8px; font-size: 1.2em;">符合审计和2026要求</h4>
<p style="color: #4a5568; line-height: 1.7;">我们的E-invoice已由马来西亚会计事务所验证,符合LHDN要求,可以直接Stock-in和做账,通过审计。</p>
</div>
</div>
<div style="display: flex; gap: 20px; align-items: flex-start;">
<div style="flex-shrink: 0; width: 50px; height: 50px; background: #48bb78; color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.5em; font-weight: bold;"></div>
<div>
<h4 style="color: #2d3748; margin-bottom: 8px; font-size: 1.2em;">无转账限额</h4>
<p style="color: #4a5568; line-height: 1.7;">不限订单数量,不限转账金额,不限付款次数。您的生意越做越大,我们的服务完全跟得上。</p>
</div>
</div>
<div style="display: flex; gap: 20px; align-items: flex-start;">
<div style="flex-shrink: 0; width: 50px; height: 50px; background: #48bb78; color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.5em; font-weight: bold;"></div>
<div>
<h4 style="color: #2d3748; margin-bottom: 8px; font-size: 1.2em;">线上系统全自动</h4>
<p style="color: #4a5568; line-height: 1.7;">马来西亚第一家全线上自动化系统,所有交易记录自动保存,随时可以下载invoice和purchase order。</p>
</div>
</div>
</div>
</div>
<div style="text-align: center; margin-top: 50px;">
<a href="https://gentle-toronto-bbndz4uacdz6.vapor-farm-a1.com/signup?tracking=GCLPB2006" class="btn btn-primary" style="padding: 18px 50px; font-size: 1.2em;" target="_blank">立即获取子账号</a>
</div>
</div>
</section>
<!-- Process Section -->
<section class="process" id="how-it-works">
<div class="container">
<h2 class="section-title">🚀 如何使用CIEF子账号在1688付款?</h2>
<p style="text-align: center; font-size: 1.2em; color: #4a5568; margin-bottom: 30px;">
专属子账号模式,比WorldFirst更简单
</p>
<div class="process-steps">
<div class="step">
<div class="step-number">1</div>
<h3>注册账户</h3>
<p>在CIEF Exchange<br>注册并激活账户<br>提交身份验证</p>
</div>
<div class="step">
<div class="step-number">2</div>
<h3>开通子账号</h3>
<p>联系客服提供信息<br>24小时内获得<br>专属1688子账号</p>
</div>
<div class="step">
<div class="step-number">3</div>
<h3>子账号下单</h3>
<p>用我们的子账号<br>在1688浏览下单<br>选择"担保交易"</p>
</div>
<div class="step">
<div class="step-number">4</div>
<h3>您结算</h3>
<p>付马币给CIEF<br>按实时汇率计算<br>透明公开</p>
</div>
<div class="step">
<div class="step-number">5</div>
<h3>我们付款</h3>
<p>CIEF主账号<br>统一为您付款<br>1个工作日完成</p>
</div>
<div class="step">
<div class="step-number">6</div>
<h3>获取发票</h3>
<p>自动生成E-invoice<br>完整货物明细<br>可直接Stock-in</p>
</div>
</div>
<div style="background: #edf2f7; padding: 40px; border-radius: 12px; margin-top: 60px;">
<h3 style="color: #2d3748; margin-bottom: 30px; font-size: 1.6em; text-align: center;">📋 详细操作流程</h3>
<div style="max-width: 900px; margin: 0 auto;">
<div style="background: white; padding: 25px; border-radius: 8px; margin-bottom: 20px; border-left: 4px solid #667eea;">
<h4 style="color: #667eea; margin-bottom: 15px; font-size: 1.2em;">第一步:账户注册与子账号开通(只需一次)</h4>
<ol style="color: #4a5568; line-height: 2; padding-left: 20px;">
<li>访问 <strong>https://exchange.cief-malaysia.com/</strong> 注册账户</li>
<li>联系客服 WhatsApp "我要申请1688子账号"</li>
<li>提供 "Exchange 上注册的邮箱,公司名,进口商品,每月预计采购量(RMB)"</li>
<li>客服将在24小时内为您开通专属1688子账号</li>
<li>收到子账号登录信息</li>
</ol>
</div>
<div style="background: white; padding: 25px; border-radius: 8px; margin-bottom: 20px; border-left: 4px solid #667eea;">
<h4 style="color: #667eea; margin-bottom: 15px; font-size: 1.2em;">第二步:使用子账号在1688下单</h4>
<ol style="color: #4a5568; line-height: 2; padding-left: 20px;">
<li>使用CIEF提供的子账号登录 www.1688.com</li>
<li>浏览商品,添加到购物车</li>
<li>确认订单信息和收货地址(我们的中国仓库地址)</li>
<li>提交订单,选择"担保交易"付款方式</li>
<li>如出现红包优惠,请注意本服务不支持使用红包</li>
</ol>
</div>
<div style="background: white; padding: 25px; border-radius: 8px; margin-bottom: 20px; border-left: 4px solid #667eea;">
<h4 style="color: #667eea; margin-bottom: 15px; font-size: 1.2em;">第三步:付款与结算</h4>
<ol style="color: #4a5568; line-height: 2; padding-left: 20px;">
<li>下单后,登录CIEF Exchange系统查看应付金额</li>
<li>系统显示实时汇率和马币金额</li>
<li>转账马币到CIEF银行账户</li>
<li>上传转账凭证</li>
<li>CIEF确认收款后,通过主账号统一为您付款</li>
<li>付款完成,供应商开始发货</li>
<li>登录系统下载完整货物明细 E-INVOICE</li>
<li>E-INVOICE 可直接用于Stock-in和做账</li>
</ol>
</div>
<div style="background: white; padding: 25px; border-radius: 8px; margin-bottom: 20px; border-left: 4px solid #667eea;">
<h4 style="color: #667eea; margin-bottom: 15px; font-size: 1.2em;">第四步:收货与物流发票</h4>
<ol style="color: #4a5568; line-height: 2; padding-left: 20px;">
<li>供应商发货到我们的中国仓库</li>
<li>您可选择海运/空运等物流方案运回马来西亚</li>
<li>登录系统下载完整运费 E-INVOICE</li>
</ol>
</div>
<div style="background: white; padding: 25px; border-radius: 8px; border-left: 4px solid #48bb78;">
<h4 style="color: #48bb78; margin-bottom: 15px; font-size: 1.2em;">💡 CIEF vs WorldFirst:流程对比</h4>
<table style="width: 100%; border-collapse: collapse; margin-top: 15px;">
<tr style="border-bottom: 1px solid #e2e8f0;">
<th style="padding: 12px; text-align: left; color: #2d3748; width: 30%;">步骤</th>
<th style="padding: 12px; text-align: left; color: #2d3748;">WorldFirst 跨境宝</th>
<th style="padding: 12px; text-align: left; color: #2d3748;">CIEF 子账号</th>
</tr>
<tr style="border-bottom: 1px solid #e2e8f0;">
<td style="padding: 12px; font-weight: 600;">1688账户</td>
<td style="padding: 12px; color: #c53030;">自己注册1688账户</td>
<td style="padding: 12px; color: #22543d;"> 我们提供子账号</td>
</tr>
<tr style="border-bottom: 1px solid #e2e8f0;">
<td style="padding: 12px; font-weight: 600;">Alipay</td>
<td style="padding: 12px; color: #c53030;">必须开户并绑定</td>
<td style="padding: 12px; color: #22543d;"> 完全不需要</td>
</tr>
<tr style="border-bottom: 1px solid #e2e8f0;">
<td style="padding: 12px; font-weight: 600;">下单</td>
<td style="padding: 12px;">用自己账号下单</td>
<td style="padding: 12px;">用子账号下单</td>
</tr>
<tr style="border-bottom: 1px solid #e2e8f0;">
<td style="padding: 12px; font-weight: 600;">结算</td>
<td style="padding: 12px;">付马币到WorldFirst</td>
<td style="padding: 12px;">付马币到CIEF</td>
</tr>
<tr style="border-bottom: 1px solid #e2e8f0;">
<td style="padding: 12px; font-weight: 600;">付款</td>
<td style="padding: 12px;">Alipay自动扣款</td>
<td style="padding: 12px;">我们主账号付款</td>
</tr>
<tr>
<td style="padding: 12px; font-weight: 600;">发票</td>
<td style="padding: 12px; color: #c53030;">汇款凭证(无货物明细)</td>
<td style="padding: 12px; color: #22543d;"> 完整E-invoice(逐项明细)</td>
</tr>
</table>
</div>
<div style="background: #fff5f5; padding: 20px; border-radius: 8px; margin-top: 20px; border: 1px dashed #f56565;">
<h4 style="color: #c53030; margin-bottom: 12px; font-size: 1.1em;">⚠️ 重要注意事项</h4>
<ul style="color: #4a5568; line-height: 2; padding-left: 20px; font-size: 0.95em;">
<li>1688平台红包优惠不可在此服务中使用</li>
<li>下单前请查阅禁运货品清单,避免仓库拒收</li>
<li>付款页面出现"担保交易"选项时,务必选择</li>
<li>如供应商未收到款项,请在14个工作天内联系我们</li>
</ul>
</div>
</div>
</div>
</div>
</section>
<!-- Benefits Section -->
<section class="benefits">
<div class="container">
<h2 class="section-title">🎯 选择 CIEF 的核心优势</h2>
<div class="benefits-grid">
<div class="benefit-card">
<div class="icon">📝</div>
<h3>真实贸易发票</h3>
<p>基于真实买卖交易,不只是汇款凭证</p>
</div>
<div class="benefit-card">
<div class="icon">📋</div>
<h3>完整货物明细</h3>
<p>品名、规格、数量、单价,逐项列明(Itemized)</p>
</div>
<div class="benefit-card">
<div class="icon"></div>
<h3>会计直接使用</h3>
<p>符合会计准则,可以直接 Stock-in 入账</p>
</div>
<div class="benefit-card">
<div class="icon">🔐</div>
<h3>通过审计</h3>
<p>完整交易记录,审计师认可</p>
</div>
<div class="benefit-card">
<div class="icon"></div>
<h3>2026 合规</h3>
<p>符合 LHDN E-invoice 新规要求</p>
</div>
<div class="benefit-card">
<div class="icon">💰</div>
<h3>竞争力汇率</h3>
<p>贸易模式 + 优惠汇率,性价比高</p>
</div>
<div class="benefit-card">
<div class="icon">🚚</div>
<h3>一站式服务</h3>
<p>付款 + 采购 + 物流 + 发票,全包</p>
</div>
<div class="benefit-card">
<div class="icon">⏱️</div>
<h3>10年经验</h3>
<p>马来西亚第一家线上系统全自动操作</p>
</div>
</div>
</div>
</section>
<!-- FAQ Section -->
<section style="padding: 80px 20px; background: white;">
<div class="container">
<h2 class="section-title"> 常见问题</h2>
<div style="max-width: 900px; margin: 0 auto;">
<div style="background: #f8f9fa; padding: 25px; border-radius: 8px; margin-bottom: 20px; border-left: 4px solid #667eea;">
<h3 style="color: #2d3748; margin-bottom: 10px;">Q1: 什么是"子账号代付"?与WorldFirst有什么不同?</h3>
<p style="color: #4a5568; line-height: 1.8;">
<strong>A:</strong> 我们提供<strong>1688专属子账号</strong>给您使用。您用这个子账号在1688下单,然后我们的主账号统一为您付款。<br><br>
<strong>核心区别:</strong><br>
<strong>WorldFirst:</strong> 需要您自己有1688账户和Alipay账户(需实名认证),他们帮您汇钱<br>
<strong>CIEF:</strong> 我们直接提供子账号,完全不需要Alipay,更不需要实名认证<br><br>
简单说:WorldFirst是"帮您汇钱"CIEF是"提供账号帮您付款"
</p>
</div>
<div style="background: #f8f9fa; padding: 25px; border-radius: 8px; margin-bottom: 20px; border-left: 4px solid #667eea;">
<h3 style="color: #2d3748; margin-bottom: 10px;">Q2: 我已经用WorldFirst,为什么要换到CIEF</h3>
<p style="color: #4a5568; line-height: 1.8;">
<strong>A:</strong> 如果您只需要汇款服务,WorldFirst很好。但如果您需要:<br><br>
<strong>完整货物明细E-invoice</strong>(符合2026 全面执行的 E-invoice 要求)<br>
<strong>可以Stock-in的正式采购发票</strong>(会计需要)<br>
<strong>通过审计的文件</strong>(审计师认可)<br>
<strong>不想开Alipay账户</strong>(省去复杂手续)<br><br>
那么CIEF的子账号代付 + 贸易模式会更适合。WorldFirst因为是汇款平台,业务性质决定了无法提供货物明细发票。
</p>
</div>
<div style="background: #f8f9fa; padding: 25px; border-radius: 8px; margin-bottom: 20px; border-left: 4px solid #667eea;">
<h3 style="color: #2d3748; margin-bottom: 10px;">Q3: 为什么CIEF能提供货物明细发票?</h3>
<p style="color: #4a5568; line-height: 1.8;">
<strong>A:</strong> 这是<strong>业务模式的本质区别</strong><br><br>
<strong>WorldFirst模式:</strong><br>
他们是汇款平台,只负责资金转移<br>
您直接向中国供应商购买<br>
所以他们只能给汇款凭证<br><br>
<strong>如果您的进口量大,一整个货柜采购,而且您的公司符合进口资质,那么您用自己 consignee 作为进口方,WorldFirst 是一个非常合适您的选项。</strong><br><br>
<strong>CIEF模式:</strong><br>
我们是贸易商,从中国采购再卖给您<br>
这是真实的买卖交易<br>
所以我们开具销售发票,自然包含货物明细<br><br>
<strong>类比:</strong>WorldFirst像是银行(帮您转账),CIEF像是代购商(买货卖给您)。
</p>
</div>
<div style="background: #f8f9fa; padding: 25px; border-radius: 8px; margin-bottom: 20px; border-left: 4px solid #667eea;">
<h3 style="color: #2d3748; margin-bottom: 10px;">Q4: 货物明细发票真的这么重要吗?</h3>
<p style="color: #4a5568; line-height: 1.8;">
<strong>A:</strong> <strong>非常重要!</strong>特别是2026年起,马来西亚全面实行 E-invoice。<br><br>
<strong>会计需要:</strong><br>
Stock-in入库存时必须有货物明细<br>
只有金额的凭证无法在系统操作<br><br>
<strong>审计要求:</strong><br>
审计师需要看到货物与付款的对应<br>
汇款凭证只证明"付了钱",不能证明"买了什么"<br><br>
<strong>2026 LHDN新规:</strong><br>
E-invoice必须包含完整交易信息<br>
简单的汇款凭证不符合新规<br><br>
很多客户因为没有proper发票,审计时被要求补充文件,甚至被罚款。
</p>
</div>
<div style="background: #f8f9fa; padding: 25px; border-radius: 8px; margin-bottom: 20px; border-left: 4px solid #667eea;">
<h3 style="color: #2d3748; margin-bottom: 10px;">Q5: 开通子账号需要多久?</h3>
<p style="color: #4a5568; line-height: 1.8;">
<strong>A:</strong> <strong>24小时内完成!</strong><br><br>
流程:<br>
1. 您在 https://exchange.cief-malaysia.com/ 注册账户<br>
2. 联系客服 WhatsApp "我要申请1688子账号"<br>
3. 提供 Exchange 上注册的邮箱、公司名、进口商品、每月预计采购量(RMB)<br>
4. 客服在24小时内为您开通专属子账号<br>
5. 收到登录信息后即可开始使用<br><br>
非常快速简单!
</p>
</div>
<div style="background: #f8f9fa; padding: 25px; border-radius: 8px; margin-bottom: 20px; border-left: 4px solid #667eea;">
<h3 style="color: #2d3748; margin-bottom: 10px;">Q6: 有付款金额限制吗?</h3>
<p style="color: #4a5568; line-height: 1.8;">
<strong>A:</strong> <strong>无限制!</strong><br>
最低交易额:CNY 1<br>
最高金额:无限制<br>
订单数量:无限制<br>
付款次数:无限制<br><br>
您的生意越做越大,我们的服务完全跟得上。这点和WorldFirst一样。
</p>
</div>
<div style="background: #f8f9fa; padding: 25px; border-radius: 8px; margin-bottom: 20px; border-left: 4px solid #667eea;">
<h3 style="color: #2d3748; margin-bottom: 10px;">Q7: 除了1688付款,你们还提供什么服务?</h3>
<p style="color: #4a5568; line-height: 1.8;">
<strong>A:</strong> CIEF是<strong>一站式中马贸易服务</strong><br><br>
<strong>付款服务:</strong><br>
1688子账号代付<br>
人民币转账(私账/公账)<br>
美金转账<br>
Alipay转账<br><br>
<strong>物流服务:</strong><br>
海运散货(直运/集运/退税)<br>
空运<br>
整柜(FCL)<br>
报关清关<br><br>
<strong>从付款到收货,我们全包!这是WorldFirst等汇款平台做不到的。</strong>
</p>
</div>
<div style="background: #f8f9fa; padding: 25px; border-radius: 8px; margin-bottom: 20px; border-left: 4px solid #667eea;">
<h3 style="color: #2d3748; margin-bottom: 10px;">Q8: 我用子账号下单,供应商会知道吗?</h3>
<p style="color: #4a5568; line-height: 1.8;">
<strong>A:</strong> 供应商只看到订单和付款,<strong>不会影响您的采购</strong><br><br>
子账号看起来就是正常的1688账户<br>
供应商收到的是正常的订单和付款<br>
不会影响价格或服务<br>
货物正常发到仓库地址<br><br>
整个流程对供应商来说和普通订单完全一样。
</p>
</div>
<div style="background: #f0fff4; padding: 25px; border-radius: 8px; margin-bottom: 20px; border-left: 4px solid #48bb78;">
<h3 style="color: #22543d; margin-bottom: 10px;">💡 总结:CIEF vs WorldFirst,选哪个?</h3>
<p style="color: #2d3748; line-height: 1.8;">
<strong>选择WorldFirst,如果您:</strong><br>
已经有Alipay账户且不嫌麻烦<br>
只需要汇款服务<br>
汇款凭证已经够用(不需要货物明细)<br><br>
<strong>选择CIEF,如果您:</strong><br>
不想开Alipay账户(或开不了)<br>
需要完整货物明细E-invoice<br>
要符合2026 全面执行的 E-invoice 要求<br>
需要一站式服务(付款+物流)<br>
想要本地团队支持<br><br>
<strong>两者都是正规服务,选择取决于您的实际需求!</strong>
</p>
</div>
</div>
</div>
</div>
</section>
<!-- CTA Section -->
<section class="cta-section" id="contact">
<div class="container">
<h2>准备好使用专属子账号在1688采购了吗?</h2>
<p class="highlight-text">比WorldFirst更简单 无需Alipay 完整E-invoice 24小时开通</p>
<div style="background: rgba(255,255,255,0.1); padding: 30px; border-radius: 12px; max-width: 750px; margin: 30px auto; text-align: left;">
<h3 style="margin-bottom: 20px; font-size: 1.3em; text-align: center;">🎁 立即注册,即可获得:</h3>
<ul style="list-style: none; font-size: 1.1em; line-height: 2;">
<li> 专属1688子账号(24小时开通)</li>
<li> 完全无需Alipay实名认证</li>
<li> 完整货物明细E-invoice(可Stock-in</li>
<li> 符合2026 全面执行的 E-invoice 要求</li>
<li> 一站式服务:付款+物流+清关</li>
<li> 本地团队中文客服支持</li>
</ul>
</div>
<div style="background: rgba(255,255,255,0.15); padding: 25px; border-radius: 12px; max-width: 700px; margin: 30px auto;">
<p style="font-size: 1.2em; line-height: 1.7; margin: 0;">
<strong style="color: #fbd38d;">💡 特别提醒:</strong><br>
如果您已经在用WorldFirst等汇款平台,但<strong>缺少货物明细发票</strong><br>
欢迎切换到CIEF子账号模式,获得完整的E-invoice
</p>
</div>
<div style="margin: 40px 0;">
<a href="https://gentle-toronto-bbndz4uacdz6.vapor-farm-a1.com/signup?tracking=GCLPB3006" class="btn btn-primary" style="margin: 10px;" target="_blank">立即获取子账号</a>
</div>
<p style="margin-top: 20px; font-size: 0.95em; opacity: 0.9;">
🕐 客服时间:周一至周五 9:00 AM - 6:00 PM(马来西亚时间)<br>
📍 马来西亚第一家线上系统全自动操作 | 10年中马货代经验
</p>
</div>
</section>
<!-- Footer -->
<footer>
<div class="container">
<p>&copy; 2025 CIEF Exchange Sdn Bhd. All rights reserved.</p>
<p style="margin-top: 10px;">马来西亚第一家用线上系统全自动操作 | 10年中马货代经验 | 贸易模式合法合规</p>
<p style="margin-top: 20px; font-size: 0.9em; color: #718096;">
注:CIEF Exchange 采用贸易模式运营,提供符合 LHDN 要求的真实 E-invoice,确保符合2026 全面执行的 E-invoice 要求。
</p>
</div>
</footer>
</body>
</html>