page1.css 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. .page1 {
  2. width:100%;
  3. height:100%;
  4. padding:12px;
  5. }
  6. .page1-grid-1 {
  7. width:100%;
  8. display:grid;
  9. grid-template-columns:repeat(3, minmax(0, 1fr));
  10. gap:20px;
  11. }
  12. .page1-grid-2 {
  13. width:100%;
  14. display:grid;
  15. grid-template-columns:repeat(3, minmax(0, 1fr));
  16. gap:20px;
  17. margin-top:20px;
  18. }
  19. .page1-card {
  20. width:100%;
  21. background:#0f172a;
  22. border:1px solid #1f2937;
  23. border-radius:4px;
  24. padding:12px;
  25. overflow:hidden;
  26. }
  27. .service-card {
  28. grid-column:span 2;
  29. }
  30. .page1-header {
  31. height:24px;
  32. line-height:24px;
  33. margin-bottom:12px;
  34. color:#e2e8f0;
  35. font-size:14px;
  36. }
  37. .page1-chart {
  38. width:100%;
  39. height:260px;
  40. }
  41. .info-list {
  42. width:100%;
  43. padding:0 8px;
  44. overflow-x:auto;
  45. }
  46. .info-item {
  47. height:42px;
  48. display:flex;
  49. align-items:center;
  50. border-bottom:1px solid #1f2937;
  51. min-width:max-content;
  52. }
  53. .info-info {
  54. width:145px;
  55. flex-shrink:0;
  56. display:flex;
  57. flex-direction:column;
  58. }
  59. .info-name {
  60. color:#cbd5e1;
  61. font-size:14px;
  62. }
  63. .info-desc {
  64. color:#64748b;
  65. font-size:12px;
  66. }
  67. .info-value {
  68. width:145px;
  69. margin-left:8px;
  70. text-align:center;
  71. color:#94a3b8;
  72. font-size:14px;
  73. font-family:ui-monospace,Consolas,monospace;
  74. }