@charset "UTF-8"; /** * 这里是uni-app内置的常用样式变量 * * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量 * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App * */ /** * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能 * * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件 */ /* 颜色变量 */ /* 行为相关颜色 */ /* 文字基本颜色 */ /* 背景颜色 */ /* 边框颜色 */ /* 尺寸变量 */ /* 文字尺寸 */ /* 图片尺寸 */ /* Border Radius */ /* 水平间距 */ /* 垂直间距 */ /* 透明度 */ /* 文章场景相关 */ @media screen and (max-width: 500px) { .hide-on-phone { display: none; } } .uni-stat__select { display: flex; align-items: center; cursor: pointer; flex: 1; box-sizing: border-box; } .uni-stat-box { width: 100%; flex: 1; } .uni-stat__actived { width: 100%; flex: 1; } .uni-label-text { font-size: 14px; font-weight: bold; color: #6a6a6a; margin: auto 0; margin-right: 5px; } .uni-select { font-size: 14px; border: 1px solid #e5e5e5; box-sizing: border-box; border-radius: 4px; padding: 0 5px; padding-left: 10px; position: relative; display: flex; -webkit-user-select: none; user-select: none; flex-direction: row; align-items: center; border-bottom: solid 1px #e5e5e5; width: 100%; flex: 1; height: 35px; min-height: 35px; } .uni-select--disabled { background-color: #f5f7fa; cursor: not-allowed; } .uni-select__label { font-size: 16px; min-height: 35px; height: 35px; padding-right: 10px; color: #909399; } .uni-select__input-box { height: 35px; position: relative; display: flex; flex: 1; flex-direction: row; align-items: center; } .uni-select__input-box .tag-calss { font-family: Helvetica Neue, Helvetica, PingFang SC, Hiragino Sans GB, Microsoft YaHei, SimSun, sans-serif; font-weight: 400; -webkit-font-smoothing: antialiased; -webkit-tap-highlight-color: transparent; font-size: 12px; border: 1px solid #d9ecff; border-radius: 4px; white-space: nowrap; height: 24px; padding: 0 4px 0px 8px; line-height: 22px; box-sizing: border-box; margin: 2px 0 2px 6px; display: flex; max-width: 100%; align-items: center; background-color: #f4f4f5; border-color: #e9e9eb; color: #909399; } .uni-select__input-box .tag-calss .text { font-family: Helvetica Neue, Helvetica, PingFang SC, Hiragino Sans GB, Microsoft YaHei, SimSun, sans-serif; font-weight: 400; -webkit-font-smoothing: antialiased; -webkit-tap-highlight-color: transparent; font-size: 12px; white-space: nowrap; line-height: 22px; color: #909399; overflow: hidden; text-overflow: ellipsis; } .uni-select__input { flex: 1; font-size: 14px; height: 22px; line-height: 22px; } .uni-select__input-plac { font-size: 14px; color: #909399; } .uni-select__selector { box-sizing: border-box; position: absolute; top: calc(100% + 12px); left: 0; width: 100%; background-color: #FFFFFF; border: 1px solid #EBEEF5; border-radius: 6px; box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1); z-index: 3; padding: 4px 0; } .uni-select__selector-scroll { max-height: 200px; box-sizing: border-box; } .uni-select__selector-empty, .uni-select__selector-item { display: flex; cursor: pointer; line-height: 35px; font-size: 14px; text-align: center; /* border-bottom: solid 1px $uni-border-3; */ padding: 0px 10px; } .uni-select__selector-item:hover { background-color: #f9f9f9; } .uni-select__selector-empty:last-child, .uni-select__selector-item:last-child { border-bottom: none; } .uni-select__selector__disabled { opacity: 0.4; cursor: default; } /* picker 弹出层通用的指示小三角 */ .uni-popper__arrow, .uni-popper__arrow::after { position: absolute; display: block; width: 0; height: 0; border-color: transparent; border-style: solid; border-width: 6px; } .uni-popper__arrow { -webkit-filter: drop-shadow(0 2px 12px rgba(0, 0, 0, 0.03)); filter: drop-shadow(0 2px 12px rgba(0, 0, 0, 0.03)); top: -6px; left: 10%; margin-right: 3px; border-top-width: 0; border-bottom-color: #EBEEF5; } .uni-popper__arrow::after { content: " "; top: 1px; margin-left: -6px; border-top-width: 0; border-bottom-color: #fff; } .uni-select__input-text { width: 100%; color: #333; white-space: nowrap; text-overflow: ellipsis; -o-text-overflow: ellipsis; overflow: hidden; } .uni-select__input-placeholder { color: #6a6a6a; font-size: 12px; } .uni-select--mask { position: fixed; top: 0; bottom: 0; right: 0; left: 0; }