Browse Source

归档,标签等列表页

huwhois 4 years ago
parent
commit
2a196ad146

+ 44 - 5
application/index/controller/Article.php

@ -5,6 +5,7 @@ use think\Db;
5 5
use think\Request;
6 6
use app\admin\model\Category as CategoryModel;
7 7
use app\admin\model\Article as ArticleModel;
8
use app\index\model\Tags as TagsModel;
8 9
9 10
/**
10 11
 * 文章管理  
@ -22,6 +23,7 @@ class Article extends Base
22 23
23 24
        $this->model = new ArticleModel();
24 25
        $this->category_model = new CategoryModel();
26
        $this->assign('timeList', $this->model->createTimeArchive());
25 27
    }
26 28
27 29
    public function index($cid = 0)
@ -32,13 +34,12 @@ class Article extends Base
32 34
        
33 35
        $category_info = $this->category_model->field('id, pid, name, url, template')->find($cid);
34 36
35
        $data = $this->model->where(['is_del'=>0, 'cid'=>$cid])->field('id, cid, title, writer, title_pic, summary, clicks, create_time')->order('id', 'desc')->paginate();
37
        $data = $this->model->where(['is_del'=>0, 'cid'=>$cid])->field('id, cid, title, username, title_pic, summary, clicks, create_time')->order('id', 'desc')->paginate();
36 38
37 39
        $this->assign('category_info', $category_info);
38 40
        
39 41
        $this->assign('data', $data);
40 42
        $this->assign('cid', $cid);
41
        $this->assign('timeList', $this->model->createTimeArchive());
42 43
        return $this->fetch($category_info->template);
43 44
    }
44 45
@ -117,7 +118,7 @@ class Article extends Base
117 118
    }
118 119
119 120
    /**
120
     * 归档页面
121
     * 归档页面(时间)
121 122
     */
122 123
    public function archive($year=0,$month=0)
123 124
    {
@ -126,12 +127,50 @@ class Article extends Base
126 127
        $data = Db::table('sur_article')->alias('a')->join('sur_category c','a.cid=c.id')
127 128
            ->where('a.create_time','>',$time['firstday'])
128 129
            ->where('a.create_time','<',$time['lastday'])
129
            ->field('a.id,a.cid,a.title,a.writer,a.title_pic,a.summary,a.clicks,a.create_time,c.url,c.name as cname')
130
            ->field('a.id,a.cid,a.title,a.username,a.title_pic,a.summary,a.clicks,a.create_time,c.url,c.name as cname')
130 131
            ->order('id','desc')
131 132
            ->paginate();
132 133
  
133 134
        $this->assign('data', $data);
134
        $this->assign('timeList', $this->model->createTimeArchive());
135
        $this->assign('year', $year);
136
        $this->assign('month', $month);
137
        return $this->fetch();
138
    }
139
140
    /**
141
     * 归档页面(发布者)
142
     */
143
    public function author($name = null)
144
    {
145
        if (!$name) {
146
            throw new \think\exception\HttpException(404, '页面不存在');
147
        }
148
                
149
        $data = Db::table('sur_article')->alias('a')->join('sur_category c','a.cid=c.id')
150
            ->where('a.username',$name)
151
            ->field('a.id,a.cid,a.title,a.username,a.title_pic,a.summary,a.clicks,a.create_time,c.url,c.name as cname')
152
            ->order('id','desc')
153
            ->paginate();
154
  
155
        $this->assign('data', $data);
156
        $this->assign('username', $name);
157
        
158
        return $this->fetch();
159
    }
160
161
    public function tags($name=null)
162
    {
163
        if (!$name) {
164
            throw new \think\exception\HttpException(404, '页面不存在');
165
        }
166
        
167
        $tagsModel = new TagsModel();
168
169
        $data = $tagsModel->where('tag', $name)->field('id, cid, title, username, title_pic, summary, clicks, create_time, url, cname')->order('id', 'desc')->paginate();
170
171
        $this->assign('data', $data);
172
        $this->assign('tag', $name);
173
135 174
        return $this->fetch();
136 175
    }
137 176
}

+ 6 - 0
application/index/model/Tags.php

@ -0,0 +1,6 @@
1
<?php
2
namespace app\index\model;
3
4
class Tags extends \think\Model
5
{
6
}

+ 7 - 7
application/index/view/article/archive.html

@ -6,7 +6,7 @@
6 6
                <div class="header-overlay parallax-overlay" style="background-image:url('')"></div>
7 7
                <div class="container">
8 8
                    <h2 class="section-heading">
9
                        Currently browsing: Archive </h2>
9
                        Posts archive for  {$year}年, {$month}月</h2>
10 10
                </div>
11 11
            </div>
12 12
        </header>
@ -15,19 +15,19 @@
15 15
                {foreach $data as $value}
16 16
                <article id="post-{$value.id}"
17 17
                    class="post-{$value.id} post type-post status-publish format-standard hentry category-148 tag-3d">
18
                    <h2 class="blog-single-title"><a href="/information/{$value.id}" title="{$value.title}"
18
                    <h2 class="blog-single-title"><a href="/{$value.url}/{$value.id}" title="{$value.title}"
19 19
                            data-wpel-link="internal">{$value.title}</a></h2>
20 20
                    <div class="entry-meta">
21 21
                        <span class="published"><span class="fa fa-clock-o"></span><a href="javascript:;"
