diff --git a/public/admin.html b/public/admin.html
index b0fa083..138693f 100644
--- a/public/admin.html
+++ b/public/admin.html
@@ -3,7 +3,7 @@
- 订单管理 - 加密世界商城
+ 订单管理 - Crypto World Mall
diff --git a/public/css/style.css b/public/css/style.css
index 6dfda74..2857813 100644
--- a/public/css/style.css
+++ b/public/css/style.css
@@ -140,24 +140,18 @@ main {
.product-title {
color: #ffffff;
- font-size: 2.5em;
+ font-size: 1.8em;
font-weight: 700;
margin-bottom: 15px;
}
-.product-desc {
- color: #b0b0b0;
- font-size: 1.2em;
- line-height: 1.6;
- margin-bottom: 30px;
-}
.product-price {
margin-bottom: 30px;
}
.price-text {
- font-size: 3em;
+ font-size: 2.2em;
font-weight: 900;
color: #ffd700;
text-shadow: 0 0 30px rgba(255, 215, 0, 0.6);
@@ -165,12 +159,13 @@ main {
/* 优惠信息 */
.product-offers {
- background: linear-gradient(145deg, #0f1419, #1a2332);
- border-radius: 15px;
- padding: 20px;
- border: 1px solid #2c3e50;
+ background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
+ border-radius: 12px;
+ padding: 18px;
+ border: 1px solid #444;
position: relative;
overflow: hidden;
+ margin-bottom: 25px;
}
.product-offers::before {
@@ -179,7 +174,7 @@ main {
top: 0;
left: 0;
right: 0;
- height: 3px;
+ height: 2px;
background: linear-gradient(90deg, #ffd700, #ffed4a, #ffd700);
}
@@ -800,11 +795,7 @@ main {
/* 移动端产品展示优化 */
.product-title {
- font-size: 2.1em;
- }
-
- .product-desc {
- font-size: 1.1em;
+ font-size: 1.8em;
}
.price-text {
diff --git a/public/index.html b/public/index.html
index 9e53c83..ab98993 100644
--- a/public/index.html
+++ b/public/index.html
@@ -3,7 +3,7 @@
- 加密世界商城 | Crypto Shopping Maill
+ Crypto World Mall
@@ -11,8 +11,8 @@
@@ -27,7 +27,6 @@
高级产品
-
这是我们的高级产品,质量优秀
$99.99 USDT
@@ -117,7 +116,7 @@
@@ -239,7 +238,6 @@
diff --git a/public/js/main.js b/public/js/main.js
index 66bcb6e..0bcc358 100644
--- a/public/js/main.js
+++ b/public/js/main.js
@@ -28,7 +28,6 @@ async function loadProductData() {
// 更新界面
document.getElementById('product-name').textContent = currentProduct.name;
- document.getElementById('product-description').textContent = currentProduct.description;
document.getElementById('product-price').textContent = currentProduct.price.toFixed(2);
document.getElementById('unit-price').textContent = currentProduct.price.toFixed(2);
@@ -184,7 +183,6 @@ function showShippingInfoModal() {
// 更新订单汇总信息
document.getElementById('summary-product-name').textContent = currentProduct.name;
- document.getElementById('summary-product-desc').textContent = currentProduct.description;
document.getElementById('summary-quantity').textContent = quantity;
document.getElementById('summary-unit-price').textContent = `$${unitPrice.toFixed(2)} USDT`;
document.getElementById('summary-total-price').textContent = `$${finalTotal.toFixed(2)} USDT`;
diff --git a/public/manual-payment.html b/public/manual-payment.html
index 7aafb50..23c046b 100644
--- a/public/manual-payment.html
+++ b/public/manual-payment.html
@@ -3,7 +3,7 @@
-
手动支付确认 - 加密世界商城
+ 手动支付确认 - Crypto World Mall
diff --git a/public/success.html b/public/success.html
index bc14479..aaeb4b5 100644
--- a/public/success.html
+++ b/public/success.html
@@ -3,7 +3,7 @@
- 支付成功 - 加密世界商城
+ 支付成功 - Crypto World Mall
diff --git a/server.js b/server.js
index 67252ec..fc86ca2 100644
--- a/server.js
+++ b/server.js
@@ -53,9 +53,9 @@ const UPAY_API_URL = 'https://api.upay.ink/v1/api/open';
// 产品配置
const PRODUCTS = {
'premium-product': {
- name: 'Bitaxe 601 比特币刮刮乐',
+ name: 'Bitaxe 601 Bitcoin Miner',
price: 99,
- description: '这是我们的比特币刮刮乐,质量优秀'
+ description: '一款专为个人和小型矿工设计的比特币 ASIC 矿机,主打高效节能与静音运行。采用定制芯片优化能效比,算力稳定,功耗更低,适合家庭或小型矿场部署。支持开源固件,可灵活调整挖矿策略。购买即有机会参与抽奖,赢取算力升级、比特币奖励或限量配件,增添挖矿乐趣。低门槛、易上手,是新手入门和节能挖矿的理想选择。'
}
};