addCustom.acss 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. .title {
  2. padding: 28rpx;
  3. padding-bottom: 0rpx;
  4. }
  5. .input {
  6. width: 100%;
  7. background: #fff;
  8. font-size: 28rpx;
  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. border-top: 1px solid #f1f1f1;
  44. }
  45. .footer .delete {
  46. background: #fff;
  47. border: 1px solid #f1f1f1;
  48. height: 88rpx;
  49. text-align: center;
  50. line-height: 88rpx;
  51. margin-right: 10rpx;
  52. border-radius: 6rpx;
  53. }
  54. .footer .save {
  55. border-radius: 6rpx;
  56. background: #26A2FF;
  57. color: #fff;
  58. height: 88rpx;
  59. text-align: center;
  60. line-height: 88rpx;
  61. }
  62. .scroll {
  63. height: calc(100vh - 440rpx);
  64. }
  65. .box {
  66. position: fixed;
  67. top: 0;
  68. left: 0;
  69. right: 0;
  70. bottom: 0;
  71. background: rgba(0, 0, 0, 0.2);
  72. z-index: 999;
  73. transform: translate(0, 100%);
  74. }
  75. .add-right {
  76. text-align: right;
  77. overflow: hidden;
  78. text-overflow: ellipsis;
  79. white-space: nowrap;
  80. height: 84rpx;
  81. line-height: 84rpx;
  82. max-width: 300rpx;
  83. }