client-detail.wxss 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147
  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. }
  8. .subtxt{
  9. font-size: 22rpx;
  10. color: var(--subColor);
  11. }
  12. .detail-con{
  13. padding: 40rpx;
  14. }
  15. .d-item{
  16. min-height: 300rpx;
  17. /* box-shadow: 0 0 10rpx rgba(0, 0, 0, 0.2); */
  18. border: var(--border);
  19. border-radius: 8rpx;
  20. margin-top: 40rpx;
  21. padding: 0 20rpx;
  22. display: flex;
  23. flex-direction: column;
  24. color: var(--textColor);
  25. }
  26. .i-top{
  27. padding: 20rpx 0;
  28. border-bottom: var(--border);
  29. font-size: 30rpx;
  30. font-weight: bold;
  31. }
  32. .i-con{
  33. padding: 20rpx 0;
  34. }
  35. .i-con .ic-top{
  36. display: flex;
  37. justify-content: space-between;
  38. align-items: center;
  39. font-size: 22rpx;
  40. color: var(--subColor);
  41. }
  42. .i-con .ic-top text:not(.star){
  43. color: var(--textColor);
  44. font-size: 30rpx;
  45. margin-right: 20rpx;
  46. font-weight: bold;
  47. display: inline-block;
  48. /* width: 90rpx; */
  49. }
  50. .ic-middle{
  51. color: var(--textColor);
  52. border-bottom: var(--border);
  53. font-size: 22rpx;
  54. padding-bottom: 20rpx;
  55. position: relative;
  56. }
  57. .ic-middle >view{
  58. line-height: 40rpx;
  59. height: 40rpx;
  60. }
  61. .ic-middle >view:first-of-type{
  62. margin-top: 36rpx;
  63. }
  64. .ic-middle .icm-top{
  65. font-size: 30rpx;
  66. }
  67. .ic-middle > text{
  68. display: inline-block;
  69. padding-top: 20rpx;
  70. font-weight: bold;
  71. font-size: 30rpx;
  72. }
  73. .ic-middle .info-status{
  74. position: absolute;
  75. right: 0;
  76. bottom: 20rpx;
  77. color: var(--statusColor);
  78. }
  79. .demand >view{
  80. display: inline-block;
  81. }
  82. .i-bottom{
  83. padding-bottom: 20rpx;
  84. }
  85. .i-bottom .ib-item{
  86. width: 100%;
  87. display: flex;
  88. justify-content: space-between;
  89. align-items: center;
  90. }
  91. .i-bottom .ib-item >view{
  92. display: flex;
  93. align-items: center;
  94. }
  95. .i-bottom .ib-item >view:first-of-type{
  96. font-size: 30rpx;
  97. font-weight: bold;
  98. }
  99. .i-bottom .ib-item >view > text{
  100. font-size: 18rpx;
  101. margin-left: 10rpx;
  102. color:var(--subColor)
  103. }
  104. .i-bottom .rm_detail{
  105. margin-top: 20rpx;
  106. font-size: 22rpx;
  107. color: var(--textColor);
  108. }
  109. .hover-btn{
  110. width: 100%;
  111. padding: 20rpx 40rpx;
  112. display: flex;
  113. justify-content: space-between;
  114. position: fixed;
  115. bottom: 0;
  116. left: 0;
  117. box-shadow: 0 0 10rpx rgba(0, 0, 0, 0.2);
  118. }
  119. .edit-icon text {
  120. font-size: 40rpx;
  121. color: var(--subColor);
  122. font-weight: normal;
  123. line-height: 40rpx;
  124. }