农经大屏
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

106 строки
1.6 KiB

  1. @import "./element-reset";
  2. @import "./animation";
  3. @import "./font";
  4. @import "./layout";
  5. * {
  6. margin: 0;
  7. padding: 0;
  8. font-family: '微软雅黑';
  9. box-sizing: border-box;
  10. }
  11. html,
  12. body {
  13. position: relative;
  14. height: 100%;
  15. color: #FFFFFF;
  16. overflow-y: auto;
  17. }
  18. .page {
  19. position: relative;
  20. width: 1920px;
  21. height: 1080px;
  22. border: 1px solid red;
  23. .left {
  24. position: absolute;
  25. left: 20px;
  26. top: 100px;
  27. bottom: 20px;
  28. }
  29. .right {
  30. position: absolute;
  31. right: 20px;
  32. top: 100px;
  33. bottom: 20px;
  34. }
  35. }
  36. .scrollbar::-webkit-scrollbar {
  37. width: 0;
  38. height: 0;
  39. }
  40. .scrollbar::-webkit-scrollbar-thumb {
  41. border-radius: 5px;
  42. background-color: #124394;
  43. }
  44. .scrollbar::-webkit-scrollbar-track {
  45. border-radius: 5px;
  46. background-color: #00286b;
  47. }
  48. .scrollbar2::-webkit-scrollbar {
  49. width: 5px;
  50. }
  51. .scrollbar2::-webkit-scrollbar-thumb {
  52. border-radius: 5px;
  53. background-color: #124394;
  54. }
  55. .scrollbar2::-webkit-scrollbar-track {
  56. border-radius: 5px;
  57. background-color: #00286b;
  58. }
  59. // 省略号
  60. .ellipsis_1 {
  61. overflow: hidden;
  62. text-overflow: ellipsis;
  63. white-space: nowrap;
  64. }
  65. .full {
  66. width: 100%;
  67. height: 100%;
  68. }
  69. .hover_pointer {
  70. cursor: pointer;
  71. }
  72. .border {
  73. border: 1px solid red;
  74. }
  75. .screen {
  76. width: 1920px;
  77. height: 1080px;
  78. }
  79. .relative {
  80. position: relative;
  81. }
  82. .menu_style {
  83. border: 1px solid #48B7FF;
  84. box-sizing: border-box;
  85. background-color: rgba(6, 24, 24, 0.585);
  86. border-radius: 4px;
  87. box-shadow: 0px 0px 13px 0px #48B7FF inset;
  88. }