123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121 |
- .content {
- display: flex;
- flex-direction: column;
- padding: 30rpx;
- background-color: #f7f9fc;
- min-height: 100vh;
- }
- .header {
- display: flex;
- align-items: center;
- margin-bottom: 40rpx;
- }
- .back-btn {
- display: flex;
- align-items: center;
- margin-right: 20rpx;
- }
- .back-icon {
- font-size: 40rpx;
- color: #3a9eeb;
- margin-right: 5rpx;
- }
- .back-text {
- font-size: 28rpx;
- color: #3a9eeb;
- }
- .page-title {
- font-size: 36rpx;
- font-weight: bold;
- color: #333;
- flex: 1;
- text-align: center;
- margin-right: 60rpx;
- }
- .form-container {
- background-color: #fff;
- border-radius: 20rpx;
- padding: 30rpx;
- box-shadow: 0 2rpx 20rpx rgba(0, 0, 0, 0.05);
- }
- .form-group {
- margin-bottom: 30rpx;
- }
- .form-label {
- font-size: 28rpx;
- color: #333;
- margin-bottom: 15rpx;
- display: block;
- font-weight: 600;
- }
- .form-input {
- width: 100%;
- height: 80rpx;
- background-color: #f5f7fa;
- border-radius: 10rpx;
- padding: 0 20rpx;
- font-size: 28rpx;
- color: #333;
- }
- .form-slider {
- margin: 20rpx 0;
- }
- .slider-value {
- font-size: 26rpx;
- color: #666;
- text-align: right;
- }
- .tag-container {
- display: flex;
- flex-wrap: wrap;
- margin: 0 -10rpx;
- }
- .tag {
- padding: 10rpx 20rpx;
- background-color: #f5f7fa;
- border-radius: 30rpx;
- margin: 10rpx;
- font-size: 26rpx;
- color: #666;
- }
- .tag.active {
- background-color: #3a9eeb;
- color: #fff;
- }
- .checkbox-group {
- display: flex;
- flex-direction: column;
- }
- .checkbox-label {
- display: flex;
- align-items: center;
- margin-bottom: 20rpx;
- font-size: 28rpx;
- }
- .checkbox-label text {
- margin-left: 10rpx;
- }
- .action-buttons {
- display: flex;
- justify-content: space-between;
- margin-top: 50rpx;
- }
- .reset-btn, .submit-btn {
- width: 45%;
- height: 80rpx;
- border-radius: 40rpx;
- display: flex;
- align-items: center;
- justify-content: center;
- font-size: 30rpx;
- font-weight: bold;
- }
- .reset-btn {
- background-color: #f5f7fa;
- color: #666;
- }
- .submit-btn {
- background-color: #3a9eeb;
- color: #fff;
- }
|