proposalDetails.wxss 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  1. page{
  2. background: #f5f5f5;
  3. }
  4. .form{
  5. width: 690rpx;
  6. margin: 0 auto;
  7. background: #fff;
  8. display: flex;
  9. flex-direction: column;
  10. /* margin-top: 20rpx; */
  11. padding: 30rpx 0rpx 40rpx 0rpx;
  12. border-radius: 10rpx;
  13. }
  14. .input{
  15. display: flex;
  16. height: 60rpx;
  17. /* justify-content: center; */
  18. margin-top: 30rpx;
  19. padding: 0rpx 40rpx;
  20. line-height: 60rpx;
  21. }
  22. .input view{
  23. font-size: 30rpx;
  24. color:#333;
  25. }
  26. .input input{
  27. height: 60rpx;
  28. border:1rpx solid #999;
  29. border-radius: 14rpx;
  30. padding:0rpx 20rpx;
  31. width: 370rpx;
  32. font-size: 30rpx;
  33. }
  34. .input-name{
  35. width: 160rpx;
  36. display: flex;
  37. justify-content: space-between;
  38. }
  39. .picker{
  40. height: 60rpx;
  41. border:1rpx solid #999;
  42. border-radius: 14rpx;
  43. padding-left: 20rpx;
  44. width: 388rpx;
  45. line-height: 60rpx;
  46. }
  47. .weui-input{
  48. width: 100%;
  49. display: flex;
  50. justify-content: space-between;
  51. align-items: center;
  52. }
  53. .weui-input image{
  54. width: 26rpx;
  55. height: 14rpx;
  56. margin-right: 54rpx;
  57. }
  58. .code{
  59. width: 170rpx;
  60. height: 60rpx;
  61. margin-left: 20rpx;
  62. background: #6282f4;
  63. border-radius: 20rpx;
  64. color: #fff;
  65. font-size: 26rpx;
  66. }
  67. .textarea{
  68. display: flex;
  69. /* justify-content: center; */
  70. margin-top: 30rpx;
  71. padding: 0rpx 40rpx;
  72. }
  73. .textarea .input-name{
  74. font-size: 30rpx;
  75. color:#333;
  76. }
  77. textarea{
  78. border:1rpx solid #999;
  79. border-radius: 14rpx;
  80. /* margin-left: 6rpx; */
  81. padding: 10rpx 20rpx;
  82. height: 150rpx;
  83. width: 370rpx;
  84. }
  85. .bottom{
  86. position: fixed;
  87. left: 0;
  88. right: 0;
  89. margin:0 auto;
  90. bottom: 60rpx;
  91. display: flex;
  92. }
  93. .next{
  94. width: 100%;
  95. height: 90rpx;
  96. background: #6282f4;
  97. color: #fff;
  98. border-radius: 10rpx;
  99. margin: 20rpx;
  100. }