hotLine.css 841 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. .modal {
  2. position: fixed;
  3. z-index: 999;
  4. top: 0;
  5. width: 100%;
  6. height: 100%;
  7. background: rgba(0, 0, 0, 0.56);
  8. display: flex;
  9. flex-direction: column;
  10. }
  11. .modal > view:first-child {
  12. width: 100%;
  13. flex: 1;
  14. }
  15. .modal > .one {
  16. width: 100%;
  17. position: absolute;
  18. bottom: -500px;
  19. background: #f5f5f5;
  20. }
  21. .modal .item {
  22. padding: 26rpx 0;
  23. background: #ffffff;
  24. text-align: center;
  25. font-size: 34rpx;
  26. }
  27. .modal .cancle {
  28. margin-top: 16rpx;
  29. }
  30. .modal .line {
  31. height: 3rpx;
  32. background: #eeeeee;
  33. }
  34. .modal > .two{
  35. width: 100%;
  36. position: absolute;
  37. bottom: -500px;
  38. background: #f5f5f5;
  39. }
  40. .modal > .two > view:first-child {
  41. box-sizing: border-box;
  42. padding: 26rpx 32rpx;
  43. font-size: 28rpx;
  44. color: #999999;
  45. text-align: center;
  46. line-height: 44rpx;
  47. }