C端小程序
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

46 строки
702 B

  1. .modal {
  2. width: 100%;
  3. height: 100%;
  4. position: fixed;
  5. top: 0;
  6. left: 0;
  7. background: rgba(0, 0, 0, 0.5);
  8. overflow: hidden;
  9. z-index: 10000;
  10. color: #fff;
  11. }
  12. .modal-content {
  13. width: 540rpx;
  14. height: 233rpx;
  15. line-height: 60rpx;
  16. overflow: hidden;
  17. position: fixed;
  18. top: 50%;
  19. left: 0;
  20. z-index: 11;
  21. background: #f9f9f9;
  22. margin: -130rpx 105rpx;
  23. border-radius: 36rpx;
  24. display: flex;
  25. }
  26. .modal-content view {
  27. display: inline-block;
  28. flex: 1;
  29. text-align: center;
  30. }
  31. .modal-content view>text {
  32. color: #000;
  33. display: block;
  34. font-size: 30rpx;
  35. height: 80rpx;
  36. line-height: 80rpx;
  37. }
  38. .modal-content view>image {
  39. margin-top: 30rpx;
  40. width: 90rpx;
  41. height: 90rpx;
  42. }