mirror of
https://github.com/acepanel/acepanel.github.io.git
synced 2026-02-04 14:07:16 +08:00
356 lines
7.7 KiB
Markdown
356 lines
7.7 KiB
Markdown
---
|
|
sidebar: false
|
|
aside: false
|
|
prev: false
|
|
next: false
|
|
---
|
|
|
|
<style>
|
|
.cert-hero {
|
|
text-align: center;
|
|
padding: 40px 0 60px;
|
|
}
|
|
|
|
.cert-hero h1 {
|
|
font-size: 36px;
|
|
margin-bottom: 16px;
|
|
border: none;
|
|
}
|
|
|
|
.cert-hero p {
|
|
font-size: 18px;
|
|
opacity: 0.8;
|
|
max-width: 600px;
|
|
margin: 0 auto;
|
|
}
|
|
|
|
.cert-cards {
|
|
display: grid;
|
|
grid-template-columns: repeat(2, 1fr);
|
|
gap: 24px;
|
|
margin-bottom: 60px;
|
|
}
|
|
|
|
@media (max-width: 768px) {
|
|
.cert-cards {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
}
|
|
|
|
.cert-card {
|
|
position: relative;
|
|
padding: 32px;
|
|
border-radius: 16px;
|
|
background: var(--vp-c-bg-soft);
|
|
border: 1px solid var(--vp-c-divider);
|
|
transition: all 0.3s ease;
|
|
}
|
|
|
|
.cert-card:hover {
|
|
transform: translateY(-4px);
|
|
box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
|
|
border-color: var(--vp-c-brand);
|
|
}
|
|
|
|
.cert-card.featured {
|
|
border: 2px solid var(--vp-c-brand);
|
|
}
|
|
|
|
.cert-badge {
|
|
position: absolute;
|
|
top: -12px;
|
|
right: 24px;
|
|
background: var(--vp-c-brand);
|
|
color: white;
|
|
padding: 4px 16px;
|
|
border-radius: 20px;
|
|
font-size: 12px;
|
|
font-weight: 600;
|
|
}
|
|
|
|
.cert-card-icon {
|
|
width: 48px;
|
|
height: 48px;
|
|
border-radius: 12px;
|
|
background: var(--vp-c-brand);
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
font-size: 24px;
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
.cert-card h3 {
|
|
font-size: 22px;
|
|
margin: 0 0 8px 0;
|
|
border: none;
|
|
padding: 0;
|
|
}
|
|
|
|
.cert-card-desc {
|
|
font-size: 14px;
|
|
opacity: 0.7;
|
|
margin-bottom: 24px;
|
|
}
|
|
|
|
.cert-price {
|
|
margin-bottom: 24px;
|
|
}
|
|
|
|
.cert-price-value {
|
|
font-size: 42px;
|
|
font-weight: 700;
|
|
color: var(--vp-c-brand);
|
|
}
|
|
|
|
.cert-price-unit {
|
|
font-size: 16px;
|
|
opacity: 0.6;
|
|
}
|
|
|
|
.cert-features {
|
|
margin-bottom: 28px;
|
|
}
|
|
|
|
.cert-feature {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 12px;
|
|
padding: 10px 0;
|
|
border-bottom: 1px solid var(--vp-c-divider);
|
|
}
|
|
|
|
.cert-feature:last-child {
|
|
border-bottom: none;
|
|
}
|
|
|
|
.cert-feature-check {
|
|
width: 20px;
|
|
height: 20px;
|
|
border-radius: 50%;
|
|
background: #10b981;
|
|
color: white;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
font-size: 12px;
|
|
flex-shrink: 0;
|
|
}
|
|
|
|
.cert-card a.cert-btn {
|
|
display: block !important;
|
|
width: 100% !important;
|
|
padding: 14px 24px !important;
|
|
border-radius: 8px !important;
|
|
font-size: 16px !important;
|
|
font-weight: 600 !important;
|
|
text-align: center !important;
|
|
text-decoration: none !important;
|
|
transition: all 0.2s ease !important;
|
|
cursor: pointer !important;
|
|
background: var(--vp-c-bg-soft) !important;
|
|
color: var(--vp-c-text-1) !important;
|
|
border: 1px solid var(--vp-c-divider) !important;
|
|
}
|
|
|
|
.cert-card a.cert-btn:hover {
|
|
border-color: var(--vp-c-brand) !important;
|
|
color: var(--vp-c-brand) !important;
|
|
text-decoration: none !important;
|
|
}
|
|
|
|
.cert-card.featured a.cert-btn {
|
|
background: var(--vp-c-brand) !important;
|
|
color: white !important;
|
|
border: none !important;
|
|
}
|
|
|
|
.cert-card.featured a.cert-btn:hover {
|
|
opacity: 0.9 !important;
|
|
transform: translateY(-1px) !important;
|
|
color: white !important;
|
|
}
|
|
|
|
.cert-why {
|
|
margin-top: 60px;
|
|
}
|
|
|
|
.cert-why h2 {
|
|
text-align: center;
|
|
font-size: 28px;
|
|
margin-bottom: 40px;
|
|
}
|
|
|
|
.cert-why-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(4, 1fr);
|
|
gap: 24px;
|
|
}
|
|
|
|
@media (max-width: 768px) {
|
|
.cert-why-grid {
|
|
grid-template-columns: repeat(2, 1fr);
|
|
}
|
|
}
|
|
|
|
.cert-why-item {
|
|
text-align: center;
|
|
padding: 24px 16px;
|
|
border-radius: 12px;
|
|
background: var(--vp-c-bg-soft);
|
|
transition: all 0.3s ease;
|
|
}
|
|
|
|
.cert-why-item:hover {
|
|
transform: translateY(-2px);
|
|
}
|
|
|
|
.cert-why-icon {
|
|
width: 56px;
|
|
height: 56px;
|
|
margin: 0 auto 16px;
|
|
border-radius: 14px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
font-size: 28px;
|
|
}
|
|
|
|
.cert-why-icon.shield { background: #3b82f6; }
|
|
.cert-why-icon.bolt { background: #f59e0b; }
|
|
.cert-why-icon.globe { background: #10b981; }
|
|
.cert-why-icon.support { background: #8b5cf6; }
|
|
|
|
.cert-why-item h4 {
|
|
font-size: 16px;
|
|
margin: 0 0 8px 0;
|
|
}
|
|
|
|
.cert-why-item p {
|
|
font-size: 14px;
|
|
opacity: 0.7;
|
|
margin: 0;
|
|
}
|
|
|
|
.cert-contact {
|
|
margin-top: 60px;
|
|
text-align: center;
|
|
padding: 40px;
|
|
border-radius: 16px;
|
|
background: var(--vp-c-brand);
|
|
color: white;
|
|
}
|
|
|
|
.cert-contact h3 {
|
|
font-size: 24px;
|
|
margin: 0 0 12px 0;
|
|
color: white;
|
|
border: none;
|
|
}
|
|
|
|
.cert-contact p {
|
|
opacity: 0.9;
|
|
margin: 0 0 24px 0;
|
|
}
|
|
|
|
.cert-contact-btn {
|
|
display: inline-block;
|
|
padding: 12px 32px;
|
|
background: white;
|
|
color: var(--vp-c-brand);
|
|
border-radius: 8px;
|
|
font-weight: 600;
|
|
text-decoration: none;
|
|
transition: all 0.2s ease;
|
|
}
|
|
|
|
.cert-contact-btn:hover {
|
|
transform: translateY(-2px);
|
|
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
|
|
}
|
|
</style>
|
|
|
|
<div class="cert-hero">
|
|
<h1>SSL 证书服务</h1>
|
|
<p>免费证书有效期仅 3 个月且需要频繁续签, 付费证书有效期一年,省心省力</p>
|
|
</div>
|
|
|
|
<div class="cert-cards">
|
|
<div class="cert-card">
|
|
<div class="cert-card-icon">🔒</div>
|
|
<h3>DV 单域名证书</h3>
|
|
<div class="cert-card-desc">适合单个网站使用</div>
|
|
<div class="cert-price"><span class="cert-price-value">¥1X</span>
|
|
<span class="cert-price-unit"> / 年</span>
|
|
</div>
|
|
<div class="cert-features">
|
|
<div class="cert-feature"><span class="cert-feature-check">✓</span>
|
|
<span>域名验证 (DV) 证书</span>
|
|
</div>
|
|
<div class="cert-feature"><span class="cert-feature-check">✓</span>
|
|
<span>保护单个域名</span>
|
|
</div>
|
|
<div class="cert-feature"><span class="cert-feature-check">✓</span>
|
|
<span>一年有效期</span>
|
|
</div>
|
|
<div class="cert-feature"><span class="cert-feature-check">✓</span>
|
|
<span>国际认可品牌</span>
|
|
</div>
|
|
</div><a href="https://jq.qq.com/?_wv=1027&k=I1oJKSTH" target="_blank" class="cert-btn cert-btn-secondary">联系购买</a>
|
|
</div>
|
|
|
|
<div class="cert-card featured"><span class="cert-badge">推荐</span>
|
|
<div class="cert-card-icon">🛡️</div>
|
|
<h3>DV 泛域名证书</h3>
|
|
<div class="cert-card-desc">一张证书保护所有子域名</div>
|
|
<div class="cert-price"><span class="cert-price-value">¥1XX</span>
|
|
<span class="cert-price-unit"> / 年</span>
|
|
</div>
|
|
<div class="cert-features">
|
|
<div class="cert-feature"><span class="cert-feature-check">✓</span>
|
|
<span>域名验证 (DV) 证书</span>
|
|
</div>
|
|
<div class="cert-feature"><span class="cert-feature-check">✓</span>
|
|
<span>保护所有子域名 (*.domain.com)</span>
|
|
</div>
|
|
<div class="cert-feature"><span class="cert-feature-check">✓</span>
|
|
<span>一年有效期</span>
|
|
</div>
|
|
<div class="cert-feature"><span class="cert-feature-check">✓</span>
|
|
<span>国际认可品牌</span>
|
|
</div>
|
|
</div><a href="https://jq.qq.com/?_wv=1027&k=I1oJKSTH" target="_blank" class="cert-btn cert-btn-primary">联系购买</a>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="cert-why">
|
|
<h2>为什么选择付费证书</h2>
|
|
<div class="cert-why-grid">
|
|
<div class="cert-why-item">
|
|
<div class="cert-why-icon shield">🔐</div>
|
|
<h4>更长有效期</h4>
|
|
<p>一年有效期,无需频繁续签</p>
|
|
</div>
|
|
<div class="cert-why-item">
|
|
<div class="cert-why-icon bolt">⚡</div>
|
|
<h4>快速签发</h4>
|
|
<p>付款后快速完成签发</p>
|
|
</div>
|
|
<div class="cert-why-item">
|
|
<div class="cert-why-icon globe">🌐</div>
|
|
<h4>国际品牌</h4>
|
|
<p>全球浏览器信任</p>
|
|
</div>
|
|
<div class="cert-why-item">
|
|
<div class="cert-why-icon support">💬</div>
|
|
<h4>专业支持</h4>
|
|
<p>遇到问题随时咨询</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="cert-contact">
|
|
<h3>需要帮助?</h3>
|
|
<p>如有任何问题,欢迎加入 QQ 群咨询</p><a href="https://jq.qq.com/?_wv=1027&k=I1oJKSTH" target="_blank" class="cert-contact-btn">加入 QQ 群 12370907</a>
|
|
</div>
|