feedback.wxss 813 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. /* pages/welfareMall/feedback/feedback.wxss */
  2. .feedback{
  3. width: 750rpx;
  4. height: auto;
  5. padding-bottom: 119rpx;
  6. background: #F7F7F7;
  7. }
  8. /* 垂直方向布局,水平居中 **/
  9. .flex-column{
  10. display: flex;
  11. flex-flow: column nowrap;
  12. align-items: center;
  13. justify-content: left;
  14. }
  15. /* 水平方向布局,垂直居中 **/
  16. .flex-row{
  17. display: flex;
  18. flex-flow: row nowrap;
  19. align-items: center;
  20. justify-content: center;
  21. }
  22. textarea{
  23. width: 659rpx;
  24. height: 320rpx;
  25. background: #FFFFFF;
  26. border: 1rpx solid #3E3E3E;
  27. border-radius: 10rpx;
  28. }
  29. .suggest_text-num{
  30. align-items: flex-end;
  31. }
  32. .feedback-exp{
  33. width: 659rpx;
  34. height: 120rpx;
  35. justify-content: space-between;
  36. }
  37. .feedback-explain{
  38. width: 350rpx;
  39. height: 40rpx;
  40. font-size: 24rpx;
  41. font-weight: 500;
  42. color: #444444;
  43. }