祁阳图书馆智慧大屏
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.

835 lines
20 KiB

1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
  1. #screen-container {
  2. width: 100%;
  3. height: 100vh;
  4. font-size: .3125rem;
  5. line-height: .4375rem;
  6. color: #fff;
  7. overflow: hidden;
  8. background: url('~@/assets/images/bg.png') no-repeat top center #02061a;
  9. }
  10. .page-wrapper{
  11. width: 100%;
  12. height: 100vh;
  13. position: absolute;
  14. top: 0;
  15. left: 0;
  16. background: #001244;
  17. padding-top: 1.5625rem;
  18. overflow: hidden;
  19. }
  20. .loading {
  21. position: fixed;
  22. top: 0;
  23. width: 100%;
  24. height: 100%;
  25. display: flex;
  26. align-items: center;
  27. justify-content: center;
  28. background: rgba(0, 0, 0, 0.9);
  29. z-index: 99999999;
  30. }
  31. // 头部主题标题
  32. .header-container {
  33. position: relative;
  34. width: 100%;
  35. height: 1.25rem;
  36. font-size: .375rem;
  37. color: #fff;
  38. z-index: 9999;
  39. // &::before,
  40. // &::after{
  41. // content: "";
  42. // position: absolute;
  43. // top: 0;
  44. // width: 6.2rem;
  45. // height: 1.05rem;
  46. // }
  47. // &::before{
  48. // left: 0;
  49. // background: url('~@/assets/images/header-left.png') no-repeat top center;
  50. // }
  51. // &::after{
  52. // right: 0;
  53. // background: url('~@/assets/images/header-right.png') no-repeat top center;
  54. // }
  55. .header-title {
  56. position: relative;
  57. width: 19.5875rem;
  58. height: 1.25rem;
  59. margin: 0 auto;
  60. background: url('~@/assets/images/header-bg.png') no-repeat top left;
  61. background-size: cover;
  62. h2 {
  63. font-size: .375rem;
  64. font-weight: bold;
  65. line-height: .75rem;
  66. text-align: center;
  67. background: -webkit-linear-gradient(180deg, #fff 30%, #77baff 100%);
  68. background: linear-gradient(180deg, #fff 30%, #77baff 100%);
  69. -webkit-background-clip: text;
  70. background-clip: text;
  71. -webkit-text-fill-color: transparent;
  72. color: transparent;
  73. text-shadow: 0 4px 4px rgba(0, 0, 0, 0.2);
  74. }
  75. }
  76. .header-text {
  77. position: absolute;
  78. }
  79. .header-weather {
  80. top: .1875rem;
  81. width: 3.125rem;
  82. right: -.2rem;
  83. overflow: hidden;
  84. }
  85. .header-date {
  86. top: .2125rem;
  87. left: .2125rem;
  88. display: flex;
  89. justify-content: flex-start;
  90. align-items: center;
  91. .time {
  92. font-size: .375rem;
  93. font-weight: bold;
  94. line-height: .375rem;
  95. padding-right: .2125rem;
  96. border-right: 1px solid rgba(255, 255, 255, 0.5);
  97. }
  98. .time-other {
  99. font-size: .175rem;
  100. line-height: .275rem;
  101. padding-left: .2125rem;
  102. span {
  103. display: block;
  104. }
  105. }
  106. }
  107. }
  108. // // 头部动态效果
  109. // .line1,
  110. // .line2{
  111. // position: absolute;
  112. // top: 0;
  113. // }
  114. // .line1{
  115. // right: 632px;
  116. // transform: rotateY(-180deg);
  117. // }
  118. // .line2{
  119. // left: 632px;
  120. // }
  121. // .top-line1,
  122. // .top-line2{
  123. // display: block;
  124. // width: 7.925rem;
  125. // height: 1.075rem;
  126. // animation: topline 4s linear infinite both;
  127. // }
  128. // .top-line1{
  129. // background: url('~@/assets/images/top-line.png') no-repeat;
  130. // }
  131. // .top-line2{
  132. // background: url('~@/assets/images/top-line.png') no-repeat;
  133. // }
  134. // @keyframes topline {
  135. // from {
  136. // width: 0;
  137. // }
  138. // 50%,
  139. // to {
  140. // width: 643px;
  141. // }
  142. // }
  143. // 底部底色
  144. .bottom-bg {
  145. position: fixed;
  146. bottom: 0;
  147. left: 50%;
  148. transform: translateX(-50%);
  149. width: 19.775rem;
  150. height: .6rem;
  151. background: url('~@/assets/images/bottom-bg.png') no-repeat top left;
  152. background-size: cover;
  153. z-index: 999;
  154. }
  155. // pageOne
  156. .pageOne-database {
  157. display: flex;
  158. justify-content: space-between;
  159. height: 6.25rem;
  160. margin-top: .1875rem;
  161. .database-left,
  162. .database-right {
  163. width: 5.7875rem;
  164. height: 5.625rem;
  165. background-color: #041232;
  166. }
  167. .database-middle {
  168. position: relative;
  169. margin-top: -0.25rem;
  170. flex: 1;
  171. display: flex;
  172. justify-content: center;
  173. align-items: center;
  174. & img{
  175. display: block;
  176. }
  177. .middle-item{
  178. position: absolute;
  179. width: 1.975rem;
  180. height: 1.75rem;
  181. display: flex;
  182. justify-content: flex-start;
  183. flex-direction: column;
  184. align-items: center;
  185. background: url('~@/assets/images/database-img2.png') no-repeat top left;
  186. background-size: cover;
  187. p{
  188. margin-top: .3rem;
  189. font-size: .275rem;
  190. font-weight: 600;
  191. font-style: italic;
  192. color: #44C1EF;
  193. text-shadow: 0 0 10px rgba(73,223,255,.1), 0 0 10px rgba(73,223,255,.1), 0 0 10px rgba(73,223,255,.1), 0 0 10px rgba(73,223,255,.1);
  194. background: linear-gradient(0deg, #50CEF2 0%, #54D2F3 100%);
  195. -webkit-background-clip: text;
  196. background-clip: text;
  197. -webkit-text-fill-color: transparent;
  198. letter-spacing: .025rem;
  199. }
  200. &.totalBook{
  201. top: .85rem;
  202. left: .4125rem;
  203. }
  204. &.fansNum{
  205. top: 3.575rem;
  206. left: 1.3rem;
  207. }
  208. &.lendingNum{
  209. top: 3.575rem;
  210. right: 1.6375rem
  211. }
  212. &.cardNum{
  213. top: .85rem;
  214. right: .55rem;
  215. }
  216. }
  217. }
  218. }
  219. .small-module{
  220. height: .4rem;
  221. overflow: hidden;
  222. }
  223. .database-title {
  224. height: .6rem;
  225. padding-left: .4rem;
  226. margin-top: -0.25rem;
  227. font-size: .25rem;
  228. line-height: .5625rem;
  229. color: #f6f9fe;
  230. text-shadow: 0px 2px 8px rgba(0, 9, 35, 1);
  231. background: url('~@/assets/images/title-small.png') no-repeat -0.2rem top;
  232. background-size: cover;
  233. }
  234. .inLib-num{
  235. display: flex;
  236. justify-content: space-between;
  237. align-items: center;
  238. flex-wrap: nowrap;
  239. padding: .625rem .4rem 0 .125rem;
  240. .allTotal{
  241. width: 2.5rem;
  242. height: 1.1rem;
  243. padding-left: 1.2125rem;
  244. background: url('~@/assets/images/database-icon1.png') no-repeat left top;
  245. background-size: 100% 100%;
  246. }
  247. .currentNum{
  248. width: 2.5rem;
  249. height: 1.1rem;
  250. padding-left: 1.2125rem;
  251. background: url('~@/assets/images/database-icon2.png') no-repeat left top;
  252. background-size: 100% 100%;
  253. }
  254. }
  255. .flop-figure {
  256. position: relative;
  257. display: inline-block;
  258. width: .275rem;
  259. height: 100%;
  260. line-height: .175rem;
  261. overflow: hidden;
  262. writing-mode: vertical-lr;
  263. text-orientation: upright;
  264. i{
  265. position: absolute;
  266. text-align: center;
  267. transition: transform 0.6s ease-in-out;
  268. color: #fff;
  269. background: -webkit-linear-gradient(90deg, rgba(14,197,236,1) 10%,rgba(239,252,254,1) 100%);
  270. background: linear-gradient(90deg, rgba(14,197,236,1) 10%,rgba(239,252,254,1) 100%);
  271. -webkit-background-clip: text;
  272. background-clip: text;
  273. -webkit-text-fill-color: transparent;
  274. text-shadow: 0 2px 8px rgba(5,28,55,0.42);
  275. }
  276. }
  277. .pageLeft-flop-box {
  278. position: relative;
  279. height: .325rem;
  280. margin-top: .125rem;
  281. overflow: hidden;
  282. & div:first-child {
  283. height: .325rem;
  284. overflow: hidden;
  285. display: flex;
  286. align-items: center;
  287. justify-content: flex-start;
  288. }
  289. .flop-figure {
  290. width: .275rem;
  291. i {
  292. font-size: .275rem;
  293. font-weight: bold;
  294. }
  295. }
  296. .flop-comma {
  297. margin-left: -0.025rem;
  298. span {
  299. left: 0;
  300. font-size: .275rem;
  301. color: #fff;
  302. background: -webkit-linear-gradient(90deg, rgba(14,197,236,1) 10%,rgba(239,252,254,1) 100%);
  303. background: linear-gradient(90deg, rgba(14,197,236,1) 10%,rgba(239,252,254,1) 100%);
  304. -webkit-background-clip: text;
  305. background-clip: text;
  306. -webkit-text-fill-color: transparent;
  307. text-shadow: 0 2px 8px rgba(5,28,55,0.42);
  308. }
  309. }
  310. & em{
  311. font-style: normal;
  312. font-size: .175rem;
  313. font-weight: bold;
  314. color: #A8CBF6;
  315. height: .375rem;
  316. }
  317. }
  318. .flop-item-name{
  319. font-size: .1875rem;
  320. }
  321. // 左边进度条
  322. .pageOne-left-progress{
  323. display: flex;
  324. justify-content: space-between;
  325. flex-wrap: wrap;
  326. padding: 0 .475rem 0 .35rem;
  327. li{
  328. position: relative;
  329. width: 2.2rem;
  330. font-size: .175rem;
  331. padding-left: .2875rem;
  332. margin-top: .7rem;
  333. p{
  334. position: relative;
  335. &::before{
  336. position: absolute;
  337. left: -0.2875rem;
  338. top: .075rem;
  339. content: "";
  340. width: .275rem;
  341. height: .2875rem;
  342. background: url('~@/assets/images/arrow2.png') no-repeat left top;
  343. background-size: .275rem .2875rem;
  344. }
  345. }
  346. .progress-num{
  347. position: absolute;
  348. right: 0;
  349. top: 0;
  350. font-size: .25rem;
  351. font-weight: bold;
  352. color: #fff;
  353. background: -webkit-linear-gradient(to bottom, #fff 40%, #69A4D6 60%);
  354. background: linear-gradient(to bottom, #fff 40%, #69A4D6 60%);
  355. -webkit-background-clip: text;
  356. background-clip: text;
  357. -webkit-text-fill-color: transparent;
  358. text-shadow: 0 2px 8px rgba(5,28,55,0.42);
  359. i{
  360. font-size: .15rem;
  361. font-style: normal;
  362. }
  363. }
  364. .el-progress {
  365. .el-progress-bar {
  366. .el-progress-bar__outer {
  367. background: #122550;
  368. }
  369. .el-progress-bar__inner {
  370. background: linear-gradient(to right, #7ACAEE, #397FFF)
  371. }
  372. }
  373. }
  374. &.orange-progress{
  375. & p{
  376. &::before{
  377. background: url('~@/assets/images/arrow1.png') no-repeat left top;
  378. background-size: .275rem .2875rem;
  379. }
  380. }
  381. .progress-num{
  382. background: -webkit-linear-gradient(to bottom, #fff 40%, #FF9239 60%);
  383. background: linear-gradient(to bottom, #fff 40%, #FF9239 60%);
  384. -webkit-background-clip: text;
  385. background-clip: text;
  386. -webkit-text-fill-color: transparent;
  387. text-shadow: 0 2px 8px rgba(5,28,55,0.42);
  388. }
  389. .el-progress {
  390. .el-progress-bar {
  391. .el-progress-bar__outer {
  392. background: #122550;
  393. }
  394. .el-progress-bar__inner {
  395. background: linear-gradient(to right, #FF9239, #FFB84B)
  396. }
  397. }
  398. }
  399. }
  400. }
  401. }
  402. // pageOne 底部图书
  403. .pageOne-book{
  404. background-color: #031437;
  405. border: 1px solid #031A47;
  406. margin-top: -0.1875rem;
  407. .database-title{
  408. width: 14.5rem;
  409. height: .6rem;
  410. background: url('~@/assets/images/title-big.png') no-repeat left top;
  411. background-size: cover;
  412. }
  413. .pageOne-book-content{
  414. display: flex;
  415. justify-content: flex-start;
  416. align-items: center;
  417. padding-top: .125rem;
  418. .wechat-code{
  419. display: flex;
  420. flex-direction: column;
  421. text-align: center;
  422. justify-content: center;
  423. width: 4.025rem;
  424. height: 5.25rem;
  425. background: url('~@/assets/images/wechat-img1.png') no-repeat left top;
  426. background-size: cover;
  427. margin-top: -0.5rem;
  428. .wechat-img{
  429. width: 1.9rem;
  430. height: 1.9rem;
  431. background: url('~@/assets/images/wechat-img2.png') no-repeat left top;
  432. background-size: cover;
  433. margin: 0 auto .3rem auto;
  434. text-align: center;
  435. line-height: 1.9rem;
  436. }
  437. span{
  438. display: block;
  439. font-size: .2rem;
  440. color: #4DDBFF;
  441. text-align: center;
  442. }
  443. }
  444. }
  445. }
  446. // 地图页
  447. .map-wrapper{
  448. width: 100%;
  449. height: 100vh;
  450. background: url('~@/assets/images/mapBg.png') no-repeat top left;
  451. position: absolute;
  452. left: 0;
  453. top: 0;
  454. background-size: cover;
  455. .map-content{
  456. display: flex;
  457. justify-content: space-around;
  458. padding: 1.275rem .5rem .625rem .5rem;
  459. height: 100vh;
  460. .database-title{
  461. width: 100%;
  462. height: .3375rem;
  463. padding-left: .35rem;
  464. margin-top: 0;
  465. line-height: 0;
  466. background: url('~@/assets/images/title-middle.png') no-repeat left top;
  467. background-size: cover;
  468. font-weight: bold;
  469. }
  470. }
  471. }
  472. .lib-info{
  473. width: 5.9375rem;
  474. background-color: rgba(10, 26, 66, 0.6);
  475. .lib-content{
  476. padding: .375rem .35rem 0 .4rem;
  477. }
  478. .lib-cont01{
  479. display: flex;
  480. justify-content: space-between;
  481. margin-top: .325rem;
  482. }
  483. .lib-cont-item {
  484. li{
  485. position: relative;
  486. display: flex;
  487. justify-content: flex-start;
  488. align-items: center;
  489. width: 2.5rem;
  490. height: 1.05rem;
  491. font-size: .225rem;
  492. background: linear-gradient(-180deg, rgba(40, 74, 142, 0.4),rgba(0,0,0,0));
  493. border-radius: 4px;
  494. &::before{
  495. content: '';
  496. position: absolute;
  497. top: 0;
  498. left: 0;
  499. width: 2rem;
  500. height: .025rem;
  501. background: linear-gradient(
  502. to right,
  503. rgba(0,0,0,0) 0%,
  504. rgba(142, 176, 239,0.2) 20%,
  505. rgba(142, 176, 239,0.5) 40%,
  506. rgba(142, 176, 239,0.6) 50%,
  507. rgba(142, 176, 239,0.5) 60%,
  508. rgba(142, 176, 239,0.2) 80%,
  509. rgba(0,0,0,0) 100%
  510. );
  511. }
  512. img{
  513. display: block;
  514. width: .725rem;
  515. height: .65rem;
  516. margin-right: .125rem;
  517. }
  518. p{
  519. color: #B5C1D1;
  520. line-height: 0.45rem;
  521. span{
  522. display: block;
  523. &:last-child{
  524. font-size: .3rem;
  525. color: #fff;
  526. font-weight: bold;
  527. text-shadow:
  528. 0 0 10px rgba(18,104,245, 0.24),
  529. 0 0 20px rgba(18,104,245, 0.24),
  530. 0 0 30px rgba(18,104,245, 0.24),
  531. 0 0 40px rgba(18,104,245, 0.24),
  532. 0 0 50px rgba(18,104,245, 0.24),
  533. 0 0 60px rgba(18,104,245, 0.24),
  534. 0 0 70px rgba(18,104,245, 0.24),
  535. 0 0 80px rgba(18,104,245, 0.24),
  536. 0 0 90px rgba(18,104,245, 0.24),
  537. 0 0 100px rgba(18,104,245, 0.24);
  538. i{
  539. color: #B5C1D1;
  540. font-size: .2rem;
  541. font-weight: normal;
  542. padding-left: .075rem;
  543. font-style: normal;
  544. }
  545. }
  546. }
  547. }
  548. }
  549. }
  550. .lib-cont02{
  551. position: relative;
  552. margin: .1625rem 0 .1rem 0;
  553. &::after{
  554. content: "";
  555. position: absolute;
  556. right: 1px;
  557. bottom: 0;
  558. width: .775rem;
  559. height: .5rem;
  560. background: url('~@/assets/images/map_30.png') no-repeat left top;
  561. background-size: cover;
  562. opacity: .5;
  563. }
  564. li{
  565. width: 100%;
  566. p{
  567. display: flex;
  568. justify-content: space-between;
  569. line-height: 1.05rem;
  570. align-items: center;
  571. span{
  572. &:last-child{
  573. width: 2.375rem;
  574. text-align: right;
  575. }
  576. }
  577. }
  578. }
  579. }
  580. .lib-text{
  581. width: 100%;
  582. height: calc(100vh - 8.625rem);
  583. font-size: .225rem;
  584. line-height: .35rem;
  585. background: linear-gradient(-180deg, rgba(40, 74, 142, 0.4),rgba(0,0,0,0));
  586. border-radius: 4px;
  587. padding: .25rem .2875rem 0 .2875rem;
  588. color: #ADC7FF;
  589. overflow: hidden;
  590. overflow-y: scroll;
  591. }
  592. }
  593. .map-hx-bg{
  594. width: 16.325rem;
  595. height: 11.3125rem;
  596. background: url('~@/assets/images/map-hx-dot.png') no-repeat top left;
  597. position: fixed;
  598. left: 50%;
  599. top: 50%;
  600. transform: translate(-45%,-50%);
  601. }
  602. .map-hx-small{
  603. width: 11.3125rem;
  604. height: 9.15rem;
  605. border-radius: 50%;
  606. overflow: hidden;
  607. background: url('~@/assets/images/map-hx-small.png') no-repeat center center;
  608. background-size: cover;
  609. position: fixed;
  610. left: 50%;
  611. top: 50%;
  612. transform: translate(-58%,-45%);
  613. }
  614. .map-hx-big{
  615. width: 12.5rem;
  616. height: 12.5rem;
  617. border-radius: 50%;
  618. overflow: hidden;
  619. background: url('~@/assets/images/map-hx-big2.png') no-repeat center center;
  620. background-size: cover;
  621. position: fixed;
  622. left: 50%;
  623. top: 50%;
  624. transform: translate(-58%,-40%);
  625. animation: rotateTrack 40s infinite linear;
  626. }
  627. @keyframes rotateTrack {
  628. 0% {
  629. transform: translate(-58%,-50%) rotateX(40deg) rotateZ(0);
  630. }
  631. 100% {
  632. transform: translate(-58%,-50%) rotateX(40deg) rotateZ(360deg);
  633. }
  634. }
  635. .read-num{
  636. width: 5.9375rem;
  637. // height: 10.45rem;
  638. background-color: rgba(10, 26, 66, .6);
  639. .online{
  640. height: 1.6875rem;
  641. background: url('~@/assets/images/map_03.png') no-repeat left top;
  642. background-size: 1.9rem 1.525rem;
  643. margin: .25rem 0 .4rem 0;
  644. padding: 0 .15rem 0 2.25rem;
  645. font-size: .25rem;
  646. color: #C8DFFF;
  647. // line-height: .5rem;
  648. p{
  649. padding-top: .25rem;
  650. }
  651. .num{
  652. span{
  653. font-size: .6rem;
  654. font-weight: 500;
  655. font-style: italic;
  656. color: #fff;
  657. text-shadow:
  658. 0 0 10px rgba(18,104,245, 0.24),
  659. 0 0 20px rgba(18,104,245, 0.24),
  660. 0 0 30px rgba(18,104,245, 0.24),
  661. 0 0 40px rgba(18,104,245, 0.24),
  662. 0 0 50px rgba(18,104,245, 0.24),
  663. 0 0 60px rgba(18,104,245, 0.24),
  664. 0 0 70px rgba(18,104,245, 0.24),
  665. 0 0 80px rgba(18,104,245, 0.24),
  666. 0 0 90px rgba(18,104,245, 0.24),
  667. 0 0 100px rgba(18,104,245, 0.24);
  668. }
  669. i{
  670. font-size: .4125rem;
  671. font-weight: normal;
  672. font-style: normal;
  673. color: rgba(154,197,255,.4);
  674. padding-left: .125rem;
  675. }
  676. }
  677. }
  678. .lending-ranking{
  679. padding: 0 .2625rem 0 .425rem;
  680. h5{
  681. font-size: .225rem;
  682. color: #79B8FF;
  683. margin-bottom: .25rem;
  684. }
  685. .ranking-cont{
  686. // height: calc(100vh - 6.875rem);
  687. background: linear-gradient(-90deg, rgba(66,139,221,0.1), rgba(66,139,221,0));
  688. border: 1px solid rgba(83, 196, 255, .2);
  689. padding-bottom: .375rem;
  690. }
  691. .ranking-title{
  692. display: flex;
  693. justify-content: space-around;
  694. text-align: center;
  695. align-items: center;
  696. font-size: .15rem;
  697. color: #79B8FF;
  698. background: linear-gradient(90deg, rgba(66,139,221,0.2), rgba(66,139,221,0));
  699. li {
  700. &:last-child{
  701. width: 1.375rem;
  702. }
  703. }
  704. }
  705. .ranking-list{
  706. li{
  707. display: flex;
  708. justify-content: space-around;
  709. font-size: .175rem;
  710. color: #eef6ff;
  711. line-height: .375rem;
  712. padding-top: .125rem;
  713. text-align: center;
  714. div{
  715. &:last-child{
  716. font-weight: bold;
  717. }
  718. i{
  719. padding-left: .125rem;
  720. font-style: normal;
  721. font-weight: normal;
  722. color: #b6d4f7;
  723. }
  724. }
  725. .ranking-progress .el-progress{
  726. width: 1.725rem;
  727. margin: 0 auto;
  728. .el-progress-bar__outer {
  729. background-color: #054076;
  730. }
  731. }
  732. .ranking-num1{
  733. background: url('~@/assets/images/ranking01.png') no-repeat center center;
  734. background-size: .225rem .3125rem;
  735. }
  736. .ranking-num2{
  737. background: url('~@/assets/images/ranking02.png') no-repeat center center;
  738. background-size: .225rem .3125rem;
  739. }
  740. .ranking-num3{
  741. background: url('~@/assets/images/ranking03.png') no-repeat center center;
  742. background-size: .225rem .3125rem;
  743. }
  744. }
  745. }
  746. }
  747. }
  748. .tooltip-main{
  749. position: relative;
  750. min-width: 3rem;
  751. .tooltip-line{
  752. width: .15rem;
  753. height: 0;
  754. background: url('~@/assets/images/line.png') no-repeat top left;
  755. position: absolute;
  756. left: -0.25rem;
  757. bottom: -0.625rem;
  758. transform-origin: bottom center;
  759. animation: growBar 1s forwards;
  760. }
  761. }
  762. .tooltip-content{
  763. opacity: 0;
  764. line-height: .4125rem;
  765. border: 1px solid #D1793D;
  766. background-color: rgba(0,31,87,0.8);
  767. animation: slideInFromLeft 1s forwards;
  768. animation-delay:1s;
  769. .title{
  770. width: 100%;
  771. padding: .05rem .1875rem;
  772. font-weight: bold;
  773. font-size: .225rem;
  774. background: linear-gradient(90deg, rgba(255, 116, 32, 1), rgba(255,255,255,0.22));
  775. }
  776. .place{
  777. padding: .125rem .1875rem;
  778. font-size: 0.2rem;
  779. color: rgba(197, 209, 232, 1);
  780. }
  781. }
  782. @keyframes growBar {
  783. 0% {height: 0;}
  784. 100% {height: 1.8125rem;}
  785. }
  786. @keyframes slideInFromLeft {
  787. 0% {width: 0; opacity: 0;}
  788. 100% {width: 100%; opacity: 1;}
  789. }
  790. // 第三页 统计表
  791. .page-three{
  792. display: flex;
  793. justify-content: space-between;
  794. flex-wrap: wrap;
  795. padding: 0 .525rem 0 .45rem;
  796. .three-item{
  797. width: 11.25rem;
  798. margin-bottom: .575rem;
  799. background-color: #01103D;
  800. }
  801. .three01,.three02{
  802. height: 5.25rem;
  803. }
  804. .three03,.three04{
  805. height: 4.7rem;
  806. margin-bottom: 0;
  807. }
  808. .database-title{
  809. width: 6.0375rem;
  810. }
  811. }