农经大屏
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

index.scss 2.4 KiB

3 veckor sedan
1 vecka sedan
3 veckor sedan
1 vecka sedan
3 veckor sedan
3 veckor sedan
3 veckor sedan
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136
  1. .pannel {
  2. box-sizing: border-box;
  3. display: flex;
  4. flex-direction: column;
  5. // 頭部區域
  6. .header_box {
  7. position: relative;
  8. height: 35px;
  9. overflow: visible !important;
  10. .top_line {
  11. display: flex;
  12. justify-content: space-between;
  13. background-color: rgba(22, 60, 114, 1);
  14. width: 100%;
  15. height: 2px;
  16. .left_sign {
  17. height: 2px;
  18. width: 13px;
  19. background-color: rgba(53, 143, 255, 1);
  20. }
  21. .right_sign {
  22. height: 2px;
  23. width: 13px;
  24. background-color: rgba(53, 143, 255, 1);
  25. }
  26. }
  27. .header {
  28. margin-top: 2px;
  29. height: 32px;
  30. background: rgba(8, 33, 71, 1);
  31. .title_bk {
  32. // font-style: italic;
  33. font-weight: 600;
  34. height: 50px;
  35. margin-left: 20px;
  36. line-height: 32px;
  37. text-align: center;
  38. .icon {
  39. display: block;
  40. background: url('./icon.png');
  41. background-size: 100% 100%;
  42. width: 18px;
  43. height: 18px;
  44. }
  45. p {
  46. margin-left: 10px;
  47. }
  48. }
  49. .more {
  50. margin-right: 20px;
  51. }
  52. }
  53. .light {
  54. position: absolute;
  55. bottom: -15px;
  56. left: 30px;
  57. background: url('./light.png');
  58. background-size: 100% 100%;
  59. width: 280px;
  60. height: 30px;
  61. animation: lightmove 4s infinite;
  62. }
  63. }
  64. // 内容区域
  65. .body {
  66. margin: 2px;
  67. padding: 10px;
  68. width: 100%;
  69. position: relative;
  70. flex: 1;
  71. background-color: rgba(11, 28, 58, 1);
  72. overflow: hidden;
  73. .bottom_line {
  74. position: absolute;
  75. left: 0;
  76. right: 0;
  77. bottom: 0;
  78. display: flex;
  79. justify-content: space-between;
  80. background-color: rgba(22, 60, 114, 1);
  81. width: 100%;
  82. height: 2px;
  83. .left_sign {
  84. height: 2px;
  85. width: 13px;
  86. background-color: rgba(53, 143, 255, 1);
  87. }
  88. .right_sign {
  89. height: 2px;
  90. width: 13px;
  91. background-color: rgba(53, 143, 255, 1);
  92. }
  93. }
  94. div {
  95. width: 100%;
  96. height: 100%;
  97. }
  98. }
  99. }
  100. @keyframes lightmove {
  101. /* 动画关键帧 */
  102. 0% {
  103. opacity: 1;
  104. transform: translateX(0px);
  105. /* 样式 */
  106. }
  107. 50% {
  108. opacity: 0.2;
  109. transform: translateX(170px);
  110. }
  111. /* 。。。 */
  112. 100% {
  113. opacity: 1;
  114. transform: translateX(0px);
  115. /* 样式 */
  116. }
  117. }