index.less 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647
  1. * {
  2. padding: 0;
  3. margin: 0;
  4. border: 0;
  5. box-sizing: border-box;
  6. }
  7. /* 移除默认的 focus-visible 样式 */
  8. :focus-visible {
  9. outline: none;
  10. }
  11. #app {
  12. -webkit-font-smoothing: antialiased;
  13. -moz-osx-font-smoothing: grayscale;
  14. color: #333;
  15. min-height: 100vh;
  16. }
  17. body {
  18. user-select: none;
  19. background-color: #f1f5ff;
  20. overflow: hidden;
  21. --layoutTopHeight: 64px;
  22. .n-form-item .n-form-item-feedback-wrapper {
  23. --n-feedback-font-size: 12Px !important;
  24. }
  25. }
  26. body > .n-drawer-container-relative {
  27. position: relative !important;
  28. }
  29. // 搜索框前面放大镜样式重置
  30. .icon-search-input {
  31. display: inline-block;
  32. width: max(16px, 14Px);
  33. height: max(16px, 14Px);
  34. background: url('../common/images/icon_search.png') no-repeat center;
  35. background-size: contain;
  36. }
  37. .n-input:not(.n-input--disabled).n-input--focus {
  38. .icon-search-input {
  39. background: url('../common/images/icon_searchActive.png') no-repeat center;
  40. background-size: contain;
  41. }
  42. }
  43. // 初始化弹窗关闭的默认状态
  44. // .n-base-close:not(.n-base-close--disabled):focus::before {
  45. // background-color: transparent;
  46. // }
  47. .n-base-select-menu .n-base-select-option {
  48. font-size: max(15px, 12Px);
  49. }
  50. .n-popselect-menu {
  51. --n-option-height: 38px !important;
  52. }
  53. @font-face {
  54. font-family: 'dotfont';
  55. /* Project id */
  56. src: url('../common/text-security-disc.woff') format('woff');
  57. }
  58. .cr-ellipsis {
  59. overflow: hidden;
  60. white-space: nowrap;
  61. text-overflow: ellipsis;
  62. }
  63. .fade-enter-active,
  64. .fade-leave-active {
  65. transition: opacity 0.5s ease;
  66. }
  67. .fade-enter-from,
  68. .fade-leave-to {
  69. opacity: 0;
  70. }
  71. ::-webkit-scrollbar {
  72. width: 8px;
  73. height: 12px;
  74. background-color: #fff;
  75. }
  76. ::-webkit-scrollbar-thumb {
  77. display: block;
  78. min-height: 12px;
  79. min-width: 8px;
  80. border-radius: 6px;
  81. background-color: rgb(217, 217, 217);
  82. }
  83. ::-webkit-scrollbar-thumb:hover {
  84. display: block;
  85. min-height: 12px;
  86. min-width: 8px;
  87. border-radius: 6px;
  88. background-color: rgb(159, 159, 159);
  89. }
  90. .searchBtn {
  91. // width: 90px;
  92. // height: 43px;
  93. background: #198cfe;
  94. border-radius: 8px;
  95. // line-height: 41px;
  96. font-weight: 600 !important;
  97. // font-size: max(18px, 13Px);
  98. }
  99. .resetBtn {
  100. // width: 90px;
  101. border-radius: 8px;
  102. font-weight: 600 !important;
  103. // font-size: max(18px, 13Px);
  104. }
  105. .resetBtn,
  106. .searchBtn {
  107. --n-padding: 0 28px !important;
  108. }
  109. .searchDate,
  110. .searchDateDefault {
  111. font-size: max(18px, 13Px);
  112. --n-height: max(40px, 36Px) !important;
  113. --n-padding: 0 28px !important;
  114. background: linear-gradient(312deg, #1b7af8 0%, #3cbbff 100%);
  115. border-radius: 8px;
  116. // line-height: 41px;
  117. font-weight: 600 !important;
  118. .n-button__state-border,
  119. .n-button__border {
  120. border: none !important;
  121. }
  122. }
  123. .searchDateDefault {
  124. background: #f1f2f6;
  125. color: #1e2022;
  126. }
  127. // .n-data-table {
  128. // border-radius: 10px 10px 0 0;
  129. // overflow: hidden;
  130. // }
  131. // .n-data-table-thead {
  132. // height: 54px;
  133. // line-height: 54px;
  134. // }
  135. // .n-data-table-th {
  136. // padding: 0 20px !important;
  137. // background-color: #f7f7f8 !important;
  138. // color: rgba(0, 0, 0, 0.88) !important;
  139. // .n-data-table-th__title {
  140. // font-weight: 600;
  141. // }
  142. // }
  143. // .n-data-table-tr {
  144. // .n-data-table-td {
  145. // padding-left: 20px;
  146. // color: #333333;
  147. // font-size: 14px;
  148. // .n-button__content {
  149. // font-size: 14px;
  150. // color: #1677ff;
  151. // }
  152. // }
  153. // }
  154. :global {
  155. .n-form-item .n-form-item-label {
  156. color: #777;
  157. }
  158. .n-button {
  159. border-radius: 8px;
  160. }
  161. }
  162. .n-cascader-submenu-wrapper {
  163. .n-scrollbar > .n-scrollbar-rail.n-scrollbar-rail--vertical,
  164. .n-scrollbar + .n-scrollbar-rail.n-scrollbar-rail--vertical {
  165. right: 2px;
  166. }
  167. .n-cascader-option__suffix {
  168. padding-right: 12px !important;
  169. }
  170. }
  171. .n-data-table-th__title-wrapper {
  172. // &::after {
  173. // content: '';
  174. // width: 1px;
  175. // height: 22px;
  176. // background: #ebebeb;
  177. // &:nth-last-child(1) {
  178. // display: none;
  179. // }
  180. // }
  181. }
  182. .n-data-table-th--last {
  183. .n-data-table-th__title-wrapper {
  184. // &::after {
  185. // content: '';
  186. // width: 0px;
  187. // height: 22px;
  188. // background: #ebebeb;
  189. // }
  190. }
  191. }
  192. // 给弹窗设置标题的基础样式
  193. .modalTitle {
  194. border-radius: 16px;
  195. // overflow: hidden;
  196. &.background {
  197. .n-card-header {
  198. background: #f5f6fa;
  199. font-weight: 600 !important;
  200. overflow: hidden;
  201. }
  202. }
  203. .n-card-header {
  204. border-radius: 16px 16px 0 0;
  205. position: relative;
  206. padding: 20px 18px;
  207. text-align: center;
  208. background: #fff;
  209. font-size: 22px;
  210. font-weight: 600;
  211. color: #131415;
  212. line-height: 30px;
  213. }
  214. .n-card-header__close {
  215. position: absolute;
  216. right: 18px;
  217. z-index: 99;
  218. }
  219. .n-card__content {
  220. padding: 0;
  221. }
  222. }
  223. .modalTitleNew {
  224. border-radius: 12Px;
  225. .n-card-header {
  226. border-radius: 12Px 12Px 0 0;
  227. position: relative;
  228. padding: 24Px 30Px;
  229. text-align: center;
  230. background: #fff;
  231. font-weight: 600;
  232. font-size: 16Px;
  233. color: #131415;
  234. line-height: 22Px;
  235. .n-card-header__main {
  236. text-align: left;
  237. }
  238. }
  239. .n-card-header__close {
  240. position: absolute;
  241. right: 30Px;
  242. z-index: 99;
  243. }
  244. .n-card__content {
  245. padding: 0;
  246. }
  247. }
  248. .favitor-enter-active,
  249. .favitor-leave-active {
  250. // transition: all 0.5s cubic-bezier(0.18, 0.89, 0, 1.29);
  251. transition: all 0.3s ease-in-out;
  252. }
  253. .favitor-enter-from,
  254. .favitor-leave-to {
  255. transform: scale(1.4);
  256. opacity: 0.1;
  257. }
  258. @font-face {
  259. font-family: 'DINA';
  260. src: url('../common/DIN_Alternate_Bold.ttf');
  261. }
  262. :root {
  263. --product-color: #3044ca;
  264. }
  265. // .n-button--primary-type {
  266. // color: #1677ff !important;
  267. // }
  268. ::-webkit-input-placeholder {
  269. /* WebKit browsers */
  270. color: rgba(0, 0, 0, 0.4);
  271. }
  272. :-moz-placeholder {
  273. /* Mozilla Firefox 4 to 18 */
  274. color: rgba(0, 0, 0, 0.4);
  275. }
  276. ::-moz-placeholder {
  277. /* Mozilla Firefox 19+ */
  278. color: rgba(0, 0, 0, 0.4);
  279. }
  280. :-ms-input-placeholder {
  281. /* Internet Explorer 10+ */
  282. color: rgba(0, 0, 0, 0.4);
  283. }
  284. @keyframes TadaNum {
  285. 0% {
  286. transform: rotate(0);
  287. transform: rotate(0);
  288. }
  289. 10%,
  290. 20% {
  291. transform: rotate(-6deg);
  292. transform: rotate(-6deg);
  293. }
  294. 30%,
  295. 50%,
  296. 70%,
  297. 90% {
  298. transform: rotate(6deg);
  299. transform: rotate(6deg);
  300. }
  301. 40%,
  302. 60%,
  303. 80% {
  304. transform: rotate(-6deg);
  305. transform: rotate(-6deg);
  306. }
  307. 100% {
  308. transform: rotate(0);
  309. transform: rotate(0);
  310. }
  311. }
  312. /* 列表动画 start */
  313. .list-move,
  314. /* 对移动中的元素应用的过渡 */
  315. .list-enter-active,
  316. .list-leave-active {
  317. transition: all 0.5s ease;
  318. }
  319. .list-enter-from,
  320. .list-leave-to {
  321. opacity: 0;
  322. transform: translateX(30px);
  323. }
  324. // 拖动时
  325. .sortable-ghost {
  326. opacity: 0.7;
  327. }
  328. .flip-list-move {
  329. transition: transform 0.5s;
  330. }
  331. .no-move {
  332. transition: transform 0s;
  333. }
  334. .n-data-table .n-data-table-th {
  335. background: #f7f7f8;
  336. color: rgba(113, 113, 114, 1) !important;
  337. border: none;
  338. min-height: 54px;
  339. font-size: max(15px, 12Px);
  340. }
  341. .n-data-table.n-data-table--bordered .n-data-table-wrapper {
  342. border: none;
  343. }
  344. .n-data-table-tr .n-data-table-td .n-button__content,
  345. .n-data-table .n-data-table-td {
  346. font-weight: bold;
  347. font-size: max(15px, 12Px);
  348. }
  349. .n-tooltip {
  350. --n-padding: 6px 12px !important;
  351. --n-border-radius: 6px !important;
  352. .n-popover__content {
  353. font-size: max(14px, 12Px);
  354. }
  355. }
  356. .n-base-close:not(.n-base-close--disabled):active::before,
  357. .n-base-close:not(.n-base-close--disabled):focus::before {
  358. background-color: transparent !important;
  359. }
  360. .body .n-modal-mask {
  361. background-color: transparent !important;
  362. }
  363. .n-modal-mask {
  364. background-color: rgba(0, 0, 0, 0.6);
  365. }
  366. // 设置图片弹窗工具预览
  367. .n-image-preview-toolbar .n-base-icon {
  368. margin: 0 8px;
  369. padding: 0;
  370. }
  371. .n-breadcrumb .n-breadcrumb-item {
  372. font-size: max(16px, 12Px) !important;
  373. }
  374. .n-base-selection,
  375. .n-input,
  376. .n-input-group-label {
  377. --n-height: max(40px, 36Px) !important;
  378. --n-border-radius: 8px !important;
  379. font-size: max(15px, 13Px) !important;
  380. }
  381. .n-button {
  382. font-size: max(18px, 13Px);
  383. --n-height: max(40px, 36Px) !important;
  384. }
  385. .n-base-selection-input,
  386. .n-input .n-input__input-el,
  387. .n-input .n-input__textarea-el {
  388. font-size: max(15px, 13Px) !important;
  389. }
  390. .n-base-selection
  391. .n-base-selection-label
  392. .n-base-selection-label__render-label {
  393. font-size: max(15px, 13Px) !important;
  394. }
  395. .n-select-menu .n-button {
  396. --n-height: 28px !important;
  397. }
  398. .n-form-item-label__text {
  399. font-size: max(15px, 13Px);
  400. }
  401. .n-date-panel {
  402. .n-date-panel-actions__suffix,
  403. .n-time-picker-panel {
  404. .n-button {
  405. font-size: 12px;
  406. height: 32px !important;
  407. line-height: 32px;
  408. padding: 0 13px !important;
  409. border-radius: 6px;
  410. }
  411. }
  412. }
  413. .only-child-select {
  414. all: revert;
  415. }
  416. .html-to-dom {
  417. div,
  418. span,
  419. applet,
  420. object,
  421. iframe,
  422. h1,
  423. h2,
  424. h3,
  425. h4,
  426. h5,
  427. h6,
  428. p,
  429. blockquote,
  430. pre,
  431. a,
  432. abbr,
  433. acronym,
  434. address,
  435. big,
  436. cite,
  437. code,
  438. del,
  439. dfn,
  440. em,
  441. img,
  442. ins,
  443. kbd,
  444. q,
  445. s,
  446. samp,
  447. small,
  448. strike,
  449. strong,
  450. sub,
  451. sup,
  452. tt,
  453. var,
  454. b,
  455. u,
  456. i,
  457. center,
  458. dl,
  459. dt,
  460. dd,
  461. ol,
  462. ul,
  463. li,
  464. fieldset,
  465. form,
  466. label,
  467. legend,
  468. table,
  469. caption,
  470. tbody,
  471. tfoot,
  472. thead,
  473. tr,
  474. th,
  475. td,
  476. article,
  477. aside,
  478. canvas,
  479. details,
  480. embed,
  481. figure,
  482. figcaption,
  483. footer,
  484. header,
  485. hgroup,
  486. menu,
  487. nav,
  488. output,
  489. ruby,
  490. section,
  491. summary,
  492. time,
  493. mark,
  494. audio,
  495. video,
  496. hr {
  497. all: revert;
  498. }
  499. hr {
  500. border-top: 1px solid #d2d2d2;
  501. }
  502. }
  503. .cardPreviewGuide {
  504. width: 920px;
  505. overflow: hidden;
  506. :global {
  507. .n-card__content {
  508. height: 517px;
  509. overflow: hidden;
  510. }
  511. .n-card-header__main {
  512. max-width: 60%;
  513. margin: 0 auto;
  514. white-space: nowrap;
  515. overflow: hidden;
  516. text-overflow: ellipsis;
  517. }
  518. }
  519. }
  520. .popoverClassF1 {
  521. border-radius: 12Px !important;
  522. width: 320Px !important;
  523. max-width: 320Px !important;
  524. .driver-popover-close-btn {
  525. font-size: 22Px;
  526. height: auto;
  527. margin-right: 5Px;
  528. font-size: 400 !important;
  529. }
  530. .driver-popover-arrow {
  531. left: 50%;
  532. margin-left: -5px;
  533. right: revert !important;
  534. }
  535. .driver-popover-title {
  536. font-size: 16Px;
  537. }
  538. .driver-popover-description {
  539. padding-top: 8Px;
  540. font-size: 14Px;
  541. color: #777777;
  542. }
  543. .driver-popover-next-btn {
  544. background: linear-gradient(312deg, #1b7af8 0%, #3cbbff 100%);
  545. border-radius: 6Px;
  546. font-weight: 600;
  547. font-size: 14Px;
  548. color: #FFFFFF;
  549. padding: 6Px 12Px;
  550. text-shadow: none !important;
  551. border: 0 !important;
  552. }
  553. }