writeSuggestion.wxss 984 B

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