humanResources.css 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993
  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(74% - 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: 20%;
  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: 35%;
  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.15) 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(65% - 15px);
  169. background-color: var(--bgc);
  170. }
  171. .left_btm {
  172. width: 100%;
  173. height: calc(35% - 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. }
  211. .right_top {
  212. width: 100%;
  213. height: calc(25% - 15px);
  214. background-color: var(--bgc);
  215. }
  216. .right_main {
  217. width: 100%;
  218. height: calc(35% - 15px);
  219. background-color: var(--bgc);
  220. }
  221. .right_btm {
  222. width: 100%;
  223. height: calc(40% - 15px);
  224. background-color: var(--bgc);
  225. }
  226. .main_item_top {
  227. width: 100%;
  228. height: calc(40% - 15px);
  229. background-color: var(--bgc);
  230. }
  231. .main_item_btm {
  232. width: 100%;
  233. height: calc(60% - 15px);
  234. background-color: var(--bgc);
  235. }
  236. .echarts_dom {
  237. width: 100%;
  238. height: 100%;
  239. }
  240. .item_content_6,
  241. .item_content_6_false {
  242. width: 100%;
  243. height: calc(60% - 10px);
  244. }
  245. .item_content_4 {
  246. width: 100%;
  247. height: calc(40% - 10px);
  248. }
  249. .header-item {
  250. font-size: 20px;
  251. color: #69C0FF;
  252. }
  253. .row-item {
  254. font-size: 23px !important;
  255. }
  256. .content_4_top {
  257. width: 100%;
  258. height: 100px;
  259. align-items: flex-end;
  260. }
  261. .content_4_title {
  262. width: 100%;
  263. height: 50px;
  264. justify-content: space-around;
  265. }
  266. .content_4_time {
  267. width: 45%;
  268. height: 40px;
  269. }
  270. .btn_on {
  271. width: 250px;
  272. height: 100%;
  273. background: url("../images/humanResources/btn_on.png") no-repeat;
  274. background-size: 100% 100%;
  275. margin: 0 20px;
  276. font-size: 25px;
  277. font-family: Source Han Sans CN;
  278. font-weight: 500;
  279. color: #ECE278;
  280. text-align: center;
  281. line-height: 50px;
  282. }
  283. .btn_off {
  284. width: 250px;
  285. height: 100%;
  286. background: url("../images/humanResources/btn_off.png") no-repeat;
  287. background-size: 100% 100%;
  288. margin: 0 20px;
  289. font-size: 25px;
  290. font-family: Source Han Sans CN;
  291. font-weight: 500;
  292. color: #47C0FF;
  293. text-align: center;
  294. line-height: 50px;
  295. }
  296. .img_class {
  297. width: 22px;
  298. /* height: 16px; */
  299. margin-left: 10px;
  300. }
  301. img {
  302. width: 100%;
  303. height: 100%;
  304. }
  305. .content_4_btm {
  306. width: 100%;
  307. height: calc(100% - 90px);
  308. margin-top: 5px;
  309. }
  310. .yellow {
  311. color: yellow;
  312. }
  313. .red {
  314. color: red;
  315. }
  316. .green {
  317. color: green;
  318. }
  319. .item_content_6 .rows .row-item:nth-child(2) {
  320. color: #E1AF27;
  321. background-color: #302e2d50 !important;
  322. }
  323. @keyframes remove {
  324. 0% {
  325. transform: translateY(0);
  326. }
  327. 25% {
  328. transform: translateY(-5%);
  329. }
  330. 50% {
  331. transform: translateY(0);
  332. }
  333. 75% {
  334. transform: translateY(5%);
  335. }
  336. 100% {
  337. transform: translateY(0);
  338. }
  339. }
  340. .item {
  341. width: 100%;
  342. height: 100%;
  343. padding: 10px 30px;
  344. box-sizing: border-box;
  345. }
  346. li {
  347. width: 100%;
  348. display: flex;
  349. flex-direction: column;
  350. justify-content: flex-start;
  351. align-items: flex-start;
  352. font-size: 27px;
  353. }
  354. .list_img {
  355. width: 40px;
  356. height: 40px;
  357. border-radius: 50%;
  358. margin-top: 15px;
  359. }
  360. .main_item_title {
  361. width: 270px;
  362. height: 50px;
  363. background: url("../images/humanResources/btn_on.png") no-repeat;
  364. background-size: 100% 100%;
  365. font-size: 24px;
  366. font-family: Source Han Sans CN;
  367. font-weight: 500;
  368. color: #FFFFFF;
  369. text-align: center;
  370. line-height: 50px;
  371. margin-top: -20px;
  372. }
  373. .main_item_main {
  374. width: 100%;
  375. height: calc(100% - 70px);
  376. }
  377. .center_top_item {
  378. width: 45%;
  379. height: 210px;
  380. }
  381. .center_top_image {
  382. width: 350px;
  383. height: 210px;
  384. margin-right: 30px;
  385. }
  386. .center_top_image img {
  387. width: 100% !important;
  388. height: 100% !important;
  389. }
  390. .center_top_info {
  391. justify-content: flex-start;
  392. align-items: flex-start;
  393. }
  394. .num {
  395. font-size: 72px;
  396. font-family: Helvetica Neue Extra Black Cond;
  397. font-weight: bolder;
  398. color: #5BCBFF;
  399. }
  400. .num span {
  401. font-size: 30px;
  402. font-family: Source Han Sans CN;
  403. font-weight: bold;
  404. }
  405. .name {
  406. font-size: 36px;
  407. font-family: Source Han Sans CN;
  408. font-weight: bolder;
  409. color: #FFFFFF;
  410. }
  411. .fireworks {
  412. position: absolute;
  413. width: 150px;
  414. height: 150px;
  415. background: red;
  416. -webkit-mask: url('../images/humanResources/e9951400.png') no-repeat;
  417. -webkit-mask-size: auto 150px;
  418. transform: scale(2.65);
  419. animation: fireworks 2s steps(24) infinite, random 8s steps(1) infinite, random_color 1s infinite;
  420. /* animation: fireworks 2s steps(24) infinite; */
  421. /* display: none; */
  422. }
  423. .fireworkss {
  424. position: absolute;
  425. width: 150px;
  426. height: 150px;
  427. top: 10%;
  428. right: 0%;
  429. background: red;
  430. }
  431. .fireworks_line {
  432. position: absolute;
  433. width: 10px;
  434. height: 60px;
  435. bottom: 10%;
  436. left: calc(50% - 2.5px);
  437. animation: fireworks_line 2s steps(120) infinite;
  438. display: flex;
  439. flex-direction: column;
  440. justify-content: center;
  441. align-items: center;
  442. }
  443. .line {
  444. width: 1px;
  445. height: 50px;
  446. background-color: #faf89a;
  447. }
  448. @keyframes fireworks {
  449. to {
  450. -webkit-mask-position: 100%;
  451. /* transform: scale(1.65) */
  452. }
  453. }
  454. @keyframes fireworks_line {
  455. to {
  456. bottom: 68%;
  457. }
  458. }
  459. @keyframes random {
  460. 25% {
  461. transform: translate(200%, 50%) scale(1.4);
  462. }
  463. 50% {
  464. transform: translate(80%, 80%) scale(1.7);
  465. }
  466. 75% {
  467. transform: translate(-20%, -60%) scale(1.95);
  468. }
  469. }
  470. @keyframes random_color {
  471. 0% {
  472. background-color: #ffefad;
  473. }
  474. 25% {
  475. background-color: #ffadad;
  476. }
  477. 50% {
  478. background-color: #aeadff;
  479. }
  480. 75% {
  481. background-color: #adffd9;
  482. }
  483. }
  484. .warp {
  485. width: 100%;
  486. height: 92%;
  487. overflow: hidden;
  488. }
  489. .item_title {
  490. width: 100%;
  491. text-align: center;
  492. font-size: 34px;
  493. font-family: Source Han Sans CN;
  494. font-weight: bolder;
  495. color: #7CC8FF;
  496. margin: 15px 0;
  497. }
  498. .item_con {
  499. width: 100%;
  500. margin: 20px 0;
  501. font-size: 24px;
  502. line-height: 30px;
  503. display: flex;
  504. flex-direction: column;
  505. justify-content: flex-start;
  506. align-items: flex-start;
  507. letter-spacing: 9px;
  508. }
  509. .item_con span:nth-child(1) {
  510. font-size: 26px;
  511. font-family: Source Han Sans CN;
  512. font-weight: bolder;
  513. margin-top: 10px;
  514. }
  515. .item_con span:nth-child(2) {
  516. margin-left: 20px;
  517. line-height: 30px;
  518. }
  519. .main_item_2 {
  520. width: 20%;
  521. height: 100%;
  522. }
  523. .main_item_8 {
  524. width: 80%;
  525. height: 100%;
  526. }
  527. .main_2_item {
  528. width: 100%;
  529. height: 20%;
  530. display: flex;
  531. justify-content: center;
  532. align-items: center;
  533. }
  534. .main_item_8_box {
  535. width: 100%;
  536. height: 50%;
  537. justify-content: flex-start;
  538. }
  539. .box_icon {
  540. width: 10px;
  541. height: calc(100% - 10px);
  542. background-color: #0093E9;
  543. }
  544. .main_item_8 .el-progress-bar__inner {
  545. background-image: linear-gradient(270deg, #0093E9 0%, #80D0C7 100%) !important;
  546. }
  547. .el-progress-bar__outer {
  548. background-color: #1C4B8E !important;
  549. }
  550. .main_item_8 .el-progress-bar {
  551. width: 95% !important;
  552. }
  553. .main_item_box {
  554. width: 100%;
  555. height: calc(20% - 10px);
  556. }
  557. .box_title {
  558. font-size: 30px;
  559. text-indent: 10px;
  560. margin-bottom: 2px;
  561. }
  562. .main_8_item {
  563. width: 100%;
  564. height: 20%;
  565. }
  566. .main_item_8 .el-progress__text {
  567. font-size: 35px !important;
  568. color: #fff !important;
  569. }
  570. .main_item_2 .el-progress__text {
  571. font-size: 25px !important;
  572. color: #fff !important;
  573. }
  574. .main_item_btn {
  575. width: 100%;
  576. height: 50px;
  577. z-index: 99999;
  578. justify-content: space-around;
  579. }
  580. .main_item_main_bg {
  581. width: 100%;
  582. height: calc(100% - 90px);
  583. position: relative;
  584. }
  585. .main_item_main_bg img {
  586. width: 75%;
  587. height: 180%;
  588. position: absolute;
  589. top: -45%;
  590. left: 50%;
  591. transform: translateX(-50%);
  592. }
  593. .main_item_text {
  594. font-size: 40px;
  595. font-weight: bolder;
  596. margin-top: 10px;
  597. }
  598. .left {
  599. background: rgba(102, 130, 245, 0.4);
  600. border: 2px solid #839BFF;
  601. position: absolute;
  602. top: 20%;
  603. left: 25%;
  604. animation: leftRemove 2s steps(60) infinite;
  605. }
  606. @keyframes leftRemove {
  607. 0% {
  608. transform: translateY(0);
  609. }
  610. 25% {
  611. transform: translateY(-5%);
  612. }
  613. 50% {
  614. transform: translateY(0);
  615. }
  616. 75% {
  617. transform: translateY(5%);
  618. }
  619. 100% {
  620. transform: translateY(0);
  621. }
  622. }
  623. @keyframes rightRemove {
  624. 0% {
  625. transform: translateY(0);
  626. }
  627. 25% {
  628. transform: translateY(10%);
  629. }
  630. 50% {
  631. transform: translateY(0);
  632. }
  633. 75% {
  634. transform: translateY(-10%);
  635. }
  636. 100% {
  637. transform: translateY(0);
  638. }
  639. }
  640. .right {
  641. background: rgba(0, 202, 197, 0.23);
  642. border: 2px solid #40A9FF;
  643. position: absolute;
  644. top: 20%;
  645. right: 25%;
  646. animation: rightRemove 2s steps(60) infinite;
  647. }
  648. .bg_cyc {
  649. width: 120px;
  650. height: 120px;
  651. border-radius: 50%;
  652. z-index: 9999;
  653. justify-content: center;
  654. font-size: 20px;
  655. }
  656. .bg_cyc_text {
  657. font-size: 30px;
  658. font-weight: bolder;
  659. }
  660. .bg_cyc_text span {
  661. font-size: 20px;
  662. font-weight: normal;
  663. }
  664. .btm_item {
  665. width: calc(50% - 10px);
  666. height: 100%;
  667. }
  668. .main_item_left {
  669. width: 20%;
  670. height: 100%;
  671. }
  672. .main_item_right {
  673. width: calc(100% - 10px);
  674. height: 100%;
  675. }
  676. .right_item {
  677. width: 100%;
  678. height: 20%;
  679. display: flex;
  680. /* flex-direction: column; */
  681. justify-content: space-around;
  682. align-items: flex-start;
  683. }
  684. .right_item_tit {
  685. width: 25%;
  686. height: 100%;
  687. display: flex;
  688. justify-content: flex-start;
  689. align-items: center;
  690. }
  691. .icon_tit {
  692. width: 5px;
  693. height: 30%;
  694. background: #40A9FF;
  695. margin: 5px 10px 0;
  696. }
  697. .tit_text {
  698. font-size: 28px;
  699. font-family: Source Han Sans CN;
  700. font-weight: bold;
  701. color: #FFFFFF;
  702. }
  703. .echarts_dom_else {
  704. width: 75%;
  705. height: 100%;
  706. }
  707. .main_item_left_item {
  708. width: 100%;
  709. height: 20%;
  710. }
  711. .page_main_center_svg {
  712. width: 700px;
  713. height: 700px;
  714. position: absolute;
  715. bottom: -10%;
  716. z-index: 0;
  717. /* transform-origin: center bottom;
  718. transform-style: preserve-3d; */
  719. }
  720. .svg_box {
  721. transform-origin: center top;
  722. transform: rotateX(80deg) scale(2.6);
  723. text-align: center;
  724. position: absolute;
  725. left: 90%;
  726. bottom: -10%;
  727. }
  728. .changeTime_else {
  729. width: 460px;
  730. height: 50px;
  731. position: absolute;
  732. right: 40px;
  733. font-size: 28px !important;
  734. z-index: 99999;
  735. }
  736. .mark_box {
  737. width: 100%;
  738. height: 100%;
  739. position: absolute;
  740. top: 0;
  741. left: 0;
  742. background-color: #1b1b1bb0;
  743. z-index: 9999999999999;
  744. }
  745. .mark_select_box {
  746. width: 215px;
  747. height: 400px;
  748. background-color: var(--bgc);
  749. overflow-y: scroll;
  750. position: absolute;
  751. right: 5%;
  752. bottom: 4%;
  753. font-size: 28px;
  754. text-align: center;
  755. }
  756. .mark_select_options {
  757. width: 100%;
  758. height: 50px;
  759. line-height: 50px;
  760. }
  761. .time_box {
  762. width: 50%;
  763. height: 100%;
  764. }
  765. .time {
  766. width: 100%;
  767. height: 100%;
  768. background: rgba(75, 172, 255, 0.2);
  769. font-size: 28px;
  770. }
  771. .changeTime {
  772. width: 190px;
  773. height: 60px;
  774. background-color: var(--bgc);
  775. position: absolute;
  776. right: 0;
  777. top: -10px;
  778. display: flex;
  779. justify-content: center;
  780. align-items: center;
  781. }
  782. .humanResources_times {
  783. width: 50px;
  784. height: 50px;
  785. }
  786. .humanResources_text {
  787. font-size: 30px;
  788. margin: 0 20px;
  789. }
  790. .humanResources_icon_time {
  791. width: 24px;
  792. height: 16px;
  793. }
  794. .mark_month_box {
  795. width: 190px;
  796. background-color: var(--bgc);
  797. position: absolute;
  798. right: 1%;
  799. top: 38.5%;
  800. display: flex;
  801. flex-direction: column;
  802. justify-content: center;
  803. align-items: center;
  804. overflow-y: scroll;
  805. text-align: center;
  806. font-size: 28px;
  807. padding: 5px 0;
  808. box-sizing: border-box;
  809. }
  810. .echarts_icon {
  811. width: 70px;
  812. height: 70px;
  813. position: fixed;
  814. left: 31%;
  815. top: 56%;
  816. z-index: 9999;
  817. }
  818. .svg_box {
  819. width: 40%;
  820. height: 500px;
  821. position: absolute;
  822. left: 50%;
  823. bottom: 15%;
  824. transform: translateX(-15%);
  825. transform-origin: center bottom;
  826. transform-style: preserve-3d;
  827. }
  828. .svg_item {
  829. width: 800px;
  830. height: 800px;
  831. transform-origin: center top;
  832. transform: rotateX(81deg) scale(2.33);
  833. position: absolute;
  834. bottom: -73%;
  835. }
  836. .svg_item_s {
  837. width: 800px;
  838. height: 800px;
  839. transform-origin: center top;
  840. transform: rotateX(81deg) scale(1.85) translateX(-1.2%);
  841. position: absolute;
  842. bottom: -59%;
  843. }
  844. .svg_item_shu {
  845. width: 800px;
  846. height: 800px;
  847. transform-origin: center top;
  848. transform: rotateX(81deg) scale(2.1) translateX(-1%);
  849. position: absolute;
  850. bottom: -63%;
  851. }
  852. .svg {
  853. width: 100%;
  854. height: 100%;
  855. }
  856. ::-webkit-scrollbar {
  857. display: none;
  858. }