index.css 24 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210
  1. .shadowbox {
  2. background-color: rgba(0, 0, 0, 0.6);
  3. position: fixed;
  4. width: 100%;
  5. height: 100%;
  6. z-index: 1009
  7. }
  8. * {
  9. box-sizing: border-box;
  10. }
  11. .nav-fixed>.shadowbox {
  12. z-index: 2;
  13. }
  14. body>.shadowbox {
  15. top: 0px;
  16. z-index: 1000;
  17. }
  18. /* .nav-mobile-right{
  19. min-width: 880px;
  20. } */
  21. .nav-mobile-right::after {
  22. content: '';
  23. height: 0;
  24. /*高度为0*/
  25. line-height: 0;
  26. /*行高为0*/
  27. display: block;
  28. /*将文本转为块级元素*/
  29. visibility: hidden;
  30. /*将元素隐藏*/
  31. clear: both;
  32. /*清除浮动*/
  33. }
  34. .translatable_sketch_name {
  35. margin-left: 0;
  36. border-radius: 15px;
  37. background: #2940ad;
  38. height: 35px;
  39. width: 170px;
  40. color: #fff;
  41. text-indent: 1em;
  42. border-bottom: none;
  43. }
  44. @media screen and (max-width: 1400px) {
  45. .translatable_help_board {
  46. display: none;
  47. }
  48. .translatable_devices {
  49. display: none;
  50. }
  51. .translatable_language {
  52. display: none;
  53. }
  54. .translatable_login_title {
  55. display: none;
  56. }
  57. .translatable_storage {
  58. display: none;
  59. }
  60. .translatable_learn_board {
  61. display: none;
  62. }
  63. .translatable_labscenter {
  64. display: none;
  65. }
  66. #account_alias {
  67. display: none;
  68. }
  69. .translatable_sketch_name {
  70. width: 100px;
  71. }
  72. #iot_modules {
  73. width: 110px !important;
  74. }
  75. #sketch_name {
  76. margin-left: 0 !important;
  77. width: 100px !important;
  78. }
  79. }
  80. .shadow_container {
  81. position: relative;
  82. top: 6%;
  83. height: -moz-calc(100vh - 145px);
  84. /* Firefox */
  85. height: -webkit-calc(100vh - 145px);
  86. /* WebKit */
  87. height: -o-calc(100vh - 145px);
  88. /* Opera */
  89. height: calc(100vh - 105px);
  90. /* Standard */
  91. }
  92. .shadow_top {
  93. position: relative;
  94. transform: translate(-50%, -50%);
  95. width: 40%;
  96. max-width: 490px;
  97. border: dashed #fff;
  98. top: 50%;
  99. left: 50%;
  100. pointer-events: none;
  101. }
  102. .shadow_top>img {
  103. position: relative;
  104. width: 150px;
  105. transform: translateX(-50%);
  106. left: 50%;
  107. }
  108. .shadow_top>p {
  109. position: relative;
  110. margin: auto;
  111. font-size: 2rem;
  112. text-align: center;
  113. color: ghostwhite;
  114. padding-bottom: 20px;
  115. }
  116. #modal_preload {
  117. position: fixed;
  118. top: 0;
  119. left: 0;
  120. z-index: 1003;
  121. width: 100%;
  122. height: 100%;
  123. background-color: rgba(238, 238, 238, 0.3);
  124. }
  125. .preloader-wrapper {
  126. position: absolute;
  127. /* top: 30%;
  128. left: 45%; */
  129. z-index: 1001;
  130. width: 100px;
  131. height: 100px;
  132. }
  133. .preloader-wrapper.big {
  134. width: 128px;
  135. height: 128px;
  136. }
  137. .circle-clipper .circle {
  138. border-width: 8px;
  139. }
  140. .container {
  141. width: 90%;
  142. max-width: initial !important;
  143. /*padding-left: 1.5rem;
  144. padding-right: 1.5rem;*/
  145. z-index: 997;
  146. }
  147. .navcontainer {
  148. width: 90%;
  149. max-width: initial !important;
  150. padding-left: 1.5rem;
  151. padding-right: 1.5rem;
  152. z-index: 997;
  153. }
  154. .blocklyTreeIcon {
  155. background-image: none
  156. }
  157. .blocklyTreeRoot>div:nth-child(2)>div:nth-child(15) {
  158. margin-top: 10px;
  159. }
  160. .blocklyTreeRoot>div:nth-child(2)>div:nth-child(15)>div:nth-child(1) {
  161. padding-left: 0px;
  162. border-left: 8px solid rgb(91, 95, 166);
  163. color: #FFF;
  164. }
  165. .blocklyTreeRoot>div:nth-child(2)>div:nth-child(16)>div:nth-child(1) {
  166. padding-left: 0px;
  167. border-left: 8px solid rgb(91, 95, 166);
  168. color: #FFF;
  169. }
  170. .blocklyTreeRoot>div:nth-child(2)>div:nth-child(17)>div:nth-child(1) {
  171. padding-left: 0px;
  172. border-left: 8px solid rgb(126, 60, 202);
  173. color: #FFF;
  174. }
  175. .blocklyTreeRow {
  176. padding: 0px 16px 0px 0px !important;
  177. }
  178. /*devices*/
  179. .form-main {
  180. box-sizing: border-box;
  181. }
  182. .form-btn {
  183. /* padding: 24px 0; */
  184. text-align: center;
  185. height: 85px;
  186. line-height: 85px;
  187. box-sizing: border-box;
  188. }
  189. .form_eqmain {
  190. padding: 0 40px;
  191. }
  192. .form_eqtitle {
  193. margin: 15px 0;
  194. padding: 6px 8px;
  195. border-bottom: 1px solid #848484;
  196. }
  197. .form_eqtitle span {
  198. display: inline-block;
  199. font-size: 19px;
  200. }
  201. .form_eqtitle div {
  202. float: right;
  203. cursor: pointer;
  204. }
  205. .form_eqtitle div span:first-child {
  206. background: url('images/add.png') no-repeat;
  207. background-size: 100% 100%;
  208. width: 25px;
  209. height: 25px;
  210. float: left;
  211. }
  212. .form_eqtitle div span:nth-child(2) {
  213. font-size: 14px;
  214. color: #5d5d5d;
  215. }
  216. .form-btn button {
  217. width: 110px;
  218. height: 42px;
  219. margin: 0 55px;
  220. border-radius: 35px;
  221. outline: none;
  222. cursor: pointer;
  223. font-size: 16px;
  224. text-align: center;
  225. }
  226. .form-confirm {
  227. background: #e05e1f;
  228. border: none;
  229. color: #FFF;
  230. }
  231. .form-cencal {
  232. color: #000;
  233. background: #eaeaea;
  234. border: none;
  235. text-align: center;
  236. }
  237. /*表格样式*/
  238. ul, li {
  239. list-style: none;
  240. margin: 0;
  241. padding: 0;
  242. }
  243. .hs_dp_head {
  244. height: 52px;
  245. line-height: 52px;
  246. text-align: center;
  247. /* border-bottom: 2px solid #3b3b3b; */
  248. color: #000;
  249. }
  250. .hs_dp_head li {
  251. width: 100%;
  252. /* min-width: 1100px; */
  253. border-left: 2px solid #3b3b3b00;
  254. border-right: 2px solid #3b3b3b;
  255. }
  256. .hs_dp_head li>div {
  257. float: left;
  258. width: calc(100% - 208px);
  259. border-right: 2px solid #ffffff00;
  260. text-indent: 1em;
  261. text-align: left;
  262. }
  263. .hs_dp_head li>div:last-child {
  264. width: 200px;
  265. text-align: center;
  266. }
  267. .hs_dp_tbody {
  268. height: 300px;
  269. border-radius: 4px;
  270. border-top: 2px solid #dadada;
  271. /* background-color: #F7F7F7; */
  272. /* overflow: auto; */
  273. /* height: auto; */
  274. }
  275. .hs_dp_tbody li {
  276. float: left;
  277. width: calc(100% - 0px);
  278. height: 36px;
  279. line-height: 36px;
  280. border-bottom: 2px solid #dadada;
  281. border-left: 2px solid #dadada;
  282. border-right: 2px solid #dadada;
  283. }
  284. .hs_dp_tbody li {
  285. background: #f3f3f3;
  286. cursor: pointer;
  287. }
  288. .hs_dp_tbody li:hover {
  289. background: #eff2ff;
  290. }
  291. .hs_dp_tbody li>div {
  292. float: left;
  293. width: calc(100% - 204px);
  294. position: relative;
  295. font-size: 18px;
  296. text-overflow: ellipsis;
  297. color: #000000;
  298. white-space: nowrap;
  299. height: 36px;
  300. overflow: hidden;
  301. border-right: 2px solid #dadada00;
  302. text-indent: 1em;
  303. text-align: left;
  304. }
  305. .hs_dp_tbody li>div:last-child {
  306. border-right: none;
  307. width: 200px;
  308. text-align: center;
  309. }
  310. .hs_pub_tb {
  311. width: 100%;
  312. margin: 18px auto 0 auto;
  313. /* border: 2px solid #ebebeb; */
  314. /* border-top: none; */
  315. }
  316. .table {
  317. position: relative;
  318. border-collapse: collapse;
  319. /* border: solid #3b3b3b; */
  320. /* border-bottom: none; */
  321. /* border-width:1px; */
  322. white-space: nowrap;
  323. table-layout: fixed;
  324. display: table;
  325. }
  326. .hs_dp_btnbox span:nth-child(1) {
  327. /* background: url(connect.png) no-repeat; */
  328. background-size: 100% 100%;
  329. width: 25px;
  330. height: 25px;
  331. position: absolute;
  332. display: inline-block;
  333. margin: 5px 0px 0 -12px;
  334. }
  335. .connect, .disconnect {
  336. cursor: pointer;
  337. }
  338. .connect span:nth-child(1) {
  339. background: url(images/connect.png) no-repeat;
  340. }
  341. .connect span:nth-child(2) {
  342. color: #d42929 !important;
  343. }
  344. .disconnect span:nth-child(1) {
  345. background: url(images/disconnect.png) no-repeat;
  346. }
  347. .hs_dp_btnbox span:nth-child(2) {
  348. font-size: 15px;
  349. color: #5d5d5d;
  350. margin-left: 15px;
  351. }
  352. .form_eqcontent {
  353. margin: 50px auto;
  354. width: auto;
  355. }
  356. .form_eqcontent span {}
  357. .form_eqcontent input {
  358. width: 270px;
  359. height: 30px;
  360. padding-left: 8px;
  361. margin-left: 20px;
  362. }
  363. .select-connected {
  364. outline: 0;
  365. position: relative;
  366. color: #6f6f6f;
  367. font-weight: 500;
  368. width: 100%;
  369. height: 30px;
  370. border: none;
  371. border-bottom: 1px solid #6f6f6f;
  372. background: #00000000;
  373. display: block;
  374. }
  375. .select-connected:focus {
  376. outline: 0;
  377. }
  378. .btn-toolbar-title {
  379. height: 40px;
  380. text-align: left;
  381. text-indent: .5em;
  382. border-radius: 5px;
  383. position: relative;
  384. width: 70%;
  385. margin-bottom: 10px;
  386. }
  387. .btn-toolbar-title div {
  388. border: 2px solid #adeaeb;
  389. height: 4px;
  390. border-radius: 5px;
  391. position: absolute;
  392. bottom: 4px;
  393. width: 100%;
  394. }
  395. .btn-toolbar-title2 {
  396. height: 40px;
  397. text-align: left;
  398. text-indent: .5em;
  399. border-radius: 5px;
  400. position: relative;
  401. width: 70%;
  402. margin-bottom: 10px;
  403. }
  404. .btn-toolbar-title2 div {
  405. border: 2px solid #adeaeb;
  406. height: 4px;
  407. border-radius: 5px;
  408. position: absolute;
  409. bottom: 4px;
  410. width: 100%;
  411. }
  412. .btn-toolbar-inputbox {
  413. width: 70%;
  414. height: 55px;
  415. box-sizing: content-box;
  416. }
  417. .btn-toolbar-inputbox input:nth-child(1) {
  418. width: calc(97% - 80px);
  419. height: 35px;
  420. border-bottom: 1px solid #dbdbdb;
  421. text-indent: .5em;
  422. outline: 0;
  423. background: #ffffff00;
  424. font-size: 15px;
  425. color: #000;
  426. /* font-weight: 700; */
  427. float: left;
  428. }
  429. .btn-toolbar-inputbox input:nth-child(2) {
  430. margin-left: 3%;
  431. border: 0;
  432. height: 35px;
  433. line-height: 36px;
  434. outline: 0;
  435. background: #508cf0;
  436. color: #FFF;
  437. padding: 0 10px;
  438. cursor: pointer;
  439. font-size: 15px;
  440. font-weight: 500;
  441. box-sizing: border-box;
  442. float: left;
  443. min-width: 50px;
  444. border-radius: 3px;
  445. box-shadow: 1px 1px 4px #b7b7b7;
  446. }
  447. .btn-toolbar-inputbox2 {
  448. width: 70%;
  449. height: 55px;
  450. box-sizing: content-box;
  451. }
  452. .btn-toolbar-inputbox2 select:nth-child(1) {
  453. outline: 0;
  454. color: #000;
  455. width: calc(100% - 245px);
  456. border: none;
  457. border-bottom: 1px solid #dbdbdb;
  458. background: #00000000;
  459. display: block;
  460. height: 35px;
  461. float: left;
  462. }
  463. .btn-toolbar-inputbox2 button:nth-child(2) {
  464. border: 0;
  465. height: 35px;
  466. line-height: 35px;
  467. outline: 0;
  468. background: #508cf0;
  469. color: #FFF;
  470. cursor: pointer;
  471. font-size: 15px;
  472. font-weight: 500;
  473. padding: 0 15px;
  474. float: left;
  475. margin: 0px 10px 0px 20px;
  476. border-radius: 2px;
  477. box-shadow: 1px 1px 4px #b7b7b7;
  478. }
  479. .btn-toolbar-inputbox2 button:nth-child(3) {
  480. border: 0;
  481. height: 35px;
  482. line-height: 35px;
  483. outline: 0;
  484. background: #e05e1f;
  485. color: #FFF;
  486. cursor: pointer;
  487. font-size: 15px;
  488. /* border-radius: 35px; */
  489. font-weight: 500;
  490. padding: 0 15px;
  491. float: left;
  492. border-radius: 3px;
  493. box-shadow: 1px 1px 4px #b7b7b7;
  494. }
  495. .btn-toolbar-btnbox {
  496. width: 96%;
  497. height: 55px;
  498. box-sizing: content-box;
  499. position: relative;
  500. padding: 0px 0 0 0;
  501. }
  502. .btn-toolbar-btnbox button:nth-child(1) {
  503. border: 0;
  504. height: 35px;
  505. line-height: 35px;
  506. outline: 0;
  507. background: #508cf0;
  508. color: #FFF;
  509. cursor: pointer;
  510. font-size: 15px;
  511. /* border-radius: 35px; */
  512. font-weight: 500;
  513. padding: 0 15px;
  514. /* left: 0; */
  515. float: left;
  516. margin-right: 15px;
  517. /* position: absolute;*/
  518. border-radius: 3px;
  519. box-shadow: 1px 1px 4px #b7b7b7;
  520. }
  521. .btn-toolbar-btnbox button:nth-child(2) {
  522. border: 0;
  523. height: 35px;
  524. line-height: 35px;
  525. outline: 0;
  526. background: #e05e1f;
  527. color: #FFF;
  528. cursor: pointer;
  529. font-size: 15px;
  530. /* border-radius: 35px; */
  531. font-weight: 500;
  532. padding: 0 15px;
  533. float: left;
  534. border-radius: 3px;
  535. box-shadow: 1px 1px 4px #b7b7b7;
  536. }
  537. .select-wrapper span.caret {
  538. color: initial;
  539. position: absolute;
  540. right: 0;
  541. top: 0;
  542. bottom: 0;
  543. height: 10px;
  544. margin: auto 0;
  545. font-size: 10px;
  546. line-height: 10px;
  547. }
  548. .injectionDiv:nth-child(2) {
  549. display: none;
  550. }
  551. .injectionDiv:nth-child(3) {
  552. display: none;
  553. }
  554. .selectMode_input {
  555. outline: 0;
  556. position: relative;
  557. color: #fff;
  558. font-weight: 500;
  559. width: 175px;
  560. height: 35px;
  561. border-radius: 30px;
  562. background: #fff0;
  563. border: 2px solid #fff;
  564. margin: 15px 0px 0px 0px;
  565. display: block;
  566. cursor: pointer;
  567. text-indent: 1rem;
  568. }
  569. .down {
  570. width: 0;
  571. height: 0 !important;
  572. overflow: hidden;
  573. font-size: 0;
  574. /*是因为, 虽然宽高度为0, 但在IE6下会具有默认的 */
  575. line-height: 0;
  576. /* 字体大小和行高, 导致盒子呈现被撑开的长矩形 */
  577. border-width: 5px;
  578. border-style: solid;
  579. /*ie6下会出现不透明的兼容问题*/
  580. border-color: #fff transparent transparent transparent;
  581. position: absolute;
  582. top: 15px;
  583. right: 10px;
  584. cursor: pointer;
  585. }
  586. .downboxdown {
  587. width: 0;
  588. height: 0 !important;
  589. overflow: hidden;
  590. font-size: 0;
  591. /*是因为, 虽然宽高度为0, 但在IE6下会具有默认的 */
  592. line-height: 0;
  593. /* 字体大小和行高, 导致盒子呈现被撑开的长矩形 */
  594. border-width: 5px;
  595. border-style: solid;
  596. /*ie6下会出现不透明的兼容问题*/
  597. border-color: transparent transparent transparent #a2a2a2;
  598. position: absolute;
  599. top: 15px;
  600. right: 0px;
  601. cursor: pointer;
  602. }
  603. .downbox {
  604. position: absolute;
  605. top: 64px;
  606. width: 177px;
  607. z-index: 1000;
  608. background: #fff;
  609. border-radius: 4px;
  610. border: 1px solid #e6e6e6;
  611. box-shadow: 1px 1px 4px #cccccc;
  612. display: none;
  613. }
  614. .downbox div:first-child {
  615. border: none;
  616. position: relative;
  617. }
  618. .downbox div:first-child:hover .Hardware2 {
  619. display: block;
  620. }
  621. .downbox div:first-child:hover .Hardware3 {
  622. display: block;
  623. }
  624. .downbox div:first-child:hover {
  625. background: #d6dfff;
  626. }
  627. .downbox div {
  628. /* background: #ffffff; */
  629. width: 100%;
  630. border-top: 1px solid #e6e6e6;
  631. height: 40px;
  632. line-height: 40px;
  633. color: #424242;
  634. cursor: pointer;
  635. font-size: 15px;
  636. text-align: center;
  637. }
  638. .ModeSelectBox .ModeSelect .downbox-style {
  639. position: absolute;
  640. top: 63px;
  641. width: 200px;
  642. margin-left: -88px;
  643. }
  644. /* .downbox div:hover {
  645. background: #d6dfff;
  646. } */
  647. .Hardware2, .Hardware3,.Hardware4 {
  648. position: absolute;
  649. width: 100%;
  650. z-index: 9999;
  651. background: #fff;
  652. border-radius: 4px;
  653. border: 1px solid #e6e6e6;
  654. left: calc(100% + 1px);
  655. top: 3px;
  656. box-shadow: 1px 1px 4px #b7b7b7;
  657. display: none;
  658. }
  659. .Hardware2 li,.Hardware3 li,.Hardware4 li {
  660. width: 100%;
  661. border-top: 1px solid #e6e6e6;
  662. height: 40px;
  663. line-height: 40px;
  664. /* text-indent: 1em; */
  665. color: #424242;
  666. cursor: pointer;
  667. overflow: hidden;
  668. text-overflow: ellipsis;
  669. white-space: nowrap;
  670. }
  671. .Hardware2 li:hover,.Hardware4 li:hover {
  672. background: #d6dfff;
  673. }
  674. .ModeSelect {
  675. outline: 0;
  676. color: #fff;
  677. font-weight: 500;
  678. width: auto;
  679. height: 100%;
  680. padding: 0 25px;
  681. background: #fff0;
  682. margin: 0px 25px 0px 0px;
  683. display: block;
  684. cursor: pointer;
  685. text-align: center;
  686. }
  687. .ModeSelectBox .active {
  688. background-color: #2847b8;
  689. }
  690. .ModeSelectBox .active .downbox {
  691. display: block !important;
  692. }
  693. .ModeSelectBox .ModeBox {
  694. width: 190%;
  695. top: 63px;
  696. }
  697. .ModeSelectBox .downbox div {
  698. position: relative;
  699. }
  700. .ModeSelectBox .downbox div:hover .Hardware2 {
  701. width: 120%;
  702. display: block;
  703. }
  704. .Hardware5:hover .Hardware4,.Hardware6:hover .Hardware4,.Hardware7:hover .Hardware4,.Hardware8:hover .Hardware4,.Hardware9:hover .Hardware4{
  705. display: block;
  706. }
  707. .qiehuan {
  708. width: 225px;
  709. position: absolute;
  710. top: -60px;
  711. left: 230px;
  712. display: block;
  713. opacity: 1;
  714. }
  715. .qiehuanposi {
  716. top: -108px;
  717. left: 167px;
  718. }
  719. .switch_box {
  720. cursor: pointer;
  721. display: inline-block;
  722. bottom: 0;
  723. position: absolute;
  724. padding: 0px 10px;
  725. color: #2D2F33;
  726. }
  727. .switch_box1 {
  728. cursor: pointer;
  729. display: inline-block;
  730. bottom: 0;
  731. position: absolute;
  732. left: 170px;
  733. padding: 0px 10px;
  734. color: #2D2F33;
  735. }
  736. .switch_box2 {
  737. cursor: pointer;
  738. display: inline-block;
  739. bottom: 0;
  740. position: absolute;
  741. left: 300px;
  742. padding: 0px 10px;
  743. color: #2D2F33;
  744. }
  745. .switch_select {
  746. background: #fff;
  747. /* border-radius: 13px 15px 0px 0px; */
  748. color: #4A6AFF;
  749. font-weight: 700;
  750. }
  751. #repl_box_content div {
  752. word-wrap: break-word;
  753. word-break: normal;
  754. }
  755. @media screen and (max-height: 570px) {
  756. .ModeSelectBox .downbox div:hover .Hardware2 {
  757. width: 170%;
  758. max-height: 155px;
  759. overflow: auto;
  760. display: block;
  761. }
  762. .Hardware5:hover .Hardware4,.Hardware6:hover .Hardware4,.Hardware7:hover .Hardware4,.Hardware8:hover .Hardware4,.Hardware9:hover .Hardware4{
  763. display: block;
  764. }
  765. }
  766. @media screen and (max-width: 1450px) {
  767. .max {
  768. width: 106% !important;
  769. }
  770. }
  771. /* 旋转 */
  772. .svgImg {
  773. position: absolute !important;
  774. width: 24px;
  775. top: calc(50% - 12px);
  776. left: calc(50% - 12px);
  777. display: none;
  778. }
  779. .xuanhuan {
  780. -webkit-transition-property: -webkit-transform;
  781. -webkit-transition-duration: 1s;
  782. -moz-transition-property: -moz-transform;
  783. -moz-transition-duration: 1s;
  784. -webkit-animation: rotate 1.4s linear infinite;
  785. -moz-animation: rotate 1.4s linear infinite;
  786. -o-animation: rotate 1.4s linear infinite;
  787. animation: rotate 1.4s linear infinite;
  788. }
  789. @-webkit-keyframes rotate {
  790. from {
  791. -webkit-transform: rotate(0deg)
  792. }
  793. to {
  794. -webkit-transform: rotate(360deg)
  795. }
  796. }
  797. @-moz-keyframes rotate {
  798. from {
  799. -moz-transform: rotate(0deg)
  800. }
  801. to {
  802. -moz-transform: rotate(359deg)
  803. }
  804. }
  805. @-o-keyframes rotate {
  806. from {
  807. -o-transform: rotate(0deg)
  808. }
  809. to {
  810. -o-transform: rotate(359deg)
  811. }
  812. }
  813. @keyframes rotate {
  814. from {
  815. transform: rotate(0deg)
  816. }
  817. to {
  818. transform: rotate(359deg)
  819. }
  820. }
  821. /* 切换编辑按钮 */
  822. #toggle-button {
  823. display: none;
  824. }
  825. .button-label {
  826. position: relative;
  827. display: inline-block;
  828. width: 40px;
  829. line-height: 18px;
  830. background-color: #ccc;
  831. border: 1px solid #ccc;
  832. border-radius: 30px;
  833. cursor: pointer;
  834. }
  835. .circle {
  836. position: absolute;
  837. top: 0;
  838. left: 0;
  839. width: 18px;
  840. height: 18px;
  841. border-radius: 50%;
  842. background-color: #fff;
  843. }
  844. .button-label .text {
  845. line-height: 20px;
  846. font-size: 12px;
  847. /*
  848. 用来阻止页面文字被选中,出现蓝色
  849. 可以将下面两行代码注释掉来查看区别
  850. */
  851. -webkit-user-select: none;
  852. user-select: none;
  853. }
  854. .on {
  855. color: #fff;
  856. display: none;
  857. text-indent: 5px;
  858. }
  859. .off {
  860. color: #fff;
  861. display: inline-block;
  862. text-indent: 23px;
  863. }
  864. .button-label .circle {
  865. left: 0;
  866. transition: all 0.3s;
  867. /*transition过度,时间为0.3秒*/
  868. }
  869. /*
  870. 以下是checked被选中后,紧跟checked标签后面label的样式。
  871. 例如:div+p 选择所有紧接着<div>元素之后的<p>元素
  872. */
  873. #toggle-button:checked+label.button-label .circle {
  874. left: 19px;
  875. }
  876. #toggle-button:checked+label.button-label .on {
  877. display: inline-block;
  878. }
  879. #toggle-button:checked+label.button-label .off {
  880. display: none;
  881. }
  882. #toggle-button:checked+label.button-label {
  883. background-color: #2c4fcd;
  884. }
  885. .edit {
  886. position: absolute;
  887. width: 100%;
  888. height: 99%;
  889. background-color: rgba(0, 0, 0, 0);
  890. top: 1px;
  891. z-index: 980;
  892. }
  893. .editDiv {
  894. position: absolute;
  895. /* top: 135px; */
  896. right: 113px;
  897. z-index: 990;
  898. }
  899. /*
  900. .editDiv label {
  901. line-height: 20px;
  902. } */
  903. /* @media only screen and (max-width: 600px) and (min-width: 0px) {
  904. .editDiv {
  905. position: absolute;
  906. top: 10px;
  907. right: 30px;
  908. z-index: 990;
  909. }
  910. } */
  911. /* 当浏览器页面小于1265px 时 */
  912. @media only screen and (max-width: 1265px) {
  913. .modals {
  914. position: fixed;
  915. top: 0;
  916. left: 0;
  917. width: 100vw;
  918. height: 100vh;
  919. background-color: rgba(0, 0, 0, 0.5);
  920. z-index: 1000;
  921. }
  922. }
  923. table td, th {
  924. text-align: center;
  925. /*padding: 10px 0;*/
  926. }
  927. /* 二维码分享 */
  928. .qrImgUrl {
  929. text-align: center;
  930. }
  931. .shareUrl {
  932. position: fixed;
  933. left: calc(50% - 50px)
  934. }
  935. /* 更新文件 */
  936. .select_folder{
  937. padding: 10px;
  938. border: 2px solid #eaeaea;
  939. border-radius: 5px;
  940. }
  941. #updatePy .folder_name{
  942. margin-top: 10px;
  943. }
  944. #updatePy .folder_name .folder_name_inpit{
  945. width: calc(100% - 100px);
  946. height: 30px;
  947. border: 1px solid #ccc;
  948. outline: none;
  949. box-shadow: none;
  950. padding: 0 15px;
  951. margin: 0;
  952. border-radius: 5px;
  953. }
  954. .update_bottom {
  955. text-align: right;
  956. margin-top: 10px;
  957. }
  958. .update_bottom button {
  959. background-color: #2c4fcd;
  960. color: #fff;
  961. padding: 8px 15px;
  962. border: none;
  963. outline: none;
  964. border-radius: 8px;
  965. }
  966. .echart-text {
  967. position: absolute;
  968. left: 20%;
  969. right: 20%;
  970. top: 50%;
  971. width: 60%;
  972. text-align: center;
  973. font-weight: bold;
  974. }
  975. .mm {
  976. width: 730px;
  977. }
  978. .english {
  979. width: 185px;
  980. }
  981. .fileEnglish {
  982. width: 185px !important
  983. }
  984. .helpEnglish {
  985. width: 240px !important
  986. }
  987. .blue{
  988. background-color: #4A6AFF !important;
  989. }
  990. .green {
  991. background-color: #24AF00 !important;
  992. }
  993. #plugin_mac_or_windows,#connect_method,#local_help_ai_kit, #help_extends{
  994. background-color: #fff;
  995. margin: 0;
  996. min-width: 137px;
  997. max-height: 650px;
  998. overflow-y: auto;
  999. opacity: 0;
  1000. z-index: 999;
  1001. }
  1002. #plugin_mac_or_windows li,#connect_method li,#local_help_ai_kit li, #help_extends li{
  1003. clear: both;
  1004. color: rgba(0,0,0,0.87);
  1005. cursor: pointer;
  1006. min-height: 50px;
  1007. line-height: 1.5rem;
  1008. width: 100%;
  1009. text-align: left;
  1010. }
  1011. #plugin_mac_or_windows #Mac span, #plugin_mac_or_windows #Windows span, #connect_method #select_connecteds span, #connect_method #no_select_connecteds span{
  1012. color: #222222;
  1013. font-family: "微软雅黑";
  1014. }
  1015. #local_help_ai_kit #ai_kit_0 span, #local_help_ai_kit #ai_kit_1 span, #local_help_ai_kit #ai_kit_2 span, #local_help_ai_kit #ai_kit_3 span{
  1016. color: #222222;
  1017. font-family: "微软雅黑";
  1018. }
  1019. #help_extends #extends_0 span,#help_extends #extends_1 span,#help_extends #extends_2 span {
  1020. color: #222222;
  1021. font-family: "微软雅黑";
  1022. }
  1023. #plugin_mac_or_windows #Mac:hover span, #plugin_mac_or_windows #Windows:hover span,
  1024. #connect_method #select_connecteds:hover span, #connect_method #no_select_connecteds:hover span {
  1025. background: #fff;
  1026. color: #4A6AFF;
  1027. font-family: "微软雅黑";
  1028. }
  1029. #local_help_ai_kit #ai_kit_0:hover span, #local_help_ai_kit #ai_kit_1:hover span, #local_help_ai_kit #ai_kit_2:hover span, #local_help_ai_kit #ai_kit_3:hover span{
  1030. background: #fff;
  1031. color: #4A6AFF;
  1032. font-family: "微软雅黑";
  1033. }
  1034. #help_extends #extends_0:hover span,#help_extends #extends_1:hover span,#help_extends #extends_2:hover span {
  1035. background: #fff;
  1036. color: #4A6AFF;
  1037. font-family: "微软雅黑";
  1038. }
  1039. #Mac img, #Windows img{
  1040. width: 25px;
  1041. height: 25px;
  1042. margin-right: 5px;
  1043. transform: translateY(5px);
  1044. }