123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596 |
- @charset "UTF-8";
- /**
- * 下方引入的为uView UI的集成样式文件,为scss预处理器,其中包含了一些"u-"开头的自定义变量
- * uView自定义的css类名和scss变量,均以"u-"开头,不会造成冲突,请放心使用
- */
- .u-dropdown.data-v-70bebccc {
- -webkit-box-flex: 1;
- -webkit-flex: 1;
- flex: 1;
- width: 100%;
- position: relative;
- }
- .u-dropdown__menu.data-v-70bebccc {
- display: -webkit-box;
- display: -webkit-flex;
- display: flex;
- -webkit-box-orient: horizontal;
- -webkit-box-direction: normal;
- -webkit-flex-direction: row;
- flex-direction: row;
- position: relative;
- z-index: 11;
- height: 80rpx;
- }
- .u-dropdown__menu__item.data-v-70bebccc {
- -webkit-box-flex: 1;
- -webkit-flex: 1;
- flex: 1;
- display: -webkit-box;
- display: -webkit-flex;
- display: flex;
- -webkit-box-orient: horizontal;
- -webkit-box-direction: normal;
- -webkit-flex-direction: row;
- flex-direction: row;
- -webkit-box-pack: center;
- -webkit-justify-content: center;
- justify-content: center;
- -webkit-box-align: center;
- -webkit-align-items: center;
- align-items: center;
- min-width: 25%;
- }
- .u-dropdown__menu__item__text.data-v-70bebccc {
- font-size: 28rpx;
- color: #606266;
- }
- .u-dropdown__menu__item__arrow.data-v-70bebccc {
- margin-left: 6rpx;
- -webkit-transition: -webkit-transform .3s;
- transition: -webkit-transform .3s;
- transition: transform .3s;
- transition: transform .3s, -webkit-transform .3s;
- -webkit-box-align: center;
- -webkit-align-items: center;
- align-items: center;
- display: -webkit-box;
- display: -webkit-flex;
- display: flex;
- -webkit-box-orient: horizontal;
- -webkit-box-direction: normal;
- -webkit-flex-direction: row;
- flex-direction: row;
- }
- .u-dropdown__menu__item__arrow--rotate.data-v-70bebccc {
- -webkit-transform: rotate(180deg);
- transform: rotate(180deg);
- }
- .u-dropdown__content.data-v-70bebccc {
- position: absolute;
- z-index: 8;
- width: 100%;
- left: 0px;
- bottom: 0;
- overflow: hidden;
- }
- .u-dropdown__content__mask.data-v-70bebccc {
- position: absolute;
- z-index: 9;
- background: rgba(0, 0, 0, 0.3);
- width: 100%;
- left: 0;
- top: 0;
- bottom: 0;
- }
- .u-dropdown__content__popup.data-v-70bebccc {
- position: relative;
- z-index: 10;
- -webkit-transition: all 0.3s;
- transition: all 0.3s;
- -webkit-transform: translate3D(0, -100%, 0);
- transform: translate3D(0, -100%, 0);
- overflow: hidden;
- }
|