123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222 |
- /* 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;
- }
|