leaveDetail.wxss 866 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. /* pages/leaveDetail/leaveDetail.wxss */
  2. .view-box{
  3. width: 700rpx;
  4. padding: 25rpx;
  5. display: flex;
  6. flex-wrap: wrap;
  7. justify-content: space-between;
  8. }
  9. .view-box view{
  10. font-size: 36rpx;
  11. height: 110rpx;
  12. line-height: 110rpx;
  13. border-bottom: 1px solid #eee;
  14. }
  15. .title{
  16. width: 40%;
  17. }
  18. .value{
  19. width: 60%;
  20. text-align: right;
  21. }
  22. .textarea-box{
  23. width: 100%;
  24. height: 400rpx !important;
  25. line-height: 40rpx;
  26. }
  27. .textarea-box textarea{
  28. width: 650rpx;
  29. height: 300rpx;
  30. background: #f1f1f1;
  31. padding: 25rpx;
  32. margin: 25rpx 0;
  33. border-radius: 20rpx;
  34. }
  35. .red-view{
  36. color: #cc6031;
  37. }
  38. .submit-view{
  39. position: fixed;
  40. bottom: 100rpx;
  41. width: 400rpx;
  42. height: 100rpx;
  43. line-height: 100rpx;
  44. background: #cc6031;
  45. color: #FFF;
  46. text-align: center;
  47. left: 50%;
  48. margin-left: -200rpx;
  49. border-radius: 50rpx;
  50. font-size: 36rpx;
  51. }