首页 > 知识•资讯 > 利用CSS来实现在线打印! > 正文

利用CSS来实现在线打印!

2015/4/8 0:00:00 · 稿源:传诚信

如果你提到印刷用CSS在网上,很多人工作 打印样式表 是想到使用。 我们都是用来创建一个样式表时要求web文档打印出来。 这些样式表确保打印版本是清晰的,我们不会引起用户打印出巨大的图像。 然而,CSS也被用于格式书,目录和小册子,内容可能从未被设计为一个web页面。

在本文中,我们将看看CSS模块创建了用于web浏览器,但处理印刷和分页的媒体。 我将解释如何选择器,属性和值,他们介绍工作。 我完成了一个工作示例,您可以使用作为一个起始点为自己的实验。 对于这个例子,我们将需要一个支持这一专业的用户代理CSS。 我将使用的王子,这是一个商业产品。 然而,王子有一个免费的版本,可用于非商业用途,使其很好的工具来尝试这些例子。

为什么打印HTML和CSS有意义吗

这看起来可能有点奇怪,内容不是特别的web应该保持HTML和CSS格式化。 这看起来就没那么怪当你意识到流行的电子书阅读器格式如EPUB和手机域名是HTML和CSS。 此外,即使整个手稿或目录不是在网站上发表,其中一些可能会。 HTML成为一个方便的格式标准化,更容易处理比拥有一切在Word文档或传统的桌面发布包。

CSS的网页之间的差异和CSS打印

和概念转变,最大的区别是,打印文件是指一个页面一个固定大小的模型。 而在网络上我们不断提醒我们不知道视窗的大小,在打印每个页面都有一个固定大小的关系,我们所做的一切。 由于这种固定的页面大小,我们必须考虑我们的文档页面的集合,分页的媒体,而非连续介质,是一个web页面。

分页的媒体介绍的概念,在网络上没有任何意义。 例如,您需要能够生成页码,把章标题的利润率,打破内容适当,以便数据并不成为与他们分离的标题。 您可能需要创建交叉引用和脚注,从您的文档索引和表的内容。 你可以将文档导入一个桌面出版包和手动创建所有的这一切,然而,工作就需要重做你下次更新副本。 的,这就是CSS规范被设计用于创建分页的媒体。

因为分页的规范设计媒体,我们不会考虑浏览器支持本文——它不会很多的意义。 稍后,我们将看一个用户代理设计将HTML和CSS变成一个PDF使用这些规范。

规范

CSS的你已经知道将有用的格式打印。 专为打印,我们有“ CSS分页媒体模块 ”和“ CSS生成内容分页媒体模块 ”规范。 让我们来看看这是如何工作的。

@PAGE规则

的 @page 规则允许您指定一个页框的各个方面。 例如,您需要指定页面的尺寸。 下面的规则指定一个默认页面大小为5.5 - 8.5英寸。 如果你想打印一本书,也许是由按需印刷服务,然后发现大小您可以使用是很重要的。

@page { size: 5.5in 8.5in; }

除了指定的大小和长度值,也可以使用纸张大小关键字,如“A4”或“法律”。

@page { size: A4; }

你也可以使用一个关键字指定页面的方向——“肖像”或“景观”。

@page { size: A4 landscape; }

理解页面模型

在进一步讨论之前,我们应该理解页面分页模型媒体是如何工作的,因为它的行为有点不同屏幕上的东西是如何工作的。

页面模型定义了一个区域,然后16周围 保证金盒子 。 您可以控制页面的大小之间的区域和边缘的大小页面的边缘区和页面本身。 表的规范解释很好这些箱子的大小。

1-image-margin-boxes-opt( 看到大版本 )

页面上的页面区域空间将您的页面内容流。 当它跑出房间,就会创建另一个页面。 保证金框仅用于CSS-generated内容。

左和右页面传播

页面模型的另一个方面是,它定义了伪类选择器的左和右页的文档。 如果你看看你手头的任何印刷书籍,您可能会看到利润的规模和利润率的在左边和右边页面内容是不同的。

我们可以使用这些选择器来定义不同的幅度大小对我们的页面。

@page :left { margin-left: 3cm; } @page :right { margin-left: 4cm; }

另外两个伪类选择器定义。 的 :首先 选择目标文档的第一页。

@page :first { }

的 :空白 伪类选择器目标“故意留空的任何页面。 “添加这个文本,我们可以使用生成的目标上方边缘框的内容。

@page :blank { @top-center { content: "This page is intentionally left blank." } }

生成的内容和分页的媒体

在最后一个示例中,我们使用CSS-generated内容向上方边缘添加文本框。 你会发现,生成创建我们的书内容至关重要。 这是唯一的方法可以添加到我们的保证金盒子。 例如,如果我们想要将这本书的标题添加到左下边缘盒右页,我们将使用生成的内容。

