index.css 27 KB

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