22
                                title="大型3d打印机的优点有哪些?" data-wpel-link="internal">{$value.create_time|date="Y-m-d", ###}</a></span>
23
                        <span class="author"><span class="fa fa-keyboard-o"></span><a href="javascript:;"
24
                                title="由{$value.writer}发布" rel="author" data-wpel-link="internal">{$value.writer}</a></span>
22
                                title="{$value.title}" data-wpel-link="internal">{$value.create_time|date="Y-m-d", ###}</a></span>
23
                        <span class="author"><span class="fa fa-keyboard-o"></span><a href="/author/{$value.username}"
24
                                title="由{$value.username}发布" rel="author" data-wpel-link="internal">{$value.username}</a></span>
25 25
                        <span class="blog-label"><span class="fa fa-folder-open-o"></span><a href="/{$value.url}"
26 26
                                rel="category tag" data-wpel-link="internal">{$value.cname}</a></span>
27 27
                    </div>
28 28
                    {notempty name="value.title_pic"}
29 29
                    <div class="entry-image">
30
                        <a href="/{$value.url}/${$value.id}" title="{$value.title}" data-wpel-link="internal">
30
                        <a href="/{$value.url}/{$value.id}" title="{$value.title}" data-wpel-link="internal">
31 31
                            <img width="382" height="330" src="{$value.title_pic}" class="attachment-full size-full wp-post-image" alt="{$value.title}"></a>
32 32
                    </div>
33 33
                    {/notempty}
@ -35,7 +35,7 @@
35 35
                        <div class="page-content">
36 36
                            <p>{$value.summary|mb_substr=0,30}[&hellip;]</p>
37 37
                        </div>
38
                        <a class="tt_button" href="/{$value.url}/${$value.id}" data-wpel-link="internal">Read more</a>
38
                        <a class="tt_button" href="/{$value.url}/{$value.id}" data-wpel-link="internal">Read more</a>
39 39
                    </div>
40 40
                </article>
41 41
                {/foreach}

+ 53 - 0
application/index/view/article/author.html

@ -0,0 +1,53 @@
1
{layout name="layout" /}
2
3
<div id="wrapper" class=" ">
4
        <header class="entry-header blog-header with-topbar">
5
            <div class="row blog-page-heading blog-title-left">
6
                <div class="header-overlay parallax-overlay" style="background-image:url('')"></div>
7
                <div class="container">
8
                    <h2 class="section-heading">
9
                        All posts by {$username} </h2>
10
                </div>
11
            </div>
12
        </header>
13
        <div id="posts-content" class="container use-sidebar blog-img-top-list">
14
            <div class="col-xs-12 col-sm-12 col-lg-8">
15
                {foreach $data as $value}
16
                <article id="post-{$value.id}"
17
                    class="post-{$value.id} post type-post status-publish format-standard hentry category-148 tag-3d">
18
                    <h2 class="blog-single-title"><a href="/{$value.url}/{$value.id}" title="{$value.title}"
19
                            data-wpel-link="internal">{$value.title}</a></h2>
20
                    <div class="entry-meta">
21
                        <span class="published"><span class="fa fa-clock-o"></span><a href="javascript:;"
22
                                title="{$value.title}" data-wpel-link="internal">{$value.create_time|date="Y-m-d", ###}</a></span>
23
                        <span class="author"><span class="fa fa-keyboard-o"></span><a href="/author/{$value.username}"
24
                                title="由{$value.username}发布" rel="author" data-wpel-link="internal">{$value.username}</a></span>
25
                        <span class="blog-label"><span class="fa fa-folder-open-o"></span><a href="/{$value.url}"
26
                                rel="category tag" data-wpel-link="internal">{$value.cname}</a></span>
27
                    </div>
28
                    {notempty name="value.title_pic"}
29
                    <div class="entry-image">
30
                        <a href="/{$value.url}/{$value.id}" title="{$value.title}" data-wpel-link="internal">
31
                            <img width="382" height="330" src="{$value.title_pic}" class="attachment-full size-full wp-post-image" alt="{$value.title}"></a>
32
                    </div>
33
                    {/notempty}
34
                    <div class="entry-content">
35
                        <div class="page-content">
36
                            <p>{$value.summary|mb_substr=0,30}[&hellip;]</p>
37
                        </div>
38
                        <a class="tt_button" href="/{$value.url}/{$value.id}" data-wpel-link="internal">Read more</a>
39
                    </div>
40
                </article>
41
                {/foreach}
42
                <nav class="navigation pagination" role="navigation" aria-label="文章">
43
                    {$data->render();}
44
                </nav>
45
            </div>
46
            <div class="col-xs-12 col-sm-12 col-lg-4">
47
                <!--侧边栏-->
48
                {include file="public/right-sidebar" /}
49
                <!--侧边栏-->
50
            </div>
51
        </div>
52
        <!--WPFC_FOOTER_START-->
53
    </div>

+ 3 - 3163
application/index/view/article/detail.html

@ -1,2434 +1,7 @@
1
<!DOCTYPE html>
2
<html lang="zh-CN">
3
4
<head>
5
    <meta charset="UTF-8">
6
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
7
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
8
    <meta name="theme-color" content="#dc4c33">
9
    <link rel="profile" href="https://gmpg.org/xfn/11">
10
    <!-- header -->
11
    <meta name="referrer" content="origin">
12
    <!-- This site is optimized with the Yoast SEO plugin v14.0.2 - https://yoast.com/wordpress/plugins/seo/ -->
13
    <title></title>
14
    <meta name="description" content="">
15
    <meta name="robots" content="index, follow">
16
    <meta name="googlebot" content="index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1">
17
    <meta name="bingbot" content="index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1">
18
    <link rel="canonical" href="">
19
    <meta property="og:locale" content="zh_CN">
20
    <meta property="og:type" content="article">
21
    <meta property="og:title" content="">
22
    <meta property="og:description" content="">
23
    <meta property="og:url" content="">
24
    <meta property="og:site_name" content="Suryee 中国官网">
25
    <meta property="article:published_time" content="2019-10-25T10:28:12+00:00">
26
    <meta property="article:modified_time" content="2021-02-01T06:45:00+00:00">
27
    <meta property="og:image" content="">
28
    <meta property="og:image:width" content="624">
29
    <meta property="og:image:height" content="377">
30
    <meta name="twitter:card" content="summary_large_image">
31
    <link rel='stylesheet' id='bootstrap-css' href='/static/index/css/bootstrap.min.css' type='text/css' media='all'>
32
    <link rel='stylesheet' id='parent-style-css' href='/static/index/css/style.css' type='text/css' media='all'>
33
    <link rel='stylesheet' id='child-style-css' href='/static/index/css/style1.css' type='text/css' media='all'>
34
    <link rel='stylesheet' id='wp-block-library-css' href='/static/index/css/style.min.css' type='text/css' media='all'>
35
    <link rel='stylesheet' id='nk-awb-css' href='/static/index/css/awb.min.css' type='text/css' media='all'>
36
    <link rel='stylesheet' id='simple-sitemap-css-css' href='/static/index/css/simple-sitemap.css' type='text/css' media='all'>
37
    <link rel='stylesheet' id='contact-form-7-css' href='/static/index/css/styles.css' type='text/css' media='all'>
38
    <link rel='stylesheet' id='style_cpta_front-css' href='/static/index/css/style_front.css' type='text/css' media='all'>
39
    <link rel='stylesheet' id='kd_addon_style-css' href='/static/index/css/kd_vc_front.css' type='text/css' media='all'>
40
    <link rel='stylesheet' id='rs-plugin-settings-css' href='/static/index/css/settings.css' type='text/css' media='all'>
41
    <style id='rs-plugin-settings-inline-css' type='text/css'>
42
        #rs-demo-id {}
43
    </style>
44
    <link rel='stylesheet' id='searchandfilter-css' href='/static/index/css/style2.css' type='text/css' media='all'>
45
    <link rel='stylesheet' id='theme-font-awesome-css' href='/static/index/css/font-awesome.min.css' type='text/css'
46
        media='all'>
47
    <link rel='stylesheet' id='tailwind-css' href='/static/index/css/tailwind.css' type='text/css' media='all'>
48
    <link rel='stylesheet' id='keydesign-style-css' href='/static/index/css/style1.css' type='text/css' media='all'>
49
    <style id='keydesign-style-inline-css' type='text/css'>
50
        .tt_button:hover .iconita,
51
        .tt_button.second-style .iconita,
52
        #single-page #comments input[type="submit"]:hover,
53
        .tt_button.tt_secondary_button,
54
        .tt_button.tt_secondary_button .iconita,
55
        .team-carousel .owl-item .team-member.design-creative .team-socials a,
56
        .es-accordion .es-time,
57
        .content-area .vc_grid-filter>.vc_grid-filter-item.vc_active>span,
58
        .content-area .vc_grid-filter>.vc_grid-filter-item:hover>span,
59
        .format-quote .entry-wrapper:before,
60
        .large-counter .kd_counter_units,
61
        .footer_widget .redux-social-media-list i,
62
        #single-page .bbp-login-form .user-submit:hover,
63
        .menubar #main-menu .navbar-nav .mega-menu.menu-item-has-children .dropdown>a,
64
        .key-icon-box .ib-link a,
65
        #popup-modal .close:hover,
66
        body.maintenance-mode .container h2,
67
        blockquote:before,
68
        .woocommerce nav.woocommerce-pagination ul li a:hover,
69
        .port-prev.tt_button,
70
        .port-next.tt_button,
71
        .upper-footer .socials-widget a:hover .fa,
72
        .woocommerce .woocommerce-form-login .button:hover,
73
        .footer_widget ul a:hover,
74
        .side-content-text ul li:before,
75
        span.bbp-admin-links a:hover,
76
        #bbpress-forums #bbp-single-user-details #bbp-user-navigation a:hover,
77
        .vc_grid-item-mini .vc_gitem-post-data.vc_gitem-post-data-source-post_date div:before,
78
        .vc_grid-item-mini .vc_gitem-post-data.vc_gitem-post-data-source-post_author a:before,
79
        .vc_grid-item-mini .blog-detailed-grid .vc_btn3-container:hover a,
80
        .feature-sections-wrapper .feature-sections-tabs .nav-tabs a:hover,
81
        .topbar-lang-switcher ul li a:hover span,
82
        .feature-sections-wrapper .feature-sections-tabs .nav-tabs li.active a,
83
        .owl-nav div:hover,
84
        div.bbp-breadcrumb a:hover,
85
        #bbpress-forums div.bbp-topic-author a.bbp-author-name,
86
        #bbpress-forums div.bbp-reply-author a.bbp-author-name,
87
        .kd_pie_chart .pc_percent_container,
88
        .kd_pie_chart .kd-piechart-icon,
89
        .woocommerce .checkout_coupon .button:hover:hover,
90
        .woocommerce-page #payment #place_order:hover,
91
        .team-member.design-minimal .team-socials a,
92
        .woocommerce-cart #single-page table.cart .button:hover,
93
        .wpb-js-composer .vc_tta-container .vc_tta-color-white.vc_tta-style-modern .vc_tta-tab.vc_active a,
94
        .team-member.design-two:hover .team-socials .fa:hover,
95
        .team-member.design-two .team-socials .fa:hover,
96
        #single-page .return-to-shop a:hover,
97
        .woocommerce-error a,
98
        .woocommerce-info a,
99
        .woocommerce-message a,
100
        .woocommerce-cart .wc-proceed-to-checkout a.checkout-button:hover,
101
        .navbar-nav li.dropdown:hover .dropdown-menu:hover li a:hover,
102
        .woocommerce ul.products li.product h2:hover,
103
        .keydesign-cart .buttons .btn,
104
        .woocommerce .keydesign-cart .buttons .btn,
105
        .woocommerce #payment #place_order:hover,
106
        .woocommerce-page #payment #place_order:hover,
107
        .portfolio-meta.share-meta .fa:hover,
108
        .woocommerce-account #single-page .woocommerce-Button:hover,
109
        .woocommerce #respond input#submit:hover,
110
        .woocommerce-page ul.products li.product.woo-minimal-style .button:hover,
111
        .woocommerce-page ul.products li.product.woo-minimal-style .added_to_cart:hover,
112
        .blog_widget ul li a:hover,
113
        #posts-content .entry-meta a:hover,
114
        .breadcrumbs a:hover,
115
        .woocommerce a.button:hover,
116
        .keydesign-cart:hover .cart-icon,
117
        #comments input[type="submit"]:hover,
118
        .search-submit:hover,
119
        .blog-single-content .tags a,
120
        .lower-footer a:hover,
121
        #posts-content .post .blog-single-title a:hover,
122
        #posts-content.blog-minimal-list .blog-single-title a:hover,
123
        #posts-content.blog-img-left-list .blog-single-title a:hover,
124
        .socials-widget a:hover .fa,
125
        .socials-widget a:hover,
126
        #customizer .leadengine-tooltip,
127
        .footer_widget .menu li a:hover,
128
        .row .vc_toggle_size_md.vc_toggle_simple .vc_toggle_title:hover h4,
129
        #single-page .single-page-content .widget ul li a:hover,
130
        #comments .reply a:hover,
131
        #comments .comment-meta a:hover,
132
        #kd-slider .secondary_slider,
133
        #single-page .single-page-content .widget ul li.current-menu-item a,
134
        .team-socials .fa:hover,
135
        #posts-content .post .tt_button:hover .fa,
136
        #posts-content .post .tt_button:hover,
137
        .topbar-socials a:hover .fa,
138
        .pricing .pricing-price,
139
        .pricing-table .tt_button,
140
        .topbar-phone .iconsmind-Telephone,
141
        .topbar-email .iconsmind-Mail,
142
        .modal-content-contact .key-icon-box .service-heading a:hover,
143
        .pricing-table.active .tt_button:hover,
144
        .footer-business-content a:hover,
145
        .vc_grid-item-mini .vc_gitem-zone .vc_btn3.vc_btn3-style-custom,
146
        .star-rating span,
147
        .es-accordion .es-heading h4 a:hover,
148
        .keydesign-cart ul.product_list_widget .cart-item:hover,
149
        .woocommerce .keydesign-cart ul.product_list_widget .cart-item:hover,
150
        #customizer .options a:hover i,
151
        .woocommerce .price_slider_wrapper .price_slider_amount .button,
152
        #customizer .options a:hover,
153
        #single-page input[type="submit"]:hover,
154
        #posts-content .post input[type="submit"]:hover,
155
        .active .pricing-option .fa,
156
        #comments .reply a:hover,
157
        .meta-content .tags a:hover,
158
        .navigation.pagination .next,
159
        .woocommerce-cart #single-page table.cart .product-name a:hover,
160
        .navigation.pagination .prev,
161
        .woocommerce span.onsale,
162
        .product_meta a:hover,
163
        .tags a:hover,
164
        .tagcloud a:hover,
165
        .tt_button.second-style,
166
        .lower-footer .pull-right a:hover,
167
        .woocommerce-review-link:hover,
168
        .section .wpcf7-mail-sent-ok,
169
        .blog-header-form .wpcf7-mail-sent-ok,
170
        .upper-footer .modal-menu-item,
171
        .video-socials a:hover .fa,
172
        .kd_pie_chart .pc-link a:hover,
173
        .vc_grid-item-mini .vc_gitem_row .vc_gitem-col h4:hover,
174
        .fa,
175
        .wpcf7 .wpcf7-submit:hover,
176
        .contact .wpcf7-response-output,
177
        .video-bg .secondary-button:hover,
178
        #headerbg li a.active,
179
        #headerbg li a.active:hover,
180
        .footer-nav a:hover,
181
        .wpb_wrapper .menu a:hover,
182
        .text-danger,
183
        .blog_widget ul li a:before,
184
        .pricing .fa,
185
        .content-area .vc_grid .vc_gitem-zone-c .vc_gitem-link,
186
        code,
187
        #single-page .single-page-content ul li:before,
188
        .subscribe-form header .wpcf7-submit,
189
        #posts-content .page-content ul li:before,
190
        .chart-content .nc-icon-outline,
191
        .chart,
192
        .row .vc_custom_heading a:hover,
193
        .secondary-button-inverse,
194
        .primary-button.button-inverse:hover,
195
        .primary-button,
196
        a,
197
        .kd-process-steps .pss-step-number span,
198
        .navbar-default .navbar-nav>.active>a,
199
        .pss-link a:hover,
200
        .woocommerce-cart #single-page .cart_totals table td,
201
        .kd_number_string,
202
        .featured_content_parent .active-elem h4,
203
        .contact-map-container .toggle-map:hover .fa,
204
        .contact-map-container .toggle-map:hover,
205
        .testimonials.slider .tt-container:before,
206
        .tt_button:hover,
207
        .nc-icon-outline,
208
        .woocommerce ul.products li.product h3:hover,
209
        .wpb_text_column ol>li:before,
210
        .wpb_text_column ul>li:before,
211
        .key-icon-box .ib-link a:hover {
212
            color: #4f6df5;
213
            color: #dc4c33;
214
        }
215
216
        .pricing-table.DetailedStyle .pricing .pricing-price {
217
            color: #dc4c33 !important;
218
        }
219
220
        .modal-content-inner .wpcf7-not-valid-tip,
221
        .section .wpcf7-mail-sent-ok,
222
        .blog-header-form .wpcf7-mail-sent-ok,
223
        .blog-header-form .wpcf7-not-valid-tip,
224
        .section .wpcf7-not-valid-tip,
225
        .kd-process-steps.process-checkbox-template .pss-item:before,
226
        .kd-process-steps.process-checkbox-template,
227
        .kd-separator,
228
        .kd-separator .kd-separator-line {
229
            border-color: #dc4c33;
230
        }
231
232
        #single-page .bbp-login-form .user-submit,
233
        .bbpress #user-submit,
234
        .gform_wrapper .gform_footer input.button,
235
        .gform_wrapper .gform_footer input[type=submit],
236
        input[type="button"].ninja-forms-field,
237
        .modal-content-inner .wpcf7-submit:hover,
238
        .searchform #searchsubmit,
239
        #kd-slider,
240
        .kd-contact-form.light_background .wpcf7 .wpcf7-submit,
241
        .footer-newsletter-form .wpcf7 .wpcf7-submit,
242
        .kd_progressbarfill,
243
        .phone-wrapper,
244
        .wpb_wrapper #loginform .button,
245
        .woocommerce input.button,
246
        .testimonial-cards .center .tcards_message,
247
        .email-wrapper,
248
        .woocommerce ul.products li.product .added_to_cart:hover,
249
        .footer-business-info.footer-socials a:hover,
250
        #comments input[type="submit"],
251
        .parallax.with-overlay:after,
252
        .content-area .vc_grid-filter>.vc_grid-filter-item span:after,
253
        .tt_button.tt_secondary_button:hover,
254
        .pricing-table .tt_button:hover,
255
        .modal-content-inner .wpcf7-not-valid-tip,
256
        .tt_button.second-style:hover,
257
        .pricing-table.active .tt_button,
258
        #customizer .screenshot a,
259
        .heading-separator,
260
        .blog-header-form .wpcf7-not-valid-tip,
261
        .section .wpcf7-not-valid-tip,
262
        .port-prev.tt_button:hover,
263
        .port-next.tt_button:hover,
264
        .owl-buttons div:hover,
265
        .row .vc_toggle_default .vc_toggle_icon,
266
        .row .vc_toggle_default .vc_toggle_icon::after,
267
        .row .vc_toggle_default .vc_toggle_icon::before,
268
        .woocommerce #respond input#submit,
269
        .woocommerce a.button,
270
        .woocommerce nav.woocommerce-pagination ul li a:hover,
271
        .upper-footer .modal-menu-item:hover,
272
        .contact-map-container .toggle-map,
273
        .portfolio-item .portfolio-content,
274
        .tt_button,
275
        .owl-dot span,
276
        .woocommerce a.remove:hover,
277
        .pricing .secondary-button.secondary-button-inverse:hover,
278
        .with-overlay .parallax-overlay,
279
        .secondary-button.secondary-button-inverse:hover,
280
        .secondary-button,
281
        #kd-slider .bullet-bar.tparrows,
282
        .primary-button.button-inverse,
283
        #posts-content .post input[type="submit"],
284
        .btn-xl,
285
        .with-overlay,
286
        .vc_grid-item-mini .vc_gitem-zone .vc_btn3.vc_btn3-style-custom:hover,
287
        .woocommerce .price_slider_wrapper .ui-slider-horizontal .ui-slider-range,
288
        .separator,
289
        .woocommerce button.button,
290
        .cb-container.cb_main_color:hover,
291
        .keydesign-cart .buttons .btn:hover,
292
        .woocommerce .keydesign-cart .buttons .btn:hover,
293
        .woocommerce ul.products li.product .button:hover,
294
        #single-page #comments input[type="submit"]:hover,
295
        .contact-map-container .toggle-map:hover,
296
        .wpcf7 .wpcf7-submit:hover,
297
        .owl-dot span,
298
        .features-tabs .tab.active,
299
        .content-area .vc_grid .vc-gitem-zone-height-mode-auto.vc_gitem-zone.vc_gitem-zone-a:before,
300
        .row .vc_toggle_simple .vc_toggle_title:hover .vc_toggle_icon::after,
301
        .row .vc_toggle_simple .vc_toggle_title:hover .vc_toggle_icon::before,
302
        .wpcf7 .wpcf7-submit,
303
        .navigation.pagination .next:hover,
304
        #single-page .vc_col-sm-3 .wpcf7 .wpcf7-submit,
305
        .spinner:before,
306
        .content-area .vc_grid .vc_gitem-zone-c .vc_gitem-link:hover,
307
        .content-area .vc_grid-item-mini .vc_gitem-animate-fadeIn .vc_gitem-zone.vc_gitem-zone-a:before,
308
        .keydesign-cart .badge,
309
        #bbp_search_submit,
310
        .woocommerce .price_slider_wrapper .ui-slider .ui-slider-handle,
311
        .navigation.pagination .prev:hover {
312
            background: #4f6df5;
313
            background: #dc4c33;
314
        }
315
316
317
        .slider-scroll-down a {
318
            background-color: #4f6df5;
319
            background-color: #dc4c33;
320
        }
321
322
        ::selection {
323
            background-color: #4f6df5;
324
            background: #dc4c33;
325
        }
326
327
        ::-moz-selection {
328
            background-color: #4f6df5;
329
            background: #dc4c33;
330
        }
331
332
        #single-page .bbp-login-form .user-submit,
333
        #single-page #comments input[type="submit"]:hover,
334
        .navigation.pagination .next,
335
        .navigation.pagination .prev,
336
        .upper-footer .modal-menu-item,
337
        .wpcf7 .wpcf7-submit:hover,
338
        .tt_button,
339
        .navigation.pagination .next,
340
        .navigation.pagination .prev,
341
        .woocommerce ul.products li.product .button:hover,
342
        .woocommerce .price_slider_wrapper .ui-slider .ui-slider-handle,
343
        .pricing.active,
344
        .vc_grid-item-mini .vc_gitem-zone .vc_btn3.vc_btn3-style-custom,
345
        .primary-button.button-inverse:hover,
346
        .primary-button.button-inverse,
347
        .keydesign-cart .buttons .btn,
348
        .woocommerce .keydesign-cart .buttons .btn,
349
        .wpcf7 .wpcf7-submit,
350
        .wpb_wrapper #loginform .button,
351
        .owl-buttons div:hover,
352
        .woocommerce button.button,
353
        .woocommerce a.button,
354
        .content-area .vc_grid .vc_gitem-zone-c .vc_gitem-link,
355
        #commentform #submit,
356
        .woocommerce ul.products li.product .added_to_cart,
357
        .woocommerce input.button,
358
        .owl-dot.active span,
359
        .owl-dot:hover span {
360
            border: 2px solid #4f6df5;
361
            border: 2px solid #dc4c33;
362
        }
363
364
        .modal-content-inner:before {
365
            border-right: 12px solid #4f6df5;
366
            border-right: 12px solid #dc4c33;
367
        }
368
369
370
        .page-404 .tt_button,
371
        #wrapper .widget-title,
372
        .blockquote-reverse,
373
        .testimonials.slider .owl-dot.active span,
374
        .tags a:hover,
375
        .tagcloud a:hover,
376
        .contact-map-container .toggle-map:hover,
377
        .navigation.pagination .next:hover,
378
        .navigation.pagination .prev:hover,
379
        .contact .wpcf7-response-output,
380
        .video-bg .secondary-button,
381
        #single-page .single-page-content .widget .widgettitle,
382
        .image-bg .secondary-button,
383
        .contact .wpcf7-form-control-wrap textarea.wpcf7-form-control:focus,
384
        .contact .wpcf7-form-control-wrap input.wpcf7-form-control:focus,
385
        .team-member-down:hover .triangle,
386
        .team-member:hover .triangle,
387
        .features-tabs .tab.active:after,
388
        .tabs-image-left.features-tabs .tab.active:after,
389
        .secondary-button-inverse,
390
        .wpb-js-composer .vc_tta-container .vc_tta.vc_tta-style-classic .vc_tta-tabs-container .vc_tta-tabs-list li.vc_active a,
391
        .vc_separator .vc_sep_holder .vc_sep_line {
392
            border-color: #4f6df5;
393
            border-color: #dc4c33;
394
        }
395
396
        .testimonial-cards .center .tcards_message:before {
397
            border-color: transparent transparent #4f6df5 #4f6df5;
398
            border-color: transparent transparent #dc4c33 #dc4c33;
399
        }
400
401
        .testimonial-cards .center .tcards_message.author-bottom:before {
402
            border-color: #4f6df5 transparent transparent #4f6df5;
403
            border-color: #dc4c33 transparent transparent #dc4c33;
404
        }
405
406
407
        .wpb-js-composer .vc_tta-container .vc_tta-tabs.vc_tta-tabs-position-left .vc_tta-tab:before {
408
            border-right: 9px solid #dc4c33;
409
        }
410
411
        .wpb-js-composer .vc_tta-container .vc_tta.vc_tta-style-classic .vc_tta-tabs-container .vc_tta-tabs-list li:before {
412
            border-top: 9px solid #dc4c33;
413
        }
414
415
416
        .tt_button.btn_secondary_color.tt_secondary_button:hover,
417
        .tt_button.btn_secondary_color {
418
            background: #1a3347;
419
        }
420
421
        .tt_button.btn_secondary_color.tt_secondary_button,
422
        .tt_button.btn_secondary_color:hover {
423
            color: #1a3347;
424
        }
425
426
        .tt_button.btn_secondary_color {
427
            border: 2px solid #1a3347;
428
        }
429
430
431
        h1,
432
        h2,
433
        h3,
434
        h4,
435
        h5,
436
        .kd_progress_bar .kd_progb_head .kd-progb-title h4,
437
        .wpb-js-composer .vc_tta-container .vc_tta.vc_tta-style-classic .vc_tta-tabs-container .vc_tta-tabs-list li a:hover,
438
        .es-accordion .es-heading h4 a,
439
        .wpb-js-composer .vc_tta-color-white.vc_tta-style-modern .vc_tta-tab>a:hover,
440
        #comments .fn,
441
        #comments .fn a,
442
        .portfolio-block h4,
443
        .rw-author-details h4,
444
        .testimonials.slider .author,
445
        .vc_grid-item-mini .vc_gitem_row .vc_gitem-col h4,
446
        .navbar-default.navbar-shrink .nav li a,
447
        .team-content h5,
448
        .key-icon-box .service-heading,
449
        #wp-calendar caption,
450
        .post a:hover,
451
        .kd_pie_chart .kd_pc_title,
452
        .kd_pie_chart .pc-link a,
453
        .testimonials .tt-content h4,
454
        .kd-photobox .phb-content h4,
455
        .kd-process-steps .pss-text-area h4,
456
        .widget-title,
457
        .kd-promobox .prb-content h4,
458
        .bp-content h4,
459
        .reply-title,
460
        .product_meta,
461
        .blog-header .section-heading,
462
        .testimonial-cards .tcards-title,
463
        .testimonial-cards .tcards_header .tcards-name,
464
        .woocommerce-result-count,
465
        .pss-link a,
466
        .navbar-default .nav li a,
467
        .logged-in .navbar-nav a,
468
        .navbar-nav .menu-item a,
469
        .woocommerce table.shop_attributes th,
470
        .portfolio-block strong,
471
        .keydesign-cart .nc-icon-outline-cart,
472
        .portfolio-meta.share-meta .fa,
473
        .subscribe input[type="submit"],
474
        .es-accordion .es-speaker-container .es-speaker-name,
475
        .pricing-title,
476
        .woocommerce div.product .woocommerce-tabs ul.tabs li.active a,
477
        .woocommerce-cart #single-page table.cart .product-name a,
478
        .wpb-js-composer .vc_tta-container .vc_tta-color-white.vc_tta-style-modern .vc_tta-tab>a,
479
        .rw_rating .rw-title,
480
        .group_table .label,
481
        .cb-container.cb_transparent_color:hover .cb-heading,
482
        .app-gallery .ag-section-desc h4,
483
        .single-post .wpb_text_column strong,
484
        .owl-buttons div,
485
        #single-page .single-page-content .widget ul li a,
486
        .modal-content-contact .key-icon-box .service-heading a,
487
        .woocommerce-ordering select,
488
        .woocommerce div.product .woocommerce-tabs .panel #reply-title,
489
        .page-404 .section-subheading,
490
        .showcoupon:hover,
491
        .pricing-table.DetailedStyle .pricing .pricing-price,
492
        .pricing-table .pricing-img .fa,
493
        .navbar-default .navbar-nav>li>a:hover,
494
        .testimonials.slider.with-image .tt-container h6,
495
        .socials-widget a:hover .fa,
496
        .socials-widget a:hover,
497
        .owl-nav div,
498
        #comments label,
499
        .author-box-wrapper .author-name h6,
500
        .keydesign-cart .empty-cart,
501
        .play-video .fa-play,
502
        .author-website,
503
        .post-link:hover,
504
        #comments .reply a:hover,
505
        .author-desc-wrapper a:hover,
506
        .blog-single-content .tags a:hover,
507
        .wpb-js-composer .vc_tta-container .vc_tta.vc_tta-style-classic .vc_tta-tabs-container .vc_tta-tabs-list li a:hover,
508
        .wpb-js-composer .vc_tta-container .vc_tta.vc_tta-style-classic .vc_tta-tabs-container .vc_tta-tabs-list li.vc_active a,
509
        .woocommerce #coupon_code,
510
        .woocommerce .quantity .qty,
511
        .kd-price-block .pb-content-wrap .pb-pricing-wrap,
512
        .blog-single-title a,
513
        .topbar-phone a:hover,
514
        .topbar-email a:hover,
515
        .woocommerce-page ul.products li.product.woo-minimal-style .added_to_cart,
516
        .woocommerce-page ul.products li.product.woo-minimal-style .button,
517
        .woocommerce nav.woocommerce-pagination ul li span.current,
518
        #menu-topbar-menu li a:hover,
519
        .fa.toggle-search:hover,
520
        .business-info-header .fa,
521
        .tt_secondary_button.tt_third_button:hover,
522
        .tt_secondary_button.tt_third_button:hover .fa,
523
        .keydesign-cart .subtotal,
524
        #single-page p.cart-empty,
525
        blockquote cite,
526
        .cta-icon .fa,
527
        .wpcf7-form label,
528
        body.maintenance-mode .countdown,
529
        .mobile-cart .keydesign-cart,
530
        body.woocommerce-page .entry-header .section-heading,
531
        .feature-sections-wrapper .feature-sections-tabs .nav-tabs a,
532
        .team-member.design-minimal .team-socials a:hover,
533
        .key-icon-box .ib-link a:hover,
534
        .feature-sections-wrapper .side-content-wrapper .simple-link:hover,
535
        .woocommerce ul.products li.product .price,
536
        .vc_toggle_simple .vc_toggle_title .vc_toggle_icon::after,
537
        .vc_toggle_simple .vc_toggle_title .vc_toggle_icon::before,
538
        .testimonials .tt-content .content {
539
            color: #1f1f1f;
540
            color: ;
541
        }
542
543
544
        .ib-link.iconbox-main-color a:hover {
545
            color: #1f1f1f;
546
            color:  !important;
547
        }
548
549
        .vc_toggle.vc_toggle_default .vc_toggle_icon,
550
        .row .vc_toggle_size_md.vc_toggle_default .vc_toggle_title .vc_toggle_icon:before,
551
        .row .vc_toggle_size_md.vc_toggle_default .vc_toggle_title .vc_toggle_icon:after,
552
        .searchform #searchsubmit:hover,
553
        #kd-slider .bullet-bar.tparrows:hover {
554
            background: #1f1f1f;
555
            background: ;
556
        }
557
558
559
560
        .kd-contact-form.light_background .wpcf7 .wpcf7-submit:hover {
561
            background:  !important;
562
        }
563
564
565
566
        .kd_counter_number:after {
567
            background: ;
568
        }
569
570
        .testimonials.slider .owl-dot:hover span {
571
            border-color: ;
572
        }
573
574
        .cb-container.cb_transparent_color:hover .cb-text-area p {
575
            color: ;
576
        }
577
578
579
580
        .wpcf7 .wpcf7-text::-webkit-input-placeholder {
581
            color: ;
582
        }
583
584
        .wpcf7 .wpcf7-text::-moz-placeholder {
585
            color: ;
586
        }
587
588
        .wpcf7 .wpcf7-text:-ms-input-placeholder {
589
            color: ;
590
        }
591
592
        .wpcf7-form-control-wrap .wpcf7-textarea::-webkit-input-placeholder {
593
            color: ;
594
        }
595
596
        .wpcf7-form-control-wrap .wpcf7-textarea::-moz-placeholder {
597
            color: ;
598
        }
599
600
        .wpcf7-form-control-wrap .wpcf7-textarea:-ms-input-placeholder {
601
            color: ;
602
        }
603
604
605
        .footer-newsletter-form .wpcf7-form .wpcf7-email,
606
        .footer-business-info.footer-socials a,
607
        .upper-footer {
608
            background: #f7f9fb;
609
            background: #1a3347;
610
        }
611
612
        .upper-footer {
613
            border-color: #1a3347;
614
        }
615
616
        .upper-footer .textwidget,
617
        .footer-business-info,
618
        .lower-footer {
619
            background: #fff;
620
            background: #1a3347;
621
        }
622
623
        .upper-footer .textwidget,
624
        .lower-footer {
625
            border-color: #1a3347;
626
        }
627
628
        .lower-footer,
629
        .upper-footer,
630
        .upper-footer .socials-widget .fa {
631
            color: #ffffff;
632
        }
633
634
        .lower-footer a,
635
        .upper-footer a {
636
            color:  !important;
637
        }
638
639
        .lower-footer a:hover,
640
        .upper-footer a:hover {
641
            color:  !important;
642
        }
643
644
        .upper-footer .widget-title,
645
        .upper-footer .modal-menu-item {
646
            color: #ffffff;
647
        }
648
649
650
        #commentform textarea,
651
        .wpcf7-form textarea,
652
        .wpb_wrapper #loginform .input,
653
        .wpcf7 input[type="date"],
654
        .wpcf7 .wpcf7-text,
655
        .wpcf7 .wpcf7-email,
656
        .wpcf7 .wpcf7-select,
657
        .modal-content-inner .wpcf7 .wpcf7-text,
658
        .modal-content-inner .wpcf7 .wpcf7-email,
659
        .content-area .vc_grid-gutter-30px .vc_grid-item-mini .vc_gitem-zone.vc_gitem-zone-c,
660
        .portfolio-navigation-links,
661
        .related-posts,
662
        .comment-body,
663
        #single-page blockquote,
664
        .author-box-wrapper,
665
        .blog_widget .search-form .search-field,
666
        .blog_widget .woocommerce-product-search .search-field,
667
        .blog-header-form .wpcf7 .wpcf7-text,
668
        .blog-header-form .wpcf7 .wpcf7-email,
669
        .single-post #posts-content .post,
670
        .search #posts-content .portfolio,
671
        .search #posts-content .product,
672
        .search #posts-content .page,
673
        #posts-content .type-attachment,
674
        #posts-content .post,
675
        .woo-sidebar,
676
        .right-sidebar,
677
        #posts-content.blog-minimal-list .entry-meta .blog-label:before,
678
        #posts-content.blog-img-top-list .entry-meta .blog-label:before,
679
        #posts-content.blog-img-left-list .BlogFullWidth .post,
680
        .related-posts .post .entry-wrapper.without-image,
681
        .related-content .portfolio .entry-wrapper.without-image,
682
        #posts-content.blog-detailed-grid .entry-wrapper.without-image,
683
        #posts-content.blog-minimal-grid .entry-wrapper.without-image,
684
        .woo-entry-wrapper,
685
        .related-posts .post .entry-wrapper,
686
        .related-content .portfolio .entry-wrapper,
687
        #posts-content.blog-detailed-grid .entry-wrapper,
688
        #wrapper .blog-detailed-grid .entry-wrapper,
689
        #posts-content.blog-minimal-grid .entry-wrapper,
690
        .portfolio-template-default .entry-header .container,
691
        #single-page #comments input[type="text"],
692
        #single-page #comments input[type="email"],
693
        #comments input[type="text"],
694
        #comments input[type="email"],
695
        #comments input[type="url"],
696
        .woo-minimal-style ul.products li.product,
697
        .woocommerce-page ul.products li.product.woo-minimal-style,
698
        #single-page .select2-container--default .select2-selection--single,
699
        .woocommerce-checkout #single-page table,
700
        .woocommerce-checkout .woocommerce form .form-row select,
701
        .woocommerce-checkout .woocommerce form .form-row input.input-text,
702
        .woocommerce-checkout .woocommerce form .form-row textarea,
703
        .woocommerce-account .woocommerce form .form-row select,
704
        .woocommerce-account .woocommerce form .form-row input.input-text,
705
        .woocommerce-account .woocommerce form .form-row textarea,
706
        .woocommerce-checkout .woocommerce .login input[type="text"],
707
        .woocommerce-checkout .woocommerce .login input[type="password"] .woocommerce #coupon_code,
708
        .woocommerce-cart #single-page table.cart .qty,
709
        .woocommerce-cart #single-page table.cart img,
710
        .woocommerce-cart #single-page table.cart,
711
        #review_form #commentform input[type="text"],
712
        #review_form #commentform input[type="email"],
713
        .woocommerce-page div.product .woocommerce-tabs,
714
        .keydesign-cart ul.product_list_widget li img,
715
        ul.product_list_widget li img,
716
        .woocommerce-error,
717
        .woocommerce-info,
718
        .woocommerce-message,
719
        .woocommerce form.checkout_coupon,
720
        .woocommerce form.login,
721
        .woocommerce form.register,
722
        .woocommerce #review_form #respond textarea,
723
        .woocommerce nav.woocommerce-pagination ul li a,
724
        .woocommerce nav.woocommerce-pagination ul li span,
725
        .woo-entry-image,
726
        .woocommerce div.product .woocommerce-tabs ul.tabs li,
727
        .woocommerce div.product .woocommerce-tabs ul.tabs,
728
        .single-product .woocommerce-product-gallery img,
729
        .woocommerce #coupon_code,
730
        .woocommerce .quantity .qty,
731
        .woocommerce .cart-collaterals .cart_totals,
732
        .woocommerce-page .cart-collaterals .cart_totals {
733
            border-color: ;
734
        }
735
736
737
738
739
        .transparent-navigation .navbar.navbar-default.navbar-shrink .topbar-lang-switcher ul:not(:hover) li a,
740
        .transparent-navigation .navbar.navbar-default.navbar-shrink .topbar-menu-search .fa.toggle-search,
741
        .transparent-navigation .navbar.navbar-default.navbar-shrink #menu-topbar-menu li a,
742
        .transparent-navigation .navbar.navbar-default.navbar-shrink .topbar-phone .iconsmind-Telephone,
743
        .transparent-navigation .navbar.navbar-default.navbar-shrink .topbar-email .iconsmind-Mail,
744
        .transparent-navigation .navbar.navbar-default.navbar-shrink .topbar-phone a,
745
        .transparent-navigation .navbar.navbar-default.navbar-shrink .topbar-email a,
746
        .home .navbar.navbar-default.navbar-shrink .topbar-lang-switcher ul:not(:hover) li a,
747
        .home .navbar.navbar-default.navbar-shrink .topbar-menu-search .fa.toggle-search,
748
        .home .navbar.navbar-default.navbar-shrink #menu-topbar-menu li a,
749
        .home .navbar.navbar-default.navbar-shrink .topbar-phone .iconsmind-Telephone,
750
        .home .navbar.navbar-default.navbar-shrink .topbar-email .iconsmind-Mail,
751
        .home .navbar.navbar-default.navbar-shrink .topbar-phone a,
752
        .home .navbar.navbar-default.navbar-shrink .topbar-email a,
753
        .topbar-lang-switcher ul li a,
754
        .cart-icon-container,
755
        .topbar-lang-switcher,
756
        .topbar-menu,
757
        .topbar-search,
758
        .topbar-phone .iconsmind-Telephone,
759
        .topbar-email .iconsmind-Mail,
760
        .navbar.navbar-default .topbar-phone a,
761
        .navbar.navbar-default .topbar-email a {
762
            color: #ffffff !important;
763
        }
764
765
766
        .topbar-lang-switcher ul li a:hover span,
767
        .topbar-menu-search .keydesign-cart a:hover,
768
        .topbar-search .fa.toggle-search:hover,
769
        #menu-topbar-menu a:hover,
770
        .home .navbar.navbar-default .topbar-phone a:hover,
771
        .home .navbar.navbar-default .topbar-email a:hover,
772
        .transparent-navigation .navbar.navbar-default .topbar-phone a:hover,
773
        .transparent-navigation .navbar.navbar-default .topbar-email a:hover,
774
        .navbar.navbar-default .topbar-phone a:hover,
775
        .navbar.navbar-default .topbar-email a:hover {
776
            color: #1f1f1f;
777
            color:  !important;
778
        }
779
780
        .home .navbar.navbar-shrink .topbar,
781
        .transparent-navigation .navbar.navbar-shrink .topbar,
782
        .navbar.navbar-default.contained .topbar .container,
783
        .navbar .topbar {
784
            background:  !important;
785
        }
786
787
788
        .topbar-search .search-form .search-field,
789
        .topbar .fa.toggle-search.fa-times {
790
            color:  !important;
791
        }
792
793
        .navbar .topbar {
794
            border-color:  !important;
795
        }
796
797
798
        .navbar.navbar-default.contained .container,
799
        .navbar.navbar-default .menubar,
800
        .navbar.navbar-default.navbar-shrink.fixed-menu,
801
        .keydesign-cart .keydesign-cart-dropdown,
802
        .navbar.navbar-default .dropdown-menu,
803
        .navbar.navbar-default {
804
            background: #1a3347 !important;
805
        }
806
807
808
809
        @media (min-width: 960px) {
810
811
            .transparent-navigation .navbar.navbar-default,
812
            .transparent-navigation .navbar.navbar-default .container,
813
            .transparent-navigation .navbar.navbar-default.contained,
814
            .transparent-navigation .navbar .topbar,
815
            .transparent-navigation .navbar .menubar,
816
            .home .navbar.navbar-default,
817
            .home .navbar.navbar-default .container,
818
            .home .navbar.navbar-default.contained,
819
            .home .navbar .topbar,
820
            .home .navbar .menubar {
821
                background: transparent !important;
822
                border: none !important;
823
            }
824
825
            .transparent-navigation #menu-topbar-menu li a,
826
            .transparent-navigation .topbar-phone .iconsmind-Telephone,
827
            .transparent-navigation .topbar-email .iconsmind-Mail,
828
            .transparent-navigation .navbar.navbar-default:not(.navbar-shrink) .topbar-socials a .fa,
829
            .transparent-navigation .navbar.navbar-default .topbar-phone a,
830
            .transparent-navigation .navbar.navbar-default .topbar-email a,
831
            .transparent-navigation .topbar-lang-switcher ul,
832
            .transparent-navigation .topbar-lang-switcher ul:not(:hover) li a,
833
            .transparent-navigation .topbar-menu-search .fa.toggle-search,
834
            .transparent-navigation .navbar.navbar-default .menubar .navbar-nav a,
835
            .transparent-navigation .keydesign-cart .cart-icon,
836
            .transparent-navigation .keydesign-cart .badge,
837
            .transparent-navigation #logo .logo,
838
            .home #menu-topbar-menu li a,
839
            .home .topbar-phone .iconsmind-Telephone,
840
            .home .topbar-email .iconsmind-Mail,
841
            .home .navbar.navbar-default:not(.navbar-shrink) .topbar-socials a .fa,
842
            .home .navbar.navbar-default .topbar-phone a,
843
            .home .navbar.navbar-default .topbar-email a,
844
            .home .topbar-lang-switcher ul,
845
            .home .topbar-lang-switcher ul:not(:hover) li a,
846
            .home .topbar-menu-search .fa.toggle-search,
847
            .home .navbar.navbar-default .menubar .navbar-nav a,
848
            .home .keydesign-cart .cart-icon,
849
            .home .keydesign-cart .badge,
850
            .home #logo .logo {
851
                color:
852
            }
853
854
855
856
        }
857
858
        .keydesign-cart .keydesign-cart-dropdown,
859
        #main-menu .navbar-nav.navbar-shrink .menu-item-has-children .dropdown-menu,
860
        .navbar-nav.navbar-shrink .menu-item-has-children .dropdown-menu,
861
        .navbar.navbar-default.navbar-shrink .keydesign-cart .keydesign-cart-dropdown,
862
        .navbar.navbar-default.navbar-shrink .dropdown-menu,
863
        .navbar.navbar-default.navbar-shrink.contained .container,
864
        body:not(.home) .navbar.navbar-default.contained .container,
865
        body:not(.transparent-navigation) .navbar.navbar-default.contained .container,
866
        .navbar.navbar-default.navbar-shrink .menubar {
867
            background: #1a3347 !important;
868
        }
869
870
871
        .navbar-default .menu-item-has-children .mobile-dropdown,
872
        .navbar-default .menu-item-has-children:hover .dropdown-menu .dropdown:before,
873
        .navbar.navbar-default .mobile-cart .keydesign-cart .cart-icon,
874
        .keydesign-cart .nc-icon-outline-cart,
875
        .home .navbar.navbar-default .menubar .navbar-nav .dropdown-menu a,
876
        .transparent-navigation .navbar.navbar-default .menubar .navbar-nav .dropdown-menu a,
877
        .navbar.navbar-default .menubar .navbar-nav a {
878
            color: #ffffff !important;
879
        }
880
881
882
        .navbar-default .navbar-toggle .icon-bar {
883
            background: #ffffff !important;
884
        }
885
886
        .navbar-default.navbar-shrink .navbar-toggle .icon-bar {
887
            background: #ffffff !important;
888
        }
889
890
891
        .navbar-default.navbar-shrink .menu-item-has-children .mobile-dropdown,
892
        .navbar-default.navbar-shrink .menu-item-has-children:hover .dropdown-menu .dropdown:before,
893
        .keydesign-cart ul.product_list_widget .subtotal,
894
        .home .navbar-shrink #logo .logo,
895
        .transparent-navigation .navbar-shrink #logo .logo,
896
        .home .topbar-menu-search .fa.toggle-search.fa-times,
897
        .transparent-navigation .topbar-menu-search .fa.toggle-search.fa-times,
898
        #main-menu .navbar-nav.navbar-shrink .menu-item-has-children .mobile-dropdown,
899
        #main-menu .navbar-nav.navbar-shrink .menu-item-has-children:hover .dropdown-menu .dropdown:before,
900
        #main-menu .navbar-nav.navbar-shrink .menu-item-has-children .dropdown-menu a,
901
        .keydesign-cart ul.product_list_widget .cart-item,
902
        .home .navbar.navbar-default.navbar-shrink .menubar .navbar-nav .dropdown-menu a,
903
        .transparent-navigation .navbar.navbar-default.navbar-shrink .menubar .navbar-nav .dropdown-menu a,
904
        .navbar.navbar-default.navbar-shrink .keydesign-cart .keydesign-cart-dropdown,
905
        .navbar.navbar-default.navbar-shrink .keydesign-cart .nc-icon-outline-cart,
906
        .navbar.navbar-default.navbar-shrink .menubar .navbar-nav a,
907
        .navbar.navbar-default.navbar-shrink .keydesign-cart .cart-icon {
908
            color: #ffffff !important;
909
        }
910
911
912
913
        .navbar.navbar-default .navbar-nav a:hover {
914
            color:  !important;
915
        }
916
917
        .menubar #main-menu .navbar-nav .mega-menu.menu-item-has-children .dropdown>a,
918
        .keydesign-cart ul.product_list_widget .cart-item:hover,
919
        .navbar-default.navbar-shrink .nav li.active a,
920
        #main-menu .navbar-nav .menu-item-has-children .dropdown-menu a:hover,
921
        .navbar-nav .menu-item-has-children .dropdown-menu a:hover,
922
        .body:not(.home) .navbar a:hover,
923
        .body:not(.transparent-navigation) .navbar a:hover,
924
        .navbar-default .nav li.active a,
925
        .navbar.navbar-default.navbar-shrink .navbar-nav a:hover {
926
            color:  !important;
927
        }
928
929
        #logo .logo {
930
            color: #1f1f1f;
931
            color:  !important;
932
        }
