145 lines
2.2 KiB
CSS
145 lines
2.2 KiB
CSS
.container {
|
|
padding: 30rpx;
|
|
box-sizing: border-box;
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.select-container {
|
|
margin-bottom: 40rpx;
|
|
position: relative;
|
|
}
|
|
|
|
.select-label {
|
|
font-size: 28rpx;
|
|
color: #333;
|
|
margin-bottom: 20rpx;
|
|
display: block;
|
|
}
|
|
|
|
.search-input {
|
|
width: 100%;
|
|
height: 80rpx;
|
|
border: 1rpx solid #ddd;
|
|
border-radius: 10rpx;
|
|
padding: 0 20rpx;
|
|
font-size: 28rpx;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
.options-container {
|
|
margin-top: 10rpx;
|
|
max-height: 400rpx;
|
|
width: 100%;
|
|
overflow-y: auto;
|
|
border: 1rpx solid #ddd;
|
|
border-radius: 10rpx;
|
|
background-color: #fff;
|
|
position: absolute;
|
|
z-index: 10;
|
|
}
|
|
|
|
.option-item {
|
|
height: 80rpx;
|
|
line-height: 80rpx;
|
|
padding: 0 20rpx;
|
|
font-size: 28rpx;
|
|
border-bottom: 1rpx solid #f0f0f0;
|
|
}
|
|
|
|
.option-item:last-child {
|
|
border-bottom: none;
|
|
}
|
|
|
|
.option-item:hover {
|
|
background-color: #f5f5f5;
|
|
}
|
|
|
|
.option-item.selected {
|
|
background-color: #e6f7ff;
|
|
color: #1890ff;
|
|
}
|
|
|
|
.camera-section {
|
|
flex: 1;
|
|
}
|
|
|
|
.camera-container {
|
|
text-align: center;
|
|
padding: 40rpx;
|
|
}
|
|
|
|
.camera-icon-container{
|
|
width: 130rpx;
|
|
height: 130rpx;
|
|
border: 5rpx solid #333;
|
|
border-radius: 50%;
|
|
margin: 0 auto;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
|
|
.camera-icon {
|
|
width: 90rpx;
|
|
height: 90rpx;
|
|
margin: 0 auto;
|
|
}
|
|
|
|
.camera-text {
|
|
margin-top: 20rpx;
|
|
font-size: 28rpx;
|
|
color: #666;
|
|
}
|
|
|
|
.photos-container {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
margin-top: 20rpx;
|
|
}
|
|
|
|
.photo-item {
|
|
width: 150rpx;
|
|
height: 150rpx;
|
|
margin: 20rpx 20rpx 0 0;
|
|
position: relative;
|
|
border: 1rpx solid #ddd;
|
|
}
|
|
|
|
.photo-preview {
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
|
|
.delete-icon {
|
|
position: absolute;
|
|
top: -10rpx;
|
|
right: -10rpx;
|
|
width: 40rpx;
|
|
height: 40rpx;
|
|
background-color: rgba(255, 0, 0, 0.8);
|
|
border-radius: 50%;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
color: white;
|
|
font-size: 24rpx;
|
|
}
|
|
|
|
.footer {
|
|
padding: 30rpx;
|
|
background-color: #fff;
|
|
border-top: 1rpx solid #eee;
|
|
margin-top: 20rpx;
|
|
}
|
|
|
|
.submit-button {
|
|
width: 100%;
|
|
height: 90rpx;
|
|
background-color: #1890ff;
|
|
color: white;
|
|
border: none;
|
|
border-radius: 45rpx;
|
|
font-size: 32rpx;
|
|
margin-top: 50rpx;
|
|
} |