index.less 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. @charset "utf-8";
  2. #my-answer {
  3. .user-action {
  4. .tip {
  5. font-size: 12px;
  6. color: #A7A7B7;
  7. span {
  8. color: #4299FF;
  9. cursor: pointer;
  10. margin: 0 5px;
  11. }
  12. i {
  13. font-size: 14px;
  14. cursor: pointer;
  15. }
  16. }
  17. }
  18. .table-layout {
  19. padding: 20px 30px;
  20. .user-table {
  21. table {
  22. margin: 0;
  23. font-size: 12px;
  24. th.select {
  25. padding-left: 45px;
  26. }
  27. th {
  28. color: #686872;
  29. font-weight: 500;
  30. background: #FBFBFB;
  31. padding: 20px 15px;
  32. white-space: nowrap;
  33. overflow: hidden;
  34. }
  35. td {
  36. padding: 20px 15px;
  37. background: #FBFBFB;
  38. border-bottom: 1px solid #eee;
  39. }
  40. .group {
  41. display: inline-block;
  42. }
  43. .sub {
  44. display: inline-block;
  45. }
  46. }
  47. }
  48. .answer-layout {
  49. border-bottom: 1px solid #eee;
  50. padding-top: 20px;
  51. padding-left: 15px;
  52. .title {
  53. font-size: 14px;
  54. line-height: 14px;
  55. margin-bottom: 20px;
  56. color: #303139;
  57. }
  58. .small-tag {
  59. display: inline-block;
  60. height: 16px;
  61. background: rgba(163, 207, 255, 1);
  62. border-radius: 2px;
  63. color: #fff;
  64. line-height: 16px;
  65. font-size: 10px;
  66. padding: 0 9px;
  67. }
  68. .desc {
  69. color: #303139;
  70. margin-bottom: 20px;
  71. }
  72. }
  73. }
  74. }