application.wxss 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. /* pages/form/application/application.wxss */
  2. .application{
  3. padding: 0 25rpx;
  4. height: calc(100% - 150rpx);
  5. background-color: #ffffff;
  6. }
  7. .form{
  8. height: calc(100vh - 300rpx);
  9. margin-top: 10rpx;
  10. }
  11. .label{
  12. background-color: var(--themeColor);
  13. text-align: center;
  14. line-height: 60rpx;
  15. color: #ffffff;
  16. border-radius: 10rpx;
  17. font-size: 14px;
  18. }
  19. .upload{
  20. margin: 15rpx 0;
  21. border: 1px solid var(--themeColor);
  22. border-radius: 15rpx;
  23. text-align: center;
  24. line-height: 120rpx;
  25. }
  26. .file{
  27. display: flex;
  28. justify-content: space-between;
  29. align-items: center;
  30. padding: 10rpx 0;
  31. }
  32. .value{
  33. padding: 15rpx;
  34. margin: 15rpx 0;
  35. border: 1px solid var(--themeColor);
  36. border-radius: 15rpx;
  37. min-height: 120rpx;
  38. }
  39. .foot{
  40. margin: 20rpx 0;
  41. display: flex;
  42. /* flex-direction: row-reverse; */
  43. justify-content: space-between;
  44. align-items: center;
  45. }
  46. .foot_label{
  47. color: #4095e5;
  48. }
  49. .foot_label2{
  50. color: red;
  51. font-size: 25rpx;
  52. }
  53. .foot_btn{
  54. width: 180rpx;
  55. padding: 15rpx 25rpx;
  56. background-color: var(--themeColor);
  57. color: #ffffff;
  58. text-align: center;
  59. border-radius: 15rpx;
  60. }