scheme.wxss 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156
  1. /* miniprogram/scheme/scheme.wxss */
  2. .pricelayerbox{
  3. display: block;
  4. width: 100%;
  5. height: 100%;
  6. position: fixed;
  7. top: 0;
  8. left: 0;
  9. right: 0;
  10. bottom: 0;
  11. z-index: 999;
  12. background: rgba(0,0,0,0.3);
  13. }
  14. .calcpricebox{
  15. width: 624rpx;
  16. height: 788rpx;
  17. background: #FFFFFF;
  18. border-radius: 14rpx;
  19. position: absolute;
  20. top: 50%;
  21. left: 50%;
  22. transform: translateX(-50%) translateY(-50%);
  23. }
  24. .pricetbg{
  25. display: block;
  26. width: 624rpx;
  27. height: 276rpx;
  28. }
  29. .p_close{
  30. position: absolute;
  31. top: 10rpx;
  32. right: 10rpx;
  33. width: 30rpx;
  34. height: 30rpx;
  35. z-index: 9;
  36. }
  37. .pricetext{
  38. font-family: PingFangSC-Regular,Source Han Sans CN DemiLight;
  39. font-weight: bold;
  40. font-size: 42rpx;
  41. color:#fff;
  42. line-height:60rpx;
  43. position: absolute;
  44. top: 95rpx;
  45. left: 0;
  46. width: 100%;
  47. text-align: center;
  48. z-index: 8;
  49. padding-right: 24rpx;
  50. }
  51. .houseareabox{
  52. display: block;
  53. width: 490rpx;
  54. height: 72rpx;
  55. box-sizing: border-box;
  56. background: #FFFFFF;
  57. border-radius: 4rpx;
  58. opacity: 1;
  59. border: 2rpx solid #CCCCCC;
  60. margin: 40rpx auto 28rpx;
  61. padding: 0 60rpx;
  62. }
  63. .houseareabox image{
  64. display: block;
  65. width: 30rpx;
  66. height: 30rpx;
  67. position: absolute;
  68. left: 14rpx;
  69. top: 20rpx;
  70. }
  71. .houseareabox text{
  72. display: block;
  73. position: absolute;
  74. right: 20rpx;
  75. top: 0;
  76. line-height: 68rpx;
  77. }
  78. .houseareabox input{
  79. display: block;
  80. width: 100%;
  81. height: 100%;
  82. font-size: 28rpx;
  83. color: #333333;
  84. }
  85. .homebox{
  86. display: flex;
  87. align-items: center;
  88. width: 150rpx;
  89. height: 72rpx;
  90. background: #FFFFFF;
  91. border-radius: 4rpx;
  92. border: 1px solid #CCCCCC;
  93. position: relative;
  94. }
  95. .homebox image{
  96. position: absolute;
  97. top: 30rpx;
  98. right: 10rpx;
  99. width: 16rpx;
  100. height: 9rpx;
  101. display: block;
  102. }
  103. .housemsgbox{
  104. display: flex;
  105. width: 490rpx;
  106. margin: 40rpx auto 28rpx;
  107. justify-content: space-between;
  108. }
  109. .homebox view{
  110. display: block;
  111. padding-left: 20rpx;
  112. width: 140rpx;
  113. }
  114. .phonebox{
  115. margin-bottom: 40rpx;
  116. }
  117. .phonebox image{
  118. display: block;
  119. width: 40rpx;
  120. height: 40rpx;
  121. position: absolute;
  122. top: 16rpx;
  123. right: 9rpx;
  124. }
  125. .calcpricebtn{
  126. display: block;
  127. width: 490rpx;
  128. height: 80rpx;
  129. background: #D7BA86;
  130. border-radius: 4rpx;
  131. opacity: 1;
  132. margin: 40rpx auto 0rpx;
  133. line-height: 80rpx;
  134. font-size: 28rpx;
  135. font-weight: bold;
  136. color: #fff;
  137. }
  138. .relative{
  139. position: relative;
  140. }
  141. .pull-right {float: right;}
  142. .pull-left {float: left;}
  143. .clearfix:after {
  144. clear: both;
  145. content: ' ';
  146. display: table;
  147. }
  148. .clearfix:before {
  149. content: ' ';
  150. display: table;
  151. }
  152. .absolute{position: absolute;}
  153. .fontfpr{
  154. font-family: PingFangSC-Regular,Source Han Sans CN DemiLight;
  155. }