You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

179 lines
2.6 KiB

1 year ago
  1. /* pages/roomDetail/roomDetail.wxss */
  2. .content{
  3. position: relative;
  4. }
  5. .contentview {
  6. margin: 0 10px;
  7. }
  8. .button {
  9. margin: 5px;
  10. }
  11. .myview {
  12. height: 200px;
  13. word-break: break-all;
  14. /* 自动换行 */
  15. }
  16. .bgcolor {
  17. background: #02BFFF;
  18. width: 100%;
  19. position: fixed;
  20. height: 300rpx;
  21. top: 0;
  22. left: 0;
  23. z-index: 1;
  24. }
  25. .allcontent {
  26. position: fixed;
  27. z-index: 99;
  28. top: 30rpx;
  29. left: 50%;
  30. transform: translateX(-50%);
  31. width: calc(100% - 60rpx);
  32. background: #fff;
  33. border-radius: 30rpx;
  34. padding: 30rpx;
  35. box-shadow: 2rpx 2rpx 10rpx #eeee;
  36. }
  37. .allcontent .title {
  38. display: flex;
  39. flex-wrap: wrap;
  40. justify-content: space-between;
  41. padding-bottom: 40rpx;
  42. }
  43. .allcontent .title text:first-child {
  44. color: #333;
  45. }
  46. .allcontent .name {
  47. color: #333;
  48. line-height: 50rpx;
  49. }
  50. .allcontent .bottompad {
  51. padding-bottom: 50rpx;
  52. }
  53. .allcontent .operation .operationli {
  54. border-top: 1rpx solid #f2f3f5;
  55. padding: 20rpx 0;
  56. display: flex;
  57. flex-wrap: wrap;
  58. justify-content: space-around;
  59. }
  60. .allcontent .operation .operationli:last-child {
  61. padding-bottom: 0;
  62. }
  63. .bgimg {
  64. height: 100%;
  65. width: 100%;
  66. overflow: hidden;
  67. position: absolute;
  68. top: 0;
  69. left: 0;
  70. z-index: -1;
  71. }
  72. .bgimg image {
  73. width: 100%;
  74. height: 100%;
  75. opacity: .5;
  76. }
  77. .roominfo {
  78. display: inline-block;
  79. width: 50%;
  80. height: 100%;
  81. margin-left: 50%;
  82. border-left: 1rpx solid #f2f3f5;
  83. background: rgba(255, 255, 255, .9);
  84. }
  85. .roominfo .roominfoli {
  86. height: 20%;
  87. padding: 15rpx 15rpx 15rpx 30rpx;
  88. box-sizing: border-box;
  89. border-bottom: 1rpx solid #f2f3f5;
  90. }
  91. .roominfo .roominfoli .text-sm {
  92. line-height: 40rpx;
  93. }
  94. .roominfo .roominfoli .icon text {
  95. vertical-align: middle;
  96. font-size: 40rpx;
  97. }
  98. .roominfo .roominfoli .icon text:nth-child(2) {
  99. font-size: 28rpx;
  100. margin-left: 20rpx;
  101. }
  102. .actionList .actionli {
  103. text-align: center;
  104. display: inline-block;
  105. width: 25%;
  106. padding: 30rpx 0;
  107. box-sizing: border-box;
  108. border-right: 1rpx solid #f2f3f5;
  109. border-bottom: 1rpx solid #f2f3f5;
  110. }
  111. .actionList .actionli .iconfont {
  112. font-size: 60rpx;
  113. margin-bottom: 20rpx;
  114. }
  115. .text-green{
  116. color: #39b54a;
  117. }
  118. .text-orange {
  119. color: #f37b1d;
  120. }
  121. .text-red{
  122. color: #e54d42;
  123. }
  124. .text-grey{
  125. color: #8799a3;
  126. }
  127. .text-blue{
  128. color: #0081ff;
  129. }
  130. .text-sm {
  131. font-size: 24rpx;
  132. }
  133. .roominfo .roominfoli .icon .fontsize{
  134. font-size: 28rpx;
  135. }
  136. .devicelist{
  137. width: 600rpx;
  138. padding: 30rpx;
  139. box-sizing: border-box;
  140. height: 800rpx;
  141. overflow-y: auto;
  142. }
  143. .actionList{
  144. background: #fff;
  145. }
  146. .flexBox{
  147. position: relative;
  148. }
  149. .d-flex{
  150. display: flex;
  151. flex-wrap: nowrap;
  152. }
  153. .d-flex van-button{
  154. width: 50%;
  155. }