questions.html 949 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title>常见问题</title>
  5. <meta charset="utf-8">
  6. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  7. <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
  8. <meta content="telephone=no" name="format-detection" />
  9. <!-- Set render engine for 360 browser -->
  10. <meta name="renderer" content="webkit">
  11. <!-- No Baidu Siteapp-->
  12. <meta http-equiv="Cache-Control" content="no-siteapp"/>
  13. <link href="__STATIC__/appapi/css/page.css?t={$time}" rel="stylesheet">
  14. </head>
  15. <style>
  16. body{
  17. background:#110D24;
  18. color:#FFF;
  19. }
  20. p{
  21. color: #FFF;
  22. }
  23. .news_content .news_bd{
  24. margin:0;
  25. }
  26. </style>
  27. <body class="body-white">
  28. <div class="container tc-main">
  29. <ul class="questionList">
  30. <volist name="questionList" id="vo">
  31. <a href="{:url('appapi/page/news',['id'=>$vo['id']])}">
  32. <li>{$vo['post_title']}</li>
  33. </a>
  34. </volist>
  35. </ul>
  36. </div>
  37. </body>
  38. </html>