微信小程序
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

add.wxss 1.7 KiB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  1. /* pages/payee/add/add.wxss */
  2. .main-box{
  3. background: #ffffff;
  4. padding: 20px;
  5. width: 94%;
  6. margin: 0 auto;
  7. border-radius: 10px;
  8. box-shadow: 0px 5px 5px rgba(0, 0, 0, 0.16);
  9. }
  10. .table-box van-field van-cell .van-cell{
  11. margin-bottom: 15px;
  12. }
  13. .table-box van-field:last-child van-cell .van-cell{
  14. margin-bottom: 0px;
  15. }
  16. .van-cell{
  17. padding: 0!important;
  18. margin-bottom: 15px;
  19. }
  20. .van-cell__value {
  21. display: flex;
  22. justify-content: flex-end;
  23. }
  24. .van-radio--horizontal {
  25. margin-right: 0!important;
  26. margin-left: var(--padding-sm,12px)
  27. }
  28. .van-cell--required:before {
  29. left: 0!important;
  30. }
  31. .van-field__label {
  32. padding-left: 10px;
  33. }
  34. .bottom{
  35. width: 100%;
  36. margin: 0 auto;
  37. text-align: center;
  38. margin-top: 30px;
  39. margin-bottom: 30px;
  40. display: flex;
  41. position: absolute;
  42. bottom: 10%;
  43. }
  44. .bottom view {
  45. width: 47%;
  46. margin: 0 auto;
  47. border-radius: 30px;
  48. display: inline-block;
  49. }
  50. .bottom .btn2{
  51. border: 1px solid transparent;
  52. padding: 8px 0px;
  53. background-image: linear-gradient(to right, #2C8E68, #5CAE77);
  54. color: #fff;
  55. }
  56. .table-boxs>view{
  57. display: flex;
  58. justify-content: space-between;
  59. line-height: 100rpx;
  60. }
  61. .ql-container {
  62. box-sizing: border-box;
  63. width: 100%;
  64. height: 400px;
  65. font-size: 16px;
  66. line-height: 1.5;
  67. overflow: auto;
  68. padding: 10px 10px 20px 10px;
  69. border: 1px solid #ECECEC;
  70. }
  71. .ql-active {
  72. color: #22C704;
  73. }
  74. .iconfont {
  75. display: inline-block;
  76. width: 30px;
  77. height: 30px;
  78. cursor: pointer;
  79. font-size: 20px;
  80. }
  81. .toolbar {
  82. box-sizing: border-box;
  83. padding: 0 10px;
  84. height: 50px;
  85. width: 100%;
  86. position: absolute;
  87. left: 0;
  88. right: 100%;
  89. top: 0;
  90. display: flex;
  91. align-items: center;
  92. justify-content: space-between;
  93. border: 1px solid #ECECEC;
  94. border-left: none;
  95. border-right: none;
  96. }