|
|
|
|
page {
|
|
|
|
|
background: #f2f4f5;
|
|
|
|
|
}
|
|
|
|
|
.page {
|
|
|
|
|
padding: 40rpx 30rpx;
|
|
|
|
|
.container {
|
|
|
|
|
background: #ffffff;
|
|
|
|
|
border-radius: 24rpx;
|
|
|
|
|
padding: 0 30rpx;
|
|
|
|
|
.row {
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
padding: 30rpx 0;
|
|
|
|
|
gap: 20rpx;
|
|
|
|
|
border-bottom: 1rpx solid #f2f4f5;
|
|
|
|
|
&:last-child {
|
|
|
|
|
border-bottom: none;
|
|
|
|
|
}
|
|
|
|
|
.label {
|
|
|
|
|
flex-shrink: 0;
|
|
|
|
|
width: 5em;
|
|
|
|
|
font-size: 36rpx;
|
|
|
|
|
color: rgba(33, 33, 32, 0.30);
|
|
|
|
|
line-height: 48rpx;
|
|
|
|
|
}
|
|
|
|
|
.content {
|
|
|
|
|
flex: 1;
|
|
|
|
|
font-size: 36rpx;
|
|
|
|
|
color: rgba(33, 33, 32, 1);
|
|
|
|
|
line-height: 48rpx;
|
|
|
|
|
word-break: break-all;
|
|
|
|
|
.avatar-small {
|
|
|
|
|
width: 128rpx;
|
|
|
|
|
height: 128rpx;
|
|
|
|
|
border-radius: 50%;
|
|
|
|
|
}
|
|
|
|
|
.edit-text {
|
|
|
|
|
font-size: 36rpx;
|
|
|
|
|
color: rgba(22, 121, 203, 1);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
.switch-row {
|
|
|
|
|
flex: 1;
|
|
|
|
|
display: flex;
|
|
|
|
|
justify-content: flex-end;
|
|
|
|
|
.switch {
|
|
|
|
|
transform: scale(0.8);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
.switch-btn {
|
|
|
|
|
margin-top: 64rpx;
|
|
|
|
|
font-size: 36rpx;
|
|
|
|
|
color: rgba(255, 255, 255, 1);
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
height: 84rpx;
|
|
|
|
|
background: rgba(22, 121, 203, 1);
|
|
|
|
|
border-radius: 64rpx;
|
|
|
|
|
&.logout {
|
|
|
|
|
margin-top: 32rpx;
|
|
|
|
|
background: #fff;
|
|
|
|
|
color: rgba(22, 121, 203, 1);
|
|
|
|
|
border: 2rpx solid rgba(22, 121, 203, 1);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.popup-date {
|
|
|
|
|
padding: 32rpx 30rpx 84rpx;
|
|
|
|
|
.title {
|
|
|
|
|
display: flex;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
font-size: 40rpx;
|
|
|
|
|
color: rgba(33, 33, 32, 1);
|
|
|
|
|
font-weight: bold;
|
|
|
|
|
}
|
|
|
|
|
.textarea {
|
|
|
|
|
padding: 30rpx;
|
|
|
|
|
margin-top: 32rpx;
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 180rpx;
|
|
|
|
|
box-sizing: border-box;
|
|
|
|
|
background: #f7f8f9;
|
|
|
|
|
border-radius: 12rpx;
|
|
|
|
|
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(232, 243, 253, 1);
|
|
|
|
|
&:nth-of-type(2n) {
|
|
|
|
|
background-color: rgba(205, 232, 255, 1);
|
|
|
|
|
}
|
|
|
|
|
&:not(:last-of-type) {
|
|
|
|
|
border-bottom: 1px solid #fff;
|
|
|
|
|
}
|
|
|
|
|
&:first-of-type {
|
|
|
|
|
border-radius: 12rpx 12rpx 0 0;
|
|
|
|
|
.name {
|
|
|
|
|
border-radius: 12rpx 0 0 0;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
&:last-of-type {
|
|
|
|
|
border-radius: 0 0 12rpx 12rpx;
|
|
|
|
|
.name {
|
|
|
|
|
border-radius: 0 0 0 12rpx;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
.name {
|
|
|
|
|
height: 76rpx;
|
|
|
|
|
font-size: 36rpx;
|
|
|
|
|
color: #fff;
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
background-color: rgba(85, 164, 230, 1);
|
|
|
|
|
}
|
|
|
|
|
.item {
|
|
|
|
|
position: relative;
|
|
|
|
|
font-size: 36rpx;
|
|
|
|
|
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: 96rpx;
|
|
|
|
|
display: flex;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
align-items: center;
|
|
|
|
|
background: linear-gradient( 90deg, #293B9F 0%, #1679CB 100%);
|
|
|
|
|
font-size: 36rpx;
|
|
|
|
|
color: #fff;
|
|
|
|
|
border-radius: 12rpx;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.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;
|
|
|
|
|
}
|
|
|
|
|
}
|