apply.wxss 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. page {
  2. background-color: #f0f2f6;
  3. }
  4. .form {
  5. width: 702rpx;
  6. background: #FFFFFF;
  7. border-radius: 16rpx;
  8. margin: 24rpx;
  9. display: flex;
  10. flex-direction: column;
  11. }
  12. .form .title {
  13. margin-top: 32rpx;
  14. margin-left: 24rpx;
  15. margin-bottom: 24rpx;
  16. font-family: PingFangSC-Medium;
  17. font-size: 30rpx;
  18. color: #333333;
  19. }
  20. .form .input {
  21. width: 654rpx;
  22. height: 90rpx;
  23. position: relative;
  24. margin-left: 24rpx;
  25. }
  26. .form .input view {
  27. position: absolute;
  28. left: 0;
  29. top: 0;
  30. line-height: 90rpx;
  31. font-family: PingFangSC-Regular;
  32. font-size: 26rpx;
  33. color: #555555;
  34. }
  35. .form .input input {
  36. border-bottom: 1rpx solid #E6E6E6;
  37. padding-left: 200rpx;
  38. height: 90rpx;
  39. }
  40. .placeholder {
  41. font-family: PingFangSC-Regular;
  42. font-size: 26rpx;
  43. color: #999999;
  44. letter-spacing: -0.82rpx;
  45. line-height: 90rpx;
  46. }
  47. .save-btn {
  48. margin: 164rpx 32rpx;
  49. }
  50. .hasRight {
  51. display: flex;
  52. justify-content: space-between;
  53. }
  54. .hasRight .import {
  55. margin-right: 32rpx;
  56. font-size:26rpx;
  57. color: #e64340;
  58. }
  59. .go-list {
  60. margin-top: 24rpx;
  61. }