common_tips.css 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. .common_tips_box{
  2. position:fixed;
  3. left:0;
  4. top:0;
  5. right:0;
  6. bottom:0;
  7. z-index:1000;
  8. height:100%;
  9. width:100%;
  10. background-color:rgba(0,0,0,0.4);
  11. overflow:hidden;
  12. text-align:center;
  13. font-size:0;
  14. white-space:nowrap;
  15. }
  16. .common_jgb, .common_tips_body{
  17. display:inline-block;
  18. *display:inline;
  19. *zoom:1;
  20. vertical-align:middle;
  21. }
  22. .common_jgb{
  23. margin-left:-1px;
  24. height:100%;
  25. width:1px;
  26. overflow:hidden;
  27. }
  28. .common_tips_body{
  29. width:99%;
  30. }
  31. .common_main{
  32. overflow:hidden;
  33. margin:0 10%;
  34. padding-bottom: .4rem;
  35. }
  36. .common_tips_but{
  37. clear:both;
  38. display:block;
  39. overflow:hidden;
  40. -webkit-box-border-radius:.06rem;
  41. -moz-box-border-radius:.06rem;
  42. border-radius:.06rem;
  43. }
  44. .common_tips_but img{
  45. display:block;
  46. width:100%;
  47. border:0;
  48. }
  49. .btn_close_2{
  50. float:right;
  51. margin-bottom:.1rem;
  52. width:.3rem;
  53. height:.3rem;
  54. background: url(/assets/img/frontend/christmas_style/christmas_close.png) no-repeat center center;
  55. background-size:cover;
  56. }