Files
ai_dianshang/miniprogram/pages/debug/payment-test.wxss
2025-11-17 14:11:46 +08:00

85 lines
1.2 KiB
Plaintext

.container {
padding: 40rpx;
background-color: #f5f5f5;
min-height: 100vh;
}
.header {
text-align: center;
margin-bottom: 60rpx;
}
.title {
font-size: 36rpx;
font-weight: bold;
color: #333;
margin-bottom: 20rpx;
}
.subtitle {
font-size: 28rpx;
color: #666;
}
.test-section {
margin-bottom: 60rpx;
}
.section-title {
font-size: 32rpx;
font-weight: bold;
color: #333;
margin-bottom: 30rpx;
}
.test-btn {
width: 100%;
margin-bottom: 20rpx;
border: none;
border-radius: 8rpx;
padding: 30rpx;
font-size: 32rpx;
text-align: center;
color: white;
background-color: #07c160;
}
.test-btn:active {
opacity: 0.8;
}
.test-btn.primary {
background-color: #1890ff;
}
.test-btn.warning {
background-color: #faad14;
}
.test-btn.error {
background-color: #ff4d4f;
}
.test-btn.secondary {
background-color: #d9d9d9;
color: #333;
}
.result-section {
background-color: white;
border-radius: 12rpx;
padding: 30rpx;
box-shadow: 0 4rpx 12rpx rgba(0, 0, 0, 0.1);
}
.result-content {
font-size: 28rpx;
line-height: 1.6;
color: #666;
white-space: pre-wrap;
word-break: break-all;
background-color: #f8f8f8;
padding: 20rpx;
border-radius: 8rpx;
border: 1rpx solid #e8e8e8;
}