addCustom.acss 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  1. .title {
  2. padding: 28rpx;
  3. padding-bottom: 0rpx;
  4. }
  5. .input {
  6. width: 100%;
  7. background: #fff;
  8. font-size: 32rpx;
  9. padding: 0rpx 28rpx;
  10. height: 84rpx;
  11. line-height: 84rpx;
  12. box-sizing: border-box;
  13. }
  14. .add {
  15. background: #fff;
  16. padding: 0rpx 28rpx;
  17. height: 84rpx;
  18. line-height: 84rpx;
  19. width: 100%;
  20. box-sizing: border-box;
  21. }
  22. .add image {
  23. width: 30rpx;
  24. height: 30rpx;
  25. position: relative;
  26. top: 6rpx;
  27. margin-left: 10rpx;
  28. }
  29. .dataList {
  30. padding: 20rpx 28rpx;
  31. background-color: #fff;
  32. }
  33. .dataList text {
  34. margin-left: 16rpx;
  35. }
  36. .footer {
  37. position: fixed;
  38. left: 0;
  39. right: 0;
  40. bottom: 0;
  41. background: #fff;
  42. padding: 10rpx;
  43. padding-bottom: 30rpx;
  44. border-top: 1px solid #f1f1f1;
  45. }
  46. .footer .delete {
  47. background: #fff;
  48. border: 1px solid #f1f1f1;
  49. height: 90rpx;
  50. text-align: center;
  51. line-height: 90rpx;
  52. margin-right: 10rpx;
  53. border-radius: 6rpx;
  54. }
  55. .footer .save {
  56. border-radius: 10rpx;
  57. height: 90rpx;
  58. text-align: center;
  59. line-height: 90rpx;
  60. }
  61. .scroll {
  62. height: calc(100vh - 470rpx);
  63. }
  64. .box {
  65. position: fixed;
  66. top: 0;
  67. left: 0;
  68. right: 0;
  69. bottom: 0;
  70. background: rgba(0, 0, 0, 0.2);
  71. z-index: 999;
  72. transform: translate(0, 100%);
  73. }
  74. .add-right {
  75. text-align: right;
  76. overflow: hidden;
  77. text-overflow: ellipsis;
  78. white-space: nowrap;
  79. height: 84rpx;
  80. line-height: 84rpx;
  81. max-width: 300rpx;
  82. }