float_pop.css 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. .pop-box{
  2. width: 100%;
  3. height: 100%;
  4. z-index: 999;
  5. top: 0;
  6. position: fixed;
  7. background: rgba(0, 0, 0, 0.7);
  8. }
  9. .pop-main{
  10. width: 262px;
  11. height: 262px;
  12. position: relative;
  13. left: 50%;
  14. top: 50%;
  15. transform: translateX(-50%) translateY(-50%);
  16. -moz-transform: translateX(-50%) translateY(-50%);
  17. -ms-transform: translateX(-50%) translateY(-50%);
  18. -webkit-transform: translateX(-50%) translateY(-50%);
  19. -o-transform: translateX(-50%) translateY(-50%);
  20. }
  21. .pop-one{
  22. background: url('../../img/float_pop/pop_one.png') no-repeat center center/100% 100%;
  23. width: 100%;
  24. height: 0.45rem;
  25. text-align: center;
  26. line-height: 0.45rem;
  27. font-family:PingFang-SC-Bold,PingFang-SC;
  28. font-weight:bold;
  29. color:rgba(255,255,255,1);
  30. font-size:21px;
  31. overflow: hidden;
  32. }
  33. .pop-two{
  34. background: url('../../img/float_pop/pop_default.png') no-repeat center center/100% 100%;
  35. height: 215px;
  36. }
  37. .pop-box-close{
  38. width: 0.3rem;
  39. height: 0.3rem;
  40. background: url('../../img/float_pop/pop_close.png') no-repeat center center/100% 100%;
  41. position: absolute;
  42. left: 0;
  43. right: 0;
  44. margin: auto;
  45. bottom: -0.5rem;
  46. }