96 lines
1.2 KiB
Plaintext
96 lines
1.2 KiB
Plaintext
/**index.wxss**/
|
|
page {
|
|
height: 100vh;
|
|
display: flex;
|
|
flex-direction: column;
|
|
background-color: #f5f5f5;
|
|
}
|
|
.scrollarea {
|
|
flex: 1;
|
|
overflow-y: hidden;
|
|
}
|
|
.container {
|
|
padding: 20rpx;
|
|
}
|
|
|
|
.section {
|
|
border-radius: 16rpx;
|
|
padding: 30rpx;
|
|
margin-bottom: 20rpx;
|
|
box-shadow: 0 2rpx 10rpx rgba(0, 0, 0, 0.05);
|
|
}
|
|
|
|
.section-title {
|
|
font-size: 32rpx;
|
|
font-weight: bold;
|
|
margin-bottom: 20rpx;
|
|
}
|
|
|
|
.image-picker {
|
|
width: 100%;
|
|
height: 400rpx;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.preview-image {
|
|
width: 100%;
|
|
height: 100%;
|
|
object-fit: contain;
|
|
}
|
|
|
|
.placeholder {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
|
|
|
|
|
|
.image-info {
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.setting-slider {
|
|
width: 100%;
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.result-image {
|
|
width: 100%;
|
|
height: 400rpx;
|
|
border-radius: 12rpx;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.result-info {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 15rpx;
|
|
font-size: 28rpx;
|
|
color: #333;
|
|
}
|
|
|
|
.save-btn {
|
|
width: 100%;
|
|
height: 80rpx;
|
|
line-height: 80rpx;
|
|
font-size: 30rpx;
|
|
border-radius: 40rpx;
|
|
margin-top: 20rpx;
|
|
background-color: #fff;
|
|
color: #07C160;
|
|
border: 1rpx solid #07C160;
|
|
}
|