2269 lines
52 KiB
CSS
2269 lines
52 KiB
CSS
/* 多行省略 */
|
||
.multi-line-omit[data-v-eb8e0cdd] {
|
||
word-break: break-all;
|
||
text-overflow: ellipsis;
|
||
overflow: hidden;
|
||
display: -webkit-box;
|
||
-webkit-line-clamp: 2;
|
||
-webkit-box-orient: vertical;
|
||
}
|
||
|
||
/* 单行省略 */
|
||
.one-line-omit[data-v-eb8e0cdd] {
|
||
width: 100%;
|
||
white-space: nowrap;
|
||
overflow: hidden;
|
||
text-overflow: ellipsis;
|
||
}
|
||
.u-status-bar[data-v-eb8e0cdd] {
|
||
width: 100%;
|
||
}
|
||
/* 多行省略 */
|
||
.multi-line-omit[data-v-5cec8177] {
|
||
word-break: break-all;
|
||
text-overflow: ellipsis;
|
||
overflow: hidden;
|
||
display: -webkit-box;
|
||
-webkit-line-clamp: 2;
|
||
-webkit-box-orient: vertical;
|
||
}
|
||
/* 单行省略 */
|
||
.one-line-omit[data-v-5cec8177] {
|
||
width: 100%;
|
||
white-space: nowrap;
|
||
overflow: hidden;
|
||
text-overflow: ellipsis;
|
||
}
|
||
.u-empty[data-v-5cec8177],
|
||
.u-empty__wrap[data-v-5cec8177],
|
||
.u-tabs[data-v-5cec8177],
|
||
.u-tabs__wrapper[data-v-5cec8177],
|
||
.u-tabs__wrapper__scroll-view-wrapper[data-v-5cec8177],
|
||
.u-tabs__wrapper__scroll-view[data-v-5cec8177],
|
||
.u-tabs__wrapper__nav[data-v-5cec8177],
|
||
.u-tabs__wrapper__nav__line[data-v-5cec8177],
|
||
.up-empty[data-v-5cec8177],
|
||
.up-empty__wrap[data-v-5cec8177],
|
||
.up-tabs[data-v-5cec8177],
|
||
.up-tabs__wrapper[data-v-5cec8177],
|
||
.up-tabs__wrapper__scroll-view-wrapper[data-v-5cec8177],
|
||
.up-tabs__wrapper__scroll-view[data-v-5cec8177],
|
||
.up-tabs__wrapper__nav[data-v-5cec8177],
|
||
.up-tabs__wrapper__nav__line[data-v-5cec8177] {
|
||
display: flex;
|
||
flex-direction: column;
|
||
flex-shrink: 0;
|
||
flex-grow: 0;
|
||
flex-basis: auto;
|
||
align-items: stretch;
|
||
align-content: flex-start;
|
||
}
|
||
|
||
/**
|
||
* vue版本动画内置的动画模式有如下:
|
||
* fade:淡入
|
||
* zoom:缩放
|
||
* fade-zoom:缩放淡入
|
||
* fade-up:上滑淡入
|
||
* fade-down:下滑淡入
|
||
* fade-left:左滑淡入
|
||
* fade-right:右滑淡入
|
||
* slide-up:上滑进入
|
||
* slide-down:下滑进入
|
||
* slide-left:左滑进入
|
||
* slide-right:右滑进入
|
||
*/
|
||
.u-fade-enter-active[data-v-5cec8177],
|
||
.u-fade-leave-active[data-v-5cec8177] {
|
||
transition-property: opacity;
|
||
}
|
||
.u-fade-enter[data-v-5cec8177],
|
||
.u-fade-leave-to[data-v-5cec8177] {
|
||
opacity: 0;
|
||
}
|
||
.u-fade-zoom-enter[data-v-5cec8177],
|
||
.u-fade-zoom-leave-to[data-v-5cec8177] {
|
||
transform: scale(0.95);
|
||
opacity: 0;
|
||
}
|
||
.u-fade-zoom-enter-active[data-v-5cec8177],
|
||
.u-fade-zoom-leave-active[data-v-5cec8177] {
|
||
transition-property: transform, opacity;
|
||
}
|
||
.u-fade-down-enter-active[data-v-5cec8177],
|
||
.u-fade-down-leave-active[data-v-5cec8177],
|
||
.u-fade-left-enter-active[data-v-5cec8177],
|
||
.u-fade-left-leave-active[data-v-5cec8177],
|
||
.u-fade-right-enter-active[data-v-5cec8177],
|
||
.u-fade-right-leave-active[data-v-5cec8177],
|
||
.u-fade-up-enter-active[data-v-5cec8177],
|
||
.u-fade-up-leave-active[data-v-5cec8177] {
|
||
transition-property: opacity, transform;
|
||
}
|
||
.u-fade-up-enter[data-v-5cec8177],
|
||
.u-fade-up-leave-to[data-v-5cec8177] {
|
||
transform: translate3d(0, 100%, 0);
|
||
opacity: 0;
|
||
}
|
||
.u-fade-down-enter[data-v-5cec8177],
|
||
.u-fade-down-leave-to[data-v-5cec8177] {
|
||
transform: translate3d(0, -100%, 0);
|
||
opacity: 0;
|
||
}
|
||
.u-fade-left-enter[data-v-5cec8177],
|
||
.u-fade-left-leave-to[data-v-5cec8177] {
|
||
transform: translate3d(-100%, 0, 0);
|
||
opacity: 0;
|
||
}
|
||
.u-fade-right-enter[data-v-5cec8177],
|
||
.u-fade-right-leave-to[data-v-5cec8177] {
|
||
transform: translate3d(100%, 0, 0);
|
||
opacity: 0;
|
||
}
|
||
.u-slide-down-enter-active[data-v-5cec8177],
|
||
.u-slide-down-leave-active[data-v-5cec8177],
|
||
.u-slide-left-enter-active[data-v-5cec8177],
|
||
.u-slide-left-leave-active[data-v-5cec8177],
|
||
.u-slide-right-enter-active[data-v-5cec8177],
|
||
.u-slide-right-leave-active[data-v-5cec8177],
|
||
.u-slide-up-enter-active[data-v-5cec8177],
|
||
.u-slide-up-leave-active[data-v-5cec8177] {
|
||
transition-property: transform;
|
||
}
|
||
.u-slide-up-enter[data-v-5cec8177],
|
||
.u-slide-up-leave-to[data-v-5cec8177] {
|
||
transform: translate3d(0, 100%, 0);
|
||
}
|
||
.u-slide-down-enter[data-v-5cec8177],
|
||
.u-slide-down-leave-to[data-v-5cec8177] {
|
||
transform: translate3d(0, -100%, 0);
|
||
}
|
||
.u-slide-left-enter[data-v-5cec8177],
|
||
.u-slide-left-leave-to[data-v-5cec8177] {
|
||
transform: translate3d(-100%, 0, 0);
|
||
}
|
||
.u-slide-right-enter[data-v-5cec8177],
|
||
.u-slide-right-leave-to[data-v-5cec8177] {
|
||
transform: translate3d(100%, 0, 0);
|
||
}
|
||
.u-zoom-enter-active[data-v-5cec8177],
|
||
.u-zoom-leave-active[data-v-5cec8177] {
|
||
transition-property: transform;
|
||
}
|
||
.u-zoom-enter[data-v-5cec8177],
|
||
.u-zoom-leave-to[data-v-5cec8177] {
|
||
transform: scale(0.95);
|
||
}
|
||
/* 多行省略 */
|
||
.multi-line-omit[data-v-9112bed9] {
|
||
word-break: break-all;
|
||
text-overflow: ellipsis;
|
||
overflow: hidden;
|
||
display: -webkit-box;
|
||
-webkit-line-clamp: 2;
|
||
-webkit-box-orient: vertical;
|
||
}
|
||
/* 单行省略 */
|
||
.one-line-omit[data-v-9112bed9] {
|
||
width: 100%;
|
||
white-space: nowrap;
|
||
overflow: hidden;
|
||
text-overflow: ellipsis;
|
||
}
|
||
.u-empty[data-v-9112bed9],
|
||
.u-empty__wrap[data-v-9112bed9],
|
||
.u-tabs[data-v-9112bed9],
|
||
.u-tabs__wrapper[data-v-9112bed9],
|
||
.u-tabs__wrapper__scroll-view-wrapper[data-v-9112bed9],
|
||
.u-tabs__wrapper__scroll-view[data-v-9112bed9],
|
||
.u-tabs__wrapper__nav[data-v-9112bed9],
|
||
.u-tabs__wrapper__nav__line[data-v-9112bed9],
|
||
.up-empty[data-v-9112bed9],
|
||
.up-empty__wrap[data-v-9112bed9],
|
||
.up-tabs[data-v-9112bed9],
|
||
.up-tabs__wrapper[data-v-9112bed9],
|
||
.up-tabs__wrapper__scroll-view-wrapper[data-v-9112bed9],
|
||
.up-tabs__wrapper__scroll-view[data-v-9112bed9],
|
||
.up-tabs__wrapper__nav[data-v-9112bed9],
|
||
.up-tabs__wrapper__nav__line[data-v-9112bed9] {
|
||
display: flex;
|
||
flex-direction: column;
|
||
flex-shrink: 0;
|
||
flex-grow: 0;
|
||
flex-basis: auto;
|
||
align-items: stretch;
|
||
align-content: flex-start;
|
||
}
|
||
.u-overlay[data-v-9112bed9] {
|
||
position: fixed;
|
||
top: 0;
|
||
left: 0;
|
||
width: 100%;
|
||
height: 100%;
|
||
background-color: rgba(0, 0, 0, 0.7);
|
||
}
|
||
/* 多行省略 */
|
||
.multi-line-omit[data-v-ac70166d] {
|
||
word-break: break-all;
|
||
text-overflow: ellipsis;
|
||
overflow: hidden;
|
||
display: -webkit-box;
|
||
-webkit-line-clamp: 2;
|
||
-webkit-box-orient: vertical;
|
||
}
|
||
/* 单行省略 */
|
||
.one-line-omit[data-v-ac70166d] {
|
||
width: 100%;
|
||
white-space: nowrap;
|
||
overflow: hidden;
|
||
text-overflow: ellipsis;
|
||
}
|
||
.u-empty[data-v-ac70166d],
|
||
.u-empty__wrap[data-v-ac70166d],
|
||
.u-tabs[data-v-ac70166d],
|
||
.u-tabs__wrapper[data-v-ac70166d],
|
||
.u-tabs__wrapper__scroll-view-wrapper[data-v-ac70166d],
|
||
.u-tabs__wrapper__scroll-view[data-v-ac70166d],
|
||
.u-tabs__wrapper__nav[data-v-ac70166d],
|
||
.u-tabs__wrapper__nav__line[data-v-ac70166d],
|
||
.up-empty[data-v-ac70166d],
|
||
.up-empty__wrap[data-v-ac70166d],
|
||
.up-tabs[data-v-ac70166d],
|
||
.up-tabs__wrapper[data-v-ac70166d],
|
||
.up-tabs__wrapper__scroll-view-wrapper[data-v-ac70166d],
|
||
.up-tabs__wrapper__scroll-view[data-v-ac70166d],
|
||
.up-tabs__wrapper__nav[data-v-ac70166d],
|
||
.up-tabs__wrapper__nav__line[data-v-ac70166d] {
|
||
display: flex;
|
||
flex-direction: column;
|
||
flex-shrink: 0;
|
||
flex-grow: 0;
|
||
flex-basis: auto;
|
||
align-items: stretch;
|
||
align-content: flex-start;
|
||
}
|
||
@font-face {
|
||
font-family: "uicon-iconfont";
|
||
src: url("https://at.alicdn.com/t/font_2225171_8kdcwk4po24.ttf") format("truetype");
|
||
}
|
||
.u-icon[data-v-ac70166d] {
|
||
display: flex;
|
||
align-items: center;
|
||
}
|
||
.u-icon--left[data-v-ac70166d] {
|
||
flex-direction: row-reverse;
|
||
align-items: center;
|
||
}
|
||
.u-icon--right[data-v-ac70166d] {
|
||
flex-direction: row;
|
||
align-items: center;
|
||
}
|
||
.u-icon--top[data-v-ac70166d] {
|
||
flex-direction: column-reverse;
|
||
justify-content: center;
|
||
}
|
||
.u-icon--bottom[data-v-ac70166d] {
|
||
flex-direction: column;
|
||
justify-content: center;
|
||
}
|
||
.u-icon__icon[data-v-ac70166d] {
|
||
font-family: uicon-iconfont;
|
||
position: relative;
|
||
|
||
display: flex;
|
||
|
||
flex-direction: row;
|
||
align-items: center;
|
||
}
|
||
.u-icon__icon--primary[data-v-ac70166d] {
|
||
color: #3c9cff;
|
||
}
|
||
.u-icon__icon--success[data-v-ac70166d] {
|
||
color: #5ac725;
|
||
}
|
||
.u-icon__icon--error[data-v-ac70166d] {
|
||
color: #f56c6c;
|
||
}
|
||
.u-icon__icon--warning[data-v-ac70166d] {
|
||
color: #f9ae3d;
|
||
}
|
||
.u-icon__icon--info[data-v-ac70166d] {
|
||
color: #909399;
|
||
}
|
||
.u-icon__img[data-v-ac70166d] {
|
||
height: auto;
|
||
will-change: transform;
|
||
}
|
||
.u-icon__label[data-v-ac70166d] {
|
||
line-height: 1;
|
||
}
|
||
/* 多行省略 */
|
||
.multi-line-omit[data-v-f3d22cfe] {
|
||
word-break: break-all;
|
||
text-overflow: ellipsis;
|
||
overflow: hidden;
|
||
display: -webkit-box;
|
||
-webkit-line-clamp: 2;
|
||
-webkit-box-orient: vertical;
|
||
}
|
||
|
||
/* 单行省略 */
|
||
.one-line-omit[data-v-f3d22cfe] {
|
||
width: 100%;
|
||
white-space: nowrap;
|
||
overflow: hidden;
|
||
text-overflow: ellipsis;
|
||
}
|
||
.u-safe-bottom[data-v-f3d22cfe] {
|
||
width: 100%;
|
||
}
|
||
/* 多行省略 */
|
||
.multi-line-omit[data-v-05c24e9b] {
|
||
word-break: break-all;
|
||
text-overflow: ellipsis;
|
||
overflow: hidden;
|
||
display: -webkit-box;
|
||
-webkit-line-clamp: 2;
|
||
-webkit-box-orient: vertical;
|
||
}
|
||
/* 单行省略 */
|
||
.one-line-omit[data-v-05c24e9b] {
|
||
width: 100%;
|
||
white-space: nowrap;
|
||
overflow: hidden;
|
||
text-overflow: ellipsis;
|
||
}
|
||
.u-empty[data-v-05c24e9b],
|
||
.u-empty__wrap[data-v-05c24e9b],
|
||
.u-tabs[data-v-05c24e9b],
|
||
.u-tabs__wrapper[data-v-05c24e9b],
|
||
.u-tabs__wrapper__scroll-view-wrapper[data-v-05c24e9b],
|
||
.u-tabs__wrapper__scroll-view[data-v-05c24e9b],
|
||
.u-tabs__wrapper__nav[data-v-05c24e9b],
|
||
.u-tabs__wrapper__nav__line[data-v-05c24e9b],
|
||
.up-empty[data-v-05c24e9b],
|
||
.up-empty__wrap[data-v-05c24e9b],
|
||
.up-tabs[data-v-05c24e9b],
|
||
.up-tabs__wrapper[data-v-05c24e9b],
|
||
.up-tabs__wrapper__scroll-view-wrapper[data-v-05c24e9b],
|
||
.up-tabs__wrapper__scroll-view[data-v-05c24e9b],
|
||
.up-tabs__wrapper__nav[data-v-05c24e9b],
|
||
.up-tabs__wrapper__nav__line[data-v-05c24e9b] {
|
||
display: flex;
|
||
flex-direction: column;
|
||
flex-shrink: 0;
|
||
flex-grow: 0;
|
||
flex-basis: auto;
|
||
align-items: stretch;
|
||
align-content: flex-start;
|
||
}
|
||
.u-popup[data-v-05c24e9b] {
|
||
flex: 1;
|
||
}
|
||
.u-popup__trigger[data-v-05c24e9b] {
|
||
position: relative;
|
||
}
|
||
.u-popup__trigger__cover[data-v-05c24e9b] {
|
||
position: absolute;
|
||
top: 0;
|
||
left: 0;
|
||
right: 0;
|
||
bottom: 0;
|
||
}
|
||
.u-popup__content[data-v-05c24e9b] {
|
||
background-color: #fff;
|
||
position: relative;
|
||
}
|
||
.u-popup__content--round-top[data-v-05c24e9b] {
|
||
border-top-left-radius: 0;
|
||
border-top-right-radius: 0;
|
||
border-bottom-left-radius: 10px;
|
||
border-bottom-right-radius: 10px;
|
||
}
|
||
.u-popup__content--round-left[data-v-05c24e9b] {
|
||
border-top-left-radius: 0;
|
||
border-top-right-radius: 10px;
|
||
border-bottom-left-radius: 0;
|
||
border-bottom-right-radius: 10px;
|
||
}
|
||
.u-popup__content--round-right[data-v-05c24e9b] {
|
||
border-top-left-radius: 10px;
|
||
border-top-right-radius: 0;
|
||
border-bottom-left-radius: 10px;
|
||
border-bottom-right-radius: 0;
|
||
}
|
||
.u-popup__content--round-bottom[data-v-05c24e9b] {
|
||
border-top-left-radius: 10px;
|
||
border-top-right-radius: 10px;
|
||
border-bottom-left-radius: 0;
|
||
border-bottom-right-radius: 0;
|
||
}
|
||
.u-popup__content--round-center[data-v-05c24e9b] {
|
||
border-top-left-radius: 10px;
|
||
border-top-right-radius: 10px;
|
||
border-bottom-left-radius: 10px;
|
||
border-bottom-right-radius: 10px;
|
||
}
|
||
.u-popup__content__close[data-v-05c24e9b] {
|
||
position: absolute;
|
||
}
|
||
.u-popup__content__close--hover[data-v-05c24e9b] {
|
||
opacity: 0.4;
|
||
}
|
||
.u-popup__content__close--top-left[data-v-05c24e9b] {
|
||
top: 15px;
|
||
left: 15px;
|
||
}
|
||
.u-popup__content__close--top-right[data-v-05c24e9b] {
|
||
top: 15px;
|
||
right: 15px;
|
||
}
|
||
.u-popup__content__close--bottom-left[data-v-05c24e9b] {
|
||
bottom: 15px;
|
||
left: 15px;
|
||
}
|
||
.u-popup__content__close--bottom-right[data-v-05c24e9b] {
|
||
right: 15px;
|
||
bottom: 15px;
|
||
}
|
||
/* 多行省略 */
|
||
.multi-line-omit[data-v-a6aad22d] {
|
||
word-break: break-all;
|
||
text-overflow: ellipsis;
|
||
overflow: hidden;
|
||
display: -webkit-box;
|
||
-webkit-line-clamp: 2;
|
||
-webkit-box-orient: vertical;
|
||
}
|
||
|
||
/* 单行省略 */
|
||
.one-line-omit[data-v-a6aad22d] {
|
||
width: 100%;
|
||
white-space: nowrap;
|
||
overflow: hidden;
|
||
text-overflow: ellipsis;
|
||
}
|
||
.app-header[data-v-a6aad22d] {
|
||
width: 100vw;
|
||
z-index: 9999;
|
||
}
|
||
.app-header.sticky[data-v-a6aad22d] {
|
||
position: fixed;
|
||
left: 0;
|
||
top: 0;
|
||
}
|
||
.app-header__content[data-v-a6aad22d] {
|
||
width: 100vw;
|
||
height: 2.75rem;
|
||
display: flex;
|
||
flex-direction: row;
|
||
align-items: center;
|
||
}
|
||
.app-header__content .content-title[data-v-a6aad22d] {
|
||
flex: 1;
|
||
display: flex;
|
||
align-items: center;
|
||
justify-content: center;
|
||
}
|
||
.app-header__content .content-title__context[data-v-a6aad22d] {
|
||
font-size: 1rem;
|
||
font-family: Medium;
|
||
}
|
||
.app-header__content .content-slot[data-v-a6aad22d] {
|
||
min-width: 2.75rem;
|
||
display: flex;
|
||
align-items: center;
|
||
justify-content: center;
|
||
}
|
||
/* 多行省略 */
|
||
.multi-line-omit[data-v-df79975b] {
|
||
word-break: break-all;
|
||
text-overflow: ellipsis;
|
||
overflow: hidden;
|
||
display: -webkit-box;
|
||
-webkit-line-clamp: 2;
|
||
-webkit-box-orient: vertical;
|
||
}
|
||
/* 单行省略 */
|
||
.one-line-omit[data-v-df79975b] {
|
||
width: 100%;
|
||
white-space: nowrap;
|
||
overflow: hidden;
|
||
text-overflow: ellipsis;
|
||
}
|
||
.u-empty[data-v-df79975b],
|
||
.u-empty__wrap[data-v-df79975b],
|
||
.u-tabs[data-v-df79975b],
|
||
.u-tabs__wrapper[data-v-df79975b],
|
||
.u-tabs__wrapper__scroll-view-wrapper[data-v-df79975b],
|
||
.u-tabs__wrapper__scroll-view[data-v-df79975b],
|
||
.u-tabs__wrapper__nav[data-v-df79975b],
|
||
.u-tabs__wrapper__nav__line[data-v-df79975b],
|
||
.up-empty[data-v-df79975b],
|
||
.up-empty__wrap[data-v-df79975b],
|
||
.up-tabs[data-v-df79975b],
|
||
.up-tabs__wrapper[data-v-df79975b],
|
||
.up-tabs__wrapper__scroll-view-wrapper[data-v-df79975b],
|
||
.up-tabs__wrapper__scroll-view[data-v-df79975b],
|
||
.up-tabs__wrapper__nav[data-v-df79975b],
|
||
.up-tabs__wrapper__nav__line[data-v-df79975b] {
|
||
display: flex;
|
||
flex-direction: column;
|
||
flex-shrink: 0;
|
||
flex-grow: 0;
|
||
flex-basis: auto;
|
||
align-items: stretch;
|
||
align-content: flex-start;
|
||
}
|
||
.u-input[data-v-df79975b] {
|
||
|
||
display: flex;
|
||
|
||
flex-direction: row;
|
||
align-items: center;
|
||
justify-content: space-between;
|
||
flex: 1;
|
||
}
|
||
.u-input--radius[data-v-df79975b], .u-input--square[data-v-df79975b] {
|
||
border-radius: 4px;
|
||
}
|
||
.u-input--no-radius[data-v-df79975b] {
|
||
border-radius: 0;
|
||
}
|
||
.u-input--circle[data-v-df79975b] {
|
||
border-radius: 100px;
|
||
}
|
||
.u-input__content[data-v-df79975b] {
|
||
flex: 1;
|
||
|
||
display: flex;
|
||
|
||
flex-direction: row;
|
||
align-items: center;
|
||
justify-content: space-between;
|
||
}
|
||
.u-input__content__field-wrapper[data-v-df79975b] {
|
||
position: relative;
|
||
|
||
display: flex;
|
||
|
||
flex-direction: row;
|
||
margin: 0;
|
||
flex: 1;
|
||
}
|
||
.u-input__content__field-wrapper__field[data-v-df79975b] {
|
||
line-height: 26px;
|
||
text-align: left;
|
||
color: #303133;
|
||
height: 24px;
|
||
font-size: 15px;
|
||
flex: 1;
|
||
}
|
||
.u-input__content__clear[data-v-df79975b] {
|
||
width: 20px;
|
||
height: 20px;
|
||
border-radius: 100px;
|
||
background-color: #c6c7cb;
|
||
|
||
display: flex;
|
||
|
||
flex-direction: row;
|
||
align-items: center;
|
||
justify-content: center;
|
||
transform: scale(0.82);
|
||
margin-left: 4px;
|
||
}
|
||
.u-input__content__subfix-icon[data-v-df79975b] {
|
||
margin-left: 4px;
|
||
}
|
||
.u-input__content__prefix-icon[data-v-df79975b] {
|
||
margin-right: 4px;
|
||
}
|
||
|
||
.tki-qrcode[data-v-022c77d0] {
|
||
position: relative;
|
||
}
|
||
.tki-qrcode-canvas[data-v-022c77d0] {
|
||
position: fixed;
|
||
top: -3124.96875rem;
|
||
left: -3124.96875rem;
|
||
z-index: -99999;
|
||
}
|
||
|
||
/* 多行省略 */
|
||
.multi-line-omit[data-v-e2942c83] {
|
||
word-break: break-all;
|
||
text-overflow: ellipsis;
|
||
overflow: hidden;
|
||
display: -webkit-box;
|
||
-webkit-line-clamp: 2;
|
||
-webkit-box-orient: vertical;
|
||
}
|
||
|
||
/* 单行省略 */
|
||
.one-line-omit[data-v-e2942c83] {
|
||
width: 100%;
|
||
white-space: nowrap;
|
||
overflow: hidden;
|
||
text-overflow: ellipsis;
|
||
}
|
||
.container[data-v-e2942c83] {
|
||
overflow-wrap: break-word;
|
||
word-break: normal;
|
||
-webkit-hyphens: auto;
|
||
hyphens: auto;
|
||
/* 支持连字符换行 */
|
||
}
|
||
|
||
/* 中文强制换行 */
|
||
.chinese-text[data-v-e2942c83] {
|
||
word-break: break-all;
|
||
}
|
||
.input-box[data-v-e2942c83] {
|
||
background-color: white;
|
||
box-sizing: border-box;
|
||
padding: 0 0.5rem;
|
||
border-radius: 0.75rem;
|
||
margin: 0 0 1rem 0;
|
||
}
|
||
.input-box .u-textarea[data-v-e2942c83] {
|
||
padding: 0 !important;
|
||
font-size: 0.75rem !important;
|
||
color: #999999 !important;
|
||
}
|
||
.input-box .input-item[data-v-e2942c83] {
|
||
box-sizing: border-box;
|
||
padding: 0.5rem 0;
|
||
color: #222222;
|
||
font-size: 0.875rem;
|
||
font-weight: 400;
|
||
}
|
||
.input-box .input-item .item-title[data-v-e2942c83] {
|
||
font-size: 1rem;
|
||
color: #333333;
|
||
}
|
||
.input-box .input-item .item-text[data-v-e2942c83] {
|
||
font-weight: 400;
|
||
font-size: 0.84375rem;
|
||
color: #999999;
|
||
}
|
||
.codeBox[data-v-e2942c83] {
|
||
padding: 1.125rem 0.75rem 0.75rem 0.5625rem;
|
||
display: flex;
|
||
}
|
||
.codeBox .codeBoxText[data-v-e2942c83] {
|
||
margin-left: 1rem;
|
||
}
|
||
/* 多行省略 */
|
||
.multi-line-omit[data-v-8dd5928e] {
|
||
word-break: break-all;
|
||
text-overflow: ellipsis;
|
||
overflow: hidden;
|
||
display: -webkit-box;
|
||
-webkit-line-clamp: 2;
|
||
-webkit-box-orient: vertical;
|
||
}
|
||
/* 单行省略 */
|
||
.one-line-omit[data-v-8dd5928e] {
|
||
width: 100%;
|
||
white-space: nowrap;
|
||
overflow: hidden;
|
||
text-overflow: ellipsis;
|
||
}
|
||
.u-empty[data-v-8dd5928e],
|
||
.u-empty__wrap[data-v-8dd5928e],
|
||
.u-tabs[data-v-8dd5928e],
|
||
.u-tabs__wrapper[data-v-8dd5928e],
|
||
.u-tabs__wrapper__scroll-view-wrapper[data-v-8dd5928e],
|
||
.u-tabs__wrapper__scroll-view[data-v-8dd5928e],
|
||
.u-tabs__wrapper__nav[data-v-8dd5928e],
|
||
.u-tabs__wrapper__nav__line[data-v-8dd5928e],
|
||
.up-empty[data-v-8dd5928e],
|
||
.up-empty__wrap[data-v-8dd5928e],
|
||
.up-tabs[data-v-8dd5928e],
|
||
.up-tabs__wrapper[data-v-8dd5928e],
|
||
.up-tabs__wrapper__scroll-view-wrapper[data-v-8dd5928e],
|
||
.up-tabs__wrapper__scroll-view[data-v-8dd5928e],
|
||
.up-tabs__wrapper__nav[data-v-8dd5928e],
|
||
.up-tabs__wrapper__nav__line[data-v-8dd5928e] {
|
||
display: flex;
|
||
flex-direction: column;
|
||
flex-shrink: 0;
|
||
flex-grow: 0;
|
||
flex-basis: auto;
|
||
align-items: stretch;
|
||
align-content: flex-start;
|
||
}
|
||
.u-empty[data-v-8dd5928e] {
|
||
|
||
display: flex;
|
||
|
||
flex-direction: row;
|
||
flex-direction: column;
|
||
justify-content: center;
|
||
align-items: center;
|
||
}
|
||
.u-empty__text[data-v-8dd5928e] {
|
||
|
||
display: flex;
|
||
|
||
flex-direction: row;
|
||
justify-content: center;
|
||
align-items: center;
|
||
margin-top: 0.625rem;
|
||
}
|
||
.u-slot-wrap[data-v-8dd5928e] {
|
||
|
||
display: flex;
|
||
|
||
flex-direction: row;
|
||
justify-content: center;
|
||
align-items: center;
|
||
margin-top: 0.625rem;
|
||
}
|
||
/* 多行省略 */
|
||
.multi-line-omit[data-v-2af81691] {
|
||
word-break: break-all;
|
||
text-overflow: ellipsis;
|
||
overflow: hidden;
|
||
display: -webkit-box;
|
||
-webkit-line-clamp: 2;
|
||
-webkit-box-orient: vertical;
|
||
}
|
||
/* 单行省略 */
|
||
.one-line-omit[data-v-2af81691] {
|
||
width: 100%;
|
||
white-space: nowrap;
|
||
overflow: hidden;
|
||
text-overflow: ellipsis;
|
||
}
|
||
.u-empty[data-v-2af81691],
|
||
.u-empty__wrap[data-v-2af81691],
|
||
.u-tabs[data-v-2af81691],
|
||
.u-tabs__wrapper[data-v-2af81691],
|
||
.u-tabs__wrapper__scroll-view-wrapper[data-v-2af81691],
|
||
.u-tabs__wrapper__scroll-view[data-v-2af81691],
|
||
.u-tabs__wrapper__nav[data-v-2af81691],
|
||
.u-tabs__wrapper__nav__line[data-v-2af81691],
|
||
.up-empty[data-v-2af81691],
|
||
.up-empty__wrap[data-v-2af81691],
|
||
.up-tabs[data-v-2af81691],
|
||
.up-tabs__wrapper[data-v-2af81691],
|
||
.up-tabs__wrapper__scroll-view-wrapper[data-v-2af81691],
|
||
.up-tabs__wrapper__scroll-view[data-v-2af81691],
|
||
.up-tabs__wrapper__nav[data-v-2af81691],
|
||
.up-tabs__wrapper__nav__line[data-v-2af81691] {
|
||
display: flex;
|
||
flex-direction: column;
|
||
flex-shrink: 0;
|
||
flex-grow: 0;
|
||
flex-basis: auto;
|
||
align-items: stretch;
|
||
align-content: flex-start;
|
||
}
|
||
.u-loading-icon[data-v-2af81691] {
|
||
display: flex;
|
||
flex-direction: row;
|
||
align-items: center;
|
||
justify-content: center;
|
||
color: #c8c9cc;
|
||
}
|
||
.u-loading-icon__text[data-v-2af81691] {
|
||
margin-left: 4px;
|
||
color: #606266;
|
||
font-size: 14px;
|
||
line-height: 20px;
|
||
}
|
||
.u-loading-icon__spinner[data-v-2af81691] {
|
||
width: 30px;
|
||
height: 30px;
|
||
position: relative;
|
||
box-sizing: border-box;
|
||
max-width: 100%;
|
||
max-height: 100%;
|
||
animation: u-rotate-2af81691 1s linear infinite;
|
||
}
|
||
.u-loading-icon__spinner--semicircle[data-v-2af81691] {
|
||
border-width: 2px;
|
||
border-color: transparent;
|
||
border-top-right-radius: 100px;
|
||
border-top-left-radius: 100px;
|
||
border-bottom-left-radius: 100px;
|
||
border-bottom-right-radius: 100px;
|
||
border-style: solid;
|
||
}
|
||
.u-loading-icon__spinner--circle[data-v-2af81691] {
|
||
border-top-right-radius: 100px;
|
||
border-top-left-radius: 100px;
|
||
border-bottom-left-radius: 100px;
|
||
border-bottom-right-radius: 100px;
|
||
border-width: 2px;
|
||
border-top-color: #e5e5e5;
|
||
border-right-color: #e5e5e5;
|
||
border-bottom-color: #e5e5e5;
|
||
border-left-color: #e5e5e5;
|
||
border-style: solid;
|
||
}
|
||
.u-loading-icon--vertical[data-v-2af81691] {
|
||
flex-direction: column;
|
||
}
|
||
[data-v-2af81691]:host {
|
||
font-size: 0px;
|
||
line-height: 1;
|
||
}
|
||
.u-loading-icon__spinner--spinner[data-v-2af81691] {
|
||
animation-timing-function: steps(12);
|
||
}
|
||
.u-loading-icon__text[data-v-2af81691]:empty {
|
||
display: none;
|
||
}
|
||
.u-loading-icon--vertical .u-loading-icon__text[data-v-2af81691] {
|
||
margin: 6px 0 0;
|
||
color: #606266;
|
||
}
|
||
.u-loading-icon__dot[data-v-2af81691] {
|
||
position: absolute;
|
||
top: 0;
|
||
left: 0;
|
||
width: 100%;
|
||
height: 100%;
|
||
}
|
||
.u-loading-icon__dot[data-v-2af81691]:before {
|
||
display: block;
|
||
width: 2px;
|
||
height: 25%;
|
||
margin: 0 auto;
|
||
background-color: currentColor;
|
||
border-radius: 40%;
|
||
content: " ";
|
||
}
|
||
.u-loading-icon__dot[data-v-2af81691]:nth-of-type(1) {
|
||
transform: rotate(30deg);
|
||
opacity: 1;
|
||
}
|
||
.u-loading-icon__dot[data-v-2af81691]:nth-of-type(2) {
|
||
transform: rotate(60deg);
|
||
opacity: 0.9375;
|
||
}
|
||
.u-loading-icon__dot[data-v-2af81691]:nth-of-type(3) {
|
||
transform: rotate(90deg);
|
||
opacity: 0.875;
|
||
}
|
||
.u-loading-icon__dot[data-v-2af81691]:nth-of-type(4) {
|
||
transform: rotate(120deg);
|
||
opacity: 0.8125;
|
||
}
|
||
.u-loading-icon__dot[data-v-2af81691]:nth-of-type(5) {
|
||
transform: rotate(150deg);
|
||
opacity: 0.75;
|
||
}
|
||
.u-loading-icon__dot[data-v-2af81691]:nth-of-type(6) {
|
||
transform: rotate(180deg);
|
||
opacity: 0.6875;
|
||
}
|
||
.u-loading-icon__dot[data-v-2af81691]:nth-of-type(7) {
|
||
transform: rotate(210deg);
|
||
opacity: 0.625;
|
||
}
|
||
.u-loading-icon__dot[data-v-2af81691]:nth-of-type(8) {
|
||
transform: rotate(240deg);
|
||
opacity: 0.5625;
|
||
}
|
||
.u-loading-icon__dot[data-v-2af81691]:nth-of-type(9) {
|
||
transform: rotate(270deg);
|
||
opacity: 0.5;
|
||
}
|
||
.u-loading-icon__dot[data-v-2af81691]:nth-of-type(10) {
|
||
transform: rotate(300deg);
|
||
opacity: 0.4375;
|
||
}
|
||
.u-loading-icon__dot[data-v-2af81691]:nth-of-type(11) {
|
||
transform: rotate(330deg);
|
||
opacity: 0.375;
|
||
}
|
||
.u-loading-icon__dot[data-v-2af81691]:nth-of-type(12) {
|
||
transform: rotate(360deg);
|
||
opacity: 0.3125;
|
||
}
|
||
@keyframes u-rotate-2af81691 {
|
||
0% {
|
||
transform: rotate(0deg);
|
||
}
|
||
to {
|
||
transform: rotate(1turn);
|
||
}
|
||
}
|
||
/* 多行省略 */
|
||
.multi-line-omit[data-v-5ce41ee6] {
|
||
word-break: break-all;
|
||
text-overflow: ellipsis;
|
||
overflow: hidden;
|
||
display: -webkit-box;
|
||
-webkit-line-clamp: 2;
|
||
-webkit-box-orient: vertical;
|
||
}
|
||
/* 单行省略 */
|
||
.one-line-omit[data-v-5ce41ee6] {
|
||
width: 100%;
|
||
white-space: nowrap;
|
||
overflow: hidden;
|
||
text-overflow: ellipsis;
|
||
}
|
||
.u-empty[data-v-5ce41ee6],
|
||
.u-empty__wrap[data-v-5ce41ee6],
|
||
.u-tabs[data-v-5ce41ee6],
|
||
.u-tabs__wrapper[data-v-5ce41ee6],
|
||
.u-tabs__wrapper__scroll-view-wrapper[data-v-5ce41ee6],
|
||
.u-tabs__wrapper__scroll-view[data-v-5ce41ee6],
|
||
.u-tabs__wrapper__nav[data-v-5ce41ee6],
|
||
.u-tabs__wrapper__nav__line[data-v-5ce41ee6],
|
||
.up-empty[data-v-5ce41ee6],
|
||
.up-empty__wrap[data-v-5ce41ee6],
|
||
.up-tabs[data-v-5ce41ee6],
|
||
.up-tabs__wrapper[data-v-5ce41ee6],
|
||
.up-tabs__wrapper__scroll-view-wrapper[data-v-5ce41ee6],
|
||
.up-tabs__wrapper__scroll-view[data-v-5ce41ee6],
|
||
.up-tabs__wrapper__nav[data-v-5ce41ee6],
|
||
.up-tabs__wrapper__nav__line[data-v-5ce41ee6] {
|
||
display: flex;
|
||
flex-direction: column;
|
||
flex-shrink: 0;
|
||
flex-grow: 0;
|
||
flex-basis: auto;
|
||
align-items: stretch;
|
||
align-content: flex-start;
|
||
}
|
||
.u-button[data-v-5ce41ee6] {
|
||
width: 100%;
|
||
white-space: nowrap;
|
||
}
|
||
.u-button__text[data-v-5ce41ee6] {
|
||
white-space: nowrap;
|
||
line-height: 1;
|
||
}
|
||
.u-button[data-v-5ce41ee6]:before {
|
||
position: absolute;
|
||
top: 50%;
|
||
left: 50%;
|
||
width: 100%;
|
||
height: 100%;
|
||
border: inherit;
|
||
border-radius: inherit;
|
||
transform: translate(-50%, -50%);
|
||
opacity: 0;
|
||
content: " ";
|
||
background-color: #000;
|
||
border-color: #000;
|
||
}
|
||
.u-button--active[data-v-5ce41ee6]:before {
|
||
opacity: 0.15;
|
||
}
|
||
.u-button__icon + .u-button__text[data-v-5ce41ee6]:not(:empty), .u-button__loading-text[data-v-5ce41ee6] {
|
||
margin-left: 4px;
|
||
}
|
||
.u-button--plain.u-button--primary[data-v-5ce41ee6] {
|
||
color: #3c9cff;
|
||
}
|
||
.u-button--plain.u-button--info[data-v-5ce41ee6] {
|
||
color: #909399;
|
||
}
|
||
.u-button--plain.u-button--success[data-v-5ce41ee6] {
|
||
color: #5ac725;
|
||
}
|
||
.u-button--plain.u-button--error[data-v-5ce41ee6] {
|
||
color: #f56c6c;
|
||
}
|
||
.u-button--plain.u-button--warning[data-v-5ce41ee6] {
|
||
color: #f9ae3d;
|
||
}
|
||
.u-button[data-v-5ce41ee6] {
|
||
height: 40px;
|
||
position: relative;
|
||
align-items: center;
|
||
justify-content: center;
|
||
|
||
display: flex;
|
||
|
||
flex-direction: row;
|
||
box-sizing: border-box;
|
||
flex-direction: row;
|
||
}
|
||
.u-button__text[data-v-5ce41ee6] {
|
||
font-size: 15px;
|
||
}
|
||
.u-button__loading-text[data-v-5ce41ee6] {
|
||
font-size: 15px;
|
||
margin-left: 4px;
|
||
}
|
||
.u-button--large[data-v-5ce41ee6] {
|
||
width: 100%;
|
||
height: 50px;
|
||
padding: 0 15px;
|
||
}
|
||
.u-button--normal[data-v-5ce41ee6] {
|
||
padding: 0 12px;
|
||
font-size: 14px;
|
||
}
|
||
.u-button--small[data-v-5ce41ee6] {
|
||
min-width: 60px;
|
||
height: 30px;
|
||
padding: 0px 8px;
|
||
font-size: 12px;
|
||
}
|
||
.u-button--mini[data-v-5ce41ee6] {
|
||
height: 22px;
|
||
font-size: 10px;
|
||
min-width: 50px;
|
||
padding: 0px 8px;
|
||
}
|
||
.u-button--disabled[data-v-5ce41ee6] {
|
||
opacity: 0.5;
|
||
}
|
||
.u-button--info[data-v-5ce41ee6] {
|
||
color: #323233;
|
||
background-color: #fff;
|
||
border-color: #ebedf0;
|
||
border-width: 1px;
|
||
border-style: solid;
|
||
}
|
||
.u-button--success[data-v-5ce41ee6] {
|
||
color: #fff;
|
||
background-color: #5ac725;
|
||
border-color: #5ac725;
|
||
border-width: 1px;
|
||
border-style: solid;
|
||
}
|
||
.u-button--primary[data-v-5ce41ee6] {
|
||
color: #fff;
|
||
background-color: #3c9cff;
|
||
border-color: #3c9cff;
|
||
border-width: 1px;
|
||
border-style: solid;
|
||
}
|
||
.u-button--error[data-v-5ce41ee6] {
|
||
color: #fff;
|
||
background-color: #f56c6c;
|
||
border-color: #f56c6c;
|
||
border-width: 1px;
|
||
border-style: solid;
|
||
}
|
||
.u-button--warning[data-v-5ce41ee6] {
|
||
color: #fff;
|
||
background-color: #f9ae3d;
|
||
border-color: #f9ae3d;
|
||
border-width: 1px;
|
||
border-style: solid;
|
||
}
|
||
.u-button--block[data-v-5ce41ee6] {
|
||
|
||
display: flex;
|
||
|
||
flex-direction: row;
|
||
width: 100%;
|
||
}
|
||
.u-button--circle[data-v-5ce41ee6] {
|
||
border-top-right-radius: 100px;
|
||
border-top-left-radius: 100px;
|
||
border-bottom-left-radius: 100px;
|
||
border-bottom-right-radius: 100px;
|
||
}
|
||
.u-button--square[data-v-5ce41ee6] {
|
||
border-bottom-left-radius: 3px;
|
||
border-bottom-right-radius: 3px;
|
||
border-top-left-radius: 3px;
|
||
border-top-right-radius: 3px;
|
||
}
|
||
.u-button__icon[data-v-5ce41ee6] {
|
||
min-width: 1em;
|
||
line-height: inherit !important;
|
||
vertical-align: top;
|
||
}
|
||
.u-button--plain[data-v-5ce41ee6] {
|
||
background-color: #fff;
|
||
}
|
||
.u-button--hairline[data-v-5ce41ee6] {
|
||
border-width: 0.5px !important;
|
||
}
|
||
/* 多行省略 */
|
||
.multi-line-omit[data-v-f8346d88] {
|
||
word-break: break-all;
|
||
text-overflow: ellipsis;
|
||
overflow: hidden;
|
||
display: -webkit-box;
|
||
-webkit-line-clamp: 2;
|
||
-webkit-box-orient: vertical;
|
||
}
|
||
|
||
/* 单行省略 */
|
||
.one-line-omit[data-v-f8346d88] {
|
||
width: 100%;
|
||
white-space: nowrap;
|
||
overflow: hidden;
|
||
text-overflow: ellipsis;
|
||
}
|
||
[data-v-f8346d88] .u-popup__content {
|
||
border-top-left-radius: 0.5rem;
|
||
border-top-right-radius: 0.5rem;
|
||
box-sizing: border-box;
|
||
padding: 1rem;
|
||
background-color: #F5F5F5;
|
||
min-height: 85vh;
|
||
display: flex;
|
||
flex-direction: column;
|
||
}
|
||
.popupText[data-v-f8346d88] {
|
||
text-align: center;
|
||
font-size: 1rem;
|
||
margin: 0.5rem 0;
|
||
}
|
||
.input-box[data-v-f8346d88] {
|
||
background-color: white;
|
||
box-sizing: border-box;
|
||
padding: 0 0.5rem;
|
||
border-radius: 0.75rem;
|
||
margin: 0 0 0.5rem 0;
|
||
}
|
||
.input-box .u-textarea[data-v-f8346d88] {
|
||
padding: 0 !important;
|
||
font-size: 0.75rem !important;
|
||
color: #999999 !important;
|
||
}
|
||
.input-box .input-item[data-v-f8346d88] {
|
||
box-sizing: border-box;
|
||
padding: 0.5rem 0;
|
||
color: #222222;
|
||
font-size: 0.875rem;
|
||
font-weight: 400;
|
||
}
|
||
.input-box .input-item .item-title[data-v-f8346d88] {
|
||
font-size: 1rem;
|
||
color: #333333;
|
||
}
|
||
.input-box .input-item .item-text[data-v-f8346d88] {
|
||
font-weight: 400;
|
||
font-size: 0.84375rem;
|
||
color: #999999;
|
||
}
|
||
.warehouse-listBox[data-v-f8346d88] {
|
||
display: block;
|
||
flex: 1;
|
||
}
|
||
.warehouse-listBox .list-box-list[data-v-f8346d88] {
|
||
width: 100%;
|
||
}
|
||
.warehouse-listBox .list-box-list .data-item[data-v-f8346d88] {
|
||
border: 1px solid #efeaea;
|
||
border-radius: 0.625rem;
|
||
box-shadow: 0 0.46875rem 0.46875rem #efeaea;
|
||
padding: 0.625rem 0.625rem 0;
|
||
margin-bottom: 0.625rem;
|
||
background-color: #ffffff;
|
||
}
|
||
.warehouse-listBox .list-box-list .data-item .tit[data-v-f8346d88] {
|
||
font-size: 0.9375rem;
|
||
font-weight: bold;
|
||
padding: 0.625rem 0;
|
||
}
|
||
.warehouse-listBox .list-box-list .data-item .line-p[data-v-f8346d88] {
|
||
border: 1px solid #efeaea;
|
||
}
|
||
.warehouse-listBox .list-box-list .data-item .b-font[data-v-f8346d88] {
|
||
font-size: 0.78125rem;
|
||
padding: 0.625rem 0;
|
||
}
|
||
/* 多行省略 */
|
||
.multi-line-omit[data-v-e7b1a29e] {
|
||
word-break: break-all;
|
||
text-overflow: ellipsis;
|
||
overflow: hidden;
|
||
display: -webkit-box;
|
||
-webkit-line-clamp: 2;
|
||
-webkit-box-orient: vertical;
|
||
}
|
||
|
||
/* 单行省略 */
|
||
.one-line-omit[data-v-e7b1a29e] {
|
||
width: 100%;
|
||
white-space: nowrap;
|
||
overflow: hidden;
|
||
text-overflow: ellipsis;
|
||
}
|
||
[data-v-e7b1a29e] .u-popup__content {
|
||
border-top-left-radius: 0.5rem;
|
||
border-top-right-radius: 0.5rem;
|
||
box-sizing: border-box;
|
||
padding: 1rem;
|
||
background-color: #F5F5F5;
|
||
min-height: 85vh;
|
||
display: flex;
|
||
flex-direction: column;
|
||
}
|
||
.popupText[data-v-e7b1a29e] {
|
||
text-align: center;
|
||
font-size: 1rem;
|
||
margin: 0.5rem 0;
|
||
}
|
||
.input-box[data-v-e7b1a29e] {
|
||
background-color: white;
|
||
box-sizing: border-box;
|
||
padding: 0 0.5rem;
|
||
border-radius: 0.75rem;
|
||
margin: 0 0 0.5rem 0;
|
||
}
|
||
.input-box .u-textarea[data-v-e7b1a29e] {
|
||
padding: 0 !important;
|
||
font-size: 0.75rem !important;
|
||
color: #999999 !important;
|
||
}
|
||
.input-box .input-item[data-v-e7b1a29e] {
|
||
box-sizing: border-box;
|
||
padding: 0.5rem 0;
|
||
color: #222222;
|
||
font-size: 0.875rem;
|
||
font-weight: 400;
|
||
}
|
||
.input-box .input-item .item-title[data-v-e7b1a29e] {
|
||
font-size: 1rem;
|
||
color: #333333;
|
||
}
|
||
.input-box .input-item .item-text[data-v-e7b1a29e] {
|
||
font-weight: 400;
|
||
font-size: 0.84375rem;
|
||
color: #999999;
|
||
}
|
||
.warehouse-listBox[data-v-e7b1a29e] {
|
||
display: block;
|
||
flex: 1;
|
||
}
|
||
.warehouse-listBox .list-box-list[data-v-e7b1a29e] {
|
||
width: 100%;
|
||
}
|
||
.warehouse-listBox .list-box-list .data-item[data-v-e7b1a29e] {
|
||
border: 1px solid #efeaea;
|
||
border-radius: 0.625rem;
|
||
box-shadow: 0 0.46875rem 0.46875rem #efeaea;
|
||
padding: 0.625rem 0.625rem 0;
|
||
margin-bottom: 0.625rem;
|
||
background-color: #ffffff;
|
||
}
|
||
.warehouse-listBox .list-box-list .data-item .tit[data-v-e7b1a29e] {
|
||
font-size: 0.9375rem;
|
||
font-weight: bold;
|
||
padding: 0.625rem 0;
|
||
}
|
||
.warehouse-listBox .list-box-list .data-item .description[data-v-e7b1a29e] {
|
||
font-size: 0.78125rem;
|
||
margin-top: 0.25rem;
|
||
}
|
||
.warehouse-listBox .list-box-list .data-item .line-p[data-v-e7b1a29e] {
|
||
border: 1px solid #efeaea;
|
||
}
|
||
.warehouse-listBox .list-box-list .data-item .b-font[data-v-e7b1a29e] {
|
||
font-size: 0.78125rem;
|
||
padding: 0.625rem 0;
|
||
}
|
||
/* 多行省略 */
|
||
.multi-line-omit[data-v-769984aa] {
|
||
word-break: break-all;
|
||
text-overflow: ellipsis;
|
||
overflow: hidden;
|
||
display: -webkit-box;
|
||
-webkit-line-clamp: 2;
|
||
-webkit-box-orient: vertical;
|
||
}
|
||
|
||
/* 单行省略 */
|
||
.one-line-omit[data-v-769984aa] {
|
||
width: 100%;
|
||
white-space: nowrap;
|
||
overflow: hidden;
|
||
text-overflow: ellipsis;
|
||
}
|
||
[data-v-769984aa] .u-input {
|
||
background-color: #ffffff !important;
|
||
}
|
||
[data-v-769984aa] .u-popup__content {
|
||
border-top-left-radius: 0.5rem;
|
||
border-top-right-radius: 0.5rem;
|
||
box-sizing: border-box;
|
||
padding: 0.5rem;
|
||
background-color: #F5F5F5;
|
||
}
|
||
.popupText[data-v-769984aa] {
|
||
text-align: center;
|
||
}
|
||
.btnListSc[data-v-769984aa] {
|
||
display: flex;
|
||
margin: 0.5rem 0;
|
||
}
|
||
.warningsText[data-v-769984aa] {
|
||
font-size: 0.75rem;
|
||
text-align: right;
|
||
margin-right: 0.25rem;
|
||
color: red;
|
||
}
|
||
.input-box[data-v-769984aa] {
|
||
background-color: white;
|
||
box-sizing: border-box;
|
||
padding: 0 0.5rem;
|
||
border-radius: 0.5rem;
|
||
margin: 0.5rem 0;
|
||
}
|
||
.input-box .u-textarea[data-v-769984aa] {
|
||
padding: 0 !important;
|
||
font-size: 0.75rem !important;
|
||
color: #999999 !important;
|
||
}
|
||
.input-box .input-item[data-v-769984aa] {
|
||
box-sizing: border-box;
|
||
padding: 0.5rem 0;
|
||
color: #222222;
|
||
font-size: 0.875rem;
|
||
font-weight: 400;
|
||
}
|
||
.input-box .input-item .item-title[data-v-769984aa] {
|
||
font-size: 0.875rem;
|
||
color: #333333;
|
||
}
|
||
.input-box .input-item .item-text[data-v-769984aa] {
|
||
font-weight: 400;
|
||
font-size: 0.84375rem;
|
||
color: #999999;
|
||
}
|
||
/* 多行省略 */
|
||
.uniui-cart-filled[data-v-d31e1c47]:before {
|
||
content: "\e6d0";
|
||
}
|
||
.uniui-gift-filled[data-v-d31e1c47]:before {
|
||
content: "\e6c4";
|
||
}
|
||
.uniui-color[data-v-d31e1c47]:before {
|
||
content: "\e6cf";
|
||
}
|
||
.uniui-wallet[data-v-d31e1c47]:before {
|
||
content: "\e6b1";
|
||
}
|
||
.uniui-settings-filled[data-v-d31e1c47]:before {
|
||
content: "\e6ce";
|
||
}
|
||
.uniui-auth-filled[data-v-d31e1c47]:before {
|
||
content: "\e6cc";
|
||
}
|
||
.uniui-shop-filled[data-v-d31e1c47]:before {
|
||
content: "\e6cd";
|
||
}
|
||
.uniui-staff-filled[data-v-d31e1c47]:before {
|
||
content: "\e6cb";
|
||
}
|
||
.uniui-vip-filled[data-v-d31e1c47]:before {
|
||
content: "\e6c6";
|
||
}
|
||
.uniui-plus-filled[data-v-d31e1c47]:before {
|
||
content: "\e6c7";
|
||
}
|
||
.uniui-folder-add-filled[data-v-d31e1c47]:before {
|
||
content: "\e6c8";
|
||
}
|
||
.uniui-color-filled[data-v-d31e1c47]:before {
|
||
content: "\e6c9";
|
||
}
|
||
.uniui-tune-filled[data-v-d31e1c47]:before {
|
||
content: "\e6ca";
|
||
}
|
||
.uniui-calendar-filled[data-v-d31e1c47]:before {
|
||
content: "\e6c0";
|
||
}
|
||
.uniui-notification-filled[data-v-d31e1c47]:before {
|
||
content: "\e6c1";
|
||
}
|
||
.uniui-wallet-filled[data-v-d31e1c47]:before {
|
||
content: "\e6c2";
|
||
}
|
||
.uniui-medal-filled[data-v-d31e1c47]:before {
|
||
content: "\e6c3";
|
||
}
|
||
.uniui-fire-filled[data-v-d31e1c47]:before {
|
||
content: "\e6c5";
|
||
}
|
||
.uniui-refreshempty[data-v-d31e1c47]:before {
|
||
content: "\e6bf";
|
||
}
|
||
.uniui-location-filled[data-v-d31e1c47]:before {
|
||
content: "\e6af";
|
||
}
|
||
.uniui-person-filled[data-v-d31e1c47]:before {
|
||
content: "\e69d";
|
||
}
|
||
.uniui-personadd-filled[data-v-d31e1c47]:before {
|
||
content: "\e698";
|
||
}
|
||
.uniui-arrowthinleft[data-v-d31e1c47]:before {
|
||
content: "\e6d2";
|
||
}
|
||
.uniui-arrowthinup[data-v-d31e1c47]:before {
|
||
content: "\e6d3";
|
||
}
|
||
.uniui-arrowthindown[data-v-d31e1c47]:before {
|
||
content: "\e6d4";
|
||
}
|
||
.uniui-back[data-v-d31e1c47]:before {
|
||
content: "\e6b9";
|
||
}
|
||
.uniui-forward[data-v-d31e1c47]:before {
|
||
content: "\e6ba";
|
||
}
|
||
.uniui-arrow-right[data-v-d31e1c47]:before {
|
||
content: "\e6bb";
|
||
}
|
||
.uniui-arrow-left[data-v-d31e1c47]:before {
|
||
content: "\e6bc";
|
||
}
|
||
.uniui-arrow-up[data-v-d31e1c47]:before {
|
||
content: "\e6bd";
|
||
}
|
||
.uniui-arrow-down[data-v-d31e1c47]:before {
|
||
content: "\e6be";
|
||
}
|
||
.uniui-arrowthinright[data-v-d31e1c47]:before {
|
||
content: "\e6d1";
|
||
}
|
||
.uniui-down[data-v-d31e1c47]:before {
|
||
content: "\e6b8";
|
||
}
|
||
.uniui-bottom[data-v-d31e1c47]:before {
|
||
content: "\e6b8";
|
||
}
|
||
.uniui-arrowright[data-v-d31e1c47]:before {
|
||
content: "\e6d5";
|
||
}
|
||
.uniui-right[data-v-d31e1c47]:before {
|
||
content: "\e6b5";
|
||
}
|
||
.uniui-up[data-v-d31e1c47]:before {
|
||
content: "\e6b6";
|
||
}
|
||
.uniui-top[data-v-d31e1c47]:before {
|
||
content: "\e6b6";
|
||
}
|
||
.uniui-left[data-v-d31e1c47]:before {
|
||
content: "\e6b7";
|
||
}
|
||
.uniui-arrowup[data-v-d31e1c47]:before {
|
||
content: "\e6d6";
|
||
}
|
||
.uniui-eye[data-v-d31e1c47]:before {
|
||
content: "\e651";
|
||
}
|
||
.uniui-eye-filled[data-v-d31e1c47]:before {
|
||
content: "\e66a";
|
||
}
|
||
.uniui-eye-slash[data-v-d31e1c47]:before {
|
||
content: "\e6b3";
|
||
}
|
||
.uniui-eye-slash-filled[data-v-d31e1c47]:before {
|
||
content: "\e6b4";
|
||
}
|
||
.uniui-info-filled[data-v-d31e1c47]:before {
|
||
content: "\e649";
|
||
}
|
||
.uniui-reload[data-v-d31e1c47]:before {
|
||
content: "\e6b2";
|
||
}
|
||
.uniui-micoff-filled[data-v-d31e1c47]:before {
|
||
content: "\e6b0";
|
||
}
|
||
.uniui-map-pin-ellipse[data-v-d31e1c47]:before {
|
||
content: "\e6ac";
|
||
}
|
||
.uniui-map-pin[data-v-d31e1c47]:before {
|
||
content: "\e6ad";
|
||
}
|
||
.uniui-location[data-v-d31e1c47]:before {
|
||
content: "\e6ae";
|
||
}
|
||
.uniui-starhalf[data-v-d31e1c47]:before {
|
||
content: "\e683";
|
||
}
|
||
.uniui-star[data-v-d31e1c47]:before {
|
||
content: "\e688";
|
||
}
|
||
.uniui-star-filled[data-v-d31e1c47]:before {
|
||
content: "\e68f";
|
||
}
|
||
.uniui-calendar[data-v-d31e1c47]:before {
|
||
content: "\e6a0";
|
||
}
|
||
.uniui-fire[data-v-d31e1c47]:before {
|
||
content: "\e6a1";
|
||
}
|
||
.uniui-medal[data-v-d31e1c47]:before {
|
||
content: "\e6a2";
|
||
}
|
||
.uniui-font[data-v-d31e1c47]:before {
|
||
content: "\e6a3";
|
||
}
|
||
.uniui-gift[data-v-d31e1c47]:before {
|
||
content: "\e6a4";
|
||
}
|
||
.uniui-link[data-v-d31e1c47]:before {
|
||
content: "\e6a5";
|
||
}
|
||
.uniui-notification[data-v-d31e1c47]:before {
|
||
content: "\e6a6";
|
||
}
|
||
.uniui-staff[data-v-d31e1c47]:before {
|
||
content: "\e6a7";
|
||
}
|
||
.uniui-vip[data-v-d31e1c47]:before {
|
||
content: "\e6a8";
|
||
}
|
||
.uniui-folder-add[data-v-d31e1c47]:before {
|
||
content: "\e6a9";
|
||
}
|
||
.uniui-tune[data-v-d31e1c47]:before {
|
||
content: "\e6aa";
|
||
}
|
||
.uniui-auth[data-v-d31e1c47]:before {
|
||
content: "\e6ab";
|
||
}
|
||
.uniui-person[data-v-d31e1c47]:before {
|
||
content: "\e699";
|
||
}
|
||
.uniui-email-filled[data-v-d31e1c47]:before {
|
||
content: "\e69a";
|
||
}
|
||
.uniui-phone-filled[data-v-d31e1c47]:before {
|
||
content: "\e69b";
|
||
}
|
||
.uniui-phone[data-v-d31e1c47]:before {
|
||
content: "\e69c";
|
||
}
|
||
.uniui-email[data-v-d31e1c47]:before {
|
||
content: "\e69e";
|
||
}
|
||
.uniui-personadd[data-v-d31e1c47]:before {
|
||
content: "\e69f";
|
||
}
|
||
.uniui-chatboxes-filled[data-v-d31e1c47]:before {
|
||
content: "\e692";
|
||
}
|
||
.uniui-contact[data-v-d31e1c47]:before {
|
||
content: "\e693";
|
||
}
|
||
.uniui-chatbubble-filled[data-v-d31e1c47]:before {
|
||
content: "\e694";
|
||
}
|
||
.uniui-contact-filled[data-v-d31e1c47]:before {
|
||
content: "\e695";
|
||
}
|
||
.uniui-chatboxes[data-v-d31e1c47]:before {
|
||
content: "\e696";
|
||
}
|
||
.uniui-chatbubble[data-v-d31e1c47]:before {
|
||
content: "\e697";
|
||
}
|
||
.uniui-upload-filled[data-v-d31e1c47]:before {
|
||
content: "\e68e";
|
||
}
|
||
.uniui-upload[data-v-d31e1c47]:before {
|
||
content: "\e690";
|
||
}
|
||
.uniui-weixin[data-v-d31e1c47]:before {
|
||
content: "\e691";
|
||
}
|
||
.uniui-compose[data-v-d31e1c47]:before {
|
||
content: "\e67f";
|
||
}
|
||
.uniui-qq[data-v-d31e1c47]:before {
|
||
content: "\e680";
|
||
}
|
||
.uniui-download-filled[data-v-d31e1c47]:before {
|
||
content: "\e681";
|
||
}
|
||
.uniui-pyq[data-v-d31e1c47]:before {
|
||
content: "\e682";
|
||
}
|
||
.uniui-sound[data-v-d31e1c47]:before {
|
||
content: "\e684";
|
||
}
|
||
.uniui-trash-filled[data-v-d31e1c47]:before {
|
||
content: "\e685";
|
||
}
|
||
.uniui-sound-filled[data-v-d31e1c47]:before {
|
||
content: "\e686";
|
||
}
|
||
.uniui-trash[data-v-d31e1c47]:before {
|
||
content: "\e687";
|
||
}
|
||
.uniui-videocam-filled[data-v-d31e1c47]:before {
|
||
content: "\e689";
|
||
}
|
||
.uniui-spinner-cycle[data-v-d31e1c47]:before {
|
||
content: "\e68a";
|
||
}
|
||
.uniui-weibo[data-v-d31e1c47]:before {
|
||
content: "\e68b";
|
||
}
|
||
.uniui-videocam[data-v-d31e1c47]:before {
|
||
content: "\e68c";
|
||
}
|
||
.uniui-download[data-v-d31e1c47]:before {
|
||
content: "\e68d";
|
||
}
|
||
.uniui-help[data-v-d31e1c47]:before {
|
||
content: "\e679";
|
||
}
|
||
.uniui-navigate-filled[data-v-d31e1c47]:before {
|
||
content: "\e67a";
|
||
}
|
||
.uniui-plusempty[data-v-d31e1c47]:before {
|
||
content: "\e67b";
|
||
}
|
||
.uniui-smallcircle[data-v-d31e1c47]:before {
|
||
content: "\e67c";
|
||
}
|
||
.uniui-minus-filled[data-v-d31e1c47]:before {
|
||
content: "\e67d";
|
||
}
|
||
.uniui-micoff[data-v-d31e1c47]:before {
|
||
content: "\e67e";
|
||
}
|
||
.uniui-closeempty[data-v-d31e1c47]:before {
|
||
content: "\e66c";
|
||
}
|
||
.uniui-clear[data-v-d31e1c47]:before {
|
||
content: "\e66d";
|
||
}
|
||
.uniui-navigate[data-v-d31e1c47]:before {
|
||
content: "\e66e";
|
||
}
|
||
.uniui-minus[data-v-d31e1c47]:before {
|
||
content: "\e66f";
|
||
}
|
||
.uniui-image[data-v-d31e1c47]:before {
|
||
content: "\e670";
|
||
}
|
||
.uniui-mic[data-v-d31e1c47]:before {
|
||
content: "\e671";
|
||
}
|
||
.uniui-paperplane[data-v-d31e1c47]:before {
|
||
content: "\e672";
|
||
}
|
||
.uniui-close[data-v-d31e1c47]:before {
|
||
content: "\e673";
|
||
}
|
||
.uniui-help-filled[data-v-d31e1c47]:before {
|
||
content: "\e674";
|
||
}
|
||
.uniui-paperplane-filled[data-v-d31e1c47]:before {
|
||
content: "\e675";
|
||
}
|
||
.uniui-plus[data-v-d31e1c47]:before {
|
||
content: "\e676";
|
||
}
|
||
.uniui-mic-filled[data-v-d31e1c47]:before {
|
||
content: "\e677";
|
||
}
|
||
.uniui-image-filled[data-v-d31e1c47]:before {
|
||
content: "\e678";
|
||
}
|
||
.uniui-locked-filled[data-v-d31e1c47]:before {
|
||
content: "\e668";
|
||
}
|
||
.uniui-info[data-v-d31e1c47]:before {
|
||
content: "\e669";
|
||
}
|
||
.uniui-locked[data-v-d31e1c47]:before {
|
||
content: "\e66b";
|
||
}
|
||
.uniui-camera-filled[data-v-d31e1c47]:before {
|
||
content: "\e658";
|
||
}
|
||
.uniui-chat-filled[data-v-d31e1c47]:before {
|
||
content: "\e659";
|
||
}
|
||
.uniui-camera[data-v-d31e1c47]:before {
|
||
content: "\e65a";
|
||
}
|
||
.uniui-circle[data-v-d31e1c47]:before {
|
||
content: "\e65b";
|
||
}
|
||
.uniui-checkmarkempty[data-v-d31e1c47]:before {
|
||
content: "\e65c";
|
||
}
|
||
.uniui-chat[data-v-d31e1c47]:before {
|
||
content: "\e65d";
|
||
}
|
||
.uniui-circle-filled[data-v-d31e1c47]:before {
|
||
content: "\e65e";
|
||
}
|
||
.uniui-flag[data-v-d31e1c47]:before {
|
||
content: "\e65f";
|
||
}
|
||
.uniui-flag-filled[data-v-d31e1c47]:before {
|
||
content: "\e660";
|
||
}
|
||
.uniui-gear-filled[data-v-d31e1c47]:before {
|
||
content: "\e661";
|
||
}
|
||
.uniui-home[data-v-d31e1c47]:before {
|
||
content: "\e662";
|
||
}
|
||
.uniui-home-filled[data-v-d31e1c47]:before {
|
||
content: "\e663";
|
||
}
|
||
.uniui-gear[data-v-d31e1c47]:before {
|
||
content: "\e664";
|
||
}
|
||
.uniui-smallcircle-filled[data-v-d31e1c47]:before {
|
||
content: "\e665";
|
||
}
|
||
.uniui-map-filled[data-v-d31e1c47]:before {
|
||
content: "\e666";
|
||
}
|
||
.uniui-map[data-v-d31e1c47]:before {
|
||
content: "\e667";
|
||
}
|
||
.uniui-refresh-filled[data-v-d31e1c47]:before {
|
||
content: "\e656";
|
||
}
|
||
.uniui-refresh[data-v-d31e1c47]:before {
|
||
content: "\e657";
|
||
}
|
||
.uniui-cloud-upload[data-v-d31e1c47]:before {
|
||
content: "\e645";
|
||
}
|
||
.uniui-cloud-download-filled[data-v-d31e1c47]:before {
|
||
content: "\e646";
|
||
}
|
||
.uniui-cloud-download[data-v-d31e1c47]:before {
|
||
content: "\e647";
|
||
}
|
||
.uniui-cloud-upload-filled[data-v-d31e1c47]:before {
|
||
content: "\e648";
|
||
}
|
||
.uniui-redo[data-v-d31e1c47]:before {
|
||
content: "\e64a";
|
||
}
|
||
.uniui-images-filled[data-v-d31e1c47]:before {
|
||
content: "\e64b";
|
||
}
|
||
.uniui-undo-filled[data-v-d31e1c47]:before {
|
||
content: "\e64c";
|
||
}
|
||
.uniui-more[data-v-d31e1c47]:before {
|
||
content: "\e64d";
|
||
}
|
||
.uniui-more-filled[data-v-d31e1c47]:before {
|
||
content: "\e64e";
|
||
}
|
||
.uniui-undo[data-v-d31e1c47]:before {
|
||
content: "\e64f";
|
||
}
|
||
.uniui-images[data-v-d31e1c47]:before {
|
||
content: "\e650";
|
||
}
|
||
.uniui-paperclip[data-v-d31e1c47]:before {
|
||
content: "\e652";
|
||
}
|
||
.uniui-settings[data-v-d31e1c47]:before {
|
||
content: "\e653";
|
||
}
|
||
.uniui-search[data-v-d31e1c47]:before {
|
||
content: "\e654";
|
||
}
|
||
.uniui-redo-filled[data-v-d31e1c47]:before {
|
||
content: "\e655";
|
||
}
|
||
.uniui-list[data-v-d31e1c47]:before {
|
||
content: "\e644";
|
||
}
|
||
.uniui-mail-open-filled[data-v-d31e1c47]:before {
|
||
content: "\e63a";
|
||
}
|
||
.uniui-hand-down-filled[data-v-d31e1c47]:before {
|
||
content: "\e63c";
|
||
}
|
||
.uniui-hand-down[data-v-d31e1c47]:before {
|
||
content: "\e63d";
|
||
}
|
||
.uniui-hand-up-filled[data-v-d31e1c47]:before {
|
||
content: "\e63e";
|
||
}
|
||
.uniui-hand-up[data-v-d31e1c47]:before {
|
||
content: "\e63f";
|
||
}
|
||
.uniui-heart-filled[data-v-d31e1c47]:before {
|
||
content: "\e641";
|
||
}
|
||
.uniui-mail-open[data-v-d31e1c47]:before {
|
||
content: "\e643";
|
||
}
|
||
.uniui-heart[data-v-d31e1c47]:before {
|
||
content: "\e639";
|
||
}
|
||
.uniui-loop[data-v-d31e1c47]:before {
|
||
content: "\e633";
|
||
}
|
||
.uniui-pulldown[data-v-d31e1c47]:before {
|
||
content: "\e632";
|
||
}
|
||
.uniui-scan[data-v-d31e1c47]:before {
|
||
content: "\e62a";
|
||
}
|
||
.uniui-bars[data-v-d31e1c47]:before {
|
||
content: "\e627";
|
||
}
|
||
.uniui-checkbox[data-v-d31e1c47]:before {
|
||
content: "\e62b";
|
||
}
|
||
.uniui-checkbox-filled[data-v-d31e1c47]:before {
|
||
content: "\e62c";
|
||
}
|
||
.uniui-shop[data-v-d31e1c47]:before {
|
||
content: "\e62f";
|
||
}
|
||
.uniui-headphones[data-v-d31e1c47]:before {
|
||
content: "\e630";
|
||
}
|
||
.uniui-cart[data-v-d31e1c47]:before {
|
||
content: "\e631";
|
||
}
|
||
.multi-line-omit[data-v-d31e1c47] {
|
||
word-break: break-all;
|
||
text-overflow: ellipsis;
|
||
overflow: hidden;
|
||
display: -webkit-box;
|
||
-webkit-line-clamp: 2;
|
||
-webkit-box-orient: vertical;
|
||
}
|
||
/* 单行省略 */
|
||
.one-line-omit[data-v-d31e1c47] {
|
||
width: 100%;
|
||
white-space: nowrap;
|
||
overflow: hidden;
|
||
text-overflow: ellipsis;
|
||
}
|
||
@font-face {
|
||
font-family: uniicons;
|
||
src: url("../../assets/uniicons.32e978a5.ttf");
|
||
}
|
||
.uni-icons[data-v-d31e1c47] {
|
||
font-family: uniicons;
|
||
text-decoration: none;
|
||
text-align: center;
|
||
}
|
||
/* 多行省略 */
|
||
.multi-line-omit[data-v-85f34dfc] {
|
||
word-break: break-all;
|
||
text-overflow: ellipsis;
|
||
overflow: hidden;
|
||
display: -webkit-box;
|
||
-webkit-line-clamp: 2;
|
||
-webkit-box-orient: vertical;
|
||
}
|
||
|
||
/* 单行省略 */
|
||
.one-line-omit[data-v-85f34dfc] {
|
||
width: 100%;
|
||
white-space: nowrap;
|
||
overflow: hidden;
|
||
text-overflow: ellipsis;
|
||
}
|
||
.uni-fab[data-v-85f34dfc] {
|
||
position: fixed;
|
||
display: flex;
|
||
justify-content: center;
|
||
align-items: center;
|
||
z-index: 10;
|
||
border-radius: 45px;
|
||
box-shadow: 0 1px 5px 2px rgba(0, 0, 0, 0.3);
|
||
}
|
||
.uni-fab--active[data-v-85f34dfc] {
|
||
opacity: 1;
|
||
}
|
||
.uni-fab--leftBottom[data-v-85f34dfc] {
|
||
left: 15px;
|
||
bottom: 30px;
|
||
}
|
||
.uni-fab--leftTop[data-v-85f34dfc] {
|
||
left: 15px;
|
||
top: 30px;
|
||
}
|
||
.uni-fab--rightBottom[data-v-85f34dfc] {
|
||
right: 15px;
|
||
bottom: 30px;
|
||
}
|
||
.uni-fab--rightTop[data-v-85f34dfc] {
|
||
right: 15px;
|
||
top: 30px;
|
||
}
|
||
.uni-fab__circle[data-v-85f34dfc] {
|
||
position: fixed;
|
||
display: flex;
|
||
justify-content: center;
|
||
align-items: center;
|
||
width: 55px;
|
||
height: 55px;
|
||
background-color: #3c3e49;
|
||
border-radius: 45px;
|
||
z-index: 11;
|
||
}
|
||
.uni-fab__circle--leftBottom[data-v-85f34dfc] {
|
||
left: 15px;
|
||
bottom: 30px;
|
||
}
|
||
.uni-fab__circle--leftTop[data-v-85f34dfc] {
|
||
left: 15px;
|
||
top: 30px;
|
||
}
|
||
.uni-fab__circle--rightBottom[data-v-85f34dfc] {
|
||
right: 15px;
|
||
bottom: 30px;
|
||
}
|
||
.uni-fab__circle--rightTop[data-v-85f34dfc] {
|
||
right: 15px;
|
||
top: 30px;
|
||
}
|
||
.uni-fab__circle--left[data-v-85f34dfc] {
|
||
left: 0;
|
||
}
|
||
.uni-fab__circle--right[data-v-85f34dfc] {
|
||
right: 0;
|
||
}
|
||
.uni-fab__circle--top[data-v-85f34dfc] {
|
||
top: 0;
|
||
}
|
||
.uni-fab__circle--bottom[data-v-85f34dfc] {
|
||
bottom: 0;
|
||
}
|
||
.uni-fab__plus[data-v-85f34dfc] {
|
||
font-weight: bold;
|
||
}
|
||
.fab-circle-icon[data-v-85f34dfc] {
|
||
transform: rotate(0deg);
|
||
transition: transform 0.3s;
|
||
font-weight: 200;
|
||
}
|
||
.uni-fab__plus--active[data-v-85f34dfc] {
|
||
transform: rotate(135deg);
|
||
}
|
||
.uni-fab__content[data-v-85f34dfc] {
|
||
box-sizing: border-box;
|
||
display: flex;
|
||
flex-direction: row;
|
||
border-radius: 55px;
|
||
overflow: hidden;
|
||
transition-property: width, height;
|
||
transition-duration: 0.2s;
|
||
width: 55px;
|
||
border-color: #DDDDDD;
|
||
border-width: 0.03125rem;
|
||
border-style: solid;
|
||
}
|
||
.uni-fab__content--other-platform[data-v-85f34dfc] {
|
||
border-width: 0px;
|
||
box-shadow: 0 1px 5px 2px rgba(0, 0, 0, 0.3);
|
||
}
|
||
.uni-fab__content--left[data-v-85f34dfc] {
|
||
justify-content: flex-start;
|
||
}
|
||
.uni-fab__content--right[data-v-85f34dfc] {
|
||
justify-content: flex-end;
|
||
}
|
||
.uni-fab__content--flexDirection[data-v-85f34dfc] {
|
||
flex-direction: column;
|
||
justify-content: flex-end;
|
||
}
|
||
.uni-fab__content--flexDirectionStart[data-v-85f34dfc] {
|
||
flex-direction: column;
|
||
justify-content: flex-start;
|
||
}
|
||
.uni-fab__content--flexDirectionEnd[data-v-85f34dfc] {
|
||
flex-direction: column;
|
||
justify-content: flex-end;
|
||
}
|
||
.uni-fab__item[data-v-85f34dfc] {
|
||
display: flex;
|
||
flex-direction: column;
|
||
justify-content: center;
|
||
align-items: center;
|
||
width: 55px;
|
||
height: 55px;
|
||
opacity: 0;
|
||
transition: opacity 0.2s;
|
||
}
|
||
.uni-fab__item--active[data-v-85f34dfc] {
|
||
opacity: 1;
|
||
}
|
||
.uni-fab__item-image[data-v-85f34dfc] {
|
||
width: 20px;
|
||
height: 20px;
|
||
margin-bottom: 4px;
|
||
}
|
||
.uni-fab__item-text[data-v-85f34dfc] {
|
||
color: #FFFFFF;
|
||
font-size: 12px;
|
||
line-height: 12px;
|
||
margin-top: 2px;
|
||
}
|
||
.uni-fab__item--first[data-v-85f34dfc] {
|
||
width: 55px;
|
||
}
|
||
/* 多行省略 */
|
||
.multi-line-omit[data-v-9b4abe24] {
|
||
word-break: break-all;
|
||
text-overflow: ellipsis;
|
||
overflow: hidden;
|
||
display: -webkit-box;
|
||
-webkit-line-clamp: 2;
|
||
-webkit-box-orient: vertical;
|
||
}
|
||
|
||
/* 单行省略 */
|
||
.one-line-omit[data-v-9b4abe24] {
|
||
width: 100%;
|
||
white-space: nowrap;
|
||
overflow: hidden;
|
||
text-overflow: ellipsis;
|
||
}
|
||
[data-v-9b4abe24] .uni-fab {
|
||
box-shadow: 0 1px 5px 2px #efeaea !important;
|
||
}
|
||
[data-v-9b4abe24] .uni-fab__content--other-platform {
|
||
box-shadow: 0 1px 5px 2px #e3e3e3 !important;
|
||
}
|
||
[data-v-9b4abe24] .uni-fab__item {
|
||
margin: 0 0.25rem;
|
||
}
|
||
/* 多行省略 */
|
||
.multi-line-omit[data-v-6ab257b3] {
|
||
word-break: break-all;
|
||
text-overflow: ellipsis;
|
||
overflow: hidden;
|
||
display: -webkit-box;
|
||
-webkit-line-clamp: 2;
|
||
-webkit-box-orient: vertical;
|
||
}
|
||
/* 单行省略 */
|
||
.one-line-omit[data-v-6ab257b3] {
|
||
width: 100%;
|
||
white-space: nowrap;
|
||
overflow: hidden;
|
||
text-overflow: ellipsis;
|
||
}
|
||
.u-empty[data-v-6ab257b3],
|
||
.u-empty__wrap[data-v-6ab257b3],
|
||
.u-tabs[data-v-6ab257b3],
|
||
.u-tabs__wrapper[data-v-6ab257b3],
|
||
.u-tabs__wrapper__scroll-view-wrapper[data-v-6ab257b3],
|
||
.u-tabs__wrapper__scroll-view[data-v-6ab257b3],
|
||
.u-tabs__wrapper__nav[data-v-6ab257b3],
|
||
.u-tabs__wrapper__nav__line[data-v-6ab257b3],
|
||
.up-empty[data-v-6ab257b3],
|
||
.up-empty__wrap[data-v-6ab257b3],
|
||
.up-tabs[data-v-6ab257b3],
|
||
.up-tabs__wrapper[data-v-6ab257b3],
|
||
.up-tabs__wrapper__scroll-view-wrapper[data-v-6ab257b3],
|
||
.up-tabs__wrapper__scroll-view[data-v-6ab257b3],
|
||
.up-tabs__wrapper__nav[data-v-6ab257b3],
|
||
.up-tabs__wrapper__nav__line[data-v-6ab257b3] {
|
||
display: flex;
|
||
flex-direction: column;
|
||
flex-shrink: 0;
|
||
flex-grow: 0;
|
||
flex-basis: auto;
|
||
align-items: stretch;
|
||
align-content: flex-start;
|
||
}
|
||
.u-switch[data-v-6ab257b3] {
|
||
|
||
display: flex;
|
||
|
||
flex-direction: row;
|
||
box-sizing: border-box;
|
||
position: relative;
|
||
background-color: #fff;
|
||
border-width: 1px;
|
||
border-radius: 100px;
|
||
transition: background-color 0.4s;
|
||
border-color: rgba(0, 0, 0, 0.12);
|
||
border-style: solid;
|
||
justify-content: flex-end;
|
||
align-items: center;
|
||
overflow: hidden;
|
||
}
|
||
.u-switch__node[data-v-6ab257b3] {
|
||
|
||
display: flex;
|
||
|
||
flex-direction: row;
|
||
align-items: center;
|
||
justify-content: center;
|
||
border-radius: 100px;
|
||
background-color: #fff;
|
||
border-radius: 100px;
|
||
box-shadow: 1px 1px 1px 0 rgba(0, 0, 0, 0.25);
|
||
transition-property: transform;
|
||
transition-duration: 0.4s;
|
||
transition-timing-function: cubic-bezier(0.3, 1.05, 0.4, 1.05);
|
||
}
|
||
.u-switch__bg[data-v-6ab257b3] {
|
||
position: absolute;
|
||
border-radius: 100px;
|
||
background-color: #FFFFFF;
|
||
transition-property: transform;
|
||
transition-duration: 0.4s;
|
||
border-top-left-radius: 0;
|
||
border-bottom-left-radius: 0;
|
||
transition-timing-function: ease;
|
||
}
|
||
.u-switch--disabled[data-v-6ab257b3] {
|
||
opacity: 0.6;
|
||
}
|
||
/* 多行省略 */
|
||
.multi-line-omit[data-v-1d4f8958] {
|
||
word-break: break-all;
|
||
text-overflow: ellipsis;
|
||
overflow: hidden;
|
||
display: -webkit-box;
|
||
-webkit-line-clamp: 2;
|
||
-webkit-box-orient: vertical;
|
||
}
|
||
|
||
/* 单行省略 */
|
||
.one-line-omit[data-v-1d4f8958] {
|
||
width: 100%;
|
||
white-space: nowrap;
|
||
overflow: hidden;
|
||
text-overflow: ellipsis;
|
||
}
|
||
[data-v-1d4f8958] .u-input {
|
||
background-color: #ffffff !important;
|
||
}
|
||
[data-v-1d4f8958] .u-popup__content {
|
||
border-top-left-radius: 0.5rem;
|
||
border-top-right-radius: 0.5rem;
|
||
box-sizing: border-box;
|
||
padding: 0.5rem;
|
||
background-color: #F5F5F5;
|
||
}
|
||
[data-v-1d4f8958] .u-input--square {
|
||
background-color: #ffffff !important;
|
||
}
|
||
.popupText[data-v-1d4f8958] {
|
||
text-align: center;
|
||
}
|
||
.btnListSc[data-v-1d4f8958] {
|
||
display: flex;
|
||
margin: 0.5rem 0;
|
||
}
|
||
.input-box[data-v-1d4f8958] {
|
||
background-color: white;
|
||
box-sizing: border-box;
|
||
padding: 0 0.5rem;
|
||
border-radius: 0.5rem;
|
||
margin: 0.5rem 0;
|
||
}
|
||
.input-box .u-textarea[data-v-1d4f8958] {
|
||
padding: 0 !important;
|
||
font-size: 0.75rem !important;
|
||
color: #999999 !important;
|
||
}
|
||
.input-box .input-item[data-v-1d4f8958] {
|
||
box-sizing: border-box;
|
||
padding: 0.5rem 0;
|
||
color: #222222;
|
||
font-size: 0.875rem;
|
||
font-weight: 400;
|
||
}
|
||
.input-box .input-item .item-title[data-v-1d4f8958] {
|
||
font-size: 0.875rem;
|
||
color: #333333;
|
||
}
|
||
.input-box .input-item .item-text[data-v-1d4f8958] {
|
||
font-weight: 400;
|
||
font-size: 0.84375rem;
|
||
color: #999999;
|
||
}
|
||
/* 多行省略 */
|
||
.multi-line-omit {
|
||
word-break: break-all;
|
||
text-overflow: ellipsis;
|
||
overflow: hidden;
|
||
display: -webkit-box;
|
||
-webkit-line-clamp: 2;
|
||
-webkit-box-orient: vertical;
|
||
}
|
||
|
||
/* 单行省略 */
|
||
.one-line-omit {
|
||
width: 100%;
|
||
white-space: nowrap;
|
||
overflow: hidden;
|
||
text-overflow: ellipsis;
|
||
}
|
||
.app {
|
||
background-color: #F5F5F5;
|
||
}
|
||
.app .page {
|
||
padding: 18px 1rem;
|
||
display: flex;
|
||
flex-direction: column;
|
||
height: 100%;
|
||
flex: 1;
|
||
}
|
||
.app .page .input-box {
|
||
background-color: white;
|
||
box-sizing: border-box;
|
||
padding: 0 0.5rem;
|
||
border-radius: 0.75rem;
|
||
margin: 0 0 1rem 0;
|
||
}
|
||
.app .page .input-box .u-textarea {
|
||
padding: 0 !important;
|
||
font-size: 0.75rem !important;
|
||
color: #999999 !important;
|
||
}
|
||
.app .page .input-box .input-item {
|
||
box-sizing: border-box;
|
||
padding: 0.5rem 0;
|
||
color: #222222;
|
||
font-size: 0.875rem;
|
||
font-weight: 400;
|
||
}
|
||
.app .page .input-box .input-item .item-title {
|
||
font-size: 1rem;
|
||
color: #333333;
|
||
}
|
||
.app .page .input-box .input-item .item-text {
|
||
font-weight: 400;
|
||
font-size: 0.84375rem;
|
||
color: #999999;
|
||
}
|
||
.app .page .material-listBox {
|
||
flex: 1;
|
||
}
|
||
.app .page .material-listBox .list-box-list {
|
||
width: 100%;
|
||
}
|
||
.app .page .material-listBox .list-box-list .data-item {
|
||
border: 1px solid #efeaea;
|
||
border-radius: 0.625rem;
|
||
box-shadow: 0 0.46875rem 0.46875rem #efeaea;
|
||
padding: 0.625rem 0.6875rem;
|
||
margin-bottom: 0.5rem;
|
||
background-color: #ffffff;
|
||
}
|
||
.app .page .material-listBox .list-box-list .data-item .itemBox {
|
||
line-height: 1.5625rem;
|
||
display: flex;
|
||
justify-content: space-between;
|
||
align-items: center;
|
||
}
|
||
.app .page .material-listBox .list-box-list .data-item .itemBox .zongjian {
|
||
height: 1px;
|
||
flex: 1;
|
||
background-color: #f0f0f0;
|
||
margin: 0 0.5rem;
|
||
} |