edit.scss 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  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. ::v-deep .detail_pic_container{
  15. display: flex;
  16. flex-direction: column;
  17. .tip{
  18. font-size:24rpx;
  19. }
  20. }
  21. .imgs_scroll{
  22. width: calc(100vw - 80rpx);
  23. display: flex;
  24. gap: 20rpx;
  25. }
  26. }
  27. }
  28. .btn_group {
  29. position: fixed;
  30. bottom: 0;
  31. padding: 20rpx;
  32. display: grid;
  33. gap: 10px;
  34. box-shadow: 0 4px 25px 2px rgba(0, 0, 0, 0.1);
  35. background: #fff;
  36. z-index: 1;
  37. width:fill-available;
  38. &.col-2{
  39. grid-template-columns: 1fr 1fr;
  40. }
  41. }
  42. ::v-deep .u-form-item {
  43. .recycle_bottom_desc {
  44. display: flex;
  45. flex-direction: column;
  46. gap: 20rpx;
  47. width: 100%;
  48. }
  49. .u-form-item__body {
  50. display: flex;
  51. flex-direction: column !important;
  52. gap: 20rpx;
  53. }
  54. &.u-form-item-row {
  55. .u-form-item__body {
  56. flex-direction: row !important;
  57. .u-form-item__body__left {
  58. width: auto !important;
  59. }
  60. }
  61. }
  62. &.u-form-item-col {
  63. .u-form-item__body__right__content__slot {
  64. flex-direction: column !important;
  65. align-items: normal !important;
  66. }
  67. }
  68. }