File size: 2,259 Bytes
35e7795 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 | /* 系统配置管理样式 */
.config-list-container {
padding: 24px;
}
.config-card {
background: white;
border-radius: 12px;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
border: 1px solid #e0e0e0;
margin-bottom: 20px;
overflow: hidden;
transition: all 0.3s ease;
}
.config-card:hover {
box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}
.config-card-header {
padding: 20px;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
color: white;
display: flex;
justify-content: space-between;
align-items: center;
gap: 12px;
}
.config-card-header h3 {
margin: 0;
font-size: 18px;
font-weight: 600;
color: white;
}
.config-key {
font-size: 12px;
color: rgba(255, 255, 255, 0.8);
background: rgba(255, 255, 255, 0.2);
padding: 4px 12px;
border-radius: 12px;
font-family: 'Courier New', monospace;
backdrop-filter: blur(10px);
}
.config-card-body {
padding: 24px;
}
.config-description {
margin-bottom: 20px;
color: #666;
font-size: 14px;
line-height: 1.6;
}
.config-description p {
margin: 0;
}
.config-value-section {
margin-bottom: 20px;
padding: 16px;
background: #f8f9fa;
border-radius: 8px;
border-left: 4px solid #667eea;
}
.config-value-section label {
display: block;
margin-bottom: 8px;
color: #333;
font-weight: 500;
font-size: 14px;
}
.config-value-display {
display: flex;
align-items: center;
gap: 8px;
}
.value-text {
font-size: 16px;
font-weight: 600;
}
.value-text.value-enabled {
color: #28a745;
}
.value-text.value-disabled {
color: #dc3545;
}
.value-raw {
font-size: 12px;
color: #666;
font-family: 'Courier New', monospace;
}
.config-actions {
display: flex;
gap: 12px;
justify-content: flex-end;
padding-top: 16px;
border-top: 1px solid #e0e0e0;
}
/* 响应式设计 */
@media (max-width: 768px) {
.config-list-container {
padding: 16px;
}
.config-card-header {
flex-direction: column;
align-items: flex-start;
gap: 8px;
}
.config-actions {
flex-direction: column;
}
.config-actions .btn {
width: 100%;
}
}
|