index.module.less 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181
  1. .siteManagement {
  2. // --van-dropdown-menu-title-font-size: 14px;
  3. // --van-button-normal-font-size: 16px;
  4. // --van-dropdown-menu-height: 44px;
  5. // :global {
  6. // .van-dropdown-menu__bar {
  7. // box-shadow: none;
  8. // }
  9. // }
  10. .iconSetting {
  11. font-size: 24px;
  12. :global {
  13. .van-badge--dot {
  14. top: 4px;
  15. right: 4px;
  16. border: 1px solid #fff;
  17. }
  18. }
  19. }
  20. }
  21. .siteItem {
  22. margin: 12px 13px 0;
  23. border-radius: 10px;
  24. overflow: hidden;
  25. }
  26. .overhide {
  27. max-width: 150px;
  28. white-space: nowrap;
  29. overflow: hidden;
  30. text-overflow: ellipsis;
  31. }
  32. .cellGroup {
  33. :global {
  34. .van-cell {
  35. padding: 12px;
  36. }
  37. }
  38. .orchestraName {
  39. display: flex;
  40. align-items: center;
  41. line-height: 20px;
  42. font-size: 14px;
  43. color: var(--k-gray-3);
  44. }
  45. .iconMusic {
  46. width: 18px;
  47. height: 18px;
  48. margin-right: 4px;
  49. }
  50. .address {
  51. color: var(--k-gray-1);
  52. }
  53. .iconTeacher {
  54. width: 48px;
  55. height: 48px;
  56. border-radius: 50%;
  57. margin-right: 8px;
  58. }
  59. .username {
  60. padding: 8px 12px 16px;
  61. color: var(--k-gray-3);
  62. font-size: 14px;
  63. line-height: 20px;
  64. .classname {
  65. font-size: 16px;
  66. font-weight: 600;
  67. color: var(--k-gray-1);
  68. line-height: 22px;
  69. }
  70. }
  71. }
  72. .photoGroup {
  73. padding: 12px 12px 20px;
  74. display: flex;
  75. align-items: center;
  76. justify-content: flex-start;
  77. .photoTitle {
  78. position: relative;
  79. z-index: 1;
  80. display: inline-block;
  81. font-size: 14px;
  82. color: var(--k-gray-1);
  83. font-weight: 400;
  84. margin-bottom: 12px;
  85. &::before {
  86. position: absolute;
  87. left: 0;
  88. bottom: 0;
  89. z-index: -1;
  90. display: inline-block;
  91. content: ' ';
  92. width: 100%;
  93. height: 8px;
  94. background: #FFD1D1;
  95. }
  96. }
  97. .photoList {
  98. display: flex;
  99. }
  100. .photoDown {
  101. margin-left: 24px;
  102. .photoTitle::before {
  103. background: #CBF2FF;
  104. }
  105. }
  106. .showPhoto {
  107. .photoTitle::before {
  108. background: transparent;
  109. }
  110. }
  111. .photo {
  112. position: relative;
  113. width: 46px;
  114. height: 46px;
  115. &+.photo {
  116. margin-left: 6px;
  117. }
  118. :global {
  119. .van-image {
  120. width: inherit;
  121. height: inherit;
  122. border-radius: 2px;
  123. overflow: hidden;
  124. }
  125. }
  126. .photoMore {
  127. position: absolute;
  128. top: 0;
  129. left: 0;
  130. bottom: 0;
  131. right: 0;
  132. background: rgba(0, 0, 0, 0.5);
  133. font-size: 14px;
  134. color: #fff;
  135. // font-weight: bold;
  136. display: flex;
  137. align-items: center;
  138. justify-content: center;
  139. border-radius: 2px;
  140. overflow: hidden;
  141. }
  142. }
  143. .photoEmpty {
  144. display: flex;
  145. align-items: center;
  146. font-size: 12px;
  147. color: var(--k-gray-4);
  148. .iconEmpty {
  149. margin-right: 6px;
  150. width: 48px;
  151. height: 57px;
  152. }
  153. }
  154. }