index.less 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. .score {
  2. margin: 0.4rem 0 0.52rem;
  3. // color: #fff;
  4. display: flex;
  5. align-items: center;
  6. padding-left: 0.6rem;
  7. }
  8. .scoreRight {
  9. margin-left: 0.56rem;
  10. h3 {
  11. font-size: 0.28rem;
  12. font-family: PingFangSC-Regular, PingFang SC;
  13. color: #4a4a4a;
  14. line-height: 0.4rem;
  15. margin-bottom: 0.09rem;
  16. }
  17. .time {
  18. margin-bottom: 0.16rem;
  19. font-size: 0.24rem;
  20. font-weight: 400;
  21. color: #6e6e6e;
  22. line-height: 0.32rem;
  23. }
  24. .btn {
  25. height: 0.66rem;
  26. font-size: 0.22rem;
  27. }
  28. }
  29. .circle {
  30. width: 1.94rem;
  31. height: 1.94rem;
  32. text-align: center;
  33. display: flex;
  34. flex-direction: column;
  35. justify-content: center;
  36. background: url('@/assets/home-circle.png') no-repeat center;
  37. background-size: 100% 100%;
  38. font-size: 0.34rem;
  39. font-weight: bold;
  40. }
  41. .card {
  42. border-radius: 0.08rem;
  43. box-shadow: 0rem 0rem 0.08rem 0.02rem rgba(191, 191, 191, 0.2);
  44. padding: 0.3rem;
  45. border: 0.01rem solid #eee;
  46. background: rgb(255, 255, 255);
  47. margin-bottom: 0.4rem;
  48. border-radius: 0.4rem 0 0.4rem 0;
  49. h3 {
  50. font-size: 0.3rem;
  51. color: #4a4a4a;
  52. line-height: 0.38rem;
  53. margin-bottom: 0.26rem;
  54. font-weight: bold;
  55. }
  56. ul {
  57. margin: 0;
  58. padding: 0;
  59. padding-bottom: 0.1rem;
  60. li {
  61. margin-bottom: 0.2rem;
  62. font-size: 0.26rem;
  63. font-weight: 400;
  64. color: #4a4a4a;
  65. line-height: 0.3rem;
  66. &:last-child {
  67. margin-bottom: 0;
  68. }
  69. }
  70. }
  71. i {
  72. display: inline-block;
  73. width: 0.14rem;
  74. height: 0.14rem;
  75. background-color: #4a90e2;
  76. border-radius: 50%;
  77. margin-right: 0.08rem;
  78. }
  79. }
  80. .card2 {
  81. .card;
  82. i {
  83. background-color: #ffc800;
  84. }
  85. }