index.module.less 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153
  1. .courseList {
  2. min-height: 100vh;
  3. background-color: #fff;
  4. background-image: linear-gradient(180deg, #FFE8CE 0%, rgba(251, 233, 213, 0) 198px);
  5. padding: 20px 0;
  6. box-sizing: border-box;
  7. }
  8. .periodContent {
  9. display: flex;
  10. padding: 20px;
  11. .cover {
  12. width: 107px;
  13. margin-right: 30px;
  14. border-radius: 4px 8px 8px 4px;
  15. box-shadow: 0px 2px 6px 0px rgba(221, 168, 133, 0.67);
  16. overflow: hidden;
  17. :global{
  18. .van-image__loading{
  19. position: relative;
  20. min-height: 130px;
  21. animation: van-skeleton-blink var(--van-skeleton-duration) ease-in-out infinite;
  22. }
  23. }
  24. }
  25. .contentTitle {
  26. font-size: 16px;
  27. font-weight: 500;
  28. color: #333;
  29. line-height: 22px;
  30. padding-bottom: 8px;
  31. }
  32. .contentLabel {
  33. font-size: 12px;
  34. font-weight: 400;
  35. color: rgb(96, 96, 96);
  36. line-height: 20px;
  37. }
  38. }
  39. .periodTitle {
  40. display: flex;
  41. align-items: center;
  42. padding: 20px 20px 0;
  43. .pIcon {
  44. width: 20px;
  45. height: 20px;
  46. margin-right: 6px;
  47. }
  48. .pTitle {
  49. font-size: 16px;
  50. font-weight: 600;
  51. color: rgba(124, 61, 18, 1);
  52. margin-right: 8px;
  53. }
  54. .pNum {
  55. font-size: 12px;
  56. font-weight: 400;
  57. color: #000;
  58. }
  59. }
  60. .periodList {
  61. :global {
  62. .van-cell-group--inset {
  63. margin: 0;
  64. }
  65. .van-cell-group,
  66. .van-cell {
  67. background: transparent;
  68. }
  69. .van-cell {
  70. padding: 18px 20px;
  71. &::after{
  72. left: 20px;
  73. right: 20px;
  74. border-color: rgba(242, 242, 242, 1);
  75. transform: none;
  76. }
  77. .van-cell__title {
  78. padding-right: 8px;
  79. span {
  80. font-size: 15px;
  81. font-weight: 600;
  82. color: #333333;
  83. line-height: 21px;
  84. word-break: break-all;
  85. }
  86. .van-cell__label {
  87. font-size: 12px;
  88. font-weight: 400;
  89. color: #AAAAAA;
  90. line-height: 17px;
  91. margin: 0;
  92. }
  93. }
  94. .van-cell__value {
  95. flex: inherit;
  96. flex-shrink: 0;
  97. }
  98. }
  99. }
  100. .baseBtn {
  101. width: 73px;
  102. height: 26px;
  103. line-height: 26px;
  104. color: #fff;
  105. font-size: 13px;
  106. font-weight: 500;
  107. border: 0;
  108. border-radius: 13px;
  109. flex-shrink: 0;
  110. &.look {
  111. background: linear-gradient(180deg, #FFAB71 0%, #FF6E45 100%);
  112. }
  113. &.down {
  114. background: linear-gradient(180deg, #80C6FF 0%, #4296FF 100%);
  115. }
  116. &.disable {
  117. opacity: 1;
  118. background: linear-gradient(180deg, #D3D3D3 0%, #8F8F8F 100%);
  119. }
  120. }
  121. }
  122. .periodItem {
  123. width: 36px;
  124. height: 40px;
  125. margin-right: 8px;
  126. flex-shrink: 0;
  127. img {
  128. width: 100%;
  129. height: 100%;
  130. display: block;
  131. }
  132. }