You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
115 lines
1.5 KiB
115 lines
1.5 KiB
/* test.wxss */
|
|
.container {
|
|
padding: 20rpx;
|
|
background-color: #f5f5f5;
|
|
min-height: 100vh;
|
|
}
|
|
|
|
.header {
|
|
text-align: center;
|
|
margin-bottom: 40rpx;
|
|
}
|
|
|
|
.title {
|
|
display: block;
|
|
font-size: 36rpx;
|
|
font-weight: bold;
|
|
color: #333;
|
|
margin-bottom: 10rpx;
|
|
}
|
|
|
|
.subtitle {
|
|
display: block;
|
|
font-size: 24rpx;
|
|
color: #666;
|
|
}
|
|
|
|
.section {
|
|
background: white;
|
|
border-radius: 10rpx;
|
|
padding: 30rpx;
|
|
margin-bottom: 30rpx;
|
|
box-shadow: 0 2rpx 10rpx rgba(0,0,0,0.1);
|
|
}
|
|
|
|
.section-title {
|
|
display: block;
|
|
font-size: 28rpx;
|
|
font-weight: bold;
|
|
color: #333;
|
|
margin-bottom: 20rpx;
|
|
}
|
|
|
|
.status-box {
|
|
background: #f8f9fa;
|
|
border-radius: 8rpx;
|
|
padding: 20rpx;
|
|
margin-bottom: 20rpx;
|
|
}
|
|
|
|
.status-text {
|
|
display: block;
|
|
font-size: 24rpx;
|
|
color: #333;
|
|
margin-bottom: 10rpx;
|
|
}
|
|
|
|
.user-count {
|
|
display: block;
|
|
font-size: 22rpx;
|
|
color: #666;
|
|
}
|
|
|
|
.user-list {
|
|
max-height: 300rpx;
|
|
overflow-y: auto;
|
|
}
|
|
|
|
.user-item {
|
|
padding: 15rpx;
|
|
border-bottom: 1rpx solid #eee;
|
|
}
|
|
|
|
.user-item:last-child {
|
|
border-bottom: none;
|
|
}
|
|
|
|
.user-info {
|
|
font-size: 22rpx;
|
|
color: #333;
|
|
}
|
|
|
|
.btn {
|
|
width: 100%;
|
|
margin-bottom: 20rpx;
|
|
background: #007AFF;
|
|
color: white;
|
|
border: none;
|
|
border-radius: 8rpx;
|
|
padding: 20rpx;
|
|
font-size: 28rpx;
|
|
}
|
|
|
|
.btn.primary {
|
|
background: #007AFF;
|
|
}
|
|
|
|
.btn.success {
|
|
background: #34C759;
|
|
}
|
|
|
|
.btn:last-child {
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
.result-box {
|
|
background: #f8f9fa;
|
|
border-radius: 8rpx;
|
|
padding: 20rpx;
|
|
}
|
|
|
|
.result-text {
|
|
font-size: 24rpx;
|
|
color: #333;
|
|
line-height: 1.5;
|
|
} |