Files
venue_wx/pages/withdrawal/index.wxss
2026-06-13 13:21:15 +08:00

160 lines
2.5 KiB
Plaintext

/* pages/withdrawal/index.wxss */
.container {
min-height: calc(100vh - 190rpx);
padding: 30rpx;
padding-top: 190rpx;
}
.box {
background: #1a191e;
border-radius: 20rpx;
}
.box .cell {
display: flex;
justify-content: space-between;
align-items: center;
height: 90rpx;
padding: 0 20rpx;
border-bottom: 2rpx solid #212025;
font-size: 24rpx;
color: rgba(255, 255, 255, 0.6);
}
.box .cell.unLine {
border: none;
}
.box .cell>input {
flex: 1;
margin-left: 20rpx;
color: #FFF;
text-align: right;
}
.box.bottom {
padding: 50rpx;
margin-top: 30rpx;
}
.box .label {
font-size: 24rpx;
color: #FFF;
margin-top: 10rpx;
}
.box .input-box {
display: flex;
/* align-items: center; */
margin-top: 60rpx;
margin-bottom: 10rpx;
border-bottom: 2rpx solid #212025;
color: #FFF;
font-size: 30rpx;
font-weight: bold;
}
.box .input-box>input {
height: 70rpx;
font-size: 52rpx;
font-weight: bold;
margin-bottom: 20rpx;
margin-left: 20rpx;
}
.box .btn-box {
height: 80rpx;
margin: 60rpx 20rpx 20rpx 20rpx;
background: #ffda2e;
color: #1a191e;
border-radius: 40rpx;
line-height: 80rpx;
text-align: center;
font-size: 28rpx;
}
.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;
}