index.less 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. .score {
  2. margin: 40px 0 52px;
  3. // color: #fff;
  4. display: flex;
  5. align-items: center;
  6. padding-left: 60px;
  7. }
  8. .scoreRight {
  9. margin-left: 56px;
  10. h3 {
  11. font-size: 28px;
  12. font-family: PingFangSC-Regular, PingFang SC;
  13. color: #4a4a4a;
  14. line-height: 40px;
  15. margin-bottom: 9px;
  16. }
  17. .time {
  18. margin-bottom: 16px;
  19. font-size: 24px;
  20. font-weight: 400;
  21. color: #6e6e6e;
  22. line-height: 32px;
  23. }
  24. .btn {
  25. height: 66px;
  26. width: 134px;
  27. font-size: 22px;
  28. }
  29. }
  30. .card {
  31. border-radius: 8px;
  32. box-shadow: 0px 0px 8px 2px rgba(191, 191, 191, 0.2);
  33. padding: 24px 20px;
  34. border: 1px solid #eee;
  35. background: rgb(255, 255, 255);
  36. margin-bottom: 40px;
  37. h3 {
  38. font-size: 30px;
  39. color: #4a4a4a;
  40. line-height: 38px;
  41. margin-bottom: 26px;
  42. font-weight: bold;
  43. }
  44. ul {
  45. margin: 0;
  46. padding: 0;
  47. padding-bottom: 10px;
  48. li {
  49. margin-bottom: 20px;
  50. font-size: 26px;
  51. font-weight: 400;
  52. color: #4a4a4a;
  53. line-height: 30px;
  54. &:last-child {
  55. margin-bottom: 0;
  56. }
  57. }
  58. }
  59. i {
  60. display: inline-block;
  61. width: 14px;
  62. height: 14px;
  63. background-color: #4a90e2;
  64. border-radius: 50%;
  65. margin-right: 8px;
  66. }
  67. }
  68. .card2 {
  69. .card;
  70. i {
  71. background-color: #ffc800;
  72. }
  73. }