writeSuggestion.wxss 999 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. /* pages/writeSuggestion/writeSuggestion.wxss */
  2. page{
  3. background-color: #E2F0D9;
  4. height: 100%;
  5. }
  6. .suggestContainer{
  7. height: 100%;
  8. }
  9. .suggestWrapper{
  10. display: flex;
  11. flex-direction: column;
  12. width: 100%;
  13. padding: 20rpx;
  14. }
  15. /* 标题 */
  16. .suggestTitle{
  17. text-align: center;
  18. padding-bottom: 20rpx;
  19. font-weight: bold;
  20. }
  21. /* 输入的建议标题和内容公共样式 */
  22. .titleInput,
  23. .contentInput{
  24. width: 93%;
  25. padding: 10rpx;
  26. /* border: 1rpx solid gray; */
  27. border-radius: 20rpx;
  28. background-color: #fff;
  29. }
  30. /* 建议标题输入框的高度 */
  31. .titleInput{
  32. height: 150rpx;
  33. }
  34. /* 建议内容输入框的高度 */
  35. .contentInput{
  36. height: 800rpx;
  37. }
  38. /* 下方按钮 */
  39. .suggestBtn{
  40. display: flex;
  41. margin-top: 40rpx;
  42. justify-content: space-around;
  43. }
  44. .confirmBtn{
  45. font-size: 42rpx;
  46. width: 120rpx;
  47. padding: 10rpx 20rpx;
  48. border-radius: 40rpx;
  49. text-align: center;
  50. background-color: #8FAADC;
  51. color: white;
  52. }