uploadPics.wxss 411 B

12345678910111213141516171819202122232425262728293031
  1. page {
  2. background-color: #fff;
  3. display: flex;
  4. flex-direction: column;
  5. height: 100vh
  6. }
  7. .imgbox {
  8. width: 140rpx;
  9. height: 140rpx;
  10. font-size: 100rpx;
  11. color: #dedede;
  12. font-weight: 100;
  13. background: #f4f5f6;
  14. overflow: hidden;
  15. }
  16. .btn {
  17. border-radius: var(--raduis);
  18. width: 72%;
  19. text-align: center;
  20. padding: .72em
  21. }
  22. .danger {
  23. background-color: #FF0039;
  24. }
  25. .btn.danger {
  26. color: #fff
  27. }