index.less 978 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. @import '../../app.less';
  2. .g-faq-item {
  3. padding-top: 10px;
  4. margin-bottom: 10px;
  5. .g-faq-item-title {
  6. color: #292929;
  7. font-size: 12px;
  8. }
  9. .g-faq-item-desc {
  10. color: #686872;
  11. font-size: 12px;
  12. }
  13. }
  14. .g-comment-item {
  15. position: relative;
  16. .g-comment-item-left {
  17. position: absolute;
  18. top: 5px;
  19. width: 32px;
  20. height: 32px;
  21. overflow: hidden;
  22. border-radius: 16px;
  23. }
  24. .g-comment-item-right {
  25. padding: 10px 0;
  26. margin-left: 40px;
  27. border-bottom: 1px solid #eee;
  28. .g-comment-item-right-info {
  29. margin-bottom: 5px;
  30. .g-comment-item-right-info-name {
  31. color: #686872;
  32. font-size: 12px;
  33. display: inline-block;
  34. line-height: 25px;
  35. }
  36. .g-comment-item-right-info-date {
  37. float: right;
  38. color: #A7A7B7;
  39. font-size: 12px;
  40. line-height: 25px;
  41. }
  42. }
  43. .g-comment-item-right-desc {
  44. color: #303036;
  45. font-size: 12px;
  46. }
  47. }
  48. }