diff --git a/assets/css/common.scss b/assets/css/common.scss index dcfa6d3..63bb883 100644 --- a/assets/css/common.scss +++ b/assets/css/common.scss @@ -47,6 +47,33 @@ text-align: left; } } +.pretty-header { + height: 59px; + color: #ffffff; + text-indent: 1.375rem; + background: linear-gradient( 180deg, rgba(33,119,244,0.04) 0%, rgba(1,95,232,0.14) 100%); + border-bottom: 2px solid #0663ea; + h2 { + max-width: 19.125rem; + height: 100%; + position: relative; + line-height: 3.6875rem; + background: linear-gradient( 180deg, #2177F4 0%, #015FE8 100%); + font-size: 1rem; + &::after { + content: ''; + width: 5.875rem; + height: 3.6875rem; + position: absolute; + top: 0; + right: -5.8125rem; + background: url('../image/banner/header-top-line.png') no-repeat; + background-size: 100% 100%; + z-index: 999; + } + } +} + .breadcrumb-item + .breadcrumb-item::before { content: '>>'; -} \ No newline at end of file +} diff --git a/assets/image/icon/Facebook-colorful.png b/assets/image/icon/Facebook-colorful.png new file mode 100644 index 0000000..f9ed599 Binary files /dev/null and b/assets/image/icon/Facebook-colorful.png differ diff --git a/assets/image/icon/X-colorful.png b/assets/image/icon/X-colorful.png new file mode 100644 index 0000000..1fe4f9a Binary files /dev/null and b/assets/image/icon/X-colorful.png differ diff --git a/assets/image/icon/YouTube-colorful.png b/assets/image/icon/YouTube-colorful.png new file mode 100644 index 0000000..8b36fa6 Binary files /dev/null and b/assets/image/icon/YouTube-colorful.png differ diff --git a/assets/image/icon/fax-colorful.png b/assets/image/icon/fax-colorful.png new file mode 100644 index 0000000..efb8f59 Binary files /dev/null and b/assets/image/icon/fax-colorful.png differ diff --git a/assets/image/icon/google-colorful.png b/assets/image/icon/google-colorful.png new file mode 100644 index 0000000..5f43c0f Binary files /dev/null and b/assets/image/icon/google-colorful.png differ diff --git a/assets/image/icon/in-colorful.png b/assets/image/icon/in-colorful.png new file mode 100644 index 0000000..344fe72 Binary files /dev/null and b/assets/image/icon/in-colorful.png differ diff --git a/components/contact-footer.vue b/components/contact-footer.vue new file mode 100644 index 0000000..6a45828 --- /dev/null +++ b/components/contact-footer.vue @@ -0,0 +1,64 @@ + + + + + diff --git a/components/header.vue b/components/header.vue index b62fec4..71dc188 100644 --- a/components/header.vue +++ b/components/header.vue @@ -1,6 +1,6 @@ diff --git a/plugins/main.js b/plugins/main.js index 06f349e..198941e 100644 --- a/plugins/main.js +++ b/plugins/main.js @@ -2,7 +2,9 @@ import Vue from 'vue'; import bannerTop from '@/components/banner-top.vue'; import asideTree from '@/components/aside-tree.vue'; import seoPagination from '@/components/seo-pagination.vue'; +import contactFooter from '@/components/contact-footer.vue'; Vue.component('AsideTree', asideTree); Vue.component('BannerTop', bannerTop); -Vue.component('seoPagination', seoPagination); \ No newline at end of file +Vue.component('SeoPagination', seoPagination); +Vue.component('ContactFooter', contactFooter); \ No newline at end of file