index.less 998 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. .mediaBox {
  2. position: fixed;
  3. z-index: 999;
  4. top: 0px;
  5. left: 0px;
  6. width: 100vw;
  7. height: 100vh;
  8. display: flex;
  9. justify-content: center;
  10. align-items: center;
  11. background: rgba(0, 0, 0, 0.7);
  12. .media {
  13. position: relative;
  14. width: 563rpx;
  15. height: 590rpx;
  16. padding: 40rpx 34rpx;
  17. box-sizing: border-box;
  18. background-color: white;
  19. border-radius: 20rpx;
  20. text-align: center;
  21. .title {
  22. margin-bottom: 27rpx;
  23. }
  24. .xieyi {
  25. color: blue;
  26. }
  27. .tips {
  28. margin-bottom: 14rpx;
  29. font-size: 26rpx;
  30. letter-spacing: 0;
  31. line-height: 47rpx;
  32. text-align: left;
  33. }
  34. .confirm {
  35. margin-top: 70rpx;
  36. padding: 12rpx 50rpx;
  37. border-radius: 30rpx;
  38. font-size: 30rpx;
  39. background-color: #00C657;
  40. color: white;
  41. }
  42. }
  43. }