index.wxss 938 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. .dialog-mask{
  2. position: fixed;
  3. z-index: 1000;
  4. top: 0;
  5. right: 0;
  6. left: 0;
  7. bottom: 0;
  8. background: rgba(0, 0, 0, 0.3);
  9. }
  10. .dialog-info{
  11. position: fixed;
  12. z-index: 5000;
  13. width: 90%;
  14. max-width: 600rpx;
  15. top: 50%;
  16. left: 50%;
  17. -webkit-transform: translate(-50%, -50%);
  18. transform: translate(-50%, -50%);
  19. background-color: #FFFFFF;
  20. text-align: center;
  21. border-radius: 3px;
  22. overflow: hidden;
  23. padding: 60rpx 0 60rpx;
  24. }
  25. .dialog-hint{
  26. font-size: 40rpx;
  27. color: #707070;
  28. }
  29. .dialog-content{
  30. height: 100rpx;
  31. padding: 30rpx;
  32. font-size: 40rpx;
  33. color: #333;
  34. border: 1rpx solid #539804;
  35. margin: 30rpx 60rpx 0 60rpx;
  36. }
  37. .dialog-errmsg {
  38. color: #fc513f;
  39. height: 90rpx;
  40. display: flex;
  41. justify-content: center;
  42. align-items: center;
  43. }
  44. .dialog-footer{
  45. background: #539804;
  46. color: #fff;
  47. border-radius: 50rpx;
  48. width: 220rpx;
  49. font-size: 35rpx;
  50. }