humanResources.css 20 KB

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