signup.wxss 774 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. /* pages/signup/signup.wxss */
  2. .signupbase{
  3. background: #F5F5F5;
  4. display: flex;
  5. flex-direction: column;
  6. height: 100vh;
  7. }
  8. .top-resume{
  9. background: #FFEBE0;
  10. display: flex;
  11. flex-direction: row;
  12. padding: 13rpx 30rpx;
  13. justify-content: space-between;
  14. align-items: center;
  15. }
  16. .top-resume-button{
  17. background: #f37b1d;
  18. padding: 10rpx;
  19. color: #ffffff;
  20. font-size: 12px;
  21. }
  22. .textarea{
  23. margin-top: 25rpx;
  24. padding: 10rpx;
  25. background: #F5F5F5;
  26. }
  27. .textarea-data{
  28. padding: 8rpx 0 0 8rpx;
  29. background: #ffffff;
  30. width: 100%;
  31. height: 300rpx;
  32. border: 2rpx solid #FFEBE0;
  33. }
  34. .currentWordNumber {
  35. position: absolute;
  36. bottom: 10rpx;
  37. right: 10rpx;
  38. color: #888;
  39. }
  40. .button{
  41. margin-top: 50rpx;
  42. background: #f37b1d;
  43. color: #ffffff;
  44. width: 100%;
  45. }