index.less 615 B

12345678910111213141516171819202122232425262728293031323334353637
  1. @charset "utf-8";
  2. #course-answer {
  3. .top {
  4. height: 60px;
  5. line-height: 60px;
  6. }
  7. .center {
  8. background: #fff;
  9. border-radius: 14px;
  10. padding: 20px;
  11. .answer-item {
  12. border-bottom: 1px solid #eee;
  13. padding-top: 20px;
  14. padding-left: 15px;
  15. .small-tag {
  16. display: inline-block;
  17. height: 16px;
  18. background: rgba(163, 207, 255, 1);
  19. border-radius: 2px;
  20. color: #fff;
  21. line-height: 16px;
  22. font-size: 10px;
  23. padding: 0 9px;
  24. }
  25. .desc {
  26. color: #303139;
  27. margin-bottom: 20px;
  28. }
  29. }
  30. }
  31. }