index.less 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  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. }
  46. .sub {
  47. display: inline-block;
  48. }
  49. }
  50. }
  51. .answer-layout {
  52. border-bottom: 1px solid #eee;
  53. padding-top: 20px;
  54. padding-left: 15px;
  55. .title {
  56. font-size: 14px;
  57. line-height: 14px;
  58. margin-bottom: 20px;
  59. color: #303139;
  60. }
  61. .small-tag {
  62. display: inline-block;
  63. height: 16px;
  64. background: rgba(163, 207, 255, 1);
  65. border-radius: 2px;
  66. color: #fff;
  67. line-height: 16px;
  68. font-size: 10px;
  69. padding: 0 9px;
  70. }
  71. .desc {
  72. color: #303139;
  73. margin-bottom: 20px;
  74. }
  75. }
  76. }
  77. }