suggestions.wxss 649 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. /* pages/suggestions/suggestions.wxss */
  2. .suggestions {
  3. padding-top: 22rpx;
  4. font-size: 28rpx;
  5. border-top: 1rpx solid #eee;
  6. }
  7. .suggestions .tip {
  8. color: #aaadba;
  9. }
  10. .suggestions .label {
  11. color: #686b78;
  12. }
  13. .suggestions .label::before {
  14. content: "*";
  15. width: 22rpx;
  16. height: 40rpx;
  17. color: #fa6400;
  18. font-size: 28rpx;
  19. }
  20. .suggestions input {
  21. height: 80rpx;
  22. border-bottom: 1rpx solid #cfd2d5;
  23. margin-bottom: 38rpx;
  24. padding: 0 22rpx;
  25. }
  26. .suggestions textarea {
  27. width: calc(100% - 44rpx);
  28. height: 284rpx;
  29. border: 1rpx solid #cfd2d5;
  30. border-radius: 4rpx;
  31. margin-top: 18rpx;
  32. padding: 22rpx;
  33. margin-bottom: 198rpx;
  34. }