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.
215 lines
4.6 KiB
215 lines
4.6 KiB
4 weeks ago
|
page {
|
||
|
background: #f2f4f5;
|
||
|
}
|
||
|
.page {
|
||
|
padding: 164rpx 30rpx 40rpx;
|
||
|
.container {
|
||
|
position: relative;
|
||
|
padding: 92rpx 30rpx 64rpx;
|
||
|
background: #ffffff;
|
||
|
border-radius: 24rpx 24rpx 24rpx 24rpx;
|
||
|
.avatar {
|
||
|
position: absolute;
|
||
|
top: -90rpx;
|
||
|
left: 50%;
|
||
|
transform: translateX(-50%);
|
||
|
display: flex;
|
||
|
flex-direction: column;
|
||
|
align-items: center;
|
||
|
justify-content: center;
|
||
|
.avatar-user {
|
||
|
flex-shrink: 0;
|
||
|
width: 156rpx;
|
||
|
height: 156rpx;
|
||
|
border-radius: 50%;
|
||
|
}
|
||
|
.edit {
|
||
|
margin-top: -15rpx;
|
||
|
padding: 8rpx 24rpx;
|
||
|
background: #f2f4f5;
|
||
|
border-radius: 108rpx 108rpx 108rpx 108rpx;
|
||
|
font-size: 24rpx;
|
||
|
color: rgba(40, 48, 49, 1);
|
||
|
display: flex;
|
||
|
align-items: center;
|
||
|
line-height: 1;
|
||
|
.icon {
|
||
|
margin-right: 8rpx;
|
||
|
width: 24rpx;
|
||
|
height: 24rpx;
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
.row {
|
||
|
margin-top: 64rpx;
|
||
|
display: flex;
|
||
|
justify-content: space-between;
|
||
|
.label {
|
||
|
flex-shrink: 0;
|
||
|
font-size: 32rpx;
|
||
|
color: rgba(154, 161, 162, 1);
|
||
|
width: 6em;
|
||
|
}
|
||
|
.switch-row {
|
||
|
display: flex;
|
||
|
justify-content: flex-end;
|
||
|
.switch {
|
||
|
transform: scale(0.8);
|
||
|
}
|
||
|
}
|
||
|
.content {
|
||
|
flex: 1;
|
||
|
font-size: 32rpx;
|
||
|
color: rgba(40, 48, 49, 1);
|
||
|
}
|
||
|
.option {
|
||
|
flex-shrink: 0;
|
||
|
display: flex;
|
||
|
align-items: center;
|
||
|
.change {
|
||
|
font-size: 32rpx;
|
||
|
color: rgba(98, 190, 208, 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;
|
||
|
}
|
||
|
}
|