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.

194 lines
4.1 KiB

3 months ago
page {
background: #f2f4f5;
}
.page {
2 months ago
padding: 40rpx 30rpx;
3 months ago
.container {
background: #ffffff;
2 months ago
border-radius: 24rpx;
padding: 0 30rpx;
.row {
3 months ago
display: flex;
align-items: center;
2 months ago
padding: 30rpx 0;
gap: 20rpx;
border-bottom: 1rpx solid #f2f4f5;
&:last-child {
border-bottom: none;
3 months ago
}
.label {
flex-shrink: 0;
2 months ago
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);
}
3 months ago
}
.switch-row {
2 months ago
flex: 1;
3 months ago
display: flex;
justify-content: flex-end;
.switch {
transform: scale(0.8);
}
}
}
}
.switch-btn {
2 months ago
margin-top: 64rpx;
3 months ago
font-size: 36rpx;
color: rgba(255, 255, 255, 1);
display: flex;
align-items: center;
justify-content: center;
height: 84rpx;
2 months ago
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);
}
3 months ago
}
}
.popup-date {
padding: 32rpx 30rpx 84rpx;
.title {
display: flex;
justify-content: center;
2 months ago
font-size: 40rpx;
color: rgba(33, 33, 32, 1);
3 months ago
font-weight: bold;
}
.textarea {
padding: 30rpx;
margin-top: 32rpx;
width: 100%;
height: 180rpx;
box-sizing: border-box;
background: #f7f8f9;
2 months ago
border-radius: 12rpx;
3 months ago
border: 2rpx solid #f8f9f9;
font-size: 32rx;
}
.week {
margin-top: 32rpx;
.w-row {
display: grid;
grid-template-columns: 156rpx repeat(2, 1fr);
2 months ago
background-color: rgba(232, 243, 253, 1);
3 months ago
&:nth-of-type(2n) {
2 months ago
background-color: rgba(205, 232, 255, 1);
3 months ago
}
&:not(:last-of-type) {
border-bottom: 1px solid #fff;
}
&:first-of-type {
2 months ago
border-radius: 12rpx 12rpx 0 0;
3 months ago
.name {
2 months ago
border-radius: 12rpx 0 0 0;
3 months ago
}
}
&:last-of-type {
2 months ago
border-radius: 0 0 12rpx 12rpx;
3 months ago
.name {
2 months ago
border-radius: 0 0 0 12rpx;
3 months ago
}
}
.name {
height: 76rpx;
2 months ago
font-size: 36rpx;
3 months ago
color: #fff;
display: flex;
align-items: center;
justify-content: center;
2 months ago
background-color: rgba(85, 164, 230, 1);
3 months ago
}
.item {
position: relative;
2 months ago
font-size: 36rpx;
3 months ago
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 {
2 months ago
// background-color: rgba(237, 252, 255, 1);
3 months ago
.icon {
display: block;
}
}
}
}
}
.submit {
margin-top: 32rpx;
2 months ago
height: 96rpx;
3 months ago
display: flex;
justify-content: center;
align-items: center;
2 months ago
background: linear-gradient( 90deg, #293B9F 0%, #1679CB 100%);
3 months ago
font-size: 36rpx;
color: #fff;
2 months ago
border-radius: 12rpx;
3 months ago
}
}
.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: 96rpx;
3 months ago
display: flex;
justify-content: center;
align-items: center;
background: linear-gradient( 90deg, #293B9F 0%, #1679CB 100%);
3 months ago
font-size: 36rpx;
color: #fff;
border-radius: 12rpx;
3 months ago
}
}