123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293 |
- /**
- * uni-app内置的常用样式变量
- */
- /* 行为相关颜色 */
- /* 文字基本颜色 */
- /* 背景颜色 */
- /* 边框颜色 */
- /* 尺寸变量 */
- /* 文字尺寸 */
- /* 图片尺寸 */
- /* Border Radius */
- /* 水平间距 */
- /* 垂直间距 */
- /* 透明度 */
- /* 文章场景相关 */
- .u-empty.data-v-1500ce68,
- .u-empty__wrap.data-v-1500ce68,
- .u-tabs.data-v-1500ce68,
- .u-tabs__wrapper.data-v-1500ce68,
- .u-tabs__wrapper__scroll-view-wrapper.data-v-1500ce68,
- .u-tabs__wrapper__scroll-view.data-v-1500ce68,
- .u-tabs__wrapper__nav.data-v-1500ce68,
- .u-tabs__wrapper__nav__line.data-v-1500ce68,
- .up-empty.data-v-1500ce68,
- .up-empty__wrap.data-v-1500ce68,
- .up-tabs.data-v-1500ce68,
- .up-tabs__wrapper.data-v-1500ce68,
- .up-tabs__wrapper__scroll-view-wrapper.data-v-1500ce68,
- .up-tabs__wrapper__scroll-view.data-v-1500ce68,
- .up-tabs__wrapper__nav.data-v-1500ce68,
- .up-tabs__wrapper__nav__line.data-v-1500ce68 {
- display: flex;
- flex-direction: column;
- flex-shrink: 0;
- flex-grow: 0;
- flex-basis: auto;
- align-items: stretch;
- align-content: flex-start;
- }
- .u-picker.data-v-1500ce68 {
- position: relative;
- }
- .u-picker-input.data-v-1500ce68 {
- position: relative;
- }
- .u-picker-input .input-cover.data-v-1500ce68 {
- opacity: 0;
- position: absolute;
- top: 0;
- bottom: 0;
- left: 0;
- right: 0;
- z-index: 1;
- }
- .u-picker__view__column.data-v-1500ce68 {
- display: flex;
- flex-direction: row;
- flex: 1;
- justify-content: center;
- }
- .u-picker__view__column__item.data-v-1500ce68 {
- display: flex;
- flex-direction: row;
- justify-content: center;
- align-items: center;
- font-size: 16px;
- text-align: center;
- display: block;
- color: #303133;
- }
- .u-picker__view__column__item--disabled.data-v-1500ce68 {
- cursor: not-allowed;
- opacity: 0.35;
- }
- .u-picker--loading.data-v-1500ce68 {
- position: absolute;
- top: 0;
- right: 0;
- left: 0;
- bottom: 0;
- display: flex;
- flex-direction: row;
- justify-content: center;
- align-items: center;
- background-color: rgba(255, 255, 255, 0.87);
- z-index: 1000;
- }
|