add.scss 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. .add_page {
  2. background-color: #f9fafb;
  3. height: 100%;
  4. padding: 20rpx;
  5. .form_list {
  6. background-color: #fff;
  7. padding: 0 20rpx;
  8. margin-bottom: 120rpx;
  9. .btn_group_recognition{
  10. padding-top:10rpx;
  11. display: flex;
  12. gap: 20rpx;
  13. }
  14. }
  15. }
  16. .btn_group {
  17. position: fixed;
  18. bottom: 0;
  19. padding: 20rpx;
  20. display: grid;
  21. grid-template-columns: 1fr 1fr;
  22. gap: 10px;
  23. box-shadow: 0 4px 25px 2px rgba(0, 0, 0, 0.1);
  24. background: #fff;
  25. z-index: 1;
  26. width:fill-available;
  27. }
  28. ::v-deep .u-form-item {
  29. .recycle_bottom_desc {
  30. display: flex;
  31. flex-direction: column;
  32. gap: 20rpx;
  33. width: 100%;
  34. }
  35. .u-form-item__body {
  36. display: flex;
  37. flex-direction: column !important;
  38. gap: 20rpx;
  39. }
  40. &.u-form-item-row {
  41. .u-form-item__body {
  42. flex-direction: row !important;
  43. .u-form-item__body__left {
  44. width: auto !important;
  45. }
  46. }
  47. }
  48. &.u-form-item-col {
  49. .u-form-item__body__right__content__slot {
  50. flex-direction: column !important;
  51. align-items: normal !important;
  52. }
  53. }
  54. }