CommonBigScreenHome.css 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261
  1. .home {
  2. background-image: url('/src/assets/img/bg@3x.jpg');
  3. background-size: 100% 100%;
  4. width: 100%;
  5. height: 100%;
  6. overflow: auto;
  7. }
  8. .home * {
  9. user-select: none;
  10. }
  11. .home .headTitle {
  12. padding: 0 35%;
  13. width: 100%;
  14. text-align: center;
  15. font-size: 35px;
  16. font-weight: 600;
  17. float: left;
  18. }
  19. .home .homeHeader {
  20. width: 100%;
  21. overflow: hidden;
  22. height: 7.5vh;
  23. line-height: 7.5vh;
  24. }
  25. .home .itemHeader {
  26. flex: 1;
  27. }
  28. .home .itemMain {
  29. margin: 5px 2px;
  30. white-space: nowrap;
  31. padding: 1em;
  32. background-color: rgba(6, 30, 56, 0.9);
  33. }
  34. .home .sz {
  35. position: absolute;
  36. padding-left: 5em;
  37. }
  38. .home .tq {
  39. position: absolute;
  40. z-index: 101;
  41. right: 0;
  42. padding-right: 5em;
  43. }
  44. .home .text {
  45. display: inline-block;
  46. vertical-align: middle;
  47. text-align: center;
  48. }
  49. .home .textNum {
  50. font-size: 18pt;
  51. color: #ff9900;
  52. font-weight: 600;
  53. font-family: '微软雅黑';
  54. }
  55. .icons {
  56. background: linear-gradient(rgba(3, 76, 117, 0), #034c75);
  57. display: inline-block;
  58. width: 60px;
  59. height: 60px;
  60. text-align: center;
  61. margin: 5px;
  62. position: relative;
  63. vertical-align: middle;
  64. }
  65. .icons svg {
  66. position: absolute;
  67. left: 50%;
  68. transform: translateX(-50%);
  69. bottom: 10%;
  70. }
  71. .icons .img {
  72. transform-style: preserve-3d;
  73. transform: rotateX(-77deg) rotateY(2deg) rotateZ(40deg);
  74. position: absolute;
  75. bottom: -50%;
  76. width: 100%;
  77. height: 100%;
  78. left: 5%;
  79. }
  80. .body .main {
  81. width: 100%;
  82. height: calc(92.5vh - 124px);
  83. overflow: hidden;
  84. width: 100vw;
  85. display: flex;
  86. }
  87. .body .mainbody {
  88. flex: 1;
  89. padding: 3px;
  90. }
  91. .body .livRang {
  92. overflow: hidden;
  93. display: inline-block;
  94. vertical-align: top;
  95. font-size: 14px;
  96. background-color: rgba(6, 30, 56, 0.9);
  97. }
  98. .livRang .head {
  99. padding: 5px 3px 5px 15px;
  100. font-size: 17px;
  101. }
  102. .livRang .head::before {
  103. content: ' ';
  104. float: left;
  105. display: block;
  106. margin-left: -10px;
  107. margin-top: 2px;
  108. border-radius: 3px;
  109. width: 3px;
  110. height: 1.2em;
  111. background-color: #02ffec;
  112. }
  113. .livRang .table {
  114. flex: 1;
  115. padding-top: 3px;
  116. white-space: nowrap;
  117. }
  118. .livRang .table .tr {
  119. border-radius: 3px;
  120. overflow: hidden;
  121. display: flex;
  122. }
  123. .livRang .table .td {
  124. border: none;
  125. flex: 1;
  126. min-width: 0;
  127. overflow: hidden;
  128. white-space: nowrap;
  129. text-overflow: ellipsis;
  130. padding: 6px 3px;
  131. text-align: center;
  132. }
  133. .livRang .table .trColor:nth-child(even) {
  134. background-color: #03375e;
  135. }
  136. .flex {
  137. display: flex;
  138. }
  139. .flex .flexItem {
  140. flex: 1;
  141. height: 90px;
  142. text-align: center;
  143. line-height: 35px;
  144. padding: 3px 0;
  145. background-color: rgba(6, 30, 56, 0.9);
  146. }
  147. .flex .flexItem:not(:first-child) {
  148. margin-left: 5px;
  149. }
  150. .home .tooltip {
  151. position: relative;
  152. width: 6em;
  153. height: 5em;
  154. line-height: 1.5em;
  155. overflow: hidden;
  156. z-index: 10;
  157. background-size: 100% 100%;
  158. background-color: rgba(6, 30, 56, 0.9);
  159. background-image: url(/src/assets/img/k.png);
  160. animation-name: example;
  161. animation-duration: 0.4s;
  162. }
  163. .home .tooltipSon {
  164. position: absolute;
  165. width: 6em;
  166. height: 5em;
  167. line-height: 2em;
  168. text-align: center;
  169. padding: 5px 10px;
  170. left: 50%;
  171. top: 50%;
  172. transform: translate(-50%, -50%);
  173. }
  174. .home .map {
  175. position: relative;
  176. }
  177. @keyframes example {
  178. from {
  179. width: 0;
  180. /* height: 0; */
  181. }
  182. to {
  183. width: 10em;
  184. /* height: 5em; */
  185. }
  186. }
  187. .home .TabBtn {
  188. display: inline-block;
  189. width: 6em;
  190. padding: 5px 0 5px 5px;
  191. white-space: nowrap;
  192. /* display: inline-block;
  193. width: 7em; */
  194. }
  195. .home #tooltip {
  196. position: absolute;
  197. z-index: 2;
  198. background: white;
  199. color: #000000;
  200. padding: 10px;
  201. border-radius: 2px;
  202. visibility: hidden;
  203. }
  204. .tabIcon {
  205. width: 100%;
  206. vertical-align: middle;
  207. margin-right: 3px;
  208. }
  209. .newMdia {
  210. width: 100%;
  211. }
  212. .btn {
  213. right: 10px;
  214. top: 0;
  215. z-index: 1;
  216. position: absolute;
  217. background-color: #1a62eb;
  218. border-radius: 5px;
  219. padding: 8px 15px;
  220. cursor: pointer;
  221. font-size: 24px;
  222. font-weight: 500;
  223. }
  224. .ismore {
  225. width: 1em;
  226. }
  227. .selfSwiper {
  228. width: 438px;
  229. }