933
934
935
        .navbar-shrink #logo .logo {
936
            color: #1f1f1f;
937
            color:  !important;
938
        }
939
940
941
        body,
942
        .box,
943
        .cb-text-area p {
944
            color: ;
945
            font-weight: 400;
946
            font-family: Roboto;
947
            font-size: ;
948
            line-height: ;
949
        }
950
951
952
        .container #logo .logo {
953
            font-weight: ;
954
            font-size: ;
955
        }
956
957
958
959
        .container h1 {
960
            color: ;
961
            font-weight: 400;
962
            font-family: Roboto;
963
            font-size: ;
964
            text-align: ;
965
            line-height: ;
966
            text-transform: ;
967
        }
968
969
        .container h2,
970
        #popup-modal .modal-content h2 {
971
            color: ;
972
            font-weight: 400;
973
            font-family: Roboto;
974
            font-size: ;
975
            text-align: ;
976
            line-height: ;
977
            text-transform: ;
978
        }
979
980
        .container h3 {
981
            color: ;
982
            font-weight: 400;
983
            font-family: Roboto;
984
            font-size: ;
985
            text-align: ;
986
            line-height: ;
987
            text-transform: ;
988
        }
989
990
        .container h4,
991
        .kd-photobox .phb-content h4,
992
        .content-area .vc_grid-item-mini .vc_gitem_row .vc_gitem-col h4 {
993
            color: ;
994
            font-weight: 300;
995
            font-family: Roboto;
996
            font-size: ;
997
            text-align: ;
998
            line-height: ;
999
            text-transform: ;
1000
        }
1001
1002
        .container h5 {
1003
            color: ;
1004
            font-weight: 300;
1005
            font-family: Roboto;
1006
            font-size: ;
1007
            text-align: ;
1008
            line-height: ;
1009
            text-transform: ;
1010
        }
1011
1012
        .container h6,
1013
        .key-icon-box h6.service-heading {
1014
            color: ;
1015
            font-weight: 300;
1016
            font-family: Roboto;
1017
            font-size: ;
1018
            text-align: ;
1019
            line-height: ;
1020
            text-transform: ;
1021
        }
1022
1023
1024
1025
        .woocommerce ul.products li.product .added_to_cart,
1026
        .woocommerce ul.products li.product .button,
1027
        .woocommerce div.product form.cart .button,
1028
        .tt_button,
1029
        .wpcf7 .wpcf7-submit,
1030
        .content-area .vc_grid .vc_gitem-zone-c .vc_gitem-link,
1031
        .tt_button.modal-menu-item,
1032
        .vc_grid-item-mini .blog-detailed-grid .vc_btn3-container a {
1033
            font-weight: ;
1034
            color: ;
1035
            font-size: ;
1036
            line-height: ;
1037
            text-transform: ;
1038
        }
1039
1040
        .tt_button:hover,
1041
        .wpcf7 .wpcf7-submit:hover,
1042
        .content-area .vc_grid .vc_gitem-zone-c .vc_gitem-link:hover,
1043
        .tt_button.modal-menu-item:hover,
1044
        .vc_grid-item-mini .blog-detailed-grid .vc_btn3-container:hover a {
1045
            color: ;
1046
        }
1047
1048
1049
        .topbar-phone,
1050
        .topbar-email,
1051
        .topbar-socials a,
1052
        #menu-topbar-menu a {
1053
            font-weight: ;
1054
            font-size: ;
1055
        }
1056
1057
1058
        body .navbar-default .nav li a,
1059
        body .modal-menu-item {
1060
            font-weight: ;
1061
            font-size: ;
1062
            text-transform: ;
1063
        }
1064
1065
1066
1067
1068
1069
        html {
1070
            background-color: ;
1071
            background-image: url("");
1072
            background-size: ;
1073
            background-repeat: ;
1074
            background-position: ;
1075
            background-attachment: ;
1076
        }
