payoneerTaxHelp.html
3.24 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width,minimum-scale=1.0,maximum-scale=1.0,user-scalable=no" />
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
<meta content="telephone=no" name="format-detection">
<meta name="wap-font-scale" content="no">
<link rel="stylesheet" href="css/base.css">
<script src="lib/fsize.js"></script>
<title>Payoneer提現説明</title>
<style>
.bg {
padding: 0 0.2rem;
}
p {
font-size: 0.347rem;
color: #000;
line-height: 0.8rem;
}
</style>
</head>
<body style="background: #fff;">
<div class="bg">
<div class="lang_CN" style="display:none;">
<p style="font-size: 0.4rem;font-weight: bold;"> Payoneer提現說明</p>
<p style="margin-top: 1rem;">一,36050羽毛(含1050羽毛的稅)=50美元</p>
<p>二,可提現最低金額為$50,且必須為10的整數倍。選擇全部體現后,會自動算出可提現的最大金額。</p>
<p>三,提現后,一般7個工作日内進行處理。</p>
<p>四,Payoneer收取3%的稅,所以稅後可提現羽毛=稅前可提現羽毛/1.03</p>
<p>五,可提現羽毛詳情請前往APP-我的-羽毛體現中查詢</p>
</div>
<div class="lang_EN" style="display:none;">
<p style="font-size: 0.4rem;font-weight: bold;"> Payoneer Withdrawal Details</p>
<p style="margin-top: 1rem;">1. 36050 Feathers(Containing tax of 1050 Feathers)=50 USD</p>
<p>2. Minimum Withdrawal Amount is $50, also the amount should be an integer multiple of 10. When you click
"withdraw
all" on the page,the system will calculate the maximun amount that you can withdraw automatically.</p>
<p>3. The withdrawal will be deal within 7 working days after you reqeusted withdrawal.</p>
<p>4. When you use Payoneer to withdraw, 3% Feathers will be deducted as tax.</p>
<p>5. If you want to check the balance Feathers, please check by clicking "Me"-"Feathers" on the APP.</p>
</div>
</div>
</body>
<script type="text/javascript" src="https://app.ixiulive.com/static/js/jquery-3.1.1.min.js"></script>
<script>
var langCon = getRequest().lang;
// 0,2 繁中 1英语 7阿语 3泰语 8越南语 4日语 5印尼文
if (langCon == 0 || langCon == 2) {
$('.lang_CN').show();
$('.lang_EN').hide();
$('title').html('Payoneer提現説明')
} else {
$('.lang_CN').hide();
$('.lang_EN').show();
$('title').html('Payoneer Withdrawal Details')
}
//獲取url參數
function getRequest() {
var url = location.href;
var theRequest = new Object();
if (url.indexOf("?") != -1) {
var str = url.substr(url.indexOf("?") + 1);
strs = str.split("&");
for (var i = 0; i < strs.length; i++) {
theRequest[strs[i].split("=")[0]] = unescape(strs[i].split("=")[1]);
}
}
return theRequest;
}
</script>
</html>