add.scss 1.5 KB

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