online.wxss 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146
  1. /* pages/online/online.wxss */
  2. page{
  3. background: #F4F7F9;
  4. }
  5. .content{
  6. min-height: 90vh;
  7. background: #fff;
  8. }
  9. .tab{
  10. background: #fff;
  11. display: flex;
  12. margin-bottom: 12px;
  13. }
  14. .tab text{
  15. width: 50%;
  16. text-align: center;
  17. color: #333;
  18. line-height: 90rpx;
  19. position: relative;
  20. }
  21. .tab .act{
  22. color: #358BFF;
  23. transition: all .3s linear;
  24. }
  25. .act::after{
  26. content: '';
  27. width:24px;
  28. height:2px;
  29. background:rgba(53,139,255,1);
  30. border-radius:2px;
  31. position: absolute;
  32. left: 0;
  33. right: 0;
  34. bottom: 5px;
  35. margin: auto;
  36. }
  37. .list{
  38. background: #fff;
  39. display: flex;
  40. padding: 12px;
  41. }
  42. .img{
  43. width: 35%;
  44. border-radius: 4px;
  45. overflow: hidden;
  46. background: #f5f5f5;
  47. position: relative;
  48. }
  49. .img image{
  50. width: 100%;
  51. height: 60px;
  52. }
  53. .img .play{
  54. width: 48rpx;
  55. height: 48rpx;
  56. position: absolute;
  57. left: 0;
  58. top: 0;
  59. bottom: 0;
  60. right: 0;
  61. margin: auto;
  62. }
  63. .info{
  64. width: 65%;
  65. padding-left: 20rpx;
  66. position: relative;
  67. }
  68. .info view{
  69. font-size: 24rpx;
  70. color: #333;
  71. }
  72. .info .title{
  73. font-size: 28rpx;
  74. margin-bottom: 10px;
  75. }
  76. .info text{
  77. font-size: 24rpx;
  78. color: #999;
  79. }
  80. .info .check{
  81. position: absolute;
  82. right: 0;
  83. bottom: 0;
  84. color: #28C06B;
  85. font-size: 24rpx;
  86. }
  87. .check image{
  88. width: 32rpx;
  89. position: relative;
  90. top: 3px;
  91. left: -3px;
  92. }
  93. .info .not{
  94. color: #FF5E4E;
  95. }
  96. .test{
  97. padding: 12px;
  98. border-bottom: 1px solid #F9F9F9;
  99. }
  100. .test text{
  101. color: #999;
  102. font-size: 24rpx;
  103. }
  104. .test navigator{
  105. float: right;
  106. width:64px;
  107. height:21px;
  108. background:rgba(53,139,255,1);
  109. border-radius:16px;
  110. line-height: 21px;
  111. text-align: center;
  112. color: #fff;
  113. font-size: 24rpx;
  114. position: relative;
  115. top: -2px;
  116. }
  117. .score{
  118. float: right;
  119. color: #28C06B;
  120. font-size: 24rpx;
  121. }
  122. .score image{
  123. width: 32rpx;
  124. margin-left: 20rpx;
  125. position: relative;
  126. top: 2px;
  127. }
  128. .score text{
  129. color: #358BFF;
  130. font-size: 28rpx;
  131. margin-right: 10px;
  132. }
  133. .section{
  134. display: flex;
  135. justify-content: space-between;
  136. padding: 12px;
  137. background: #fff;
  138. }
  139. .section image{
  140. width: 32rpx;
  141. }