info-work.wxss 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121
  1. /* pages/edit-info/info-base/info-base.wxss */
  2. .base{
  3. display: flex;
  4. flex-direction: column;
  5. color: #333;
  6. /* background: rgba(244,244,244,1); */
  7. height: 100vh;
  8. padding-top: 25rpx;
  9. }
  10. .item{
  11. display: flex;
  12. flex-direction: row;
  13. justify-content: space-between;
  14. padding: 20rpx;
  15. border-top:3rpx solid gainsboro;
  16. background: #ffffff;
  17. }
  18. .item-end{
  19. display: flex;
  20. flex-direction: row;
  21. justify-content: space-between;
  22. padding: 20rpx;
  23. border-top:3rpx solid gainsboro;
  24. border-bottom:3rpx solid gainsboro;
  25. background: #ffffff;
  26. }
  27. .item-left{
  28. display: flex;
  29. flex-direction: row;
  30. align-items: center;
  31. }
  32. .item-right{
  33. display: flex;
  34. flex-direction: row;
  35. align-items: center;
  36. }
  37. .item-tou{
  38. height: 110rpx;
  39. width: 110rpx;
  40. margin-right: 10rpx;
  41. border-radius: 50%;
  42. }
  43. .item-icon{
  44. height: 50rpx;
  45. width: 50rpx;
  46. }
  47. .item-input{
  48. width: 180rpx;
  49. text-align: right;
  50. font-size: 13px;
  51. }
  52. .item-radio{
  53. margin-right: 10rpx;
  54. }
  55. .item-text{
  56. font-size: 12px;
  57. color: #999999;
  58. margin-right: 5rpx;
  59. }
  60. .item-unit{
  61. font-size: 13px;
  62. margin-left: 10rpx;
  63. }
  64. .button-group{
  65. padding: 60rpx 0;
  66. display: flex;
  67. flex-direction: row;
  68. justify-content: space-around;
  69. font-size: 15px;
  70. background: rgba(244,244,244,1);
  71. }
  72. .button-submit{
  73. display: flex;
  74. flex-direction: row;
  75. align-items: center;
  76. justify-content: center;
  77. width: 180rpx !important;
  78. height: 72rpx !important;
  79. color: #ffffff;
  80. background: rgba(243,123,29,0.8);
  81. border-radius: 10rpx;
  82. }
  83. .button-reset{
  84. display: flex;
  85. flex-direction: row;
  86. align-items: center;
  87. justify-content: center;
  88. width: 180rpx !important;
  89. height: 72rpx !important;
  90. color: rgba(243,123,29,0.8);
  91. background: rgba(244, 244, 244, 0.966);
  92. border-radius: 10rpx;
  93. }
  94. .textarea{
  95. margin-top: 25rpx;
  96. background: #ffffff;
  97. padding-top: 10rpx;
  98. border: 3rpx solid gainsboro;
  99. }
  100. .textarea-one{
  101. display: flex;
  102. flex-direction: row;
  103. align-items: center;
  104. margin-left: 8rpx;
  105. }
  106. .textarea-data{
  107. padding: 8rpx 0 0 8rpx;
  108. width: 100%;
  109. height: 300rpx;
  110. margin-top: 10rpx;
  111. }
  112. .currentWordNumber {
  113. position: absolute;
  114. bottom: 10rpx;
  115. right: 10rpx;
  116. color: #888;
  117. }
  118. .textarea-tittle{
  119. font-size: 15px;
  120. margin: 8rpx;
  121. }