longactivitysixtyeight.blade.php 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6. <link rel=icon type=image/png href="data:image/png;base64,iVBORw0KGgo=">
  7. <meta http-equiv="X-UA-Compatible" content="ie=edge">
  8. <title>书币欢乐送</title>
  9. <style>
  10. html,
  11. body {
  12. margin: 0 auto;
  13. padding: 0;
  14. max-width: 450px;
  15. font-size: 100px;
  16. }
  17. html {
  18. background: #ff3432;
  19. }
  20. .main_box {
  21. font-size: 0;
  22. position: relative;
  23. }
  24. .main_box img {
  25. width: 100%;
  26. }
  27. .time {
  28. font-size: .14rem;
  29. font-weight: bold;
  30. text-align: center;
  31. color: #fff;
  32. }
  33. .recharge-item {
  34. font-size: 0;
  35. width: 90%;
  36. margin: .3rem auto;
  37. }
  38. .recharge_box_one {
  39. width: 95%;
  40. margin: 0 auto;
  41. }
  42. .rule-box {
  43. font-size: 0;
  44. width: 90%;
  45. margin: .3rem auto 0;
  46. }
  47. .main_box img,
  48. a {
  49. -webkit-tap-highlight-color: transparent;
  50. }
  51. .d_none {
  52. display: none;
  53. }
  54. </style>
  55. </head>
  56. <body>
  57. <main class="main_box">
  58. <img src="https://cdn-novel.iycdm.com/h5/activity-chanel-custom/banner.jpg" alt="" />
  59. <p class="time">活动有效期:{{$start_time or '-'}}至{{$end_time or '-'}}</p>
  60. <div class="recharge-item">
  61. <img src="{{$img}}" alt="">
  62. </div>
  63. <div class="recharge_box_one">
  64. @if($code == 0)
  65. <!-- 活动进行中 -->
  66. <a href="{{$url}}" class="beginning">
  67. <img src="https://cdn-novel.iycdm.com/h5/activity-chanel-custom/doing.jpg" alt="">
  68. </a>
  69. @elseif($code == -3)
  70. <!-- 活动未开始 -->
  71. <a href="#" class="un_begin">
  72. <img src="https://cdn-novel.iycdm.com/h5/activity-chanel-custom/undone.jpg" alt="">
  73. </a>
  74. @elseif($code == -1)
  75. <!-- 活动结束 -->
  76. <a href="javascript:void(0)" class="over">
  77. <img src="https://cdn-novel.iycdm.com/h5/activity-chanel-custom/over.jpg" alt="">
  78. </a>
  79. @elseif($code == -2)
  80. <!-- 活动已充值 -->
  81. <a href="javascript:void(0)" class="done">
  82. <img src="https://cdn-novel.iycdm.com/h5/long_done.png" alt="">
  83. </a>
  84. @endif
  85. </div>
  86. <div class="rule-box">
  87. <img src="https://cdn-novel.iycdm.com/h5/activity-chanel-custom/rule68.jpg" alt="">
  88. </div>
  89. </main>
  90. </body>
  91. </html>