index.less 1.5 KB

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