1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283 |
- @charset "UTF-8";
- /**
- * 下方引入的为uView UI的集成样式文件,为scss预处理器,其中包含了一些"u-"开头的自定义变量
- * 使用的时候,请将下面的一行复制到您的uniapp项目根目录的uni.scss中即可
- * uView自定义的css类名和scss变量,均以"u-"开头,不会造成冲突,请放心使用
- */
- view.data-v-0a306a29, scroll-view.data-v-0a306a29, swiper-item.data-v-0a306a29 {
- display: flex;
- flex-direction: column;
- flex-shrink: 0;
- flex-grow: 0;
- flex-basis: auto;
- align-items: stretch;
- align-content: flex-start;
- }
- .u-search.data-v-0a306a29 {
- display: flex;
- flex-direction: row;
- align-items: center;
- flex: 1;
- }
- .u-search__content.data-v-0a306a29 {
- display: flex;
- flex-direction: row;
- align-items: center;
- padding: 0 10px;
- flex: 1;
- justify-content: space-between;
- border-width: 1px;
- border-color: transparent;
- border-style: solid;
- overflow: hidden;
- }
- .u-search__content__icon.data-v-0a306a29 {
- display: flex;
- flex-direction: row;
- align-items: center;
- }
- .u-search__content__label.data-v-0a306a29 {
- color: #303133;
- font-size: 14px;
- margin: 0 4px;
- }
- .u-search__content__close.data-v-0a306a29 {
- width: 20px;
- height: 20px;
- border-top-left-radius: 100px;
- border-top-right-radius: 100px;
- border-bottom-left-radius: 100px;
- border-bottom-right-radius: 100px;
- background-color: #C6C7CB;
- display: flex;
- flex-direction: row;
- align-items: center;
- justify-content: center;
- -webkit-transform: scale(0.82);
- transform: scale(0.82);
- }
- .u-search__content__input.data-v-0a306a29 {
- flex: 1;
- font-size: 14px;
- line-height: 1;
- margin: 0 5px;
- color: #303133;
- }
- .u-search__content__input--placeholder.data-v-0a306a29 {
- color: #909193;
- }
- .u-search__action.data-v-0a306a29 {
- font-size: 14px;
- color: #303133;
- width: 0;
- overflow: hidden;
- transition-property: width;
- transition-duration: 0.3s;
- white-space: nowrap;
- text-align: center;
- }
- .u-search__action--active.data-v-0a306a29 {
- width: 40px;
- margin-left: 5px;
- }
|