achievementCertificate.scss 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. /* 成绩和证书 */
  2. .navbar-right {
  3. font-size: 26rpx;
  4. color: #fff;
  5. padding-right: 30rpx;
  6. }
  7. .achievement {
  8. padding: 32rpx 30rpx;
  9. font-family: 'PingFangSC-Medium, PingFang SC';
  10. &-content {
  11. &-list {
  12. &-item {
  13. padding: 30rpx 32rpx;
  14. border-radius: 16rpx;
  15. margin-bottom: 20rpx;
  16. color: rgba($color: #fff, $alpha: 0.8);
  17. font-size: 24rpx;
  18. line-height: 40rpx;
  19. .title {
  20. display: flex;
  21. justify-content: space-between;
  22. align-items: center;
  23. font-size: 40rpx;
  24. font-weight: bold;
  25. color: #fff;
  26. .delete-btn {
  27. background: rgba(255, 255, 255, 0.7);
  28. color: #FE5862;
  29. font-weight: 400;
  30. padding: 4rpx 22rpx;
  31. font-size: 22rpx;
  32. border-radius: 20rpx;
  33. }
  34. }
  35. .result {
  36. font-size: 26rpx;
  37. font-weight: 500;
  38. margin: 10rpx 0 6rpx;
  39. text {
  40. font-size: 30rpx;
  41. margin-left: 10rpx;
  42. }
  43. }
  44. }
  45. .bg1 {
  46. background-image: url(../../../static/img/certificate-bg-1.png);
  47. background-size: contain;
  48. background-position: center center;
  49. background-repeat: no-repeat;
  50. background-color: #FE5862;
  51. }
  52. .bg2 {
  53. background-image: url(../../../static/img/certificate-bg-2.png);
  54. background-size: contain;
  55. background-position: center center;
  56. background-repeat: no-repeat;
  57. background-color: #FE9C37;
  58. }
  59. }
  60. }
  61. }
  62. .view {
  63. width: 600rpx;
  64. height: 340rpx;
  65. padding: 20rpx;
  66. background-color: #fff;
  67. }