xpath.css 9.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416
  1. .pop{width:100%;height:100%;position:fixed;left:0;top:0;z-index:100000;background:#fff;}
  2. .pop iframe{width:100%;height:100%;}
  3. .pop .close{width:25px;height:25px;position:absolute;right:20px;top:20px;background:url(timg.jpg) no-repeat center;background-size:contain;}
  4. /* iframe上方div样式 */
  5. .pop .iframe-top {
  6. position: fixed;
  7. z-index: 9999;
  8. width: 100%;
  9. background: #162F42;
  10. color: #f7f7f7;
  11. text-align: center;
  12. height: 80px;
  13. overflow: hidden;
  14. }
  15. .pop .iframe-top .back {
  16. float: left;
  17. width: 120px;
  18. border: 1px solid;
  19. border-radius: 50px;
  20. margin: 20px;
  21. position: fixed;
  22. z-index: 100;
  23. }
  24. .pop .iframe-top .next {
  25. position: fixed;
  26. right: 0px;
  27. width: 120px;
  28. border: 1px solid;
  29. border-radius: 50px;
  30. margin: 20px;
  31. z-index: 100;
  32. }
  33. .pop .iframe-top .back,.pop .iframe-top .next {
  34. font-size: 18px;
  35. padding: 10px 0;
  36. height: 40px;
  37. line-height: 20px;
  38. cursor: pointer;
  39. }
  40. .pop .iframe-top .back:hover,.pop .iframe-top .next {
  41. background: #f7f7f7;
  42. color: #1D2E3B;
  43. }
  44. .pop .iframe-top .next:hover{
  45. background: #DFE1E3;
  46. color: #1D2E3B;
  47. }
  48. .pop .iframe-top .iframe-title {
  49. position: absolute;
  50. font-size: 18px;
  51. top: 15px;
  52. left: 0;
  53. width: 100%;
  54. display: inline-block;
  55. }
  56. .pop .iframe-top .iframe-title .tip {
  57. cursor: pointer;
  58. width: 50%;
  59. display: inline-block;
  60. }
  61. .pop .iframe-top .tip {
  62. margin: 5px;
  63. color: rgba(255,255,255,.8);
  64. font-size: 14px;
  65. }
  66. .iframe-top .iframe-title .ruleEditTitle {
  67. width: 60%;
  68. margin: 13px auto;
  69. overflow: hidden;
  70. white-space: nowrap;
  71. text-overflow: ellipsis;
  72. }
  73. .pop .iframe-top .tableEditNext img {
  74. display: none;
  75. width: 26px;
  76. height: 26px;
  77. position: relative;
  78. top: -2px;
  79. }
  80. .pop .iframe-top .tableEditNext span {
  81. font-size: 18px;
  82. position: relative;
  83. top: 1px;
  84. }
  85. /* iframe下方div样式 */
  86. .pop .bottom.show {
  87. overflow-y:hidden;
  88. height: 223px;
  89. }
  90. .pop .bottom {
  91. position: fixed;
  92. z-index: 9999;
  93. width: 100%;
  94. -webkit-transition: height .3s linear;
  95. -moz-transition: height .3s linear;
  96. -ms-transition: height .3s linear;
  97. -o-transition: height .3s linear;
  98. transition: height .3s linear;
  99. color: #f7f7f7;
  100. text-align: left;
  101. height: 0;
  102. overflow-y: scroll;
  103. bottom: 0;
  104. background: #162F42;
  105. }
  106. .pop .bottom.show .headLine {
  107. bottom: 163px;
  108. z-index: 10;
  109. }
  110. .pop .bottom .headLine {
  111. position: fixed;
  112. transition: bottom .3s linear;
  113. height: 20px;
  114. padding: 20px;
  115. background: #162F42;
  116. right: 0;
  117. left: 0;
  118. cursor: pointer;
  119. border-bottom: solid 1px #858f94;
  120. }
  121. .pop .bottom .headLine .headLineTip.show {
  122. opacity: 1;
  123. cursor: pointer;
  124. }
  125. .pop .bottom .headLine .headLineTip {
  126. float: right;
  127. position: relative;
  128. font-size: 14px;
  129. /* right: -25px; */
  130. opacity: 0;
  131. -webkit-transition: opacity .3s linear;
  132. -moz-transition: opacity .3s linear;
  133. -ms-transition: opacity .3s linear;
  134. -o-transition: opacity .3s linear;
  135. transition: opacity .3s linear;
  136. }
  137. .pop .bottom.show .tableEditThead {
  138. bottom: 122px;
  139. }
  140. .pop .bottom .tableEditThead {
  141. height: 41px;
  142. overflow: hidden;
  143. position: fixed;
  144. left: 0;
  145. transition: bottom .3s linear;
  146. background: #162F42;
  147. white-space: nowrap;
  148. }
  149. .pop .tableEditThead {
  150. bottom: -60px;
  151. -webkit-transition: bottom .3s linear;
  152. -moz-transition: bottom .3s linear;
  153. -ms-transition: bottom .3s linear;
  154. -o-transition: bottom .3s linear;
  155. z-index: 10;
  156. }
  157. .pop .bottom .table {
  158. min-width: 100%;
  159. border-spacing: 0;
  160. font-size: 0;
  161. position: relative;
  162. }
  163. .bottom .table .thead {
  164. background: #162F42;
  165. color: #fff;
  166. }
  167. .bottom .table .thead .tr {
  168. white-space: nowrap;
  169. }
  170. .bottom .table .thead .th {
  171. padding: 10px 20px;
  172. text-align: left;
  173. height: 40px;
  174. cursor: pointer;
  175. border-right: solid 1px #4d5a60;
  176. display: inline-block;
  177. width: 280px;
  178. }
  179. .bottom .table .thead .th {
  180. width: 300px;
  181. font-size: 16px;
  182. border-bottom: solid 1px #4d5a60;
  183. white-space: nowrap;
  184. line-height: 20px;
  185. }
  186. .pop .bottom .table .thead .th span {
  187. width: 230px;
  188. overflow: hidden;
  189. white-space: nowrap;
  190. text-overflow: ellipsis;
  191. display: inline-block;
  192. vertical-align: middle;
  193. }
  194. .pop .bottom .table .thead .th img, .main .step.urlInput {
  195. vertical-align: middle;
  196. }
  197. .pop .bottom ._dw_editThead {
  198. opacity: .5;
  199. }
  200. .pop .bottom ._dw_editThead:hover,.pop .bottom ._dw_delThead:hover {
  201. opacity: 1;
  202. }
  203. .pop .bottom ._dw_editThead,.pop .bottom ._dw_delThead {
  204. width: 14px;
  205. top: -1px;
  206. right: -5px;
  207. display: inline-block;
  208. position: relative;
  209. cursor: pointer;
  210. }
  211. .pop .bottom ._dw_delThead {
  212. margin-left: 10px;
  213. opacity: .5;
  214. }
  215. .pop .bottom .table .tbody .tr {
  216. height: 123px;
  217. width: 300px;
  218. display: inline-block;
  219. vertical-align: top;
  220. border-right: solid 1px #4d5a60;
  221. }
  222. .pop .bottom .table .tbody .tr .td:hover{
  223. background: #0066a2;
  224. }
  225. .pop .bottom .table .tbody .tr .td {
  226. padding: 10px 20px;
  227. color: #fff;
  228. width: 280px;
  229. overflow: hidden;
  230. text-overflow: ellipsis;
  231. cursor: default;
  232. }
  233. .pop .bottom .table .tbody .tr .td, .main .step .bottom .table .thead .th {
  234. width: 100%;
  235. font-size: 16px;
  236. border-bottom: solid 1px #4d5a60;
  237. white-space: nowrap;
  238. line-height: 20px;
  239. }
  240. .pop .bottom .tableEditBodyBox {
  241. /* overflow-y:hidden; */
  242. position: fixed;
  243. right: 0;
  244. left: 0;
  245. z-index: 5;
  246. height: 164px;
  247. bottom: -162px;
  248. overflow: hidden;
  249. overflow-y: scroll;
  250. transition: bottom .3s linear;
  251. }
  252. .pop .bottom .tableSliderLeft {
  253. -webkit-transition: bottom .3s linear;
  254. -moz-transition: bottom .3s linear;
  255. -ms-transition: bottom .3s linear;
  256. -o-transition: bottom .3s linear;
  257. }
  258. .pop .bottom .tableEditBody {
  259. white-space: nowrap;
  260. }
  261. .pop .bottom.show .tableEditBodyBox, .pop .bottom.show .tableSliderLeft, .pop .bottom.show .tableSliderRight, .popUp {
  262. bottom: 0;
  263. }
  264. .pop .bottom .tableSliderLeft {
  265. height: 19px;
  266. border-right: solid 1px #858f94;
  267. background: #162f42;
  268. transition: bottom .3s linear;
  269. }
  270. .pop .bottom .tableSliderLeft, .pop .bottom .tableSliderRight {
  271. position: fixed;
  272. bottom: -162px;
  273. padding: 72px 11px;
  274. font-size: 18px;
  275. display: none;
  276. z-index: 10;
  277. cursor: pointer;
  278. width: 8px;
  279. }
  280. .bottom .tableSliderRight {
  281. right: 0;
  282. height: 19px;
  283. border-left: solid 1px #858f94;
  284. background: #162f42;
  285. -webkit-transition: bottom .3s linear;
  286. -moz-transition: bottom .3s linear;
  287. -ms-transition: bottom .3s linear;
  288. -o-transition: bottom .3s linear;
  289. transition: bottom .3s linear;
  290. }
  291. .tableSliderRight {
  292. position: fixed;
  293. bottom: -162px;
  294. padding: 72px 11px;
  295. font-size: 18px;
  296. display: none;
  297. z-index: 10;
  298. cursor: pointer;
  299. width: 8px;
  300. }
  301. /************** 弹窗 修改列名 ********************/
  302. .popUp {
  303. position: fixed;
  304. /*text-align: center;*/
  305. }
  306. .popUp.SHOW {
  307. opacity: 1;
  308. -webkit-transform: scale(1);
  309. -moz-transform: scale(1);
  310. -ms-transform: scale(1);
  311. -o-transform: scale(1);
  312. transform: scale(1);
  313. }
  314. .popUp.showPrompt {
  315. overflow-y: auto;/* 滚动条 */
  316. /*overflow-x:scroll;*/
  317. display: block;
  318. }
  319. .popUp {
  320. top: 0;
  321. left: 0;
  322. right: 0;
  323. width: 100%;
  324. height: 100%;
  325. background: #000;
  326. background: rgba(0,0,0,.45);
  327. display: none;
  328. z-index: 999999;
  329. -webkit-transition: all .1s linear;
  330. -moz-transition: all .1s linear;
  331. -ms-transition: all .1s linear;
  332. -o-transition: all .1s linear;
  333. transition: all .1s linear;
  334. opacity: 0;
  335. -webkit-transform: scale(1.1);
  336. -moz-transform: scale(1.1);
  337. -ms-transform: scale(1.1);
  338. -o-transform: scale(1.1);
  339. transform: scale(1.1);
  340. }
  341. .popUp.showPrompt .prompt {
  342. display: table-cell;
  343. }
  344. .popUp .prompt {
  345. display: none;
  346. vertical-align: middle;
  347. font-size: 0;
  348. }
  349. .popUp .prompt .inner {
  350. background: #fff;
  351. border-radius: 14px;
  352. overflow: hidden;
  353. display: inline-block;
  354. width: 700px;
  355. }
  356. .popUp .prompt .promptTitle {
  357. font-size: 20px;
  358. color: #333;
  359. padding: 40px 50px 30px;
  360. }
  361. .popUp .prompt .text {
  362. font-size: 14px;
  363. color: #666;
  364. padding: 0 50px;
  365. }
  366. .popUp .prompt input {
  367. width: 360px;
  368. color: #333;
  369. font-size: 16px;
  370. outline: 0;
  371. vertical-align: top;
  372. padding: 16px 5px;
  373. height: 18px;
  374. border: 1px solid #bbb;
  375. border-radius: 5px;
  376. margin-top: 30px;
  377. font-family: -apple-system,'SFNS Display',' Helvetica Neue',Helvetica,Arial,'PingFang SC','Noto Sans CJK SC','Source Han Sans CN','Hiragino Sans GB','Lantinghei SC','Heiti SC','Microsoft YaHei',sans-serif;
  378. font-weight: 300;
  379. }
  380. .popUp .prompt .promptBtn>div:hover {
  381. opacity: .9;
  382. }
  383. .popUp .prompt .promptBtn>div {
  384. display: inline-block;
  385. width: 160px;
  386. height: 38px;
  387. border-radius: 100px;
  388. padding: 16px 0;
  389. position: relative;
  390. line-height: 10px;
  391. font-size: 18px;
  392. margin: 40px 10px;
  393. }
  394. .popUp .prompt .promptBtn>div {
  395. cursor: pointer;
  396. box-shadow: 0 2px 7px 0 rgba(0,0,0,.09);
  397. font-weight: 400;
  398. }
  399. .popUp .prompt .promptBtnCancel {
  400. background: #fff;
  401. color: #666;
  402. }
  403. .popUp .prompt .promptBtnConfirm {
  404. background: #28c5fc;
  405. background-image: linear-gradient(-180deg,#17C5FF 14%,#11C0FA 100%);
  406. color: #fff;
  407. }