123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120 |
- /**
- * 这里是uni-app内置的常用样式变量
- *
- * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
- * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
- *
- */
- /**
- * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
- *
- * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
- */
- /* 颜色变量 */
- /* 行为相关颜色 */
- /* 文字基本颜色 */
- /* 背景颜色 */
- /* 边框颜色 */
- /* 尺寸变量 */
- /* 文字尺寸 */
- /* 图片尺寸 */
- /* Border Radius */
- /* 水平间距 */
- /* 垂直间距 */
- /* 透明度 */
- /* 文章场景相关 */
- @keyframes loading-929a32c8 {
- 0% {
- opacity: 0.5;
- }
- 50% {
- opacity: 1;
- }
- 100% {
- opacity: 0.5;
- }
- }
- .skeleton-wrap.data-v-929a32c8 {
- width: 100%;
- height: 100vh;
- position: relative;
- }
- .skeleton-wrap .skeleton-banner.data-v-929a32c8 {
- width: 100%;
- height: calc(100vh - 882rpx);
- background: #f4f4f4;
- }
- .skeleton-wrap .container-box.data-v-929a32c8 {
- padding: 24rpx 18rpx;
- margin: 14rpx 20rpx;
- background: var(--ui-BG);
- animation: loading-929a32c8 1.4s ease infinite;
- }
- .skeleton-wrap .container-box .container-box-strip.data-v-929a32c8 {
- height: 40rpx;
- background: #f3f3f1;
- border-radius: 20rpx;
- }
- .skeleton-wrap .container-box .title.data-v-929a32c8 {
- width: 470rpx;
- height: 50rpx;
- border-radius: 25rpx;
- }
- .skeleton-wrap .container-box .w-364.data-v-929a32c8 {
- width: 364rpx;
- }
- .skeleton-wrap .container-box .w-380.data-v-929a32c8 {
- width: 380rpx;
- }
- .skeleton-wrap .container-box .w-556.data-v-929a32c8 {
- width: 556rpx;
- }
- .skeleton-wrap .container-box .w-198.data-v-929a32c8 {
- width: 198rpx;
- }
- .skeleton-wrap .container-box .w-252.data-v-929a32c8 {
- width: 252rpx;
- }
- .skeleton-wrap .container-box .circle.data-v-929a32c8 {
- width: 40rpx;
- height: 40rpx;
- background: #f3f3f1;
- border-radius: 50%;
- }
- .skeleton-wrap .ui-tabbar-box.data-v-929a32c8 {
- box-shadow: 0px -6px 10px 0px rgba(51, 51, 51, 0.2);
- }
- .skeleton-wrap .foot.data-v-929a32c8 {
- height: 100rpx;
- background: var(--ui-BG);
- }
- .skeleton-wrap .foot .rec.data-v-929a32c8 {
- width: 38rpx;
- height: 38rpx;
- background: #f3f3f1;
- border-radius: 8rpx;
- }
- .skeleton-wrap .foot .oval.data-v-929a32c8 {
- width: 38rpx;
- height: 22rpx;
- background: #f3f3f1;
- border-radius: 11rpx;
- }
- .skeleton-wrap .foot .add-btn.data-v-929a32c8 {
- width: 214rpx;
- height: 72rpx;
- font-weight: 500;
- font-size: 28rpx;
- border-radius: 40rpx 0 0 40rpx;
- background-color: var(--ui-BG-Main-light);
- color: var(--ui-BG-Main);
- }
- .skeleton-wrap .foot .buy-btn.data-v-929a32c8 {
- width: 214rpx;
- height: 72rpx;
- font-weight: 500;
- font-size: 28rpx;
- border-radius: 0 40rpx 40rpx 0;
- background: linear-gradient(90deg, var(--ui-BG-Main), var(--ui-BG-Main-gradient));
- color: #ffffff;
- }
|