score.wxss 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. .card {
  2. background: #FFFFFF;
  3. border-radius: 20rpx;
  4. margin: 25rpx;
  5. padding-bottom: 10rpx;
  6. }
  7. .top-img {
  8. position: relative;
  9. }
  10. .score-bg-img {
  11. width: 700rpx;
  12. height: 143rpx;
  13. position: relative;
  14. }
  15. .score-tip {
  16. position: absolute;
  17. left: 40rpx;
  18. top: 50%;
  19. transform: translateY(-50%);
  20. font-size: 30rpx;
  21. font-weight: bold;
  22. color: #FFFFFF;
  23. }
  24. .score-btn-bg {
  25. width: 180rpx;
  26. height: 48rpx;
  27. line-height: 52rpx;
  28. position: absolute;
  29. right: 0;
  30. top: 50%;
  31. transform: translateY(-50%);
  32. background: rgba(255, 255, 255, 0.32);
  33. font-size: 30rpx;
  34. font-weight: 400;
  35. color: #FFFFFF;
  36. text-align: center;
  37. }
  38. .score-bg-tag {
  39. width: 48rpx;
  40. height: 48rpx;
  41. position: absolute;
  42. right: 160rpx;
  43. top: 50%;
  44. transform: translateY(-50%);
  45. }
  46. .score-item {
  47. margin: 15rpx 25rpx;
  48. display: flex;
  49. flex-direction: row;
  50. align-items: center;
  51. justify-content: space-between;
  52. }
  53. .score-left {
  54. flex: 1;
  55. font-size: 24rpx;
  56. font-weight: 400;
  57. color: #666666;
  58. }
  59. .score-right {
  60. margin-left: 5rpx;
  61. font-size: 26rpx;
  62. font-weight: 400;
  63. color: #FF4330;
  64. }
  65. .score-course-img {
  66. padding: 30rpx 0 40rpx;
  67. display: flex;
  68. justify-content: center;
  69. align-items: center;
  70. }