Files
soul-yongping/miniprogram/pages/gift-pay/detail.wxss
Alex-larget 0d12ab1d07 Update project documentation and enhance user interaction features
- Added a new entry for user interaction habit analysis based on agent transcripts, summarizing key insights into communication styles and preferences.
- Updated project indices to reflect the latest developments, including the addition of a wallet balance feature and enhancements to the mini program's user interface for better user experience.
- Improved the handling of loading states in the chapters page, ensuring a smoother user experience during data retrieval.
- Implemented a gift payment sharing feature, allowing users to share payment requests with friends for collaborative purchases.
2026-03-17 11:44:36 +08:00

161 lines
2.4 KiB
Plaintext

/* Soul创业派对 - 代付详情页 */
.page {
min-height: 100vh;
background: #000;
}
.nav-bar {
position: fixed;
top: 0;
left: 0;
right: 0;
z-index: 100;
background: rgba(0, 0, 0, 0.9);
border-bottom: 1rpx solid rgba(255, 255, 255, 0.08);
}
.nav-content {
display: flex;
align-items: center;
justify-content: space-between;
padding: 0 24rpx;
height: 88rpx;
}
.nav-back {
width: 72rpx;
height: 72rpx;
border-radius: 50%;
background: #1c1c1e;
display: flex;
align-items: center;
justify-content: center;
}
.back-arrow {
font-size: 36rpx;
color: rgba(255, 255, 255, 0.8);
}
.nav-title {
font-size: 32rpx;
font-weight: 600;
color: #fff;
}
.content {
padding: 32rpx;
}
.loading-box {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
padding: 120rpx 0;
}
.loading-spinner {
width: 48rpx;
height: 48rpx;
border: 4rpx solid rgba(0, 206, 209, 0.3);
border-top-color: #00CED1;
border-radius: 50%;
animation: spin 0.8s linear infinite;
}
@keyframes spin {
to { transform: rotate(360deg); }
}
.loading-text {
margin-top: 24rpx;
font-size: 28rpx;
color: rgba(255, 255, 255, 0.5);
}
.card {
background: #1c1c1e;
border-radius: 24rpx;
overflow: hidden;
margin-bottom: 32rpx;
}
.card-header {
padding: 32rpx;
border-bottom: 1rpx solid rgba(255, 255, 255, 0.06);
}
.card-title {
display: block;
font-size: 28rpx;
color: rgba(255, 255, 255, 0.5);
margin-bottom: 8rpx;
}
.initiator {
font-size: 34rpx;
font-weight: 600;
color: #fff;
}
.card-body {
padding: 32rpx;
}
.row {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 24rpx;
}
.row:last-child {
margin-bottom: 0;
}
.label {
font-size: 28rpx;
color: rgba(255, 255, 255, 0.5);
}
.value {
font-size: 28rpx;
color: #fff;
}
.amount-row .amount {
font-size: 40rpx;
font-weight: 700;
color: #00CED1;
}
.tips {
padding: 0 8rpx 32rpx;
font-size: 24rpx;
color: rgba(255, 255, 255, 0.4);
}
.pay-btn {
width: 100%;
height: 96rpx;
line-height: 96rpx;
background: linear-gradient(90deg, #00CED1 0%, #20B2AA 100%);
color: #fff;
font-size: 32rpx;
font-weight: 600;
border-radius: 48rpx;
border: none;
}
.pay-btn[disabled] {
opacity: 0.6;
}
.empty {
text-align: center;
padding: 120rpx 0;
font-size: 28rpx;
color: rgba(255, 255, 255, 0.5);
}