index.css 24 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206
  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. .english {
  976. width: 185px;
  977. }
  978. .fileEnglish {
  979. width: 185px !important
  980. }
  981. .helpEnglish {
  982. width: 240px !important
  983. }
  984. .blue{
  985. background-color: #4A6AFF !important;
  986. }
  987. .green {
  988. background-color: #24AF00 !important;
  989. }
  990. #plugin_mac_or_windows,#connect_method,#local_help_ai_kit, #help_extends{
  991. background-color: #fff;
  992. margin: 0;
  993. min-width: 137px;
  994. max-height: 650px;
  995. overflow-y: auto;
  996. opacity: 0;
  997. z-index: 999;
  998. }
  999. #plugin_mac_or_windows li,#connect_method li,#local_help_ai_kit li, #help_extends li{
  1000. clear: both;
  1001. color: rgba(0,0,0,0.87);
  1002. cursor: pointer;
  1003. min-height: 50px;
  1004. line-height: 1.5rem;
  1005. width: 100%;
  1006. text-align: left;
  1007. }
  1008. #plugin_mac_or_windows #Mac span, #plugin_mac_or_windows #Windows span, #connect_method #select_connecteds span, #connect_method #no_select_connecteds span{
  1009. color: #222222;
  1010. font-family: "微软雅黑";
  1011. }
  1012. #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{
  1013. color: #222222;
  1014. font-family: "微软雅黑";
  1015. }
  1016. #help_extends #extends_0 span,#help_extends #extends_1 span,#help_extends #extends_2 span {
  1017. color: #222222;
  1018. font-family: "微软雅黑";
  1019. }
  1020. #plugin_mac_or_windows #Mac:hover span, #plugin_mac_or_windows #Windows:hover span,
  1021. #connect_method #select_connecteds:hover span, #connect_method #no_select_connecteds:hover span {
  1022. background: #fff;
  1023. color: #4A6AFF;
  1024. font-family: "微软雅黑";
  1025. }
  1026. #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{
  1027. background: #fff;
  1028. color: #4A6AFF;
  1029. font-family: "微软雅黑";
  1030. }
  1031. #help_extends #extends_0:hover span,#help_extends #extends_1:hover span,#help_extends #extends_2:hover span {
  1032. background: #fff;
  1033. color: #4A6AFF;
  1034. font-family: "微软雅黑";
  1035. }
  1036. #Mac img, #Windows img{
  1037. width: 25px;
  1038. height: 25px;
  1039. margin-right: 5px;
  1040. transform: translateY(5px);
  1041. }