feedback.wxss 829 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. /* feedback.wxss */
  2. .container{
  3. display: flex;
  4. }
  5. .feedback_banner,.feedback_textarea,.feedback_input input{
  6. display: block;
  7. margin: 0 auto;
  8. font-size: 32rpx;
  9. font-family:"Microsoft Yahei",Tahoma,Arial,Helvetica,STHeiti;
  10. }
  11. .feedback_banner{
  12. width: 750rpx;
  13. height:246rpx;
  14. }
  15. .feedback_textarea{
  16. width: 670rpx;
  17. height: 220rpx;
  18. padding: 40rpx;
  19. font-size: 24rpx;
  20. color: #c7c7c7;
  21. background-color: #fff;
  22. }
  23. .top{
  24. margin-bottom: 25rpx;
  25. }
  26. .feedback_input input{
  27. width: 670rpx;
  28. padding:0 40rpx;
  29. height: 100rpx;
  30. font-size: 24rpx;
  31. color: #c7c7c7;
  32. background-color: #fff;
  33. }
  34. .feedback_btn{
  35. position: fixed;
  36. left: 0;
  37. bottom: 0;
  38. width: 100%;
  39. height: 98rpx;
  40. font-size: 24rpx;
  41. line-height: 98rpx;
  42. text-align: center;
  43. color: #fff;
  44. background-color: #b4a078;
  45. margin:30rpx auto 0;
  46. }