index.module.less 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119
  1. .reportDetail {
  2. width: 100%;
  3. min-height: 100vh;
  4. --header-height: 62px;
  5. }
  6. .reportHead {
  7. position: fixed;
  8. left: 0;
  9. top: 0;
  10. width: 100%;
  11. display: flex;
  12. align-items: center;
  13. background: #fff;
  14. padding: 0 22px;
  15. height: var(--header-height);
  16. .backIcon {
  17. width: 32px;
  18. height: 32px;
  19. }
  20. .content {
  21. flex: 1;
  22. margin: 0 12px;
  23. .title {
  24. display: flex;
  25. align-items: center;
  26. .titleName {
  27. font-size: 16px;
  28. color: #131415;
  29. font-weight: 600;
  30. margin-right: 6px;
  31. }
  32. .titleLevel {
  33. border: 1px solid #01C1B5;
  34. border-radius: 2px;
  35. padding: 0 3px;
  36. line-height: 16px;
  37. font-size: 12px;
  38. color: #01C1B5;
  39. font-weight: normal;
  40. transform: scale(0.9);
  41. }
  42. }
  43. .score {
  44. margin-top: 4px;
  45. display: flex;
  46. align-items: center;
  47. span {
  48. font-size: 12px;
  49. color: #777777;
  50. }
  51. .total {
  52. font-weight: 500;
  53. color: #FF2F0E;
  54. }
  55. }
  56. }
  57. .right {
  58. display: flex;
  59. align-items: center;
  60. .fItem {
  61. color: #1A1A1A;
  62. font-size: 13px;
  63. display: flex;
  64. align-items: center;
  65. i {
  66. width: 16px;
  67. height: 16px;
  68. border-radius: 4px;
  69. border: 1px solid #88974C;
  70. background: rgba(253, 255, 171, 0.41);
  71. margin-right: 6px;
  72. }
  73. }
  74. .sItem {
  75. display: flex;
  76. align-items: center;
  77. color: #1A1A1A;
  78. font-size: 13px;
  79. margin-left: 20px;
  80. i {
  81. width: 16px;
  82. height: 16px;
  83. border-radius: 4px;
  84. background: rgba(16, 216, 203, 0.6);
  85. margin-right: 6px;
  86. }
  87. }
  88. .videoIcon {
  89. width: 71px;
  90. height: 28px;
  91. margin-left: 20px;
  92. cursor: pointer;
  93. }
  94. :global{
  95. .van-switch{
  96. margin-left: 6px;
  97. width: 25px;
  98. height: 13px;
  99. background-color: transparent!important;
  100. background-image: url("./image/guan.png");
  101. background-repeat: no-repeat;
  102. background-size: 100% 100%;
  103. border-radius: 0;
  104. &.van-switch--on{
  105. background-image: url("./image/kai.png");
  106. }
  107. .van-switch__node{
  108. display: none;
  109. }
  110. }
  111. }
  112. }
  113. }
  114. .scoreTable {
  115. padding-top: calc(var(--header-height) + 54px);
  116. background: #ECFDFC;
  117. }