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.
129 lines
2.5 KiB
129 lines
2.5 KiB
8 months ago
|
page {
|
||
|
background-color: rgba(246, 246, 246, 1);
|
||
|
}
|
||
|
.page {
|
||
|
padding: 48rpx 32rpx 0;
|
||
|
background-color: #fff;
|
||
|
.upload {
|
||
|
margin: 0 auto 0;
|
||
|
display: block;
|
||
|
width: 136rpx;
|
||
|
height: 136rpx;
|
||
|
.avatar {
|
||
|
width: 136rpx;
|
||
|
height: 136rpx;
|
||
|
border-radius: 50%;
|
||
|
}
|
||
|
.edit {
|
||
|
position: absolute;
|
||
|
bottom: 0;
|
||
|
right: 0;
|
||
|
width: 52rpx;
|
||
|
height: 52rpx;
|
||
|
border-radius: 50%;
|
||
|
background-color: #fff;
|
||
|
display: flex;
|
||
|
align-items: center;
|
||
|
justify-content: center;
|
||
|
.icon {
|
||
|
width: 32rpx;
|
||
|
height: 32rpx;
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
.row {
|
||
|
padding: 32rpx 0;
|
||
|
display: flex;
|
||
|
align-items: center;
|
||
|
justify-content: space-between;
|
||
|
.label {
|
||
|
font-size: 32rpx;
|
||
|
color: rgba(133, 133, 133, 1);
|
||
|
}
|
||
|
.content {
|
||
|
flex: 1;
|
||
|
text-align: right;
|
||
|
font-size: 28rpx;
|
||
|
color: rgba(20, 21, 21, 1);
|
||
|
}
|
||
|
.picker {
|
||
|
flex: 1;
|
||
|
.picker-content {
|
||
|
text-align: right;
|
||
|
font-size: 28rpx;
|
||
|
color: rgba(20, 21, 21, 1);
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
.btn {
|
||
|
margin: 32rpx 32rpx 0;
|
||
|
width: 686rpx;
|
||
|
height: 88rpx;
|
||
|
border-radius: 84rpx 84rpx 84rpx 84rpx;
|
||
|
border: 1rpx solid #00b4c5;
|
||
|
box-sizing: border-box;
|
||
|
display: flex;
|
||
|
align-items: center;
|
||
|
justify-content: center;
|
||
|
font-size: 32rpx;
|
||
|
color: rgba(0, 180, 197, 1);
|
||
|
&:first-of-type {
|
||
|
margin-top: 48rpx;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
.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: 216rpx;
|
||
|
box-sizing: border-box;
|
||
|
background: #f7f8f9;
|
||
|
border-radius: 24rpx 24rpx 24rpx 24rpx;
|
||
|
border: 2rpx solid #f8f9f9;
|
||
|
font-size: 32rx;
|
||
|
}
|
||
|
.tags {
|
||
|
margin-top: 32rpx;
|
||
|
display: flex;
|
||
|
flex-wrap: wrap;
|
||
|
gap: 20rpx;
|
||
|
.tag {
|
||
|
padding: 6rpx 44rpx;
|
||
|
font-size: 32rpx;
|
||
|
color: rgba(133, 133, 133, 1);
|
||
|
line-height: 44rpx;
|
||
|
background-color: #fff;
|
||
|
border: 1px solid rgba(133, 133, 133, 1);
|
||
|
border-radius: 8rpx;
|
||
|
&.active {
|
||
|
background-color: #fff;
|
||
|
border-color: rgba(1, 180, 197, 1);
|
||
|
color: rgba(1, 180, 197, 1);
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
.submit {
|
||
|
margin-top: 32rpx;
|
||
|
height: 84rpx;
|
||
|
display: flex;
|
||
|
justify-content: center;
|
||
|
align-items: center;
|
||
|
background: linear-gradient(90deg, #00b4c5 0%, #54e2b4 100%);
|
||
|
font-size: 36rpx;
|
||
|
color: #fff;
|
||
|
border-radius: 64rpx 64rpx 64rpx 64rpx;
|
||
|
}
|
||
|
}
|