cwg_common.scss 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941
  1. $--color-primary: #368FEC;
  2. html, body {
  3. padding: 0;
  4. margin: 0;
  5. width: 100%;
  6. height: 100%;
  7. }
  8. html, body, div, span, applet, object, iframe,
  9. h1, h2, h3, h4, h5, h6, p, blockquote, pre,
  10. a, abbr, acronym, address, big, cite, code,
  11. del, dfn, em, img, ins, kbd, q, s, samp,
  12. small, strike, strong, sub, sup, tt, var,
  13. b, u, i, center,
  14. dl, dt, dd, ol, ul, li,
  15. fieldset, form, label, legend,
  16. table, caption, tbody, tfoot, thead, tr, th, td,
  17. article, aside, canvas, details, embed,
  18. figure, figcaption, footer, header, hgroup,
  19. menu, nav, output, ruby, section, summary,
  20. time, mark, audio, video {
  21. margin: 0;
  22. padding: 0;
  23. border: 0;
  24. vertical-align: baseline;
  25. word-break: break-word!important;
  26. }
  27. /* HTML5 display-role reset for older browsers */
  28. article, aside, details, figcaption, figure,
  29. footer, header, hgroup, menu, nav, section {
  30. display: block;
  31. }
  32. body {
  33. line-height: 1;
  34. }
  35. ol, ul {
  36. list-style: none;
  37. }
  38. blockquote, q {
  39. quotes: none;
  40. }
  41. blockquote:before, blockquote:after,
  42. q:before, q:after {
  43. content: '';
  44. content: none;
  45. }
  46. table {
  47. border-collapse: collapse;
  48. border-spacing: 0;
  49. }
  50. a {
  51. text-decoration: none;
  52. }
  53. .iconfont {
  54. font-weight: 500;
  55. }
  56. //去左边框
  57. .crm-border-left-no{
  58. border-left: none!important;
  59. .el-input__wrapper{
  60. //padding: 0 !important;
  61. }
  62. .el-input__inner, .el-button{
  63. border-left: none;
  64. }
  65. }
  66. //去圆角
  67. .crm-border-radius-no{
  68. border-radius: 0!important;
  69. .el-input__inner, .el-button{
  70. border-radius: 0;
  71. }
  72. .el-select__wrapper,.el-input__wrapper{
  73. border-radius: 0;
  74. }
  75. }
  76. .el-input__wrapper{
  77. width: 100%;
  78. }
  79. //下划线
  80. .crm-text-underline{
  81. text-decoration: underline;
  82. cursor: pointer;
  83. }
  84. //小手
  85. .crm-cursor {
  86. cursor: pointer;
  87. user-select: none;
  88. }
  89. //字体按钮
  90. .crm-font-btn {
  91. cursor: pointer;
  92. user-select: none;
  93. color: rgba(64, 123, 158, 1);
  94. }
  95. .crm-font-btn:hover {
  96. color: rgba(64, 123, 158, 0.8);
  97. }
  98. //一行,...
  99. .crm-one-font {
  100. word-break: keep-all;
  101. white-space: nowrap;
  102. overflow: hidden;
  103. text-overflow: ellipsis;
  104. }
  105. //2行,...(多行)
  106. .crm-tow-font {
  107. overflow: hidden;
  108. text-overflow: ellipsis;
  109. display: -webkit-box;
  110. -webkit-line-clamp: 2;
  111. -webkit-box-orient: vertical;
  112. }
  113. //滚动条
  114. ::-webkit-scrollbar {
  115. /*滚动条整体样式*/
  116. width: 3px;
  117. /*高宽分别对应横竖滚动条的尺寸*/
  118. height: 6px;
  119. }
  120. ::-webkit-scrollbar-thumb {
  121. /*滚动条里面小方块*/
  122. border-radius: 6px;
  123. @include bg_main();
  124. background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .2) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .2) 50%, rgba(255, 255, 255, .2) 75%, transparent 75%, transparent);
  125. }
  126. ::-webkit-scrollbar-track {
  127. /*滚动条里面轨道*/
  128. -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
  129. /*border-radius: 10px;*/
  130. background: #ededed;
  131. }
  132. //滑动
  133. .slide-right-enter-active,
  134. .slide-right-leave-active {
  135. position: absolute;
  136. top: 0;
  137. left: 0;
  138. transform: translate(0, 0);
  139. transition: all .35s .1s linear;
  140. }
  141. .slide-right-enter {
  142. position: absolute;
  143. transform: translate(-100%, 0);
  144. }
  145. .slide-right-leave-active {
  146. position: absolute;
  147. transform: translate(100%, 0);
  148. }
  149. .slideinup-enter-active,
  150. .slideinup-leave-active {
  151. opacity: .5;
  152. position: absolute;
  153. transform: translate(0, 0);
  154. transition: all .35s .1s linear;
  155. }
  156. .slideinup-enter {
  157. opacity: 0;
  158. position: absolute;
  159. transform: translate(0, -100%);
  160. }
  161. .slideinup-leave-active {
  162. opacity: 0;
  163. position: absolute;
  164. transform: translate(0, 100%);
  165. }
  166. //dialog
  167. .el-dialog--center .el-dialog__body{
  168. text-align:initial;
  169. padding:25px 25px 30px;
  170. }
  171. .dialog_header_w.el-dialog {
  172. width: 650px;
  173. .el-dialog__header {
  174. border-bottom: 1px solid;
  175. @include border_gray_3();
  176. font-weight: bold;
  177. font-size: 14px;
  178. }
  179. .dialog-footer {
  180. margin-top: 20px;
  181. text-align: center;
  182. }
  183. }
  184. .dialog_header_b.el-dialog {
  185. width: 500px;
  186. .el-dialog__header {
  187. @include bg_gray_6();
  188. @include font_white();
  189. font-weight: bold;
  190. font-size: 14px;
  191. .el-dialog__title {
  192. @include font_white();
  193. }
  194. }
  195. .dialog-footer {
  196. margin-top: 20px;
  197. text-align: center;
  198. }
  199. }
  200. //消息提示框样式
  201. .el-message.crm_message {
  202. padding: 0;
  203. border: none;
  204. height: 40px;
  205. line-height: 40px;
  206. transform: translate(10%);
  207. .el-message__icon {
  208. width: 40px;
  209. height: 40px;
  210. font-size: 24px;
  211. line-height: 40px;
  212. text-align: center;
  213. color: #ffffff;
  214. }
  215. .el-message__content {
  216. margin-right: 10px;
  217. width: calc(100% - 40px);
  218. text-align: center;
  219. }
  220. }
  221. //成功
  222. .el-message.crm_message.crm_msg_suc {
  223. .el-message__icon {
  224. background-color: #45CE61;
  225. }
  226. .el-message__content {
  227. color: #45CE61;
  228. }
  229. }
  230. //失败
  231. .el-message.crm_message.crm_msg_err {
  232. .el-message__icon {
  233. background-color: #EB3F57;
  234. }
  235. .el-message__content {
  236. color: #EB3F57;
  237. }
  238. }
  239. //警告
  240. .el-message.crm_message.crm_msg_war {
  241. .el-message__icon {
  242. background-color: #EB3F57;
  243. }
  244. .el-message__content {
  245. color: #EB3F57;
  246. }
  247. }
  248. .el-message-box__message{
  249. width: 100%;
  250. }
  251. .el-table th {
  252. background-color: #f5f5f5;
  253. color: #333333;
  254. font-weight: 700;
  255. }
  256. .el-table--striped .el-table__body tr.el-table__row--striped td {
  257. background-color: #f5f5f5;
  258. }
  259. @media only screen and (max-width: 767px) {
  260. .hidden-xs-only {
  261. display: none !important
  262. }
  263. }
  264. @media only screen and (min-width: 768px) {
  265. .hidden-sm-and-up {
  266. display: none !important
  267. }
  268. }
  269. @media only screen and (min-width: 768px) and (max-width: 991px) {
  270. .hidden-sm-only {
  271. display: none !important
  272. }
  273. }
  274. @media only screen and (max-width: 991px) {
  275. .hidden-sm-and-down {
  276. display: none !important
  277. }
  278. }
  279. @media only screen and (min-width: 992px) {
  280. .hidden-md-and-up {
  281. display: none !important
  282. }
  283. }
  284. @media only screen and (min-width: 992px) and (max-width: 1199px) {
  285. .hidden-md-only {
  286. display: none !important
  287. }
  288. }
  289. @media only screen and (max-width: 1199px) {
  290. .hidden-md-and-down {
  291. display: none !important
  292. }
  293. }
  294. @media only screen and (min-width: 1200px) {
  295. .hidden-lg-and-up {
  296. display: none !important
  297. }
  298. }
  299. @media only screen and (min-width: 1200px) and (max-width: 1919px) {
  300. .hidden-lg-only {
  301. display: none !important
  302. }
  303. }
  304. @media only screen and (max-width: 1919px) {
  305. .hidden-lg-and-down {
  306. display: none !important
  307. }
  308. }
  309. @media only screen and (min-width: 1920px) {
  310. .hidden-xl-only {
  311. display: none !important
  312. }
  313. }
  314. .view {
  315. padding: 10px;
  316. border-radius: 8px;
  317. background-color: #ffffff;
  318. height: calc(100% - 20px);
  319. position: relative;
  320. overflow: hidden;
  321. overflow-y: auto;
  322. }
  323. //选中时边框
  324. .el-input.is-active .el-input__inner,
  325. .el-input__inner:focus,
  326. .el-button:active,
  327. .el-range-editor.is-active,
  328. .el-range-editor.is-active:hover {
  329. border-color: #DCDFE6!important;
  330. }
  331. //分页
  332. .crm_pagination {
  333. display: flex;
  334. justify-content: flex-end;
  335. align-items: center;
  336. margin-top: 20px;
  337. .crm_page_total {
  338. line-height: 32px;
  339. span {
  340. margin: 0 3px;
  341. font-size: 14px;
  342. color: #929292;
  343. }
  344. }
  345. }
  346. //tab显示
  347. .crm-chooseTab{
  348. text-align: left;
  349. margin-bottom: 20px;
  350. border-bottom: 1px solid #DCDFE6;
  351. .chooseLang{
  352. margin-top: 2px;
  353. margin-right: 10px;
  354. >span{
  355. border: 1px solid #DCDFE6;
  356. border-bottom: none;
  357. padding: 0 8px;
  358. min-width: 100px;
  359. display: inline-block;
  360. height: 32px;
  361. line-height: 32px;
  362. box-sizing: border-box;
  363. text-align: center;
  364. font-size: 14px;
  365. }
  366. span.active{
  367. @include border_bottom_blue_1();
  368. @include bg_main();
  369. @include font_white();
  370. }
  371. }
  372. }
  373. //搜索块
  374. .crm_search {
  375. .el-form {
  376. display: flex;
  377. .el-row {
  378. flex: 1;
  379. .el-col {
  380. display: flex;
  381. flex-wrap: wrap;
  382. .el-date-editor {
  383. top: 1px;
  384. }
  385. }
  386. }
  387. .crm_search_down {
  388. width: 120px;
  389. .el-input__inner{
  390. background-color: #F5F5F5;
  391. }
  392. }
  393. .crm_search_down_special {
  394. width: 120px;
  395. .el-input__inner{
  396. background-color: #368FEC;
  397. color: #ffffff;
  398. border: transparent;
  399. }
  400. }
  401. .el-form-item {
  402. margin-bottom: 10px;
  403. //margin-right: 15px;
  404. .search_action_btn > span {
  405. margin-left: 20px;
  406. font-weight: bold;
  407. white-space: nowrap;
  408. padding: 6px 10px;
  409. background-color: #368FEC;
  410. color: #FFFFFF;
  411. border-radius: 2px;
  412. min-width: 90px;
  413. display: inline-block;
  414. line-height: 20px;
  415. box-sizing: border-box;
  416. i {
  417. margin-right: 4px;
  418. font-weight: bold;
  419. }
  420. }
  421. }
  422. }
  423. }
  424. //表格操作块
  425. .crm_table_btn {
  426. white-space: nowrap;
  427. > span {
  428. margin: 4px 8px;
  429. font-size: 16px;
  430. i {
  431. font-weight: bold;
  432. }
  433. }
  434. }
  435. //底部按钮
  436. .dialog-footer{
  437. .el-button{
  438. min-width: 100px;
  439. }
  440. }
  441. //大图展示关闭
  442. .el-image{
  443. .el-icon-circle-close{
  444. @include font_white();
  445. }
  446. }
  447. // 消息提示框
  448. .crm_message_box.el-message-box {
  449. width: 480px;
  450. height: 200px;
  451. text-align: center;
  452. box-shadow: 0 6px 20px 0 rgba(201, 193, 193, .5);
  453. border-radius: 4px;
  454. .el-message-box__header {
  455. border-bottom: 1px solid rgba(226, 226, 226, 1);
  456. .el-message-box__title {
  457. line-height: 20px;
  458. color: rgba(0, 0, 0, 1);
  459. font-size: 16px;
  460. }
  461. .el-message-box__headerbtn {
  462. display: none;
  463. }
  464. }
  465. .el-message-box__content {
  466. padding-top: 30px;
  467. padding-bottom: 30px;
  468. font-size: 18px;
  469. color: rgba(102, 102, 102, 1);
  470. }
  471. .el-message-box__btns {
  472. margin-bottom: 10px;
  473. text-align: center;
  474. justify-content: center;
  475. .el-button {
  476. width: 100px;
  477. height: 36px;
  478. font-size: 14px;
  479. }
  480. }
  481. }
  482. //遮罩
  483. .crm_verified_info_mask {
  484. position: fixed;
  485. left: 0;
  486. top: 0;
  487. width: 100%;
  488. height: 100%;
  489. background-color: rgba(43, 48, 67, 0.65);
  490. z-index: 89;
  491. }
  492. //折叠
  493. .crm_collapse_info.el-collapse{
  494. border: none;
  495. .el-collapse-item__header, .el-collapse-item__wrap{
  496. border: none;
  497. }
  498. .el-collapse-item__header{
  499. background: #F5F5F5;
  500. padding: 0 20px;
  501. height: 40px;
  502. line-height: 40px;
  503. color: #2B3043;
  504. font-weight: bold;
  505. i{
  506. color: #2B3043;
  507. font-weight: bold;
  508. }
  509. }
  510. .el-collapse-item__wrap{
  511. padding: 0 20px;
  512. }
  513. .el-collapse-item__content{
  514. padding-bottom: 5px;
  515. .el-form-item{
  516. margin-bottom: 0;
  517. .el-form-item__content{
  518. text-align: left;
  519. }
  520. }
  521. }
  522. }
  523. //开关
  524. .crm_switch .el-switch__label {
  525. position: absolute;
  526. display: none;
  527. max-width: 25px;
  528. overflow: hidden;
  529. color: #FFFFFF!important;
  530. }
  531. .crm_switch.crm_switch_width .el-switch__label {
  532. position: absolute;
  533. display: none;
  534. max-width: 50px;
  535. overflow: hidden;
  536. color: #FFFFFF!important;
  537. }
  538. /*打开时文字位置设置*/
  539. .crm_switch .el-switch__label--right {
  540. z-index: 1;
  541. left: -3px;
  542. }
  543. /*关闭时文字位置设置*/
  544. .crm_switch .el-switch__label--left {
  545. z-index: 1;
  546. right: 0;
  547. }
  548. /*显示文字*/
  549. .crm_switch .el-switch__label.is-active {
  550. display: block;
  551. }
  552. .crm_switch.el-switch .el-switch__core {
  553. width: 50px !important;
  554. overflow: hidden;
  555. }
  556. .crm_switch.crm_switch_width.el-switch .el-switch__core {
  557. width: 75px !important;
  558. overflow: hidden;
  559. }
  560. .crm_switch.el-switch.is-checked .el-switch__core::after{
  561. z-index: 2;
  562. }
  563. //状态颜色
  564. .crm_state_blue {
  565. text-align: center;
  566. background-color: #368FEC;
  567. }
  568. .crm_state_green {
  569. text-align: center;
  570. background-color: #87D068;
  571. }
  572. .crm_state_gray {
  573. text-align: center;
  574. background-color: #A1A1A1;
  575. }
  576. .crm_state_red {
  577. text-align: center;
  578. background-color: #EB3F57;
  579. }
  580. .crm_state_yellow {
  581. text-align: center;
  582. background-color: rgb(231, 211, 31);
  583. }
  584. .crm_state_orange {
  585. text-align: center;
  586. background-color: #FF9800;
  587. }
  588. .crm_state_violet {
  589. text-align: center;
  590. background-color: #a492be;
  591. }
  592. //表格颜色
  593. .el-table th.is-leaf {
  594. background-color: #F2F2F2;
  595. }
  596. //label样式
  597. #TradingDetailedInfo .el-form-item__label{
  598. border-radius: 2px;
  599. @include bg_gray_7();
  600. font-weight: bold;
  601. text-align: center!important;
  602. min-height: 40px!important;
  603. box-sizing: border-box;
  604. }
  605. #TradingDetailedInfo .el-form-item__content{
  606. min-height: 40px!important;
  607. line-height: 1.5;
  608. box-sizing: border-box;
  609. border: 1px solid;
  610. display: flex;
  611. align-content: center;
  612. align-items: center;
  613. justify-content: center;
  614. @include border_gray_4();
  615. @include bg_white();
  616. text-align: center!important;
  617. .el-input__inner,.el-input{
  618. height: 34px;
  619. border: none;
  620. text-align: center;
  621. }
  622. }
  623. #TradingDetailedInfo .el-form-item{
  624. margin-bottom: 20px!important;
  625. }
  626. //input前置后置背景色
  627. .el-input-group__append, .el-input-group__prepend{
  628. background-color: #F2F2F2!important;
  629. }
  630. //富文本层级
  631. .tox-silver-sink{
  632. z-index: 9999!important;
  633. }
  634. //表格加载
  635. .el-loading-mask {
  636. .el-icon-loading{
  637. font-size: 28px;
  638. }
  639. }
  640. //
  641. .el-popper.el-dropdown-menu{
  642. width: max-content;
  643. }
  644. .el-popper.el-cascader__dropdown{
  645. max-width: 1200px;
  646. width: auto;
  647. .el-cascader-panel{
  648. width: 100%;
  649. display: flex;
  650. flex-wrap: wrap;
  651. }
  652. .el-cascader-menu,.el-cascader-menu__wrap{
  653. width: 300px;
  654. height: 300px;
  655. }
  656. }
  657. //表头英文时按单词换行
  658. .el-table thead th > .cell{
  659. word-break: break-word!important;
  660. }
  661. //新增弹出样式
  662. #TradingDetailedInfoAdd.InfoBox {
  663. width: 450px;
  664. height: 100%;
  665. padding: 15px 0;
  666. border-radius: 2px;
  667. -webkit-box-sizing: border-box;
  668. box-sizing: border-box;
  669. box-shadow: 0px 3px 5px 0px rgba(49, 49, 49, 0.35);
  670. position: fixed;
  671. background-color: #FFFFFF;
  672. z-index: 100;
  673. overflow: hidden;
  674. overflow-y: auto;
  675. top: 0;
  676. right: -455px;
  677. -webkit-transition: all 0.6s;
  678. -moz-transition: all 0.6s;
  679. -o-transition: all 0.6s;
  680. transition: all 0.6s;
  681. .header {
  682. text-align: left;
  683. height: 25px;
  684. line-height: 25px;
  685. margin: 0 20px 10px;
  686. font-size: 14px;
  687. display: flex;
  688. justify-content: space-between;
  689. .title {
  690. font-weight: bold;
  691. }
  692. i.el-icon-close {
  693. text-align: right !important;
  694. font-weight: bold;
  695. margin-right: 7px;
  696. }
  697. }
  698. .btn {
  699. display: inline-block;
  700. padding: 10px;
  701. background-color: #368FEC;
  702. color: #FFFFFF;
  703. border-radius: 2px;
  704. text-align: center;
  705. min-width: 120px;
  706. margin: 25px 0;
  707. }
  708. .deleteBtn{
  709. display: inline-block;
  710. min-width: 100px;
  711. height: 30px;
  712. line-height: 30px;
  713. text-align: center;
  714. background-color: #EB3F57;
  715. color: #FFFFFF;
  716. }
  717. .avatar-uploader{
  718. display: inline-block;
  719. .updateBtn{
  720. display: inline-block;
  721. text-align: left;
  722. i{
  723. font-weight: bold;
  724. font-size: 20px;
  725. margin-right: 5px;
  726. }
  727. }
  728. }
  729. .channelBanks{
  730. padding-top: 10px;
  731. border-bottom: 1px solid #DCDFE6;
  732. }
  733. .channel{
  734. text-align: left!important;
  735. .btn {
  736. display: inline;
  737. padding: 10px;
  738. background-color: #368FEC;
  739. color: #FFFFFF;
  740. border-radius: 2px;
  741. text-align: center;
  742. min-width: 120px;
  743. margin: 25px 0;
  744. }
  745. }
  746. .channel-tit{
  747. display: flex;
  748. justify-content: space-between;
  749. align-items: center;
  750. height: 40px;
  751. background-color: #F2F2F2;
  752. padding: 0 15px;
  753. box-sizing: border-box;
  754. margin-bottom: 10px;
  755. .add{
  756. border: 1px dashed #368FEC;
  757. color: #368FEC;
  758. line-height: 20px;
  759. display: inline-block;
  760. width: 20px;
  761. height: 20px;
  762. font-weight: bold;
  763. i{
  764. font-weight: bold;
  765. font-size: 12px;
  766. margin-left: 4px;
  767. }
  768. }
  769. }
  770. .custom-tree-node {
  771. flex: 1;
  772. display: flex;
  773. align-items: center;
  774. justify-content: space-between;
  775. font-size: 14px;
  776. padding-right: 4px;
  777. i{
  778. margin-left: 4px;
  779. /*font-weight: bold;*/
  780. }
  781. }
  782. .dialog_header_w{
  783. width: 850px!important;
  784. .code{
  785. padding: 6px 12px;
  786. background-color: #368FEC;
  787. color: #FFFFFF;
  788. border-radius: 2px;
  789. margin-left: 10px;
  790. }
  791. .chooseLang{
  792. >span{
  793. border: 1px solid #DCDFE6;
  794. padding: 0 8px;
  795. min-width: 100px;
  796. display: inline-block;
  797. height: 40px;
  798. line-height: 40px;
  799. box-sizing: border-box;
  800. text-align: center;
  801. }
  802. span.active{
  803. @include border_red_1();
  804. @include font_main();
  805. }
  806. }
  807. }
  808. .el-form {
  809. border-top: 1px solid #E4E4E4;
  810. padding: 10px 0;
  811. text-align: left;
  812. position: relative;
  813. .el-form-item {
  814. margin-bottom: 20px;
  815. padding: 0 20px;
  816. }
  817. .authorityBox.el-form-item .el-form-item__content{
  818. display: contents;
  819. }
  820. }
  821. .el-select {
  822. width: 100%;
  823. }
  824. .el-date-editor.el-input {
  825. width: 100%;
  826. }
  827. .el-upload {
  828. width: 100%;
  829. }
  830. .channel{
  831. .el-input__inner {
  832. text-align: left;
  833. }
  834. }
  835. .online-editing.el-form-item{
  836. .el-form-item__content-item{
  837. border: none!important;
  838. }
  839. }
  840. }
  841. #TradingDetailedInfoAdd.InfoBox.active {
  842. right: 0;
  843. }
  844. // 统一 select 和 input 的宽度
  845. .el-select,
  846. .el-input,
  847. .el-date-editor.el-input,
  848. .el-date-editor.el-input__inner {
  849. width: 100%;
  850. min-width: 192px;
  851. }
  852. .el-select .el-input {
  853. width: 100%;
  854. }
  855. .el-input__inner {
  856. width: 100%;
  857. }