humanResources.css 17 KB

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