12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- @charset "UTF-8";
- /**
- * 下方引入的为uView UI的集成样式文件,为scss预处理器,其中包含了一些"u-"开头的自定义变量
- * 使用的时候,请将下面的一行复制到您的uniapp项目根目录的uni.scss中即可
- * uView自定义的css类名和scss变量,均以"u-"开头,不会造成冲突,请放心使用
- */
- view.data-v-6b019429, scroll-view.data-v-6b019429, swiper-item.data-v-6b019429 {
- display: flex;
- flex-direction: column;
- flex-shrink: 0;
- flex-grow: 0;
- flex-basis: auto;
- align-items: stretch;
- align-content: flex-start;
- }
- .u-swiper.data-v-6b019429 {
- display: flex;
- flex-direction: row;
- justify-content: center;
- align-items: center;
- position: relative;
- overflow: hidden;
- }
- .u-swiper__wrapper.data-v-6b019429 {
- flex: 1;
- }
- .u-swiper__wrapper__item.data-v-6b019429 {
- flex: 1;
- }
- .u-swiper__wrapper__item__wrapper.data-v-6b019429 {
- display: flex;
- flex-direction: row;
- position: relative;
- overflow: hidden;
- transition: -webkit-transform 0.3s;
- transition: transform 0.3s;
- transition: transform 0.3s, -webkit-transform 0.3s;
- flex: 1;
- }
- .u-swiper__wrapper__item__wrapper__image.data-v-6b019429 {
- flex: 1;
- }
- .u-swiper__wrapper__item__wrapper__video.data-v-6b019429 {
- flex: 1;
- }
- .u-swiper__wrapper__item__wrapper__title.data-v-6b019429 {
- position: absolute;
- background-color: rgba(0, 0, 0, 0.3);
- bottom: 0;
- left: 0;
- right: 0;
- font-size: 28rpx;
- padding: 12rpx 24rpx;
- color: #FFFFFF;
- flex: 1;
- }
- .u-swiper__indicator.data-v-6b019429 {
- position: absolute;
- bottom: 10px;
- }
|