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.
147 lines
2.3 KiB
147 lines
2.3 KiB
/* pages/feedback/feedback.wxss */
|
|
.page-container {
|
|
min-height: 100vh;
|
|
background-color: #f5f5f5;
|
|
padding-bottom: 120rpx;
|
|
}
|
|
|
|
.form-container {
|
|
padding: 30rpx;
|
|
}
|
|
|
|
.form-section {
|
|
background: white;
|
|
border-radius: 20rpx;
|
|
padding: 30rpx;
|
|
margin-bottom: 30rpx;
|
|
box-shadow: 0 4rpx 20rpx rgba(0, 0, 0, 0.05);
|
|
}
|
|
|
|
.section-title {
|
|
display: block;
|
|
font-size: 28rpx;
|
|
font-weight: bold;
|
|
color: #333;
|
|
margin-bottom: 20rpx;
|
|
}
|
|
|
|
.type-list {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
gap: 20rpx;
|
|
}
|
|
|
|
.type-item {
|
|
padding: 15rpx 30rpx;
|
|
background: #f5f5f5;
|
|
border-radius: 50rpx;
|
|
font-size: 26rpx;
|
|
color: #666;
|
|
border: 2rpx solid transparent;
|
|
}
|
|
|
|
.type-item.active {
|
|
background: #667eea;
|
|
color: white;
|
|
border-color: #667eea;
|
|
}
|
|
|
|
.content-input {
|
|
width: 100%;
|
|
min-height: 200rpx;
|
|
padding: 20rpx;
|
|
background: #f8f8f8;
|
|
border-radius: 10rpx;
|
|
font-size: 28rpx;
|
|
color: #333;
|
|
margin-bottom: 10rpx;
|
|
}
|
|
|
|
.char-count {
|
|
display: block;
|
|
text-align: right;
|
|
font-size: 24rpx;
|
|
color: #999;
|
|
}
|
|
|
|
.contact-input {
|
|
width: 100%;
|
|
padding: 20rpx;
|
|
background: #f8f8f8;
|
|
border-radius: 10rpx;
|
|
font-size: 28rpx;
|
|
color: #333;
|
|
}
|
|
|
|
.image-list {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
gap: 20rpx;
|
|
}
|
|
|
|
.image-item {
|
|
position: relative;
|
|
width: 200rpx;
|
|
height: 200rpx;
|
|
}
|
|
|
|
.image {
|
|
width: 100%;
|
|
height: 100%;
|
|
border-radius: 10rpx;
|
|
}
|
|
|
|
.delete-btn {
|
|
position: absolute;
|
|
top: -10rpx;
|
|
right: -10rpx;
|
|
width: 40rpx;
|
|
height: 40rpx;
|
|
background: #ff6b6b;
|
|
color: white;
|
|
border-radius: 50%;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
font-size: 32rpx;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.add-image-btn {
|
|
width: 200rpx;
|
|
height: 200rpx;
|
|
border: 2rpx dashed #ccc;
|
|
border-radius: 10rpx;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
font-size: 60rpx;
|
|
color: #999;
|
|
}
|
|
|
|
.add-image-btn:active {
|
|
background: #f5f5f5;
|
|
}
|
|
|
|
.button-section {
|
|
padding: 30rpx;
|
|
}
|
|
|
|
.submit-btn {
|
|
width: 100%;
|
|
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
|
|
color: white;
|
|
border: none;
|
|
border-radius: 50rpx;
|
|
padding: 30rpx;
|
|
font-size: 32rpx;
|
|
font-weight: bold;
|
|
box-shadow: 0 8rpx 25rpx rgba(102, 126, 234, 0.3);
|
|
}
|
|
|
|
.submit-btn:active {
|
|
transform: translateY(2rpx);
|
|
box-shadow: 0 4rpx 15rpx rgba(102, 126, 234, 0.3);
|
|
}
|
|
|