app.wxss 560 B

1234567891011121314151617181920212223242526272829303132333435
  1. /**app.wxss**/
  2. .container {
  3. height: 100%;
  4. display: flex;
  5. flex-direction: column;
  6. align-items: center;
  7. justify-content: space-between;
  8. padding: 200rpx 0;
  9. box-sizing: border-box;
  10. }
  11. .placeholder-default{
  12. color: #cccccc;
  13. }
  14. .dialog{
  15. position: fixed;
  16. width: 100%;
  17. height: 100%;
  18. left: 0;
  19. top: 0;
  20. background: rgba(0, 0, 0, 0.5);
  21. z-index: 1000;
  22. }
  23. .dialog-main{
  24. position: relative;
  25. top: 50%;
  26. left: 50%;
  27. transform: translate(-50%, -50%);
  28. }
  29. .dialog-close{
  30. display: block;
  31. width: 64rpx;
  32. height: 64rpx;
  33. margin: 40rpx auto 0;
  34. }