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.

106 lines
1.9 KiB

1 year ago
  1. /**index.wxss**/
  2. .qrcode {
  3. display: flex;
  4. align-items: center;
  5. flex-wrap: wrap;
  6. box-sizing: border-box;
  7. padding: 30rpx 0;
  8. margin: 30rpx;
  9. background: linear-gradient(to left, #72BEFC, #419AFE);
  10. border-radius: 30rpx;
  11. text-align: center;
  12. justify-content: center;
  13. }
  14. .qrimg {
  15. width: 80rpx;
  16. }
  17. .qrimg image {
  18. width: 100%;
  19. }
  20. .qrcode .text {
  21. text-align: left;
  22. margin-left: 20rpx;
  23. color: #fff;
  24. }
  25. .roomlist{
  26. padding: 30rpx;
  27. box-sizing: border-box;
  28. }
  29. .cu-item{
  30. padding: 10rpx 0;
  31. position: relative;
  32. /* display: flex; */
  33. /* padding-right: 10rpx; */
  34. /* height: 140rpx; */
  35. background-color: #ffffff;
  36. /* justify-content: flex-end; */
  37. align-items: center;
  38. transition: all .6s ease-in-out 0s;
  39. -webkit-transform: translateX(0rpx);
  40. transform: translateX(0rpx);
  41. /* border-bottom: 2rpx solid #eee; */
  42. box-shadow: 2px 2px 10px #d6d7d8;
  43. border-radius: 15px;
  44. box-sizing: border-box;
  45. }
  46. .cu-avatar{
  47. position: absolute;
  48. left: 30rpx;
  49. }
  50. .cu-item .content{
  51. /* position: absolute;
  52. left: 146rpx;
  53. width: calc(100% - 96rpx - 60rpx); */
  54. line-height: 1.5em;
  55. }
  56. .cu-item .content .text-gray{
  57. font-size: 30rpx;
  58. display: flex;
  59. align-items: center;
  60. }
  61. .cu-item .content .text-gray .margin-right-xs{
  62. font-size: 24rpx;
  63. color: #555;
  64. font-weight: bold;
  65. display: -webkit-box;
  66. -webkit-box-orient: vertical;
  67. -webkit-line-clamp: 2;
  68. white-space: wrap;
  69. overflow: hidden;
  70. }
  71. .cu-item .content .text-gray .text-cut .colorhui{
  72. color: #666;
  73. }
  74. .cu-item .text-green{
  75. color: #f37b1d;
  76. font-size: 54rpx;
  77. position: absolute;
  78. left: 30rpx;
  79. }
  80. .cu-item .text-orange{
  81. font-size: 54rpx;
  82. color: #39b54a;
  83. }
  84. .selectRoom{
  85. padding: 0 30rpx;
  86. }
  87. .selectRoom picker{
  88. font-size: 28rpx;
  89. display: inline-block;
  90. margin: 0 10rpx;
  91. }
  92. .picker{
  93. display: inline-block;
  94. box-shadow: 1px 1px 10px #eee;
  95. border-radius: 10px;
  96. padding: 4px 10px;
  97. }
  98. .colorRed{
  99. color: red !important;
  100. }
  101. .selectRoom .jt{display: inline-block;color: #333;}