1077
1078
1079
        @media (max-width: 960px) {
1080
1081
            #logo .logo {
1082
                color: #ffffff !important;
1083
            }
1084
1085
            .navbar-nav .menu-item a {
1086
                color: #ffffff !important;
1087
            }
1088
1089
1090
1091
        }
1092
1093
        .entry-header.blog-header {
1094
            background: ;
1095
        }
1096
1097
        .search .breadcrumbs,
1098
        .search .entry-header .section-heading,
1099
        .archive.author .breadcrumbs,
1100
        .archive.author .entry-header .section-heading,
1101
        .archive.category .breadcrumbs,
1102
        .archive.category .entry-header .section-heading,
1103
        .archive.tag .breadcrumbs,
1104
        .archive.tag .entry-header .section-heading,
1105
        .archive.date .breadcrumbs,
1106
        .archive.date .entry-header .section-heading,
1107
        .blog .breadcrumbs,
1108
        .blog .entry-header .section-heading,
1109
        .blog .entry-header .section-subheading {
1110
            color: ;
1111
        }
1112
1113
        .page-template-default .entry-header {
1114
            background: ;
1115
        }
1116
1117
        .page-template-default .entry-header .breadcrumbs,
1118
        .page-template-default .entry-header .section-heading,
1119
        .page-template-default .entry-header .section-subheading {
1120
            color: ;
1121
        }
1122
1123
        .hover_solid_primary:hover {
1124
            background: #dc4c33 !important;
1125
            border-color: #dc4c33 !important;
1126
            color: #fff !important;
1127
        }
1128
1129
        .hover_solid_secondary:hover {
1130
            background: #1a3347 !important;
1131
            border-color: #1a3347 !important;
1132
            color: #fff !important;
1133
        }
1134
1135
        .hover_outline_primary:hover {
1136
            background: #dc4c33 !important;
1137
            border-color: #dc4c33 !important;
1138
            background: transparent !important;
1139
        }
1140
1141
        .hover_outline_secondary:hover {
1142
            color: #1a3347 !important;
1143
            border-color: #1a3347 !important;
1144
            background: transparent !important;
1145
        }
1146
1147
        .wpb_single_image.w-100-radius .vc_figure {
1148
            width: 100%;
1149
        }
1150
1151
        .wpb_single_image.w-100-radius .vc_single_image-wrapper {
1152
            width: 100%;
1153
        }
1154
1155
        .wpb_single_image.w-100-radius .vc_single_image-wrapper img {
1156
            margin: auto;
1157
            display: block;
1158
            height: auto;
1159
            width: 100%;
1160
            max-width: 1210px;
1161
            -webkit-transition: .25s ease-in-out;
1162
            -moz-transition: .25s ease-in-out;
1163
            -o-transition: .25s ease-in-out;
1164
            transition: .25s ease-in-out;
1165
            border-radius: 4px;
1166
            box-shadow: 0 5px 50px rgba(0, 0, 0, .07);
1167
        }
1168
1169
        .intro-headline {
1170
            text-align: center;
1171
            padding: 3.125em 0 1.125em;
1172
            max-width: 35.375em;
1173
            margin: 0 auto;
1174
            float: none;
1175
        }
1176
1177
        .blockquote {
1178
            margin: 0 auto;
1179
            width: 80%;
1180
            display: block;
1181
            float: none;
1182
        }
1183
1184
        .vc_custom_1560933306938 .vc_row.wpb_row .wpb_column:nth-child(2) .vc_column-inner .wpb_text_column p {
1185
            text-align: left;
1186
        }
1187
1188
        .vc_custom_1560927488915 blockquote:before {
1189
            content: "";
1190
            display: none;
1191
            margin-right: 0;
1192
        }
1193
    </style>
1194
    <link rel='stylesheet' id='font-awesome-css' href='/static/index/css/font-awesome.min1.css' type='text/css' media='all'>
1195
    <link rel='stylesheet' id='kd_iconsmind-css' href='/static/index/css/iconsmind.min.css' type='text/css' media='all'>
1196
    <link rel='stylesheet' id='js_composer_front-css' href='/static/index/css/js_composer.min.css' type='text/css' media='all'>
1197
    <link rel='stylesheet' id='redux-field-social-profiles-frontend-css-css'
1198
        href='/static/index/css/field_social_profiles_frontend.css' type='text/css' media='all'>
1199
    <link rel='stylesheet' id='photoswipe-css' href='/static/index/css/photoswipe.css' type='text/css' media='all'>
1200
    <link rel='stylesheet' id='photoswipe-skin-css' href='/static/index/css/photoswipe-default-skin.css' type='text/css'
1201
        media='all'>
1202
    <link rel='stylesheet' id='cf7cf-style-css' href='/static/index/css/style3.css' type='text/css' media='all'>
1203
    <link rel='stylesheet' id='redux-google-fonts-redux_ThemeTek-css' href='/static/index/css/css-Roboto3A4002C300.css'
1204
        type='text/css' media='all'>
1205
    <script type='text/javascript' src='/static/index/js/jquery.js'></script>
1206
    <script type='text/javascript' src='/static/index/js/jquery-migrate.min.js'></script>
1207
    <script type='text/javascript' src='/static/index/js/jquery.easing.min.js'></script>
1208
    <script type='text/javascript' src='/static/index/js/owl.carousel.min.js'></script>
1209
    <script type='text/javascript' src='/static/index/js/jquery.appear.js'></script>
1210
    <script type='text/javascript' src='/static/index/js/kd_addon_script.js'></script>
1211
    <script type='text/javascript' src='/static/index/js/jquery.themepunch.tools.min.js'></script>
1212
    <script type='text/javascript' src='/static/index/js/jquery.themepunch.revolution.min.js'></script>
1213
    <script type='text/javascript' src='/static/index/js/revolution.extension.actions.min.js'></script>
1214
    <script type='text/javascript' src='/static/index/js/revolution.extension.carousel.mi.js'></script>
1215
    <script type='text/javascript' src='/static/index/js/revolution.extension.kenburn.min.js'></script>
1216
    <script type='text/javascript' src='/static/index/js/revolution.extension.layeranimat.js'></script>
1217
    <script type='text/javascript' src='/static/index/js/revolution.extension.migration.m.js'></script>
1218
    <script type='text/javascript' src='/static/index/js/revolution.extension.migration.m.js'></script>
1219
    <script type='text/javascript' src='/static/index/js/revolution.extension.parallax.mi.js'></script>
1220
    <script type='text/javascript' src='/static/index/js/revolution.extension.slideanims..js'></script>
1221
    <script type='text/javascript' src='/static/index/js/revolution.extension.video.min.js'></script>
1222
    <script type='text/javascript' src='/static/index/js/jquery.easytabs.min.js'></script>
1223
    <script type='text/javascript' src='/static/index/js/photoswipe.min.js'></script>
1224
    <script type='text/javascript' src='/static/index/js/photoswipe-ui-default.min.js'></script>
1225
    <link rel='https://api.w.org/' href='https://www.Suryee-china.com/wp-json/'>
1226
    <link rel="EditURI" type="application/rsd+xml" title="RSD" href="https://www.Suryee-china.com/xmlrpc.php?rsd">
1227
    <link rel="wlwmanifest" type="application/wlwmanifest+xml"
1228
        href="https://www.Suryee-china.com/wp-includes/wlwmanifest.xml">
1229
1230
    <link rel='shortlink' href='https://www.Suryee-china.com/?p=16130'>
1231
1232
1233
    <meta http-equiv="Content-Security-Policy" content="upgrade-insecure-requests">
1234
1235
    <!-- Global site tag (gtag.js) - Google Ads: 732320201 -->
1236
    <script async="" src="/static/index/js/js-AW-732320201.js"></script>
1237
    <script>
1238
        window.dataLayer = window.dataLayer || [];
1239
        function gtag() {
1240
            dataLayer.push(arguments);
1241
        }
1242
        gtag('js', new Date());
1243
        gtag('config', 'AW-732320201');
1244
    </script>
1245
1246
    <!-- Global site tag (gtag.js) - Google Ads: 774202859 -->
1247
    <script async="" src="/static/index/js/js-AW-774202859.js"></script>
1248
    <script>
1249
        window.dataLayer = window.dataLayer || [];
1250
        function gtag() { dataLayer.push(arguments); }
1251
        gtag('js', new Date());
1252
        gtag('config', 'AW-774202859');
1253
    </script>
1254
1255
    <!-- Global site tag (gtag.js) - Google Analytics -->
1256
    <script async="" src="/static/index/js/js-UA-130558891-1.js"></script>
1257
    <script>
1258
        window.dataLayer = window.dataLayer || [];
1259
        function gtag() { dataLayer.push(arguments); }
1260
        gtag('js', new Date());
1261
1262
        gtag('config', 'UA-130558891-1');
1263
        gtag('set', { 'user_id': 'USER_ID' }); // Set the user ID using signed-in user_id.
1264
    </script>
1265
1266
    <!-- Global site tag (gtag.js) - Google Analytics -->
1267
    <script async="" src="/static/index/js/js-UA-164254356-1.js"></script>
1268
    <script>
1269
        window.dataLayer = window.dataLayer || [];
1270
        function gtag() { dataLayer.push(arguments); }
1271
        gtag('js', new Date());
1272
        gtag('config', 'UA-164254356-1');
1273
    </script>
1274
1275
    <!-- 百度统计 -->
1276
    <meta name="baidu-site-verification" content="ldNFVVRvye">
1277
    <script type="text/javascript">
1278
        var _hmt = _hmt || [];
1279
        (function () {
1280
            var hm = document.createElement("script");
1281
            hm.src = "https://hm.baidu.com/hm.js?c9b5fa6655d7e3a92464aa891e7a4791";
1282
            var s = document.getElementsByTagName("script")[0];
1283
            s.parentNode.insertBefore(hm, s);
1284
        })();
1285
        _hmt.push(['_setAutoPageview', true]);
1286
        _hmt.push(['_trackPageview', window.location.pathname]);
1287
    </script>
1288
1289
    <script>
1290
        var _hmt = _hmt || [];
1291
        (function () {
1292
            var hm = document.createElement("script");
1293
            hm.src = "https://hm.baidu.com/hm.js?a16e610e728dd4842934c4427f9044db";
1294
            var s = document.getElementsByTagName("script")[0];
1295
            s.parentNode.insertBefore(hm, s);
1296
        })();
1297
    </script>
1298
1299
    <script type="text/javascript">
1300
        (function () {
1301
            var didInit = false;
1302
            function initMunchkin() {
1303
                if (didInit === false) {
1304
                    didInit = true;
1305
                    Munchkin.init('533-LAV-099');
1306
                }
1307
            }
1308
            var s = document.createElement('script');
1309
            s.type = 'text/javascript';
1310
            s.async = true;
1311
            s.src = '//munchkin.marketo.net/munchkin.js';
1312
            s.onreadystatechange = function () {
1313
                if (this.readyState == 'complete' || this.readyState == 'loaded') {
1314
                    initMunchkin();
1315
                }
1316
            };
1317
            s.onload = initMunchkin;
1318
            document.getElementsByTagName('head')[0].appendChild(s);
1319
        })();
1320
    </script>
1321
1322
    <script src="/static/index/js/forms2.min.js"></script>
1323
    <!--[if lte IE 9]><link rel="stylesheet" type="text/css" href="https://www.Suryee-china.com/wp-content/plugins/js_composer/assets/css/vc_lte_ie9.min.css" media="screen"><![endif]-->
1324
    <script type="text/javascript">
1325
        var cli_flush_cache = true;
1326
    </script>
1327
    <script type="text/javascript">function setREVStartSize(e) {
1328
            try {
1329
                e.c = jQuery(e.c); var i = jQuery(window).width(), t = 9999, r = 0, n = 0, l = 0, f = 0, s = 0, h = 0;
1330
                if (e.responsiveLevels && (jQuery.each(e.responsiveLevels, function (e, f) { f > i && (t = r = f, l = e), i > f && f > r && (r = f, n = e) }), t > r && (l = n)), f = e.gridheight[l] || e.gridheight[0] || e.gridheight, s = e.gridwidth[l] || e.gridwidth[0] || e.gridwidth, h = i / s, h = h > 1 ? 1 : h, f = Math.round(h * f), "fullscreen" == e.sliderLayout) { var u = (e.c.width(), jQuery(window).height()); if (void 0 != e.fullScreenOffsetContainer) { var c = e.fullScreenOffsetContainer.split(","); if (c) jQuery.each(c, function (e, i) { u = jQuery(i).length > 0 ? u - jQuery(i).outerHeight(!0) : u }), e.fullScreenOffset.split("%").length > 1 && void 0 != e.fullScreenOffset && e.fullScreenOffset.length > 0 ? u -= jQuery(window).height() * parseInt(e.fullScreenOffset, 0) / 100 : void 0 != e.fullScreenOffset && e.fullScreenOffset.length > 0 && (u -= parseInt(e.fullScreenOffset, 0)) } f = u } else void 0 != e.minHeight && f < e.minHeight && (f = e.minHeight); e.c.closest(".rev_slider_wrapper").css({ height: f })
1331
            } catch (d) { console.log("Failure at Presize of Slider:" + d) }
1332
        };</script>
1333
    <style type="text/css" id="wp-custom-css">
1334
        /*footer - leagal & privacy*/
1335
        .footer-info {
1336
            color: #394c5f;
1337
            text-decoration: underline;
1338
            margin-right: 15px !important;
1339
        }
1340
1341
        html,
1342
        body,
1343
        * {
1344
            font-family: Helvetica, Arial, sans-serif !important;
1345
        }
1346
1347
        .fa {
1348
            font-family: FontAwesome !important;
1349
        }
1350
1351
        @media screen and (min-width:960px) {
1352
1353
            #menu-item-10544,
1354
            #menu-item-15559,
1355
            #menu-item-11328,
1356
            #menu-item-15983,
1357
            #menu-item-17917,
1358
            #menu-item-16098,
1359
            #menu-item-10544,
1360
            #menu-item-17059,
1361
            #menu-item-17061,
1362
            #menu-item-17060,
1363
            #menu-item-17068,
1364
            #menu-item-17069,
1365
            #menu-item-19057,
1366
            #menu-item-21263,
1367
            #menu-item-21262,
1368
            #menu-item-22311 {
1369
                margin-left: 20px;
1370
            }
1371
        }
1372
1373
1374
        @media screen and (max-width:420px) {
1375
1376
            #menu-item-10544,
1377
            #menu-item-15559,
1378
            #menu-item-11328,
1379
            #menu-item-15983,
1380
            #menu-item-17917,
1381
            #menu-item-16098,
1382
            #menu-item-10544,
1383
            #menu-item-17059,
1384
            #menu-item-17061,
1385
            #menu-item-17060,
1386
            #menu-item-17068,
1387
            #menu-item-17069,
1388
            #menu-item-19057,
1389
            #menu-item-21263,
1390
            #menu-item-21262,
1391
            #menu-item-22311 {
1392
                margin-left: 10px;
1393
            }
1394
        }
1395
1396
1397
        .navbar.navbar-default.with-topbar {
1398
            /* background-color: transparent; */
1399
        }
1400
1401
        @media (min-width: 960px) {
1402
1403
            .transparent-navigation .navbar.navbar-default,
1404
            .transparent-navigation .navbar.navbar-default .container,
1405
            .transparent-navigation .navbar.navbar-default.contained,
1406
            .transparent-navigation .navbar .topbar,
1407
            .transparent-navigation .navbar .menubar,
1408
            .home .navbar.navbar-default,
1409
            .home .navbar.navbar-default .container,
1410
            .home .navbar.navbar-default.contained,
1411
            .home .navbar .topbar,
1412
            .home .navbar .menubar {
1413
                background: #1a3347 !important;
1414
                border: none !important;
1415
            }
1416
        }
1417
1418
1419
        .navbar.navbar-default .menubar {
1420
            background-color: transparent;
1421
        }
1422
1423
        .navbar.navbar-default .topbar {
1424
            background-color: transparent;
1425
            border-bottom: 0;
1426
        }
1427
1428
        .navbar.navbar-default.navbar-shrink .menubar {
1429
            background-color: #1a3347 !important;
1430
        }
1431
1432
        .navbar.navbar-default .menubar ul li a,
1433
        .navbar.navbar-default .topbar ul li a {
1434
            color: #fff !important;
1435
        }
1436
1437
        #preloader .spinner::before {
1438
            background: #dc4c33 !important;
1439
        }
1440
1441
        .cmn-conpaddg .vc_element .vc_vc_single_image .wpb_single_image img,
1442
        #three-column-section img {
1443
            width: 382px !important;
1444
            height: 230px !important;
1445
            object-fit: cover !important;
1446
            text-align: center !important;
1447
            margin-left: auto !important;
1448
            margin-right: auto !important;
1449
        }
1450
1451
        .vc_column-inner .wpb_wrapper .video-container img {
1452
            width: 100% !important;
1453
        }
1454
1455
        .video-container.play-button-center {
1456
            overflow: hidden !important;
1457
        }
1458
1459
        #three-column-section .subtitle,
1460
        .wpb_wrapper .subtitle {
1461
            font-size: 14px !important;
1462
        }
1463
1464
        #logo {
1465
            margin-top: 15px !important;
1466
        }
1467
1468
        @media only screen and (max-width: 960px) {
1469
            #main-menu.navbar-collapse {
1470
                overflow-y: hidden;
1471
            }
1472
        }
1473
1474
        .videobox video {
1475
            width: 100% !important;
1476
            box-shadow: none !important;
1477
            height: 330px !important;
1478
            object-fit: cover !important;
1479
        }
1480
1481
        .lg-bg.vc_row-fluid,
1482
        .lg-bg .vc_column_container .vc_column-inner,
1483
        .lg-bg .vc_column_container .vc_column-inner .wpb_wrapper .vc_row,
1484
        .lg-bg .vc_column_container .vc_column-inner .wpb_wrapper .vc_row .wpb_column .vc_column-inner {
1485
            background-color: #f7f9fb !important;
1486
        }
1487
1488
        .lg-bg .vc_column_container .vc_column-inner .wpb_wrapper .vc_row .wpb_column .vc_column-inner .wpb_wrapper {
1489
            background-color: #fff !important;
1490
            border-radius: 5px !important;
1491
            border-bottom: 1px solid rgb(229, 231, 242) !important;
1492
            border-right: 1px solid rgb(229, 231, 242) !important;
1493
            border-left: 1px solid rgb(229, 231, 242) !important;
1494
        }
1495
1496
        .lg-bg .vc_column_container .vc_column-inner .wpb_wrapper .vc_row .wpb_column .vc_column-inner .wpb_wrapper .tt_button {
1497
            margin-bottom: 30px !important;
1498
        }
1499
1500
        .lg-bg #three-column-section>.wpb_column>.vc_column-inner>.wpb_wrapper:hover {
1501
            transition: .3s ease-in-out !important;
1502
            box-shadow: 0 0 10px #ddd !important;
1503
        }
1504
1505
        .lg-bg .vc_column_container .vc_column-inner .wpb_wrapper .vc_row .wpb_column .vc_column-inner .wpb_wrapper .kd-section-title,
1506
        .vc_column_container .vc_column-inner .wpb_wrapper .vc_row .wpb_column .vc_column-inner .wpb_wrapper .kd-section-title {
1507
            padding-right: 12px !important;
1508
            padding-left: 12px !important;
1509
        }
1510
1511
        .kd-photobox .phb-content {
1512
            padding: 20px !important;
1513
        }
