unbind.module.less 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140
  1. .unbindTips {
  2. font-size: 13px;
  3. padding: 10px 12px;
  4. font-weight: 500;
  5. color: #f67146;
  6. line-height: 18px;
  7. background: #ffebdd;
  8. border-radius: 10px;
  9. margin: 12px 13px;
  10. }
  11. .detailCellGroup {
  12. margin: 12px 13px;
  13. overflow: hidden;
  14. border-radius: 10px;
  15. }
  16. .detailCell {
  17. padding: 15px 13px;
  18. :global {
  19. .van-cell__title {
  20. flex: 1 auto;
  21. flex-basis: 48%;
  22. }
  23. }
  24. .valueClass {
  25. display: flex;
  26. align-items: center;
  27. justify-content: flex-end;
  28. }
  29. .teacherName {
  30. font-size: 16px;
  31. font-weight: 500;
  32. color: #333333;
  33. line-height: 22px;
  34. max-width: 60px;
  35. }
  36. .teacherContent {
  37. display: flex;
  38. align-items: center;
  39. justify-content: space-between;
  40. .content {
  41. width: 70px;
  42. }
  43. .classNum {
  44. text-align: center;
  45. width: 60px;
  46. }
  47. }
  48. .className {
  49. font-size: 16px;
  50. font-weight: 600;
  51. color: #333333;
  52. line-height: 22px;
  53. }
  54. .musicName {
  55. font-size: 14px;
  56. color: #777777;
  57. line-height: 20px;
  58. max-width: 120px;
  59. }
  60. .nums {
  61. font-size: 20px;
  62. font-weight: bold;
  63. color: #f67146;
  64. line-height: 24px;
  65. }
  66. .numTip {
  67. font-size: 14px;
  68. color: #777777;
  69. line-height: 20px;
  70. }
  71. }
  72. .classCellGroup {
  73. margin: 12px 13px;
  74. overflow: hidden;
  75. border-radius: 10px;
  76. .classTitle {
  77. display: flex;
  78. align-items: center;
  79. font-size: 16px;
  80. font-weight: 500;
  81. color: #333333;
  82. &::before {
  83. content: ' ';
  84. display: inline-block;
  85. width: 4px;
  86. height: 14px;
  87. background: #ff8057;
  88. border-radius: 2px;
  89. margin-right: 6px;
  90. }
  91. }
  92. .title {
  93. font-size: 24px;
  94. }
  95. .name {
  96. padding-top: 8px;
  97. font-size: 12px;
  98. color: #777777;
  99. }
  100. :global {
  101. .van-cell {
  102. padding: 15px 20px;
  103. }
  104. .van-grid-item {
  105. &:after {
  106. content: ' ';
  107. position: absolute;
  108. top: 50%;
  109. right: 0;
  110. margin-top: -10px;
  111. width: 1px;
  112. height: 20px;
  113. background: #eaeaea;
  114. border-radius: 1px;
  115. }
  116. &:last-child {
  117. &::after {
  118. display: none;
  119. }
  120. }
  121. }
  122. }
  123. }