humanResources.css 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008
  1. html,
  2. body {
  3. width: 100% !important;
  4. /* width: 4874px !important; */
  5. /* min-height: 2743px; */
  6. height: 100%;
  7. font-size: 20px;
  8. color: #fff;
  9. font-family: 'Microsoft YaHei';
  10. /* background-image: url("../images/indexBg.png"); */
  11. /* background-image: url("../images/newImage/4ca24a27-c946-4f59-90a5-af00530ddb59.png"); */
  12. background-image: url("../images/humanResources/bg.png");
  13. background-repeat: no-repeat;
  14. background-size: 100% 100%;
  15. overflow-y: hidden;
  16. }
  17. :root {
  18. /* --bg: #dcf0fc0c; */
  19. --bgc: #63b6ff11;
  20. }
  21. /* 强制去掉滚动条 */
  22. /* html {
  23. overflow-x: hidden !important;
  24. } */
  25. * {
  26. -webkit-user-select: none;
  27. -moz-user-select: none;
  28. -ms-user-select: none;
  29. user-select: none;
  30. }
  31. img *,
  32. *,
  33. *:before,
  34. *:after {
  35. padding: 0;
  36. margin: 0;
  37. box-sizing: border-box;
  38. }
  39. a {
  40. text-decoration: none;
  41. cursor: pointer;
  42. }
  43. [v-cloak] {
  44. display: none;
  45. }
  46. .app_box {
  47. width: 100%;
  48. height: 100%;
  49. }
  50. .app_box {
  51. width: 100%;
  52. height: 100%;
  53. padding: 40px 30px 20px;
  54. box-sizing: border-box;
  55. display: flex;
  56. flex-direction: column;
  57. justify-content: space-between;
  58. align-items: center;
  59. }
  60. .page_title {
  61. width: 100%;
  62. height: 6%;
  63. font-size: 90px;
  64. font-family: Source Han Sans CN;
  65. font-weight: bold;
  66. text-align: center;
  67. background: linear-gradient(-3deg, #99eeff 0%, #99eeff 30%, #ffffff 91%);
  68. -webkit-background-clip: text;
  69. -webkit-text-fill-color: transparent;
  70. }
  71. .page_main {
  72. width: 100%;
  73. height: calc(79% - 100px);
  74. margin-top: 1%;
  75. display: flex;
  76. justify-content: space-between;
  77. align-items: center;
  78. position: relative;
  79. }
  80. .page_btm {
  81. width: 100%;
  82. height: 15%;
  83. background-color: var(--bgc);
  84. position: relative;
  85. }
  86. .flex_column {
  87. display: flex;
  88. flex-direction: column;
  89. justify-content: space-around;
  90. align-items: center;
  91. }
  92. .flex_sp {
  93. display: flex;
  94. justify-content: space-between;
  95. align-items: center;
  96. }
  97. .flex {
  98. display: flex;
  99. justify-content: center;
  100. align-items: center;
  101. }
  102. .page_main_left,
  103. .page_main_right {
  104. width: 34%;
  105. height: 100%;
  106. position: absolute;
  107. }
  108. .page_main_left {
  109. left: 0;
  110. }
  111. .page_main_right {
  112. right: 0;
  113. }
  114. img {
  115. width: 100%;
  116. height: 100%;
  117. }
  118. .page_main_center {
  119. width: calc(41% - 30px);
  120. height: 100%;
  121. position: absolute;
  122. left: 50%;
  123. transform: translateX(-50%);
  124. }
  125. .page_main_center .page_main_center_image {
  126. width: 90%;
  127. z-index: 0;
  128. height: 84%;
  129. transform: scale(1.1) translate(5%, 20%);
  130. }
  131. .center_top {
  132. width: 100%;
  133. height: 210px;
  134. padding: 0 15%;
  135. box-sizing: border-box;
  136. /* background-color: #ffffff; */
  137. position: absolute;
  138. top: 4.5%;
  139. }
  140. .center_main {
  141. width: 100%;
  142. height: 55%;
  143. position: absolute;
  144. top: 13.5%;
  145. }
  146. .center_main_item {
  147. width: 350px;
  148. height: 350px;
  149. position: absolute;
  150. background: url("../images/humanResources/icon2.png");
  151. background-repeat: no-repeat;
  152. background-size: cover;
  153. justify-content: center;
  154. animation: remove 2s steps(60) infinite;
  155. }
  156. .center_main_item_icon {
  157. width: 110px;
  158. height: 110px;
  159. margin-bottom: 10px;
  160. }
  161. .center_main_item span {
  162. font-size: 30px;
  163. font-weight: 500;
  164. text-align: center;
  165. }
  166. .left_top {
  167. width: 100%;
  168. height: calc(70% - 15px);
  169. background-color: var(--bgc);
  170. }
  171. .left_btm {
  172. width: 100%;
  173. height: calc(30% - 15px);
  174. background-color: var(--bgc);
  175. }
  176. .title {
  177. width: 70%;
  178. height: 75px;
  179. background: url("../images/humanResources/title.png") no-repeat;
  180. background-size: 100% 100%;
  181. font-size: 36px;
  182. font-family: Source Han Sans CN;
  183. font-weight: bolder;
  184. color: #FFFFFF;
  185. text-indent: 8%;
  186. line-height: 65px;
  187. }
  188. .title_yellow {
  189. width: 70%;
  190. height: 75px;
  191. background: url("../images/humanResources/title_yellow.png") no-repeat;
  192. background-size: 100% 100%;
  193. font-size: 36px;
  194. font-family: Source Han Sans CN;
  195. font-weight: bolder;
  196. color: #FFFFFF;
  197. text-indent: 8%;
  198. line-height: 65px;
  199. }
  200. .main {
  201. width: 100%;
  202. height: calc(100% - 75px);
  203. padding: 40px 40px 10px;
  204. box-sizing: border-box;
  205. }
  206. .main_item {
  207. width: calc(50% - 10px);
  208. height: 100%;
  209. background-color: #69c1ff09;
  210. padding-top: 20px;
  211. box-sizing: border-box;
  212. }
  213. .right_top {
  214. width: 100%;
  215. height: calc(25% - 15px);
  216. background-color: var(--bgc);
  217. }
  218. .right_main {
  219. width: 100%;
  220. height: calc(35% - 15px);
  221. background-color: var(--bgc);
  222. }
  223. .right_btm {
  224. width: 100%;
  225. height: calc(40% - 15px);
  226. background-color: var(--bgc);
  227. }
  228. .main_item_top {
  229. width: 100%;
  230. height: calc(37% - 15px);
  231. background-color: var(--bgc);
  232. }
  233. .main_item_btm {
  234. width: 100%;
  235. height: calc(63% - 15px);
  236. background-color: var(--bgc);
  237. }
  238. .echarts_dom {
  239. width: 100%;
  240. height: 100%;
  241. }
  242. .item_content_6,
  243. .item_content_6_false {
  244. width: 100%;
  245. height: calc(60% - 10px);
  246. }
  247. .item_content_4 {
  248. width: 100%;
  249. height: calc(40% - 10px);
  250. }
  251. .header-item {
  252. font-size: 20px;
  253. color: #69C0FF;
  254. }
  255. .row-item {
  256. font-size: 23px !important;
  257. }
  258. .content_4_top {
  259. width: 100%;
  260. height: 100px;
  261. align-items: flex-end;
  262. }
  263. .content_4_title {
  264. width: 100%;
  265. height: 50px;
  266. justify-content: space-around;
  267. }
  268. .content_4_time {
  269. width: 45%;
  270. height: 40px;
  271. }
  272. .btn_on {
  273. width: 250px;
  274. height: 100%;
  275. background: url("../images/humanResources/btn_on.png") no-repeat;
  276. background-size: 100% 100%;
  277. margin: 0 20px;
  278. font-size: 25px;
  279. font-family: Source Han Sans CN;
  280. font-weight: 500;
  281. color: #ECE278;
  282. text-align: center;
  283. line-height: 50px;
  284. }
  285. .btn_off {
  286. width: 250px;
  287. height: 100%;
  288. background: url("../images/humanResources/btn_off.png") no-repeat;
  289. background-size: 100% 100%;
  290. margin: 0 20px;
  291. font-size: 25px;
  292. font-family: Source Han Sans CN;
  293. font-weight: 500;
  294. color: #47C0FF;
  295. text-align: center;
  296. line-height: 50px;
  297. }
  298. .img_class {
  299. width: 22px;
  300. /* height: 16px; */
  301. margin-left: 10px;
  302. }
  303. img {
  304. width: 100%;
  305. height: 100%;
  306. }
  307. .content_4_btm {
  308. width: 100%;
  309. height: calc(100% - 90px);
  310. margin-top: 5px;
  311. }
  312. .yellow {
  313. color: yellow;
  314. }
  315. .red {
  316. color: red;
  317. }
  318. .green {
  319. color: green;
  320. }
  321. .item_content_6 .rows .row-item:nth-child(2) {
  322. color: #E1AF27;
  323. background-color: #302e2d50 !important;
  324. }
  325. @keyframes remove {
  326. 0% {
  327. transform: translateY(0);
  328. }
  329. 25% {
  330. transform: translateY(-5%);
  331. }
  332. 50% {
  333. transform: translateY(0);
  334. }
  335. 75% {
  336. transform: translateY(5%);
  337. }
  338. 100% {
  339. transform: translateY(0);
  340. }
  341. }
  342. .item {
  343. width: 100%;
  344. height: 100%;
  345. padding: 10px 30px;
  346. box-sizing: border-box;
  347. }
  348. li {
  349. width: 100%;
  350. display: flex;
  351. flex-direction: column;
  352. justify-content: flex-start;
  353. align-items: flex-start;
  354. font-size: 27px;
  355. }
  356. .list_img {
  357. width: 40px;
  358. height: 40px;
  359. border-radius: 50%;
  360. margin-top: 15px;
  361. }
  362. .main_item_title {
  363. width: 270px;
  364. height: 50px;
  365. background: url("../images/humanResources/btn_on.png") no-repeat;
  366. background-size: 100% 100%;
  367. font-size: 24px;
  368. font-family: Source Han Sans CN;
  369. font-weight: 500;
  370. color: #FFFFFF;
  371. text-align: center;
  372. line-height: 50px;
  373. margin-top: -20px;
  374. }
  375. .main_item_main {
  376. width: 100%;
  377. height: calc(100% - 70px);
  378. }
  379. .center_top_item {
  380. width: 45%;
  381. height: 210px;
  382. }
  383. .center_top_image {
  384. width: 350px;
  385. height: 210px;
  386. margin-right: 30px;
  387. }
  388. .center_top_image img {
  389. width: 100% !important;
  390. height: 100% !important;
  391. }
  392. .center_top_info {
  393. justify-content: flex-start;
  394. align-items: flex-start;
  395. }
  396. .num {
  397. font-size: 72px;
  398. font-family: Helvetica Neue Extra Black Cond;
  399. font-weight: bolder;
  400. color: #5BCBFF;
  401. }
  402. .num span {
  403. font-size: 30px;
  404. font-family: Source Han Sans CN;
  405. font-weight: bold;
  406. }
  407. .name {
  408. font-size: 36px;
  409. font-family: Source Han Sans CN;
  410. font-weight: bolder;
  411. color: #FFFFFF;
  412. }
  413. .fireworks {
  414. position: absolute;
  415. width: 150px;
  416. height: 150px;
  417. background: red;
  418. -webkit-mask: url('../images/humanResources/e9951400.png') no-repeat;
  419. -webkit-mask-size: auto 150px;
  420. transform: scale(2.65);
  421. animation: fireworks 2s steps(24) infinite, random 8s steps(1) infinite, random_color 1s infinite;
  422. /* animation: fireworks 2s steps(24) infinite; */
  423. /* display: none; */
  424. }
  425. .fireworkss {
  426. position: absolute;
  427. width: 150px;
  428. height: 150px;
  429. top: 10%;
  430. right: 0%;
  431. background: red;
  432. }
  433. .fireworks_line {
  434. position: absolute;
  435. width: 10px;
  436. height: 60px;
  437. bottom: 10%;
  438. left: calc(50% - 2.5px);
  439. animation: fireworks_line 2s steps(120) infinite;
  440. display: flex;
  441. flex-direction: column;
  442. justify-content: center;
  443. align-items: center;
  444. }
  445. .line {
  446. width: 1px;
  447. height: 50px;
  448. background-color: #faf89a;
  449. }
  450. @keyframes fireworks {
  451. to {
  452. -webkit-mask-position: 100%;
  453. /* transform: scale(1.65) */
  454. }
  455. }
  456. @keyframes fireworks_line {
  457. to {
  458. bottom: 68%;
  459. }
  460. }
  461. @keyframes random {
  462. 25% {
  463. transform: translate(200%, 50%) scale(1.4);
  464. }
  465. 50% {
  466. transform: translate(80%, 80%) scale(1.7);
  467. }
  468. 75% {
  469. transform: translate(-20%, -60%) scale(1.95);
  470. }
  471. }
  472. @keyframes random_color {
  473. 0% {
  474. background-color: #ffefad;
  475. }
  476. 25% {
  477. background-color: #ffadad;
  478. }
  479. 50% {
  480. background-color: #aeadff;
  481. }
  482. 75% {
  483. background-color: #adffd9;
  484. }
  485. }
  486. .warp {
  487. width: 100%;
  488. height: 92%;
  489. overflow: hidden;
  490. }
  491. .item_title {
  492. width: 100%;
  493. text-align: center;
  494. font-size: 34px;
  495. font-family: Source Han Sans CN;
  496. font-weight: bolder;
  497. color: #7CC8FF;
  498. margin: 15px 0;
  499. }
  500. .item_con {
  501. width: 100%;
  502. margin: 10px 0;
  503. font-size: 24px;
  504. line-height: 50px;
  505. display: flex;
  506. flex-direction: column;
  507. justify-content: flex-start;
  508. align-items: flex-start;
  509. letter-spacing: 9px;
  510. }
  511. .item_con span:nth-child(1) {
  512. font-size: 26px;
  513. font-family: Source Han Sans CN;
  514. font-weight: bolder;
  515. margin-top: 10px;
  516. color: #7CC8FF;
  517. }
  518. .item_con span:nth-child(2) {
  519. margin-left: 20px;
  520. line-height: 30px;
  521. /* white-space: pre-wrap; */
  522. }
  523. .item_con_main{
  524. line-height: 45px;
  525. white-space: pre-wrap;
  526. font-size: 26px;
  527. font-family: Source Han Sans CN;
  528. font-weight: bolder;
  529. margin-top: 10px;
  530. color: #fff !important;
  531. }
  532. .main_item_2 {
  533. width: 20%;
  534. height: 100%;
  535. }
  536. .main_item_8 {
  537. width: 80%;
  538. height: 100%;
  539. }
  540. .main_2_item {
  541. width: 100%;
  542. height: 20%;
  543. display: flex;
  544. justify-content: center;
  545. align-items: center;
  546. }
  547. .main_item_8_box {
  548. width: 100%;
  549. height: 50%;
  550. justify-content: flex-start;
  551. }
  552. .box_icon {
  553. width: 10px;
  554. height: calc(100% - 10px);
  555. background-color: #0093E9;
  556. }
  557. .main_item_8 .el-progress-bar__inner {
  558. background-image: linear-gradient(270deg, #0093E9 0%, #80D0C7 100%) !important;
  559. }
  560. .el-progress-bar__outer {
  561. background-color: #1C4B8E !important;
  562. }
  563. .main_item_8 .el-progress-bar {
  564. width: 95% !important;
  565. }
  566. .main_item_box {
  567. width: 100%;
  568. height: calc(20% - 10px);
  569. }
  570. .box_title {
  571. font-size: 30px;
  572. text-indent: 10px;
  573. margin-bottom: 2px;
  574. }
  575. .main_8_item {
  576. width: 100%;
  577. height: 20%;
  578. }
  579. .main_item_8 .el-progress__text {
  580. font-size: 35px !important;
  581. color: #fff !important;
  582. }
  583. .main_item_2 .el-progress__text {
  584. font-size: 25px !important;
  585. color: #fff !important;
  586. }
  587. .main_item_btn {
  588. width: 100%;
  589. height: 50px;
  590. z-index: 99999;
  591. justify-content: space-around;
  592. }
  593. .main_item_main_bg {
  594. width: 100%;
  595. height: calc(100% - 90px);
  596. position: relative;
  597. }
  598. .main_item_main_bg img {
  599. width: 75%;
  600. height: 180%;
  601. position: absolute;
  602. top: -45%;
  603. left: 50%;
  604. transform: translateX(-50%);
  605. }
  606. .main_item_text {
  607. font-size: 40px;
  608. font-weight: bolder;
  609. margin-top: 10px;
  610. }
  611. .left {
  612. background: rgba(102, 130, 245, 0.4);
  613. border: 2px solid #839BFF;
  614. position: absolute;
  615. top: 20%;
  616. left: 25%;
  617. animation: leftRemove 2s steps(60) infinite;
  618. }
  619. @keyframes leftRemove {
  620. 0% {
  621. transform: translateY(0);
  622. }
  623. 25% {
  624. transform: translateY(-5%);
  625. }
  626. 50% {
  627. transform: translateY(0);
  628. }
  629. 75% {
  630. transform: translateY(5%);
  631. }
  632. 100% {
  633. transform: translateY(0);
  634. }
  635. }
  636. @keyframes rightRemove {
  637. 0% {
  638. transform: translateY(0);
  639. }
  640. 25% {
  641. transform: translateY(10%);
  642. }
  643. 50% {
  644. transform: translateY(0);
  645. }
  646. 75% {
  647. transform: translateY(-10%);
  648. }
  649. 100% {
  650. transform: translateY(0);
  651. }
  652. }
  653. .right {
  654. background: rgba(0, 202, 197, 0.23);
  655. border: 2px solid #40A9FF;
  656. position: absolute;
  657. top: 20%;
  658. right: 25%;
  659. animation: rightRemove 2s steps(60) infinite;
  660. }
  661. .bg_cyc {
  662. width: 120px;
  663. height: 120px;
  664. border-radius: 50%;
  665. z-index: 9999;
  666. justify-content: center;
  667. font-size: 20px;
  668. }
  669. .bg_cyc_text {
  670. font-size: 30px;
  671. font-weight: bolder;
  672. }
  673. .bg_cyc_text span {
  674. font-size: 20px;
  675. font-weight: normal;
  676. }
  677. .btm_item {
  678. width: calc(50% - 10px);
  679. height: 100%;
  680. }
  681. .main_item_left {
  682. width: 20%;
  683. height: 100%;
  684. }
  685. .main_item_right {
  686. width: calc(100% - 10px);
  687. height: 100%;
  688. }
  689. .right_item {
  690. width: 100%;
  691. height: 20%;
  692. display: flex;
  693. /* flex-direction: column; */
  694. justify-content: space-around;
  695. align-items: flex-start;
  696. }
  697. .right_item_tit {
  698. width: 25%;
  699. height: 100%;
  700. display: flex;
  701. justify-content: flex-start;
  702. align-items: center;
  703. }
  704. .icon_tit {
  705. width: 5px;
  706. height: 30%;
  707. background: #40A9FF;
  708. margin: 5px 10px 0;
  709. }
  710. .tit_text {
  711. font-size: 28px;
  712. font-family: Source Han Sans CN;
  713. font-weight: bold;
  714. color: #FFFFFF;
  715. }
  716. .echarts_dom_else {
  717. width: 75%;
  718. height: 100%;
  719. }
  720. .main_item_left_item {
  721. width: 100%;
  722. height: 20%;
  723. }
  724. .page_main_center_svg {
  725. width: 700px;
  726. height: 700px;
  727. position: absolute;
  728. bottom: -10%;
  729. z-index: 0;
  730. /* transform-origin: center bottom;
  731. transform-style: preserve-3d; */
  732. }
  733. .svg_box {
  734. transform-origin: center top;
  735. transform: rotateX(80deg) scale(2.6);
  736. text-align: center;
  737. position: absolute;
  738. left: 90%;
  739. bottom: -10%;
  740. }
  741. .changeTime_else {
  742. width: 460px;
  743. height: 50px;
  744. position: absolute;
  745. right: 40px;
  746. font-size: 28px !important;
  747. z-index: 99999;
  748. }
  749. .mark_box {
  750. width: 100%;
  751. height: 100%;
  752. position: absolute;
  753. top: 0;
  754. left: 0;
  755. background-color: #1b1b1bb0;
  756. z-index: 9999999999999;
  757. }
  758. .mark_select_box {
  759. width: 215px;
  760. height: 400px;
  761. background-color: var(--bgc);
  762. overflow-y: scroll;
  763. position: absolute;
  764. right: 5%;
  765. bottom: 4%;
  766. font-size: 28px;
  767. text-align: center;
  768. }
  769. .mark_select_options {
  770. width: 100%;
  771. height: 50px;
  772. line-height: 50px;
  773. }
  774. .time_box {
  775. width: 50%;
  776. height: 100%;
  777. }
  778. .time {
  779. width: 100%;
  780. height: 100%;
  781. background: rgba(75, 172, 255, 0.2);
  782. font-size: 28px;
  783. }
  784. .changeTime {
  785. width: 190px;
  786. height: 60px;
  787. background-color: var(--bgc);
  788. position: absolute;
  789. right: 0;
  790. top: 10px;
  791. display: flex;
  792. justify-content: center;
  793. align-items: center;
  794. }
  795. .humanResources_times {
  796. width: 50px;
  797. height: 50px;
  798. }
  799. .humanResources_text {
  800. font-size: 30px;
  801. margin: 0 20px;
  802. }
  803. .humanResources_icon_time {
  804. width: 24px;
  805. height: 16px;
  806. }
  807. .mark_month_box {
  808. width: 190px;
  809. background-color: var(--bgc);
  810. position: absolute;
  811. right: 1%;
  812. top: 38.5%;
  813. display: flex;
  814. flex-direction: column;
  815. justify-content: center;
  816. align-items: center;
  817. overflow-y: scroll;
  818. text-align: center;
  819. font-size: 28px;
  820. padding: 5px 0;
  821. box-sizing: border-box;
  822. }
  823. .echarts_icon {
  824. width: 70px;
  825. height: 70px;
  826. position: fixed;
  827. left: 32.5%;
  828. top: 62%;
  829. z-index: 9999;
  830. }
  831. .svg_box {
  832. width: 40%;
  833. height: 500px;
  834. position: absolute;
  835. left: 50%;
  836. bottom: 15%;
  837. transform: translateX(-15%);
  838. transform-origin: center bottom;
  839. transform-style: preserve-3d;
  840. }
  841. .svg_item {
  842. width: 800px;
  843. height: 800px;
  844. transform-origin: center top;
  845. transform: rotateX(81deg) scale(2.4);
  846. position: absolute;
  847. bottom: -100%;
  848. }
  849. .svg_item_s {
  850. width: 800px;
  851. height: 800px;
  852. transform-origin: center top;
  853. transform: rotateX(83deg) scale(1.65) translateX(-1.2%);
  854. position: absolute;
  855. bottom: -90%;
  856. }
  857. .svg_item_shu {
  858. width: 800px;
  859. height: 800px;
  860. transform-origin: center top;
  861. transform: rotateX(79deg) scale(2.1) translateX(-1%);
  862. position: absolute;
  863. bottom: -85%;
  864. }
  865. .svg {
  866. width: 100%;
  867. height: 100%;
  868. }
  869. ::-webkit-scrollbar {
  870. display: none;
  871. }