Files
app-govern/common/css/base.scss

77 lines
1.3 KiB
SCSS
Raw Normal View History

2023-01-11 16:33:13 +08:00
page {
2023-01-13 16:32:56 +08:00
background: #f3f4f5;
2023-01-11 16:33:13 +08:00
}
.hide-txt {
overflow-x: hidden;
white-space: nowrap;
text-overflow: ellipsis;
word-break: break-all;
-webkit-line-clamp: 1;
}
.clamp-txt {
overflow: hidden;
display: -webkit-box;
-webkit-box-orient: vertical;
-webkit-line-clamp: 2;
word-break: break-all;
}
.bg-blue {
background: #277bc0;
}
.list {
.list-card {
margin-bottom: 20rpx;
padding: 24rpx 20rpx;
background: #fff;
.list-card-title {
font-size: 28rpx;
color: #111;
font-weight: 700;
}
.list-card-des {
display: flex;
align-items: center;
justify-content: space-between;
margin-top: 22rpx;
color: #999999;
font-size: 24rpx;
.list-card-des-btn {
margin-left: 20rpx;
display: flex;
align-items: center;
justify-content: center;
height: 48rpx;
width: 120rpx;
border-radius: 4rpx;
color: #fff;
background: #449dff;
}
}
}
}
.fixed-btn {
position: fixed;
right: 80rpx;
bottom: 200rpx;
width: 126rpx;
height: 126rpx;
background: #fff;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
box-shadow: 0 0 10rpx rgba(0, 0, 0, 0.2);
image {
height: 66rpx;
width: 66rpx;
}
}