addAchievementCertificate.scss 796 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. /* 录入成绩和证书 */
  2. .achievement {
  3. padding: 20rpx 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. &-icon {
  23. width: 62rpx;
  24. height: 64rpx;
  25. margin: 46rpx auto 0;
  26. }
  27. }
  28. .tips {
  29. font-size: 20rpx;
  30. color: #5F5F5F;
  31. margin-top: 10rpx;
  32. }
  33. }
  34. &-submit {
  35. width: calc(100% - 60rpx);
  36. height: 80rpx;
  37. line-height: 80rpx;
  38. text-align: center;
  39. background-color: #709078;
  40. color: #fff;
  41. font-size: 30rpx;
  42. position: fixed;
  43. bottom: 64rpx;
  44. }
  45. }