style.css 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. /* 科技风背景和字体设置 */
  2. body {
  3. background-color: #0a192f; /* 深蓝色背景,科技感 */
  4. color: #e0f7fa; /* 浅青色文字 */
  5. font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  6. }
  7. /* 自定义滚动条样式 */
  8. ::-webkit-scrollbar {
  9. width: 8px;
  10. height: 8px;
  11. }
  12. ::-webkit-scrollbar-track {
  13. background: #0d2a4f;
  14. }
  15. ::-webkit-scrollbar-thumb {
  16. background: #1e40af;
  17. border-radius: 4px;
  18. }
  19. ::-webkit-scrollbar-thumb:hover {
  20. background: #3b82f6;
  21. }
  22. /* 科技感边框和阴影 */
  23. .tech-panel {
  24. background-color: rgba(10, 30, 47, 0.7); /* 半透明背景 */
  25. border: 1px solid #1e40af;
  26. box-shadow: 0 0 15px rgba(30, 64, 175, 0.5);
  27. backdrop-filter: blur(5px);
  28. }
  29. .tech-button {
  30. transition: all 0.3s ease;
  31. border: 1px solid #1e40af;
  32. }
  33. .tech-button:hover {
  34. background-color: #1e40af;
  35. box-shadow: 0 0 10px #3b82f6;
  36. }
  37. /* 确保图表容器有足够的初始高度 */
  38. .chart-container {
  39. height: 300px;
  40. width: 100%;
  41. }
  42. .tech-title {
  43. color: #93c5fd; /* 亮蓝色标题 */
  44. text-shadow: 0 0 5px #3b82f6;
  45. }