checkdesigner.wxss 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122
  1. /* miniprogram/checkdesigner/checkdesigner.wxss */
  2. .selectMask {
  3. width: 100%;
  4. height: 100vh;
  5. position: fixed;
  6. background-color: rgba(0,0,0,0.5);
  7. top: 0rpx;
  8. left: 0rpx;
  9. z-index: 999;
  10. }
  11. .selectBlock {
  12. width: 100%;
  13. height: 70%;
  14. background-color: #fff;
  15. position: absolute;
  16. bottom: 0rpx;
  17. left: 0rpx;
  18. box-sizing: border-box;
  19. padding: 88rpx 0rpx 88rpx;
  20. }
  21. .selectTitle {
  22. width: 100%;
  23. height: 88rpx;
  24. background-color: #d4e4ed;
  25. text-align: center;
  26. line-height: 88rpx;
  27. font-size: 28rpx;
  28. position: absolute;
  29. top: 0rpx;
  30. left: 0rpx;
  31. }
  32. .selectBtn {
  33. width: 100%;
  34. height: 88rpx;
  35. background-color: #249EFB;
  36. font-size: 28rpx;
  37. color: #fff;
  38. text-align: center;
  39. line-height: 88rpx;
  40. border-radius: 0rpx;
  41. position: absolute;
  42. bottom: 0rpx;
  43. left: 0rpx;
  44. }
  45. .selectContent {
  46. width: 100%;
  47. height: 100%;
  48. overflow: auto;
  49. position: relative;
  50. box-sizing: border-box;
  51. padding: 20rpx;
  52. }
  53. .departBox {
  54. width: 100%;
  55. height: 120rpx;
  56. display: flex;
  57. align-items: center;
  58. border-bottom: 2rpx solid #d8d8d8;
  59. }
  60. .departImage {
  61. width: 100rpx;
  62. height: 100rpx;
  63. background-color: #d4e4ed;
  64. display: flex;
  65. align-items: center;
  66. border-radius: 8rpx;
  67. justify-content: center;
  68. }
  69. .departImage > image {
  70. width: 50rpx;
  71. }
  72. .designerImage {
  73. width: 100rpx;
  74. height: 100rpx;
  75. background-color: #d4e4ed;
  76. border-radius: 8rpx;
  77. }
  78. .designerImage > image {
  79. width: 100%;
  80. height: 100%;
  81. }
  82. .departMsg {
  83. width: calc(100% - 130rpx);
  84. height: 100%;
  85. line-height: 120rpx;
  86. box-sizing: border-box;
  87. padding-left: 20rpx;
  88. font-size: 30rpx;
  89. }
  90. checkbox {
  91. width: 100%;
  92. height: 120rpx;
  93. border-bottom: 2rpx solid #d8d8d8;
  94. display: flex;
  95. align-items: center;
  96. }
  97. .van-checkbox {
  98. width: 100%;
  99. height: 120rpx;
  100. border-bottom: 2rpx solid #d8d8d8;
  101. }
  102. .designer {
  103. width: 100%;
  104. height: 100%;
  105. display: flex;
  106. align-items: center;
  107. }
  108. .designerName {
  109. margin-left: 20rpx;
  110. color: #333333;
  111. font-size: 28rpx;
  112. }
  113. .departNum {
  114. margin-left: 10rpx;
  115. }
  116. .lastStep {
  117. width: 35rpx;
  118. position: absolute;
  119. left: 30rpx;
  120. top: 50%;
  121. transform: translateY(-50%);
  122. }