update
This commit is contained in:
parent
09086bc6a3
commit
782f14be3f
@ -3,7 +3,7 @@
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>订单管理 - 加密世界商城</title>
|
||||
<title>订单管理 - Crypto World Mall</title>
|
||||
<link rel="stylesheet" href="/css/style.css">
|
||||
<link rel="stylesheet" href="/css/admin.css">
|
||||
</head>
|
||||
|
||||
@ -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 {
|
||||
|
||||
@ -3,7 +3,7 @@
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>加密世界商城 | Crypto Shopping Maill</title>
|
||||
<title>Crypto World Mall</title>
|
||||
<link rel="stylesheet" href="/css/style.css">
|
||||
<link rel="stylesheet" href="/css/spinner.css">
|
||||
</head>
|
||||
@ -11,8 +11,8 @@
|
||||
<div class="container">
|
||||
<!-- 页面头部 -->
|
||||
<header class="site-header">
|
||||
<h1>加密世界商城</h1>
|
||||
<p>专业的数字货币商品交易平台</p>
|
||||
<h1>Crypto World Mall</h1>
|
||||
<p>More professional, Less risk</p>
|
||||
</header>
|
||||
|
||||
<!-- 联系我们按钮 -->
|
||||
@ -27,7 +27,6 @@
|
||||
</div>
|
||||
<div class="product-details">
|
||||
<h2 id="product-name" class="product-title">高级产品</h2>
|
||||
<p id="product-description" class="product-desc">这是我们的高级产品,质量优秀</p>
|
||||
<div class="product-price">
|
||||
<span class="price-text">$<span id="product-price">99.99</span> USDT</span>
|
||||
</div>
|
||||
@ -117,7 +116,7 @@
|
||||
<!-- 页面底部 -->
|
||||
<footer class="site-footer">
|
||||
<div class="footer-content">
|
||||
<p>© 2024 加密世界商城 - 安全可靠的数字货币交易平台</p>
|
||||
<p>© 2025 Crypto World Mall | More professional, Less risk</p>
|
||||
<button class="admin-link-btn" onclick="showAdminLogin()">管理入口</button>
|
||||
</div>
|
||||
</footer>
|
||||
@ -239,7 +238,6 @@
|
||||
<img src="/images/image01.jpg" alt="产品图片" class="product-thumb">
|
||||
<div class="product-details">
|
||||
<h4 id="summary-product-name">高级产品</h4>
|
||||
<p id="summary-product-desc">产品描述</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="quantity-display">
|
||||
|
||||
@ -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`;
|
||||
|
||||
@ -3,7 +3,7 @@
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>手动支付确认 - 加密世界商城</title>
|
||||
<title>手动支付确认 - Crypto World Mall</title>
|
||||
<link rel="stylesheet" href="/css/style.css">
|
||||
</head>
|
||||
<body>
|
||||
|
||||
@ -3,7 +3,7 @@
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>支付成功 - 加密世界商城</title>
|
||||
<title>支付成功 - Crypto World Mall</title>
|
||||
<link rel="stylesheet" href="/css/style.css">
|
||||
</head>
|
||||
<body>
|
||||
|
||||
@ -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 矿机,主打高效节能与静音运行。采用定制芯片优化能效比,算力稳定,功耗更低,适合家庭或小型矿场部署。支持开源固件,可灵活调整挖矿策略。购买即有机会参与抽奖,赢取算力升级、比特币奖励或限量配件,增添挖矿乐趣。低门槛、易上手,是新手入门和节能挖矿的理想选择。'
|
||||
}
|
||||
};
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user