123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202 |
- @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;
- width: 100%;
- 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;
- }
- .uni-select--disabled {
- background-color: #f5f7fa;
- cursor: not-allowed;
- }
- .uni-select__label {
- font-size: 16px;
- 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 {
- 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;
- 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_bottom,
- .uni-popper__arrow_bottom::after,
- .uni-popper__arrow_top,
- .uni-popper__arrow_top::after {
- position: absolute;
- display: block;
- width: 0;
- height: 0;
- border-color: transparent;
- border-style: solid;
- border-width: 6px;
- }
- .uni-popper__arrow_bottom {
- -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_bottom::after {
- content: " ";
- top: 1px;
- margin-left: -6px;
- border-top-width: 0;
- border-bottom-color: #fff;
- }
- .uni-popper__arrow_top {
- -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));
- bottom: -6px;
- left: 10%;
- margin-right: 3px;
- border-bottom-width: 0;
- border-top-color: #EBEEF5;
- }
- .uni-popper__arrow_top::after {
- content: " ";
- bottom: 1px;
- margin-left: -6px;
- border-bottom-width: 0;
- border-top-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;
- z-index: 2;
- }
|