1514
1515
        .photobox-carousel .owl-wrapper-outer .owl-item .kd-photobox .photobox-img>img {
1516
            width: 280px !important;
1517
            height: 168px !important;
1518
            object-fit: cover !important;
1519
        }
1520
1521
        #resources-video-carousel .owl-carousel {
1522
            position: relative !important;
1523
        }
1524
1525
        #resources-video-carousel .owl-nav {
1526
            position: absolute;
1527
            top: 40% !important;
1528
            width: 103% !important;
1529
            left: -20px;
1530
        }
1531
1532
        @media screen and (min-width:796px) {
1533
            #resources-video-carousel .owl-nav div::before {
1534
                font-size: 36px;
1535
            }
1536
        }
1537
1538
        #resources-video-carousel .owl-nav .owl-prev {
1539
            position: absolute;
1540
            left: 0;
1541
            z-index: 10;
1542
        }
1543
1544
        #resources-video-carousel .owl-nav .owl-next {
1545
            position: absolute;
1546
            right: 0;
1547
            z-index: 10;
1548
        }
1549
1550
        .spec-col {
1551
            cursor: pointer !important;
1552
        }
1553
1554
        .vc_tta-panels-container .vc_tta-panels .vc_tta-panel img {
1555
            width: 460px !important;
1556
            height: 280px !important;
1557
            object-fit: cover !important;
1558
        }
1559
1560
        .vc_tta-panels-container .vc_tta-panels .vc_tta-panel .vc_tta-panel-body .vc_row .wpb_column:nth-child(2) .vc_column-inner .wpb_text_column p,
1561
        .vc_row.wpb_row .wpb_column:nth-child(2) .vc_column-inner .wpb_text_column p {
1562
            text-align: center;
1563
        }
1564
1565
        .cm-whiteback .wpb_wrapper .kd-section-title .subtitle {
1566
            text-align: center !important;
1567
        }
1568
1569
        .banner-thankyou {
1570
            height: 70vh !important;
1571
        }
1572
1573
        .banner-thankyou .wpb_wrapper {
1574
            margin-top: 20vh !important;
1575
            text-align: left !important;
1576
        }
1577
1578
        .banner-thankyou .wpb_wrapper .kd-section-title,
1579
        .banner-thankyou .wpb_wrapper .tt_button {
1580
            margin-left: 0 !important;
1581
        }
1582
1583
        .banner-thankyou .wpb_wrapper h1,
1584
        .banner-thankyou .wpb_wrapper .subtitle {
1585
            text-align: left !important;
1586
        }
1587
1588
1589
        .banner-thankyou .wpb_wrapper>h1,
1590
        .banner-thankyou .wpb_wrapper .kd-section-title {
1591
            margin-bottom: 30px;
1592
        }
1593
1594
        .banner-thankyou .wpb_wrapper .kd-section-title {
1595
            width: 50%;
1596
        }
1597
1598
        .banner-thankyou .wpb_wrapper .kd-section-title .subtitle {
1599
            line-height: 2;
1600
            font-size: 16px !important;
1601
        }
1602
1603
        @media only screen and (max-width: 991px) {
1604
            .photobox-carousel .owl-wrapper-outer .owl-item .kd-photobox .photobox-img>img {
1605
                width: 100% !important;
1606
                object-fit: cover !important;
1607
            }
1608
        }
1609
1610
        @media only screen and (max-width: 760px) {
1611
            .wpb_single_image .vc_single_image-wrapper {
1612
                width: 100% !important;
1613
            }
1614
1615
            .cmn-conpaddg .vc_element .vc_vc_single_image .wpb_single_image img,
1616
            #three-column-section img {
1617
                width: 100% !important;
1618
                object-fit: cover !important;
1619
            }
1620
        }
1621
1622
        .mktoForm .mktoFormRow:nth-child(49) {
1623
            display: none !important;
1624
        }
1625
1626
        .mktoForm .mktoFormRow label {
1627
            display: none !important;
1628
        }
1629
1630
        .mktoForm .mktoFormRow input,
1631
        .mktoForm .mktoFormRow select,
1632
        .mktoForm .mktoFormRow textarea {
1633
            border: 1px solid #ccc !important;
1634
            padding: 3px 8px !important;
1635
            margin-bottom: 0 !important;
1636
            border-radius: 5px !important;
1637
            margin-bottom: 10px !important;
1638
        }
1639
1640
        .mktoForm .mktoButtonRow {
1641
            width: 50% !important;
1642
            margin: 0 auto !important;
1643
            padding: 0 !important;
1644
        }
1645
1646
        #mktoForm_2084.mktoForm .mktoButtonRow {
1647
            width: 85% !important;
1648
            margin-top: 15px !important;
1649
        }
1650
1651
        .mktoForm .mktoButtonRow .mktoButtonWrap.mktoPaperMashup .mktoButton {
1652
            margin: 0 !important;
1653
            padding: 0 !important;
1654
            text-align: center;
1655
            color: #fff;
1656
            background-color: #dc4c33 !important;
1657
            border-radius: 6px !important;
1658
        }
1659
1660
        @media only screen and (min-width: 991px) {
1661
            #modal-form {
1662
                /* overflow: hidden !important; */
1663
                overflow-x: scroll;
1664
            }
1665
        }
1666
1667
        #modal-form .kd-section-title .subtitle {
1668
            font-size: 16px !important;
1669
        }
1670
1671
        #contact-form-box .vc_custom_1536335612078 {
1672
            padding: 30px !important;
1673
            border-radius: 20px !important;
1674
        }
1675
1676
        #contact-form-box .vc_custom_1536335612078 .subtitle {
1677
            color: #000 !important;
1678
            font-size: 16px !important;
1679
        }
1680
1681
        #contact-form-box span {
1682
            color: #000 !important;
1683
            padding-right: 10px !important;
1684
        }
1685
1686
        @media only screen and (max-width: 991px) {
1687
            #three-column-section {
1688
                padding-left: 15px !important;
1689
                padding-right: 15px !important;
1690
            }
1691
1692
            #three-column-section figure.vc_figure {
1693
                width: 100% !important;
1694
            }
1695
1696
            div[data-vc-full-width="true"] .kd-section-title,
1697
            div[data-vc-full-width="true"] .kd-section-title * {
1698
                text-align: center;
1699
            }
1700
        }
1701
1702
        .vc_custom_1534605163956 .wpb_wrapper .summ_t img {
1703
            width: 6px !important;
1704
            height: 6px !important;
1705
        }
1706
1707
        .noresize .wpb_wrapper .vc_single_image-wrapper img {
1708
            width: 100% !important;
1709
            height: auto !important;
1710
        }
1711
1712
        .modal-popup {
1713
            width: 82% !important;
1714
        }
1715
1716
        /* The Modal (background) */
1717
        .page-id-11988 .modal {
1718
            display: none;
1719
            position: fixed;
1720
            left: 0;
1721
            top: 0;
1722
            width: 100%;
1723
            height: 100%;
1724
            overflow: auto !important;
1725
            background-color: rgb(0, 0, 0);
1726
            background-color: rgba(0, 0, 0, 0.4);
1727
            -webkit-animation-name: fadeIn;
1728
            -webkit-animation-duration: 0.4s;
1729
            animation-name: fadeIn;
1730
            animation-duration: 0.4s;
1731
            z-index: 111111;
1732
        }
1733
1734
        /* The Close Button */
1735
        .page-id-11988 .close {
1736
            color: white;
1737
            float: right;
1738
            font-size: 40px;
1739
            font-weight: bold;
1740
            margin-right: 20px;
1741
            margin-top: 20px !important;
1742
        }
1743
1744
        .page-id-11988 .close:hover,
1745
        .page-id-11988 .close:focus {
1746
            color: #000;
1747
            text-decoration: none;
1748
            cursor: pointer;
1749
        }
1750
1751
        .page-id-11988 .o-icon {
1752
            padding-left: 3vw;
1753
            float: left;
1754
            margin-right: 3vw;
1755
            width: 10% !important;
1756
            height: auto !important;
1757
            padding-top: 0 !important;
1758
            margin-top: -10px !important;
1759
        }
1760
1761
        .page-id-11988 .modal-header-title {
1762
            margin-top: 0 !important;
1763
            float: left;
1764
            color: #fff;
1765
        }
1766
1767
        .page-id-11988 .modal-content {
1768
            background-color: transparent !important;
1769
            position: fixed !important;
1770
            top: 50% !important;
1771
            bottom: 10px !important;
1772
            height: 600px !important;
1773
            overflow-y: auto !important;
1774
            left: 50% !important;
1775
            width: 85% !important;
1776
            -webkit-animation-name: slideOut;
1777
            -webkit-animation-duration: 0.3s;
1778
            animation-name: slideOut;
1779
            animation-duration: 0.3s;
1780
            background-image: url(static/image/pop-bg.png);
1781
            background-repeat: no-repeat;
1782
            background-size: 100%;
1783
            padding: 20px 0;
1784
            overflow: auto !important;
1785
            box-sizing: border-box !important;
1786
        }
1787
1788
        .page-id-11988 .modal-header {
1789
            margin-bottom: 60px !important;
1790
            border: 0 !important;
1791
        }
1792
1793
        .page-id-11988 .modal-white-back {
1794
            background-color: #fff;
1795
        }
1796
1797
        .page-id-11988 .columns {
1798
            display: block;
1799
            box-shadow: border-box;
1800
        }
1801
1802
        .page-id-11988 .columns:after {
1803
            clear: both;
1804
            display: table;
1805
            content: "";
1806
        }
1807
1808
        .page-id-11988 .columns .column-2 {
1809
            box-sizing: border-box;
1810
            float: left;
1811
            width: 46%;
1812
            padding: 30px;
1813
            padding-top: 30px;
1814
            padding-bottom: 30px;
1815
            padding-right: 2%;
1816
            padding-left: 3%;
1817
            margin-right: 3%;
1818
            margin-left: 3%;
1819
            margin-bottom: 10px;
1820
            box-shadow: 0px 12px 20px 6px #e5e5e5;
1821
        }
1822
1823
        .page-id-11988 .columns .column-2:nth-child(1) {
1824
            margin-left: 0;
1825
        }
1826
1827
        .page-id-11988 .columns .column-2:nth-child(2) {
1828
            margin-right: 0;
1829
        }
1830
1831
        .page-id-11988 .columns .column-2 p {
1832
            font-size: 14px !important;
1833
            color: #000 !important;
1834
            -webkit-font-smoothing: subpixel-antialiased;
1835
        }
1836
1837
        .page-id-11988 .columns .column-2 p img {
1838
            padding-right: 10px;
1839
        }
1840
1841
        .page-id-11988 .bottom {
1842
            padding-bottom: 30px;
1843
        }
1844
1845
        @media only screen and (max-width: 991px) {
1846
            .page-id-11988 .modal-header-title {
1847
                margin-top: -10px;
1848
                font-size: 16px;
1849
            }
1850
1851
            .page-id-11988 .o-icon {
1852
                padding-top: 0vw;
1853
                margin-top: -10px;
1854
            }
1855
1856
            .page-id-11988 .columns .column-2:nth-child(2) {
1857
                margin-left: 0;
1858
            }
1859
1860
            .page-id-11988 .columns .column-2 {
1861
                width: 100%;
1862
                float: none;
1863
                display: block;
1864
                clear: both;
1865
            }
1866
        }
1867
1868
        @media only screen and (max-width: 760px) {
1869
            #campaign-page-header-section .wpb_content_element {
1870
                padding: 10px !important;
1871
                background-color: rgba(255, 255, 255, .8) !important;
1872
                margin-bottom: 20px;
1873
            }
1874
1875
            #campaign-page-header-section .wpb_content_element h4 {
1876
                font-size: 20px !important;
1877
            }
1878
1879
            .page-id-11988 #rev_slider_46_1_forcefullwidth {
1880
                margin-top: 65px !important;
1881
            }
1882
1883
            .close {
1884
                margin-top: -6px !important;
1885
                margin-right: 10px;
1886
                color: #000 !important;
1887
            }
1888
1889
            #open-day-time-section .vc_tta-container .vc_tta-panels-container .vc_tta-panel .vc_tta-panel-body .vc_row .wpb_column {
1890
                width: 50% !important;
1891
                float: left !important;
1892
                padding-right: 10px;
1893
                box-sizing: border-box;
1894
            }
1895
        }
1896
1897
        .text-center {
1898
            text-align: center;
1899
        }
1900
1901
        .modal-white-back {
1902
            padding-right: 50px;
1903
            padding-left: 50px;
1904
        }
1905
1906
        .spacing-1 {
1907
            letter-spacing: 1px;
1908
        }
1909
1910
        .columns .column-3 {
1911
            box-sizing: border-box;
1912
            float: left;
1913
            width: 30%;
1914
            padding-top: 30px;
1915
            padding-bottom: 30px;
1916
            padding-right: 2%;
1917
            padding-left: 3%;
1918
            margin-right: 3%;
1919
            margin-left: 3%;
1920
            margin-bottom: 10px;
1921
            box-shadow: 0px 12px 20px 6px #e5e5e5;
1922
        }
1923
1924
        .columns .column-3:nth-child(1) {
1925
            margin-left: 0;
1926
        }
1927
1928
        .columns .column-3:nth-child(2) {
1929
            margin-left: 0;
1930
        }
1931
1932
        .columns .column-3:nth-child(3) {
1933
            margin-right: 0;
1934
            margin-left: 0;
1935
        }
1936
1937
        .columns .column-3 p {
1938
            font-weight: 100;
1939
            font-size: 13px;
1940
        }
1941
1942
        @media only screen and (max-width: 991px) {
1943
            .columns .column-3:nth-child(2) {
1944
                margin-left: 0;
1945
            }
1946
1947
            .columns .column-3 {
1948
                width: 100%;
1949
                float: none;
1950
                display: block;
1951
                clear: both;
1952
            }
1953
        }
1954
1955
        #tabs-to-the-left {
1956
            padding-left: 0 !important;
1957
            padding-right: 0 !important;
1958
            padding-bottom: 0 !important;
1959
        }
1960
1961
        #tabs-to-the-left .vc_tta-panel-body {
1962
            border: 0 !important;
1963
        }
1964
1965
        #tabs-to-the-left .vc_tta-tabs-container {
1966
            border-bottom: 0 !important;
1967
        }
1968
1969
        #tabs-to-the-left .vc_tta-tabs-list {
1970
            width: 40% !important;
1971
            margin-left: 3% !important;
1972
        }
1973
1974
        #tabs-to-the-left .vc_row .kd-section-title h2 {
1975
            color: #153248 !important;
1976
        }
1977
1978
        #tabs-to-the-left .tabs-to-the-left-first-section .subtitle {
1979
            color: #153248 !important;
1980
            font-size: 18px !important;
1981
        }
1982
1983
        #tabs-to-the-left .tabs-to-the-left-second-section .subtitle {
1984
            color: #153248 !important;
1985
            font-size: 18px !important;
1986
        }
1987
1988
        #tabs-to-the-left .tabs-to-the-left-third-section.vc_row .kd-section-title .subtitle {
1989
            color: #fff !important;
1990
            font-size: 22px !important;
1991
        }
1992
1993
        #tabs-to-the-left .tabs-to-the-left-third-section.vc_row .kd-section-title h2 {
1994
            color: #fff !important;
1995
        }
1996
1997
        #tabs-to-the-left .vc_row .kd-section-title .subtitle {
1998
            color: #153248 !important;
1999
            font-weight: 400 !important;
2000
        }
2001
2002
        @media only screen and (min-width: 761px) {
2003
            #tabs-to-the-left .vc_tta-panel .vc_tta-panel-body .vc_row {
2004
                background-size: 100% 100% !important;
2005
            }
2006
2007
            #tabs-to-the-left .vc_tta-panels-container {
2008
                border-top: 15px solid #009BDD !important;
2009
                box-sizing: border-box;
2010
            }
2011
2012
            #tabs-to-the-left .vc_row .kd-section-title .subtitle {
2013
                font-weight: 400 !important;
2014
            }
2015
        }
2016
2017
        @media only screen and (min-width: 991px) {
2018
            #bring-forward {
2019
                position: relative !important;
2020
                z-index: 9 !important;
2021
            }
2022
        }
2023
2024
        .mobile-dropdown::before {
2025
            font-family: FontAwesome !important;
2026
        }
2027
2028
        .vc_tta-panel-body .vc_row-has-fill .wpb_text_column ul>li:before {
2029
            color: #dc4c33 !important;
2030
        }
2031
2032
        a.tt_button.tt_secondary_button {
2033
            color: #dc4c33 !important;
2034
        }
2035
2036
        a.tt_button.tt_secondary_button:hover {
2037
            color: #fff !important;
2038
        }
2039
2040
        .page-id-12377 #tabs-to-the-left,
2041
        .page-id-12625 #tabs-to-the-left,
2042
        .page-id-12627 #tabs-to-the-left {
2043
            background-color: transparent !important;
2044
        }
2045
2046
        @media only screen and (max-width: 760px) {
2047
            #tabs-to-the-left {
2048
                padding-top: 75px !important;
2049
            }
2050
        }
2051
2052
        @media only screen and (min-width: 761px) {
2053
2054
            /* Auto Nov 2018 */
2055
            .page-id-12377 .navbar.navbar-default.navbar-fixed-top:not(.navbar-shrink) .topbar .topbar-socials ul li a i,
2056
            .page-id-12377 .navbar.navbar-default.navbar-fixed-top:not(.navbar-shrink) .topbar .topbar-menu-search .topbar-menu ul li a,
2057
            .page-id-12377 .navbar.navbar-default.navbar-fixed-top:not(.navbar-shrink) .topbar .topbar-search .fa-search {
2058
                color: #153248 !important;
2059
                font-weight: 400 !important;
2060
            }
2061
2062
            /* Edu Nov 2018 */
2063
            .page-id-12625 .navbar.navbar-default.navbar-fixed-top:not(.navbar-shrink) .topbar .topbar-socials ul li a i,
2064
            .page-id-12625 .navbar.navbar-default.navbar-fixed-top:not(.navbar-shrink) .topbar .topbar-menu-search .topbar-menu ul li a,
2065
            .page-id-12625 .navbar.navbar-default.navbar-fixed-top:not(.navbar-shrink) .topbar .topbar-search .fa-search {
2066
                color: #153248 !important;
2067
                font-weight: 400 !important;
2068
            }
2069
2070
            /* Toy Nov 2018 */
2071
            .page-id-12627 .navbar.navbar-default.navbar-fixed-top:not(.navbar-shrink) .topbar .topbar-socials ul li a i,
2072
            .page-id-12627 .navbar.navbar-default.navbar-fixed-top:not(.navbar-shrink) .topbar .topbar-menu-search .topbar-menu ul li a,
2073
            .page-id-12627 .navbar.navbar-default.navbar-fixed-top:not(.navbar-shrink) .topbar .topbar-search .fa-search {
2074
                color: #153248 !important;
2075
                font-weight: 400 !important;
2076
            }
2077
2078
2079
            /* Auto Nov 2018 */
2080
            .page-id-12377 .navbar.navbar-default.navbar-fixed-top:not(.navbar-shrink) .topbar .topbar-socials ul li a i:hover,
2081
            .page-id-12377 .navbar.navbar-default.navbar-fixed-top:not(.navbar-shrink) .topbar .topbar-menu-search .topbar-menu ul li a:hover,
2082
            .page-id-12377 .navbar.navbar-default.navbar-fixed-top:not(.navbar-shrink) .topbar .topbar-search .fa-search:hover {
2083
                color: #888 !important;
2084
            }
2085
2086
2087
            /* Edu Nov 2018 */
2088
            .page-id-12625 .navbar.navbar-default.navbar-fixed-top:not(.navbar-shrink) .topbar .topbar-socials ul li a i:hover,
2089
            .page-id-12625 .navbar.navbar-default.navbar-fixed-top:not(.navbar-shrink) .topbar .topbar-menu-search .topbar-menu ul li a:hover,
2090
            .page-id-12625 .navbar.navbar-default.navbar-fixed-top:not(.navbar-shrink) .topbar .topbar-search .fa-search:hover {
2091
                color: #888 !important;
2092
            }
2093
2094
2095
            /* Toy Nov 2018 */
2096
            .page-id-12627 .navbar.navbar-default.navbar-fixed-top:not(.navbar-shrink) .topbar .topbar-socials ul li a i:hover,
2097
            .page-id-12627 .navbar.navbar-default.navbar-fixed-top:not(.navbar-shrink) .topbar .topbar-menu-search .topbar-menu ul li a:hover,
2098
            .page-id-12627 .navbar.navbar-default.navbar-fixed-top:not(.navbar-shrink) .topbar .topbar-search .fa-search:hover {
2099
                color: #888 !important;
2100
            }
2101
2102
            /* Auto Nov 2018 */
2103
            .page-id-12377 .navbar.navbar-default.navbar-fixed-top:not(.navbar-shrink) .menubar #main-menu>ul>li>a,
2104
            .page-id-12377 .navbar.navbar-default.navbar-fixed-top:not(.navbar-shrink) .menubar #main-menu>ul>li>a:hover {
2105
                color: #153248 !important;
2106
                font-weight: 600 !important;
2107
2108
            }
