channelYearActivity.blade.php 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  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. <link rel=icon type=image/png href="data:image/png;base64,iVBORw0KGgo=">
  10. <meta http-equiv="X-UA-Compatible" content="ie=edge" />
  11. <title>尊享畅读会员</title>
  12. <style>
  13. html,
  14. body {
  15. margin: 0 auto;
  16. padding: 0;
  17. max-width: 450px;
  18. font-size: 100px;
  19. }
  20. html {
  21. background: #1c263b;
  22. }
  23. .main_box {
  24. font-size: 0;
  25. position: relative;
  26. }
  27. .main_box img {
  28. width: 100%;
  29. }
  30. .time {
  31. font-size: .14rem;
  32. font-weight: bold;
  33. text-align: center;
  34. color: #fff;
  35. }
  36. .recharge-item {
  37. font-size: 0;
  38. width: 90%;
  39. margin: .3rem auto;
  40. }
  41. .recharge_box_one {
  42. width: 85%;
  43. margin: 0 auto;
  44. position: absolute;
  45. top: 78%;
  46. left: 50%;
  47. transform: translateX(-50%);
  48. }
  49. .main_box img,
  50. a {
  51. -webkit-tap-highlight-color: transparent;
  52. text-decoration: none;
  53. color: currentColor;
  54. }
  55. .recharge_box_one p {
  56. font-size: .22rem;
  57. box-shadow:0px 11px 18px 0px rgba(28,35,55,0.26);
  58. color: #584124;
  59. text-align: center;
  60. font-weight: bolder;
  61. border-radius: 50px;
  62. background: #f3f2ec;
  63. padding: .08rem 0;
  64. font-family: system, "Microsoft Yahei";
  65. }
  66. .d_none {
  67. display: none;
  68. }
  69. </style>
  70. </head>
  71. <body>
  72. <main class="main_box">
  73. <img src="https://cdn-novel.iycdm.com/h5/activity-channel-year/bg.jpg" alt="" />
  74. <div class="recharge_box_one">
  75. <a href="{{$url}}" class="beginning">
  76. <p>开通VIP</p>
  77. </a>
  78. </div>
  79. </main>
  80. </body>
  81. </html>