index.less 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  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. .switch {
  18. height: 100%;
  19. }
  20. }
  21. .table-layout {
  22. padding: 20px 30px;
  23. .user-table {
  24. table {
  25. margin: 0;
  26. font-size: 12px;
  27. th.select {
  28. padding-left: 45px;
  29. }
  30. th {
  31. color: #686872;
  32. font-weight: 500;
  33. background: #FBFBFB;
  34. padding: 20px 15px;
  35. white-space: nowrap;
  36. overflow: hidden;
  37. }
  38. td {
  39. padding: 20px 15px;
  40. background: #FBFBFB;
  41. border-bottom: 1px solid #eee;
  42. }
  43. .group {
  44. display: inline-block;
  45. &.text-hidden {
  46. white-space: nowrap;
  47. text-overflow: ellipsis;
  48. overflow: hidden;
  49. }
  50. }
  51. .sub {
  52. display: inline-block;
  53. }
  54. }
  55. }
  56. .answer-layout {
  57. border-bottom: 1px solid #eee;
  58. padding-top: 20px;
  59. padding-left: 15px;
  60. .title {
  61. font-size: 14px;
  62. line-height: 14px;
  63. margin-bottom: 20px;
  64. color: #303139;
  65. }
  66. .small-tag {
  67. display: inline-block;
  68. height: 16px;
  69. background: rgba(163, 207, 255, 1);
  70. border-radius: 2px;
  71. color: #fff;
  72. line-height: 16px;
  73. font-size: 10px;
  74. padding: 0 9px;
  75. }
  76. .desc {
  77. color: #303139;
  78. margin-bottom: 20px;
  79. }
  80. }
  81. }
  82. }