update at 2026-02-14 15:38:29

This commit is contained in:
douboer
2026-02-14 15:38:29 +08:00
parent 9ee74ae7c7
commit 9406b9a8b1
9 changed files with 172 additions and 67 deletions

View File

@@ -279,6 +279,50 @@ body {
display: block;
}
/* Weixin (微信小程序) 弹窗 */
.weixin-trigger {
position: relative;
}
.weixin-popover {
position: absolute;
top: calc(100% + 12px);
right: 0;
width: 180px;
border: 1px solid var(--primary-7);
border-radius: 12px;
background: #fff;
z-index: 10;
padding: 12px;
text-align: center;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.weixin-popover::before {
content: '';
position: absolute;
top: -8px;
right: 16px;
width: 14px;
height: 14px;
background: #fff;
border-top: 1px solid var(--primary-7);
border-left: 1px solid var(--primary-7);
transform: rotate(45deg);
}
.weixin-header {
color: var(--primary-6);
font-size: 14px;
margin-bottom: 12px;
}
.weixin-qrcode {
width: 140px;
height: 140px;
border-radius: 8px;
}
.content {
display: grid;
grid-template-columns: 360px 1fr;