- 电子药箱: 药品库存管理 + 手动录入 + 今日用药打卡 - 药品百科: 搜索 + 分类筛选 + 20种药品静态数据 - 惠教中心: 4条药品使用指南课程 - 我的: 家庭成员信息管理 - 自定义TabBar + navigation-bar组件 - SVG药品分类插图
43 lines
800 B
SCSS
43 lines
800 B
SCSS
page {
|
|
height: 100%;
|
|
background: #081120;
|
|
}
|
|
|
|
.wxroom-redirect {
|
|
width: 100%;
|
|
height: 100vh;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
gap: 28rpx;
|
|
color: #f4f8ff;
|
|
background:
|
|
radial-gradient(circle at 18% 12%, rgba(83, 214, 255, 0.14), transparent 28%),
|
|
linear-gradient(180deg, #0d1b31 0%, #09121f 52%, #050b15 100%);
|
|
}
|
|
|
|
.wxroom-redirect__spinner {
|
|
width: 72rpx;
|
|
height: 72rpx;
|
|
border-radius: 50%;
|
|
border: 6rpx solid rgba(255, 255, 255, 0.1);
|
|
border-top-color: #71c1ff;
|
|
animation: wxroom-redirect-spin 0.9s linear infinite;
|
|
}
|
|
|
|
.wxroom-redirect__text {
|
|
font-size: 30rpx;
|
|
line-height: 1.4;
|
|
}
|
|
|
|
@keyframes wxroom-redirect-spin {
|
|
from {
|
|
transform: rotate(0deg);
|
|
}
|
|
|
|
to {
|
|
transform: rotate(360deg);
|
|
}
|
|
}
|