2109
2110
2111
            /* Edu Nov 2018 */
2112
            .page-id-12625 .navbar.navbar-default.navbar-fixed-top:not(.navbar-shrink) .menubar #main-menu>ul>li>a,
2113
            .page-id-12625 .navbar.navbar-default.navbar-fixed-top:not(.navbar-shrink) .menubar #main-menu>ul>li>a:hover {
2114
                color: #153248 !important;
2115
                font-weight: 600 !important;
2116
2117
            }
2118
2119
2120
            /* Toy Nov 2018 */
2121
            .page-id-12627 .navbar.navbar-default.navbar-fixed-top:not(.navbar-shrink) .menubar #main-menu>ul>li>a,
2122
            .page-id-12627 .navbar.navbar-default.navbar-fixed-top:not(.navbar-shrink) .menubar #main-menu>ul>li>a:hover {
2123
                color: #153248 !important;
2124
                font-weight: 600 !important;
2125
2126
            }
2127
        }
2128
2129
        @media only screen and (min-width: 991px) {
2130
            #tabs-to-the-left .second-section-left-column {
2131
                padding-left: 400px !important;
2132
            }
2133
2134
            #tabs-to-the-left .second-section-left-column {
2135
                padding-left: 400px !important;
2136
            }
2137
2138
            #tabs-to-the-left .second-section-right-column {
2139
                margin-left: -125px !important;
2140
            }
2141
        }
2142
2143
        #single-page blockquote:before {
2144
            content: "" !important;
2145
            display: none !important;
2146
            margin-right: 0;
2147
        }
2148
2149
        @media(max-width: 767px) {
2150
            .rev_slider .tt_button {
2151
                font-size: 14px !important;
2152
                padding: 10px !important;
2153
            }
2154
2155
            #single-page .vc_row[data-vc-full-width] {
2156
                padding-top: 20px !important;
2157
            }
2158
2159
            #single-page .wpb_text_column ol li {
2160
                text-align: left !important;
2161
            }
2162
        }
2163
2164
        /* 2019 July CSCSIEE2019*/
2165
        #post-14801 .wp-post-image {
2166
            display: block;
2167
            width: 800px;
2168
            margin: auto;
2169
        }
2170
2171
        #post-14801 .entry-image {
2172
            display: none;
2173
        }
2174
2175
        #post-14801 .words-hidden {
2176
            visibility: hidden;
2177
        }
2178
2179
        @media(min-width: 768px) and (max-width: 1100px) {
2180
            iframe[name=chat] {
2181
                max-width: 650 !important;
2182
                max-height: 650 !important;
2183
                left: 0;
2184
            }
2185
        }
2186
2187
        @media(max-width: 767px) {
2188
            iframe[name=chat] {
2189
                width: 100% !important;
2190
                height: 100% !important;
2191
                left: 0;
2192
            }
2193
2194
            #customer-service {
2195
                display: none;
2196
            }
2197
        }
2198
2199
        @media screen and (min-width:796px) {
2200
            .page-id-15110 .vc_custom_1567674275432 {
2201
                margin-bottom: 0 !important;
2202
            }
2203
        }
2204
2205
        /*marketo form width*/
2206
        @media screen and (min-width: 796px) {
2207
            .mktoForm-middle {
2208
                width: 50% !important;
2209
                margin: auto;
2210
            }
2211
2212
            .mktoForm .mktoFormRow {
2213
                /*flex: 1 1 380px;
2214
    order: -1;*/
2215
            }
2216
        }
2217
2218
2219
        #footer>div.upper-footer>div>div>div.col-xs-12.col-sm-12.col-md-2-4.col-lg-2-4.forth-widget-area>div:nth-child(2)>div {
2220
            display: none;
2221
        }
2222
2223
        .topbar-search .search-form .search-field {
2224
            color: #153248;
2225
        }
2226
    </style>
2227
    <noscript>
2228
        <style type="text/css">
2229
            .wpb_animate_when_almost_visible {
2230
                opacity: 1;
2231
            }
2232
        </style>
2233
    </noscript>
2234
    <div id="modal-wechat" class="modal-popup" style="align-items:center;justify-content:space-evenly;">
2235
        <span onclick="document.getElementById('modal-wechat').style.display='none'" class="close" title="Close Modal"
2236
            style="color: #555; padding-top: 10px;">&times;</span>
2237
        <div style="display: none;">
2238
            <p style="text-align: center;">
2239
                <a href="javascript:;">
2240
                    <img src="/static/index/picture/qr_Suryee-150x150.png">
2241
                </a>
2242
            </p>
2243
            &nbsp;
2244
            <p style="text-align: center;">微信订阅号</p>
2245
        </div>
2246
        <div>
2247
            <p style="text-align: center;">
2248
                <a href="javascript:;">
2249
                    <img src="/static/index/picture/qr_Suryee2-150x150.png">
2250
                </a>
2251
            </p>
2252
            &nbsp;
2253
            <p style="text-align: center;">微信服务号</p>
2254
        </div>
2255
    </div>
2256
    <script>
2257
        // Get the modal
2258
        var modal_wechat = document.getElementById('modal-wechat');
2259
    </script>
2260
2261
    <!-- 查询经销商marketo form -->
2262
    <div id="dealer-search" class="tailwind-modal fixed top-0 left-0 w-full h-full"
2263
        style="display:none; z-index:999999;">
2264
        <div class="fixed inset-0 transition-opacity">
2265
            <div class="absolute inset-0 bg-gray-500 opacity-50"></div>
2266
        </div>
2267
        <div class="flex w-full h-full items-center justify-center">
2268
            <div
2269
                class="relative bg-white rounded-lg shadow-lg w-full h-full max-h-full md:h-auto md:max-w-lg overflow-hidden overflow-y-auto">
2270
                <div class="absolute top-0 right-0 m-4 text-gray-400 text-4xl cursor-pointer"
2271
                    onclick="jQuery(this).closest('.tailwind-modal').hide();return false;">×</div>
2272
                <div class="p-8">
2273
                    <h2 class="text-xl text-center">查询经销商</h2>
2274
                    <div class="m-auto w-1-6 border-0 border-solid border-b border-red-400 mb-8"></div>
2275
                    <script src="/static/index/js/forms2.min.js"></script>
2276
                    <form id="mktoForm_4682"></form>
2277
                    <script>MktoForms2.loadForm("//app-lon08.marketo.com", "533-LAV-099", 4682);
2278
                        /*
2279
                         * @author Sanford Whiteman
2280
                         * @version v1.104
2281
                         * @license MIT License: This license must appear with all reproductions of this software.
2282
                         *
2283
                         * Create a completely barebones, user-styles-only Marketo form
2284
                         * by removing inline STYLE attributes and disabling STYLE and LINK elements
2285
                         */
2286
                        function destyleMktoForm(mktoForm, moreStyles) {
2287
                            var formEl = mktoForm.getFormElem()[0],
2288
                                arrayFrom = Function.prototype.call.bind(Array.prototype.slice);
2289
2290
                            // remove element styles from <form> and children
2291
                            var styledEls = arrayFrom(formEl.querySelectorAll("[style]")).concat(formEl);
2292
                            styledEls.forEach(function (el) {
2293
                                el.removeAttribute("style");
2294
                            });
2295
2296
                            // disable remote stylesheets and local <style>s
2297
                            var styleSheets = arrayFrom(document.styleSheets);
2298
                            styleSheets.forEach(function (ss) {
2299
                                if ([mktoForms2BaseStyle, mktoForms2ThemeStyle].indexOf(ss.ownerNode) != -1 || formEl.contains(ss.ownerNode)) {
2300
                                    ss.disabled = true;
2301
                                }
2302
                            });
2303
2304
                            if (!moreStyles) {
2305
                                formEl.setAttribute("data-styles-ready", "true");
2306
                            }
2307
                        };
2308
2309
                        MktoForms2.whenRendered(function (form) {
2310
                            destyleMktoForm(form);
2311
                        });
2312
                    </script>
2313
                </div>
2314
            </div>
2315
        </div>
2316
    </div>
2317
2318
    <script type="text/javascript">
2319
        jQuery(document).ready(function ($) {
2320
            setTimeout(function () {
2321
                (function (m, ei, q, i, a, j, s) {
2322
                    m[i] = m[i] || function () {
2323
                        (m[i].a = m[i].a || []).push(arguments)
2324
                    };
2325
                    j = ei.createElement(q),
2326
                        s = ei.getElementsByTagName(q)[0];
2327
                    j.async = true;
2328
                    j.charset = 'UTF-8';
2329
                    j.src = 'https://static.meiqia.com/dist/meiqia.js?_=t';
2330
                    s.parentNode.insertBefore(j, s);
2331
                })(window, document, 'script', '_MEIQIA');
2332
                _MEIQIA('entId', 116099);
2333
                //_MEIQIA('withoutBtn');
2334
                //_MEIQIA('init');
2335
            }, 4000);
2336
        });
2337
    </script>
2338
2339
    <script type="text/javascript">
2340
        jQuery(document).ready(function ($) {
2341
            $(".contact-chat-bot").wrap("<div class='custom-function' onclick='myFunction();'></div>");
2342
        });
2343
    </script>
2344
    <script type="text/javascript">
2345
        jQuery(document).ready(function ($) {
2346
            $(".page-id-12377 .navbar .menubar #logo a img:nth-child(2)").attr("src", "https://www.Suryee-china.com/wp-content/uploads/2018/06/Suryee-logo-b-small-1.png");
2347
            $(".page-id-7478 .wpb_wrapper").on("click", function () {
2348
                $(".page-id-7478 .owl-wrapper .owl-item").css("width", "620.5px");
2349
            });
2350
2351
            $(".page-id-12627 .navbar .menubar #logo a img:nth-child(2)").attr("src", "https://www.Suryee-china.com/wp-content/uploads/2018/06/Suryee-logo-b-small-1.png");
2352
            $(".page-id-7478 .wpb_wrapper").on("click", function () {
2353
                $(".page-id-7478 .owl-wrapper .owl-item").css("width", "620.5px");
2354
            });
2355
2356
            $(".page-id-12625 .navbar .menubar #logo a img:nth-child(2)").attr("src", "https://www.Suryee-china.com/wp-content/uploads/2018/06/Suryee-logo-b-small-1.png");
2357
            $(".page-id-7478 .wpb_wrapper").on("click", function () {
2358
                $(".page-id-7478 .owl-wrapper .owl-item").css("width", "620.5px");
2359
            });
2360
        });
2361
    </script>
2362
2363
    <script>
2364
        var exdays = 365;
2365
        var urlString = window.location.href;
2366
        var urlObj = new URL(urlString);
2367
        var pUtmSource = urlObj.searchParams.get("utm_source");
2368
        var pUtmMedium = urlObj.searchParams.get("utm_medium");
2369
        var pUtmCampaign = urlObj.searchParams.get("utm_campaign");
2370
2371
        if (pUtmSource != null) setCookie('_mkt_utm_source', pUtmSource, exdays);
2372
        if (pUtmMedium != null) setCookie('_mkt_utm_medium', pUtmMedium, exdays);
2373
        if (pUtmCampaign != null) setCookie('_mkt_utm_campaign', pUtmCampaign, exdays);
2374
2375
        /*
2376
        console.log('pUtmSource : ' + pUtmSource);
2377
        console.log('pUtmMedium : ' + pUtmMedium);
2378
        console.log('pUtmCampaign : ' + pUtmCampaign);
2379
2380
        console.log('cUtmSource : ' + getCookie('_mkt_utm_source'));
2381
        console.log('cUtmMedium : ' + getCookie('_mkt_utm_medium'));
2382
        console.log('cUtmCampaign : ' + getCookie('_mkt_utm_campaign'));
2383
        */
2384
2385
        function setCookie(cname, cvalue, exdays) {
2386
            var d = new Date();
2387
            d.setTime(d.getTime() + (exdays * 24 * 60 * 60 * 1000));
2388
            var expires = "expires=" + d.toUTCString();
2389
            document.cookie = cname + "=" + cvalue + ";" + expires + ";path=/";
2390
        }
2391
2392
        function getCookie(cname) {
2393
            var name = cname + "=";
2394
            var ca = document.cookie.split(';');
2395
2396
            for (var i = 0; i < ca.length; i++) {
2397
                var c = ca[i];
2398
                while (c.charAt(0) == ' ') {
2399
                    c = c.substring(1);
2400
                }
2401
                if (c.indexOf(name) == 0) {
2402
                    return c.substring(name.length, c.length);
2403
                }
2404
            }
2405
            return '';
2406
        }
2407
2408
        function checkCookie(cname) {
2409
            var cObj = getCookie(cname);
2410
            cStatus = cObj != '' ? true : false;
2411
2412
            return cStatus;
2413
        }
2414
    </script>
2415
</head>
2416
2417
<body data-rsssl="1"
2418
    class="post-template-default single single-post postid-16130 single-format-standard wpb-js-composer js-comp-ver-5.5.2 vc_responsive">
2419
    <div id="preloader">
2420
        <div class="spinner"></div>
2421
    </div>
2422
2423
    <!-- Contact Modal template -->
2424
    <!-- END Contact Modal template -->
2425
2426
    <!--头部导航-->
2427
{include file="public/nav" /}
2428
<!--头部导航结束-->
1
{layout name="layout" /}
2429 2
2430 3
<div id="wrapper" class=" ">
2431
    <header class="entry-header blog-header with-topbar">
4
    <header class="entry-header blog-header with-topbar" style="padding-top: 47px;">
2432 5
        <div class="row blog-page-heading blog-title-left">
2433 6
            <div class="container">
2434 7
            </div>
@ -2459,7 +32,7 @@
2459 32
                        <div class="tags"><span class="tags-label">Tags:</span>
2460 33
                            {php}$tags = explode(',',$data->keywords);{/php}
2461 34
                            {foreach $tags as $value}
2462
                            <a href="javascript:void(0);" rel="tag" data-wpel-link="internal">{$value}</a> 
35
                            <a href="/tags/{$value}" rel="tag" data-wpel-link="internal">{$value}</a> 
2463 36
                            {/foreach}
2464 37
                        </div>
2465 38
                    </div>
@ -2521,736 +94,3 @@
2521 94
    </section>
2522 95
    <!--WPFC_FOOTER_START-->
2523 96
</div>
2524
2525
<footer id="footer" class="hidden md:block classic">
2526
    <style>
2527
        @media (min-width: 1200px) .col-lg-2-4 {
2528
            width: 20%;
2529
        }
2530
2531
        @media (min-width: 992px) {
2532
            .col-md-2-4 {
2533
                width: 20%;
2534
            }
2535
        }
2536
2537
        #menu-item-14789 {
2538
            margin-top: 20px;
2539
            font-size: 16px;
2540
            font-weight: 600;
2541
        }
2542
    </style>
2543
    <div class="upper-footer">
2544
        <div class="container">
2545
            <div class="row">
2546
                <div class="col-xs-12 col-sm-12 col-md-2-4 col-lg-2-4 first-widget-area">
2547
                    <div class="footer_widget">
2548
                        <h5 class="widget-title"><span>行业</span></h5>
2549
                        <div class="menu-%e8%a1%8c%e4%b8%9a-container">
2550
                            <ul id="menu-%e8%a1%8c%e4%b8%9a" class="menu">
2551
                                <li id="menu-item-7741"
2552
                                    class="menu-item menu-item-type-post_type menu-item-object-page menu-item-7741"><a
2553
                                        href="automotive.html" data-wpel-link="internal">汽车</a></li>
2554
                                <li id="menu-item-7743"
2555
                                    class="menu-item menu-item-type-post_type menu-item-object-page menu-item-7743"><a
2556
                                        href="medical.html" data-wpel-link="internal">医疗</a></li>
2557
                                <li id="menu-item-7742"
2558
                                    class="menu-item menu-item-type-post_type menu-item-object-page menu-item-7742"><a
2559
                                        href="education.html" data-wpel-link="internal">教育</a></li>
2560
                                <li id="menu-item-7740"
2561
                                    class="menu-item menu-item-type-post_type menu-item-object-page menu-item-7740"><a
2562
                                        href="aerospace.html" data-wpel-link="internal">航空</a></li>
2563
                                <li id="menu-item-7744"
2564
                                    class="menu-item menu-item-type-post_type menu-item-object-page menu-item-7744"><a
2565
                                        href="consumer-products.html" data-wpel-link="internal">消费品</a></li>
2566
                            </ul>
2567
                        </div>
2568
                    </div>
2569
                </div>
2570
                <div class="col-xs-12 col-sm-12 col-md-2-4 col-lg-2-4 second-widget-area">
2571
                    <div class="footer_widget">
2572
                        <h5 class="widget-title"><span>应用</span></h5>
2573
                        <div class="menu-%e8%a7%a3%e5%86%b3%e6%96%b9%e6%a1%88%e4%b8%8e%e5%ba%94%e7%94%a8-container">
2574
                            <ul id="menu-%e8%a7%a3%e5%86%b3%e6%96%b9%e6%a1%88%e4%b8%8e%e5%ba%94%e7%94%a8" class="menu">
2575
                                <li id="menu-item-7745"
2576
                                    class="menu-item menu-item-type-post_type menu-item-object-page menu-item-7745"><a
2577
                                        href="challenges-we-solve1.html" data-wpel-link="internal">行业挑战</a></li>
2578
                                <li id="menu-item-7747"
2579
                                    class="menu-item menu-item-type-post_type menu-item-object-page menu-item-7747"><a
2580
                                        href="rapid-prototyping.html" data-wpel-link="internal">快速原型</a></li>
2581
                                <li id="menu-item-7746"
2582
                                    class="menu-item menu-item-type-post_type menu-item-object-page menu-item-7746"><a
2583
                                        href="tooling.html" data-wpel-link="internal">工具制作</a></li>
2584
                                <li id="menu-item-7748"
2585
                                    class="menu-item menu-item-type-post_type menu-item-object-page menu-item-7748"><a
2586
                                        href="manufacturing.html" data-wpel-link="internal">生产制造</a></li>
