info-self.wxss 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. /* pages/edit-info/info-self/info-self.wxss */
  2. .base{
  3. display: flex;
  4. flex-direction: column;
  5. color: #333;
  6. height: 100vh;
  7. padding-top: 25rpx;
  8. }
  9. .button-group{
  10. padding: 60rpx 0;
  11. display: flex;
  12. flex-direction: row;
  13. justify-content: space-around;
  14. font-size: 15px;
  15. /* background: rgba(244,244,244,1); */
  16. }
  17. .button-submit{
  18. display: flex;
  19. flex-direction: row;
  20. align-items: center;
  21. justify-content: center;
  22. width: 180rpx !important;
  23. height: 72rpx !important;
  24. color: #ffffff;
  25. background: rgba(243,123,29,0.8);
  26. border-radius: 10rpx;
  27. }
  28. .button-reset{
  29. display: flex;
  30. flex-direction: row;
  31. align-items: center;
  32. justify-content: center;
  33. width: 180rpx !important;
  34. height: 72rpx !important;
  35. color: rgba(243,123,29,0.8);
  36. background: rgba(244, 244, 244, 0.966);
  37. border-radius: 10rpx;
  38. }
  39. .textarea{
  40. background: #ffffff;
  41. padding-top: 10rpx;
  42. border: 3rpx solid gainsboro;
  43. }
  44. .textarea-one{
  45. display: flex;
  46. flex-direction: row;
  47. align-items: center;
  48. margin-left: 8rpx;
  49. }
  50. .textarea-data{
  51. padding: 8rpx 0 0 8rpx;
  52. width: 100%;
  53. height: 400rpx;
  54. margin-top: 10rpx;
  55. }
  56. .currentWordNumber {
  57. position: absolute;
  58. bottom: 10rpx;
  59. right: 10rpx;
  60. color: #888;
  61. }
  62. .textarea-tittle{
  63. font-size: 15px;
  64. margin: 8rpx;
  65. }