| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071 |
- @charset "UTF-8";
- /* 页面左右间距 */
- /* 文字尺寸 */
- /*文字颜色*/
- /* 边框颜色 */
- /*颜色*/
- /* 图片加载中颜色 */
- /* 行为相关颜色 */
- /* 功能栏字体大小 */
- /*功能栏左侧小图标*/
- .u-progress.data-v-02285945 {
- overflow: hidden;
- height: 15px;
- display: -webkit-inline-box;
- display: -webkit-inline-flex;
- display: inline-flex;
- -webkit-box-align: center;
- -webkit-align-items: center;
- align-items: center;
- width: 100%;
- border-radius: 100rpx;
- }
- .u-active.data-v-02285945 {
- width: 0;
- height: 100%;
- -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;
- justify-items: flex-end;
- -webkit-justify-content: space-around;
- justify-content: space-around;
- font-size: 20rpx;
- color: #ffffff;
- -webkit-transition: all 0.4s ease;
- transition: all 0.4s ease;
- }
- .u-striped.data-v-02285945 {
- background-image: -webkit-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-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-02285945 {
- -webkit-animation: progress-stripes-data-v-02285945 2s linear infinite;
- animation: progress-stripes-data-v-02285945 2s linear infinite;
- }
- @-webkit-keyframes progress-stripes-data-v-02285945 {
- 0% {
- background-position: 0 0;
- }
- 100% {
- background-position: 39px 0;
- }
- }
- @keyframes progress-stripes-data-v-02285945 {
- 0% {
- background-position: 0 0;
- }
- 100% {
- background-position: 39px 0;
- }
- }
|