Files
orico-official-website-old/app/index/view/group/question.phtml
2024-10-29 14:04:59 +08:00

68 lines
2.5 KiB
PHTML
Executable File

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>常见FQ_下载与服务_中文官网帮助信息_ORICO/奥睿科官网</title>
<meta name="Keywords" content="常见FQ;" />
<meta name="Description" content="常见FQ;" />
{include file="include/head" /}
<link rel="stylesheet" type="text/css" href="__PUBLIC__/web/css/subject/question.css"></head>
<body class="bg-gray">
<!--top-->
<header class="header-PC header-Index">
<div id="header" class="theme-white">
{include file="include/top" /}
{include file="include/top-header" /}
</div>
</header>
{include file="include/top-header-mobile" /}
<!--top End-->
<div class="img-responsive"><img src="__PUBLIC__/web/images/faq/faq-banner.jpg"></div>
<div class="swt-Container margin-t-50 overflow-f margin-b-40">
<div class="fq_left bg-white overflow-f">
<dl>
<dt class="font-22 f-black">问题指南</dt>
<?php foreach ($question_catelist as $key => $value): ?>
<dd class="f-l-gray font-11 <?php if ($cid == $value['id']): ?>fq_hover<?php endif; ?>"><a href="/index/group/question/cid/<?php echo $value['id']; ?>.html"><?php echo $value['name']; ?></a></dd>
<?php endforeach; ?>
</dl>
</div>
<div class="fq_right bg-white overflow-f">
<div class="font-22 f-black fq_top">
<span>常见问题解答</span>
<div class="fq_search">
<form method="get" action="/index/group/question.html">
<input type="text" name="keyword" class="ipt" placeholder="请输入您的问题..." id="search-in" value="<?php echo $search['keyword']; ?>">
<button type="submit" class="searchbtn icon-search" id="search-btn"></button>
<div id="search" class="search_content search_default">
</div>
</form>
</div>
</div>
<div class="fq_list">
<?php if (!empty($question_list)): ?>
<?php foreach ($question_list as $key => $value): ?>
<ul>
<li>
<div class="left img-responsive"><img src="<?php echo $value['image']; ?>"></div>
<dl class="right">
<dt class="f-black font-11 position-r"><?php echo $value['title']; ?></dt>
<dd class="font-16 f-gray"><?php echo $value['content']; ?></dd>
</dl>
</li>
</ul>
<?php endforeach; ?>
<?php endif; ?>
</div>
<?php
if (!empty($page))
echo $page;
?>
</div>
</div>
{include file="include/bottom" /}
</body>
</html>