农经大屏
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

преди 1 месец
преди 2 седмици
преди 1 месец
преди 2 седмици
преди 1 месец
преди 2 седмици
преди 1 месец
преди 1 месец
преди 1 месец
преди 1 месец
преди 2 седмици
преди 1 месец
преди 3 седмици
преди 1 месец
преди 1 месец
преди 2 седмици
преди 1 месец
преди 3 седмици
преди 1 месец
преди 2 седмици
преди 1 месец
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127
  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. .zIndextop {
  19. z-index: 2;
  20. }
  21. .page {
  22. overflow: hidden;
  23. position: relative;
  24. width: 1920px;
  25. height: 1080px;
  26. .left_side {
  27. position: absolute;
  28. left: 20px;
  29. top: 100px;
  30. bottom: 20px;
  31. }
  32. .right_side {
  33. display: flex;
  34. flex-direction: column;
  35. align-items: flex-end;
  36. position: absolute;
  37. right: 20px;
  38. top: 100px;
  39. bottom: 20px;
  40. }
  41. .buttom_side {
  42. position: absolute;
  43. left: 50%;
  44. transform: translateX(-50%);
  45. bottom: 20px;
  46. }
  47. }
  48. .scrollbar::-webkit-scrollbar {
  49. width: 0;
  50. height: 0;
  51. }
  52. .scrollbar::-webkit-scrollbar-thumb {
  53. border-radius: 5px;
  54. background-color: #124394;
  55. }
  56. .scrollbar::-webkit-scrollbar-track {
  57. border-radius: 5px;
  58. background-color: #00286b;
  59. }
  60. .scrollbar2::-webkit-scrollbar {
  61. width: 5px;
  62. }
  63. .scrollbar2::-webkit-scrollbar-thumb {
  64. border-radius: 5px;
  65. background-color: #124394;
  66. }
  67. .scrollbar2::-webkit-scrollbar-track {
  68. border-radius: 5px;
  69. background-color: #00286b;
  70. }
  71. // 省略号
  72. .ellipsis_1 {
  73. overflow: hidden;
  74. text-overflow: ellipsis;
  75. white-space: nowrap;
  76. }
  77. .full {
  78. width: 100%;
  79. height: 100%;
  80. }
  81. .hover_pointer {
  82. cursor: pointer;
  83. }
  84. .border {
  85. // border: 1px solid red;
  86. }
  87. .nowrap‌ {
  88. white-space: nowrap;
  89. }
  90. .screen {
  91. width: 100vw;
  92. min-width: 1920px;
  93. height: 100vh;
  94. min-height: 1080px;
  95. }
  96. .relative {
  97. position: relative;
  98. }
  99. .menu_style {
  100. border: 1px solid #48B7FF;
  101. box-sizing: border-box;
  102. background-color: rgba(6, 24, 24, 0.585);
  103. border-radius: 4px;
  104. box-shadow: 0px 0px 13px 0px #48B7FF inset;
  105. }