/* pages/distribution/withdraw.wxss */ .container { min-height: 100vh; background: #f8f8f8; padding-bottom: calc(env(safe-area-inset-bottom) + 40rpx); } /* 余额卡片 */ .balance-card { margin: 20rpx; padding: 40rpx 30rpx; background: linear-gradient(135deg, #ff4d4f, #ff7875); border-radius: 16rpx; color: #fff; text-align: center; } .balance-card .title { font-size: 28rpx; opacity: 0.9; line-height: 1.5; } .balance-card .amount { font-size: 72rpx; font-weight: 600; margin: 20rpx 0; line-height: 1.2; } .balance-card .tips { display: flex; justify-content: center; font-size: 24rpx; opacity: 0.9; line-height: 1.5; } .tip-item { margin: 0 20rpx; display: flex; align-items: center; } /* 提现表单 */ .withdraw-form { margin: 20rpx; padding: 30rpx; background: #fff; border-radius: 16rpx; } .form-title { font-size: 32rpx; color: #333; margin-bottom: 20rpx; font-weight: 500; line-height: 1.5; } .input-group { display: flex; align-items: center; border-bottom: 2rpx solid #f0f0f0; padding: 20rpx 0; margin-bottom: 16rpx; } .currency { font-size: 40rpx; color: #333; margin-right: 20rpx; font-weight: 500; line-height: 1; display: flex; align-items: center; } .amount-input { flex: 1; font-size: 40rpx; color: #333; height: 60rpx; line-height: 60rpx; padding: 0; } .amount-tips { display: flex; justify-content: space-between; align-items: center; font-size: 24rpx; color: #999; margin-bottom: 40rpx; line-height: 1.5; } .all-amount { color: #ff4d4f; padding: 10rpx 0 10rpx 20rpx; } /* 提现方式 */ .withdraw-method { margin-bottom: 40rpx; } .method-title { font-size: 32rpx; color: #333; margin-bottom: 20rpx; font-weight: 500; line-height: 1.5; } .method-list { background: #f8f8f8; border-radius: 12rpx; overflow: hidden; } .method-item { display: flex; align-items: center; padding: 30rpx; background: #fff; margin-bottom: 2rpx; position: relative; } .method-item.active { background: rgba(255, 77, 79, 0.05); } .method-icon { width: 48rpx; height: 48rpx; margin-right: 20rpx; flex-shrink: 0; } .method-info { flex: 1; display: flex; flex-direction: column; justify-content: center; } .method-name { font-size: 28rpx; color: #333; margin-bottom: 4rpx; line-height: 1.5; } .method-desc { font-size: 24rpx; color: #999; line-height: 1.5; } .icon-check { font-size: 40rpx; color: #ff4d4f; opacity: 0; display: flex; align-items: center; } .method-item.active .icon-check { opacity: 1; } /* 提现按钮 */ .withdraw-btn { width: 100%; height: 88rpx; background: #ff4d4f; color: #fff; font-size: 32rpx; border-radius: 44rpx; margin: 40rpx 0; font-weight: 500; border: none; padding: 0; display: flex; align-items: center; justify-content: center; } .withdraw-btn.disabled { background: #ffa39e; opacity: 0.6; } /* 提现说明 */ .withdraw-rules { margin-top: 40rpx; padding-top: 40rpx; border-top: 2rpx solid #f5f5f5; } .rules-title { font-size: 28rpx; color: #333; margin-bottom: 20rpx; font-weight: 500; line-height: 1.5; } .rule-item { font-size: 24rpx; color: #666; margin-bottom: 12rpx; padding-left: 20rpx; position: relative; line-height: 1.5; } .rule-item:last-child { margin-bottom: 0; }