-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
144 lines (130 loc) · 4.11 KB
/
index.html
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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>esim流量卡商城</title>
<meta name="keywords" content="esim流量卡, esim手机流量卡, esim全国流量卡, esim本地流量卡, esim流量卡usdt购买">
<meta name="description" content="esim流量卡商城提供各种类型的手机流量卡,支持usdt支付购买,包括全国流量卡和本地流量卡,适合不同地区和使用时长,价格优惠,欢迎购买。">
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
background-color: #f5f5f5;
}
.container {
width: 90%;
max-width: 1200px;
background-color: #fff;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
border-radius: 8px;
overflow: hidden;
}
.header {
background-color: #007bff;
color: #fff;
padding: 1rem;
text-align: center;
}
.products {
display: flex;
flex-direction: column;
}
.product {
display: flex;
flex-direction: column;
padding: 1rem;
border-bottom: 1px solid #ddd;
}
.product:last-child {
border-bottom: none;
}
.product-details {
display: flex;
flex-direction: column;
}
.product-details span {
margin: 0.5rem 0;
}
.buy-button {
margin-top: 1rem;
text-align: center;
}
.buy-button a {
display: inline-block;
padding: 0.5rem 1rem;
background-color: #007bff;
color: #fff;
text-decoration: none;
border-radius: 4px;
}
@media (min-width: 768px) {
.product {
flex-direction: row;
justify-content: space-between;
align-items: center;
}
.product-details {
flex-direction: row;
flex: 1;
}
.product-details span {
flex: 1;
margin: 0;
}
.buy-button {
margin-top: 0;
margin-left: 1rem;
}
}
</style>
</head>
<body>
<div class="container">
<div class="header">
<h1>esim流量卡商城</h1>
</div>
<div class="products">
<div class="product">
<div class="product-details">
<span>地区: 中港澳</span>
<span>流量: 10G</span>
<span>时长: 30天</span>
<span>价格: 30usdt</span>
</div>
<div class="buy-button">
<a href="https://t.me/Angela_Evelyn">usdt购买</a>
</div>
</div>
<div class="product">
<div class="product-details">
<span>地区: 中港澳</span>
<span>流量: 45G</span>
<span>时长: 365天</span>
<span>价格: 50usdt</span>
</div>
<div class="buy-button">
<a href="https://t.me/Angela_Evelyn">usdt购买</a>
</div>
</div>
<div class="product">
<div class="product-details">
<span>地区: 中港澳</span>
<span>流量: 30G</span>
<span>时长: 90天</span>
<span>价格: 40usdt</span>
</div>
<div class="buy-button">
<a href="https://t.me/Angela_Evelyn">usdt购买</a>
</div>
</div>
<!-- 可以添加更多商品 -->
</div>
</div>
</body>
</html>