exercis-detail.module.less 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176
  1. .exercisContainer {
  2. background: url('./images/detail-bg.png') top center/ cover no-repeat;
  3. background-size: contain;
  4. }
  5. .topWrap {
  6. padding-bottom: 12px;
  7. .topInfo {
  8. padding: 34px 15px 18px;
  9. display: flex;
  10. flex-direction: row;
  11. align-items: center;
  12. justify-content: space-between;
  13. flex-wrap: nowrap;
  14. .topInfoLeft {
  15. width: 100%;
  16. display: flex;
  17. flex-direction: row;
  18. align-items: center;
  19. .headWrap {
  20. flex-shrink: 0;
  21. border-radius: 50%;
  22. overflow: hidden;
  23. border: 2px solid #fff;
  24. display: flex;
  25. margin-right: 15px;
  26. }
  27. .headerImg {
  28. width: 60px;
  29. height: 60px;
  30. }
  31. .infoMsg {
  32. display: flex;
  33. align-items: flex-start;
  34. flex-direction: column;
  35. p {
  36. display: inline-block;
  37. width: 90px;
  38. text-overflow: ellipsis;
  39. white-space: nowrap;
  40. overflow: hidden;
  41. font-size: 20px;
  42. font-weight: 600;
  43. color: #000000;
  44. line-height: 28px;
  45. margin-bottom: 6px;
  46. }
  47. .tag {
  48. display: inline-block;
  49. padding: 0px 11px;
  50. border: 1px solid #B7E0FE;
  51. background: #F5F5F5;
  52. border-radius: 12px;
  53. font-size: 12px;
  54. font-weight: 500;
  55. color: #1CACF1;
  56. line-height: 22px;
  57. text-align: center;
  58. }
  59. }
  60. }
  61. }
  62. .topInfoRight {
  63. // width: 50%;
  64. margin-bottom: 18px;
  65. padding: 0 10%;
  66. display: flex;
  67. flex-direction: row;
  68. align-items: center;
  69. justify-content: center;
  70. .infoDay,
  71. .infoTime {
  72. width: 50%;
  73. }
  74. .infoDay {
  75. position: relative;
  76. margin-right: 20px;
  77. &::after {
  78. position: absolute;
  79. content: ' ';
  80. right: -12px;
  81. top: 12px;
  82. width: 1px;
  83. height: 35px;
  84. background-color: #E0E5E8;
  85. }
  86. }
  87. .infoDayMain {
  88. font-size: 24px;
  89. color: #333333;
  90. line-height: 28px;
  91. margin-bottom: 7px;
  92. font-family: DINAlternate-Bold, DINAlternate;
  93. font-weight: 600;
  94. text-align: center;
  95. span {
  96. margin-left: 2px;
  97. font-size: 12px;
  98. font-weight: 400;
  99. color: #333333;
  100. line-height: 17px;
  101. }
  102. }
  103. .infoDaysub {
  104. display: flex;
  105. align-items: center;
  106. justify-content: center;
  107. font-size: 12px;
  108. font-weight: 400;
  109. color: #333333;
  110. line-height: 17px;
  111. text-align: center;
  112. img {
  113. width: 14px;
  114. height: 14px;
  115. margin-right: 3px;
  116. }
  117. }
  118. }
  119. .chioseWrap {
  120. display: flex;
  121. flex-direction: row;
  122. align-items: center;
  123. // justify-content: space-around;
  124. background-color: transparent;
  125. font-size: 14px;
  126. font-weight: 500;
  127. color: #333333;
  128. line-height: 20px;
  129. font-size: 14px;
  130. }
  131. }
  132. .select {
  133. height: 45px;
  134. .icon {
  135. width: 18px;
  136. height: 17px;
  137. margin-right: 4px;
  138. flex-shrink: 0;
  139. }
  140. :global {
  141. .van-cell__title {
  142. overflow: hidden;
  143. white-space: nowrap;
  144. text-overflow: ellipsis;
  145. }
  146. .van-cell__right-icon {
  147. color: #333;
  148. transform: rotate(90deg);
  149. margin: 0 0 0 4px;
  150. }
  151. }
  152. }