首页 > 知识•资讯 > 利用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/5485.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/31.html">北京网站建设</a> <a href="https://www.ccxcn.com/taglist?tag=网站的公司">网站的公司</a>                                                                            
                                                                        </div>
                                                                        <div class="time util-time" title="2025/2/13 14:02:56" data-time="2025/2/13 14:02:56">2025/2/13 14:02:56</div>
                                                                    </div>
                                                                </div>
                                                            </li>
                                                            <li class="single-mode">
                                                                <div class="info">
                                                                    <div class="info-limit">
                                                                        <h3><a href="https://www.ccxcn.com/knowledge/5482.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=ssl证书">ssl证书</a>                                                                            
                                                                        </div>
                                                                        <div class="time util-time" title="2024/10/11 0:03:43" data-time="2024/10/11 0:03:43">2024/10/11 0:03:43</div>
                                                                    </div>
                                                                </div>
                                                            </li>
                                                            <li class="single-mode">
                                                                <div class="info">
                                                                    <div class="info-limit">
                                                                        <h3><a href="https://www.ccxcn.com/knowledge/5481.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>                                                                            
                                                                        </div>
                                                                        <div class="time util-time" title="2024/10/10 0:03:45" data-time="2024/10/10 0:03:45">2024/10/10 0:03:45</div>
                                                                    </div>
                                                                </div>
                                                            </li>
                                                            <li class="single-mode">
                                                                <div class="info">
                                                                    <div class="info-limit">
                                                                        <h3><a href="https://www.ccxcn.com/solutions/5480.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/53.html">企业网站建设</a>                                                                            
                                                                        </div>
                                                                        <div class="time util-time" title="2024/10/10 0:03:45" data-time="2024/10/10 0:03:45">2024/10/10 0:03:45</div>
                                                                    </div>
                                                                </div>
                                                            </li>
                                                            <li class="single-mode">
                                                                <div class="info">
                                                                    <div class="info-limit">
                                                                        <h3><a href="https://www.ccxcn.com/knowledge/5479.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/31.html">北京网站建设</a> <a href="https://www.ccxcn.com/taglist?tag=企业建站">企业建站</a>                                                                            
                                                                        </div>
                                                                        <div class="time util-time" title="2024/10/9 18:21:10" data-time="2024/10/9 18:21:10">2024/10/9 18:21:10</div>
                                                                    </div>
                                                                </div>
                                                            </li>
                                                            <li class="single-mode">
                                                                <div class="info">
                                                                    <div class="info-limit">
                                                                        <h3><a href="https://www.ccxcn.com/news/company/5478.html" target="_blank">2024年建网站一般需要多少钱?</a></h3>
                                                                        <p class="desc">建网站的费用因多种因素而异,传诚信拥有 20 年高品质网站建设经验,是成熟可靠的网络品牌建设合作伙伴。在长期的发展过程中,积累了丰富的专业知......</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>                                                                            
                                                                        </div>
                                                                        <div class="time util-time" title="2024/10/9 18:15:06" data-time="2024/10/9 18:15:06">2024/10/9 18:15:06</div>
                                                                    </div>
                                                                </div>
                                                            </li>
                                                            <li class="single-mode">
                                                                <div class="info">
                                                                    <div class="info-limit">
                                                                        <h3><a href="https://www.ccxcn.com/news/5477.html" target="_blank">网站建设公司之间的价格差异为什么区别大</a></h3>
                                                                        <p class="desc">网站建设可以分为模板式和定制式。模板式网站使用现成的模板进行搭建,成本较低,适合小型企业或个体户。而定制式网站则需要根据客户的具体需求进行开......</p>
                                                                    </div>
                                                                    <div class="meta">
                                                                        <div class="tags">
                                                                       
                                                                           
                                                                        </div>
                                                                        <div class="time util-time" title="2024/5/31 14:39:46" data-time="2024/5/31 14:39:46">2024/5/31 14:39:46</div>
                                                                    </div>
                                                                </div>
                                                            </li>
                                                            <li class="single-mode">
                                                                <div class="info">
                                                                    <div class="info-limit">
                                                                        <h3><a href="https://www.ccxcn.com/news/5476.html" target="_blank">如何评估一家北京网站建设公司的可靠性和安全性</a></h3>
                                                                        <p class="desc">评估北京网站建设公司的可靠性评估北京网站建设公司的可靠性时,您可以从以下几个方面进行考察:项目经验:查看公司的官方网站或参考案例,了解它们过......</p>
                                                                    </div>
                                                                    <div class="meta">
                                                                        <div class="tags">
                                                                       
                                                                           
                                                                        </div>
                                                                        <div class="time util-time" title="2024/5/31 14:34:52" data-time="2024/5/31 14:34:52">2024/5/31 14:34:52</div>
                                                                    </div>
                                                                </div>
                                                            </li>
                                                            <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>



                                                </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/knowledge/4288.html" target="_blank">如何优化一个页面的网站</a></h3>
                                                                        <p class="desc">如何优化一个页面的网站单页网站,又名单页网站是每个SEO的噩梦。当然,它们很漂亮并且提供客户所需的一切,但是很难优化,因为您需要在资源稀缺的......</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/5/22 0:00:00" data-time="2019/5/22 0:00:00">2019/5/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/design/3394.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="2016/7/13 0:00:00" data-time="2016/7/13 0:00:00">2016/7/13 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/company/205.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> 
                                                                        </div>
                                                                        <div class="time util-time" title="2010/3/25 0:00:00" data-time="2010/3/25 0:00:00">2010/3/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/knowledge/1265.html" target="_blank">网站建设表现验收标准!</a></h3>
                                                                        <p class="desc">1.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="2011/7/31 0:00:00" data-time="2011/7/31 0:00:00">2011/7/31 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/993.html" target="_blank">网站建设之网站规划几个要点!</a></h3>
                                                                        <p class="desc">1.网站导航要清楚、简捷,回主页的标识要易找;    2.页面标题、营销主题要清晰易辨;    3.主页要明确报出自己姓名、机构(商号)、或......</p>
                                                                    </div>
                                                                    <div class="meta">
                                                                        <div class="tags">
                                                                            <a href="https://www.ccxcn.com/taglist/3.html">网站设计</a> 
                                                                        </div>
                                                                        <div class="time util-time" title="2010/10/5 0:00:00" data-time="2010/10/5 0:00:00">2010/10/5 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/company/3897.html" target="_blank">要注意网站设计的细节。</a></h3>
                                                                        <p class="desc">目前在WWW上网页设计数据传输平均以每秒1.5M的速度到达客户端。假设某个网页设计为了丰富其艺术性而追赶时髦地 大量使用图像或其它多媒体元素......</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="2018/7/30 0:00:00" data-time="2018/7/30 0:00:00">2018/7/30 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/company/228.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> 
                                                                        </div>
                                                                        <div class="time util-time" title="2010/3/25 0:00:00" data-time="2010/3/25 0:00:00">2010/3/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/solutions/3373.html" target="_blank">公司建设网站招标文件(参考)</a></h3>
                                                                        <p class="desc">北京网站建设设计师联盟中部有限公司(参考)招标文件项目名称:2016项目招标书北京网站建设设计师联盟中部有限公司2016年5月25日 招标书......</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> 
                                                                        </div>
                                                                        <div class="time util-time" title="2016/6/1 0:00:00" data-time="2016/6/1 0:00:00">2016/6/1 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/1144.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> 
                                                                        </div>
                                                                        <div class="time util-time" title="2010/12/27 0:00:00" data-time="2010/12/27 0:00:00">2010/12/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/knowledge/798.html" target="_blank">什么是PHP?</a></h3>
                                                                        <p class="desc">什么是PHP?		PHP是一种服务器端HTML嵌入式脚本描述语言。 其最强大和最重要的特征是其数据库集成层,使用它完成一个含有数据库功能的网......</p>
                                                                    </div>
                                                                    <div class="meta">
                                                                        <div class="tags">
                                                                            <a href="https://www.ccxcn.com/taglist?tag=什么是PHP?">什么是PHP?</a> 
                                                                        </div>
                                                                        <div class="time util-time" title="2010/7/18 0:00:00" data-time="2010/7/18 0:00:00">2010/7/18 0:00:00</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="13564">13564.2万热度</span></a></h4>
                                                                </div>
                                                            </li>
                                                            <li>
                                                                <div class="title">
                                                                    <div class="nums">
                                                                        2
                                                                    </div>
                                                                    <h4><a href="https://www.ccxcn.com/news/company/3743.html" rel="noopener noreferrer" target="_blank" title="网站版权(Copyright©)应该怎么写?">网站版权(Copyright©)应该怎么写?<span class="hotchange" title="2623">2623.1万热度</span></a></h4>
                                                                </div>
                                                            </li>
                                                            <li>
                                                                <div class="title">
                                                                    <div class="nums">
                                                                        3
                                                                    </div>
                                                                    <h4><a href="https://www.ccxcn.com/news/company/5109.html" rel="noopener noreferrer" target="_blank" title="国内做网站比较好的公司">国内做网站比较好的公司<span class="hotchange" title="2330">2330.2万热度</span></a></h4>
                                                                </div>
                                                            </li>
                                                            <li>
                                                                <div class="title">
                                                                    <div class="nums">
                                                                        4
                                                                    </div>
                                                                    <h4><a href="https://www.ccxcn.com/news/company/5098.html" rel="noopener noreferrer" target="_blank" title="公司企业为什么需要官网?拥有官方网站的3大好处">公司企业为什么需要官网?拥有官方网站的3大好处<span class="hotchange" title="2300">2300.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="1794">1794.1万热度</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="1650">1650.5万热度</span></a></h4>
                                                                </div>
                                                            </li>
                                                            <li>
                                                                <div class="title">
                                                                    <div class="nums">
                                                                        7
                                                                    </div>
                                                                    <h4><a href="https://www.ccxcn.com/news/5455.html" rel="noopener noreferrer" target="_blank" title="真正永久免费的建站系统有哪些?我来告诉你">真正永久免费的建站系统有哪些?我来告诉你<span class="hotchange" title="1649">1649.2万热度</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="1478">1478.9万热度</span></a></h4>
                                                                </div>
                                                            </li>
                                                            <li>
                                                                <div class="title">
                                                                    <div class="nums">
                                                                        9
                                                                    </div>
                                                                    <h4><a href="https://www.ccxcn.com/design/4970.html" rel="noopener noreferrer" target="_blank" title="基本WEB设计原则">基本WEB设计原则<span class="hotchange" title="1403">1403.4万热度</span></a></h4>
                                                                </div>
                                                            </li>
                                                            <li>
                                                                <div class="title">
                                                                    <div class="nums">
                                                                        10
                                                                    </div>
                                                                    <h4><a href="https://www.ccxcn.com/marketing/5215.html" rel="noopener noreferrer" target="_blank" title="什么是短信营销?使用短信营销的优缺点">什么是短信营销?使用短信营销的优缺点<span class="hotchange" title="1386">1386.8万热度</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/5486.html" rel="noopener noreferrer" target="_blank" title="如何通过TopSSL在线申请Let's Encrypt的免费SSL证书?">如何通过TopSSL在线申请Let's Encrypt的免费SSL证书?<span class="hotchange" title="66">66万热度</span></a></h4>
                                                                </div>
                                                            </li>
                                                            <li>
                                                                <div class="title">
                                                                    <div class="nums">
                                                                        2
                                                                    </div>
                                                                    <h4><a href="https://www.ccxcn.com/news/5485.html" rel="noopener noreferrer" target="_blank" title="做网站的公司。">做网站的公司。<span class="hotchange" title="92">92.3万热度</span></a></h4>
                                                                </div>
                                                            </li>
                                                            <li>
                                                                <div class="title">
                                                                    <div class="nums">
                                                                        3
                                                                    </div>
                                                                    <h4><a href="https://www.ccxcn.com/news/5484.html" rel="noopener noreferrer" target="_blank" title="哪里申请微信小程序ssl证书?为什么需要申请?">哪里申请微信小程序ssl证书?为什么需要申请?<span class="hotchange" title="96">96.3万热度</span></a></h4>
                                                                </div>
                                                            </li>
                                                            <li>
                                                                <div class="title">
                                                                    <div class="nums">
                                                                        4
                                                                    </div>
                                                                    <h4><a href="https://www.ccxcn.com/news/5483.html" rel="noopener noreferrer" target="_blank" title="如何申请DV SSL证书?DV SSL证书推荐">如何申请DV SSL证书?DV SSL证书推荐<span class="hotchange" title="79">79.9万热度</span></a></h4>
                                                                </div>
                                                            </li>
                                                            <li>
                                                                <div class="title">
                                                                    <div class="nums">
                                                                        5
                                                                    </div>
                                                                    <h4><a href="https://www.ccxcn.com/knowledge/5482.html" rel="noopener noreferrer" target="_blank" title="公司集团企业网站建设需要注意哪些细节?">公司集团企业网站建设需要注意哪些细节?<span class="hotchange" title="107">107.3万热度</span></a></h4>
                                                                </div>
                                                            </li>
                                                            <li>
                                                                <div class="title">
                                                                    <div class="nums">
                                                                        6
                                                                    </div>
                                                                    <h4><a href="https://www.ccxcn.com/knowledge/5481.html" rel="noopener noreferrer" target="_blank" title="公司集团企业建设网站的预算大概是多少?">公司集团企业建设网站的预算大概是多少?<span class="hotchange" title="121">121.2万热度</span></a></h4>
                                                                </div>
                                                            </li>
                                                            <li>
                                                                <div class="title">
                                                                    <div class="nums">
                                                                        7
                                                                    </div>
                                                                    <h4><a href="https://www.ccxcn.com/solutions/5480.html" rel="noopener noreferrer" target="_blank" title="公司集团企业为什么要建设网站?建设网站的流程是怎样的?">公司集团企业为什么要建设网站?建设网站的流程是怎样的?<span class="hotchange" title="118">118.9万热度</span></a></h4>
                                                                </div>
                                                            </li>
                                                            <li>
                                                                <div class="title">
                                                                    <div class="nums">
                                                                        8
                                                                    </div>
                                                                    <h4><a href="https://www.ccxcn.com/knowledge/5479.html" rel="noopener noreferrer" target="_blank" title="建网站需要考虑哪些因素?">建网站需要考虑哪些因素?<span class="hotchange" title="115">115.7万热度</span></a></h4>
                                                                </div>
                                                            </li>
                                                            <li>
                                                                <div class="title">
                                                                    <div class="nums">
                                                                        9
                                                                    </div>
                                                                    <h4><a href="https://www.ccxcn.com/news/company/5478.html" rel="noopener noreferrer" target="_blank" title="2024年建网站一般需要多少钱?">2024年建网站一般需要多少钱?<span class="hotchange" title="126">126.3万热度</span></a></h4>
                                                                </div>
                                                            </li>
                                                            <li>
                                                                <div class="title">
                                                                    <div class="nums">
                                                                        10
                                                                    </div>
                                                                    <h4><a href="https://www.ccxcn.com/news/5477.html" rel="noopener noreferrer" target="_blank" title="网站建设公司之间的价格差异为什么区别大">网站建设公司之间的价格差异为什么区别大<span class="hotchange" title="239">239.3万热度</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 style="text-wrap-mode: wrap; text-align: center;"><span style="font-size: 12px;">版权所有©2025 北京传诚信广告有限公司 设计开发:北京市顺义旭辉空港A座315  市区ICP备案: 北京市朝阳望京鹏景阁大厦16层  电话:010-62199213 13910505354 <a href="https://www.ccxcn.com/sitemap" target="_blank">网站地图</a></span></p><p style="text-wrap-mode: wrap; text-align: center;"><span style="font-size: 12px;">北京传诚信提供网站建设、网站设计、VUE网站制作、微信H5小程序开发等服务。 </span><img src="https://www.ccxcn.com/attached/image/20250220/6387565329724805269267115.png" title="7.png" alt="7.png" style="font-size: 12px;"/> <a href="http://www.beian.gov.cn/portal/registerSystemInfo?recordcode=11010502031690" target="_blank" style="font-size: 12px;">京公网安备11010502031690号</a><span style="font-size: 12px;"> | </span><a href="http://beian.miit.gov.cn/" target="_blank" style="font-size: 12px;">京ICP备05019839号-3</a> <img src="https://www.ccxcn.com/attached/image/20250220/6387565332813136052430541.png" title="8.png" alt="8.png" style="font-size: 12px;"/> <a href="https://www.ccxcn.com/gszz/gszz/zz.html" target="_blank" style="font-size: 12px;">网站经营企业工商营业执照</a></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>
                            13466711411(徐女士) / 13910505354(贾先生)
                        </li>
                    </ul>
                </div>
            </li>
            <li class="qq">
                <a rel="nofollow" href="http://wpa.qq.com/msgrd?v=3&uin=294286834&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>