- 电子药箱: 药品库存管理 + 手动录入 + 今日用药打卡 - 药品百科: 搜索 + 分类筛选 + 20种药品静态数据 - 惠教中心: 4条药品使用指南课程 - 我的: 家庭成员信息管理 - 自定义TabBar + navigation-bar组件 - SVG药品分类插图
84 lines
1.7 KiB
SCSS
84 lines
1.7 KiB
SCSS
/* components/empty/empty.wxss */
|
|
@import "../../variables";
|
|
|
|
.empty {
|
|
width: 100%;
|
|
position: relative;
|
|
box-sizing: border-box;
|
|
|
|
.content {
|
|
width: 100%;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
box-sizing: border-box;
|
|
position: relative;
|
|
z-index: 1;
|
|
}
|
|
|
|
.icon {
|
|
width: 200rpx;
|
|
height: 200rpx;
|
|
|
|
image {
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
}
|
|
|
|
.title {
|
|
color: #333333;
|
|
font-size: 32rpx;
|
|
line-height: 44rpx;
|
|
margin-top: 28rpx;
|
|
}
|
|
|
|
.description {
|
|
color: #999999;
|
|
font-size: 28rpx;
|
|
line-height: 40rpx;
|
|
margin-top: 8rpx;
|
|
text-align: center;
|
|
}
|
|
|
|
.action {
|
|
height: 54rpx;
|
|
line-height: 54rpx;
|
|
border-radius: 46rpx;
|
|
min-width: 140rpx;
|
|
padding: 0 24rpx;
|
|
text-align: center;
|
|
color: #ffffff;
|
|
font-size: 28rpx;
|
|
margin-top: 108rpx;
|
|
background: linear-gradient(139deg, #ff9a33 0%, #ff7200 100%);
|
|
}
|
|
}
|
|
|
|
.empty-legacy {
|
|
height: 60vh;
|
|
color: $gray-color;
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|
|
|
|
.empty-scene {
|
|
min-height: 1220rpx;
|
|
padding-top: 400rpx;
|
|
overflow: hidden;
|
|
background: #f5f5f5;
|
|
|
|
.scene-bg {
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 982rpx;
|
|
border-bottom-left-radius: 28rpx;
|
|
border-bottom-right-radius: 28rpx;
|
|
// background: linear-gradient(180deg, #ffd5af 0%, rgba(255, 255, 255, 0.2) 100%);
|
|
}
|
|
}
|