Files
ai_dianshang/miniprogram/pages/test-my-comments/index.wxss
2025-11-17 13:32:54 +08:00

99 lines
1.3 KiB
Plaintext

.container {
padding: 20rpx;
}
.header {
text-align: center;
margin-bottom: 40rpx;
}
.title {
font-size: 36rpx;
font-weight: bold;
color: #333;
}
.buttons {
display: flex;
flex-direction: column;
gap: 20rpx;
margin-bottom: 40rpx;
}
.test-btn {
background-color: #007aff;
color: white;
border-radius: 10rpx;
padding: 20rpx;
font-size: 28rpx;
}
.test-btn[disabled] {
background-color: #ccc;
}
.status {
margin-bottom: 20rpx;
}
.error {
color: #ff3b30;
font-size: 24rpx;
}
.results {
border-top: 1rpx solid #eee;
padding-top: 20rpx;
}
.section-title {
font-size: 32rpx;
font-weight: bold;
color: #333;
display: block;
margin-bottom: 20rpx;
}
.comment-item {
border: 1rpx solid #eee;
border-radius: 10rpx;
padding: 20rpx;
margin-bottom: 20rpx;
background-color: #f9f9f9;
}
.comment-header {
display: flex;
justify-content: space-between;
margin-bottom: 10rpx;
}
.comment-id {
font-size: 24rpx;
color: #666;
}
.comment-rating {
font-size: 24rpx;
color: #ff6b35;
font-weight: bold;
}
.comment-content {
font-size: 28rpx;
color: #333;
margin-bottom: 10rpx;
line-height: 1.5;
}
.comment-time {
font-size: 22rpx;
color: #999;
}
.empty {
text-align: center;
color: #999;
font-size: 28rpx;
padding: 40rpx;
}