| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586 |
- .page1 {
- width:100%;
- height:100%;
- padding:12px;
- }
- .page1-grid-1 {
- width:100%;
- display:grid;
- grid-template-columns:repeat(3, minmax(0, 1fr));
- gap:20px;
- }
- .page1-grid-2 {
- width:100%;
- display:grid;
- grid-template-columns:repeat(3, minmax(0, 1fr));
- gap:20px;
- margin-top:20px;
- }
- .page1-card {
- width:100%;
- background:#0f172a;
- border:1px solid #1f2937;
- border-radius:4px;
- padding:12px;
- overflow:hidden;
- }
- .service-card {
- grid-column:span 2;
- }
- .page1-header {
- height:24px;
- line-height:24px;
- margin-bottom:12px;
- color:#e2e8f0;
- font-size:14px;
- }
- .page1-chart {
- width:100%;
- height:260px;
- }
- .info-list {
- width:100%;
- padding:0 8px;
- overflow-x:auto;
- }
- .info-item {
- height:42px;
- display:flex;
- align-items:center;
- border-bottom:1px solid #1f2937;
- min-width:max-content;
- }
- .info-info {
- width:145px;
- flex-shrink:0;
- display:flex;
- flex-direction:column;
- }
- .info-name {
- color:#cbd5e1;
- font-size:14px;
- }
- .info-desc {
- color:#64748b;
- font-size:12px;
- }
- .info-value {
- width:145px;
- margin-left:8px;
- text-align:center;
- color:#94a3b8;
- font-size:14px;
- font-family:ui-monospace,Consolas,monospace;
- }
|