globe.scss 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943
  1. @import 'cover';
  2. // 取消拖动时的选中
  3. div {
  4. -moz-user-select: none;
  5. -webkit-user-select: none;
  6. user-select: none;
  7. }
  8. .sm-btn {
  9. display: inline-block;
  10. // color: #51E9FF;
  11. // color: #5ECDF0;
  12. color: #64DAFF;
  13. background-color: rgba(38, 38, 38, 0.75);
  14. margin-bottom: 0;
  15. text-align: center;
  16. white-space: nowrap;
  17. touch-action: manipulation;
  18. cursor: pointer;
  19. -webkit-user-select: none;
  20. padding: 10px 12px;
  21. font-size: 17px;
  22. border: none;
  23. vertical-align: middle;
  24. transition: border .25s linear, color .25s linear, background-color .25s linear;
  25. -webkit-font-smoothing: subpixel-antialiased;
  26. -webkit-transition: border .25s linear, color .25s linear, background-color .25s linear;
  27. &:hover {
  28. background: rgba(38, 38, 38, 0.9);
  29. color: #fff;
  30. }
  31. }
  32. .sm-panel {
  33. // margin-top: 2rem;
  34. // margin-left: 2rem;
  35. width: 340px;
  36. max-width: 340px;
  37. min-width: 280px;
  38. display: inline-block;
  39. position: absolute;
  40. right: 20px;
  41. top: 106px;
  42. z-index: 99;
  43. cursor: pointer;
  44. // border: 1px solid #526f82;
  45. background: url(/static/images/ghzc/内容框.png) no-repeat;
  46. background-size: 100% 100%;
  47. background-position: center;
  48. padding: 0px 10px;
  49. //overflow: hidden;
  50. @media (max-width: 750px) {
  51. margin-top: 2px;
  52. margin-left: 2px;
  53. max-width: 280px;
  54. }
  55. @media (max-height: 480px) {
  56. margin-top: 2px;
  57. margin-left: 2px;
  58. max-height: 440px;
  59. }
  60. @media (max-height: 300px) {
  61. max-height: 290px;
  62. }
  63. @media (max-height: 250px) {
  64. max-height: 240px;
  65. }
  66. }
  67. .sm-toggle-btn {
  68. @extend .sm-btn;
  69. position: absolute;
  70. width: 40px;
  71. height: 40px;
  72. box-sizing: border-box;
  73. // border-radius: 4px;
  74. background: transparent;
  75. z-index: 100;
  76. display: flex;
  77. justify-content: center;
  78. align-items: center;
  79. @media (max-width: 750px) {
  80. width: 35px;
  81. height: 35px;
  82. }
  83. @media (max-height: 480px) {
  84. width: 35px;
  85. height: 35px;
  86. }
  87. @media (max-height: 300px) {
  88. width: 30px;
  89. height: 30px;
  90. }
  91. }
  92. .sm-toggle-btn-only {
  93. background-color: rgba(38, 38, 38, 0.75);
  94. }
  95. .sm-content {
  96. overflow: hidden;
  97. transform-origin: top left;
  98. // background-color: rgba(38, 38, 38, 0.75);
  99. transition: transform 0.6s ease;
  100. }
  101. .sm-content-hidden {
  102. transform: scale(0, 0);
  103. }
  104. // 关闭按钮
  105. .closeBtn {
  106. // float: right;
  107. position: absolute;
  108. top: 6px;
  109. right: 10px;
  110. color: #ffffff;
  111. border: none;
  112. font-size: 20px;
  113. width: 22px;
  114. height: 22px;
  115. background: #335F87;
  116. border-radius: 4px;
  117. border: 1px solid rgba(123, 162, 198, 0.5);
  118. padding: 0px;
  119. // display: inline-block;
  120. text-align: center;
  121. line-height: 19px;
  122. }
  123. .closeBtn:hover {
  124. background-color: #336968
  125. }
  126. .sm-panel-header {
  127. height: 36px;
  128. line-height: 36px;
  129. padding-left: 15px;
  130. border-bottom: 1px solid rgba(38, 38, 38, 0.6);
  131. background: url(/static/images/ghzc//second_titlebg.png) no-repeat;
  132. background-size: 100% 100%;
  133. background-position: center;
  134. text-align: left;
  135. font-family: HarmonyOS Sans SC, HarmonyOS Sans SC;
  136. font-weight: bold;
  137. font-size: 16px;
  138. color: #FFFFFF;
  139. text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  140. @media (max-width: 750px) {
  141. // height: 35px;
  142. line-height: 35px;
  143. padding-left: 10px;
  144. font-size: 13px;
  145. }
  146. @media (max-height: 480px) {
  147. // height: 35px;
  148. line-height: 35px;
  149. padding-left: 5px;
  150. font-size: 13px;
  151. }
  152. @media (max-height: 300px) {
  153. // height: 30px;
  154. line-height: 30px;
  155. padding-left: 0px;
  156. font-size: 12px;
  157. }
  158. }
  159. .headertwo{
  160. height: 72px;
  161. }
  162. .sm-function-module-content {
  163. // margin: 0.5rem 1rem 1rem 1rem;
  164. // padding: 5px 10px;
  165. overflow: auto;
  166. max-height: 528px;
  167. // background-color: rgba(23, 23, 23, 0.5);
  168. scrollbar-width: none;
  169. /* firefox */
  170. -ms-overflow-style: none;
  171. /* IE 10+ */
  172. @media (max-width: 1000px) {
  173. margin: 0.8rem 0;
  174. padding: 0 15px;
  175. }
  176. @media (max-width: 750px) {
  177. margin: 0.5rem 0;
  178. padding: 0 10px;
  179. max-height: 410px;
  180. }
  181. @media (max-height: 480px) {
  182. margin: 0.5rem 0;
  183. padding: 0 15px;
  184. max-height: 420px;
  185. max-width: 280px;
  186. }
  187. @media (max-height: 300px) {
  188. margin: 0.5rem 0;
  189. padding: 0 10px;
  190. max-height: 280px;
  191. max-width: 250px;
  192. }
  193. @media (max-height: 250px) {
  194. max-height: 240px;
  195. }
  196. }
  197. .sm-function-module-content::-webkit-scrollbar {
  198. display: none;
  199. /* Chrome Safari */
  200. }
  201. .sm-function-module-sub-section {
  202. margin-bottom: 18px;
  203. overflow: hidden;
  204. @media (max-width: 1000px) {
  205. margin-bottom: 1px;
  206. }
  207. @media (max-height: 480px) {
  208. margin-bottom: 1px;
  209. }
  210. @media (max-height: 300px) {
  211. margin-bottom: 0px;
  212. }
  213. }
  214. .sm-function-module-sub-section-setting {
  215. // font-size: 13px;
  216. margin: 0 0 8px 0;
  217. padding: 0;
  218. }
  219. .sm-function-module-sub-section-caption {
  220. margin: 0 0 8px 0;
  221. padding: 0;
  222. @media (max-height: 480px) {
  223. margin: 0 0 2px 0;
  224. }
  225. }
  226. .sm-function-module-btn-highlight {
  227. color: #009c95;
  228. border: 1px solid #009c95;
  229. }
  230. label {
  231. font-size: 13px;
  232. font-weight: 400;
  233. line-height: 1.8;
  234. display: inline-block;
  235. max-width: 100%;
  236. margin-bottom: 5px;
  237. @media (max-width: 1000px) {
  238. font-size: 12px;
  239. }
  240. @media (max-width: 750px) {
  241. font-size: 10px;
  242. }
  243. @media (max-height: 480px) {
  244. font-size: 12px;
  245. }
  246. @media (max-height: 300px) {
  247. font-size: 10px;
  248. }
  249. }
  250. .sm-half {
  251. /* 用于功能面板一行放两个控件 */
  252. width: 50%;
  253. float: left;
  254. margin: 0;
  255. padding: 0;
  256. border: none;
  257. }
  258. .sm-input {
  259. border-radius: 4px;
  260. -webkit-box-sizing: border-box;
  261. color: #606266;
  262. display: inline-block;
  263. line-height: 40px;
  264. transition: border-color .2s cubic-bezier(.645, .045, .355, 1);
  265. height: 25px;
  266. border: 1px solid #DCDFE6;
  267. padding: 0px 3px;
  268. }
  269. .sm-input-right {
  270. @extend .sm-input;
  271. float: right;
  272. width: 50%;
  273. }
  274. .sm-solider-input-box {
  275. float: right;
  276. width: 65%;
  277. @media (max-width: 750px) {
  278. width: 61%;
  279. }
  280. @media (max-height: 480px) {
  281. width: 61%;
  282. }
  283. }
  284. .sm-solider-input-box:after {
  285. /*伪元素是行内元素 正常浏览器清除浮动方法*/
  286. content: "";
  287. display: block;
  288. height: 0;
  289. clear: both;
  290. visibility: hidden;
  291. }
  292. .sm-input-long {
  293. @extend .sm-input;
  294. float: right;
  295. // width: 246px;
  296. }
  297. .sm-point {
  298. width: 5px;
  299. height: 5px;
  300. display: inline-block;
  301. background-color: #3C8DBC;
  302. border-radius: 50%;
  303. margin-bottom: 2px;
  304. }
  305. .sm-colorpicker {
  306. float: right;
  307. height: 12px;
  308. width: 50%;
  309. }
  310. .sm-select {
  311. width: 50%;
  312. border-radius: 4px;
  313. -webkit-box-sizing: border-box;
  314. color: #606266;
  315. display: inline-block;
  316. line-height: 40px;
  317. -webkit-transition: border-color 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
  318. transition: border-color 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
  319. height: 25px;
  320. border: 1px solid #DCDFE6;
  321. padding: 0px 3px;
  322. @media (max-width: 750px) {
  323. font-size: 12px;
  324. height: 21px;
  325. }
  326. @media (max-height: 480px) {
  327. height: 21px;
  328. font-size: 12px;
  329. }
  330. }
  331. .sm-select-s {
  332. width: 65%;
  333. @media (max-width: 750px) {
  334. width: 64%;
  335. }
  336. @media (max-height: 480px) {
  337. width: 61%;
  338. }
  339. }
  340. .sm-select:after {
  341. content: '';
  342. display: inline-block;
  343. width: 0;
  344. height: 0;
  345. border: 5px solid transparent;
  346. border-top: 6px solid #ffffff;
  347. position: relative;
  348. top: 4px;
  349. left: 80px;
  350. @media (max-width: 750px) {
  351. display: none
  352. }
  353. @media (max-height: 480px) {
  354. display: none
  355. }
  356. }
  357. .sm-select-color {
  358. width: 66%;
  359. position: relative;
  360. @media (max-width: 1000px) {
  361. width: 65%;
  362. }
  363. @media (max-width: 750px) {
  364. width: 60%;
  365. }
  366. @media (max-height: 480px) {
  367. width: 60%;
  368. }
  369. }
  370. html,
  371. body,
  372. #app {
  373. width: 100%;
  374. height: 100%;
  375. margin: 0;
  376. padding: 0;
  377. overflow: hidden;
  378. color: #eee;
  379. position: absolute;
  380. top: 0;
  381. left: 0;
  382. }
  383. /*--------tooltip----------------*/
  384. .twipsy {
  385. display: block;
  386. position: absolute;
  387. visibility: visible;
  388. max-width: 300px;
  389. min-width: 100px;
  390. padding: 5px;
  391. font-size: 11px;
  392. z-index: 1000;
  393. opacity: 0.8;
  394. -khtml-opacity: 0.8;
  395. -moz-opacity: 0.8;
  396. filter: alpha(opacity=80);
  397. }
  398. .twipsy.left .twipsy-arrow {
  399. top: 50%;
  400. right: 0;
  401. margin-top: -5px;
  402. border-top: 5px solid transparent;
  403. border-bottom: 5px solid transparent;
  404. border-left: 5px solid #000000;
  405. }
  406. .twipsy.right .twipsy-arrow {
  407. top: 50%;
  408. left: 0;
  409. margin-top: -5px;
  410. border-top: 5px solid transparent;
  411. border-bottom: 5px solid transparent;
  412. border-right: 5px solid #000000;
  413. }
  414. .twipsy-inner {
  415. padding: 3px 8px;
  416. background-color: #000000;
  417. color: white;
  418. text-align: center;
  419. max-width: 300px;
  420. text-decoration: none;
  421. -webkit-border-radius: 4px;
  422. -moz-border-radius: 4px;
  423. border-radius: 4px;
  424. }
  425. .twipsy-arrow {
  426. position: absolute;
  427. width: 0;
  428. height: 0;
  429. }
  430. /*--------tooltip end------------*/
  431. /*--------地形裁剪补充 str-----------*/
  432. /*小标题*/
  433. //.label-container{
  434. // display: flex;
  435. // flex-direction: row;
  436. // font-size: 13px;
  437. // margin-bottom: 7px;
  438. //}
  439. input:focus {
  440. outline: none;
  441. }
  442. ;
  443. select:focus {
  444. outline: none;
  445. }
  446. ;
  447. button:focus {
  448. // border: none;
  449. background-color: rgba(121, 120, 120, 0.5);
  450. outline: none; //消除默认点击蓝色边框效果
  451. }
  452. input[type="checkbox"] {
  453. -webkit-appearance: none;
  454. width: 14px;
  455. height: 14px;
  456. display: inline-block;
  457. text-align: center;
  458. vertical-align: middle;
  459. line-height: 12px;
  460. border-radius: 2px;
  461. /*color: #3C8DBC;*/
  462. border: 1px solid #3C8DBC;
  463. margin: 0;
  464. }
  465. input[type="checkbox"]:checked::before {
  466. content: "\2713";
  467. border-color: #3C8DBC;
  468. color: #3C8DBC;
  469. }
  470. .min-input {
  471. width: 110px;
  472. height: 26px;
  473. background: rgba(51, 51, 51, 1);
  474. border: 1px solid rgba(60, 141, 188, 1);
  475. border-radius: 4px;
  476. color: #ffffff;
  477. padding-left: 10px;
  478. opacity: 0.8;
  479. @media (max-width: 750px) {
  480. width: 102px;
  481. }
  482. @media (max-height: 480px) {
  483. width: 102px;
  484. }
  485. @media (max-height: 300px) {
  486. width: 75px;
  487. }
  488. }
  489. //分析按钮盒子
  490. .boxchild {
  491. display: flex;
  492. justify-content: flex-end;
  493. margin-top: 10px;
  494. padding: 5px 0 5px 10px;
  495. @media (max-width: 750px) {
  496. margin-top: 5px;
  497. padding: 3px 0 3px 5px;
  498. font-size: 12px;
  499. }
  500. @media (max-height: 480px) {
  501. margin-top: 5px;
  502. padding: 3px 0 3px 5px;
  503. font-size: 12px;
  504. }
  505. @media (max-height: 300px) {
  506. margin-top: 2px;
  507. padding: 2px 0 2px 4px;
  508. font-size: 10px;
  509. }
  510. }
  511. //切换组件选中颜色和标题
  512. .titleColor {
  513. color: #009c95;
  514. cursor: default;
  515. border-bottom: 1px solid #009c95;
  516. font-weight: bold;
  517. }
  518. .title-txt {
  519. display: inline-block;
  520. font-size: 15px;
  521. padding: 0px;
  522. margin-right: 5px;
  523. @media (max-width: 1000px) {
  524. font-size: 14px;
  525. }
  526. @media (max-width: 750px) {
  527. font-size: 12px;
  528. }
  529. @media (max-height: 480px) {
  530. font-size: 12px;
  531. }
  532. @media (max-height: 300px) {
  533. font-size: 11px;
  534. }
  535. }
  536. //滑块
  537. input[type="range"]::-webkit-slider-thumb {
  538. -webkit-appearance: none;
  539. }
  540. input[type="range"]::-moz-range-thumb {
  541. -webkit-appearance: none;
  542. }
  543. .min-solider {
  544. background: rgba(51, 51, 51, 1);
  545. border: 1px solid rgba(60, 141, 188, 1);
  546. color: #ffffff;
  547. opacity: 0.6;
  548. vertical-align: middle;
  549. @media (max-width: 750px) {
  550. width: 63%
  551. }
  552. @media (max-height: 480px) {
  553. width: 63%;
  554. }
  555. @media (max-height: 300px) {
  556. width: 62%;
  557. }
  558. }
  559. //坡度坡向颜色带
  560. .color-select {
  561. display: flex;
  562. flex-wrap: wrap;
  563. position: absolute;
  564. justify-content: center;
  565. width: 48%;
  566. background-color: rgba(42, 42, 42, 1);
  567. right: 53px;
  568. z-index: 1000;
  569. border: 1px solid rgba(60, 141, 188, 1);
  570. @media (max-width: 1000px) {
  571. right: 43px;
  572. width: 50%;
  573. }
  574. @media (max-width: 750px) {
  575. right: 10px;
  576. width: 56%;
  577. }
  578. @media (max-height: 480px) {
  579. right: 10px;
  580. width: 56%;
  581. }
  582. }
  583. .ban {
  584. margin-bottom: 3px;
  585. }
  586. .ban:hover {
  587. border: 1px solid red;
  588. }
  589. .band1 {
  590. background: -webkit-linear-gradient(left, #95e8f9, #002794) !important;
  591. }
  592. .band2 {
  593. background: -webkit-linear-gradient(left, #a2fbc2, #ff6767) !important;
  594. }
  595. .band3 {
  596. background: -webkit-linear-gradient(left, #e6c6ff, #9d00ff) !important;
  597. }
  598. .band4 {
  599. background: -webkit-linear-gradient(left, #0909d4, #00a1ff 20%, #14bb12 40%, #dde007 60%, #d20f0f) !important;
  600. }
  601. .band5 {
  602. background: -webkit-linear-gradient(left, #baffe5, #1ab99c) !important;
  603. }
  604. .band5 {
  605. background: -webkit-linear-gradient(left, #baffe5, #1ab99c) !important;
  606. }
  607. .band6 {
  608. background: -webkit-linear-gradient(left, #93f602, #2fac01, #74cb01, #d0ef01, #e1ce01, #e16a01, #f70701) !important;
  609. }
  610. .label {
  611. display: inline;
  612. padding: 0.4em 4em .01em 6em;
  613. font-size: 110%;
  614. color: #fff;
  615. text-align: center;
  616. white-space: nowrap;
  617. vertical-align: baseline;
  618. border-radius: .25em;
  619. line-height: 1.1;
  620. @media (max-width: 750px) {
  621. padding: 0.4em 5.6em .01em 4em;
  622. }
  623. @media (max-height: 480px) {
  624. padding: 0.4em 5.6em .01em 4em;
  625. }
  626. @media (max-height: 300px) {
  627. padding: 0.4em 4.6em .01em 4em;
  628. }
  629. }
  630. //分析清除按钮
  631. .tbtn {
  632. font-weight: 400;
  633. background-color: rgba(42, 42, 42, 1);
  634. margin-left: 5px;
  635. border-radius: 4px;
  636. color: darkgrey;
  637. border: 1px solid #686363;
  638. height: 26px;
  639. width: 56px;
  640. font-size: 13px;
  641. overflow: hidden;
  642. @media (max-width: 750px) {
  643. height: 22px;
  644. width: 50px;
  645. }
  646. @media (max-height: 480px) {
  647. height: 20px;
  648. width: 50px;
  649. }
  650. @media (max-height: 300px) {
  651. height: 20px;
  652. width: 45px;
  653. }
  654. }
  655. .tbn1 {
  656. color: #009c95;
  657. border: 1px solid #009c95;
  658. }
  659. .media-hidden {
  660. //缩小屏幕时隐藏
  661. @media (max-width: 750px) {
  662. display: none;
  663. }
  664. @media (max-height: 480px) {
  665. display: none;
  666. }
  667. }
  668. // 卷帘
  669. #verticalSlider {
  670. position: absolute;
  671. left: 50%;
  672. top: 0;
  673. background-color: #D3D3D3;
  674. width: 5px;
  675. height: 100%;
  676. cursor: ew-resize;
  677. }
  678. #horizontalSlider {
  679. position: absolute;
  680. left: 0;
  681. top: 50%;
  682. background-color: #D3D3D3;
  683. width: 100%;
  684. height: 5px;
  685. cursor: ns-resize;
  686. }
  687. //@at-root
  688. .symbolicLibrary {
  689. display: flex;
  690. justify-content: flex-start;
  691. // background-color: rgba(37, 33, 33,0.8);
  692. padding: 5px;
  693. border: 1px solid rgb(58, 150, 78);
  694. margin-bottom: 18px;
  695. flex-wrap: wrap;
  696. .Thematicbox {
  697. width: 40px;
  698. height: 45px;
  699. // background-color: #fff;
  700. margin-right: 2rem;
  701. font-size: 12px;
  702. // color: cl;
  703. text-align: center;
  704. .minbox {
  705. width: 30px;
  706. height: 30px;
  707. margin: 0 auto;
  708. line-height: 29px;
  709. }
  710. .iconfont {
  711. font-size: 24px;
  712. }
  713. }
  714. .lightSelected {
  715. color: rgb(58, 150, 78);
  716. }
  717. }
  718. .symbolicLibrary::-webkit-scrollbar {
  719. display: none;
  720. /* Chrome Safari */
  721. }
  722. .ParticleSystem {
  723. .sm-function-module-sub-section {
  724. margin-bottom: 0;
  725. .sm-solider-input-box,
  726. .sm-select {
  727. width: 68%;
  728. }
  729. }
  730. }
  731. .flexbox {
  732. padding: 2px 6px 0px 6px;
  733. display: flex;
  734. align-items: baseline;
  735. justify-content: space-between;
  736. margin-bottom: 10px;
  737. @media (max-width: 750px) {
  738. margin-bottom: 2px;
  739. }
  740. @media (max-height: 480px) {
  741. margin-bottom: 2px;
  742. }
  743. button {
  744. // background-color: #333;
  745. color: white;
  746. }
  747. }
  748. .el-pagination__total {
  749. color: white;
  750. }
  751. .flybox {
  752. display: flex;
  753. justify-content: space-between;
  754. // background-color: rgba(37, 33, 33,0.8);
  755. padding: 5px;
  756. // border: 1px solid rgb(58, 150, 78);
  757. margin: 10px 0;
  758. .imgbox {
  759. width: 40px;
  760. height: 40px;
  761. }
  762. .imgbox:hover {
  763. background-color: #127bab;
  764. }
  765. }
  766. /* 滚动条整体样式(高宽分别对应横竖滚动条的尺寸) */
  767. body::-webkit-scrollbar {
  768. width: 10px;
  769. height: 10px;
  770. }
  771. /* 滚动条里面小方块 */
  772. body::-webkit-scrollbar-thumb {
  773. border-radius: 10px;
  774. -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
  775. background: rgba(85, 229, 38, 0.71);
  776. }
  777. /* 滚动条里面轨道 */
  778. body::-webkit-scrollbar-track {
  779. -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
  780. border-radius: 10px;
  781. background: #2a4fd1b3;
  782. }
  783. //在全局设置
  784. input[aria-hidden=true]{
  785. display: none !important;
  786. }