page1.css 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  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. }
  45. .info-item {
  46. height:42px;
  47. display:flex;
  48. align-items:center;
  49. border-bottom:1px solid #1f2937;
  50. }
  51. .info-info {
  52. width:150px;
  53. flex-shrink:0;
  54. display:flex;
  55. flex-direction:column;
  56. }
  57. .info-name {
  58. color:#cbd5e1;
  59. font-size:14px;
  60. }
  61. .info-desc {
  62. color:#64748b;
  63. font-size:12px;
  64. }
  65. .info-value {
  66. width:150px;
  67. margin-left:8px;
  68. text-align:center;
  69. color:#94a3b8;
  70. font-size:14px;
  71. font-family:ui-monospace,Consolas,monospace;
  72. }