Files
sundynix-radio-mp/pages/subscribe/index.wxss
T
2026-04-28 10:32:19 +08:00

148 lines
2.9 KiB
Plaintext

/* 订阅支付页 */
.subscribe-page {
min-height: 100vh;
background: #F6F6F6;
display: flex;
flex-direction: column;
padding-bottom: 160rpx;
}
/* 顶部频道卡片 */
.channel-card {
background: linear-gradient(135deg, #FF9E6D, #FF7832);
padding: 60rpx 40rpx 48rpx;
display: flex;
flex-direction: column;
align-items: center;
}
.channel-avatar {
width: 120rpx;
height: 120rpx;
background: rgba(255, 255, 255, 0.25);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
margin-bottom: 20rpx;
}
.channel-avatar-emoji { font-size: 56rpx; }
.channel-title {
font-size: 36rpx;
font-weight: 800;
color: #FFF;
margin-bottom: 8rpx;
}
.channel-desc {
font-size: 24rpx;
color: rgba(255, 255, 255, 0.8);
}
/* 套餐区域 */
.plans-wrap {
padding: 32rpx 32rpx 20rpx;
display: flex;
flex-direction: column;
gap: 20rpx;
}
.plan-card {
background: #FFF;
border-radius: 28rpx;
padding: 32rpx 36rpx;
border: 3rpx solid transparent;
position: relative;
transition: all 0.2s;
box-shadow: 0 2rpx 12rpx rgba(0,0,0,0.04);
}
.plan-card.selected {
border-color: #FF9E6D;
background: #FFFAF5;
}
.plan-card.popular {
border-color: #FFD580;
}
.plan-card.popular.selected {
border-color: #FF9E6D;
}
/* 最受欢迎标签 */
.plan-hot-tag {
position: absolute;
top: -20rpx;
left: 36rpx;
background: linear-gradient(135deg, #FF9E6D, #FF7832);
color: #FFF;
font-size: 20rpx;
font-weight: 700;
padding: 6rpx 20rpx;
border-radius: 999rpx;
}
.plan-top {
display: flex;
align-items: center;
gap: 12rpx;
margin-bottom: 12rpx;
}
.plan-name {
font-size: 28rpx;
font-weight: 700;
color: #222;
flex: 1;
}
.plan-badge { margin-left: auto; }
.plan-price {
font-size: 52rpx;
font-weight: 800;
color: #FF7832;
line-height: 1;
}
.plan-unit {
font-size: 22rpx;
color: #999;
margin-top: 6rpx;
display: block;
}
/* 权益说明 */
.benefits {
margin: 0 32rpx;
background: #FFF;
border-radius: 24rpx;
padding: 28rpx 32rpx;
}
.benefit-item {
display: flex;
align-items: center;
gap: 16rpx;
margin-bottom: 18rpx;
font-size: 26rpx;
color: #444;
}
.benefit-item:last-child { margin-bottom: 0; }
/* 底部支付栏 */
.pay-bar {
position: fixed;
bottom: 0;
left: 0;
right: 0;
background: #FFF;
padding: 20rpx 32rpx 48rpx;
display: flex;
align-items: center;
gap: 24rpx;
border-top: 1rpx solid #F0F0F0;
box-shadow: 0 -4rpx 20rpx rgba(0, 0, 0, 0.05);
}
.pay-amount { flex: 1; }
.pay-label { font-size: 22rpx; color: #999; display: block; }
.pay-price { font-size: 44rpx; font-weight: 800; color: #FF7832; line-height: 1; }
.pay-btn {
background: linear-gradient(135deg, #FF9E6D, #FF7832);
color: #FFF;
font-size: 30rpx;
font-weight: 700;
padding: 24rpx 64rpx;
border-radius: 999rpx;
box-shadow: 0 8rpx 24rpx rgba(255, 120, 50, 0.35);
}
.pay-btn:active { transform: scale(0.96); opacity: 0.9; }