addAchievementCertificate.scss 930 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. /* 录入成绩和证书 */
  2. .achievement {
  3. padding: 20rpx 30rpx 200rpx 30rpx;
  4. &-form {
  5. &-result {
  6. display: flex;
  7. justify-content: space-between;
  8. .item {
  9. width: calc(50% - 20rpx);
  10. }
  11. }
  12. .upload-button {
  13. border: solid 1px #BABABA;
  14. width: 184rpx;
  15. height: 184rpx;
  16. text-align: center;
  17. color: #4B4B4B;
  18. font-size: 22rpx;
  19. display: flex;
  20. flex-direction: column;
  21. align-items: center;
  22. position: relative;
  23. &-icon {
  24. width: 62rpx;
  25. height: 64rpx;
  26. margin: 46rpx auto 0;
  27. }
  28. .tips {
  29. font-size: 20rpx;
  30. color: #5F5F5F;
  31. margin-top: 10rpx;
  32. }
  33. }
  34. }
  35. &-submit {
  36. width: 100%;
  37. height: 144rpx;
  38. position: fixed;
  39. bottom: 0;
  40. z-index: 1000;
  41. background-color: #fff;
  42. &-btn {
  43. width: calc(100% - 60rpx);
  44. height: 80rpx;
  45. line-height: 80rpx;
  46. text-align: center;
  47. background-color: #709078;
  48. color: #fff;
  49. font-size: 30rpx;
  50. }
  51. }
  52. }