add-client.wxss 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150
  1. page{
  2. --border: 1px solid rgba(0, 0, 0, 0.1);
  3. --textColor: #111;
  4. --subColor: #A3A4A5;
  5. --statusColor: #F9A718;
  6. --tbH:22%;
  7. --fixedH:120rpx;
  8. }
  9. .add-con{
  10. background-color: #F2F2F2;
  11. padding-bottom: calc(40rpx + var(--fixedH));
  12. }
  13. .c-info,.c-more,.c-beizhu{
  14. background-color: #fff;
  15. padding: 0 40rpx;
  16. }
  17. .add-item{
  18. border-bottom: var(--border);
  19. line-height: 100rpx;
  20. height: 100rpx;
  21. display: flex;
  22. justify-content: space-between;
  23. align-items: center;
  24. text-align: right;
  25. }
  26. .c-info .add-item:last-of-type{
  27. border-bottom: none;
  28. }
  29. .gsd{
  30. display: flex;
  31. align-items: center;
  32. }
  33. .gsd > text{
  34. color: var(--subColor);
  35. font-size: 18rpx;
  36. padding-left: 10rpx;
  37. }
  38. .rg-con radio{
  39. margin-left: 40rpx;
  40. }
  41. .star-con{
  42. width: 50%;
  43. }
  44. .star-con .vi-star{
  45. margin-left: 50rpx;
  46. vertical-align: middle;
  47. font-size: 40rpx;
  48. }
  49. .c-more,.c-beizhu{
  50. margin-top: 40rpx;
  51. }
  52. .range{
  53. width: 50%;
  54. display: flex;
  55. align-items: center;
  56. justify-content: space-between;
  57. }
  58. .range input{
  59. text-align: center;
  60. }
  61. .range > text{
  62. color: var(--subColor);
  63. display: inline-block;
  64. margin: 0 10rpx 0 20rpx;
  65. }
  66. .subtxt{
  67. color: var(--subColor);
  68. }
  69. .ta-con{
  70. padding-top: 20rpx;
  71. position: relative;
  72. }
  73. .ta-con .tip{
  74. position: absolute;
  75. bottom: 20rpx;
  76. right: 0;
  77. color: var(--subColor);
  78. }
  79. textarea{
  80. width: 100%;
  81. }
  82. .textarea {
  83. width: 100%;
  84. height: 300rpx;
  85. }
  86. .submit-con{
  87. padding: 20rpx 40rpx;
  88. position: fixed;
  89. bottom: 0;
  90. left: 0;
  91. box-shadow: 0 0 10rpx rgba(0, 0, 0, 0.2);
  92. width: 100%;
  93. background: #fff;
  94. z-index: 99;
  95. box-sizing: border-box;
  96. transition: ease .3s all;
  97. }
  98. .submit-active{
  99. transform:translateY(200rpx);
  100. }
  101. .submit-con .btn{
  102. width: 100%;
  103. background: #1FE4DC;
  104. }
  105. .pick-view{
  106. width: 100%;
  107. background: #F2F2F2;
  108. }
  109. .pick-view view{
  110. width: 100%;
  111. text-align: center;
  112. line-height: 100rpx;
  113. height: 100rpx;
  114. background: #fff;
  115. }
  116. .pick-view view:not(.p-cancel):not(:first-of-type){
  117. border-top: var(--border);
  118. }
  119. .pick-view .p-cancel{
  120. margin-top: 10rpx;
  121. }