crmActivity.blade.php 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8" />
  5. <meta
  6. name="viewport"
  7. content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no"
  8. />
  9. <meta http-equiv="X-UA-Compatible" content="ie=edge" />
  10. <title>充值活动</title>
  11. <style>
  12. html,
  13. body {
  14. margin: 0 auto;
  15. padding: 0;
  16. max-width: 450px;
  17. font-size: 100px;
  18. }
  19. html {
  20. background: #ffe69d;
  21. }
  22. p {
  23. margin: 0;
  24. }
  25. .main_box {
  26. font-size: 0;
  27. position: relative;
  28. }
  29. .main_box img {
  30. width: 100%;
  31. }
  32. .time {
  33. font-size: 0.14rem;
  34. font-weight: bold;
  35. text-align: center;
  36. color: #fff;
  37. }
  38. .recharge-item {
  39. font-size: 0;
  40. width: 90%;
  41. margin: 0.3rem auto;
  42. position: absolute;
  43. top: 60%;
  44. left: 50%;
  45. transform: translateX(-50%);
  46. }
  47. .recharge_box_one {
  48. width: 95%;
  49. margin: 0 auto;
  50. }
  51. .rule-box {
  52. font-size: 0;
  53. margin: 0rem auto 0;
  54. text-align: center;
  55. position: relative;
  56. top: -0.25rem;
  57. }
  58. .rule-box img {
  59. width: 80%;
  60. }
  61. .rule-texts {
  62. font-size: 0.14rem;
  63. color: #000;
  64. margin-top: 0.1rem;
  65. text-align: left;
  66. }
  67. .rule-texts .rule {
  68. line-height: 2;
  69. }
  70. .rule-box .copyright {
  71. font-size: 0.15rem;
  72. margin-top: 0.15rem;
  73. text-align: center;
  74. color: #000;
  75. }
  76. .main_box img,
  77. a {
  78. -webkit-tap-highlight-color: transparent;
  79. }
  80. .recharge-box {
  81. font-size: 0;
  82. position: absolute;
  83. top: 41%;
  84. left: 50%;
  85. -webkit-transform: translateX(-50%);
  86. -ms-transform: translateX(-50%);
  87. transform: translateX(-50%);
  88. }
  89. .recharge-item .pay{
  90. display: block;
  91. }
  92. .nub {
  93. font-size: .28rem;
  94. font-weight: 800;
  95. position: absolute;
  96. top: 50%;
  97. left: 50%;
  98. transform: translate(-50%);
  99. color: #ff6600;
  100. }
  101. </style>
  102. </head>
  103. <body>
  104. <main class="main_box">
  105. <img src="https://cdn-novel.iycdm.com/h5/activity-crm/bg.jpg" alt="" />
  106. <div class="nub">{{$fee}}书币</div>
  107. <div class="recharge-item">
  108. <div class="rule-box">
  109. <a href="{{$url}}" class="pay"><img src="{{$img}}" alt="" /></a>
  110. </div>
  111. </div>
  112. </main>
  113. </body>
  114. </html>