12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- /**
- * 这里是uni-app内置的常用样式变量
- *
- * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
- * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
- /* uni.scss */
- view.data-v-462e724c, scroll-view.data-v-462e724c, swiper-item.data-v-462e724c {
- display: flex;
- flex-direction: column;
- flex-shrink: 0;
- flex-grow: 0;
- flex-basis: auto;
- align-items: stretch;
- align-content: flex-start;
- }
- .u-notice.data-v-462e724c {
- display: flex;
- flex-direction: row;
- align-items: center;
- justify-content: space-between;
- }
- .u-notice__left-icon.data-v-462e724c {
- align-items: center;
- margin-right: 5px;
- }
- .u-notice__right-icon.data-v-462e724c {
- margin-left: 5px;
- align-items: center;
- }
- .u-notice__content.data-v-462e724c {
- text-align: right;
- flex: 1;
- display: flex;
- flex-direction: row;
- flex-wrap: nowrap;
- overflow: hidden;
- }
- .u-notice__content__text.data-v-462e724c {
- font-size: 14px;
- color: #f9ae3d;
- padding-left: 100%;
- word-break: keep-all;
- white-space: nowrap;
- animation: u-loop-animation-462e724c 10s linear infinite both;
- display: flex;
- flex-direction: row;
- }
- @keyframes u-loop-animation-462e724c {
- 0% {
- transform: translate3d(0, 0, 0);
- }
- 100% {
- transform: translate3d(-100%, 0, 0);
- }
- }
|