@page:right{ @bottom-left { margin: 10pt 0 30pt 0; border-top: .25pt solid #666; content: "My book"; font-size: 9pt; color: #333; } }

分页符

还“分页媒体”的一部分规范是如何控制分页符的信息。 如已述,一旦页面内容填充区域,它将移动到一个新的页面。 如果一个标题刚刚被写入页面,你可能最终与一个标题的页面完成,相关内容在下一页开始。 在印刷书籍,你会尽量避免这种情况。 其他地方你可能希望避免休息之间的中间表和图及其说明。

一本书的新篇章 H1 标题是常见的。 迫使这个标题的开始页面,设置 page-break-before 来 总是 。

h1 { page-break-before: always; }

为了避免一个标题后直接减免,使用 page-break-after 。

h1, h2, h3, h4, h5 { page-break-after: avoid; }

为了避免破坏数据和表,使用 page-break-inside 财产。

table, figure { page-break-inside: avoid; }

计数器

书都是关于编号的东西——页面,章节,甚至数据。 我们可以通过CSS添加这些数字,拯救我们脱离不得不重编号的一切,因为我们决定说,添加一个新的图壮志未酬身先死一个章。 我们这样做是使用 CSS计数器 。

最明显的地方开始页码。 CSS给了我们一个预定义的页计数器,它始于1和增量与每一个新页面。 在你的样式表中,您将使用此计数器作为生成内容的价值,把页计数器在你的一个盒子。 在下面的示例中,我们添加页码右页面的右下角,左页的左下角。

@page:right{ @bottom-right { content: counter(page); } } @page:left{ @bottom-left { content: counter(page); } }

我们还创建了一个计数器 页面 。 此计数器将永远是你的文档的总页数。 如果你想输出”120年第3页,“你可以。

@page:left{ @bottom-left { content: "Page " counter(page) " of " counter(pages); } }

您可以创建自己的柜台和增量和重置您需要。 要创建一个计数器,使用 counter-reset 财产,增量 counter-increment 。 下面的CSS规则将创建一个柜台章命名 chapternum 并与每个增量 H1 ——在这本书中一个章节的开始。 然后,我们使用该计数器的值生成内容添加章节号和前一段章的实际题目。

body { counter-reset: chapternum; } h1.chapter:before { counter-increment: chapternum; content: counter(chapternum) ". "; }

我们可以做相同的数据在书中。 数字数据的一种常见方法是使用 chapternum.figurenum 。 所以,“图3 - 2”将在第三章第二图。 在 H1 ,我们可以重置 figurenum 为了使每一章开始从1。

body { counter-reset: chapternum figurenum; } h1 { counter-reset: figurenum; } h1.title:before { counter-increment: chapternum; content: counter(chapternum) ". "; } figcaption:before { counter-increment: figurenum; content: counter(chapternum) "-" counter(figurenum) ". "; }

设置字符串

再看一个印刷书籍。 当你翻阅一章,你会看到这一章的标题是印在左边或者右边页面。 这听起来可能有点奇怪,“生成内容分页媒体”规范让我们使用CSS实现这一目标。

我们使用一个属性命名 绳子 在选择我们想要的内容。 章的标题,这将是 H1 。 的价值 绳子 是你想给这个内容,然后呢 内容() 。 然后您可以输出,这是使用生成的内容 字符串() 。

h1 { string-set: doctitle content(); } @page :right { @top-right { content: string(doctitle); margin: 30pt 0 10pt 0; font-size: 8pt; } }

当你生成分页的媒体,每次一个 H1 发生时,写入的内容 doctitle 然后在右上的保证金框中输出的右页,只有当另一个变化 H1 发生。

脚注

脚注的一部分” CSS生成内容分页媒体模块 ”规范。 脚注的工作方式是,您将添加的文本脚注内联,裹在HTML标记(可能是一个跨度),与一个类来将其识别为一个脚注。 当页面生成的内容,删除“脚注元素”,变成一个脚注。

在CSS中,使用脚注的价值 浮动 为你的脚注类属性来创建一个规则。

.fn { float: footnote; }

在你的文档中,使用这个类来包装任何脚注文本。

FootnotesFootnotes and notes placed in the footer of a document to reference the text. The footnote will be removed from the flow when the page is created.span> are useful in books and printed documents.p>

脚注有一个预定义的计数器,以同样的方式表现为页计数器。 通常,您会希望通过1每次递增计数器 FN 类和重置它发生在每一章的开始。

.fn { counter-increment: footnote; } h1 { counter-reset: footnote; }

脚注的各个部分可以有针对性的CSS伪元素。 的 footnote-call 是数字的锚文本,显示有一个脚注。 这使用脚注计数器的值作为生成的内容。

.fn::footnote-call { content: counter(footnote); font-size: 9pt; vertical-align: super; line-height: none; }

的 脚注标记 是前面的数字标记放置在脚注文本文档的页脚。 这些行为以类似的方式有序列表的数据生成CSS。

.fn::footnote-marker { font-weight: bold; }

脚注本身被放置在页边,在一个特殊区域页面的命名 @footnotes 。 你将目标和风格,面积如下。

@page { @footnotes { border-top: 1pt solid black; } }

交叉引用

在继续工作之前我们学到的一切的例子,让我们看看交叉引用。 在网络上,我们通过添加链接交叉引用的东西。 在书中或其他印刷文档,您通常会参考引用的页码的地方被发现。 因为页码可能会改变根据这本书是印刷的格式和版本之间用CSS这样为我们省去了经历和改变所有的数字。

我们使用另一个新属性, target-counter 添加这些数字。 首先创建链接在你的文档中,给他们一个 href ,这是在文档中元素的ID,您想要的目标。 同时,添加一个类来识别它们交叉引用,而不是外部链接,我使用 xref 。

Chapter 1a>

链接之后,再次使用生成的内容输出 (x)页 ,在那里 X 是书中的位置的数量,可以找到ID。

a.xref:after { content: " (page " target-counter(attr(href, url), page) ")"; }

我们会看这种技术在实践中当我们创建一个工作示例的目录。

把它放在一起:一个例子的书

我们看了很多不同的属性在隔离。 他们更有意义,一旦你把它们使用通过构建一本书。

实际使用这个CSS创建一本书,你需要一个支持它的用户代理。 目前,很少有事情实现这个规范;是最容易的一个 王子 。 一个独立的商业许可王子是昂贵的,但是,您可以使用王子为非商业项目免费。 这意味着,如果你只是想尝试这些技术,你可以。 另外,如果你有非商业使用这种技术,你可以用王子那些书格式。

我已经提取通道古登堡计划从我最喜欢的一本书, 我们的猫 由哈里森堰 。 我选择这本书是因为我喜欢猫,因为它有图片和脚注,我可以使用它来证明格式。

你可以找到我的文件使用,再加上一个生成的PDF,结束了 GitHub上 。 如果你想尝试CSS和构建这本书你自己,那么你将需要下载并安装 王子 。 王子是一个命令行工具在Mac上,虽然有一个Windows的GUI,我将使用命令行,因为它真的是非常简单的。

使用一个终端窗口,切换到你的书的目录或从GitHub的位置你下载我的文件。

cd /Users/username/smashing-css-books

现在,运行王子:

prince -s pdf-styles.css book.html builds/book.pdf

这将创建一个PDF中 构建 文件夹命名 book.pdf 。 现在,如果你进行任何更改CSS和HTML,您可以运行看看王子是不同的。

HTML文档

我的整个编译“书”在一个HTML文档。 编译文件王子是可能的,但我发现它更简单的只是处理一个大文档。 之前的章节,从一开始 H1 ,我有一个div,包含封面图像,然后对书的目录。

目录链接id章节的 H1 标题。

    Our Cats and All About Themtitle> <meta name="author" content="Harrison Weir"/> <meta name="subject" content="Cats. Their Varieties, Habits and Management; and for show, the Standard of Excellence and Beauty"/> <meta name="keywords" content="cats,feline"/> <meta name="date" content="2014-12-05"/> head> <body> <div class="frontcover"> div> <div class="contents"> <h1>Extracts from Our Cats and All About Them by Harrison Weirh1> <ul class="toc"> <li><a href="#ch1">The First Cat Showa>li> <li><a href="#ch2">Trained Catsa>li> <li><a href="#ch3">General Managementa>li> <li><a href="#ch4">Superstition and Witchcrafta>li> ul> div> <h1 id="ch1" class="chapter">The First Cat Showh1> <p>… p> <h1 id="ch2" class="chapter">Trained Catsh1> <p>… p> <h1 id="ch3" class="chapter">General Managementh1> <p>… p> <h1 id="ch4" class="chapter">Superstition and Witchcrafth1> <p>… p> body> html></pre><p>然后CSS使用的所有事情到目前为止我们已经描述了。 首先,我们需要建立一个大小为这本书使用 @page 规则。 然后,我们使用 :首先 伪类选择器删除1页的边缘,因为这个页面会有封面图片。</p><pre>@page { size: 5.5in 8.5in; margin: 70pt 60pt 70pt; } @page:first { size: 5.5in 8.5in; margin: 0; }</pre><p>然后我们处理封面的图片,确保它覆盖整个页面区域。</p><pre>div.frontcover { page: cover; content: url("images/cover.png"); width: 100%; height: 100%; }</pre><p><img width="500" height="782" style="border: 0px currentColor; border-image: none; height: auto;" alt="2-image-cover-opt" src="http://media.mediatemple.netdna-cdn.com/wp-content/uploads/2014/12/2-image-cover-opt.jpg"/>( 看到大版本 )</p><p>接下来,我们处理的细节左边和右边的页面,使用 :对 和 :左 伪类传播。</p><p>右手边的传播将这本书的标题在保证金框左下角,右下角的页计数器,右上的章的标题。 章的标题使用 绳子 进一步的样式表。</p><pre>@page:right{ @bottom-left { margin: 10pt 0 30pt 0; border-top: .25pt solid #666; content: "Our Cats"; font-size: 9pt; color: #333; } @bottom-right { margin: 10pt 0 30pt 0; border-top: .25pt solid #666; content: counter(page); font-size: 9pt; } @top-right { content: string(doctitle); margin: 30pt 0 10pt 0; font-size: 9pt; color: #333; } }</pre><p><img width="500" height="773" style="border: 0px currentColor; border-image: none; height: auto;" alt="3-image-spread-right-opt" src="http://media.mediatemple.netdna-cdn.com/wp-content/uploads/2014/12/3-image-spread-right-opt.jpg"/>( 看到大版本 )</p><p>左边的传播在右下角,这本书的标题页计数器在左下角。</p><pre>@page:left { @bottom-right { margin: 10pt 0 30pt 0; border-top: .25pt solid #666; content: "Our Cats"; font-size: 9pt; color: #333; } @bottom-left { margin: 10pt 0 30pt 0; border-top: .25pt solid #666; content: counter(page); font-size: 9pt; } }</pre><p><img width="500" height="771" style="border: 0px currentColor; border-image: none; height: auto;" alt="4-image-spread-left-opt" src="http://media.mediatemple.netdna-cdn.com/wp-content/uploads/2014/12/4-image-spread-left-opt.jpg"/>( 看到大版本 )</p><p>第一页,包含封面图片,我们会确保没有生成的内容似乎通过设置它 正常的 。</p><pre>@page:first { @bottom-right { content: normal; margin: 0; } @bottom-left { content: normal; margin: 0; } }</pre><p>下一节的样式表处理计数器。 除了预设页计数器,我们为章节定义计数器和数字。</p><pre>/* Reset chapter and figure counters on the body */ body { counter-reset: chapternum figurenum; font-family: "Trebuchet MS", "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", Tahoma, sans-serif; line-height: 1.5; font-size: 11pt; } /* Get the title of the current chapter, which will be the content of the h1.Reset figure counter because figures start from 1 in each chapter. */ h1 { string-set: doctitle content(); page-break-before: always; counter-reset: figurenum; counter-reset: footnote; line-height: 1.3; } /* Increment chapter counter */ h1.chapter:before { counter-increment: chapternum; content: counter(chapternum) ". "; } /* Increment and display figure counter */ figcaption:before { counter-increment: figurenum; content: counter(chapternum) "-" counter(figurenum) ". "; }</pre><p>章标题前的数字放置。 数据也显示他们的号码。</p><p><img width="500" height="303" style="border: 0px currentColor; border-image: none; height: auto;" alt="5-image-figure-number-opt" src="http://media.mediatemple.netdna-cdn.com/wp-content/uploads/2014/12/5-image-figure-number-opt.jpg"/>( 看到大版本 )</p><p>我们创建脚注解释前,上标脚注的呼唤。</p><pre>.fn { float: footnote; } .fn { counter-increment: footnote; } .fn::footnote-call { content: counter(footnote); font-size: 9pt; vertical-align: super; line-height: none; } .fn::footnote-marker { font-weight: bold; } @page { @footnotes { border-top: 0.6pt solid black; padding-top: 8pt; } }</pre><p><img width="500" height="271" style="border: 0px currentColor; border-image: none; height: auto;" alt="6-image-footnotes-opt" src="http://media.mediatemple.netdna-cdn.com/wp-content/uploads/2014/12/6-image-footnotes-opt.jpg"/>( 看到大版本 )</p><p>然后,我们添加一些规则来控制页面。 你需要非常小心过于严格。 如果你的书有很多表和数据,然后添加许多特定的规则可能会导致大量的长差距在书中。 试验和测试将显示多远你可以控制的。 我发现下面的规则是一个很好的起点。</p><p>记住,这是一个用户代理的建议。 在某些情况下,阻止一个表破坏将是不可能的如果页面上的表不适合!</p><pre>h1, h2, h3, h4, h5 { font-weight: bold; page-break-after: avoid; page-break-inside:avoid; } h1+p, h2+p, h3+p { page-break-before: avoid; } table, figure { page-break-inside: avoid; }</pre><p>最后,我们风格的目录,我们使用一个有趣的地方。 在描述交叉引用,我解释了我们如何使用 target-counter 显示页码的ID。 这就是我们做表的内容。 下面的规则把页码后链接表中每一章的内容。</p><pre>ul.toc a::after { content: target-counter(attr(href), page); }</pre><p><img width="500" height="263" style="border: 0px currentColor; border-image: none; height: auto;" alt="7-image-toc-numbers-opt" src="http://media.mediatemple.netdna-cdn.com/wp-content/uploads/2014/12/7-image-toc-numbers-opt.jpg"/>( 看到大版本 )</p><p>一般书中,您将使用领导人点排队的所有页码右边距。 令人惊讶的是,CSS给了我们一个方法,通过添加 领袖() 之前在生成的内容数量。</p><pre>ul.toc a::after { content: leader('.') target-counter(attr(href), page); }</pre><p><img width="500" height="771" style="border: 0px currentColor; border-image: none; height: auto;" alt="8-image-toc-leader-opt" src="http://media.mediatemple.netdna-cdn.com/wp-content/uploads/2014/12/8-image-toc-leader-opt.jpg"/>( 看到大版本 )</p><p>我们现在有一个完整的样式表来构建我们的书。 我避免花费大量的时间在排版上,而不是集中在创建一个书的细节。 然而,从这一点上,你可以实验和添加自己的风格设计创造一个独特的书。</p><h3>不仅仅是书!</h3><p>记住,这些技术不仅仅是书。 你可以使用它们来生成打印和PDF版本的产品目录直接从HTML的一个网站,你为一个客户开发。 或者你可以从web内容创建传单和小册子。</p><p>如果你想创建PDF文档使用王子,从一个网站 DocRaptor 是一个伟大的选择。 这个服务通过一个API使用王子。 你可以发送文件通过API和接收一个PDF——允许用户下载内容的完美的PDF。 我们看着在本文中所拥有的一切都可能通过一个API与DocRaptor集成。</p><p>即使你没有立即需要PDF生成,这是一个迷人的CSS方面,这是一个有用的技能有藏,所以,你知道什么是可能的,当一个用例。</p><p>文章整理来自网络,转载请注明<a href="http://www.ccxcn.com/" target="_blank">北京网站建设</a>公司-北京传诚信,翻译不好,请见谅!<br/></p>                                    </div>
                                    <div class="page-article">
                                    </div>



                                </div>

                                <div class="nbox">

                                    <div class="layui-tab nbox-tab2">
                                        <ul class="layui-tab-title">
                                            <li class="layui-this">相关推荐</li>
                                            <li>大家在看</li>

                                        </ul>
                                        <div class="article-tags">
                                            关键词:<ul>
                                                    <li class="tag item"><a target="_blank" href="https://www.ccxcn.com/taglist?tag=利用CSS来实现在线打印">利用CSS来实现在线打印</a></li>
                                                    <li class="tag item"><a target="_blank" href="https://www.ccxcn.com/taglist?tag=网站建设">网站建设</a></li>
                                            </ul>
                                        </div>

                                        <div class="layui-tab-content">
                                            <div class="layui-tab-item layui-show">
                                                <ul class="scrollload-content">
                                                            <li class="single-mode">
                                                                <div class="info">
                                                                    <div class="info-limit">
                                                                        <h3><a href="https://www.ccxcn.com/news/5468.html" target="_blank">建网站一般需要多少钱?如何规划才能节省成本?</a></h3>
                                                                        <p class="desc">时要节省网站建设的成本,你可以采取以下几个策略:1. 选择合适的网站类型根据你的业务需求和预算,选择适合你的网站类型。例如,如果你的业务相对......</p>
                                                                    </div>
                                                                    <div class="meta">
                                                                        <div class="tags">
                                                                       
<a href="https://www.ccxcn.com/taglist?tag=模板建站">模板建站</a> <a href="https://www.ccxcn.com/taglist/31.html">北京网站建设</a>                                                                            
                                                                        </div>
                                                                        <div class="time util-time" title="2024/4/25 0:00:00" data-time="2024/4/25 0:00:00">2024/4/25 0:00:00</div>
                                                                    </div>
                                                                </div>
                                                            </li>
                                                            <li class="single-mode">
                                                                <div class="info">
                                                                    <div class="info-limit">
                                                                        <h3><a href="https://www.ccxcn.com/news/5467.html" target="_blank">年中钜惠,模板自助建站1000元起!</a></h3>
                                                                        <p class="desc">年中钜惠来袭!现在,我们推出了超值的网站建设服务——模板自助建站,只需1000元起!是的,你没有听错,只要1000元,就可以拥有一个专业的网......</p>
                                                                    </div>
                                                                    <div class="meta">
                                                                        <div class="tags">
                                                                       
<a href="https://www.ccxcn.com/taglist?tag=企业建站">企业建站</a> <a href="https://www.ccxcn.com/taglist?tag=模板建站">模板建站</a> <a href="https://www.ccxcn.com/taglist?tag=自助建站">自助建站</a> <a href="https://www.ccxcn.com/taglist/31.html">北京网站建设</a>                                                                            
                                                                        </div>
                                                                        <div class="time util-time" title="2024/4/2 11:35:15" data-time="2024/4/2 11:35:15">2024/4/2 11:35:15</div>
                                                                    </div>
                                                                </div>
                                                            </li>
                                                            <li class="single-mode">
                                                                <div class="info">
                                                                    <div class="info-limit">
                                                                        <h3><a href="https://www.ccxcn.com/news/5462.html" target="_blank">如何建设网站:网站建设的5个精选方案</a></h3>
                                                                        <p class="desc">当建设网站时,以下是五个精选方案,可以帮助您成功建立一个专业、功能齐全的网站:确定网站目标和目标受众:在开始建设网站之前,明确您的网站目标和......</p>
                                                                    </div>
                                                                    <div class="meta">
                                                                        <div class="tags">
                                                                       
<a href="https://www.ccxcn.com/taglist?tag=公司网站建设">公司网站建设</a>                                                                            
                                                                        </div>
                                                                        <div class="time util-time" title="2023/9/18 16:57:53" data-time="2023/9/18 16:57:53">2023/9/18 16:57:53</div>
                                                                    </div>
                                                                </div>
                                                            </li>
                                                            <li class="single-mode">
                                                                <div class="info">
                                                                    <div class="info-limit">
                                                                        <h3><a href="https://www.ccxcn.com/news/5461.html" target="_blank">北京建设网站需要多少钱,哪些因素决定价格?</a></h3>
                                                                        <p class="desc">北京建设网站的价格因素是多样的,具体费用会根据以下因素而有所不同:1. 网站规模和功能:网站的规模和功能是影响价格的主要因素之一。一个简单的......</p>
                                                                    </div>
                                                                    <div class="meta">
                                                                        <div class="tags">
                                                                       
<a href="https://www.ccxcn.com/taglist/40.html">建站公司</a> <a href="https://www.ccxcn.com/taglist?tag=北京建站">北京建站</a> <a href="https://www.ccxcn.com/taglist?tag=公司网站建设">公司网站建设</a>                                                                            
                                                                        </div>
                                                                        <div class="time util-time" title="2023/8/13 0:14:35" data-time="2023/8/13 0:14:35">2023/8/13 0:14:35</div>
                                                                    </div>
                                                                </div>
                                                            </li>
                                                            <li class="single-mode">
                                                                <div class="info">
                                                                    <div class="info-limit">
                                                                        <h3><a href="https://www.ccxcn.com/news/5459.html" target="_blank">做个企业网站要多少钱,需要注意哪些细节</a></h3>
                                                                        <p class="desc">做一个企业网站的费用和需要注意的细节如下:费用因素:1. 网站设计和开发费用:这是建立企业网站最主要的费用。费用会根据网站的规模、功能和复杂......</p>
                                                                    </div>
                                                                    <div class="meta">
                                                                        <div class="tags">
                                                                       
<a href="https://www.ccxcn.com/taglist/53.html">企业网站建设</a> <a href="https://www.ccxcn.com/taglist/40.html">建站公司</a> <a href="https://www.ccxcn.com/taglist?tag=集团网站建设">集团网站建设</a>                                                                            
                                                                        </div>
                                                                        <div class="time util-time" title="2023/8/12 0:10:23" data-time="2023/8/12 0:10:23">2023/8/12 0:10:23</div>
                                                                    </div>
                                                                </div>
                                                            </li>
                                                            <li class="single-mode">
                                                                <div class="info">
                                                                    <div class="info-limit">
                                                                        <h3><a href="https://www.ccxcn.com/news/5458.html" target="_blank">北京网站搭建哪家好,服务年份是一个可以参考的值</a></h3>
                                                                        <p class="desc">在选择北京的网站搭建服务提供商时,以下是一些建议:1. 参考口碑和评价:了解不同网站搭建服务提供商的口碑和客户评价。可以通过在线评论、社交媒......</p>
                                                                    </div>
                                                                    <div class="meta">
                                                                        <div class="tags">
                                                                       
<a href="https://www.ccxcn.com/taglist?tag=企业建站">企业建站</a> <a href="https://www.ccxcn.com/taglist?tag=北京建站">北京建站</a> <a href="https://www.ccxcn.com/taglist/53.html">企业网站建设</a>                                                                            
                                                                        </div>
                                                                        <div class="time util-time" title="2023/8/11 0:14:22" data-time="2023/8/11 0:14:22">2023/8/11 0:14:22</div>
                                                                    </div>
                                                                </div>
                                                            </li>
                                                            <li class="single-mode">
                                                                <div class="info">
                                                                    <div class="info-limit">
                                                                        <h3><a href="https://www.ccxcn.com/news/5457.html" target="_blank">服务年份和建站公司的关系</a></h3>
                                                                        <p class="desc">服务年份可以作为评估建站公司经验和稳定性的参考指标,但并不是唯一的决定因素。一个建站公司的服务年份可以反映他们在行业中的存在时间和经验积累,......</p>
                                                                    </div>
                                                                    <div class="meta">
                                                                        <div class="tags">
                                                                       
<a href="https://www.ccxcn.com/taglist/14.html">网站建设</a> <a href="https://www.ccxcn.com/taglist?tag=公司网站建设">公司网站建设</a>                                                                            
                                                                        </div>
                                                                        <div class="time util-time" title="2023/8/10 16:17:22" data-time="2023/8/10 16:17:22">2023/8/10 16:17:22</div>
                                                                    </div>
                                                                </div>
                                                            </li>
                                                            <li class="single-mode">
                                                                <div class="info">
                                                                    <div class="info-limit">
                                                                        <h3><a href="https://www.ccxcn.com/news/5455.html" target="_blank">真正永久免费的建站系统有哪些?我来告诉你</a></h3>
                                                                        <p class="desc">永久免费的建站系统有很多,以下是一些比较知名的:1. WdPress:WdPress是一个开源的内容管理系统(CMS)用户可以在不事先了解编......</p>
                                                                    </div>
                                                                    <div class="meta">
                                                                        <div class="tags">
                                                                       
<a href="https://www.ccxcn.com/taglist/14.html">网站建设</a> <a href="https://www.ccxcn.com/taglist/53.html">企业网站建设</a>                                                                            
                                                                        </div>
                                                                        <div class="time util-time" title="2023/8/9 15:49:19" data-time="2023/8/9 15:49:19">2023/8/9 15:49:19</div>
                                                                    </div>
                                                                </div>
                                                            </li>
                                                            <li class="single-mode">
                                                                <div class="info">
                                                                    <div class="info-limit">
                                                                        <h3><a href="https://www.ccxcn.com/news/company/5454.html" target="_blank">建网站究竟需要多少钱?</a></h3>
                                                                        <p class="desc">在数字化时代,拥有一个精美实用的网站对个人、企业或组织来说变得越来越重要。然而,对于许多人来说,建设一个网站的费用仍然是一个疑问。这篇文章将......</p>
                                                                    </div>
                                                                    <div class="meta">
                                                                        <div class="tags">
                                                                       
<a href="https://www.ccxcn.com/taglist/14.html">网站建设</a> <a href="https://www.ccxcn.com/taglist?tag=模板建站">模板建站</a> <a href="https://www.ccxcn.com/taglist?tag=自助建站">自助建站</a>                                                                            
                                                                        </div>
                                                                        <div class="time util-time" title="2023/8/9 15:36:10" data-time="2023/8/9 15:36:10">2023/8/9 15:36:10</div>
                                                                    </div>
                                                                </div>
                                                            </li>
                                                            <li class="single-mode">
                                                                <div class="info">
                                                                    <div class="info-limit">
                                                                        <h3><a href="https://www.ccxcn.com/news/5453.html" target="_blank">从事网站开发的公司</a></h3>
                                                                        <p class="desc">作为从事网站开发的公司,一般可以提供以下服务:网站设计与开发:根据客户需求,设计和建立符合其品牌形象和目标的网站。可以包括用户界面设计、前端......</p>
                                                                    </div>
                                                                    <div class="meta">
                                                                        <div class="tags">
                                                                       
<a href="https://www.ccxcn.com/taglist/14.html">网站建设</a> <a href="https://www.ccxcn.com/taglist?tag=公司网站建设">公司网站建设</a>                                                                            
                                                                        </div>
                                                                        <div class="time util-time" title="2023/8/3 0:13:58" data-time="2023/8/3 0:13:58">2023/8/3 0:13:58</div>
                                                                    </div>
                                                                </div>
                                                            </li>



                                                </ul>
                                            </div>
                                            <div class="layui-tab-item">
                                                <ul class="scrollload-content">
                                                            <li class="single-mode">
                                                                <div class="info">
                                                                    <div class="info-limit">
                                                                        <h3><a href="https://www.ccxcn.com/news/company/272.html" target="_blank">普通商务网站建设流程</a></h3>
                                                                        <p class="desc">建立一个普通商务网站首先必须先给它取个名(域名注册),并把企业的域名注册、域名解析等先期工作完成。然后开始制作网站。大体上一个企业的网站有以......</p>
                                                                    </div>
                                                                    <div class="meta">
                                                                        <div class="tags">
                                                                            <a href="https://www.ccxcn.com/taglist?tag=普通商务网站建设流程">普通商务网站建设流程</a> <a href="https://www.ccxcn.com/taglist?tag=建站流程">建站流程</a> <a href="https://www.ccxcn.com/taglist?tag=网站建设流程">网站建设流程</a> 
                                                                        </div>
                                                                        <div class="time util-time" title="2010/3/27 0:00:00" data-time="2010/3/27 0:00:00">2010/3/27 0:00:00</div>
                                                                    </div>
                                                                </div>
                                                            </li>
                                                            <li class="single-mode">
                                                                <div class="info">
                                                                    <div class="info-limit">
                                                                        <h3><a href="https://www.ccxcn.com/design/4742.html" target="_blank">网站支持移动手机的重要性!</a></h3>
                                                                        <p class="desc">现在当我们走在街上、搭乘大众交通工具、排队等候时,总是可以看到有人正低着头滑手机,或是觉得无聊想要打发时间,您也会拿起口袋看看有没有讯息、社......</p>
                                                                    </div>
                                                                    <div class="meta">
                                                                        <div class="tags">
                                                                            <a href="https://www.ccxcn.com/taglist/14.html">网站建设</a> <a href="https://www.ccxcn.com/taglist?tag=手机网站建设">手机网站建设</a> 
                                                                        </div>
                                                                        <div class="time util-time" title="2019/9/19 0:00:00" data-time="2019/9/19 0:00:00">2019/9/19 0:00:00</div>
                                                                    </div>
                                                                </div>
                                                            </li>
                                                            <li class="single-mode">
                                                                <div class="info">
                                                                    <div class="info-limit">
                                                                        <h3><a href="https://www.ccxcn.com/news/5072.html" target="_blank">HTML/CSS编辑工具─Notdpad++介绍。</a></h3>
                                                                        <p class="desc">大家在网站建设的时候,一定会常常去编辑到原始码,不管是编辑HTML或是CSS档,如果用微软内建的记事本来编辑,文件小的时候还好,文件一大,行......</p>
                                                                    </div>
                                                                    <div class="meta">
                                                                        <div class="tags">
                                                                            <a href="https://www.ccxcn.com/taglist/3.html">网站设计</a> <a href="https://www.ccxcn.com/taglist?tag=建站工具">建站工具</a> 
                                                                        </div>
                                                                        <div class="time util-time" title="2020/12/4 0:09:29" data-time="2020/12/4 0:09:29">2020/12/4 0:09:29</div>
                                                                    </div>
                                                                </div>
                                                            </li>
                                                            <li class="single-mode">
                                                                <div class="info">
                                                                    <div class="info-limit">
                                                                        <h3><a href="https://www.ccxcn.com/news/5283.html" target="_blank">企业网站设计的重要性有那些?</a></h3>
                                                                        <p class="desc">随着网络信息时代的高速发展,企业已经不能再单单去靠传统的推广模式去打开市场而更多的公司和个人已经认识到了企业网站的重要性。很多的公司都是通过......</p>
                                                                    </div>
                                                                    <div class="meta">
                                                                        <div class="tags">
                                                                            <a href="https://www.ccxcn.com/taglist/3.html">网站设计</a> <a href="https://www.ccxcn.com/taglist/53.html">企业网站建设</a> <a href="https://www.ccxcn.com/taglist?tag=网页设计">网页设计</a> 
                                                                        </div>
                                                                        <div class="time util-time" title="2022/7/27 15:39:12" data-time="2022/7/27 15:39:12">2022/7/27 15:39:12</div>
                                                                    </div>
                                                                </div>
                                                            </li>
                                                            <li class="single-mode">
                                                                <div class="info">
                                                                    <div class="info-limit">
                                                                        <h3><a href="https://www.ccxcn.com/industry/4144.html" target="_blank">移动网站设计及其展望</a></h3>
                                                                        <p class="desc">移动网站设计及其展望今天,我们可以使用我们的手机作为一种资源丰富的媒介,快速连接到互联网。无论我们是寻找时尚网站还是房地产网站,我们都可以轻......</p>
                                                                    </div>
                                                                    <div class="meta">
                                                                        <div class="tags">
                                                                            <a href="https://www.ccxcn.com/taglist/3.html">网站设计</a> <a href="https://www.ccxcn.com/taglist/14.html">网站建设</a> <a href="https://www.ccxcn.com/taglist?tag=移动网站">移动网站</a> 
                                                                        </div>
                                                                        <div class="time util-time" title="2019/4/15 0:00:00" data-time="2019/4/15 0:00:00">2019/4/15 0:00:00</div>
                                                                    </div>
                                                                </div>
                                                            </li>
                                                            <li class="single-mode">
                                                                <div class="info">
                                                                    <div class="info-limit">
                                                                        <h3><a href="https://www.ccxcn.com/marketing/4957.html" target="_blank">网站数字营销如何操作?组成部分都有哪些?</a></h3>
                                                                        <p class="desc">数字营销具有三个主要组成部分:线索生成,线索捕获和线索培育。阶段1:潜在客户产生数字营销的第一步是计划并执行潜在客户生成策略,以吸引合适的人......</p>
                                                                    </div>
                                                                    <div class="meta">
                                                                        <div class="tags">
                                                                            <a href="https://www.ccxcn.com/taglist?tag=网站营销">网站营销</a> 
                                                                        </div>
                                                                        <div class="time util-time" title="2020/1/3 0:00:00" data-time="2020/1/3 0:00:00">2020/1/3 0:00:00</div>
                                                                    </div>
                                                                </div>
                                                            </li>
                                                            <li class="single-mode">
                                                                <div class="info">
                                                                    <div class="info-limit">
                                                                        <h3><a href="https://www.ccxcn.com/design/2377.html" target="_blank">网站建设系统性设计原则。</a></h3>
                                                                        <p class="desc">网络以大量的信息流作为营运的起点 设计时需要从系统上合理组织规划和呈现这些信息引导人流在网络系统内部的有效流动 再通过系统上对互动操作的有效......</p>
                                                                    </div>
                                                                    <div class="meta">
                                                                        <div class="tags">
                                                                            <a href="https://www.ccxcn.com/taglist/14.html">网站建设</a> <a href="https://www.ccxcn.com/taglist/3.html">网站设计</a> 
                                                                        </div>
                                                                        <div class="time util-time" title="2012/10/19 0:00:00" data-time="2012/10/19 0:00:00">2012/10/19 0:00:00</div>
                                                                    </div>
                                                                </div>
                                                            </li>
                                                            <li class="single-mode">
                                                                <div class="info">
                                                                    <div class="info-limit">
                                                                        <h3><a href="https://www.ccxcn.com/revision/2479.html" target="_blank">网站制作中的资讯是为了产品销售。</a></h3>
                                                                        <p class="desc">网站制作中一切资讯都是为了带动产品(服务)销售,提高目标客户群体对我们产品(服务)的认知度,目标客户群体越了解我们的产品(服务),越容易成交......</p>
                                                                    </div>
                                                                    <div class="meta">
                                                                        <div class="tags">
                                                                            <a href="https://www.ccxcn.com/taglist/12.html">网站制作</a> 
                                                                        </div>
                                                                        <div class="time util-time" title="2013/3/22 0:00:00" data-time="2013/3/22 0:00:00">2013/3/22 0:00:00</div>
                                                                    </div>
                                                                </div>
                                                            </li>
                                                            <li class="single-mode">
                                                                <div class="info">
                                                                    <div class="info-limit">
                                                                        <h3><a href="https://www.ccxcn.com/knowledge/902.html" target="_blank">什么是SMTP身份验证</a></h3>
                                                                        <p class="desc">什么是SMTP身份验证?SMTP(Simple Mail Transfer Protocol)即简单邮件传输协议它是一组用于由源地址到目的地......</p>
                                                                    </div>
                                                                    <div class="meta">
                                                                        <div class="tags">
                                                                            <a href="https://www.ccxcn.com/taglist?tag=什么是SMTP身份验证">什么是SMTP身份验证</a> 
                                                                        </div>
                                                                        <div class="time util-time" title="2010/8/29 0:00:00" data-time="2010/8/29 0:00:00">2010/8/29 0:00:00</div>
                                                                    </div>
                                                                </div>
                                                            </li>
                                                            <li class="single-mode">
                                                                <div class="info">
                                                                    <div class="info-limit">
                                                                        <h3><a href="https://www.ccxcn.com/news/5117.html" target="_blank">微信小程序怎么申请账号</a></h3>
                                                                        <p class="desc">开始开发小程序的第一步,你需要拥有一个小程序帐号,通过这个帐号你就可以管理你的小程序。跟随这个教程,开始你的小程序之旅吧!申请帐号进入小程序......</p>
                                                                    </div>
                                                                    <div class="meta">
                                                                        <div class="tags">
                                                                            <a href="https://www.ccxcn.com/taglist/38.html">小程序开发</a> <a href="https://www.ccxcn.com/taglist?tag=微信小程序">微信小程序</a> <a href="https://www.ccxcn.com/taglist?tag=小程序">小程序</a> 
                                                                        </div>
                                                                        <div class="time util-time" title="2020/12/29 10:13:36" data-time="2020/12/29 10:13:36">2020/12/29 10:13:36</div>
                                                                    </div>
                                                                </div>
                                                            </li>



                                                </ul>
                                            </div>

                                        </div>
                                    </div>


                                </div>


                            </div>
                            <div class="col-xs-12 col-md-4">
                                <div class="nbox">
                                    <div class="th1">
                                        <div class="tit">
                                            <svg t="1584341114171" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="1785" width="32" height="32"><path d="M504.576 976.32v-86.016H160V116.16h688.128v388.928h86.016V116.224A86.016 86.016 0 0 0 848.128 30.208H160.032a86.048 86.048 0 0 0-86.016 86.016v774.144a86.08 86.08 0 0 0 86.016 86.016H504.64l-0.064-0.064z" fill="#333333" p-id="1786"></path><path d="M246.048 460.192h344.064v86.016H246.048v-86.016z m0-215.04h516.064v86.016H246.048V245.152z m0 430.112h172.032v86.016H246.048v-86.016z" fill="#333333" p-id="1787"></path><path d="M764.736 770.848m-231.328 0a231.328 231.328 0 1 0 462.656 0 231.328 231.328 0 1 0-462.656 0Z" fill="#D7001D" p-id="1788"></path><path d="M713.152 658.656h48.96v118.528h-48.96z" fill="#0066CC" p-id="1789"></path><path d="M713.152 761.248h132v49.408h-132z" fill="#D7001D" p-id="1790"></path><path d="M764.736 770.848m-162.464 0a162.464 162.464 0 1 0 324.928 0 162.464 162.464 0 1 0-324.928 0Z" fill="#FFFFFF" p-id="1791"></path><path d="M685.312 863.168c-3.392 0-6.784 0-10.208-3.392-6.816-6.784-10.208-16.992-3.392-23.808l44.256-57.824c6.816-6.848 16.992-10.24 23.808-3.424l30.624 20.448 64.672-91.872c6.816-6.816 16.992-10.208 23.84-3.392 6.784 6.784 10.176 17.024 3.392 23.808l-71.488 105.504c-6.784 6.784-16.992 6.784-23.776 3.36l-34.048-20.384-34.016 44.224c-3.488 3.328-6.848 6.752-13.664 6.752z" fill="#D7001D" p-id="1792"></path><path d="M680.48 854.336c-3.392 0-6.784 0-10.208-3.392-6.816-6.784-10.208-16.992-3.392-23.808l44.256-57.824c6.816-6.848 16.992-10.24 23.808-3.424l30.624 20.448 64.672-91.872c6.816-6.816 16.992-10.208 23.84-3.392 6.784 6.784 10.176 17.024 3.392 23.808l-71.488 105.504c-6.784 6.784-16.992 6.784-23.776 3.36l-34.048-20.384-34.016 44.224c-3.488 3.36-6.848 6.752-13.664 6.752z" fill="#D7001D" p-id="1793"></path><path d="M877.344 784.064c-7.616 0-15.232-7.648-19.072-15.296l-15.232-57.12-53.344 15.264c-11.392 3.808-19.04 0-22.848-11.392-3.808-11.456 3.808-22.88 15.264-22.88l72.352-19.072c11.456-3.808 19.072 3.808 22.88 15.264l19.072 72.384c3.776 11.392-3.84 19.04-15.264 22.88h-3.808z" fill="#D7001D" p-id="1794"></path><path d="M877.344 773.664c-7.616 0-15.232-7.648-19.072-15.296l-15.232-57.12-53.344 15.264c-11.392 3.808-19.04 0-22.848-11.392-3.808-11.456 3.808-22.88 15.264-22.88l72.352-19.072c11.456-3.808 19.072 3.808 22.88 15.264l19.072 72.384c3.776 11.392-3.84 19.04-15.264 22.88h-3.808z" fill="#D7001D" p-id="1795"></path></svg>
                                            热文
                                        </div>

                                    </div>
                                    <div class="layui-tab nbox-tab">
                                        <ul class="layui-tab-title">
                                            <li class="layui-this">热门</li>
                                            <li>最新</li>

                                        </ul>
                                        <div class="layui-tab-content">
                                            <div class="layui-tab-item layui-show">
                                                <ul class="hot-right-list-article">
                                                            <li>
                                                                <div class="title">
                                                                    <div class="nums">
                                                                        1
                                                                    </div>
                                                                    <h4><a href="https://www.ccxcn.com/news/company/3323.html" rel="noopener noreferrer" target="_blank" title="推荐一些国外的主色调是黄颜色网站。">推荐一些国外的主色调是黄颜色网站。<span class="hotchange" title="4805">4805.5万热度</span></a></h4>
                                                                </div>
                                                            </li>
                                                            <li>
                                                                <div class="title">
                                                                    <div class="nums">
                                                                        2
                                                                    </div>
                                                                    <h4><a href="https://www.ccxcn.com/news/company/5109.html" rel="noopener noreferrer" target="_blank" title="国内做网站比较好的公司">国内做网站比较好的公司<span class="hotchange" title="2036">2036.4万热度</span></a></h4>
                                                                </div>
                                                            </li>
                                                            <li>
                                                                <div class="title">
                                                                    <div class="nums">
                                                                        3
                                                                    </div>
                                                                    <h4><a href="https://www.ccxcn.com/news/company/5098.html" rel="noopener noreferrer" target="_blank" title="公司企业为什么需要官网?拥有官方网站的3大好处">公司企业为什么需要官网?拥有官方网站的3大好处<span class="hotchange" title="1955">1955.5万热度</span></a></h4>
                                                                </div>
                                                            </li>
                                                            <li>
                                                                <div class="title">
                                                                    <div class="nums">
                                                                        4
                                                                    </div>
                                                                    <h4><a href="https://www.ccxcn.com/news/company/3743.html" rel="noopener noreferrer" target="_blank" title="网站版权(Copyright©)应该怎么写?">网站版权(Copyright©)应该怎么写?<span class="hotchange" title="1935">1935.3万热度</span></a></h4>
                                                                </div>
                                                            </li>
                                                            <li>
                                                                <div class="title">
                                                                    <div class="nums">
                                                                        5
                                                                    </div>
                                                                    <h4><a href="https://www.ccxcn.com/wzba/4012.html" rel="noopener noreferrer" target="_blank" title="2019年阿里云ICP备案的限制说明">2019年阿里云ICP备案的限制说明<span class="hotchange" title="1660">1660.5万热度</span></a></h4>
                                                                </div>
                                                            </li>
                                                            <li>
                                                                <div class="title">
                                                                    <div class="nums">
                                                                        6
                                                                    </div>
                                                                    <h4><a href="https://www.ccxcn.com/knowledge/4773.html" rel="noopener noreferrer" target="_blank" title="EDU.CN网络域名注册方法,edu域名怎么注册?">EDU.CN网络域名注册方法,edu域名怎么注册?<span class="hotchange" title="1289">1289.8万热度</span></a></h4>
                                                                </div>
                                                            </li>
                                                            <li>
                                                                <div class="title">
                                                                    <div class="nums">
                                                                        7
                                                                    </div>
                                                                    <h4><a href="https://www.ccxcn.com/wzba/2895.html" rel="noopener noreferrer" target="_blank" title="2014年黑龙江,北京接入商ICP备案咨询电话">2014年黑龙江,北京接入商ICP备案咨询电话<span class="hotchange" title="1242">1242万热度</span></a></h4>
                                                                </div>
                                                            </li>
                                                            <li>
                                                                <div class="title">
                                                                    <div class="nums">
                                                                        8
                                                                    </div>
                                                                    <h4><a href="https://www.ccxcn.com/news/company/5184.html" rel="noopener noreferrer" target="_blank" title="餐厅网站设计,提升餐厅形象">餐厅网站设计,提升餐厅形象<span class="hotchange" title="1228">1228.2万热度</span></a></h4>
                                                                </div>
                                                            </li>
                                                            <li>
                                                                <div class="title">
                                                                    <div class="nums">
                                                                        9
                                                                    </div>
                                                                    <h4><a href="https://www.ccxcn.com/marketing/4971.html" rel="noopener noreferrer" target="_blank" title="如何使用互联网在线开展和发展业务?">如何使用互联网在线开展和发展业务?<span class="hotchange" title="1224">1224.4万热度</span></a></h4>
                                                                </div>
                                                            </li>
                                                            <li>
                                                                <div class="title">
                                                                    <div class="nums">
                                                                        10
                                                                    </div>
                                                                    <h4><a href="https://www.ccxcn.com/design/4970.html" rel="noopener noreferrer" target="_blank" title="基本WEB设计原则">基本WEB设计原则<span class="hotchange" title="1220">1220.4万热度</span></a></h4>
                                                                </div>
                                                            </li>


                                                </ul>
                                            </div>
                                            <div class="layui-tab-item">
                                                <ul class="hot-right-list-article">
                                                            <li>
                                                                <div class="title">
                                                                    <div class="nums">
                                                                        1
                                                                    </div>
                                                                    <h4><a href="https://www.ccxcn.com/news/5471.html" rel="noopener noreferrer" target="_blank" title="免费SSL证书是否会影响网站的SEO排名?">免费SSL证书是否会影响网站的SEO排名?<span class="hotchange" title="1">1.6万热度</span></a></h4>
                                                                </div>
                                                            </li>
                                                            <li>
                                                                <div class="title">
                                                                    <div class="nums">
                                                                        2
                                                                    </div>
                                                                    <h4><a href="https://www.ccxcn.com/news/5470.html" rel="noopener noreferrer" target="_blank" title="免费的ssl证书能干什么?免费SSL证书的申请流程有哪些?">免费的ssl证书能干什么?免费SSL证书的申请流程有哪些?<span class="hotchange" title="2">2万热度</span></a></h4>
                                                                </div>
                                                            </li>
                                                            <li>
                                                                <div class="title">
                                                                    <div class="nums">
                                                                        3
                                                                    </div>
                                                                    <h4><a href="https://www.ccxcn.com/news/5469.html" rel="noopener noreferrer" target="_blank" title="网站设计中有哪些免费的图形资源可以用于商业目的">网站设计中有哪些免费的图形资源可以用于商业目的<span class="hotchange" title="5">5.3万热度</span></a></h4>
                                                                </div>
                                                            </li>
                                                            <li>
                                                                <div class="title">
                                                                    <div class="nums">
                                                                        4
                                                                    </div>
                                                                    <h4><a href="https://www.ccxcn.com/news/5468.html" rel="noopener noreferrer" target="_blank" title="建网站一般需要多少钱?如何规划才能节省成本?">建网站一般需要多少钱?如何规划才能节省成本?<span class="hotchange" title="4">4.8万热度</span></a></h4>
                                                                </div>
                                                            </li>
                                                            <li>
                                                                <div class="title">
                                                                    <div class="nums">
                                                                        5
                                                                    </div>
                                                                    <h4><a href="https://www.ccxcn.com/news/5467.html" rel="noopener noreferrer" target="_blank" title="年中钜惠,模板自助建站1000元起!">年中钜惠,模板自助建站1000元起!<span class="hotchange" title="21">21.3万热度</span></a></h4>
                                                                </div>
                                                            </li>
                                                            <li>
                                                                <div class="title">
                                                                    <div class="nums">
                                                                        6
                                                                    </div>
                                                                    <h4><a href="https://www.ccxcn.com/wzba/5466.html" rel="noopener noreferrer" target="_blank" title="百度云主机备案流程">百度云主机备案流程<span class="hotchange" title="51">51.8万热度</span></a></h4>
                                                                </div>
                                                            </li>
                                                            <li>
                                                                <div class="title">
                                                                    <div class="nums">
                                                                        7
                                                                    </div>
                                                                    <h4><a href="https://www.ccxcn.com/news/5465.html" rel="noopener noreferrer" target="_blank" title="2023年全国网站公安备案手册(备案流程)">2023年全国网站公安备案手册(备案流程)<span class="hotchange" title="102">102.2万热度</span></a></h4>
                                                                </div>
                                                            </li>
                                                            <li>
                                                                <div class="title">
                                                                    <div class="nums">
                                                                        8
                                                                    </div>
                                                                    <h4><a href="https://www.ccxcn.com/news/5464.html" rel="noopener noreferrer" target="_blank" title="23年最新全国互联网安全管理服务平台 -网站备案常见问题">23年最新全国互联网安全管理服务平台 -网站备案常见问题<span class="hotchange" title="84">84.2万热度</span></a></h4>
                                                                </div>
                                                            </li>
                                                            <li>
                                                                <div class="title">
                                                                    <div class="nums">
                                                                        9
                                                                    </div>
                                                                    <h4><a href="https://www.ccxcn.com/news/5463.html" rel="noopener noreferrer" target="_blank" title="2023年最新全国互联网安全管理服务平台 -网站备案办事指南">2023年最新全国互联网安全管理服务平台 -网站备案办事指南<span class="hotchange" title="156">156.4万热度</span></a></h4>
                                                                </div>
                                                            </li>
                                                            <li>
                                                                <div class="title">
                                                                    <div class="nums">
                                                                        10
                                                                    </div>
                                                                    <h4><a href="https://www.ccxcn.com/news/5462.html" rel="noopener noreferrer" target="_blank" title="如何建设网站:网站建设的5个精选方案">如何建设网站:网站建设的5个精选方案<span class="hotchange" title="147">147.9万热度</span></a></h4>
                                                                </div>
                                                            </li>


                                                </ul>
                                            </div>

                                        </div>
                                    </div>
                                </div>

                                <div class="nbox">
                                    <div class="th1">
                                        <div class="tit">


                                            <svg t="1584341114171" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="1785" width="32" height="32"><path d="M504.576 976.32v-86.016H160V116.16h688.128v388.928h86.016V116.224A86.016 86.016 0 0 0 848.128 30.208H160.032a86.048 86.048 0 0 0-86.016 86.016v774.144a86.08 86.08 0 0 0 86.016 86.016H504.64l-0.064-0.064z" fill="#333333" p-id="1786"></path><path d="M246.048 460.192h344.064v86.016H246.048v-86.016z m0-215.04h516.064v86.016H246.048V245.152z m0 430.112h172.032v86.016H246.048v-86.016z" fill="#333333" p-id="1787"></path><path d="M764.736 770.848m-231.328 0a231.328 231.328 0 1 0 462.656 0 231.328 231.328 0 1 0-462.656 0Z" fill="#D7001D" p-id="1788"></path><path d="M713.152 658.656h48.96v118.528h-48.96z" fill="#0066CC" p-id="1789"></path><path d="M713.152 761.248h132v49.408h-132z" fill="#D7001D" p-id="1790"></path><path d="M764.736 770.848m-162.464 0a162.464 162.464 0 1 0 324.928 0 162.464 162.464 0 1 0-324.928 0Z" fill="#FFFFFF" p-id="1791"></path><path d="M685.312 863.168c-3.392 0-6.784 0-10.208-3.392-6.816-6.784-10.208-16.992-3.392-23.808l44.256-57.824c6.816-6.848 16.992-10.24 23.808-3.424l30.624 20.448 64.672-91.872c6.816-6.816 16.992-10.208 23.84-3.392 6.784 6.784 10.176 17.024 3.392 23.808l-71.488 105.504c-6.784 6.784-16.992 6.784-23.776 3.36l-34.048-20.384-34.016 44.224c-3.488 3.328-6.848 6.752-13.664 6.752z" fill="#D7001D" p-id="1792"></path><path d="M680.48 854.336c-3.392 0-6.784 0-10.208-3.392-6.816-6.784-10.208-16.992-3.392-23.808l44.256-57.824c6.816-6.848 16.992-10.24 23.808-3.424l30.624 20.448 64.672-91.872c6.816-6.816 16.992-10.208 23.84-3.392 6.784 6.784 10.176 17.024 3.392 23.808l-71.488 105.504c-6.784 6.784-16.992 6.784-23.776 3.36l-34.048-20.384-34.016 44.224c-3.488 3.36-6.848 6.752-13.664 6.752z" fill="#D7001D" p-id="1793"></path><path d="M877.344 784.064c-7.616 0-15.232-7.648-19.072-15.296l-15.232-57.12-53.344 15.264c-11.392 3.808-19.04 0-22.848-11.392-3.808-11.456 3.808-22.88 15.264-22.88l72.352-19.072c11.456-3.808 19.072 3.808 22.88 15.264l19.072 72.384c3.776 11.392-3.84 19.04-15.264 22.88h-3.808z" fill="#D7001D" p-id="1794"></path><path d="M877.344 773.664c-7.616 0-15.232-7.648-19.072-15.296l-15.232-57.12-53.344 15.264c-11.392 3.808-19.04 0-22.848-11.392-3.808-11.456 3.808-22.88 15.264-22.88l72.352-19.072c11.456-3.808 19.072 3.808 22.88 15.264l19.072 72.384c3.776 11.392-3.84 19.04-15.264 22.88h-3.808z" fill="#D7001D" p-id="1795"></path></svg>

                                            关键词
                                        </div>
                                    </div>
                                    <div class="sc-tags">
                                                <a href="https://www.ccxcn.com/taglist?tag=网站建设公司" rel="noopener noreferrer" target="_blank">网站建设公司</a>
                                                <a href="https://www.ccxcn.com/taglist?tag=公司网页设计" rel="noopener noreferrer" target="_blank">公司网页设计</a>
                                                <a href="https://www.ccxcn.com/taglist?tag=网站布局" rel="noopener noreferrer" target="_blank">网站布局</a>
                                                <a href="https://www.ccxcn.com/taglist?tag=网页设计公司" rel="noopener noreferrer" target="_blank">网页设计公司</a>
                                                <a href="https://www.ccxcn.com/taglist?tag=企业网站建设" rel="noopener noreferrer" target="_blank">企业网站建设</a>
                                                <a href="https://www.ccxcn.com/taglist?tag=网站制作公司" rel="noopener noreferrer" target="_blank">网站制作公司</a>
                                                <a href="https://www.ccxcn.com/taglist?tag=H5开发" rel="noopener noreferrer" target="_blank">H5开发</a>
                                                <a href="https://www.ccxcn.com/taglist?tag=网站设计" rel="noopener noreferrer" target="_blank">网站设计</a>
                                                <a href="https://www.ccxcn.com/taglist?tag=网站建设" rel="noopener noreferrer" target="_blank">网站建设</a>
                                                <a href="https://www.ccxcn.com/taglist?tag=网站制作" rel="noopener noreferrer" target="_blank">网站制作</a>
                                                <a href="https://www.ccxcn.com/taglist?tag=网页开发" rel="noopener noreferrer" target="_blank">网页开发</a>
                                                <a href="https://www.ccxcn.com/taglist?tag=北京网站建设" rel="noopener noreferrer" target="_blank">北京网站建设</a>
                                                <a href="https://www.ccxcn.com/taglist?tag=网站知识" rel="noopener noreferrer" target="_blank">网站知识</a>
                                                <a href="https://www.ccxcn.com/taglist?tag=网站建设公司" rel="noopener noreferrer" target="_blank">网站建设公司</a>
                                                <a href="https://www.ccxcn.com/taglist?tag=响应式网站设计" rel="noopener noreferrer" target="_blank">响应式网站设计</a>
                                                <a href="https://www.ccxcn.com/taglist?tag=网页制作" rel="noopener noreferrer" target="_blank">网页制作</a>
                                                <a href="https://www.ccxcn.com/taglist?tag=微信二次开发" rel="noopener noreferrer" target="_blank">微信二次开发</a>
                                                <a href="https://www.ccxcn.com/taglist?tag=微信平台开发" rel="noopener noreferrer" target="_blank">微信平台开发</a>
                                                <a href="https://www.ccxcn.com/taglist?tag=网页制作" rel="noopener noreferrer" target="_blank">网页制作</a>
                                                <a href="https://www.ccxcn.com/taglist?tag=网站页面设计" rel="noopener noreferrer" target="_blank">网站页面设计</a>
                                                <a href="https://www.ccxcn.com/taglist?tag=网站设计公司" rel="noopener noreferrer" target="_blank">网站设计公司</a>
                                                <a href="https://www.ccxcn.com/taglist?tag=制作网页" rel="noopener noreferrer" target="_blank">制作网页</a>
                                                <a href="https://www.ccxcn.com/taglist?tag=网站改版" rel="noopener noreferrer" target="_blank">网站改版</a>
                                                <a href="https://www.ccxcn.com/taglist?tag=ssl" rel="noopener noreferrer" target="_blank">ssl证书(HTTPS)</a>
                                                <a href="https://www.ccxcn.com/taglist?tag=安全" rel="noopener noreferrer" target="_blank">网站安全</a>
                                                <a href="https://www.ccxcn.com/taglist?tag=企业邮箱" rel="noopener noreferrer" target="_blank">企业邮箱</a>
                                                <a href="https://www.ccxcn.com/taglist?tag=网站备案" rel="noopener noreferrer" target="_blank">网站备案</a>
                                                <a href="https://www.ccxcn.com/taglist?tag=做网站" rel="noopener noreferrer" target="_blank">做网站</a>
                                                <a href="https://www.ccxcn.com/taglist?tag=网站开发" rel="noopener noreferrer" target="_blank">网站开发</a>
                                                <a href="https://www.ccxcn.com/taglist?tag=网站策划" rel="noopener noreferrer" target="_blank">网站策划</a>
                                                <a href="https://www.ccxcn.com/taglist?tag=互联网新闻" rel="noopener noreferrer" target="_blank">互联网新闻</a>
                                                <a href="https://www.ccxcn.com/taglist?tag=建站公司" rel="noopener noreferrer" target="_blank">建站公司</a>
                                                <a href="https://www.ccxcn.com/taglist?tag=小程序开发" rel="noopener noreferrer" target="_blank">小程序开发</a>
                                                <a href="https://www.ccxcn.com/taglist?tag=H5动画开发" rel="noopener noreferrer" target="_blank">H5动画</a>
                                                <a href="https://www.ccxcn.com/taglist?tag=企业网站开发" rel="noopener noreferrer" target="_blank">企业网站开发</a>

                                    </div>

                                </div>


                                <div class="sticky-scroll" style="padding-top:15px;" data-margin-top="80">
                                    <div class="nbox">
                                        <div class="th1">
                                            <div class="tit">
                                                <svg t="1584342019620" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="21724" width="32" height="32"><path d="M504.576 976.32v-86.016H160V116.16h688.128v388.928h86.016V116.224A86.016 86.016 0 0 0 848.128 30.208H160.032a86.048 86.048 0 0 0-86.016 86.016v774.144a86.08 86.08 0 0 0 86.016 86.016H504.64l-0.064-0.064z" fill="#333333" p-id="21725"></path><path d="M246.048 460.192h344.064v86.016H246.048v-86.016z m0-215.04h516.064v86.016H246.048V245.152z m0 430.112h172.032v86.016H246.048v-86.016z" fill="#333333" p-id="21726"></path><path d="M758.624 527.616a233.344 233.344 0 1 0 0 466.72 233.344 233.344 0 0 0 0-466.72z m-129.6 363.04a129.472 129.472 0 0 1 82.08-120.384 77.184 77.184 0 0 1-30.208-61.12 77.76 77.76 0 1 1 155.584 0c0 24.896-11.968 46.848-30.176 61.12a129.504 129.504 0 0 1 82.08 120.384h-259.36z" fill="#D7001D" p-id="21727"></path></svg>
                                                客户服务
                                            </div>
                                        </div>

                                        <div class="tel">
                                            <span>咨询热线</span>
                                            <p>010-62199213</p>
                                            <span>24小时咨询热线</span>
                                            <p>139-1050-5354</p>
                                        </div>

                                    </div>

                                    <div class="nbox">
                                                <div class="right-next">
                                                    <h3>下一篇</h3>
                                                    <a href="https://www.ccxcn.com/solutions/3122.html">
                                                        <h4>
                                                            测试响应网站的测试驱动开发!
                                                        </h4>
                                                        <span class="util-time" data-time="2015/4/8 0:00:00">
                                                            2015-04-08
                                                        </span>
                                                    </a>
                                                </div>

                                    </div>
                                </div>



                            </div>






                        </div>
                    </div>
                </div>

   

    <div class="sidenavi" id="sidenavi">
        <nav class="sidenavi_main _open" id="js-sidenavi-main">
            <ul class="sidenavi_list _main">
                <li class="sidenavi_item _home">
                    <a href="https://www.ccxcn.com/website.html">网站建设</a>
                </li>
                <li class="sidenavi_item">
                    <button class="js-sidenavi-main-btn" value="sub0">案例展示</button>
                </li>
                <li class="sidenavi_item">
                    <a href="https://www.ccxcn.com/superiority">流程优势</a>

                </li>
                <li class="sidenavi_item">
                    <a href="https://www.ccxcn.com/news">新闻资讯</a>

                </li>
                <li class="sidenavi_item">
                    <button class="js-sidenavi-main-btn" value="sub2">关于我们</button>
                </li>
            </ul>
            <ul class="sidenavi_list _op">
                <li class="sidenavi_item">
                    <a class="link _box _white"
                       href="https://www.ccxcn.com/website.html">
                        网站建设<span class="link_arr"></span>
                    </a>
                </li>
                <li class="sidenavi_item">
                    <a class="link _box _white"
                       href="https://www.ccxcn.com/wangzhananlituijian.html">
                        案例展示<span class="link_arr"></span>
                    </a>
                </li>
                <li class="sidenavi_item">
                    <a class="link _box _white"
                       href="https://www.ccxcn.com/contact">
                        联系我们<span class="link_arr"></span>
                    </a>
                </li>
            </ul>
        </nav>
        <nav class="sidenavi_sub _close" id="js-sidenavi-sub">

            <div class="sidenavi_menu" data-name="sub0">
                <button class="sidenavi_prev _title js-sidenavi-prev-btn">
                    <span>案例展示</span>
                </button>
                <ul class="sidenavi_list _sub">
                    <li class="sidenavi_item">
                        <a href="https://www.ccxcn.com/wangzhananlituijian.html">
                            <span>网站设计-制作-开发<span>最新案例展示</span></span>
                        </a>
                        <ul class="sidenavi_list">
                            <li class="sidenavi_item">
                                <a href="https://www.ccxcn.com/wangzhananlituijian.html">企业官网</a>
                            </li>
                            <li class="sidenavi_item">
                                <a href="https://www.ccxcn.com/wangzhananlituijian.html">小程序 APP设计开发</a>
                            </li>
                            <li class="sidenavi_item">
                                <a href="https://www.ccxcn.com/wangzhananlituijian.html">教育行业</a>
                            </li>
                        </ul>
                    </li>
                    <li class="sidenavi_item">
                        <a href="https://www.ccxcn.com/works.html">
                            <span>
                                为不同的行业定制设计<span>按行业案例展示</span>
                            </span>
                        </a>
                        <ul class="sidenavi_list">
                            <li class="sidenavi_item">
                                <a href="https://www.ccxcn.com/works.html">外贸行业网站</a>
                            </li>
                            <li class="sidenavi_item">
                                <a href="https://www.ccxcn.com/works.html">能源环保</a>
                            </li>
                            <li class="sidenavi_item">
                                <a href="https://www.ccxcn.com/works.html">医疗行业网站</a>
                            </li>
                        </ul>
                    </li>


                </ul>
                <button class="sidenavi_prev _back js-sidenavi-prev-btn">
                    <span>返回菜单</span>
                </button>
            </div>
            <div class="sidenavi_menu" data-name="sub2">
                <button class="sidenavi_prev _title js-sidenavi-prev-btn">
                    <span>关于我们</span>
                </button>
                <ul class="sidenavi_list _sub">
                    <li class="sidenavi_item">
                        <a href="https://www.ccxcn.com/about">
                            公司简介
                        </a>
                        
                    </li>
                    <li class="sidenavi_item">
                        <a href="https://www.ccxcn.com/contact/pay">
                           付款方式
                        </a>
                        
                    </li>


                </ul>
                <button class="sidenavi_prev _back js-sidenavi-prev-btn">
                    <span>返回菜单</span>
                </button>
            </div>

            

        </nav>
    </div>
    <!--footer-->
    <div class="box-main box-footer">
        <div class="container">
            <div class="box-title">
                <div class="t1"><p>信任我们是合作的前提!</p></div>
                <div class="t2"><p>您需要我们为您提供网站建设一站式服务吗?</p></div>
                <div class="pp">
                    <p>
                        请留下您的建站需求及联系方式,我们将在24小时内与您取得联系。<br />
                        或致电:<small>010-62199213 13910505354  </small>
                    </p>
                </div>
            </div>



            <div class="form layui-form">

                <button class="layui-btn layui-btn-primary" id="zixun2" lay-tips="点击按钮留下您的建站需求及联系方式,我们联系您" lay-verType="tips">提交您的需求</button>

                
            </div>

        </div>
    </div>

    <div class="box-main box-sitemap">
        <div class="container">
            <div class="footnav">
                <div class="row">
                    <div class="col-xs-12 col-sm-4 col-lg-2">
                        <div class="item">
                            <strong class="foot2h1"><a href="https://www.ccxcn.com/about">关于传诚信</a></strong>
                            <ul class="foot2ul">
                                <li><a href="https://www.ccxcn.com/about">公司简介</a></li>
                                <li><a href="https://www.ccxcn.com/contact/jobs">招聘信息</a></li>
                                <li><a href="https://www.ccxcn.com/contact">联系我们</a></li>
                                <li><a href="https://www.ccxcn.com/wzjs/price1.html">建站价格参考</a></li>
                                <li><a href="https://www.ccxcn.com/contact">在线需求提交</a></li>
                                <li><a href="https://www.ccxcn.com/superiority">建站流程及优势</a></li>
                            </ul>
                        </div>
                    </div>
                    <div class="col-xs-12 col-sm-4 col-lg-2">
                        <div class="item">
                            <strong class="foot2h1"><a href="https://www.ccxcn.com/website.html">网站建设</a></strong>
                            <ul class="foot2ul">
                                <li><a href="https://www.ccxcn.com/wzjs/page4.html">品牌营销网站建设</a></li>
                                <li><a href="https://www.ccxcn.com/wzjs/page2.html">集团公司网站建设</a></li>
                                <li><a href="https://www.ccxcn.com/wzjs/page1.html">房地产网站建设</a></li>
                                <li><a href="https://www.ccxcn.com/wzjs/page3.html">学校教育网站建设</a></li>
                                <li><a href="https://www.ccxcn.com/wzjs/page9.html">外贸企业网站建设</a></li>
                                <li><a href="https://www.ccxcn.com/wzjs/page8.html">上市公司网站建设</a></li>
                                <li><a href="https://www.ccxcn.com/wzjs/page5.html">企业官网建设</a></li>
                                <li><a href="https://www.ccxcn.com/mobile">手机网站建设</a></li>
                                <li><a href="https://www.ccxcn.com/mbjz">模板快速建站</a></li>
                                <li><a href="https://www.ccxcn.com/station-group">集团企业网站群建设</a></li>
                                <li><a href="https://www.ccxcn.com/wzjs/page6.html">H5响应式网站建设</a></li>


                            </ul>
                        </div>
                    </div>
                    <div class="col-xs-12 col-sm-4 col-lg-2">
                        <div class="item">
                            <strong class="foot2h1"><a href="https://www.ccxcn.com/services">网络一站式服务</a></strong>
                            <ul class="foot2ul">
                                <li><a href="https://www.ccxcn.com/domain">域名注册</a></li>
                                <li><a href="https://www.ccxcn.com/ssl">SSL证书</a></li>
                                <li><a href="https://www.ccxcn.com/maintain">网站托管维护</a></li>
                                <li><a href="https://www.ccxcn.com/host">云虚拟主机</a></li>
                                <li><a href="https://www.ccxcn.com/marketing">网站改版</a></li>
                                <li><a href="https://www.ccxcn.com/email ">企业邮箱</a></li>
                                <li><a href="https://jz.ccxcn.com/pc/">免备案模板建站</a></li>
                                <li><a href="https://www.ccxcn.com/servicer">IDC服务器</a></li>
                                <li><a href="https://www.ccxcn.com/vr">VR全景拍摄</a></li>
                                <li><a href="https://www.ccxcn.com/website/ipv6.cshtml">IPV6改造升级</a></li>

                            </ul>
                        </div>
                    </div>
                    <div class="col-xs-12 col-sm-4 col-lg-2">
                        <div class="item">
                            <strong class="foot2h1"><a href="https://www.ccxcn.com/wangzhananlituijian.html">网站案例</a></strong>
                            <ul class="foot2ul">
                                <li><a href="https://www.ccxcn.com/wangzhananlituijian.html">推荐网站案例</a></li>
                                <li><a href="https://www.ccxcn.com/works.html">行业分类案例</a></li>
                                <li><a href="https://www.ccxcn.com/works/cls34.html">建站规划参考</a></li>
                                <li><a href="//www.ccxcn.com/kz" target="_blank">国外网站参考</a></li>


                            </ul>
                        </div>
                    </div>
                    <div class="col-xs-12 col-sm-4 col-lg-2">
                        <div class="item">
                            <strong class="foot2h1"><a href="https://www.ccxcn.com/news"> 新闻/分享</a></strong>
                            <ul class="foot2ul">
                                <li><a href="//www.ccxcn.com/industry">观点与公告</a></li>
                                <li><a href="//www.ccxcn.com/marketing">网站营销</a></li>
                                <li><a href="//www.ccxcn.com/knowledge">建站知识</a></li>
                                <li><a href="//www.ccxcn.com/wzzz">网站制作</a></li>
                                <li><a href="//www.ccxcn.com/solutions">策划方案</a></li>
                                <li><a href="//www.ccxcn.com/design">设计干货</a></li>
                                <li><a href="//www.ccxcn.com/wzba">icp备案</a></li>
                                <li><a href="https://jz.ccxcn.com/after/">模板建站知识</a></li>
                                <li><a href="/taglist?tag=常见问题">常见问题</a></li>
                            </ul>
                        </div>
                    </div>
                    <div class="col-xs-12 col-sm-4 col-lg-2">
                        <div class="item">
                            <strong class="foot2h1"><a href="https://www.ccxcn.com/contact">H5移动端解决方案</a></strong>
                            <ul class="foot2ul">
                                <li><a href="https://www.ccxcn.com/mobile">手机移动网站定制</a></li>
                                <li><a href="https://www.ccxcn.com/mobile/xiaochengxu">小程序定制开发</a></li>
                                <li><a href="https://www.ccxcn.com/mobile/weixin">微信公众号开发</a></li>
                                <li><a href="https://www.ccxcn.com/mobile">微网站制作开发</a></li>
                                <li><a href="https://www.ccxcn.com/website.html/">CSS3前端开发</a></li>
                                <li><a href="https://www.ccxcn.com/mobile/H5">H5推广/专题页设计</a></li>
                                <li><a href="https://jz.ccxcn.com/mobile/">自适应手机模板建站</a></li>

                            </ul>
                        </div>
                    </div>
                </div>
                <ul>
                </ul>
            </div>
        </div>

    </div>



    <div class="box-footer-logo">
        <div class="container">
            <div class="logo-txt">
                <h2>建立于2004年的网站建设公司</h2>
                <p>
                    传诚信是北京众多高端网站建设公司之一,近20年专注于高品质网站建设,网站设计,网站制作,H5小程序微信开发等企业建站相关业务,并为用户提供一站式解决方案,如域名注册,企业邮箱等服务,帮助企业更容易简单的获取用户流量,实现企业利润最大化!
                </p>
            </div>

            <div class="wx">
                <ul>
                    <li><img src="/Content/2020/index/images/wx.jpg" alt="传诚信微信公众号" /><p>微信公众号</p></li>
                    <li><img src="/Content/2020/index/images/wb.jpg" alt="传诚信新浪企业微博" /><p>新浪微博</p></li>
                </ul>
            </div>

        </div>
    </div>

    <div class="box-footer-copy">
        <div class="container">
            <p>版权所有<span style="color: rgb(51, 51, 51); font-family: "Microsoft YaHei", SimHei, SimSun, Arial, sans-serif; background-color: rgb(255, 255, 255);">©</span>2024 北京传诚信广告有限公司 设计开发部:北京市顺义旭辉空港A座315  市区ICP备案: 北京市朝阳望京鹏景阁大厦16层  电话:010-62199213 13910505354 <a href="https://www.ccxcn.com/sitemap.cshtml" target="_blank" title="网站地图">网站地图</a></p><p>传诚信网站建设公司专业提供:<a href="https://www.ccxcn.com/website.html" target="_blank" title="网站建设">网站建设</a>,<a href="https://www.ccxcn.com/wzjs/page6.html" target="_blank" title="网站设计">北京网站设计</a>,北京VUE网站制作、<a href="https://www.ccxcn.com/mobile/xiaochengxu" target="_blank" title="小程序开发">微信H5小程序开发</a>等建站服务。<a href="/gszz/gszz/zz.html" rel="nofollow" target="_blank"><img src="https://www.ccxcn.com/attached/image/20170509/6362994812550287507409438.png" alt="网站经营企业工商执照"/></a><img src="https://www.ccxcn.com/attached/image/20161109/6361429478477977163735698.png"/><a href="http://www.beian.gov.cn/portal/registerSystemInfo?recordcode=11010502031690" rel="nofollow" target="_self" title="京公网安备 11010502031690号">京公网安备 11010502031690号</a>  <span style="font-family: "Microsoft YaHei"; font-size: 14px; background-color: rgb(255, 255, 255);"><a href="http://beian.miit.gov.cn" rel="nofollow" target="_blank" title="京ICP备05039697号" textvalue="京ICP备05039697号">京ICP备05019839号-</a>3</span></p><script>
var _hmt = _hmt || [];
(function() {
  var hm = document.createElement("script");
  hm.src = "https://hm.baidu.com/hm.js?7527a7073412fc61e841dd4a65f6ff9e";
  var s = document.getElementsByTagName("script")[0]; 
  s.parentNode.insertBefore(hm, s);
})();
</script>

<!-- Clarity tracking code for https://www.ccxcn.com --><script>    (function(c,l,a,r,i,t,y){        c[a]=c[a]||function(){(c[a].q=c[a].q||[]).push(arguments)};        t=l.createElement(r);t.async=1;t.src="https://www.clarity.ms/tag/"+i+"?ref=bwt";        y=l.getElementsByTagName(r)[0];y.parentNode.insertBefore(t,y);    })(window, document, "clarity", "script", "9jxz32rrmz");</script>
        </div>
    </div>


    

    
    
    
    <script src="https://cdn.ccxcn.com/gsap.min.js"></script>
    <script src="https://cdn.ccxcn.com/bundle-2020.min.js"></script>

    


    <div class="page-kf" style="display:none">
        <ul>
            <li class="tel">
                <a href="tel:010-62199213"><i class="iconfont icon-zuoji"></i></a>
                <div class="tel-info">
                    <ul>
                        <li>
                            <span>建站咨询电话</span>
                            010-62199213 
                        </li>
                        <li>
                            <span>24小时业务经理</span>
                            13260067129(刘先生) / 13910505354(贾先生)
                        </li>
                    </ul>
                </div>
            </li>
            <li class="qq">
                <a rel="nofollow" href="http://wpa.qq.com/msgrd?v=3&uin=1195416428&site=qq&menu=yes" target="_blank"><i class="iconfont icon-QQ"></i></a>
                <div class="qq-info">
                    <h2>24小时QQ在线</h2>
                    <ul>
                        <li>
                            <span>刘先生</span>
                            <a rel="nofollow" href="http://wpa.qq.com/msgrd?v=3&uin=28689470&site=qq&menu=yes" target="_blank"><i class="iconfont icon-QQ"></i>在线QQ</a>
                        </li>
                        <li>
                            <span>贾先生</span>
                            <a rel="nofollow" href="http://wpa.qq.com/msgrd?v=3&uin=28689470&site=qq&menu=yes" target="_blank"><i class="iconfont icon-QQ"></i>在线QQ</a>
                        </li>
                        <li>
                            <span>徐女士</span>
                            <a rel="nofollow" href="http://wpa.qq.com/msgrd?v=3&uin=303426865&site=qq&menu=yes" target="_blank"><i class="iconfont icon-QQ"></i>在线QQ</a>
                        </li>
                    </ul>
                </div>
            </li>
            <li class="wx">
                <a rel="nofollow" href="/Content/2020/index/images/1.jpg" data-fancybox="images"><i class="iconfont icon-wx"></i></a>
                <div class="wx-info">
                    <h2>通过微信咨询建站</h2>
                    <ul>
                        <li>
                            <span>刘先生</span>
                            <a href="/Content/2020/index/images/1.jpg" data-fancybox="images"><img src="/Content/2020/index/images/xiaobo.gif" alt="微信建站咨询" /></a>
                        </li>
                        <li>
                            <span>徐姐</span>
                            <a href="/Content/2020/index/images/1.jpg" data-fancybox="images"><img src="/Content/2020/index/images/xujie.gif" alt="网站客服徐姐微信" /></a>
                        </li>
                        <li>
                            <span>贾先生</span>
                            <a href="/Content/2020/index/images/1.jpg" data-fancybox="images"><img src="/Content/2020/index/images/jiage.gif" alt="贾东微信" /></a>
                        </li>
                    </ul>
                </div>
            </li>
            <li class="liuyan">
                <a href="javascript:;" id="zixun" title="在线提交建站需求">
                    <i class="iconfont icon-Message-Smile"></i>
                </a>

            </li>
        </ul>
    </div>

    <div class="page-xixun-win" style="display:none;">
        <div class="tit">
            感谢您的信任,请留言!
        </div>
        <div class="layui-form">
            <input id="nsTypes" name="nsTypes" value="咨询" type="hidden" />
            <div class="input"><input type="text" value="" lay-verType="tips" lay-verify="required" required class="layui-input" placeholder="*您的姓名" name="Name" /></div>
            <div class="input"><input type="text" value="" lay-verType="tips" lay-verify="required" required class="layui-input" placeholder="*您是公司/个人" name="Company" /></div>
            <div class="input"><input type="text" value="" lay-verType="tips" lay-verify="required|phone" required class="layui-input" placeholder="*电话(建议手机号)" name="Phone" /></div>


            <div class="textarea">
                <input lay-verType="tips" lay-verify="required" required class="layui-textarea" placeholder="*内容(建议简单描述您的建站需求)" name="message" />
            </div>
            <div class="button">
                <button class="layui-btn" lay-submit lay-filter="formLy">请提交</button>
            </div>
        </div>
    </div>



    
    <script type="text/javascript">
        AOS.init({
            easing: 'ease-out-back',
            duration: 1000
        });
    </script>
</body>
</html>