reminder.blade.php 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. @include('home.soft.common.head')
  5. <style>
  6. body{
  7. color: #515a6e;
  8. font-family: Helvetica Neue,Helvetica,PingFang SC,Hiragino Sans GB,Microsoft YaHei,\\5FAE\8F6F\96C5\9ED1,Arial,sans-serif;
  9. }
  10. /* 未登录弹窗 */
  11. .member-model {
  12. line-height: 2.2;
  13. height: 100%;
  14. }
  15. .member-model .m-title {
  16. color: #BD2C00;
  17. font-size: 15px;
  18. }
  19. .member-model .m-tips {
  20. margin: 20px 0;
  21. }
  22. .member-model .member-btn {
  23. position: absolute;
  24. bottom: 5px;
  25. right: 20px;
  26. }
  27. .font-12{
  28. font-size: 12px;
  29. }
  30. .font-13{
  31. font-size: 13px;
  32. }
  33. .btn-danger{
  34. font-size: 14px;
  35. background-color: #2d8cf0;
  36. border-color: #2d8cf0;
  37. }
  38. .btn-danger:hover{
  39. background-color: #57a3f3;
  40. border-color: #57a3f3
  41. }
  42. .btn-outline-secondary{
  43. font-size: 14px;
  44. border-color: #2d8cf0;
  45. color: #2d8cf0;
  46. }
  47. </style>
  48. </head>
  49. <body style="margin:0 10px">
  50. <div class="member-model">
  51. @if(isset($ad) && $ad->logo)
  52. <div class="adv-banner">
  53. <img src="{{$ad->logo}}" style="width: 100%; height: 100%;"/>
  54. </div>
  55. @endif
  56. <div class="font-12" style="background-color: #f8f8f8; padding: 10px 20px; margin-bottom: 10px;">
  57. <div style="padding-bottom: 5px;">
  58. <img src="/static/logo/i-vip.png" class="i-vip" style="width: 62px; height: 20px; display: inline-block; vertical-align: middle; margin-right: 5px;" />
  59. <span class="font-12">开通即享</span>
  60. </div>
  61. <ul style="padding-left: 20px; line-height: 2;">
  62. <li>没有官方水印</li>
  63. <li>不限功能使用</li>
  64. <li>不限电脑设备</li>
  65. <li>永久免费升级</li>
  66. <li>专业技术支持</li>
  67. </ul>
  68. </div>
  69. <p class="font-13">检测到您现在是非VIP会员,导出的图片有官方水印,是否开通VIP套餐?</p>
  70. <div class="member-btn">
  71. <button type="button" style="margin:0 10px;" class="btn btn-outline-secondary" onclick="next()">继续试用</button>
  72. <button type="button" class="btn btn-danger" onclick="openVip()">开通会员</button>
  73. </div>
  74. </div>
  75. <script>
  76. let reminderContext;
  77. let isShow = "{{ !$isVip }}" // 会员才显示
  78. function next() {
  79. window.top.postMessage('next', '*');
  80. }
  81. function openVip() {
  82. window.top.postMessage('openVip', '*');
  83. }
  84. </script>
  85. </body>
  86. </html>