| 12345678910111213141516171819202122 |
- {extend name="base"/}
- {block name="resources"}
- <style>
- .form-wrap {margin-top: 0;}
- .guide-title, .guide-time {text-align: center;}
- .guide-title {font-size: 25px; font-weight: 600; height: 50px; line-height: 50px;}
- .guide-time {line-height: 24px;}
- .guide-time {color: #999999;}
- .guide-content {padding: 10px 80px 0; }
- </style>
- {/block}
- {block name="main"}
- <div class="layui-form form-wrap">
- <p class="guide-title">{$help_info.title}</p>
- <p class="guide-time">{$help_info.class_name} {$help_info.create_time|date='Y-m-d H:i:s'}</p>
- <div class="guide-content">
- {:html_entity_decode($help_info.content)}
- </div>
- </div>
- {/block}
- {block name="script"}
- {/block}
|