| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172 |
- .add_page {
- background-color: #f9fafb;
- height: 100%;
- padding: 20rpx;
- .form_list {
- background-color: #fff;
- padding: 0 20rpx;
- margin-bottom: 120rpx;
- .btn_group_recognition{
- padding-top:10rpx;
- display: flex;
- gap: 20rpx;
- }
- ::v-deep .detail_pic_container{
- display: flex;
- flex-direction: column;
- .tip{
- font-size:24rpx;
- }
- }
- .imgs_scroll{
- width: calc(100vw - 80rpx);
- display: flex;
- gap: 20rpx;
- }
- }
- }
- .btn_group {
- position: fixed;
- bottom: 0;
- padding: 20rpx;
- display: grid;
- grid-template-columns: 1fr 1fr;
- gap: 10px;
- box-shadow: 0 4px 25px 2px rgba(0, 0, 0, 0.1);
- background: #fff;
- z-index: 1;
- width:fill-available;
- }
- ::v-deep .u-form-item {
- .recycle_bottom_desc {
- display: flex;
- flex-direction: column;
- gap: 20rpx;
- width: 100%;
- }
- .u-form-item__body {
- display: flex;
- flex-direction: column !important;
- gap: 20rpx;
- }
- &.u-form-item-row {
- .u-form-item__body {
- flex-direction: row !important;
- .u-form-item__body__left {
- width: auto !important;
- }
- }
- }
- &.u-form-item-col {
- .u-form-item__body__right__content__slot {
- flex-direction: column !important;
- align-items: normal !important;
- }
- }
- }
|