evaluationDetail.wxss 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131
  1. .container{
  2. padding: 0;
  3. margin: 0;
  4. }
  5. .tip-view{
  6. height: 60rpx;
  7. line-height: 60rpx;
  8. width: 750rpx;
  9. color: #FFF;
  10. background: #cc6031;
  11. text-align: center;
  12. font-size: 36rpx;
  13. }
  14. .class-title{
  15. display: flex;
  16. border-bottom: 1px solid #CCC;
  17. height: 100rpx;
  18. line-height: 100rpx;
  19. padding: 0 25rpx;
  20. width: 700rpx;
  21. }
  22. .class-type{
  23. background: #cc6031;
  24. color: #FFF;
  25. height: 30rpx;
  26. line-height: 30rpx;
  27. padding: 5rpx 10rpx;
  28. border-radius: 10rpx;
  29. margin-top: 35rpx;
  30. font-size: 24rpx;
  31. margin-right: 10rpx;
  32. }
  33. .class-date{
  34. margin-left: auto;
  35. }
  36. .class-teacher{
  37. display: flex;
  38. line-height: 60rpx;
  39. margin-top: 20rpx;
  40. padding: 25rpx;
  41. }
  42. .teacher-img{
  43. height: 60rpx;
  44. width: 60rpx;
  45. margin-right: 10rpx;
  46. }
  47. .teacher-img image{
  48. width: 100%;
  49. height: 100%;
  50. }
  51. .contact-teacher{
  52. margin-left: auto;
  53. color: #cc6031;
  54. }
  55. .class-desc{
  56. padding: 5rpx 25rpx;
  57. line-height: 40rpx;
  58. color: #666;
  59. }
  60. .img-content,.video-content,.audio-content{
  61. margin-top: 40rpx;
  62. width: 700rpx;
  63. margin: 40rpx auto 20rpx;
  64. }
  65. .img-box,.video-list{
  66. display: grid;
  67. justify-content: space-between;
  68. grid-template-columns: repeat(auto-fill, 150rpx);
  69. grid-gap: auto;
  70. }
  71. .img-box image{
  72. width: 150rpx;
  73. height: 150rpx;
  74. border-radius: 10rpx;
  75. box-shadow: 0 10rpx 10rpx #ccc;
  76. margin-top: 20rpx;
  77. }
  78. .video-img-view {
  79. position: relative;
  80. }
  81. .videoImg {
  82. opacity: 0.9;
  83. }
  84. .playImg {
  85. width: 48rpx !important;
  86. height: 48rpx !important;
  87. position: absolute;
  88. z-index: 2;
  89. left: 50%;
  90. margin-left: -24rpx !important;
  91. top: 50%;
  92. margin-top: -24rpx !important;
  93. }
  94. .video-list image {
  95. width: 150rpx;
  96. height: 150rpx;
  97. border-radius: 20rpx;
  98. margin-bottom: 20rpx;
  99. margin: 10rpx auto;
  100. }
  101. .audio-list {
  102. display: grid;
  103. justify-content: space-between;
  104. grid-template-columns: repeat(auto-fill, 120rpx);
  105. grid-gap: auto;
  106. }
  107. .audio-list image {
  108. height: 30rpx;
  109. width: 50rpx;
  110. border: 1px solid #eee;
  111. box-shadow: 0 0 20rpx #ccc;
  112. padding: 10rpx;
  113. margin-top: 20rpx;
  114. padding: 0 25rpx;
  115. border-radius: 10rpx;
  116. }
  117. .curAudioStyle {
  118. box-shadow: 0 0 20rpx #cc6031 !important;
  119. border: none;
  120. }
  121. .title{
  122. color: #999;
  123. }
  124. #play-video{
  125. position: absolute;
  126. top: 40rpx;
  127. left: 100rpx;
  128. }