Files
MiniProgram/NamingAssistant/pages/result/index.ttss

151 lines
2.6 KiB
Plaintext
Raw Normal View History

2025-11-05 00:22:09 +08:00
.page {
position: relative;
min-height: 100vh;
overflow: hidden;
}
.glow-layer {
position: absolute;
inset: 0;
pointer-events: none;
}
.glow {
position: absolute;
border-radius: 50%;
filter: blur(90px);
opacity: 0.5;
animation: float 20s ease-in-out infinite;
}
.glow-one {
width: 260px;
height: 260px;
top: -80px;
right: -40px;
background: radial-gradient(circle, rgba(84, 198, 255, 0.8), rgba(84, 198, 255, 0));
}
.glow-two {
width: 300px;
height: 300px;
bottom: -140px;
left: -60px;
background: radial-gradient(circle, rgba(214, 139, 255, 0.8), rgba(214, 139, 255, 0));
animation-delay: 6s;
}
@keyframes float {
0% {
transform: translate3d(0, 0, 0);
opacity: 0.4;
}
50% {
transform: translate3d(40px, -30px, 0);
opacity: 0.7;
}
100% {
transform: translate3d(0, 0, 0);
opacity: 0.4;
}
}
.content {
position: relative;
z-index: 2;
height: 100vh;
padding: 18px 12px 10px;
box-sizing: border-box;
display: flex;
flex-direction: column;
gap: 20px;
}
.headline {
text-align: center;
display: flex;
flex-direction: column;
gap: 10px;
}
.title {
font-size: 28px;
letter-spacing: 8px;
text-indent: 8px;
color: #fbe6ce;
text-shadow: 0 0 16px rgba(255, 196, 120, 0.35);
}
.subtitle {
font-size: 13px;
color: rgba(255, 244, 227, 0.78);
line-height: 1.6;
}
2025-11-05 17:26:52 +08:00
.summary {
background: rgba(18, 24, 46, 0.7);
border: 1px solid rgba(255, 255, 255, 0.08);
border-radius: 14px;
padding: 14px 16px;
color: rgba(255, 244, 227, 0.85);
line-height: 1.7;
font-size: 13px;
}
.summary-text {
white-space: pre-line;
}
2025-11-05 00:22:09 +08:00
.tip {
font-size: 14px;
color: rgba(255, 244, 227, 0.7);
2025-11-05 17:26:52 +08:00
letter-spacing: 2px;
2025-11-05 00:22:09 +08:00
text-align: center;
margin-bottom: 8px;
}
.result-card {
display: flex;
flex-direction: column;
2025-11-05 17:26:52 +08:00
gap: 12px;
2025-11-05 00:22:09 +08:00
background: linear-gradient(135deg, rgba(16, 22, 46, 0.86), rgba(36, 44, 80, 0.76));
border-radius: 18px;
padding: 18px 20px;
margin-bottom: 12px;
border: 1px solid rgba(255, 255, 255, 0.12);
box-shadow: 0 18px 32px rgba(8, 12, 24, 0.45);
backdrop-filter: blur(16px);
}
2025-11-05 17:26:52 +08:00
.result-line {
font-size: 15px;
color: rgba(255, 244, 227, 0.9);
line-height: 1.8;
word-break: break-all;
2025-11-05 00:22:09 +08:00
}
.collect-button {
height: 32px;
line-height: 32px;
padding: 0 22px;
border-radius: 20px;
background: rgba(255, 255, 255, 0.12);
color: #fbe6ce;
border: 1px solid rgba(255, 255, 255, 0.18);
2025-11-05 17:26:52 +08:00
align-self: flex-end;
2025-11-05 00:22:09 +08:00
}
.back-button {
width: 100%;
border-radius: 24px;
margin-top: 16px;
}
.empty {
display: flex;
flex-direction: column;
align-items: center;
gap: 18px;
margin-top: 80px;
color: rgba(255, 244, 227, 0.8);
font-size: 14px;
}