iframe.css 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674
  1. /*可以在这里添加你自己的css */
  2. @import url("../../css/fonts/iconfont.css" );
  3. .table-form{
  4. table-layout: fixed;
  5. }
  6. /*无边框样式*/
  7. .table-form>caption{
  8. /* height: 40px;*/
  9. line-height: 40px;
  10. font-weight: bold;
  11. font-size: 20px;
  12. border: 1px dashed #d9d9d9 !important;
  13. border-bottom: 0 !important;
  14. color: #555;
  15. }
  16. /*子表*/
  17. .table-form>tbody>tr>td
  18. {
  19. min-height: 30px;
  20. line-height: 30px;
  21. border: 1px dashed #d9d9d9 !important;
  22. }
  23. .table-form[borders="yesborder"]>tbody>tr>td,
  24. .table-form[borders="yesborder"]>caption{
  25. border-style: solid !important;
  26. }
  27. .table-form.two-column > tbody > tr > td:nth-child(odd){
  28. width:20%;
  29. text-align: right;
  30. }
  31. .table-form.two-column > tbody> tr > td:nth-child(even) {
  32. width:80%;
  33. text-align: left;
  34. }
  35. .table-form[column='two']>tbody > tr > td:first-child{
  36. width:20%!important;
  37. }
  38. .table-form[column='two']>tbody > tr > td:last-child{
  39. width:80%!important;
  40. }
  41. .table-form.four-column > tbody> tr > td:nth-child(odd){
  42. width:15%;
  43. text-align: center;
  44. text-align: right;
  45. }
  46. .table-form.four-column > tbody> tr > td:nth-child(even) {
  47. width:35%;
  48. text-align: left;
  49. padding: 10px;
  50. }
  51. .table-form[column='four'] > tbody> tr > td:nth-child(odd){
  52. width:15%;
  53. text-align: center;
  54. text-align: right;
  55. }
  56. .table-form[column='four'] > tbody> tr > td:nth-child(even) {
  57. width:35%;
  58. text-align: left;
  59. padding: 10px;
  60. }
  61. .table-form>tbody>tr>td:last-child:first-child{
  62. text-align: left;
  63. width: 100%!important;
  64. }
  65. table.rx-table {
  66. border: 1px solid #F0F0F0;
  67. width: 100% !important;
  68. }
  69. .active{
  70. outline: none;
  71. border:1px dashed #409EFF!important;
  72. }
  73. .active>caption,
  74. .active > tbody> tr > td{
  75. border-color: #409EFF!important;
  76. }
  77. /*form颜色-双列*/
  78. /*白色*/
  79. .table-form.white > tbody> tr > td:nth-last-child(2):first-child,
  80. .table-form.white > tbody> tr > td:nth-last-child(4):first-child,
  81. .table-form.white > tbody> tr > td:nth-last-child(2):nth-child(3),
  82. .table-form.white caption{
  83. background: transparent;
  84. }
  85. /*蓝色*/
  86. .table-form.blue > tbody> tr > td:nth-last-child(2):first-child,
  87. .table-form.blue > tbody> tr > td:nth-last-child(4):first-child,
  88. .table-form.blue > tbody> tr > td:nth-last-child(2):nth-child(3),
  89. .table-form.blue caption{
  90. background: #e3f1ff;
  91. }
  92. /*绿色*/
  93. .table-form.green > tbody> tr > td:nth-last-child(2):first-child,
  94. .table-form.green > tbody> tr > td:nth-last-child(4):first-child,
  95. .table-form.green > tbody> tr > td:nth-last-child(2):nth-child(3),
  96. .table-form.green caption{
  97. background: #defaea;
  98. }
  99. /*灰色*/
  100. .table-form.grey > tbody> tr > td:nth-last-child(2):first-child,
  101. .table-form.grey > tbody> tr > td:nth-last-child(4):first-child,
  102. .table-form.grey > tbody> tr > td:nth-last-child(2):nth-child(3),
  103. .table-form.grey caption{
  104. background: #ebeef5;
  105. }
  106. /*td文字位置*/
  107. /*左*/
  108. .table-form td[align="left"]{
  109. text-align: left!important;
  110. }
  111. /*中*/
  112. .table-form td[align="center"]{
  113. text-align: center!important;
  114. }
  115. /*右*/
  116. .table-form td[align="right"]{
  117. text-align: right!important;
  118. }
  119. /*上*/
  120. .table-form td[valign="top"]{
  121. vertical-align: top!important;
  122. }
  123. /*中*/
  124. .table-form td[valign="middle"]{
  125. vertical-align: middle!important;
  126. }
  127. /*下*/
  128. .table-form td[valign="bottom"]{
  129. vertical-align: bottom!important;
  130. }
  131. .rx-textbox{
  132. height: 32px;
  133. border: 1px solid #d9d9d9;
  134. cursor: pointer;
  135. width: 80%;
  136. border-radius: 4px;
  137. vertical-align: middle;
  138. outline: none;
  139. padding: 0!important;
  140. display: inline-block;
  141. }
  142. .rx-upload{
  143. height: 32px;
  144. width: 80%;
  145. display: inline-block;
  146. cursor: pointer;
  147. border: 1px dashed #d9d9d9;
  148. border-radius: 4px;
  149. vertical-align: middle;
  150. background: url(/form/static/img/controller/fujian.png) #f8f8f8 no-repeat center center;
  151. }
  152. .rx-textarea{
  153. display: inline-block;
  154. cursor:pointer;
  155. border: 1px solid #d9d9d9;
  156. border-radius: 4px;
  157. height: 60px;
  158. vertical-align: middle;
  159. width: 80%;
  160. }
  161. .rx-checkbox{
  162. cursor: pointer;
  163. vertical-align: middle;
  164. }
  165. .rx-checkbox:before{
  166. content: "";
  167. background: url("/form/static/img/controller/checkbox.png") 0px 0px no-repeat;
  168. display: inline-block;
  169. width: 20px;
  170. height: 25px;
  171. margin-top: 5px;
  172. margin-left: 5px;
  173. vertical-align: middle;
  174. }
  175. .rx-form-select {
  176. background: url(/form/static/img/controller/select.png) no-repeat 4px center , url(/form/static/img/controller/downArrow.jpg) no-repeat right center;
  177. height: 32px;
  178. border: 1px solid #d9d9d9;
  179. cursor: pointer;
  180. width: 80%;
  181. border-radius: 4px;
  182. vertical-align: middle;
  183. outline: none;
  184. padding: 0!important;
  185. display: inline-block;
  186. }
  187. .rx-checkbox-list {
  188. width: 222px;
  189. display: inline-block;
  190. background: url(/form/static/img/controller/radio-check-pic.png) 1px -18px no-repeat;
  191. border: none;
  192. outline: none;
  193. border: 1px solid transparent;
  194. padding: 0!important;
  195. height: 26px;
  196. vertical-align: middle;/*上下居中*/
  197. }
  198. .rx-switch {
  199. width: 60px;
  200. display: inline-block;
  201. background: url(/form/static/img/controller/switch.png) no-repeat;
  202. border: none;
  203. outline: none;
  204. border: 1px solid transparent;
  205. padding: 0!important;
  206. height: 21px;
  207. border:2px dashed transparent;
  208. vertical-align: middle;
  209. }
  210. .rx-chinese{
  211. min-width: 100px;
  212. display: inline-block;
  213. border: none;
  214. outline: none;
  215. border: 1px solid transparent;
  216. padding: 0!important;
  217. height: 32px;
  218. vertical-align: middle;
  219. box-sizing: border-box;
  220. font-size: 0;
  221. text-align: left;
  222. padding-left: 6px;
  223. }
  224. .rx-chinese:before{
  225. content: "中文大写";
  226. display: inline-block;
  227. height: 100%;
  228. vertical-align: middle;
  229. font-size: 14px;
  230. }
  231. .rx-number{
  232. height: 32px;
  233. display: inline-block;
  234. cursor: pointer;
  235. width: 80%;
  236. border: 1px solid #d9d9d9;
  237. border-radius: 4px;
  238. vertical-align: middle;
  239. }
  240. .rx-radio {
  241. background: url(/form/static/img/controller/radio-check-pic.png) 2px 4px no-repeat;
  242. display: inline-block;
  243. outline: none;
  244. padding: 0!important;
  245. width: 150px;
  246. height: 24px;
  247. margin-left: 4px;
  248. vertical-align: middle;
  249. box-sizing: border-box;
  250. }
  251. .rx-date {
  252. background: url(/form/static/img/controller/date.png) 4px center no-repeat ,url(/form/static/img/controller/icondate.png) no-repeat right center;
  253. border: 1px solid #d9d9d9;
  254. border-radius: 4px;
  255. outline: none;
  256. width: 80%;
  257. height: 32px;
  258. display: inline-block;
  259. vertical-align: middle;
  260. }
  261. .rx-month {
  262. background: url(/form/static/img/controller/month.png) 4px center no-repeat ,url(/form/static/img/controller/icondate.png) no-repeat right center;
  263. border: 1px solid #d9d9d9;
  264. border-radius: 4px;
  265. outline: none;
  266. width: 80%;
  267. vertical-align: middle;
  268. height: 32px;
  269. display: inline-block;
  270. }
  271. .rx-week {
  272. background: url(/form/static/img/controller/week.png) 4px center no-repeat ,url(/form/static/img/controller/icondate.png) no-repeat right center;
  273. outline: none;
  274. width: 80%;
  275. height: 32px;
  276. cursor: pointer;
  277. border: 1px solid #d9d9d9;
  278. border-radius: 4px;
  279. display: inline-block;
  280. vertical-align: middle;
  281. }
  282. .rx-date-range {
  283. background: url(/form/static/img/controller/datestart.png) 4px center no-repeat ,url(/form/static/img/controller/icondate.png) no-repeat right center;
  284. outline: none;
  285. width: 220px;
  286. height: 32px;
  287. cursor: pointer;
  288. border: 1px solid #d9d9d9;
  289. border-radius: 4px;
  290. display: inline-block;
  291. vertical-align: middle;
  292. }
  293. /*边框容器*/
  294. .fieldsetContainer{
  295. border: 1px dashed #d9d9d9;
  296. }
  297. .fieldsetContainer legend{
  298. color: #555;
  299. font-weight: bold;
  300. }
  301. /*评分*/
  302. .rx-rate{
  303. display: inline-block;
  304. width: 100%;
  305. max-width: 300px;
  306. border: 0;
  307. height: 24px;
  308. vertical-align: -5px;
  309. line-height: 24px;
  310. background: url(/form/static/img/controller/star.png) 4px center no-repeat;
  311. }
  312. /*时间*/
  313. .rx-time{
  314. display: inline-block;
  315. outline: none;
  316. width: 80%;
  317. height: 32px;
  318. cursor: pointer;
  319. border: 1px solid #d9d9d9;
  320. border-radius: 4px;
  321. display: inline-block;
  322. vertical-align: middle;
  323. }
  324. .rx-quill-editor{
  325. position: relative;
  326. display: inline-block;
  327. width:100%;
  328. min-width: 400px;
  329. border-radius: 4px;
  330. height: 200px;
  331. }
  332. .rx-quill-editor:after{
  333. content: "";
  334. position: absolute;
  335. display: block;
  336. width: 100%;
  337. background: url(/form/static/img/controller/editor-head.png) no-repeat ,url(/form/static/img/controller/editor-bottom.png) no-repeat;
  338. background-size: contain,contain;
  339. background-position: left top,left bottom;
  340. top: 0px;
  341. bottom: 0px;
  342. z-index: 10;
  343. }
  344. .rx-quill-editor:before{
  345. content: "";
  346. position: absolute;
  347. display: block;
  348. width: 100%;
  349. background: url(/form/static/img/controller/editor-middle.png) ;
  350. background-size: contain;
  351. top: 0;
  352. bottom: 0;
  353. z-index: 9;
  354. }
  355. .rx-button-edit {
  356. background: url(/form/static/img/controller/editbtn.png) no-repeat 4px center,url(/form/static/img/controller/custombtn.png) no-repeat right center;
  357. padding: 0!important;
  358. outline: none;
  359. width: 80%;
  360. height: 32px;
  361. cursor: pointer;
  362. border: 1px solid #d9d9d9;
  363. border-radius: 4px;
  364. display: inline-block;
  365. vertical-align: middle;
  366. }
  367. .rx-form-button{
  368. display: inline-block;
  369. min-width: 80px;
  370. text-align: center;
  371. border-radius: 4px;
  372. height: 32px;
  373. line-height: 32px;
  374. background-color: #40a9ff;
  375. color: #fff;
  376. box-sizing: border-box;
  377. }
  378. .rx-view-word{
  379. display: inline-block;
  380. min-width: 80px;
  381. text-align: center;
  382. border-radius: 4px;
  383. height: 32px;
  384. line-height: 32px;
  385. background-color: #40a9ff;
  386. color: #fff;
  387. box-sizing: border-box;
  388. }
  389. .rx-user{
  390. outline: none;
  391. width: 80%;
  392. height: 32px;
  393. cursor: pointer;
  394. border: 1px solid #d9d9d9;
  395. border-radius: 4px;
  396. display: inline-block;
  397. vertical-align: middle;
  398. background: url(/form/static/img/controller/addUser.png) no-repeat 4px center;
  399. }
  400. .rx-group{
  401. outline: none;
  402. width: 80%;
  403. height: 32px;
  404. cursor: pointer;
  405. border: 1px solid #d9d9d9;
  406. border-radius: 4px;
  407. display: inline-block;
  408. vertical-align: middle;
  409. background: url(/form/static/img/controller/addGroup.png) no-repeat 4px center;
  410. }
  411. .rx-tree-select {
  412. background: url(/form/static/img/controller/xls.png) no-repeat 4px center , url(/form/static/img/controller/downArrow.jpg) no-repeat right center;
  413. width: 80%;
  414. cursor: pointer;
  415. border: 1px solid #d9d9d9;
  416. border-radius: 4px;
  417. display: inline-block;
  418. outline: none;
  419. padding: 0!important;
  420. height: 32px;
  421. display: inline-block;
  422. vertical-align: middle;
  423. }
  424. .rx-barcode{
  425. outline: none;
  426. width: 80%;
  427. height: 32px;
  428. cursor: pointer;
  429. border: 1px solid #d9d9d9;
  430. border-radius: 4px;
  431. display: inline-block;
  432. vertical-align: middle;
  433. background: url(/form/static/img/controller/time.png) no-repeat right center;
  434. }
  435. /*子表编辑模式*/
  436. .rx-table-body .table-header-tool{
  437. padding: 6px 0;
  438. display: flex;
  439. line-height: normal;
  440. }
  441. .rx-table-body .table-header-tool .title:before {
  442. content: " ";
  443. width: 3px;
  444. height: 14px;
  445. background-color: #4d9eff;
  446. display: inline-block;
  447. position: absolute;
  448. top: 6px;
  449. left: 0px;
  450. border-radius: 2px 0 0 2px;
  451. }
  452. .rx-table-body .table-header-tool .title{
  453. position:relative;
  454. }
  455. .rx-table-body .table-header-tool .title >div{
  456. padding-left: 8px;
  457. font-size: 14px;
  458. display: inline-block;
  459. white-space: nowrap;
  460. text-overflow: ellipsis;
  461. overflow: hidden;
  462. max-width: 300px;
  463. border-left: 3px solid #4d9eff;
  464. vertical-align: middle;
  465. }
  466. .rx-table-body .table-header-tool a-button-group{
  467. flex: 1;
  468. text-align: right;
  469. padding-right: 4px;
  470. font-size: 0;
  471. }
  472. .rx-table-body a-button-group a-button{
  473. font-size: 14px;
  474. font-weight: normal;
  475. border: 1px solid #ddd;
  476. border-radius: 3px;
  477. padding: 4px 6px;
  478. margin-left: 6px;
  479. display: inline-block;
  480. }
  481. .rx-table tr.firstRow th{
  482. border-top-width: 1px;
  483. text-align: left;
  484. border: 1px solid #f2f2f2;
  485. background: #f8f8f8;
  486. font-weight: normal;
  487. font-size: 14px;
  488. }
  489. .rx-table{
  490. table-layout: fixed;
  491. }
  492. .rx-table tr td{
  493. border: 1px solid #f2f2f2;
  494. font-size: 14px;
  495. color: #555;
  496. }
  497. .rx-table tr th,
  498. .rx-table tr td{
  499. height: 30px;
  500. }
  501. .rx-address {
  502. background: url(/form/static/img/controller/address.png) no-repeat 4px center , url(/form/static/img/controller/downArrow.jpg) no-repeat right center;
  503. border: 1px solid #d9d9d9;
  504. outline: none;
  505. padding: 0!important;
  506. height: 32px;
  507. border-radius: 4px;
  508. display: inline-block;
  509. width: 80%;
  510. }
  511. /*rxExcelBox*/
  512. .rxExcelBox{
  513. display: inline-block;
  514. vertical-align: top;
  515. }
  516. .rx-table-box{
  517. overflow-x: auto;
  518. overflow-y: hidden;
  519. }
  520. .rx-form-signbox{
  521. height: 32px;
  522. border: 1px solid transparent;
  523. cursor: pointer;
  524. width: 80%;
  525. border-radius: 4px;
  526. vertical-align: middle;
  527. outline: none;
  528. padding: 0!important;
  529. display: inline-block;
  530. background: url(/form/static/img/controller/qianming.png) no-repeat left center ;
  531. }
  532. .rx-approval-history{
  533. height: 32px;
  534. border: 1px solid #d9d9d9;
  535. cursor: pointer;
  536. width: 80%;
  537. border-radius: 4px;
  538. vertical-align: middle;
  539. outline: none;
  540. padding: 0!important;
  541. display: inline-block;
  542. }
  543. /*数据列表*/
  544. .rx-data-list{
  545. width: 100%;
  546. display: inline-block;
  547. }
  548. .rx-data-list > table{
  549. margin-bottom: 0;
  550. table-layout: fixed;
  551. width: 100%;
  552. }
  553. /*星号*/
  554. .required{
  555. position: relative;
  556. }
  557. .required:before {
  558. content: "*";
  559. color: red;
  560. margin-right: 5px;
  561. font-size: 16px;
  562. display: inline-block;
  563. }
  564. /*通知模板*/
  565. .rx-edit-table{
  566. width: 100%;
  567. table-layout: fixed;
  568. border-collapse:collapse
  569. }
  570. .rx-edit-table td {
  571. border: 1px solid #ddd;
  572. }
  573. .rx-edit-table th {
  574. border: 1px solid #ddd;
  575. background-color:#F7F7F7
  576. }
  577. .rx-table-blue tr td:nth-child(2n+1),
  578. .rx-table-blue tr td:nth-last-child(2):first-child,
  579. .rx-table-blue tr td:nth-last-child(4):first-child,
  580. .rx-table-blue tr td:nth-last-child(2):nth-child(3),
  581. .rx-table-blue tr td:nth-last-child(6):first-child,
  582. .rx-table-blue tr td:nth-last-child(4):nth-child(3),
  583. .rx-table-blue tr td:nth-last-child(2):nth-child(5),
  584. .rx-table-blue tr td:nth-last-child(8):first-child,
  585. .rx-table-blue tr td:nth-last-child(6):nth-child(3),
  586. .rx-table-blue tr td:nth-last-child(4):nth-child(5),
  587. .rx-table-blue tr td:nth-last-child(2):nth-child(7),
  588. .rx-table-blue caption{
  589. background-color: #e3f1ff ;
  590. }
  591. .rx-table-green tr td:nth-child(2n+1),
  592. .rx-table-green tr td:nth-last-child(2):first-child,
  593. .rx-table-green tr td:nth-last-child(4):first-child,
  594. .rx-table-green tr td:nth-last-child(2):nth-child(3),
  595. .rx-table-green tr td:nth-last-child(6):first-child,
  596. .rx-table-green tr td:nth-last-child(4):nth-child(3),
  597. .rx-table-green tr td:nth-last-child(2):nth-child(5),
  598. .rx-table-green tr td:nth-last-child(8):first-child,
  599. .rx-table-green tr td:nth-last-child(6):nth-child(3),
  600. .rx-table-green tr td:nth-last-child(4):nth-child(5),
  601. .rx-table-green tr td:nth-last-child(2):nth-child(7),
  602. .rx-table-green caption{
  603. background-color: #defaea ;
  604. }
  605. .rx-table-grey tr td:nth-child(2n+1),
  606. .rx-table-grey tr td:nth-last-child(2):first-child,
  607. .rx-table-grey tr td:nth-last-child(4):first-child,
  608. .rx-table-grey tr td:nth-last-child(2):nth-child(3),
  609. .rx-table-grey tr td:nth-last-child(6):first-child,
  610. .rx-table-grey tr td:nth-last-child(4):nth-child(3),
  611. .rx-table-grey tr td:nth-last-child(2):nth-child(5),
  612. .rx-table-grey tr td:nth-last-child(8):first-child,
  613. .rx-table-grey tr td:nth-last-child(6):nth-child(3),
  614. .rx-table-grey tr td:nth-last-child(4):nth-child(5),
  615. .rx-table-grey tr td:nth-last-child(2):nth-child(7),
  616. .rx-table-grey caption{
  617. background-color: #ebeef5 ;
  618. }
  619. /*通知模板 -end*/