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.
195 lines
4.1 KiB
195 lines
4.1 KiB
page { |
|
background: #f2f4f5; |
|
} |
|
.page { |
|
padding: 32rpx 30rpx 40rpx; |
|
.container { |
|
position: relative; |
|
padding: 0 32rpx 64rpx; |
|
background: #ffffff; |
|
border-radius: 24rpx 24rpx 24rpx 24rpx; |
|
.row { |
|
padding: 32rpx 0; |
|
display: flex; |
|
align-items: center; |
|
justify-content: space-between; |
|
border-bottom: 1px solid rgba(173, 172, 178, 0.1); |
|
&:last-of-type { |
|
border: none; |
|
} |
|
.label { |
|
flex-shrink: 0; |
|
font-size: 32rpx; |
|
color: rgba(154, 161, 162, 1); |
|
width: 6em; |
|
} |
|
.switch-row { |
|
flex: 1; |
|
display: flex; |
|
.switch { |
|
transform: scale(0.8); |
|
} |
|
} |
|
.avatar { |
|
flex: 1; |
|
.avatar-user { |
|
width: 156rpx; |
|
height: 156rpx; |
|
border-radius: 50%; |
|
} |
|
} |
|
.content { |
|
flex: 1; |
|
font-size: 32rpx; |
|
color: rgba(33, 29, 46, 1); |
|
} |
|
.option { |
|
flex-shrink: 0; |
|
display: flex; |
|
align-items: center; |
|
.change { |
|
font-size: 32rpx; |
|
color: rgba(185, 130, 255, 1); |
|
} |
|
.icon { |
|
color: #d4d9da; |
|
} |
|
} |
|
} |
|
} |
|
.switch-btn { |
|
margin: 64rpx 0; |
|
font-size: 36rpx; |
|
color: rgba(255, 255, 255, 1); |
|
display: flex; |
|
align-items: center; |
|
justify-content: center; |
|
height: 84rpx; |
|
background: #67baca; |
|
border-radius: 64rpx 64rpx 64rpx 64rpx; |
|
} |
|
} |
|
|
|
.popup-date { |
|
padding: 32rpx 30rpx 84rpx; |
|
.title { |
|
display: flex; |
|
justify-content: center; |
|
font-size: 36rpx; |
|
color: rgba(40, 48, 49, 1); |
|
font-weight: bold; |
|
} |
|
.textarea { |
|
padding: 30rpx; |
|
margin-top: 32rpx; |
|
width: 100%; |
|
height: 180rpx; |
|
box-sizing: border-box; |
|
background: #f7f8f9; |
|
border-radius: 24rpx 24rpx 24rpx 24rpx; |
|
border: 2rpx solid #f8f9f9; |
|
font-size: 32rx; |
|
} |
|
.week { |
|
margin-top: 32rpx; |
|
.w-row { |
|
display: grid; |
|
grid-template-columns: 156rpx repeat(2, 1fr); |
|
background-color: rgba(242, 244, 245, 1); |
|
&:nth-of-type(2n) { |
|
background-color: rgba(247, 248, 249, 1); |
|
} |
|
&:not(:last-of-type) { |
|
border-bottom: 1px solid #fff; |
|
} |
|
&:first-of-type { |
|
border-radius: 24rpx 24rpx 0 0; |
|
.name { |
|
border-radius: 24rpx 0 0 0; |
|
} |
|
} |
|
&:last-of-type { |
|
border-radius: 0 0 24rpx 24rpx; |
|
.name { |
|
border-radius: 0 0 0 24rpx; |
|
} |
|
} |
|
.name { |
|
height: 76rpx; |
|
font-size: 32rpx; |
|
color: #fff; |
|
display: flex; |
|
align-items: center; |
|
justify-content: center; |
|
background-color: rgba(103, 186, 202, 1); |
|
} |
|
.item { |
|
position: relative; |
|
font-size: 32rpx; |
|
color: rgba(103, 113, 114, 1); |
|
display: flex; |
|
align-items: center; |
|
justify-content: center; |
|
border-left: 1px solid #fff; |
|
.icon { |
|
position: absolute; |
|
bottom: 0; |
|
right: 0; |
|
width: 32rpx; |
|
height: 32rpx; |
|
display: none; |
|
} |
|
&.active { |
|
background-color: rgba(237, 252, 255, 1); |
|
.icon { |
|
display: block; |
|
} |
|
} |
|
} |
|
} |
|
} |
|
.submit { |
|
margin-top: 32rpx; |
|
height: 84rpx; |
|
display: flex; |
|
justify-content: center; |
|
align-items: center; |
|
background: #67baca; |
|
font-size: 36rpx; |
|
color: #fff; |
|
border-radius: 64rpx 64rpx 64rpx 64rpx; |
|
} |
|
} |
|
|
|
.popup-brief { |
|
padding: 32rpx 30rpx 84rpx; |
|
.title { |
|
display: flex; |
|
justify-content: center; |
|
font-size: 36rpx; |
|
color: rgba(40, 48, 49, 1); |
|
font-weight: bold; |
|
} |
|
.textarea { |
|
padding: 30rpx; |
|
margin-top: 32rpx; |
|
width: 100%; |
|
height: 280rpx; |
|
box-sizing: border-box; |
|
background: #f7f8f9; |
|
border-radius: 24rpx 24rpx 24rpx 24rpx; |
|
border: 2rpx solid #f8f9f9; |
|
font-size: 32rx; |
|
} |
|
.submit { |
|
margin-top: 32rpx; |
|
height: 84rpx; |
|
display: flex; |
|
justify-content: center; |
|
align-items: center; |
|
background: #67baca; |
|
font-size: 36rpx; |
|
color: #fff; |
|
border-radius: 64rpx 64rpx 64rpx 64rpx; |
|
} |
|
}
|
|
|