/** * 这里是uni-app内置的常用样式变量 * * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量 * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App * */ /** * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能 * * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件 */ /* 颜色变量 */ /* 行为相关颜色 */ /* 文字基本颜色 */ /* 背景颜色 */ /* 边框颜色 */ /* 尺寸变量 */ /* 文字尺寸 */ /* 图片尺寸 */ /* Border Radius */ /* 水平间距 */ /* 垂直间距 */ /* 透明度 */ /* 文章场景相关 */ .container.data-v-b419a402 { min-height: 100vh; background: #f5f5f5; } .top-section.data-v-b419a402 { background: #fff; padding: 60rpx 30rpx 20rpx; box-shadow: 0 8rpx 16rpx rgba(0, 200, 83, 0.15); } .top-section .header.data-v-b419a402 { display: flex; align-items: center; } .top-section .header .title.data-v-b419a402 { font-family: PingFang SC; font-weight: 500; font-size: 16px; line-height: 140%; letter-spacing: 0%; text-align: center; vertical-align: middle; margin-left: 30%; font-weight: bold; } .top-section .status-tabs.data-v-b419a402 { display: flex; background: rgba(255, 255, 255, 0.1); border-radius: 12rpx; padding: 4rpx; } .top-section .status-tabs .tab-item.data-v-b419a402 { flex: 1; text-align: center; padding: 16rpx 0; color: #353535; font-size: 28rpx; } .top-section .status-tabs .tab-item.active.data-v-b419a402 { background: #fff; border-radius: 8rpx; color: #00C853; } .filter-bar.data-v-b419a402 { display: flex; align-items: center; background: #fff; margin: 20rpx; border-radius: 12rpx; overflow: visible; padding: 0 0; position: relative; height: 64rpx; } .filter-item.data-v-b419a402 { display: flex; align-items: center; padding: 0 20rpx; font-size: 28rpx; color: #353535; border-right: 1px solid #eee; } .filter-item .text-green.data-v-b419a402 { color: #00C853; } .search-area.data-v-b419a402 { flex: 1; width: 100%; display: flex; justify-content: flex-end; align-items: center; position: static; overflow: visible; } .search-box.data-v-b419a402 { display: flex; align-items: center; width: 90%; position: absolute; left: 0; right: 0; top: 0; height: 100%; background: #f5f5f5; border-radius: 12rpx; box-shadow: 0 2rpx 8rpx rgba(0, 0, 0, 0.04); padding: 0 24rpx; z-index: 10; transform: translateX(100%); opacity: 0; transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); } .search-box.active.data-v-b419a402 { transform: translateX(0); opacity: 1; } .search-box input.data-v-b419a402 { flex: 1; font-size: 28rpx; margin: 0 10rpx; background: transparent; border: none; outline: none; } .search-box .cancel-btn.data-v-b419a402 { color: #999; font-size: 28rpx; margin-left: 16rpx; } .search-icon.data-v-b419a402 { width: 64rpx; height: 64rpx; display: flex; align-items: center; justify-content: center; border-radius: 32rpx; background: #fff; box-shadow: 0 2rpx 8rpx rgba(0, 0, 0, 0.04); } .order-list.data-v-b419a402 { height: calc(100vh - 300rpx); width: 80%; margin: 0 auto; padding: 0 20rpx; } .order-item.data-v-b419a402 { background: #fff; border-radius: 12rpx; padding: 20rpx; margin-bottom: 20rpx; } .order-item .order-header.data-v-b419a402 { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20rpx; } .order-item .order-header .order-id.data-v-b419a402 { font-size: 32rpx; color: #333; font-weight: 500; } .order-item .order-header .status-tag.data-v-b419a402 { font-size: 24rpx; padding: 4rpx 16rpx; border-radius: 20rpx; } .order-item .order-header .status-tag.appointed.data-v-b419a402 { color: #00C853; background: rgba(0, 200, 83, 0.1); } .order-item .order-header .status-tag.pending.data-v-b419a402 { color: #FF9800; background: rgba(255, 152, 0, 0.1); } .order-item .order-header .status-tag.waiting.data-v-b419a402 { color: #2196F3; background: rgba(33, 150, 243, 0.1); } .order-item .order-header .status-tag.rejected.data-v-b419a402 { color: #F44336; background: rgba(244, 67, 54, 0.1); } .order-item .order-info .info-item.data-v-b419a402 { display: flex; margin-bottom: 10rpx; } .order-item .order-info .info-item .label.data-v-b419a402 { color: #999; font-size: 28rpx; width: 160rpx; } .order-item .order-info .info-item .value.data-v-b419a402 { color: #333; font-size: 28rpx; flex: 1; } .order-item .order-actions.data-v-b419a402 { display: flex; justify-content: flex-end; margin-top: 20rpx; padding-top: 20rpx; border-top: 1px solid #f5f5f5; } .order-item .order-actions .action-btn.data-v-b419a402 { display: flex; align-items: center; padding: 10rpx 20rpx; margin-left: 20rpx; border-radius: 8rpx; } .order-item .order-actions .action-btn text.data-v-b419a402 { font-size: 28rpx; margin-left: 8rpx; } .order-item .order-actions .action-btn.reject.data-v-b419a402 { background: #f5f5f5; color: #666; } .order-item .order-actions .action-btn.approve.data-v-b419a402 { background: rgba(0, 200, 83, 0.1); color: #00C853; } .time-picker-overlay.data-v-b419a402 { position: fixed; top: 0; left: 0; right: 0; bottom: 0; z-index: 100; background: rgba(0, 0, 0, 0.08); } .time-picker-wrapper.data-v-b419a402 { background: #fff; border-radius: 16rpx; box-shadow: 0 8rpx 32rpx 0 rgba(0, 0, 0, 0.1); z-index: 101; } .time-type-header.data-v-b419a402 { display: flex; align-items: center; justify-content: center; padding: 30rpx 0; } .time-type-header .type-item.data-v-b419a402 { position: relative; padding: 0 40rpx; font-size: 32rpx; color: #999; } .time-type-header .type-item.active.data-v-b419a402 { color: #00C853; font-weight: bold; } .time-type-header .type-item .active-line.data-v-b419a402 { position: absolute; left: 50%; bottom: -10rpx; transform: translateX(-50%); width: 40rpx; height: 4rpx; background: #00C853; border-radius: 2rpx; } .time-type-header .type-divider.data-v-b419a402 { color: #999; font-size: 28rpx; margin: 0 20rpx; } .time-picker-content.data-v-b419a402 { position: relative; height: 440rpx; } .time-picker-content .select-mask.data-v-b419a402 { position: absolute; left: 0; right: 0; top: 50%; transform: translateY(-44rpx); height: 88rpx; z-index: 2; pointer-events: none; } .time-picker-content .select-mask .select-line.data-v-b419a402 { position: absolute; left: 0; right: 0; height: 1px; background: rgba(0, 0, 0, 0.1); } .time-picker-content .select-mask .select-line.data-v-b419a402:first-child { top: 0; } .time-picker-content .select-mask .select-line.data-v-b419a402:last-child { bottom: 0; } .time-picker-content .picker-view.data-v-b419a402 { width: 100%; height: 100%; } .time-picker-content .picker-view .picker-item.data-v-b419a402 { line-height: 88rpx; text-align: center; color: #999; font-size: 32rpx; } /* 选中项样式 */ .data-v-b419a402 .uni-picker-view-indicator { height: 88rpx !important; } .data-v-b419a402 .uni-picker-view-mask { background-image: linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.6) 45%, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0.6) 55%, rgba(255, 255, 255, 0.95) 100%); } .data-v-b419a402 .uni-picker-view-indicator::before,.data-v-b419a402 .uni-picker-view-indicator::after { height: 1px; background-color: rgba(0, 0, 0, 0.1); } .data-v-b419a402 .uni-picker-view-content > view { color: #999; font-size: 32rpx; } .data-v-b419a402 .uni-picker-view-indicator view { color: #000 !important; font-weight: bold !important; } .time-picker-footer.data-v-b419a402 { padding: 20rpx; display: flex; justify-content: space-between; border-top: 1rpx solid #f5f5f5; } .time-picker-footer .btn.data-v-b419a402 { flex: 1; height: 88rpx; line-height: 88rpx; text-align: center; border-radius: 44rpx; font-size: 32rpx; margin: 0 10rpx; } .time-picker-footer .btn.btn-reset.data-v-b419a402 { background: #f8f8f8; color: #666; } .time-picker-footer .btn.btn-confirm.data-v-b419a402 { background: #00C853; color: #fff; }