ai-c/pages/version-debug/version-debug.wxss
2026-02-04 18:12:02 +08:00

182 lines
2.6 KiB
Plaintext

.debug-container {
min-height: 100vh;
background: #f5f5f5;
padding: 30rpx;
}
.debug-header {
font-size: 40rpx;
font-weight: 700;
color: #1D293D;
text-align: center;
padding: 30rpx 0;
margin-bottom: 30rpx;
}
.version-info {
display: flex;
justify-content: space-between;
align-items: center;
background: #fff;
padding: 24rpx 30rpx;
border-radius: 16rpx;
margin-bottom: 20rpx;
}
.version-info .label {
font-size: 28rpx;
color: #62748E;
}
.version-info .value {
font-size: 28rpx;
font-weight: 600;
color: #b06ab3;
}
.section-title {
font-size: 32rpx;
font-weight: 600;
color: #1D293D;
margin: 40rpx 0 20rpx;
padding-left: 10rpx;
border-left: 8rpx solid #b06ab3;
}
.version-list {
background: #fff;
border-radius: 16rpx;
overflow: hidden;
}
.version-item {
display: flex;
align-items: center;
padding: 30rpx;
border-bottom: 1rpx solid #f0f0f0;
position: relative;
transition: background 0.2s;
}
.version-item:last-child {
border-bottom: none;
}
.version-item.active {
background: #fdf2f8;
}
.version-item.active::before {
content: '';
position: absolute;
left: 0;
top: 0;
bottom: 0;
width: 8rpx;
background: #b06ab3;
}
.version-name {
font-size: 30rpx;
font-weight: 600;
color: #1D293D;
margin-right: 20rpx;
}
.version-desc {
font-size: 24rpx;
color: #62748E;
flex: 1;
}
.version-current {
font-size: 22rpx;
color: #b06ab3;
background: #fdf2f8;
padding: 8rpx 16rpx;
border-radius: 20rpx;
}
.feature-comparison {
background: #fff;
border-radius: 16rpx;
overflow: hidden;
}
.feature-row {
display: flex;
justify-content: space-between;
align-items: center;
padding: 24rpx 30rpx;
border-bottom: 1rpx solid #f0f0f0;
}
.feature-row:last-child {
border-bottom: none;
}
.feature-name {
font-size: 28rpx;
color: #1D293D;
}
.feature-value {
font-size: 26rpx;
font-weight: 600;
padding: 8rpx 20rpx;
border-radius: 20rpx;
}
.feature-value.enabled {
color: #10b981;
background: #ecfdf5;
}
.feature-value.disabled {
color: #6b7280;
background: #f3f4f6;
}
.icon-preview {
display: flex;
flex-wrap: wrap;
gap: 20rpx;
background: #fff;
border-radius: 16rpx;
padding: 20rpx;
}
.icon-item {
display: flex;
flex-direction: column;
align-items: center;
width: 180rpx;
padding: 20rpx;
background: #fafafa;
border-radius: 12rpx;
}
.icon-image {
width: 128rpx;
height: 128rpx;
border-radius: 50%;
margin-bottom: 16rpx;
}
.icon-name {
font-size: 24rpx;
color: #1D293D;
text-align: center;
}
.tips {
text-align: center;
margin-top: 40rpx;
padding: 20rpx;
}
.tips text {
font-size: 24rpx;
color: #62748E;
}