addCustom.acss 1.2 KB

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