|
|
@@ -1,10 +1,120 @@
|
|
|
-<!DOCTYPE html>
|
|
|
-<html lang="en">
|
|
|
-<head>
|
|
|
- <meta charset="UTF-8">
|
|
|
- <title>演示文档详情页</title>
|
|
|
-</head>
|
|
|
-<body>
|
|
|
-演示文档详情页
|
|
|
-</body>
|
|
|
-</html>
|
|
|
+<#include "_layout.html"/>
|
|
|
+<#macro css>
|
|
|
+ #banner {
|
|
|
+ background: #26688b;
|
|
|
+ padding: 88px 0;
|
|
|
+ height: 440px;
|
|
|
+ color: #fff;
|
|
|
+ background-size:100% 100%;
|
|
|
+ }
|
|
|
+ .banner .container{
|
|
|
+ text-align: center;
|
|
|
+ width: 1190px;
|
|
|
+ }
|
|
|
+ .banner .text-info{
|
|
|
+ margin-top: 75px;
|
|
|
+ float: left;
|
|
|
+ text-align: left;
|
|
|
+ }
|
|
|
+ .banner .text-info h3 {
|
|
|
+ font-size: 48px;
|
|
|
+ color: #fff;
|
|
|
+ font-weight: bold;
|
|
|
+ }
|
|
|
+ .banner .text-info h4 {
|
|
|
+ margin-top: 34px;
|
|
|
+ font-size: 24px;
|
|
|
+ color: #fff;
|
|
|
+ font-weight: bold;
|
|
|
+ line-height: 30px;
|
|
|
+ }
|
|
|
+ .banner img{
|
|
|
+ float: right;
|
|
|
+ margin-top: -280px;
|
|
|
+ }
|
|
|
+ /*section-main*/
|
|
|
+ #main {
|
|
|
+ width: 100%;
|
|
|
+ text-align: center;
|
|
|
+ margin: 0 auto;
|
|
|
+ text-align: center;
|
|
|
+ }
|
|
|
+ .section-item .content {
|
|
|
+ display: inline-block;
|
|
|
+ width: 1190px;
|
|
|
+ text-align: center;
|
|
|
+ overflow: hidden;
|
|
|
+ margin-bottom: 60px;
|
|
|
+ }
|
|
|
+ .breadcrumb .content{
|
|
|
+ margin-bottom: 0;
|
|
|
+ text-align: left;
|
|
|
+ }
|
|
|
+ .breadcrumb ul{
|
|
|
+ overflow: hidden;
|
|
|
+ display: inline-block;
|
|
|
+ text-align: left;
|
|
|
+ }
|
|
|
+ .breadcrumb ul li{
|
|
|
+ float: left;
|
|
|
+ margin-right: 5px;
|
|
|
+ height: 68px;
|
|
|
+ line-height: 68px;
|
|
|
+ }
|
|
|
+ .breadcrumb ul li a{
|
|
|
+ color: #1b1b1b;
|
|
|
+ }
|
|
|
+ .section1 h3{
|
|
|
+ font-size: 24px;
|
|
|
+ color: #1b1b1b;
|
|
|
+ }
|
|
|
+ .section1 .content hr{
|
|
|
+ margin: 30px 0;
|
|
|
+ width: 100%;
|
|
|
+ color: #d2d2d2;
|
|
|
+ }
|
|
|
+ .section1 .content .step-list p{
|
|
|
+ font-size: 14px;
|
|
|
+ color: #1e1e1e;
|
|
|
+ margin-bottom: 30px;
|
|
|
+ text-align: left;
|
|
|
+ }
|
|
|
+ .section1 .content .step-list img{
|
|
|
+ text-align: left;
|
|
|
+ margin-bottom: 70px;
|
|
|
+ }
|
|
|
+</#macro>
|
|
|
+<@layout>
|
|
|
+<section id="banner" class="banner">
|
|
|
+ <div class="container">
|
|
|
+ <div class="text-info">
|
|
|
+ <h3>演示文档</h3>
|
|
|
+ <h4>DOCUMENTATION DEMO</h4>
|
|
|
+ </div>
|
|
|
+ <img src="${CTPATH}/images/question/pic2.png" alt="">
|
|
|
+ </div>
|
|
|
+</section>
|
|
|
+<!-- main 主内容 -->
|
|
|
+<section id="main" class="clearfix">
|
|
|
+ <div class="section-item breadcrumb">
|
|
|
+ <div class="content">
|
|
|
+ <ul>
|
|
|
+ <li><a href="">当前位置:</a></li>
|
|
|
+ <li><a href="">首页 ></a></li>
|
|
|
+ <li><a href="">服务中心 ></a></li>
|
|
|
+ <li><a href="">演示文档</a></li>
|
|
|
+ </ul>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <div class="section-item section1">
|
|
|
+ <h3>如何设置合同打印模板?</h3>
|
|
|
+ <div class="content">
|
|
|
+ <hr/>
|
|
|
+ <div class="step-list">
|
|
|
+ <p>第一步:打开"管理工具"中的"参数设置",点击"合同打印模板设置"下的"添加合同打印模板"按钮。</p>
|
|
|
+ <img src="" alt="">
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+</section>
|
|
|
+</@layout>
|