add.scss 1.4 KB

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