diff --git a/activation-codes.html b/activation-codes.html new file mode 100644 index 0000000..ac9f8f4 --- /dev/null +++ b/activation-codes.html @@ -0,0 +1,520 @@ + + + + + + 优惠券列表 - 听泉科技 + + + + + +
+ +
+
+ + + +
+
+ + +
+
+

优惠券列表

+ +
+

听泉Cursor助手 - 专业AI编程辅助工具

+

店铺购买链接天卡,周卡,月卡

+
+ + 立即购买 + + 👇 使用下方优惠券可享受折扣价格 +
+
+ +
+

听泉Cursor助手优惠券

+

下面是购买Cursor助手时可使用的优惠券的商品,点击复制按钮获取优惠券代码

+
+ + 立即购买 + + + + 数据最后更新时间: 加载中... + + +
+
+ + + + +
+
+ 序号 + 产品名字 + 优惠券 + 优惠券金额 + 有效期 + 操作 +
+ +
+ +
+
+ +
+

如何使用优惠券

+
+
+
1
+

点击"复制"按钮复制您需要的优惠券代码

+
+
+
2
+

前往购买页面

+
+
+
3
+

结算时在"使用优惠券"输入框粘贴代码

+
+
+
4
+

点击"确认"按钮享受折扣价格

+
+
+
+

注意:每个优惠券仅可使用一次,请在有效期内使用。如有问题请联系客服微信:behikcigar

+
+
+ + 前往购买 Cursor助手 + +
+
+
+
+ + + + + + + + + + + \ No newline at end of file diff --git a/api-docs.html b/api-docs.html index b65c945..e08dbdb 100644 --- a/api-docs.html +++ b/api-docs.html @@ -76,6 +76,7 @@
  • 首页
  • 产品
  • 价格
  • +
  • 优惠券
  • 联系我们
  • API文档
  • diff --git a/contact.html b/contact.html index a5b51c1..3cf596e 100644 --- a/contact.html +++ b/contact.html @@ -76,6 +76,7 @@
  • 首页
  • 产品
  • 价格
  • +
  • 优惠券
  • 联系我们
  • API文档
  • diff --git a/css/style.css b/css/style.css index f64cc8c..c324f16 100644 --- a/css/style.css +++ b/css/style.css @@ -614,4 +614,134 @@ footer { 100% { box-shadow: 0 0 0 0 rgba(79, 70, 229, 0); } +} + +/* 优惠券部分样式 */ +.coupons { + padding: 4rem 0; + background-color: #f8f9fa; +} + +.section-desc { + text-align: center; + max-width: 800px; + margin: 0 auto 2rem; + color: #666; +} + +.coupon-grid { + display: grid; + grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); + gap: 2rem; + margin-bottom: 3rem; +} + +.coupon-card { + background-color: white; + border-radius: 10px; + overflow: hidden; + box-shadow: 0 5px 15px rgba(0,0,0,0.1); + transition: transform 0.3s, box-shadow 0.3s; + border: 2px dashed #3498db; + position: relative; +} + +.coupon-card:hover { + transform: translateY(-5px); + box-shadow: 0 8px 25px rgba(0,0,0,0.15); +} + +.coupon-content { + padding: 1.5rem; + position: relative; +} + +.coupon-header { + display: flex; + justify-content: space-between; + align-items: center; + margin-bottom: 1rem; +} + +.coupon-value { + font-size: 1.8rem; + font-weight: bold; + color: #e74c3c; +} + +.coupon-type { + background-color: #3498db; + color: white; + padding: 0.3rem 0.8rem; + border-radius: 20px; + font-size: 0.9rem; +} + +.coupon-code { + background-color: #f0f0f0; + padding: 0.8rem; + text-align: center; + font-family: monospace; + font-size: 1.2rem; + font-weight: bold; + letter-spacing: 1px; + border-radius: 5px; + margin: 1rem 0; + border: 1px dashed #ccc; + user-select: all; +} + +.coupon-date { + font-size: 0.85rem; + color: #777; + margin-bottom: 1rem; +} + +.btn-copy { + width: 100%; + background-color: #2ecc71; + border: none; +} + +.btn-copy:hover { + background-color: #27ae60; +} + +.coupon-note { + background-color: #f8f4e5; + padding: 0.8rem; + text-align: center; + font-size: 0.9rem; + color: #b58105; +} + +.coupon-instructions { + max-width: 700px; + margin: 0 auto; + background-color: white; + padding: 2rem; + border-radius: 10px; + box-shadow: 0 5px 15px rgba(0,0,0,0.05); +} + +.coupon-instructions h3 { + text-align: center; + margin-bottom: 1.5rem; + color: #2c3e50; +} + +.coupon-instructions ol { + margin-left: 1.5rem; + line-height: 1.8; +} + +.coupon-instructions a { + color: #3498db; + text-decoration: underline; +} + +@media (max-width: 768px) { + .coupon-grid { + grid-template-columns: 1fr; + } } \ No newline at end of file diff --git a/index.html b/index.html index de91f74..143b4c7 100644 --- a/index.html +++ b/index.html @@ -20,6 +20,7 @@
  • 首页
  • 产品
  • 价格
  • +
  • 优惠券
  • 联系我们
  • API文档
  • @@ -45,6 +46,10 @@ 前往购买 + + + 优惠券 + @@ -150,6 +155,7 @@
  • 首页
  • 产品
  • 价格
  • +
  • 激活码
  • 联系我们
  • API文档
  • diff --git a/products.html b/products.html index 2eda767..223eb21 100644 --- a/products.html +++ b/products.html @@ -70,6 +70,7 @@
  • 首页
  • 产品
  • 价格
  • +
  • 优惠券
  • 联系我们
  • API文档