2587
                                <li id="menu-item-17198"
2588
                                    class="menu-item menu-item-type-post_type menu-item-object-page menu-item-17198"><a
2589
                                        href="jigs-and-fixtures.html" data-wpel-link="internal">3D打印应用-工装夹具</a></li>
2590
                                <li id="menu-item-17197"
2591
                                    class="menu-item menu-item-type-post_type menu-item-object-page menu-item-17197"><a
2592
                                        href="realism.html" data-wpel-link="internal">高度逼真</a></li>
2593
                            </ul>
2594
                        </div>
2595
                    </div>
2596
                </div>
2597
                <div class="col-xs-12 col-sm-12 col-md-2-4 col-lg-2-4 third-widget-area">
2598
                    <div class="footer_widget">
2599
                        <h5 class="widget-title"><span>产品</span></h5>
2600
                        <div class="menu-%e4%ba%a7%e5%93%81-container">
2601
                            <ul id="menu-%e4%ba%a7%e5%93%81" class="menu">
2602
                                <li id="menu-item-7750"
2603
                                    class="menu-item menu-item-type-post_type menu-item-object-page menu-item-7750"><a
2604
                                        href="3d-printers.html" data-wpel-link="internal">3D 打印机</a></li>
2605
                                <li id="menu-item-7751"
2606
                                    class="menu-item menu-item-type-post_type menu-item-object-page menu-item-7751"><a
2607
                                        href="materials.html" data-wpel-link="internal">材料</a></li>
2608
                                <li id="menu-item-7752"
2609
                                    class="menu-item menu-item-type-post_type menu-item-object-page menu-item-7752"><a
2610
                                        href="software.html" data-wpel-link="internal">软件</a></li>
2611
                                <li id="menu-item-7753"
2612
                                    class="menu-item menu-item-type-post_type menu-item-object-page menu-item-7753"><a
2613
                                        href="continuous-building.html" data-wpel-link="internal">未来工厂</a></li>
2614
                            </ul>
2615
                        </div>
2616
                    </div>
2617
                    <div class="widget_text footer_widget">
2618
                        <h5 class="widget-title"><span><a href="" target="_blank" data-wpel-link="internal">3D打印服务</a></span></h5>
2619
                        <div class="textwidget custom-html-widget"></div>
2620
                    </div>
2621
                </div>
2622
                <div class="col-xs-12 col-sm-12 col-md-2-4 col-lg-2-4 forth-widget-area">
2623
                    <div class="footer_widget">
2624
                        <h5 class="widget-title"><span>资料中心</span></h5>
2625
                        <div class="menu-%e8%b5%84%e6%96%99%e4%b8%ad%e5%bf%83-container">
2626
                            <ul id="menu-%e8%b5%84%e6%96%99%e4%b8%ad%e5%bf%83" class="menu">
2627
                                <li id="menu-item-17083"
2628
                                    class="menu-item menu-item-type-post_type menu-item-object-page menu-item-17083"><a
2629
                                        href="resources.html" data-wpel-link="internal">资料库</a></li>
2630
                                <li id="menu-item-17081"
2631
                                    class="menu-item menu-item-type-post_type menu-item-object-page menu-item-17081"><a
2632
                                        href="video.html" data-wpel-link="internal">视频中心</a></li>
2633
                            </ul>
2634
                        </div>
2635
                    </div>
2636
                    <div class="widget_text footer_widget">
2637
                        <h5 class="widget-title"><span><a href="news.html" data-wpel-link="internal">最新动态</a></span></h5>
2638
                        <div class="textwidget custom-html-widget"></div>
2639
                    </div>
2640
                    <div class="widget_text footer_widget">
2641
                        <h5 class="widget-title"><span><a href="行业资讯.html" data-wpel-link="internal">行业资讯</a></span></h5>
2642
                        <div class="textwidget custom-html-widget"></div>
2643
                    </div>
2644
                    <div class="widget_text footer_widget">
2645
                        <h5 class="widget-title"><span><a href="about-us.html" data-wpel-link="internal">关于 Suryee</a></span>
2646
                        </h5>
2647
                        <div class="textwidget custom-html-widget"></div>
2648
                    </div>
2649
                </div>
2650
                <div class="col-xs-12 col-sm-12 col-md-2-4 col-lg-2-4 fifth-widget-area">
2651
                    <div class="footer_widget">
2652
                        <h5 class="widget-title"><span>联系我们</span></h5>
2653
                        <div class="menu-%e8%81%94%e7%b3%bb%e6%88%91%e4%bb%ac-container">
2654
                            <ul id="menu-%e8%81%94%e7%b3%bb%e6%88%91%e4%bb%ac" class="menu">
2655
                                <li id="menu-item-6573"
2656
                                    class="menu-item menu-item-type-custom menu-item-object-custom menu-item-6573"><a
2657
                                        href="javascript:;" data-wpel-link="external" target="_blank"
2658
                                        rel="nofollow noopener noreferrer">全球办事处</a></li>
2659
                                <li id="menu-item-6709"
2660
                                    class="menu-item menu-item-type-custom menu-item-object-custom menu-item-6709"><a
2661
                                        href="become-a-reseller.html" data-wpel-link="internal">成为代理商</a></li>
2662
                            </ul>
2663
                        </div>
2664
                    </div>
2665
                    <div class="footer_widget">
2666
                        <h5 class="widget-title"><span>招贤纳士</span></h5>
2667
                        <div class="menu-%e6%8b%9b%e8%b4%a4%e7%ba%b3%e5%a3%ab-container">
2668
                            <ul id="menu-%e6%8b%9b%e8%b4%a4%e7%ba%b3%e5%a3%ab" class="menu">
2669
                                <li id="menu-item-6634"
2670
                                    class="menu-item menu-item-type-custom menu-item-object-custom menu-item-6634"><a
2671
                                        href="javascript:;" data-wpel-link="external" target="_blank"
2672
                                        rel="nofollow noopener noreferrer">招贤纳士</a></li>
2673
                            </ul>
2674
                        </div>
2675
                    </div>
2676
                </div>
2677
            </div>
2678
        </div>
2679
    </div>
2680
    <div class="middle-footer">
2681
        <div class="container">
2682
            <div class="footer-business-widget">
2683
                <div class="footer-business"><img width="300" height="81"
2684
                        src="/static/index/picture/logo.png"
2685
                        class="image wp-image-6527 footer-business-logo attachment-medium size-medium"
2686
                        alt="" style="max-width: 100%; height: auto;"
2687
                        srcset="/static/index/picture/logo.png"
2688
                        sizes="(max-width: 300px) 100vw, 300px"></div>
2689
                <div class="footer-business">
2690
                    <div class="textwidget">
2691
                        <p style="display: none;"><a href="javascript:;" data-wpel-link="internal">
2692
                            <img
2693
                                    class="footer-business-qr alignnone wp-image-7791 size-thumbnail"
2694
                                    src="/static/index/picture/code.jpg" alt="" width="150" height="150"></a></p>
2695
                        &nbsp;
2696
                        <p style="display: none;">微信订阅号</p>
2697
                    </div>
2698
                </div>
2699
                <div class="footer-business">
2700
                    <div class="textwidget">
2701
                        <p style="text-align: center;"><a href="javascript:;" target="_blank" rel="noopener noreferrer"
2702
                                data-wpel-link="internal"><img class="alignnone size-thumbnail wp-image-7851 footer-business-qr"
2703
                                    src="/static/index/picture/code.jpg" alt="微信服务号" width="150" height="150"></a></p><br>
2704
                        <p style="text-align: center;">微信服务号</p>
2705
                    </div>
2706
                </div>
2707
            </div>
2708
        </div>
2709
    </div>
2710
    <div class="lower-footer">
2711
        <div class="container">
2712
            <div class="pull-left">
2713
                <span>
2714
                    © Copyright 2020 | Suryee | All rights reserved </span>
2715
            </div>
2716
            <div class="pull-right">
2717
                <ul id="menu-footer-menu" class="navbar-footer">
2718
                    <li id="menu-item-7762" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-7762"><a
2719
                            href="javascript:;" data-wpel-link="external" target="_blank" rel="nofollow noopener noreferrer">法律</a>
2720
                    </li>
2721
                    <li id="menu-item-9571" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-9571"><a
2722
                            href="javascript:;" data-wpel-link="external" target="_blank"
2723
                            rel="nofollow noopener noreferrer">隐私政策</a></li>
2724
                </ul>
2725
            </div>
2726
        </div>
2727
    </div>
2728
</footer>
2729
2730
2731
2732
<div class="back-to-top">
2733
    <i class="fa fa-angle-up"></i>
2734
</div>
2735
<div class="pswp" tabindex="-1" role="dialog" aria-hidden="true">
2736
    <div class="pswp__bg"></div>
2737
    <div class="pswp__scroll-wrap">
2738
        <div class="pswp__container">
2739
            <div class="pswp__item"></div>
2740
            <div class="pswp__item"></div>
2741
            <div class="pswp__item"></div>
2742
        </div>
2743
        <div class="pswp__ui pswp__ui--hidden">
2744
            <div class="pswp__top-bar">
2745
                <div class="pswp__counter"></div>
2746
                <button class="pswp__button pswp__button--close" title="Close (Esc)"></button>
2747
                <button class="pswp__button pswp__button--fs" title="Toggle fullscreen"></button>
2748
                <button class="pswp__button pswp__button--zoom" title="Zoom in/out"></button>
2749
                <div class="pswp__preloader">
2750
                    <div class="pswp__preloader__icn">
2751
                        <div class="pswp__preloader__cut">
2752
                            <div class="pswp__preloader__donut"></div>
2753
                        </div>
2754
                    </div>
2755
                </div>
2756
            </div>
2757
            <button class="pswp__button pswp__button--arrow--left" title="Previous (arrow left)">
2758
            </button>
2759
            <button class="pswp__button pswp__button--arrow--right" title="Next (arrow right)">
2760
            </button>
2761
            <div class="pswp__caption">
2762
                <div class="pswp__caption__center"></div>
2763
            </div>
2764
        </div>
2765
    </div>
2766
</div>
2767
<script type='text/javascript' src='/static/index/js/jarallax.min.js'></script>
2768
<script type='text/javascript' src='/static/index/js/jarallax-video.min.js'></script>
2769
<script type='text/javascript' src='/static/index/js/ofi.min.js'></script>
2770
<script type='text/javascript'>
2771
    /* <![CDATA[ */
2772
    var AWBData = { "settings": { "disable_parallax": [], "disable_video": [], "full_width_fallback": true } };
2773
/* ]]> */
2774
</script>
2775
<script type='text/javascript' src='/static/index/js/awb.min.js'></script>
2776
<script type='text/javascript'>
2777
    /* <![CDATA[ */
2778
    var wpcf7 = { "apiSettings": { "root": "https:\/\/www.Suryee-china.com\/wp-json\/contact-form-7\/v1", "namespace": "contact-form-7\/v1" } };
2779
/* ]]> */
2780
</script>
2781
<script type='text/javascript' src='/static/index/js/scripts.js'></script>
2782
<script type='text/javascript' src='/static/index/js/scripts1.js'></script>
2783
<script type='text/javascript' src='/static/index/js/bootstrap.min.js'></script>
2784
<script type='text/javascript' src='/static/index/js/scripts2.js'></script>
2785
<script type='text/javascript'>
2786
    jQuery(document).on('click', '.contact-btn', function (e) {
2787
        e.preventDefault();
2788
        jQuery('#modal-form').toggle();
2789
    });
2790
    jQuery(document).on('click', '.online-btn', function (e) {
2791
        e.preventDefault();
2792
        myFunction();
2793
    });
2794
</script>
2795
<script type='text/javascript'>
2796
    /* <![CDATA[ */
2797
    var wpcf7cf_global_settings = { "ajaxurl": "https:\/\/www.Suryee-china.com\/wp-admin\/admin-ajax.php" };
2798
/* ]]> */
2799
</script>
2800
<script type='text/javascript' src='/static/index/js/scripts3.js'></script>
2801
<script type='text/javascript' src='/static/index/js/wp-embed.min.js'></script>
2802
<!-- footer -->
2803
2804
<script type="text/javascript">
2805
    jQuery(function () {
2806
2807
        setTimeout(function () {
2808
            var dateObj = new Date();
2809
            jQuery('#footer > div.lower-footer > div > div.pull-left > span').html('Copyright © ' + dateObj.getFullYear() + ' Suryee Ltd. All Rights Reserved | <a href="http://www.miibeian.gov.cn/">沪ICP备19002716号</a>');
2810
        }, 1500);
2811
2812
        jQuery('#preloader').fadeOut();
2813
2814
        /*
2815
        // Baidu Tongji : _trackEvent.Video
2816
        jQuery('body').find('.play-video').each(function (i, e) {
2817
            jQuery(e).on('click', function () {
2818
                _hmt.push(['_trackEvent', 'video', 'play']);
2819
                console.log('_trackEvent.video.play: 点击 [ 观看视频 ' + (i + 1) + ' ]');
2820
            });
2821
        });
2822
2823
        // Baidu Tongji : _trackEvent.button.download_white_paper
2824
        jQuery('body').find('.prim_text').each(function (i, e) {
2825
2826
            if (jQuery(e).text() == '观看视频') {
2827
                jQuery(e).parent().on('click', function () {
2828
                    _hmt.push(['_trackEvent', 'video', 'play']);
2829
                    console.log('_trackEvent.video.play: 点击 [ 观看视频 ]');
2830
                });
2831
            } else if (jQuery(e).html() == '下载案例') {
2832
                jQuery(e).parent().on('click', function () {
2833
                    _hmt.push(['_trackEvent', 'button', 'Marketo_case']);
2834
                    // console.log('_trackEvent.button.download_case: 点击 [ 下载案例 ]');
2835
                    console.log('_trackEvent.button.Marketo_case: 点击 [ 下载案例 ]');
2836
                });
2837
            } else if (jQuery(e).text() != jQuery(e).text().replace('白皮书', '')) {
2838
                jQuery(e).parent().on('click', function () {
2839
                    _hmt.push(['_trackEvent', 'button', 'download_white_paper']);
2840
                    console.log('_trackEvent.button.download_white_paper: 点击 [ 白皮书 ]');
2841
                });
2842
            } else if (jQuery(e).text() != jQuery(e).text().replace('下载', '')) {
2843
                jQuery(e).parent().on('click', function () {
2844
                    _hmt.push(['_trackEvent', 'button', 'Marketo_Device']);
2845
                    // console.log('_trackEvent.button.download_pdf: 点击 [ 下载 ]');
2846
                    console.log('_trackEvent.button.Marketo_Device: 点击 [ 下载 ]');
2847
                });
2848
            }
2849
            //2019/10/05 add
2850
            else if (jQuery(e).text() != jQuery(e).text().replace('了解更多', '')) {
2851
                jQuery(e).parent().on('click', function () {
2852
                    _hmt.push(['_trackEvent', 'button', 'LearnMore_link']);
2853
                    console.log('_trackEvent.button.LearnMore_link: 点击 [ 了解更多 ]');
2854
                });
2855
            } else if (jQuery(e).text() != jQuery(e).text().replace('获取报价', '')) {
2856
                jQuery(e).parent().on('click', function () {
2857
                    _hmt.push(['_trackEvent', 'button', 'Marketo_quote']);
2858
                    console.log('_trackEvent.button.Marketo_quote: 点击 [ 获取报价 ]');
2859
                });
2860
            } else if (jQuery(e).text() != jQuery(e).text().replace('联系我们', '')) {
2861
                jQuery(e).parent().on('click', function () {
2862
                    _hmt.push(['_trackEvent', 'button', 'Marketo_contact']);
2863
                    console.log('_trackEvent.button.Marketo_contact: 点击 [ 联系我们 ]');
2864
                });
2865
            } else if (jQuery(e).text() != jQuery(e).text().replace('在线咨询', '')) {
2866
                jQuery(e).parent().on('click', function () {
2867
                    _hmt.push(['_trackEvent', 'Meiqia', 'consultation']);
2868
                    console.log('_trackEvent.Meiqia.consultation: 点击 [ 在线咨询 ]');
2869
                });
2870
            }
2871
        });
2872
2873
        // Baidu Tongji : _trackEvent.button
2874
        jQuery('body').find('.mktoButtonWrap').each(function (i, e) {
2875
            jQuery(e).on('click', function () {
2876
                _hmt.push(['_trackEvent', 'button', 'Marketo_deliver']);
2877
                console.log('_trackEvent.button.Marketo_deliver: 点击 [ 提交 ' + (i + 1) + ' ]');
2878
            });
2879
        });
2880
2881
        // Baidu Tongji : _trackEvent.Meiqia
2882
        setTimeout(function () {
2883
            jQuery('#customer-service').find('.service-info').each(function (i, e) {
2884
                jQuery(e).on('click', function () {
2885
                    //console.log('_MEIQIA.service-info:'+i);
2886
                    if (i == 0) {
2887
                        _hmt.push(['_trackEvent', 'Meiqia', 'quote']);
2888
                        console.log('_trackEvent.Meiqiq.quote : 点击 [ 产品询价 ]');
2889
                    } else if (i == 1) {
2890
                        _hmt.push(['_trackEvent', 'Meiqia', 'consultation']);
2891
                        console.log('_trackEvent.Meiqiq.consultation : 点击 [ 在线咨询 ]');
2892
                    } else if (i == 2) {
2893
                        _hmt.push(['_trackEvent', 'Meiqia', 'call']);
2894
                        console.log('_trackEvent.Meiqiq.call : 点击 [ 02133196068 ]');
2895
                    } else if (i == 3) {
2896
                        _hmt.push(['_trackEvent', 'Meiqia', 'call']);
2897
                        console.log('_trackEvent.Meiqia.call : 点击 [ 02133196093 ]');
2898
                    }
2899
                });
2900
            });
2901
        }, 500);
2902
        */
2903
    });
2904
2905
    jQuery(document).ready(function ($) {
2906
2907
        // Auto Nov 2018 Campaign Page
2908
        $("#tabs-to-the-left .vc_tta-tabs-container .vc_tta-tabs-list > li:nth-child(1) > a").attr("id", "first-tab-of-three");
2909
        $("#first-tab-of-three").attr("href", "");
2910
        $("#first-tab-of-three").on("click", function () {
2911
            window.location = '/campaign/auto-nov2018/#1540990677601-0dae4a59-09c3';
2912
        });
2913
        if (window.location.href === '/campaign/auto-nov2018/#1540990677601-0dae4a59-09c3') {
2914
            $("#tabs-to-the-left .vc_tta-tabs-container ul li:nth-child(1)").addClass("vc_active");
2915
            $("#tabs-to-the-left .vc_tta-tabs-container ul li:nth-child(2)").removeClass("vc_active");
2916
            $("#tabs-to-the-left .vc_tta-tabs-container ul li:nth-child(3)").removeClass("vc_active");
2917
        }
2918
2919
        // Edu Nov 2018 Campaign Page
2920
        $("#tabs-to-the-left .vc_tta-tabs-container .vc_tta-tabs-list > li:nth-child(2) > a").attr("id", "second-tab-of-three");
2921
        $("#second-tab-of-three").attr("href", "");
2922
        $("#second-tab-of-three").on("click", function () {
2923
            window.location = '/campaign/edu-nov2018/#1541086015019-24492743-9ef9';
2924
        });
2925
        if (window.location.href === '/campaign/edu-nov2018/#1541086015019-24492743-9ef9') {
2926
            $("#tabs-to-the-left .vc_tta-tabs-container ul li:nth-child(2)").addClass("vc_active");
2927
            $("#tabs-to-the-left .vc_tta-tabs-container ul li:nth-child(1)").removeClass("vc_active");
2928
            $("#tabs-to-the-left .vc_tta-tabs-container ul li:nth-child(3)").removeClass("vc_active");
2929
        }
2930
2931
        // Toy Nov 2018 Campaign Page
2932
        $("#tabs-to-the-left .vc_tta-tabs-container .vc_tta-tabs-list > li:nth-child(3) > a").attr("id", "third-tab-of-three");
2933
        $("#third-tab-of-three").attr("href", "");
2934
        $("#third-tab-of-three").on("click", function () {
2935
            window.location = '/campaign/toy-nov2018/#1541086105878-e5242714-9e2d';
2936
        });
2937
        if (window.location.href === '/campaign/toy-nov2018/#1541086105878-e5242714-9e2d') {
2938
            $("#tabs-to-the-left .vc_tta-tabs-container ul li:nth-child(3)").addClass("vc_active");
2939
            $("#tabs-to-the-left .vc_tta-tabs-container ul li:nth-child(1)").removeClass("vc_active");
2940
            $("#tabs-to-the-left .vc_tta-tabs-container ul li:nth-child(2)").removeClass("vc_active");
2941
        }
2942
2943
    });
