第一次提交:微信小程序前端最新完整代码

This commit is contained in:
XingQue
2026-06-12 21:55:06 +08:00
commit 84be8489b4
330 changed files with 74263 additions and 0 deletions

50
pages/tixian/tixian.wxss Normal file
View File

@@ -0,0 +1,50 @@
/* pages/tixian/tixian.wxss */
.tixian-container {
width: 100%;
min-height: 100vh;
position: relative;
}
/* 加载状态 */
.loading-center, .error-center {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 100vh;
color: #ffffff;
background: #1a0b2e; /* 与赛博朋克背景统一 */
}
.loading-spinner {
width: 60rpx;
height: 60rpx;
border: 4rpx solid rgba(157, 78, 221, 0.3);
border-top-color: #9d4edd;
border-radius: 50%;
animation: spin 0.8s linear infinite;
margin-bottom: 30rpx;
}
.loading-text {
font-size: 28rpx;
color: rgba(255, 255, 255, 0.7);
}
.error-text {
font-size: 28rpx;
margin-bottom: 30rpx;
}
.retry-btn {
padding: 20rpx 60rpx;
background: linear-gradient(90deg, #6a11cb, #2575fc);
color: white;
border-radius: 40rpx;
font-size: 28rpx;
}
@keyframes spin {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}