pop.css 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159
  1. @CHARSET "UTF-8";
  2. html {
  3. font-size: 62.5%;
  4. -webkit-font-smoothing: antialiased;
  5. }
  6. body {
  7. text-align: center;
  8. font-family: "黑体", "Microsoft YaHei", "Helvetica Neue", Helvetica, STHeiTi, sans-serif;
  9. -webkit-text-size-adjust: none;
  10. }
  11. * {
  12. margin: 0;
  13. padding: 0;
  14. list-style: none;
  15. -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  16. }
  17. input, textarea, select, button {
  18. -webkit-appearance: none;
  19. font-size: 1rem;
  20. border: 0;
  21. outline: none;
  22. }
  23. input, a, span, button {
  24. -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  25. }
  26. .pop_wraper {
  27. position: fixed;
  28. top: 0;
  29. left: 0;
  30. right: 0;
  31. bottom: 0;
  32. background: rgba(0, 0, 0, 0.5);
  33. display: table;
  34. height: 100%;
  35. width: 100%;
  36. z-index: 99999;
  37. }
  38. .pop_outer {
  39. display: table-cell;
  40. vertical-align: bottom;
  41. }
  42. .pop_midder {
  43. vertical-align: middle;
  44. }
  45. .pop_tip {
  46. background: #FFFFFF;
  47. border-radius: 6px;
  48. margin: 0 3rem;
  49. }
  50. .pop_tip_p1 {
  51. padding: 5.5rem 1.5rem 2.5rem 1.5rem;
  52. font-size: 1.6rem;
  53. }
  54. .pop_tip_p2 {
  55. padding: 1.5rem;
  56. }
  57. .pop_tip_p3 {
  58. display: -webkit-box;
  59. margin-top: 1.5rem;
  60. }
  61. .pop_tip_p3 span {
  62. display: block;
  63. -webkit-box-flex: 1;
  64. width: 1px;
  65. }
  66. .p_btn {
  67. -webkit-user-select: none;
  68. height: 5rem;
  69. line-height: 5rem;
  70. font-size: 1.7rem;
  71. color: #666666;
  72. width: 100%;
  73. background: transparent;
  74. }
  75. .cols {
  76. color: #5F73C5;
  77. }
  78. .p_btn:active {
  79. color: #999999;
  80. background: rgba(0, 0, 0, 0.1);
  81. }
  82. .cols:active {
  83. color: #243B97;
  84. }
  85. .pop_tip_p4 {
  86. margin: 0 1.5rem;
  87. padding: 1.5rem 0 2rem 0;
  88. font-size: 2rem;
  89. color: #5F73C5;
  90. }
  91. .pop_tip_p5 {
  92. margin: 0 1.5rem;
  93. font-size: 1.5rem;
  94. color: #000000;
  95. text-align: left;
  96. }
  97. .pop_tip_p5.cent {
  98. text-align: center;
  99. }
  100. .border {
  101. position: relative;
  102. }
  103. .border:before {
  104. content: "";
  105. position: absolute;
  106. left: 0;
  107. top: 0;
  108. right: -100%;
  109. bottom: -100%;
  110. -webkit-transform: scale(0.5);
  111. -webkit-transform-origin: 0 0;
  112. pointer-events: none;
  113. }
  114. .b_full:before {
  115. border: 1px solid #DDDDDD;
  116. }
  117. .b_btm:before {
  118. border-bottom: 1px solid #DDDDDD;
  119. }
  120. .b_lft:before {
  121. border-left: 1px solid #DDDDDD;
  122. }
  123. .b_rgt:before {
  124. border-right: 1px solid #DDDDDD;
  125. }
  126. .b_top:before {
  127. border-top: 1px solid #DDDDDD;
  128. }
  129. .b_top_btm:before {
  130. border-top: 1px solid #DDDDDD;
  131. border-bottom: 1px solid #DDDDDD;
  132. }