2944
2945
</script>
2946
2947
2948
<script type="text/javascript">
2949
    jQuery(document).ready(function ($) {
2950
        $(".back-to-top.active").css({ 'right': "0 !important", "bottom": "10px !important" });
2951
        $(".lower-footer .pull-left span").html("Copyright © 2020 Suryee Ltd. All Rights Reserved | <a href='http://www.miibeian.gov.cn/'>沪ICP备19002716号</a>");
2952
        $(".redux-social-media-list li:nth-child(3) a").attr("href", "http://v.qq.com/vplus/432e276f02f3d84e16827c2b59a49cdf/videos");
2953
    });
2954
2955
    function myFunction() {
2956
        (function (m, ei, q, i, a, j, s) {
2957
            m[i] = m[i] || function () {
2958
                (m[i].a = m[i].a || []).push(arguments)
2959
            };
2960
            j = ei.createElement(q),
2961
                s = ei.getElementsByTagName(q)[0];
2962
            j.async = true;
2963
            j.charset = 'UTF-8';
2964
            j.src = 'https://static.meiqia.com/dist/meiqia.js?_=t';
2965
            s.parentNode.insertBefore(j, s);
2966
        })(window, document, 'script', '_MEIQIA');
2967
        _MEIQIA('entId', '116099');
2968
        _MEIQIA('withoutBtn');
2969
        _MEIQIA("showPanel");
2970
        // _MEIQIA('endConversation', handleEnd);
2971
        _MEIQIA('endConversation');
2972
    }
2973
2974
    function toggleModal(title) {
2975
        var title = title;
2976
        var subtitle = '';
2977
        jQuery('#modal-mktoform header h2').text(title);
2978
        jQuery('#modal-mktoform header h6').text(subtitle);
2979
        newPage = 'javascript:;';
2980
        jQuery('#modal-mktoform button[type=submit]').on('click', function () {
2981
            if (!jQuery('.mktoRequired', jQuery('#modal-mktoform')).filter(function () {
2982
                return !this.value && !jQuery('option:selected', this).val();
2983
            }).length) {
2984
            }
2985
        });
2986
        jQuery('#modal-mktoform').toggle();
2987
        return false;
2988
    }
2989
2990
    jQuery(function () {
2991
        jQuery(".customerButton").click(function () {
2992
            jQuery('#customer-service').toggleClass('hide-meiqia');
2993
        });
2994
        jQuery('#test').click(function () {
2995
            jQuery('#modal-form').toggle();
2996
        });
2997
2998
        jQuery('a[href*=\\.pdf][target=marketo]').click(function () {
2999
            jQuery('#modal-mktoform-3128').attr('data-attachment', jQuery(this).attr('href'));
3000
            jQuery('#modal-mktoform-3128').toggle();
3001
            jQuery('#modal-mktoform-3128 button[type=submit]').on('click', function () {
3002
                if (!jQuery('.mktoRequired', jQuery('#modal-mktoform-3128')).filter(function () {
3003
                    return !this.value && !jQuery('option:selected', this).val();
3004
                }).length) {
3005
                    window.open(jQuery('#modal-mktoform-3128').data('attachment'));
3006
                }
3007
            });
3008
            return false;
3009
        });
3010
3011
        jQuery('a[href*=\\.pdf]').click(function () {
3012
            _hmt.push(['_trackEvent', 'button', 'Download']);
3013
        });
3014
3015
3016
    });
3017
3018
3019
    jQuery(function () {
3020
        var btns = ["下载安全数据表"];
3021
        var blank = 'javascript:void(0)';
3022
        jQuery('a[href*=\\.zip]').filter(function () {
3023
            return btns.join(',').indexOf(jQuery(this).text()) >= 0;
3024
        }).filter(function () {
3025
            if (this.href !== blank) {
3026
                var downloadlink = this.href;
3027
3028
                jQuery(this).attr('data-href', downloadlink);
3029
                this.href = blank;
3030
                this.target = '';
3031
            }
3032
            return true;
3033
        }).click(function () {
3034
            if (jQuery(this).attr('data-href')) {
3035
                jQuery('#modal-mktoform-3128').attr('data-attachment', jQuery(this).attr('data-href'));
3036
            }
3037
            jQuery('#modal-mktoform-3128').toggle();
3038
            jQuery('#modal-mktoform-3128 button[type=submit]').on('click', function () {
3039
                if (!jQuery('.mktoRequired', jQuery('#modal-mktoform-3128')).filter(function () {
3040
                    return !this.value && !jQuery('option:selected', this).val();
3041
                }).length) {
3042
                    window.open(jQuery('#modal-mktoform-3128').data('attachment'));
3043
                    _hmt.push(['_trackEvent', 'button', 'Marketo_Download']);
3044
                }
3045
3046
            });
3047
            // return false;
3048
        });
3049
    });
3050
</script>
3051
3052
3053
<div id="customer-service">
3054
    <div class="container-customer-service">
3055
        <div onclick="" class="customerButton">
3056
            <img src="/static/index/picture/pull-bar.png">
3057
        </div>
3058
        <div class="customer-service" style="width: 70px; background-color: #fff; display:block;">
3059
            <a href="tel:+2133196093" data-wpel-link="internal">
3060
                <div class="service-header" style="padding: 5px; background-color: #153348;">
3061
                    <img class="fixed-logo" src="/static/index/picture/Suryee-logo1.png" alt="Web">
3062
                </div>
3063
            </a>
3064
            <a href="javascript:;" class="cursor-pointer block service-info trigger-mktoform-7194"
3065
                title="感谢您对Suryee的关注 我们会尽快与您联系" data-wpel-link="internal"><img
3066
                    src="/static/index/picture/003-coin-1.png">
3067
                <span>产品询价</span>
3068
            </a>
3069
            <div class="service-info" onclick='myFunction();' style="cursor: pointer;"><img style="margin:6px 20%"
3070
                    src="/static/index/picture/002-support-1-1.png">
3071
                <span>在线咨询</span>
3072
            </div>
3073
            <a href="tel:+02133196068" data-wpel-link="internal">
3074
                <div class="service-info"><img src="/static/index/picture/001-phone-call-1.png">
3075
                    <span>021 3319 6068</span>
3076
                </div>
3077
            </a>
3078
            <a href="tel:+02133196093" data-wpel-link="internal">
3079
                <div class="service-info"><img src="/static/index/picture/001-phone-call-1.png">
3080
                    <span>021 3319 6093</span>
3081
                </div>
3082
            </a>
3083
            <!--div class="service-info online-consult" onclick='myFunction();' style="cursor: pointer;"><img
3084
                    src="/wp-content/uploads/2018/08/004-3d-printer-1.png"/>
3085
            <span>打印服务</span>
3086
        </div>
3087
3088
        <div class="service-info meet-appointment" onclick='myFunction();' style="cursor: pointer;"><img
3089
                    src="/wp-content/uploads/2018/08/005-calendar-1.png"/>
3090
            <span>预约参观</span>
3091
        </div-->
3092
3093
        </div>
3094
    </div>
3095
</div>
3096
3097
<script>
3098
    (function () {
3099
        var bp = document.createElement('script');
3100
        var curProtocol = window.location.protocol.split(':')[0];
3101
        if (curProtocol === 'https') {
3102
            bp.src = 'https://zz.bdstatic.com/linksubmit/push.js';
3103
        } else {
3104
            bp.src = 'http://push.zhanzhang.baidu.com/push.js';
3105
        }
3106
        var s = document.getElementsByTagName("script")[0];
3107
        s.parentNode.insertBefore(bp, s);
3108
    })();
3109
</script>
3110
3111
<div id="modal-mktoform-3128" class="modal-popup alpha">
3112
    <span onclick="jQuery('#modal-mktoform-3128').toggle();void(0)" class="close" title="Close Modal"
3113
        style="color: #555; padding-top: 10px;">×</span>
3114
    <header class="kd-section-title col-lg-12 text-center solid-line sep-border-width-1    ">
3115
        <h2 class="separator_on">资料下载</h2>
3116
        <div class="kd-separator below_title">
3117
            <div class="kd-separator-line"></div>
3118
        </div>
3119
        <h6 class="subtitle ">填写信息,获取资料</h6>
3120
    </header>
3121
    <script>if (!document.getElementById('mktoForm_3128')) {
3122
            document.write('<form id="mktoForm_3128"></form>')
3123
        }
3124
        ;</script>
3125
3126
</div>
3127
3128
<script>
3129
    MktoForms2.loadForm("//app-lon08.marketo.com", "533-LAV-099", 3128, function (form) {
3130
        console.log('Form 3128 loaded');
3131
    });
3132
3133
    function destyleMktoForm(mktoForm, moreStyles) {
3134
        var formEl = mktoForm.getFormElem()[0],
3135
            arrayFrom = Function.prototype.call.bind(Array.prototype.slice);
3136
3137
        // remove element styles from <form> and children
3138
        var styledEls = arrayFrom(formEl.querySelectorAll("[style]")).concat(formEl);
3139
        styledEls.forEach(function (el) {
3140
            el.removeAttribute("style");
3141
        });
3142
3143
        // disable remote stylesheets and local <style>s
3144
        var styleSheets = arrayFrom(document.styleSheets);
3145
        styleSheets.forEach(function (ss) {
3146
            if ([mktoForms2BaseStyle, mktoForms2ThemeStyle].indexOf(ss.ownerNode) != -1 || formEl.contains(ss.ownerNode)) {
3147
                ss.disabled = true;
3148
            }
3149
        });
3150
3151
        if (!moreStyles) {
3152
            formEl.setAttribute("data-styles-ready", "true");
3153
        }
3154
    };
3155
3156
    MktoForms2.whenRendered(function (form) {
3157
        destyleMktoForm(form);
3158
    });
3159
3160
</script>
3161
3162
<style>
3163
    #customer-service {
3164
        display: none;
3165
    }
3166
3167
    #meiqia-container {
3168
        display: none;
3169
    }
3170
3171
    .modal-popup {
3172
        /*width: 82% !important;*/
3173
        transform: none;
3174
        left: 50%;
3175
        top: 50%;
3176
        margin: calc(-32.5vh - 50px) 0 0 -41%;
3177
        z-index: 999999 !important;
3178
    }
3179
3180
    .modal-popup.alpha {
3181
        max-width: 500px;
3182
        margin: calc(-32.5vh - 50px) 0 0 -250px;
3183
    }
3184
3185
    @media screen and (max-width: 994px) {
3186
        .modal-popup {
3187
            margin: calc(-32.5vh - 0px) 0 0 -41%;
3188
        }
3189
3190
        .modal-popup.alpha {
3191
            max-width: 500px;
3192
            margin: calc(-32.5vh - 0px) 0 0 -150px;
3193
        }
3194
    }
3195
3196
    @media screen and (max-width: 760px) {
3197
        .modal-popup {
3198
            width: 100% !important;
3199
            height: calc(100%-70px) !important;
3200
            margin: 0 !important;
3201
            top: 70px !important;
3202
            left: 0 !important;
3203
            bottom: 0 !important;
3204
            padding: 10px !important;
3205
            transform: none !important;
3206
            max-height: none !important;
3207
            overflow: scroll;
3208
            border-radius: 0 !important;
3209
        }
3210
3211
        .close {
3212
            margin-top: 10px !important;
3213
            margin-right: 10px !important;
3214
            color: #000 !important;
3215
        }
3216
3217
        .modal-popup.alpha {
3218
            max-width: 500px;
3219
            margin: calc(-32.5vh - 0px) 0 0 -150px;
3220
        }
3221
    }
3222
3223
    html,
3224
    body,
3225
    * {
3226
        font-family: Roboto, "Microsoft YaHei", "微软雅黑", 'HanSerif', Helvetica, Tahoma, Arial, "STXihei", "华文细黑", sans-serif !important;
3227
    }
3228
3229
    .vc_column_container .vc_column-inner .wpb_wrapper .tab_font .vc_row .wpb_column .vc_column-inner .wpb_wrapper .kd-section-title {
3230
        padding-left: 0 !important;
3231
        padding-right: 0 !important;
3232
    }
3233
3234
    #mktoForm_4682.mktoForm {
3235
        display: initial;
3236
    }
3237
</style>
3238
3239
<script>
3240
    var toDealer = document.querySelector("#menu-item-16923 > a"); //get the button
3241
    toDealer.onclick = function () {
3242
        document.getElementById('dealer-search').style.display = 'block';
3243
    };
3244
</script>
3245
3246
<script>
3247
    jQuery(function () {
3248
        jQuery('.modal-video-button a').click(function () {
3249
            jQuery(this).closest('.vc_row').find('.video-container a')[0].click();
3250
        });
3251
    });
3252
</script>
3253
</body>
3254
3255
</html>
3256
<!-- permalink_structure ends with slash (/) but REQUEST_URI does not end with slash (/) -->

+ 2 - 2
application/index/view/article/information.html

@ -19,9 +19,9 @@
19 19
                            data-wpel-link="internal">{$value.title}</a></h2>
20 20
                    <div class="entry-meta">
21 21
                        <span class="published"><span class="fa fa-clock-o"></span><a href="javascript:;"
22
                                title="大型3d打印机的优点有哪些?" data-wpel-link="internal">{$value.create_time|date="Y-m-d", ###}</a></span>
22
                                title="{$value.title}" data-wpel-link="internal">{$value.create_time|date="Y-m-d", ###}</a></span>
23 23
                        <span class="author"><span class="fa fa-keyboard-o"></span><a href="javascript:;"
24
                                title="由Cerelia发布" rel="author" data-wpel-link="internal">{$value.writer}</a></span>
24
                                title="由{$value.username}发布" rel="author" data-wpel-link="internal">{$value.username}</a></span>
25 25
                        <span class="blog-label"><span class="fa fa-folder-open-o"></span><a href="/information"
26 26
                                rel="category tag" data-wpel-link="internal">行业资讯</a></span>
27 27
                    </div>

+ 54 - 0
application/index/view/article/tags.html

@ -0,0 +1,54 @@
1
{layout name="layout" /}
2
3
<div id="wrapper" class=" ">
4
        <header class="entry-header blog-header with-topbar">
5
            <div class="row blog-page-heading blog-title-left">
6
                <div class="header-overlay parallax-overlay" style="background-image:url('')"></div>
7
                <div class="container">
8
                    <!-- 样式修改 -->
9
                    <h2 class="section-heading" style="font-size: 25px;margin: 0;padding: 0;line-height: 1;border-left: 5px solid #45B6F7;padding-left: 10px;text-align: left;">
10
                        {$tag}</h2>
11
                </div>
12
            </div>
13
        </header>
14
        <div id="posts-content" class="container use-sidebar blog-img-top-list">
15
            <div class="col-xs-12 col-sm-12 col-lg-8">
16
                {foreach $data as $value}
17
                <article id="post-{$value.id}"
18
                    class="post-{$value.id} post type-post status-publish format-standard hentry category-148 tag-3d">
19
                    <h2 class="blog-single-title"><a href="/{$value.url}/{$value.id}" title="{$value.title}"
20
                            data-wpel-link="internal">{$value.title}</a></h2>
21
                    <div class="entry-meta">
22
                        <span class="published"><span class="fa fa-clock-o"></span><a href="javascript:;"
23
                                title="{$value.title}" data-wpel-link="internal">{$value.create_time|date="Y-m-d", ###}</a></span>
24
                        <span class="author"><span class="fa fa-keyboard-o"></span><a href="/author/{$value.username}"
25
                                title="由{$value.username}发布" rel="author" data-wpel-link="internal">{$value.username}</a></span>
26
                        <span class="blog-label"><span class="fa fa-folder-open-o"></span><a href="/{$value.url}"
27
                                rel="category tag" data-wpel-link="internal">{$value.cname}</a></span>
28
                    </div>
29
                    {notempty name="value.title_pic"}
30
                    <div class="entry-image">
31
                        <a href="/{$value.url}/{$value.id}" title="{$value.title}" data-wpel-link="internal">
32
                            <img width="382" height="330" src="{$value.title_pic}" class="attachment-full size-full wp-post-image" alt="{$value.title}"></a>
33
                    </div>
34
                    {/notempty}
35
                    <div class="entry-content">
36
                        <div class="page-content">
37
                            <p>{$value.summary|mb_substr=0,30}[&hellip;]</p>
38
                        </div>
39
                        <a class="tt_button" href="/{$value.url}/{$value.id}" data-wpel-link="internal">Read more</a>
40
                    </div>
41
                </article>
42
                {/foreach}
43
                <nav class="navigation pagination" role="navigation" aria-label="文章">
44
                    {$data->render();}
45
                </nav>
46
            </div>
47
            <div class="col-xs-12 col-sm-12 col-lg-4">
48
                <!--侧边栏-->
49
                {include file="public/right-sidebar" /}
50
                <!--侧边栏-->
51
            </div>
52
        </div>
53
        <!--WPFC_FOOTER_START-->
54
    </div>

+ 0 - 1
application/index/view/layout.html

@ -1,4 +1,3 @@
1
<!--头部开始-->
2 1
{include file="public/header" /}
3 2
<!--头部结束-->
4 3

+ 2 - 3
application/index/view/public/nav.html

@ -12,8 +12,7 @@
12 12
                </ul>
13 13
            </div>
14 14
            <div class="topbar-menu-search">
15
16
                <div class="topbar-search">
15
                <!-- <div class="topbar-search">
17 16
                    <form role="search" method="get" class="search-form" action="">
18 17
                        <label>
19 18
                            <span class="screen-reader-text">搜索:</span>
@ -21,7 +20,7 @@
21 20
                        </label>
22 21
                        <input type="submit" class="search-submit" value="搜索">
23 22
                    </form> <span class="toggle-search fa-search fa"></span>
24
                </div>
23
                </div> -->
25 24
                <!-- WooCommerce Cart -->
26 25
                <!-- END WooCommerce Cart -->
27 26
            </div>

+ 4 - 2
application/route.php

@ -60,8 +60,10 @@ foreach ($categoryList as $key => $value) {
60 60
61 61
/* Archive 归档 */
62 62
Route::get('/:year/:month','index/article/archive');
63
64
63
/* Author */
64
Route::get('/author/:name','index/article/author');
65
/* Tags */
66
Route::get('/tags/:name','index/article/tags');
65 67
66 68
/* 临时路由 */
67 69
Route::get('/aerospace','index/index/aerospace');