重复扣款修复

This commit is contained in:
2026-06-13 13:21:15 +08:00
parent d20ed2a691
commit 6a13277194
6 changed files with 175 additions and 3 deletions

View File

@@ -76,4 +76,85 @@
.message {
font-size: 24rpx;
color: rgba(255, 255, 255, 0.6);
}
/* 提现协议复选框 */
.agreement-box {
margin-top: 40rpx;
padding: 0 10rpx;
}
.checkbox-label {
display: flex;
align-items: center;
}
.agreement-text {
font-size: 24rpx;
color: rgba(255, 255, 255, 0.6);
margin-left: 8rpx;
line-height: 1.4;
}
/* 提现规则说明 */
.rules-box {
margin-top: 30rpx;
margin-bottom: 40rpx;
background: #1a191e;
border-radius: 20rpx;
padding: 36rpx 30rpx;
}
.rules-title {
display: flex;
align-items: center;
font-size: 28rpx;
font-weight: bold;
color: #ffda2e;
margin-bottom: 28rpx;
padding-bottom: 20rpx;
border-bottom: 2rpx solid #2a2930;
}
.rules-title-icon {
margin-right: 12rpx;
font-size: 30rpx;
}
.rules-list {
display: flex;
flex-direction: column;
gap: 0rpx;
}
.rules-item {
display: flex;
flex-direction: row;
align-items: flex-start;
padding: 14rpx 0;
border-bottom: 1rpx solid #222028;
}
.rules-item:last-child {
border-bottom: none;
}
.rules-dot {
color: #ffda2e;
font-size: 32rpx;
line-height: 40rpx;
margin-right: 12rpx;
flex-shrink: 0;
}
.rules-text {
font-size: 24rpx;
color: rgba(255, 255, 255, 0.65);
line-height: 40rpx;
flex: 1;
}
.rules-label {
color: rgba(255, 255, 255, 0.9);
font-weight: bold;
}