| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- @charset "UTF-8";
- /* 页面左右间距 */
- /* 文字尺寸 */
- /*文字颜色*/
- /* 边框颜色 */
- /*颜色*/
- /* 图片加载中颜色 */
- /* 行为相关颜色 */
- /* 功能栏字体大小 */
- /*功能栏左侧小图标*/
- .u-progress.data-v-0fa21744 {
- overflow: hidden;
- height: 15px;
- display: inline-flex;
- align-items: center;
- width: 100%;
- border-radius: 100rpx;
- }
- .u-active.data-v-0fa21744 {
- width: 0;
- height: 100%;
- align-items: center;
- display: flex;
- flex-direction: row;
- justify-items: flex-end;
- justify-content: space-around;
- font-size: 20rpx;
- color: #ffffff;
- transition: all 0.4s ease;
- }
- .u-striped.data-v-0fa21744 {
- background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
- background-size: 39px 39px;
- }
- .u-striped-active.data-v-0fa21744 {
- -webkit-animation: progress-stripes-data-v-0fa21744 2s linear infinite;
- animation: progress-stripes-data-v-0fa21744 2s linear infinite;
- }
- @-webkit-keyframes progress-stripes-data-v-0fa21744 {
- 0% {
- background-position: 0 0;
- }
- 100% {
- background-position: 39px 0;
- }
- }
- @keyframes progress-stripes-data-v-0fa21744 {
- 0% {
- background-position: 0 0;
- }
- 100% {
- background-position: 39px 0;
- }
- }
|