diff --git a/v2/pricing.html b/v2/pricing.html
index 23ffa9b..e78cd5e 100644
--- a/v2/pricing.html
+++ b/v2/pricing.html
@@ -680,7 +680,7 @@ label {
devices = parseInt(document.getElementById("devices").value);
if (!users || users < 10) users = 10;
if (devices < 100) devices = 100;
- var price = 19.9 + (users - 10) + (devices - 100) * 0.01;
+ var price = 19.9 + (users - 10) + (devices - 100) * 0.1;
document.getElementById("cprice").innerText = price.toFixed(2);
}
diff --git a/v2/zh/pricing.html b/v2/zh/pricing.html
index cd568c0..a6592f8 100644
--- a/v2/zh/pricing.html
+++ b/v2/zh/pricing.html
@@ -661,7 +661,7 @@ label {
devices = parseInt(document.getElementById("devices").value);
if (!users || users < 10) users = 10;
if (devices < 100) devices = 100;
- var price = 19.9 + (users - 10) + (devices - 100) * 0.01;
+ var price = 19.9 + (users - 10) + (devices - 100) * 0.1;
document.getElementById("cprice").innerText = price.toFixed(2);
}