index.less 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255
  1. .container {
  2. padding: 24rpx 0;
  3. color: #fff;
  4. .userinfo {
  5. margin: 0 auto;
  6. width: 714rpx;
  7. text-align: center;
  8. position: relative;
  9. height: 220rpx;
  10. >image {
  11. width: 100%;
  12. height: 100%;
  13. }
  14. .usercon {
  15. width: 100%;
  16. height: 100%;
  17. position: absolute;
  18. top: 0;
  19. font-size: 0;
  20. left: 0;
  21. .icon {
  22. width: 160rpx;
  23. height: 160rpx;
  24. position: absolute;
  25. top: 20rpx;
  26. left: 32rpx;
  27. display: flex;
  28. justify-content: center;
  29. align-items: center;
  30. flex-wrap: wrap;
  31. >image{
  32. width: 33.3%;
  33. height: 33.3%;
  34. }
  35. }
  36. .roominfo {
  37. position: absolute;
  38. top: 10rpx;
  39. left: 236rpx;
  40. width: 100%;
  41. >view {
  42. color: #fff;
  43. font-size: 28rpx;
  44. font-weight: bold;
  45. display: flex;
  46. justify-content: space-between;
  47. align-items: flex-end;
  48. width: calc(100% - 280rpx);
  49. margin-top: 6rpx;
  50. >text {
  51. &.date {
  52. font-weight: normal;
  53. }
  54. }
  55. }
  56. }
  57. .barcon {
  58. position: absolute;
  59. top: 110rpx;
  60. left: 232rpx;
  61. display: flex;
  62. align-items: center;
  63. .bar {
  64. width: 130rpx;
  65. height: 68rpx;
  66. background: #012b4f;
  67. clip-path: polygon(0 0%, 100% 0, 96% 96%, 0 100%);
  68. display: flex;
  69. align-items: center;
  70. padding: 0 20rpx;
  71. box-sizing: border-box;
  72. justify-content: space-between;
  73. >image {
  74. width: 36rpx;
  75. }
  76. >text {
  77. font-size: 34rpx;
  78. font-weight: bold;
  79. white-space: nowrap;
  80. display: inline-block;
  81. overflow: hidden;
  82. text-overflow: ellipsis;
  83. }
  84. }
  85. .rbar{
  86. width: 164rpx;
  87. clip-path: polygon(0% 4%, 100% 0, 94% 96%, 0 98%);
  88. margin-left: 20rpx;
  89. }
  90. .txt_img{
  91. width: 36rpx;
  92. margin-left: 16rpx;
  93. }
  94. .txt_img1{
  95. width: 60rpx;
  96. margin-left: 6rpx;
  97. }
  98. }
  99. }
  100. }
  101. .record {
  102. width: 686rpx;
  103. height: calc(100% - 490rpx);
  104. margin: 40rpx auto 0;
  105. position: relative;
  106. >view {
  107. padding: 30rpx 20rpx;
  108. background: linear-gradient(0deg, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0.9) 100%);
  109. box-shadow: 6rpx 10rpx 27rpx 0rpx rgba(75, 126, 160, 0.6);
  110. box-sizing: border-box;
  111. border: 5rpx solid #fff;
  112. border-radius: 10rpx;
  113. height: 100%;
  114. color: #765842;
  115. transition: all .3s ease;
  116. }
  117. .re_detail {
  118. width: 100%;
  119. }
  120. .re_header {
  121. font-size: 32rpx;
  122. width: 100%;
  123. border-bottom: 4rpx solid #fff;
  124. padding: 10rpx 30rpx 30rpx;
  125. color: #4C2508;
  126. box-sizing: border-box;
  127. text-align: center;
  128. >image {
  129. height: 58rpx;
  130. display: inline-block;
  131. vertical-align: middle;
  132. }
  133. .jiantou {
  134. height: 40rpx;
  135. margin-right: 20rpx;
  136. }
  137. }
  138. .re_list {
  139. padding: 36rpx 10rpx;
  140. color: #765842;
  141. height: calc(100% - 120rpx);
  142. .lst_header,
  143. .lst_item {
  144. display: flex;
  145. justify-content: space-between;
  146. width: 100%;
  147. >text {
  148. width: 20%;
  149. text-align: center;
  150. &:first-of-type {
  151. width: 14%;
  152. margin-left: 50rpx;
  153. }
  154. &:nth-of-type(2) {
  155. width: 30%;
  156. }
  157. }
  158. }
  159. .lst_con {
  160. height: calc(100% - 84rpx);
  161. overflow-y: auto;
  162. overflow-x: hidden;
  163. }
  164. .lst_header {
  165. font-weight: bold;
  166. font-size: 34rpx;
  167. margin-bottom: 30rpx;
  168. }
  169. .lst_item {
  170. margin-bottom: 40rpx;
  171. position: relative;
  172. >image{
  173. position: absolute;
  174. display: none;
  175. top: 50%;
  176. transform: translateY(-50%);
  177. left: 0;
  178. }
  179. }
  180. .itemactive{
  181. color: #FFB618;
  182. >image{
  183. display: inline-block;
  184. width: 50rpx;
  185. }
  186. }
  187. }
  188. }
  189. .btn_con{
  190. width: 686rpx;
  191. margin: 44rpx auto 0;
  192. display: flex;
  193. justify-content: space-between;
  194. align-items: center;
  195. >image{
  196. width: 50%;
  197. }
  198. >view{
  199. width: 50%;
  200. position: relative;
  201. >image{
  202. width: 100%;
  203. }
  204. >button{
  205. position: absolute;
  206. top: 0;
  207. left: 0;
  208. width: 100%;
  209. height: 100%;
  210. opacity: 0;
  211. background-color: 0;
  212. z-index: 999;
  213. }
  214. }
  215. }
  216. }