simple.wxss 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121
  1. .content {
  2. display: flex;
  3. flex-direction: column;
  4. padding: 30rpx;
  5. background-color: #f7f9fc;
  6. min-height: 100vh;
  7. }
  8. .header {
  9. display: flex;
  10. align-items: center;
  11. margin-bottom: 40rpx;
  12. }
  13. .back-btn {
  14. display: flex;
  15. align-items: center;
  16. margin-right: 20rpx;
  17. }
  18. .back-icon {
  19. font-size: 40rpx;
  20. color: #3a9eeb;
  21. margin-right: 5rpx;
  22. }
  23. .back-text {
  24. font-size: 28rpx;
  25. color: #3a9eeb;
  26. }
  27. .page-title {
  28. font-size: 36rpx;
  29. font-weight: bold;
  30. color: #333;
  31. flex: 1;
  32. text-align: center;
  33. margin-right: 60rpx;
  34. }
  35. .form-container {
  36. background-color: #fff;
  37. border-radius: 20rpx;
  38. padding: 30rpx;
  39. box-shadow: 0 2rpx 20rpx rgba(0, 0, 0, 0.05);
  40. }
  41. .form-group {
  42. margin-bottom: 30rpx;
  43. }
  44. .form-label {
  45. font-size: 28rpx;
  46. color: #333;
  47. margin-bottom: 15rpx;
  48. display: block;
  49. font-weight: 600;
  50. }
  51. .form-input {
  52. width: 100%;
  53. height: 80rpx;
  54. background-color: #f5f7fa;
  55. border-radius: 10rpx;
  56. padding: 0 20rpx;
  57. font-size: 28rpx;
  58. color: #333;
  59. }
  60. .form-slider {
  61. margin: 20rpx 0;
  62. }
  63. .slider-value {
  64. font-size: 26rpx;
  65. color: #666;
  66. text-align: right;
  67. }
  68. .tag-container {
  69. display: flex;
  70. flex-wrap: wrap;
  71. margin: 0 -10rpx;
  72. }
  73. .tag {
  74. padding: 10rpx 20rpx;
  75. background-color: #f5f7fa;
  76. border-radius: 30rpx;
  77. margin: 10rpx;
  78. font-size: 26rpx;
  79. color: #666;
  80. }
  81. .tag.active {
  82. background-color: #3a9eeb;
  83. color: #fff;
  84. }
  85. .checkbox-group {
  86. display: flex;
  87. flex-direction: column;
  88. }
  89. .checkbox-label {
  90. display: flex;
  91. align-items: center;
  92. margin-bottom: 20rpx;
  93. font-size: 28rpx;
  94. }
  95. .checkbox-label text {
  96. margin-left: 10rpx;
  97. }
  98. .action-buttons {
  99. display: flex;
  100. justify-content: space-between;
  101. margin-top: 50rpx;
  102. }
  103. .reset-btn, .submit-btn {
  104. width: 45%;
  105. height: 80rpx;
  106. border-radius: 40rpx;
  107. display: flex;
  108. align-items: center;
  109. justify-content: center;
  110. font-size: 30rpx;
  111. font-weight: bold;
  112. }
  113. .reset-btn {
  114. background-color: #f5f7fa;
  115. color: #666;
  116. }
  117. .submit-btn {
  118. background-color: #3a9eeb;
  119. color: #fff;
  120. }