index.wxss 960 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: 80%;
  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. }
  24. .dialog-title{
  25. font-size: 36rpx;
  26. padding: 30rpx 30rpx 10rpx;
  27. }
  28. .dialog-content{
  29. padding: 10rpx 30rpx 20rpx;
  30. min-height: 80rpx;
  31. font-size: 32rpx;
  32. line-height: 1.3;
  33. word-wrap: break-word;
  34. word-break: break-all;
  35. color: #999999;
  36. }
  37. .dialog-footer{
  38. display: flex;
  39. align-items: center;
  40. position: relative;
  41. line-height: 90rpx;
  42. font-size: 34rpx;
  43. }
  44. .dialog-btn{
  45. display: block;
  46. -webkit-flex: 1;
  47. flex: 1;
  48. position: relative;
  49. color: #3CC51F;
  50. }