You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
404 lines
10 KiB
404 lines
10 KiB
2 months ago
|
page {
|
||
|
background-color: rgba(246, 246, 246, 1);
|
||
|
}
|
||
|
.page-title {
|
||
|
width: 400rpx;
|
||
|
height: 52rpx;
|
||
|
}
|
||
|
|
||
|
.page {
|
||
|
padding-bottom: 240rpx;
|
||
|
.header {
|
||
|
padding: 46rpx 0 50rpx;
|
||
|
.user {
|
||
|
padding: 0 32rpx;
|
||
|
display: flex;
|
||
|
align-items: center;
|
||
|
justify-content: space-between;
|
||
|
gap: 24rpx;
|
||
|
.avatar {
|
||
|
flex-shrink: 0;
|
||
|
width: 120rpx;
|
||
|
height: 120rpx;
|
||
|
border-radius: 50%;
|
||
|
border: 2px solid #fff;
|
||
|
}
|
||
|
.wrap {
|
||
|
flex: 1;
|
||
|
.name {
|
||
|
font-size: 40rpx;
|
||
|
color: rgba(255, 255, 255, 1);
|
||
|
}
|
||
|
.content {
|
||
|
margin-top: 22rpx;
|
||
|
font-size: 28rpx;
|
||
|
color: rgba(255, 255, 255, 1);
|
||
|
}
|
||
|
}
|
||
|
.code {
|
||
|
flex-shrink: 0;
|
||
|
width: 72rpx;
|
||
|
height: 72rpx;
|
||
|
}
|
||
|
}
|
||
|
.patient {
|
||
|
margin-top: 26rpx;
|
||
|
.p-title {
|
||
|
padding-left: 32rpx;
|
||
|
font-size: 32rpx;
|
||
|
color: rgba(255, 255, 255, 1);
|
||
|
.num {
|
||
|
font-size: 48rpx;
|
||
|
font-weight: bold;
|
||
|
}
|
||
|
}
|
||
|
.swiper {
|
||
|
margin-top: 20rpx;
|
||
|
height: 116rpx;
|
||
|
.swiper-item {
|
||
|
padding: 0 12rpx 0;
|
||
|
box-sizing: border-box;
|
||
|
line-height: 1;
|
||
|
.swiper-item-container {
|
||
|
background-color: rgba(255, 255, 255, 0.9);
|
||
|
height: 100%;
|
||
|
border-radius: 24rpx;
|
||
|
padding: 20rpx;
|
||
|
display: flex;
|
||
|
align-items: center;
|
||
|
gap: 12rpx;
|
||
|
box-sizing: border-box;
|
||
|
.avatar {
|
||
|
width: 76rpx;
|
||
|
height: 76rpx;
|
||
|
border-radius: 50%;
|
||
|
}
|
||
|
.wrap {
|
||
|
.name {
|
||
|
font-size: 32rpx;
|
||
|
color: rgba(176, 178, 181, 1);
|
||
|
}
|
||
|
.date {
|
||
|
margin-top: 16rpx;
|
||
|
font-size: 24rpx;
|
||
|
color: rgba(105, 108, 114, 0.6);
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
&.active {
|
||
|
.swiper-item-container {
|
||
|
background-color: #fff;
|
||
|
box-shadow: 0 2rpx 4rpx rgba(0, 0, 0, 0.1);
|
||
|
.wrap {
|
||
|
.name {
|
||
|
color: rgba(28, 107, 255, 1);
|
||
|
}
|
||
|
.date {
|
||
|
color: rgba(28, 107, 255, 0.6);
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
.body {
|
||
|
position: relative;
|
||
|
padding: 42rpx 40rpx 0;
|
||
|
background-color: rgba(246, 246, 246, 1);
|
||
|
border-radius: 32rpx 32rpx 0 0;
|
||
|
&::before {
|
||
|
position: absolute;
|
||
|
top: -25rpx;
|
||
|
left: 80rpx;
|
||
|
content: '';
|
||
|
width: 0;
|
||
|
height: 0;
|
||
|
border-style: solid;
|
||
|
border-width: 0 26rpx 26rpx 26rpx;
|
||
|
border-color: transparent transparent rgba(246, 246, 246, 1) transparent;
|
||
|
}
|
||
|
.doctor {
|
||
|
padding: 32rpx;
|
||
|
border-radius: 32rpx;
|
||
|
background-color: #fff;
|
||
|
.d-header {
|
||
|
display: flex;
|
||
|
align-items: center;
|
||
|
justify-content: space-between;
|
||
|
.title {
|
||
|
font-size: 32rpx;
|
||
|
color: rgba(34, 34, 34, 1);
|
||
|
font-weight: bold;
|
||
|
}
|
||
|
.message {
|
||
|
position: relative;
|
||
|
font-size: 28rpx;
|
||
|
color: rgba(0, 0, 0, 0.6);
|
||
|
.dot {
|
||
|
position: absolute;
|
||
|
right: -7rpx;
|
||
|
top: -7rpx;
|
||
|
width: 16rpx;
|
||
|
height: 16rpx;
|
||
|
border-radius: 50%;
|
||
|
background-color: rgba(232, 70, 60, 1);
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
.d-container {
|
||
|
margin-top: 32rpx;
|
||
|
display: flex;
|
||
|
align-items: center;
|
||
|
justify-content: space-between;
|
||
|
gap: 16rpx;
|
||
|
.avatar {
|
||
|
flex-shrink: 0;
|
||
|
width: calc(92rpx * 1.5);
|
||
|
display: flex;
|
||
|
.a-img {
|
||
|
flex-shrink: 0;
|
||
|
width: 92rpx;
|
||
|
height: 92rpx;
|
||
|
border-radius: 50%;
|
||
|
&:last-of-type {
|
||
|
transform: translateX(-50%);
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
.wrap {
|
||
|
flex: 1;
|
||
|
.name {
|
||
|
font-size: 32rpx;
|
||
|
color: rgba(34, 34, 34, 1);
|
||
|
font-weight: bold;
|
||
|
}
|
||
|
.content {
|
||
|
margin-top: 12rpx;
|
||
|
font-size: 28rpx;
|
||
|
color: rgba(0, 0, 0, 0.3);
|
||
|
}
|
||
|
}
|
||
|
.btn {
|
||
|
flex-shrink: 0;
|
||
|
width: 162rpx;
|
||
|
height: 56rpx;
|
||
|
font-size: 32rpx;
|
||
|
color: rgba(255, 255, 255, 1);
|
||
|
text-align: center;
|
||
|
line-height: 56rpx;
|
||
|
background: #1c6bff;
|
||
|
border-radius: 68rpx 68rpx 68rpx 68rpx;
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
.progress {
|
||
|
margin-top: 38rpx;
|
||
|
.p-header {
|
||
|
padding-bottom: 32rpx;
|
||
|
font-size: 32rpx;
|
||
|
color: rgba(34, 34, 34, 1);
|
||
|
font-weight: bold;
|
||
|
}
|
||
|
.card {
|
||
|
display: flex;
|
||
|
gap: 24rpx;
|
||
|
.c-aside {
|
||
|
flex-shrink: 0;
|
||
|
display: flex;
|
||
|
flex-direction: column;
|
||
|
align-items: center;
|
||
|
.line-top {
|
||
|
flex-shrink: 0;
|
||
|
height: 48rpx;
|
||
|
border-right: 1px dashed rgba(225, 225, 226, 1);
|
||
|
}
|
||
|
.num {
|
||
|
flex-shrink: 0;
|
||
|
width: 56rpx;
|
||
|
height: 56rpx;
|
||
|
border-radius: 50%;
|
||
|
font-size: 40rpx;
|
||
|
text-align: center;
|
||
|
line-height: 56rpx;
|
||
|
color: rgba(255, 255, 255, 1);
|
||
|
background-color: rgba(225, 225, 226, 1);
|
||
|
}
|
||
|
.line-bottom {
|
||
|
flex: 1;
|
||
|
border-right: 1px dashed rgba(225, 225, 226, 1);
|
||
|
}
|
||
|
.hide {
|
||
|
opacity: 0;
|
||
|
}
|
||
|
}
|
||
|
.c-container {
|
||
|
padding-bottom: 24rpx;
|
||
|
flex: 1;
|
||
|
.module {
|
||
|
position: relative;
|
||
|
padding: 32rpx;
|
||
|
background-color: #fff;
|
||
|
border-radius: 32rpx;
|
||
|
box-shadow: 0rpx 4rpx 24rpx 0rpx rgba(0, 0, 0, 0.05);
|
||
|
.m-header {
|
||
|
display: flex;
|
||
|
justify-content: space-between;
|
||
|
align-items: center;
|
||
|
.title {
|
||
|
font-size: 32rpx;
|
||
|
color: rgba(171, 174, 180, 1);
|
||
|
display: flex;
|
||
|
align-items: center;
|
||
|
gap: 8rpx;
|
||
|
.tag {
|
||
|
font-size: 28rpx;
|
||
|
color: rgba(171, 174, 180, 1);
|
||
|
line-height: 34rpx;
|
||
|
padding: 0 18rpx;
|
||
|
border-radius: 40rpx 40rpx 40rpx 40rpx;
|
||
|
border: 1rpx solid rgba(171, 174, 180, 0.52);
|
||
|
}
|
||
|
}
|
||
|
.date {
|
||
|
font-size: 28rpx;
|
||
|
color: rgba(171, 174, 180, 1);
|
||
|
}
|
||
|
}
|
||
|
.m-body {
|
||
|
margin-top: 16rpx;
|
||
|
display: flex;
|
||
|
align-items: center;
|
||
|
justify-content: space-between;
|
||
|
.status {
|
||
|
font-size: 28rpx;
|
||
|
color: rgba(171, 174, 180, 1);
|
||
|
display: flex;
|
||
|
align-items: center;
|
||
|
gap: 10rpx;
|
||
|
.icon {
|
||
|
opacity: 0;
|
||
|
width: 36rpx;
|
||
|
height: 36rpx;
|
||
|
}
|
||
|
}
|
||
|
.detail {
|
||
|
font-size: 28rpx;
|
||
|
color: rgba(28, 107, 255, 1);
|
||
|
}
|
||
|
}
|
||
|
.btn {
|
||
|
position: absolute;
|
||
|
top: 48rpx;
|
||
|
right: 32rpx;
|
||
|
width: 162rpx;
|
||
|
height: 56rpx;
|
||
|
display: flex;
|
||
|
align-items: center;
|
||
|
justify-content: center;
|
||
|
font-size: 32rpx;
|
||
|
color: rgba(181, 184, 189, 0.6);
|
||
|
border-radius: 68rpx 68rpx 68rpx 68rpx;
|
||
|
border: 2rpx solid rgba(181, 184, 189, 0.6);
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
&.finish {
|
||
|
.c-aside {
|
||
|
.line-top {
|
||
|
border-color: rgba(28, 107, 255, 1);
|
||
|
}
|
||
|
.num {
|
||
|
background-color: rgba(14, 209, 167, 1);
|
||
|
}
|
||
|
.line-bottom {
|
||
|
border-color: rgba(28, 107, 255, 1);
|
||
|
}
|
||
|
}
|
||
|
.c-container {
|
||
|
.module {
|
||
|
.m-header {
|
||
|
.title {
|
||
|
color: rgba(34, 34, 34, 1);
|
||
|
}
|
||
|
}
|
||
|
.m-body {
|
||
|
.status {
|
||
|
color: rgba(14, 209, 167, 1);
|
||
|
.icon {
|
||
|
opacity: 1;
|
||
|
}
|
||
|
}
|
||
|
.detail {
|
||
|
color: rgba(28, 107, 255, 1);
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
&.current {
|
||
|
.c-aside {
|
||
|
.line-top {
|
||
|
border-color: rgba(28, 107, 255, 1);
|
||
|
}
|
||
|
.num {
|
||
|
background-color: rgba(28, 107, 255, 1);
|
||
|
}
|
||
|
}
|
||
|
.c-container {
|
||
|
.module {
|
||
|
.m-header {
|
||
|
.title {
|
||
|
color: rgba(34, 34, 34, 1);
|
||
|
}
|
||
|
}
|
||
|
.m-body {
|
||
|
.status {
|
||
|
color: rgba(34, 34, 34, 1);
|
||
|
}
|
||
|
.detail {
|
||
|
color: rgba(28, 107, 255, 1);
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
.kkd {
|
||
|
margin-top: 32rpx;
|
||
|
display: flex;
|
||
|
align-items: center;
|
||
|
justify-content: space-between;
|
||
|
gap: 22rpx;
|
||
|
.k-item {
|
||
|
padding: 28rpx 24rpx;
|
||
|
flex: 1;
|
||
|
background: linear-gradient(52deg, #ffffff 0%, #eff4ff 100%);
|
||
|
border-radius: 32rpx 32rpx 32rpx 32rpx;
|
||
|
border: 2rpx solid #ffffff;
|
||
|
display: flex;
|
||
|
align-items: center;
|
||
|
.icon {
|
||
|
width: 88rpx;
|
||
|
height: 88rpx;
|
||
|
}
|
||
|
.wrap {
|
||
|
padding-left: 14rpx;
|
||
|
.title {
|
||
|
font-size: 28rpx;
|
||
|
color: rgba(34, 34, 34, 1);
|
||
|
line-height: 44rpx;
|
||
|
}
|
||
|
.content {
|
||
|
font-size: 32rpx;
|
||
|
color: rgba(34, 34, 34, 1);
|
||
|
font-weight: bold;
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|