first commit
6
public/assets/css/all.min.css
vendored
Normal file
7
public/assets/css/animate.min.css
vendored
Normal file
328
public/assets/css/banner.css
Normal file
@ -0,0 +1,328 @@
|
||||
|
||||
/*========================================================
|
||||
首頁 carousel-intro
|
||||
=========================================================*/
|
||||
|
||||
/* 首頁 carousel-intro */
|
||||
.carousel-intro {
|
||||
position: relative;
|
||||
}
|
||||
.carousel-intro .carousel-item {
|
||||
position: relative;
|
||||
}
|
||||
|
||||
|
||||
/* 文字 */
|
||||
.carousel-intro .carousel-caption {
|
||||
position : absolute;
|
||||
top: 50%;
|
||||
left: 50%;
|
||||
transform: translate(-50%,-50%);
|
||||
z-index: 9;
|
||||
color: #fff;
|
||||
text-align: center;
|
||||
padding: 15px 0;
|
||||
width: 70%;
|
||||
}
|
||||
.carousel-intro .carousel-caption h2 {
|
||||
display: inline-block;
|
||||
color: #fff;
|
||||
font-size: 1rem;
|
||||
/* text-shadow: 1px 1px 1px #fff;*/
|
||||
font-weight: bold;
|
||||
margin: 0 0 20px 0;
|
||||
padding: 0;
|
||||
line-height: 24px;
|
||||
}
|
||||
.carousel-intro .carousel-caption p {
|
||||
color: #fff;
|
||||
font-size: 0.6rem;
|
||||
/* text-shadow: 1px 1px 1px #333; */
|
||||
font-weight: normal;
|
||||
margin: 0 0 20px 0;
|
||||
padding: 0;
|
||||
line-height: 16px;
|
||||
|
||||
}
|
||||
.carousel-intro .carousel-caption a {
|
||||
display: inline-block;
|
||||
background: linear-gradient(to bottom, #2fe49e 0%,#2087a3 100%);
|
||||
color: #fff;
|
||||
padding: 2px 30px;
|
||||
border-radius: 15px;
|
||||
font-size: 0.7rem;
|
||||
line-height: 20px;
|
||||
}
|
||||
.carousel-intro .carousel-caption a:hover {
|
||||
background: linear-gradient(to bottom, #24afc0 0%,#1f68a4 100%);
|
||||
}
|
||||
|
||||
|
||||
|
||||
/*========================================================
|
||||
按鈕設定
|
||||
=========================================================*/
|
||||
|
||||
.carousel-control-prev-icon,
|
||||
.carousel-control-next-icon {
|
||||
display: inline-block;
|
||||
width: 30px;
|
||||
height: 30px;
|
||||
background: rgba(255,255,255,0.3) no-repeat center center;
|
||||
background-size: 50% 50%;
|
||||
border-radius: 50%;
|
||||
}
|
||||
|
||||
.carousel-control-prev-icon {
|
||||
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3e%3cpath d='M5.25 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%3e%3c/svg%3e");
|
||||
}
|
||||
|
||||
.carousel-control-next-icon {
|
||||
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3e%3cpath d='M2.75 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z'/%3e%3c/svg%3e");
|
||||
}
|
||||
|
||||
.carousel-indicators li {
|
||||
/*
|
||||
width: 15px;
|
||||
background-color: #fff;
|
||||
border-top: 1px solid transparent;
|
||||
border-bottom: 1px solid transparent;
|
||||
opacity: 1;
|
||||
border-radius: 50%;
|
||||
*/
|
||||
opacity: 1;
|
||||
height: 5px;
|
||||
}
|
||||
.carousel-indicators .active {
|
||||
opacity: 1;
|
||||
background-color: #e27a14;
|
||||
}
|
||||
|
||||
|
||||
|
||||
/*========================================================
|
||||
動畫設定
|
||||
=========================================================*/
|
||||
|
||||
@-webkit-keyframes animatedBackground {
|
||||
0% {transform: scale(1.0);}
|
||||
100% {transform: scale(1.1);}
|
||||
}
|
||||
@-o-keyframes animatedBackground {
|
||||
0% {transform: scale(1.0);}
|
||||
100% {transform: scale(1.1);}
|
||||
}
|
||||
@-moz-keyframes animatedBackground {
|
||||
0% {transform: scale(1.0);}
|
||||
100% {transform: scale(1.1);}
|
||||
}
|
||||
@keyframes animatedBackground {
|
||||
0% {transform: scale(1.0);}
|
||||
100% {transform: scale(1.1);}
|
||||
}
|
||||
|
||||
|
||||
/* 只設定電腦版有效果 */
|
||||
/*
|
||||
.carousel-intro img {
|
||||
animation: animatedBackground 12s infinite alternate;
|
||||
-moz-animation: animatedBackground 12s infinite alternate;
|
||||
-webkit-animation: animatedBackground 12s infinite alternate;
|
||||
-ms-animation: animatedBackground 12s infinite alternate;
|
||||
-o-animation: animatedBackground 12s infinite alternate;
|
||||
}
|
||||
*/
|
||||
|
||||
|
||||
|
||||
/*========================================================
|
||||
尺寸設定
|
||||
=========================================================*/
|
||||
|
||||
@media (max-width: 479px) {
|
||||
.carousel-intro .carousel-item img {
|
||||
height: 240px;
|
||||
}
|
||||
}
|
||||
@media (min-width: 480px) and (max-width: 767px) {
|
||||
.carousel-intro .carousel-item img {
|
||||
height: 320px;
|
||||
}
|
||||
}
|
||||
@media (max-width: 767px) {
|
||||
.carousel-intro .carousel-item img {
|
||||
object-fit: cover;
|
||||
object-position: center center;
|
||||
}
|
||||
.carousel-intro .carousel-caption p {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
@media (min-width: 768px) {
|
||||
.carousel-intro .carousel-caption h2 {
|
||||
font-size: 1.4rem;
|
||||
line-height: 28px;
|
||||
}
|
||||
.carousel-intro .carousel-caption p {
|
||||
font-size: 0.8rem;
|
||||
line-height: 20px;
|
||||
}
|
||||
.carousel-intro .carousel-caption a {
|
||||
padding: 10px 30px;
|
||||
border-radius: 30px;
|
||||
}
|
||||
}
|
||||
@media (min-width: 992px) {
|
||||
.carousel-intro .carousel-caption {
|
||||
top: 50%;
|
||||
left: 20%;
|
||||
transform: translate(-20%,-50%);
|
||||
text-align: left;
|
||||
width: 40%;
|
||||
}
|
||||
.carousel-intro .carousel-caption h2 {
|
||||
font-size: 1.4rem;
|
||||
line-height: 30px;
|
||||
}
|
||||
.carousel-intro .carousel-caption p {
|
||||
font-size: 0.8rem;
|
||||
line-height: 24px;
|
||||
}
|
||||
.carousel-control-prev-icon,
|
||||
.carousel-control-next-icon {
|
||||
width: 40px;
|
||||
height: 40px;
|
||||
}
|
||||
}
|
||||
@media (min-width: 1200px) {
|
||||
.carousel-intro .carousel-caption h2 {
|
||||
font-size: 1.8rem;
|
||||
line-height: 36px;
|
||||
}
|
||||
.carousel-intro .carousel-caption p {
|
||||
font-size: 0.9rem;
|
||||
line-height: 24px;
|
||||
}
|
||||
}
|
||||
@media (min-width: 1600px) {
|
||||
.carousel-intro .carousel-caption {
|
||||
width: 25%;
|
||||
}
|
||||
.carousel-intro .carousel-caption h2 {
|
||||
font-size: 2.2rem;
|
||||
line-height: 40px;
|
||||
}
|
||||
.carousel-intro .carousel-caption p {
|
||||
font-size: 1rem;
|
||||
line-height: 28px;
|
||||
}
|
||||
.carousel-indicators {
|
||||
bottom: 5%;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
/*========================================================
|
||||
內頁banner設定
|
||||
=========================================================*/
|
||||
|
||||
|
||||
.page-banner {
|
||||
position: relative;
|
||||
overflow: hidden;
|
||||
}
|
||||
.page-banner img {
|
||||
width: 100%;
|
||||
vertical-align: bottom;
|
||||
/* animation: animatedBackground 12s infinite alternate;
|
||||
-moz-animation: animatedBackground 12s infinite alternate;
|
||||
-webkit-animation: animatedBackground 12s infinite alternate;
|
||||
-ms-animation: animatedBackground 12s infinite alternate;
|
||||
-o-animation: animatedBackground 12s infinite alternate;*/
|
||||
}
|
||||
.page-banner-caption {
|
||||
position : absolute;
|
||||
top: 50%;
|
||||
left: 50%;
|
||||
transform: translate(-50%, -50%);
|
||||
z-index: 9;
|
||||
color: #fff;
|
||||
text-align: center;
|
||||
width: 100%;
|
||||
}
|
||||
.page-banner-caption h2 {
|
||||
color: #fff;
|
||||
font-size: 2rem;
|
||||
text-shadow: 1px 1px 2px #666, 1px 1px 2px #666;
|
||||
font-weight: 600;
|
||||
margin: 0;
|
||||
padding-bottom: 15px;
|
||||
line-height: 30px;
|
||||
font-family: 'Noto Serif TC', serif;
|
||||
}
|
||||
.page-banner-caption p {
|
||||
color: #fff;
|
||||
font-size: 1.1rem;
|
||||
text-shadow: 1px 1px 2px #666, 1px 1px 2px #666;
|
||||
font-weight: normal;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
line-height: 16px;
|
||||
font-family: Arial, "微軟正黑體", Verdana, Helvetica, sans-serif;
|
||||
}
|
||||
|
||||
@media (max-width: 767px) {
|
||||
.page-banner > img {
|
||||
height: 320px;
|
||||
}
|
||||
}
|
||||
@media (min-width: 768px) and (max-width: 1023px) {
|
||||
.page-banner > img {
|
||||
height: 400px;
|
||||
}
|
||||
}
|
||||
@media (max-width: 991px) {
|
||||
.page-banner > img {
|
||||
object-fit: cover;
|
||||
}
|
||||
}
|
||||
@media (min-width: 768px) {
|
||||
.carousel-intro .carousel-caption h2 {
|
||||
font-size: 1.6rem;
|
||||
}
|
||||
}
|
||||
@media (min-width: 992px) {
|
||||
.page-banner-caption {
|
||||
left: 16vw;
|
||||
transform: translateY(-50%);
|
||||
z-index: 9;
|
||||
text-align: left;
|
||||
}
|
||||
.page-banner-caption h2 {
|
||||
font-size: 1.8rem;
|
||||
padding-bottom: 5px;
|
||||
}
|
||||
.page-banner-caption p {
|
||||
font-size: 1rem;
|
||||
}
|
||||
}
|
||||
@media (min-width: 1200px) {
|
||||
.page-banner-caption h2 {
|
||||
font-size: 2.2rem;
|
||||
padding-bottom: 10px;
|
||||
}
|
||||
.page-banner-captionp {
|
||||
font-size: 1.1rem;
|
||||
}
|
||||
}
|
||||
@media (min-width: 1600px) {
|
||||
.page-banner-caption h2 {
|
||||
font-size: 2.6rem;
|
||||
padding-bottom: 15px;
|
||||
}
|
||||
.page-banner-caption p {
|
||||
font-size: 1.2rem;
|
||||
}
|
||||
|
||||
}
|
||||
|
9887
public/assets/css/bootstrap.css
vendored
Normal file
1
public/assets/css/bootstrap.css.map
Normal file
7
public/assets/css/bootstrap.min.css
vendored
Normal file
9913
public/assets/css/fonts.css
Normal file
246
public/assets/css/footer.css
Normal file
@ -0,0 +1,246 @@
|
||||
/*========================================================
|
||||
聯絡訊息
|
||||
=========================================================*/
|
||||
|
||||
footer {
|
||||
background-color: #fff;
|
||||
font-size: 0.9rem;
|
||||
}
|
||||
footer a {
|
||||
color: #111;
|
||||
}
|
||||
footer a:hover {
|
||||
color: #111;
|
||||
text-decoration: underline;
|
||||
}
|
||||
.footer-main {
|
||||
padding-top: 60px;
|
||||
padding-bottom: 20px;
|
||||
color: #111;
|
||||
}
|
||||
|
||||
|
||||
/* 聯絡資訊 */
|
||||
.footer-contacts {
|
||||
margin-bottom: 30px;
|
||||
}
|
||||
.footer-contacts-logo {
|
||||
font-size: 0.9rem;
|
||||
}
|
||||
.footer-contacts-logo img {
|
||||
height: 40px;
|
||||
vertical-align: bottom;
|
||||
}
|
||||
.footer-contacts-info {
|
||||
margin: 15px 0 0 0;
|
||||
}
|
||||
.footer-contacts-info ul {
|
||||
list-style: none;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
.footer-contacts-info ul li {
|
||||
font-size: 1rem;
|
||||
line-height: 28px;
|
||||
}
|
||||
|
||||
|
||||
/* 電話直撥&地圖導航 */
|
||||
.footer-contacts-btn {
|
||||
padding: 20px 0 20px;
|
||||
}
|
||||
.footer-contacts-btn a {
|
||||
font-size: 1rem;
|
||||
color: #fff !important;
|
||||
margin: 0 10px;
|
||||
padding: 7px 15px 7px 20px;
|
||||
background-color: #266835;
|
||||
border: 1px solid #266835;
|
||||
}
|
||||
.footer-contacts-btn a:hover {
|
||||
background-color: #1c4e27;
|
||||
border: 1px solid #1c4e27;
|
||||
color: #fff !important;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
|
||||
/* footer選單 */
|
||||
|
||||
.footer-nav {
|
||||
|
||||
}
|
||||
|
||||
.footer-nav-item {
|
||||
display: inline-block;
|
||||
vertical-align: top;
|
||||
margin-bottom: 30px;
|
||||
}
|
||||
.footer-nav-item h4 {
|
||||
font-size: 1.2rem;
|
||||
padding-bottom: 16px;
|
||||
font-weight: bold;
|
||||
margin: 0;
|
||||
}
|
||||
.footer-nav-item ul {
|
||||
list-style: none;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
.footer-nav-item ul li {
|
||||
font-size: 0.9rem;
|
||||
line-height: 24px;
|
||||
}
|
||||
|
||||
|
||||
/* 尺寸設定 */
|
||||
@media (max-width: 479px) {
|
||||
.footer-contacts-logo img {
|
||||
height: 32px;
|
||||
vertical-align: bottom;
|
||||
}
|
||||
}
|
||||
@media (max-width: 767px) {
|
||||
.footer-contacts-info {
|
||||
margin: 10px 0 10px 0;
|
||||
}
|
||||
.footer-nav .footer-nav-item:first-of-type {
|
||||
margin-right: 60px;
|
||||
}
|
||||
}
|
||||
@media (min-width: 768px) {
|
||||
.footer-nav {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
}
|
||||
}
|
||||
@media (min-width: 1200px) {
|
||||
.footer-main {
|
||||
padding-bottom: 30px;
|
||||
}
|
||||
.footer-contacts-logo img {
|
||||
height: 44px;
|
||||
}
|
||||
.footer-contacts-info {
|
||||
margin-left: 0px;
|
||||
}
|
||||
.footer-nav-item {
|
||||
margin-left: 30px;
|
||||
}
|
||||
}
|
||||
@media (min-width: 1600px) {
|
||||
.footer-contacts-logo img {
|
||||
height: 54px;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
/*========================================================
|
||||
footer-copyright
|
||||
=========================================================*/
|
||||
|
||||
.footer-copyright {
|
||||
border-top: 1px solid #cfcfcf;
|
||||
color: #111;
|
||||
position: relative;
|
||||
padding: 20px 0;
|
||||
font-size: 0.9rem;
|
||||
text-align: left;
|
||||
}
|
||||
.footer-copyright a {
|
||||
color: #111;
|
||||
}
|
||||
.footer-copyright span {
|
||||
display: inline-block;
|
||||
margin-left: 10px;
|
||||
}
|
||||
/*
|
||||
|
||||
@media (min-width: 992px) {
|
||||
.footer-copyright {
|
||||
text-align: right;
|
||||
}
|
||||
}
|
||||
*/
|
||||
|
||||
|
||||
/*========================================================
|
||||
其他設定
|
||||
=========================================================*/
|
||||
|
||||
.footer-nav-item a .fa-linkedin {
|
||||
margin-top: 20px;
|
||||
font-size: 2.4rem;
|
||||
color: #0e76a8;
|
||||
}
|
||||
.footer-nav-item a:hover .fa-linkedin {
|
||||
color: #d33120;
|
||||
}
|
||||
.footer-nav-item .custom-checkbox {
|
||||
margin: 10px 0;
|
||||
}
|
||||
.footer-nav-item .custom-control-label::before,
|
||||
.footer-nav-item .custom-control-label::after {
|
||||
top: 0.5rem;
|
||||
}
|
||||
|
||||
/*========================================================
|
||||
cookies
|
||||
=========================================================*/
|
||||
|
||||
#cookies-box {
|
||||
position: fixed;
|
||||
left: 0;
|
||||
bottom: 0;
|
||||
z-index: 9999999;
|
||||
background-color: rgba(0,0,0,0.9);
|
||||
padding: 40px 50px;
|
||||
width: 100%;
|
||||
font-size: 0.9rem;
|
||||
line-height: 36px;
|
||||
color: #fff;
|
||||
/* display: none;*/
|
||||
}
|
||||
#cookies-box h4 {
|
||||
font-size: 1.2rem;
|
||||
font-weight: bold;
|
||||
}
|
||||
#cookies-box p {
|
||||
margin: 0;
|
||||
}
|
||||
#cookies-box a {
|
||||
color: #fff;
|
||||
border-bottom: 2px solid #1392b6;
|
||||
padding: 2px 5px;
|
||||
margin: 0;
|
||||
}
|
||||
#cookies-box a:hover {
|
||||
background-color: #1392b6;
|
||||
text-decoration: none;
|
||||
}
|
||||
#cookies-box .cookies-btn {
|
||||
margin-top: 10px;
|
||||
text-align: center;
|
||||
}
|
||||
#cookies-box .cookies-btn a {
|
||||
display: inline-block;
|
||||
width: 140px;
|
||||
border: 1px solid #fff;
|
||||
color: #fff;
|
||||
text-decoration: none;
|
||||
text-align: center;
|
||||
}
|
||||
#cookies-box .cookies-btn a:hover {
|
||||
background-color: #1392b6;
|
||||
border-color: #1392b6;
|
||||
}
|
||||
|
||||
@media (min-width: 992px) {
|
||||
#cookies-box .cookies-btn {
|
||||
margin-top: -5px;
|
||||
margin-left: 50px;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
280
public/assets/css/header-index.css
Normal file
@ -0,0 +1,280 @@
|
||||
|
||||
/*========================================================
|
||||
基本設定
|
||||
=========================================================*/
|
||||
|
||||
|
||||
body {
|
||||
font-family: Arial, Verdana, Helvetica, sans-serif;
|
||||
/* font-family: "微軟正黑體", Arial, Verdana, Helvetica, sans-serif;*/
|
||||
font-weight: 400;
|
||||
line-height: 32px;
|
||||
padding-top: 56px;
|
||||
font-size: 1rem;
|
||||
color: #111;
|
||||
}
|
||||
/*
|
||||
@media (max-width: 991px) {
|
||||
body {
|
||||
padding-bottom: 79px;
|
||||
}
|
||||
}
|
||||
*/
|
||||
|
||||
|
||||
/*========================================================
|
||||
header設定
|
||||
=========================================================*/
|
||||
|
||||
|
||||
/* 選單列*/
|
||||
.rd-navbar-main-outer {
|
||||
margin-top: 40px;
|
||||
}
|
||||
.rd-navbar-main-outer .rd-navbar-inner {
|
||||
padding-top: 20px;
|
||||
padding-bottom: 20px;
|
||||
max-width: 1480px;
|
||||
}
|
||||
.rd-navbar-nav {
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.brand1 {
|
||||
display: block;
|
||||
}
|
||||
.brand2 {
|
||||
display: none;
|
||||
}
|
||||
|
||||
|
||||
/* logo設定 */
|
||||
.rd-navbar-brand img {
|
||||
}
|
||||
|
||||
/* header下拉時設定 */
|
||||
.rd-navbar-static.rd-navbar--is-stuck,
|
||||
.rd-navbar-static.rd-navbar--is-clone,
|
||||
.rd-navbar-fullwidth.rd-navbar--is-stuck,
|
||||
.rd-navbar-fullwidth.rd-navbar--is-clone {
|
||||
background: #fff;
|
||||
box-shadow: 0 0 10px rgba(0, 0, 0, .3);
|
||||
}
|
||||
.rd-navbar-static.rd-navbar--is-stuck .rd-navbar-inner,
|
||||
.rd-navbar-static.rd-navbar--is-clone .rd-navbar-inner {
|
||||
padding-top: 15px;
|
||||
padding-bottom: 15px;
|
||||
}
|
||||
.rd-navbar-static.rd-navbar--is-stuck .rd-navbar-main-outer {
|
||||
margin-top: 0px;
|
||||
}
|
||||
.rd-navbar-static.rd-navbar--is-stuck .brand1 {
|
||||
display: none;
|
||||
}
|
||||
.rd-navbar-static.rd-navbar--is-stuck .brand2 {
|
||||
display: block;
|
||||
}
|
||||
.rd-navbar-static.rd-navbar--is-stuck .rd-navbar-info {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.rd-navbar-static.rd-navbar--is-stuck .rd-navbar-nav > li > a,
|
||||
.rd-navbar-static.rd-navbar--is-stuck .rd-navbar-nav > li.focus > a,
|
||||
.rd-navbar-static.rd-navbar--is-stuck .rd-navbar-nav > li.opened > a,
|
||||
.rd-navbar-static.rd-navbar--is-clone .rd-navbar-nav > li > a,
|
||||
.rd-navbar-static.rd-navbar--is-clone .rd-navbar-nav > li.focus > a,
|
||||
.rd-navbar-static.rd-navbar--is-clone .rd-navbar-nav > li.opened > a,
|
||||
.rd-navbar-fullwidth.rd-navbar--is-stuck .rd-navbar-nav > li > a,
|
||||
.rd-navbar-fullwidth.rd-navbar--is-stuck .rd-navbar-nav > li.focus > a,
|
||||
.rd-navbar-fullwidth.rd-navbar--is-stuck .rd-navbar-nav > li.opened > a,
|
||||
.rd-navbar-fullwidth.rd-navbar--is-clone .rd-navbar-nav > li > a,
|
||||
.rd-navbar-fullwidth.rd-navbar--is-clone .rd-navbar-nav > li.focus > a,
|
||||
.rd-navbar-fullwidth.rd-navbar--is-clone .rd-navbar-nav > li.opened > a {
|
||||
color: #000;
|
||||
}
|
||||
.rd-navbar-static.rd-navbar--is-stuck .rd-navbar-nav > li > a:hover,
|
||||
.rd-navbar-static.rd-navbar--is-clone .rd-navbar-nav > li > a:hover,
|
||||
.rd-navbar-fullwidth.rd-navbar--is-stuck .rd-navbar-nav > li > a:hover,
|
||||
.rd-navbar-fullwidth.rd-navbar--is-clone .rd-navbar-nav > li > a:hover {
|
||||
color: #000;
|
||||
}
|
||||
.rd-navbar-static.rd-navbar--is-stuck .rd-navbar-nav > li > a:before,
|
||||
.rd-navbar-static.rd-navbar--is-clone .rd-navbar-nav > li > a:before,
|
||||
.rd-navbar-fullwidth.rd-navbar--is-stuck .rd-navbar-nav > li > a:before,
|
||||
.rd-navbar-fullwidth.rd-navbar--is-clone .rd-navbar-nav > li > a:before {
|
||||
content: "";
|
||||
position: absolute;
|
||||
z-index: -1;
|
||||
left: 0;
|
||||
right: 100%;
|
||||
bottom: 0;
|
||||
background: #000;
|
||||
height: 2px;
|
||||
-webkit-transition: right 0.3s ease-out;
|
||||
transition: right 0.3s ease-out;
|
||||
}
|
||||
.rd-navbar-static.rd-navbar--is-stuck .rd-navbar-nav > li > a:hover:before,
|
||||
.rd-navbar-static.rd-navbar--is-clone .rd-navbar-nav > li > a:hover:before,
|
||||
.rd-navbar-fullwidth.rd-navbar--is-stuck .rd-navbar-nav > li > a:hover:before,
|
||||
.rd-navbar-fullwidth.rd-navbar--is-clone .rd-navbar-nav > li > a:hover:before {
|
||||
right: 0;
|
||||
}
|
||||
|
||||
|
||||
/* 手機版header背景色調整 */
|
||||
.rd-navbar-fixed .rd-navbar-panel:before {
|
||||
/* background: #fff;*/
|
||||
}
|
||||
.rd-navbar-toggle span:after,
|
||||
.rd-navbar-toggle span:before,
|
||||
.rd-navbar-toggle span,
|
||||
.rd-navbar-sidebar-toggle span:after,
|
||||
.rd-navbar-sidebar-toggle span:before,
|
||||
.rd-navbar-sidebar-toggle span {
|
||||
background-color: #000;
|
||||
}
|
||||
.rd-navbar-fixed .rd-navbar-nav > li:first-of-type a {
|
||||
border-top: 1px solid #ededed;
|
||||
}
|
||||
.rd-navbar-fixed .rd-navbar-nav > li:last-of-type a {
|
||||
display: inline-block;
|
||||
padding: 11px 0;
|
||||
margin-left: 10px;
|
||||
}
|
||||
.rd-navbar-fixed .rd-navbar-nav > li:last-of-type a:first-of-type {
|
||||
margin-left: 16px;
|
||||
}
|
||||
.rd-navbar-fixed .rd-navbar-nav > li:last-of-type:hover > a,
|
||||
.rd-navbar-fixed .rd-navbar-nav > li:last-of-type.active > a,
|
||||
.rd-navbar-fixed .rd-navbar-nav > li:last-of-type.opened > a {
|
||||
background-color: transparent;
|
||||
color: #222;
|
||||
}
|
||||
|
||||
|
||||
/* 尺寸設定 */
|
||||
@media (max-width: 991px) {
|
||||
.rd-navbar-fixed .rd-navbar-brand img {
|
||||
max-width: 300px;
|
||||
}
|
||||
}
|
||||
@media (max-width: 1199px) {
|
||||
.brand1 {
|
||||
display: none;
|
||||
}
|
||||
.brand2 {
|
||||
display: block;
|
||||
}
|
||||
.other-link {
|
||||
list-style: none;
|
||||
margin: 15px 0 5px;
|
||||
padding: 0;
|
||||
text-align: center;
|
||||
}
|
||||
.other-link {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
@media (min-width: 1200px) {
|
||||
body {
|
||||
padding-top: 0;
|
||||
}
|
||||
.rd-navbar-brand img {
|
||||
height: 50px;
|
||||
}
|
||||
.rd-navbar-nav > li:first-of-type {
|
||||
display: none;
|
||||
}
|
||||
.rd-navbar-static .rd-navbar-nav > li + li {
|
||||
margin-left: 0;
|
||||
}
|
||||
.rd-navbar-static .rd-navbar-nav > li > a,
|
||||
.rd-navbar-fullwidth .rd-navbar-nav > li > a {
|
||||
font-size: 1.1rem;
|
||||
padding-left: 10px;
|
||||
padding-right: 10px;
|
||||
color: #fff;
|
||||
font-weight: bold;
|
||||
transition: all .3s;
|
||||
top: 0;
|
||||
text-transform: capitalize;
|
||||
margin: 0 10px;
|
||||
}
|
||||
.rd-navbar-static .rd-navbar-nav > li > a:hover,
|
||||
.rd-navbar-fullwidth .rd-navbar-nav > li > a:hover {
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
.rd-navbar-static .rd-navbar-nav > li > a:before,
|
||||
.rd-navbar-fullwidth .rd-navbar-nav > li > a:before {
|
||||
content: "";
|
||||
position: absolute;
|
||||
z-index: -1;
|
||||
left: 0;
|
||||
right: 100%;
|
||||
bottom: 0;
|
||||
background: #fff;
|
||||
height: 2px;
|
||||
-webkit-transition: right 0.3s ease-out;
|
||||
transition: right 0.3s ease-out;
|
||||
}
|
||||
.rd-navbar-static .rd-navbar-nav > li > a:hover:before,
|
||||
.rd-navbar-fullwidth .rd-navbar-nav > li > a:hover:before {
|
||||
right: 0;
|
||||
}
|
||||
.rd-navbar-static .rd-navbar-nav > li.focus > a,
|
||||
.rd-navbar-static .rd-navbar-nav > li.opened > a,
|
||||
.rd-navbar-fullwidth .rd-navbar-nav > li.focus > a,
|
||||
.rd-navbar-fullwidth .rd-navbar-nav > li.opened > a {
|
||||
color: #fff;
|
||||
}
|
||||
.rd-navbar-static .rd-navbar-nav > li > .rd-navbar-submenu-toggle,
|
||||
.rd-navbar-fullwidth .rd-navbar-nav > li > .rd-navbar-submenu-toggle {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.rd-navbar-static .rd-navbar-nav > li:nth-of-type(6) > a,
|
||||
.rd-navbar-fullwidth .rd-navbar-nav > li:nth-of-type(6) > a {
|
||||
display: none;
|
||||
}
|
||||
|
||||
/* 上方選單 */
|
||||
.rd-navbar-info {
|
||||
position: absolute;
|
||||
right: calc(0% + 46px);
|
||||
top: -30px;
|
||||
z-index: 2;
|
||||
width: 100%;
|
||||
text-align: right;
|
||||
}
|
||||
.other-link {
|
||||
list-style: none;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
display: flex;
|
||||
justify-content: end;
|
||||
color: #fff;
|
||||
}
|
||||
.other-link li {
|
||||
margin-left: 15px;
|
||||
}
|
||||
.other-link li a {
|
||||
display: inline-block;
|
||||
color: #fff;
|
||||
font-size: 0.8rem;
|
||||
}
|
||||
.rd-navbar--is-stuck .other-link {
|
||||
color: #000;
|
||||
}
|
||||
}
|
||||
@media (min-width: 1600px) {
|
||||
.rd-navbar-brand img {
|
||||
height: 65px;
|
||||
}
|
||||
.rd-navbar-static .rd-navbar-nav > li > a,
|
||||
.rd-navbar-fullwidth .rd-navbar-nav > li > a {
|
||||
margin: 0 20px;
|
||||
}
|
||||
}
|
||||
|
||||
|
235
public/assets/css/header.css
Normal file
@ -0,0 +1,235 @@
|
||||
|
||||
/*========================================================
|
||||
基本設定
|
||||
=========================================================*/
|
||||
|
||||
|
||||
body {
|
||||
font-family: 'Open Sans', Verdana, Arial, sans-serif, Microsoft YaHei, Microsoft JhengHei;
|
||||
/* font-family: Arial, Verdana, Helvetica, sans-serif;*/
|
||||
/* font-family: "微軟正黑體", Arial, Verdana, Helvetica, sans-serif;*/
|
||||
font-weight: 400;
|
||||
line-height: 28px;
|
||||
padding-top: 56px;
|
||||
font-size: 0.9rem;
|
||||
color: #111;
|
||||
}
|
||||
|
||||
/*========================================================
|
||||
header設定
|
||||
=========================================================*/
|
||||
|
||||
|
||||
/* 選單列*/
|
||||
.rd-navbar-main-outer {
|
||||
margin-top: 40px;
|
||||
}
|
||||
.rd-navbar-main-outer .rd-navbar-inner {
|
||||
padding-top: 20px;
|
||||
padding-bottom: 20px;
|
||||
max-width: 1480px;
|
||||
}
|
||||
.rd-navbar-nav {
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
/* logo設定 */
|
||||
.rd-navbar-brand img {
|
||||
}
|
||||
|
||||
/* header下拉時設定 */
|
||||
.rd-navbar-static.rd-navbar--is-stuck,
|
||||
.rd-navbar-static.rd-navbar--is-clone,
|
||||
.rd-navbar-fullwidth.rd-navbar--is-stuck,
|
||||
.rd-navbar-fullwidth.rd-navbar--is-clone {
|
||||
background: #fff;
|
||||
box-shadow: 0 0 10px rgba(0, 0, 0, .3);
|
||||
}
|
||||
.rd-navbar-static.rd-navbar--is-stuck .rd-navbar-inner,
|
||||
.rd-navbar-static.rd-navbar--is-clone .rd-navbar-inner {
|
||||
padding-top: 15px;
|
||||
padding-bottom: 15px;
|
||||
}
|
||||
.rd-navbar-static.rd-navbar--is-stuck .rd-navbar-main-outer {
|
||||
margin-top: 0px;
|
||||
}
|
||||
.rd-navbar-static.rd-navbar--is-stuck .rd-navbar-info {
|
||||
display: none;
|
||||
}
|
||||
.rd-navbar-static.rd-navbar--is-stuck .rd-navbar-nav > li > a:before,
|
||||
.rd-navbar-static.rd-navbar--is-clone .rd-navbar-nav > li > a:before,
|
||||
.rd-navbar-fullwidth.rd-navbar--is-stuck .rd-navbar-nav > li > a:before,
|
||||
.rd-navbar-fullwidth.rd-navbar--is-clone .rd-navbar-nav > li > a:before {
|
||||
content: "";
|
||||
position: absolute;
|
||||
z-index: -1;
|
||||
left: 0;
|
||||
right: 100%;
|
||||
bottom: 0;
|
||||
background: #000;
|
||||
height: 2px;
|
||||
-webkit-transition: right 0.3s ease-out;
|
||||
transition: right 0.3s ease-out;
|
||||
}
|
||||
.rd-navbar-static.rd-navbar--is-stuck .rd-navbar-nav > li > a:hover:before,
|
||||
.rd-navbar-static.rd-navbar--is-clone .rd-navbar-nav > li > a:hover:before,
|
||||
.rd-navbar-fullwidth.rd-navbar--is-stuck .rd-navbar-nav > li > a:hover:before,
|
||||
.rd-navbar-fullwidth.rd-navbar--is-clone .rd-navbar-nav > li > a:hover:before {
|
||||
right: 0;
|
||||
}
|
||||
|
||||
|
||||
/* 手機版header背景色調整 */
|
||||
.rd-navbar-fixed .rd-navbar-panel:before {
|
||||
/* background: #fff;*/
|
||||
}
|
||||
.rd-navbar-toggle span:after,
|
||||
.rd-navbar-toggle span:before,
|
||||
.rd-navbar-toggle span,
|
||||
.rd-navbar-sidebar-toggle span:after,
|
||||
.rd-navbar-sidebar-toggle span:before,
|
||||
.rd-navbar-sidebar-toggle span {
|
||||
background-color: #000;
|
||||
}
|
||||
.rd-navbar-fixed .rd-navbar-nav > li:first-of-type a {
|
||||
border-top: 1px solid #ededed;
|
||||
}
|
||||
.rd-navbar-fixed .rd-navbar-nav > li:last-of-type a {
|
||||
display: inline-block;
|
||||
padding: 11px 0;
|
||||
margin-left: 10px;
|
||||
}
|
||||
.rd-navbar-fixed .rd-navbar-nav > li:last-of-type a:first-of-type {
|
||||
margin-left: 16px;
|
||||
}
|
||||
.rd-navbar-fixed .rd-navbar-nav > li:last-of-type:hover > a,
|
||||
.rd-navbar-fixed .rd-navbar-nav > li:last-of-type.active > a,
|
||||
.rd-navbar-fixed .rd-navbar-nav > li:last-of-type.opened > a {
|
||||
background-color: transparent;
|
||||
color: #222;
|
||||
}
|
||||
|
||||
|
||||
/* 尺寸設定 */
|
||||
@media (max-width: 991px) {
|
||||
.rd-navbar-fixed .rd-navbar-brand img {
|
||||
max-width: 300px;
|
||||
}
|
||||
}
|
||||
@media (max-width: 1199px) {
|
||||
.other-link {
|
||||
list-style: none;
|
||||
margin: 15px 0 5px;
|
||||
padding: 0;
|
||||
text-align: center;
|
||||
}
|
||||
.other-link {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
@media (min-width: 992px) {
|
||||
body {
|
||||
padding-top: 130px;
|
||||
}
|
||||
.rd-navbar-brand img {
|
||||
height: 50px;
|
||||
}
|
||||
.rd-navbar-nav > li:first-of-type {
|
||||
display: none;
|
||||
}
|
||||
.rd-navbar-static .rd-navbar-nav > li + li {
|
||||
margin-left: 0;
|
||||
}
|
||||
.rd-navbar-static .rd-navbar-nav > li > a,
|
||||
.rd-navbar-fullwidth .rd-navbar-nav > li > a {
|
||||
font-size: 1.1rem;
|
||||
padding-left: 10px;
|
||||
padding-right: 10px;
|
||||
color: #000;
|
||||
font-weight: bold;
|
||||
transition: all .3s;
|
||||
top: 0;
|
||||
text-transform: capitalize;
|
||||
margin: 0 10px;
|
||||
}
|
||||
.rd-navbar-static .rd-navbar-nav > li > a:hover,
|
||||
.rd-navbar-fullwidth .rd-navbar-nav > li > a:hover {
|
||||
color: #000;
|
||||
}
|
||||
|
||||
.rd-navbar-static .rd-navbar-nav > li > a:before,
|
||||
.rd-navbar-fullwidth .rd-navbar-nav > li > a:before {
|
||||
content: "";
|
||||
position: absolute;
|
||||
z-index: -1;
|
||||
left: 0;
|
||||
right: 100%;
|
||||
bottom: 0;
|
||||
background: #000;
|
||||
height: 2px;
|
||||
-webkit-transition: right 0.3s ease-out;
|
||||
transition: right 0.3s ease-out;
|
||||
}
|
||||
.rd-navbar-static .rd-navbar-nav > li > a:hover:before,
|
||||
.rd-navbar-fullwidth .rd-navbar-nav > li > a:hover:before {
|
||||
right: 0;
|
||||
}
|
||||
.rd-navbar-static .rd-navbar-nav > li.focus > a,
|
||||
.rd-navbar-static .rd-navbar-nav > li.opened > a,
|
||||
.rd-navbar-fullwidth .rd-navbar-nav > li.focus > a,
|
||||
.rd-navbar-fullwidth .rd-navbar-nav > li.opened > a {
|
||||
color: #000;
|
||||
}
|
||||
.rd-navbar-static .rd-navbar-nav > li > .rd-navbar-submenu-toggle,
|
||||
.rd-navbar-fullwidth .rd-navbar-nav > li > .rd-navbar-submenu-toggle {
|
||||
display: none;
|
||||
}
|
||||
.rd-navbar-static .rd-navbar-nav > li:nth-of-type(6) > a,
|
||||
.rd-navbar-fullwidth .rd-navbar-nav > li:nth-of-type(6) > a {
|
||||
display: none;
|
||||
}
|
||||
|
||||
|
||||
/* 上方選單 */
|
||||
.rd-navbar-info {
|
||||
position: absolute;
|
||||
right: calc(0% + 36px);
|
||||
top: -30px;
|
||||
z-index: 2;
|
||||
width: 100%;
|
||||
text-align: right;
|
||||
}
|
||||
.other-link {
|
||||
list-style: none;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
display: flex;
|
||||
justify-content: end;
|
||||
color: #000;
|
||||
}
|
||||
.other-link li {
|
||||
margin-left: 15px;
|
||||
}
|
||||
.other-link li a {
|
||||
display: inline-block;
|
||||
color: #000;
|
||||
font-size: 0.8rem;
|
||||
}
|
||||
}
|
||||
@media (min-width: 1600px) {
|
||||
body {
|
||||
padding-top: 145px;
|
||||
}
|
||||
.rd-navbar-brand img {
|
||||
height: 65px;
|
||||
}
|
||||
.rd-navbar-static .rd-navbar-nav > li > a,
|
||||
.rd-navbar-fullwidth .rd-navbar-nav > li > a {
|
||||
margin: 0 20px;
|
||||
}
|
||||
.rd-navbar-info {
|
||||
right: calc(0% + 46px);
|
||||
}
|
||||
}
|
||||
|
||||
|
962
public/assets/css/index.css
Normal file
@ -0,0 +1,962 @@
|
||||
|
||||
@import url("../fonts/flaticon/flaticon.css");
|
||||
@import url("../fonts/thin/thin.css");
|
||||
@import url("../css/all.min.css");
|
||||
@import url("revise.css");
|
||||
@import url("header-index.css");
|
||||
@import url("footer.css");
|
||||
@import url("banner.css");
|
||||
|
||||
|
||||
/*========================================================
|
||||
標題設定
|
||||
=========================================================*/
|
||||
|
||||
|
||||
.h2-title {
|
||||
font-size: 1.8rem;
|
||||
font-weight: bold;
|
||||
text-align: center;
|
||||
margin-bottom: 0px;
|
||||
position: relative;
|
||||
color: #000;
|
||||
font-family: 'Noto Serif TC', serif;
|
||||
}
|
||||
.h2-title+p {
|
||||
font-family: Arial, Verdana, Helvetica, sans-serif;
|
||||
font-size: 1.2rem;
|
||||
text-align: center;
|
||||
margin-bottom: 30px;
|
||||
color: #e3c4a2;
|
||||
}
|
||||
|
||||
@media (min-width: 992px) {
|
||||
.h2-title {
|
||||
font-size: 2rem;
|
||||
}
|
||||
.h2-title+p {
|
||||
font-size: 1.6rem;
|
||||
margin-bottom: 40px;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
/*========================================================
|
||||
按鈕設定
|
||||
=========================================================*/
|
||||
|
||||
.btn-more {
|
||||
width: 100%;
|
||||
}
|
||||
.btn-more {
|
||||
text-align: center;
|
||||
color: #000;
|
||||
text-transform: uppercase;
|
||||
position: relative;
|
||||
padding: 30px;
|
||||
display: block;
|
||||
}
|
||||
.btn-more a {
|
||||
color: #000;
|
||||
}
|
||||
.btn-more a::before {
|
||||
content: "+";
|
||||
font-family: FontAwesome;
|
||||
position: absolute;
|
||||
width: 28px;
|
||||
height: 28px;
|
||||
border-radius: 50%;
|
||||
border: 2px solid #da9c2d;
|
||||
color: #da9c2d;
|
||||
bottom: 25px;
|
||||
left: 49.5%;
|
||||
-webkit-transform: translate(-50%, 100%);
|
||||
transform: translate(-50%, 100%);
|
||||
display: -webkit-box;
|
||||
display: -ms-flexbox;
|
||||
display: flex;
|
||||
-webkit-box-pack: center;
|
||||
-ms-flex-pack: center;
|
||||
justify-content: center;
|
||||
-webkit-box-align: center;
|
||||
-ms-flex-align: center;
|
||||
align-items: center;
|
||||
font-weight: 600;
|
||||
font-size: 20px;
|
||||
}
|
||||
.btn-more a:hover {
|
||||
color: #da9c2d;
|
||||
-webkit-animation: upDown 1.2s ease-in-out infinite;
|
||||
animation: upDown 1.2s ease-in-out infinite;
|
||||
}
|
||||
.btn-more a:hover::before {
|
||||
background-color: #da9c2d;
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
|
||||
/*========================================================
|
||||
關於我們
|
||||
=========================================================*/
|
||||
|
||||
|
||||
.about-wrap {
|
||||
background: #fff url("../img/index/about-bg.jpg") no-repeat left bottom;
|
||||
background-size: 100% auto;
|
||||
padding-top: 60px;
|
||||
padding-bottom: 60px;
|
||||
}
|
||||
.about-info h2 {
|
||||
font-weight: bold;
|
||||
}
|
||||
.about-info p {
|
||||
margin-top: 30px;
|
||||
margin-bottom: 30px;
|
||||
}
|
||||
.about-btn a {
|
||||
display: inline-block;
|
||||
background: linear-gradient(to bottom, #24afc0 0%,#1f68a4 100%);
|
||||
color: #fff;
|
||||
padding: 3px 20px;
|
||||
border-radius: 20px;
|
||||
}
|
||||
.about-btn a:hover {
|
||||
background: linear-gradient(to bottom, #2fe49e 0%,#2087a3 100%);
|
||||
}
|
||||
|
||||
@media (min-width: 1200px) {
|
||||
.about-wrap {
|
||||
padding-top: 100px;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
/*========================================================
|
||||
服務項目
|
||||
=========================================================*/
|
||||
|
||||
.service-wrap {
|
||||
padding-top: 0px;
|
||||
padding-bottom: 60px;
|
||||
}
|
||||
.service-info h2 {
|
||||
font-weight: bold;
|
||||
}
|
||||
.service-info h2 span {
|
||||
display: block;
|
||||
font-weight: normal;
|
||||
padding-left: 20px;
|
||||
font-size: 0.9rem;
|
||||
color: #333;
|
||||
}
|
||||
|
||||
.service-info p {
|
||||
margin-top: 30px;
|
||||
margin-bottom: 30px;
|
||||
}
|
||||
.service-btn a {
|
||||
display: inline-block;
|
||||
background: linear-gradient(to bottom, #24afc0 0%,#1f68a4 100%);
|
||||
color: #fff;
|
||||
padding: 2px 15px;
|
||||
border-radius: 15px;
|
||||
font-size: 0.9rem;
|
||||
}
|
||||
.service-btn a:hover {
|
||||
background: linear-gradient(to bottom, #2fe49e 0%,#2087a3 100%);
|
||||
}
|
||||
|
||||
@media (min-width: 1200px) {
|
||||
.service-wrap {
|
||||
padding-top: 100px;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
/*========================================================
|
||||
消息與媒體
|
||||
=========================================================*/
|
||||
|
||||
.news-wrap {
|
||||
padding: 0 0 60px;
|
||||
overflow: hidden;
|
||||
}
|
||||
.news-box h3 {
|
||||
font-weight: bold;
|
||||
margin-bottom: 40px;
|
||||
}
|
||||
.news-box h3 span {
|
||||
display: block;
|
||||
font-weight: normal;
|
||||
padding-left: 20px;
|
||||
font-size: 0.9rem;
|
||||
color: #333;
|
||||
}
|
||||
|
||||
.news-item {
|
||||
padding: 10px;
|
||||
border-bottom: 1px solid #b4b4b4;
|
||||
font-size: 0.9rem;
|
||||
line-height: 28px;
|
||||
}
|
||||
.news-item time {
|
||||
color: #3368cb;
|
||||
font-weight: bold;
|
||||
}
|
||||
.news-item h4 a {
|
||||
display: block;
|
||||
font-size: 1.1rem;
|
||||
color: #000;
|
||||
font-weight: bold;
|
||||
}
|
||||
.news-item p {
|
||||
margin: 0;
|
||||
color: #333;
|
||||
}
|
||||
.news-item p a {
|
||||
display: block;
|
||||
color: #000;
|
||||
font-weight: bold;
|
||||
position: relative;
|
||||
padding-right: 60px;
|
||||
}
|
||||
.news-item p a:after {
|
||||
font-family: 'Font Awesome 5 free';
|
||||
content: "\f0a9";
|
||||
font-weight: 900;
|
||||
display: block;
|
||||
position: absolute;
|
||||
top: 10%;
|
||||
right: 0;
|
||||
transform: translateY(-10%);
|
||||
z-index: 9;
|
||||
color: #2bb39b;
|
||||
font-size: 1.8rem;
|
||||
}
|
||||
.news-item p a:hover:after {
|
||||
color: #3363cb;
|
||||
}
|
||||
.news-item h4 a:hover,
|
||||
.news-item p a:hover {
|
||||
color: #123c82;
|
||||
}
|
||||
.news-btn {
|
||||
margin-top: 20px;
|
||||
text-align: right;
|
||||
}
|
||||
.news-btn a {
|
||||
display: inline-block;
|
||||
background: linear-gradient(to bottom, #1fa3bb 0%,#1f68a4 100%);
|
||||
color: #fff;
|
||||
border-radius: 15px;
|
||||
padding: 3px 20px;
|
||||
font-weight: bold;
|
||||
font-size: 0.9rem;
|
||||
|
||||
}
|
||||
.news-btn a:hover {
|
||||
background: linear-gradient(to bottom, #2fe49e 0%,#2087a3 100%);
|
||||
}
|
||||
|
||||
@media (min-width: 1200px) {
|
||||
.news-wrap {
|
||||
padding-top: 100px;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
/*========================================================
|
||||
聯絡我們
|
||||
=========================================================*/
|
||||
|
||||
.contact-wrap {
|
||||
position: relative;
|
||||
}
|
||||
.contact-inner {
|
||||
position: absolute;
|
||||
top: 60%;
|
||||
left: 50%;
|
||||
transform: translate(-50%, -60%);
|
||||
z-index: 2;
|
||||
text-align: center;
|
||||
color: #fff;
|
||||
}
|
||||
.contact-inner h3 {
|
||||
font-size: 2.6rem;
|
||||
font-weight: bold;
|
||||
}
|
||||
.contact-inner p {
|
||||
font-size: 1.1rem;
|
||||
font-weight: bold;
|
||||
margin-top: 20px;
|
||||
margin-bottom: 30px;
|
||||
}
|
||||
|
||||
.contact-btn a {
|
||||
display: inline-block;
|
||||
background: linear-gradient(to bottom, #05c69f 0%,#2e8bdb 100%);
|
||||
color: #fff;
|
||||
border-radius: 30px;
|
||||
padding: 10px 50px;
|
||||
font-weight: bold;
|
||||
}
|
||||
.contact-btn a:hover {
|
||||
background: linear-gradient(to bottom, #1fa3bb 0%,#1f68a4 100%);
|
||||
}
|
||||
|
||||
@media (max-width: 1199px) {
|
||||
.contact-wrap > img {
|
||||
object-fit: cover;
|
||||
height: 400px;
|
||||
}
|
||||
}
|
||||
@media (min-width: 1200px) {
|
||||
.contact-inner h3 {
|
||||
font-size: 3rem;
|
||||
}
|
||||
.contact-inner p {
|
||||
font-size: 1.2rem;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
/*========================================================
|
||||
甜品介紹
|
||||
=========================================================*/
|
||||
|
||||
.products-wrap {
|
||||
padding: 0px;
|
||||
position: relative;
|
||||
overflow: hidden;
|
||||
width: 100%;
|
||||
background-image: url("../img/index/products_bg.jpg");
|
||||
background-attachment: fixed;
|
||||
background-size: cover;
|
||||
background-position: left bottom;
|
||||
background-repeat: no-repeat;
|
||||
}
|
||||
@media (max-width: 1180px) {
|
||||
.products-wrap {
|
||||
background-attachment: unset;
|
||||
background-size: cover;
|
||||
display: -webkit-box;
|
||||
display: -ms-flexbox;
|
||||
display: flex;
|
||||
-webkit-box-align: start;
|
||||
-ms-flex-align: start;
|
||||
align-items: flex-start;
|
||||
-webkit-box-pack: justify;
|
||||
-ms-flex-pack: justify;
|
||||
justify-content: space-between;
|
||||
height: auto;
|
||||
padding: 0 0 0px;
|
||||
}
|
||||
}
|
||||
@media (max-width: 1023px) {
|
||||
.products-wrap {
|
||||
-webkit-box-orient: vertical;
|
||||
-webkit-box-direction: normal;
|
||||
-ms-flex-direction: column;
|
||||
flex-direction: column;
|
||||
}
|
||||
}
|
||||
.products-wrap .products-info {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
max-width: 655px;
|
||||
height: 490px;
|
||||
width: 100%;
|
||||
}
|
||||
@media (max-width: 1536px) {
|
||||
.products-wrap .products-info {
|
||||
max-width: unset;
|
||||
width: 555px;
|
||||
}
|
||||
}
|
||||
@media (max-width: 1180px) {
|
||||
.products-wrap .products-info {
|
||||
position: unset;
|
||||
width: 50%;
|
||||
max-width: unset;
|
||||
height: auto;
|
||||
}
|
||||
}
|
||||
@media (max-width: 1023px) {
|
||||
.products-wrap .products-info {
|
||||
width: 100%;
|
||||
}
|
||||
}
|
||||
.products-wrap .products-info > div {
|
||||
display: -webkit-box;
|
||||
display: -ms-flexbox;
|
||||
display: flex;
|
||||
-webkit-box-orient: vertical;
|
||||
-webkit-box-direction: normal;
|
||||
-ms-flex-direction: column;
|
||||
flex-direction: column;
|
||||
-webkit-box-pack: center;
|
||||
-ms-flex-pack: center;
|
||||
justify-content: center;
|
||||
padding: 118px 80px;
|
||||
z-index: 2;
|
||||
background-color: #fff;
|
||||
}
|
||||
@media (max-width: 1536px) {
|
||||
.products-wrap .products-info > div {
|
||||
padding: 54px;
|
||||
}
|
||||
}
|
||||
@media (max-width: 1180px) {
|
||||
.products-wrap .products-info > div {
|
||||
padding: 40px;
|
||||
}
|
||||
}
|
||||
@media (max-width: 767px) {
|
||||
.products-wrap .products-info > div {
|
||||
padding: 60px 40px;
|
||||
}
|
||||
}
|
||||
.products-wrap .products-info > div h2 {
|
||||
color: #000;
|
||||
font-size: 2rem;
|
||||
font-weight: bold;
|
||||
letter-spacing: 0.5px;
|
||||
text-align: center;
|
||||
margin: 0;
|
||||
font-family: 'Noto Serif TC', serif;
|
||||
}
|
||||
.products-wrap .products-info > div h3 {
|
||||
color: #e3c4a2;
|
||||
font-size: 2rem;
|
||||
letter-spacing: 0.5px;
|
||||
margin-top: 10px;
|
||||
font-weight: bold;
|
||||
text-align: center;
|
||||
}
|
||||
.products-wrap .products-info > div p {
|
||||
color: #000;
|
||||
display: block;
|
||||
letter-spacing: 0.5px;
|
||||
margin-top: 20px;
|
||||
font-size: 1rem;
|
||||
text-align: center;
|
||||
font-weight: bold;
|
||||
}
|
||||
.products-wrap .products-info > div .more {
|
||||
width: 100%;
|
||||
}
|
||||
.products-wrap .products-info > div .more a {
|
||||
text-align: center;
|
||||
color: #000;
|
||||
text-transform: uppercase;
|
||||
position: relative;
|
||||
padding: 30px;
|
||||
display: block;
|
||||
}
|
||||
.products-wrap .products-info > div .more a::before {
|
||||
content: "+";
|
||||
font-family: FontAwesome;
|
||||
position: absolute;
|
||||
width: 28px;
|
||||
height: 28px;
|
||||
border-radius: 50%;
|
||||
border: 2px solid #da9c2d;
|
||||
color: #da9c2d;
|
||||
bottom: 25px;
|
||||
left: 49.5%;
|
||||
-webkit-transform: translate(-50%, 100%);
|
||||
transform: translate(-50%, 100%);
|
||||
display: -webkit-box;
|
||||
display: -ms-flexbox;
|
||||
display: flex;
|
||||
-webkit-box-pack: center;
|
||||
-ms-flex-pack: center;
|
||||
justify-content: center;
|
||||
-webkit-box-align: center;
|
||||
-ms-flex-align: center;
|
||||
align-items: center;
|
||||
font-weight: 600;
|
||||
font-size: 20px;
|
||||
}
|
||||
.products-wrap .products-info > div .more a:hover {
|
||||
color: #da9c2d;
|
||||
-webkit-animation: upDown 1.2s ease-in-out infinite;
|
||||
animation: upDown 1.2s ease-in-out infinite;
|
||||
}
|
||||
.products-wrap .products-info > div .more a:hover::before {
|
||||
background-color: #da9c2d;
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
|
||||
.products-wrap .products-list {
|
||||
width: 100%;
|
||||
position: relative;
|
||||
-webkit-transform: translateX(35%);
|
||||
transform: translateX(35%);
|
||||
margin: 0 -40px;
|
||||
}
|
||||
|
||||
@media (max-width: 1536px) {
|
||||
.products-wrap .products-list {
|
||||
margin: 0;
|
||||
}
|
||||
}
|
||||
@media (max-width: 1440px) {
|
||||
.products-wrap .products-list {
|
||||
-webkit-transform: translateX(37.3%);
|
||||
transform: translateX(37.3%);
|
||||
}
|
||||
}
|
||||
@media (max-width: 1366px) {
|
||||
.products-wrap .products-list {
|
||||
-webkit-transform: translateX(39.5%);
|
||||
transform: translateX(39.5%);
|
||||
}
|
||||
}
|
||||
@media (max-width: 1280px) {
|
||||
.products-wrap .products-list {
|
||||
-webkit-transform: translateX(42.1%);
|
||||
transform: translateX(42.1%);
|
||||
}
|
||||
}
|
||||
@media (max-width: 1180px) {
|
||||
.products-wrap .products-list {
|
||||
-webkit-transform: translate(0%, 0);
|
||||
transform: translate(0%, 0);
|
||||
width: 50%;
|
||||
margin: 0;
|
||||
}
|
||||
}
|
||||
@media (max-width: 1023px) {
|
||||
.products-wrap .products-list {
|
||||
width: 100%;
|
||||
}
|
||||
}
|
||||
|
||||
.products-item {
|
||||
padding: 0 30px;
|
||||
}
|
||||
.products-item .Img img {
|
||||
width: 100%;
|
||||
display: block;
|
||||
-webkit-backface-visibility: hidden;
|
||||
backface-visibility: hidden;
|
||||
}
|
||||
.products-item .Txt {
|
||||
margin: 0 20px;
|
||||
padding: 60px 40px;
|
||||
border-left: 1px solid #dad9d7;
|
||||
}
|
||||
.products-item .Txt h3 {
|
||||
font-family: 'Noto Serif TC', serif;
|
||||
font-size: 1.8rem;
|
||||
font-weight: bold;
|
||||
}
|
||||
.products-item .Txt ul {
|
||||
list-style: none;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
color: #53320f;
|
||||
font-size: 0.9rem;
|
||||
}
|
||||
|
||||
.products-item .Txt .buy a {
|
||||
display: inline-block;
|
||||
background-color: #bb4c15;
|
||||
color: #fff;
|
||||
padding: 0 15px;
|
||||
margin: 20px 0;
|
||||
}
|
||||
.products-item .Txt .buy a:hover {
|
||||
background-color: #da9c2d;
|
||||
}
|
||||
|
||||
|
||||
.products-list .products-item:nth-of-type(4n+1) .Txt h3 {
|
||||
color: #ffb14c;
|
||||
}
|
||||
.products-list .products-item:nth-of-type(4n+2) .Txt h3 {
|
||||
color: #b22b30;
|
||||
}
|
||||
.products-list .products-item:nth-of-type(4n+3) .Txt h3 {
|
||||
color: #7e832f;
|
||||
}
|
||||
.products-list .products-item:nth-of-type(4n+4) .Txt h3 {
|
||||
color: #772d18;
|
||||
}
|
||||
|
||||
|
||||
|
||||
@media (max-width: 1180px) {
|
||||
.products-item {
|
||||
padding: 0;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
.products-wrap .slick-prev,
|
||||
.products-wrap .slick-next {
|
||||
border-radius: 0;
|
||||
}
|
||||
.products-wrap .slick-arrow {
|
||||
position: absolute;
|
||||
-webkit-transform: translate(100%, 100%);
|
||||
transform: translate(100%, 100%);
|
||||
top: 424px;
|
||||
width: 100px;
|
||||
height: 100px;
|
||||
cursor: pointer;
|
||||
background-color: #2f2f2f;
|
||||
z-index: 2;
|
||||
}
|
||||
@media (max-width: 1536px) {
|
||||
.products-wrap .slick-arrow {
|
||||
top: 294px;
|
||||
}
|
||||
}
|
||||
@media (max-width: 1180px) {
|
||||
.products-wrap .slick-arrow {
|
||||
top: 31%;
|
||||
width: 60px;
|
||||
height: 60px;
|
||||
}
|
||||
}
|
||||
@media (max-width: 1023px) {
|
||||
.products-wrap .slick-arrow {
|
||||
top: 47%;
|
||||
}
|
||||
}
|
||||
@media (max-width: 768px) {
|
||||
.products-wrap .slick-arrow {
|
||||
top: 42%;
|
||||
}
|
||||
}
|
||||
@media (max-width: 650px) {
|
||||
.products-wrap .slick-arrow {
|
||||
top: 35%;
|
||||
}
|
||||
}
|
||||
@media (max-width: 540px) {
|
||||
.products-wrap .slick-arrow {
|
||||
top: 30%;
|
||||
}
|
||||
}
|
||||
@media (max-width: 480px) {
|
||||
.products-wrap .slick-arrow {
|
||||
top: 21%;
|
||||
}
|
||||
}
|
||||
@media (max-width: 375px) {
|
||||
.products-wrap .slick-arrow {
|
||||
top: 17%;
|
||||
}
|
||||
}
|
||||
.products-wrap .slick-arrow:hover {
|
||||
background-color: #da9c2d;
|
||||
}
|
||||
.products-wrap .slick-arrow::before {
|
||||
content: "";
|
||||
position: absolute;
|
||||
top: 50%;
|
||||
width: 15px;
|
||||
height: 15px;
|
||||
border-left: 1px solid #fff;
|
||||
border-bottom: 1px solid #fff;
|
||||
}
|
||||
.products-wrap .slick-arrow:focus {
|
||||
background-color: #da9c2d;
|
||||
}
|
||||
.products-wrap .slick-arrow.slick-prev {
|
||||
left: -269px;
|
||||
}
|
||||
@media (max-width: 1180px) {
|
||||
.products-wrap .slick-arrow.slick-prev {
|
||||
left: -180px;
|
||||
}
|
||||
}
|
||||
@media (max-width: 1023px) {
|
||||
.products-wrap .slick-arrow.slick-prev {
|
||||
left: -60px;
|
||||
}
|
||||
}
|
||||
@media (max-width: 768px) {
|
||||
.products-wrap .slick-arrow.slick-prev {
|
||||
left: -60px;
|
||||
}
|
||||
}
|
||||
.products-wrap .slick-arrow.slick-prev::before {
|
||||
left: 50%;
|
||||
-webkit-transform: translateY(-50%) rotate(45deg);
|
||||
transform: translateY(-50%) rotate(45deg);
|
||||
}
|
||||
.products-wrap .slick-arrow.slick-next {
|
||||
left: -170px;
|
||||
}
|
||||
@media (max-width: 1180px) {
|
||||
.products-wrap .slick-arrow.slick-next {
|
||||
left: -120px;
|
||||
}
|
||||
}
|
||||
@media (max-width: 1023px) {
|
||||
.products-wrap .slick-arrow.slick-next {
|
||||
left: 0px;
|
||||
}
|
||||
}
|
||||
@media (max-width: 640px) {
|
||||
.products-wrap .slick-arrow.slick-next {
|
||||
left: 0px;
|
||||
}
|
||||
}
|
||||
.products-wrap .slick-arrow.slick-next::before {
|
||||
left: 40%;
|
||||
-webkit-transform: translateY(-50%) rotate(-135deg);
|
||||
transform: translateY(-50%) rotate(-135deg);
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
/*========================================================
|
||||
原料與烘焙 & 主廚開講
|
||||
=========================================================*/
|
||||
|
||||
.data-wrap {
|
||||
background: #fbf9f4 url("../img/index/data-bg.jpg") no-repeat right bottom;
|
||||
background-size: 120% auto;
|
||||
padding-top: 60px;
|
||||
padding-bottom: 40px;
|
||||
color: #fff;
|
||||
}
|
||||
.data-item {
|
||||
position: relative;
|
||||
padding: 20px;
|
||||
}
|
||||
.data-item-img {
|
||||
position: relative;
|
||||
margin: 0;
|
||||
display: block;
|
||||
width: 100%;
|
||||
text-decoration: none;
|
||||
color: #fff;
|
||||
}
|
||||
.data-item-img h3 {
|
||||
position: absolute;
|
||||
left: 0;
|
||||
bottom: -20px;
|
||||
z-index: 2;
|
||||
display: inline-block;
|
||||
color: #fff;
|
||||
width: 20%;
|
||||
min-width: 100px;
|
||||
text-align: center;
|
||||
padding: 5px 15px;
|
||||
font-size: 0.9rem;
|
||||
background-color: #e5b35c;
|
||||
}
|
||||
.data-item-img:hover {
|
||||
color: #fff
|
||||
}
|
||||
.data-item-img:hover .data-item-mask {
|
||||
opacity: 1;
|
||||
visibility: visible
|
||||
}
|
||||
.data-item-img:hover .data-item-mask::after {
|
||||
height: 100%
|
||||
}
|
||||
.data-item-img img {
|
||||
display: block;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
-o-object-fit: cover;
|
||||
object-fit: cover
|
||||
}
|
||||
.data-item-mask {
|
||||
position: absolute;
|
||||
left: 0;
|
||||
top: 0;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
padding: .625rem 1rem;
|
||||
text-align: center;
|
||||
color: #111;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
opacity: 0;
|
||||
visibility: hidden;
|
||||
font-size: 1rem;
|
||||
font-weight: 700;
|
||||
transition: all .3s
|
||||
}
|
||||
.data-item-mask::after {
|
||||
content: "";
|
||||
position: absolute;
|
||||
left: 0;
|
||||
top: 50%;
|
||||
height: 50px;
|
||||
width: 100%;
|
||||
background-color: rgba(227,196,162,0.5);
|
||||
transform: translateY(-50%);
|
||||
transition: all .3s
|
||||
}
|
||||
.data-item-mask span {
|
||||
position: relative;
|
||||
display: block;
|
||||
z-index: 2;
|
||||
padding: 6px 30px 4px;
|
||||
border: 1px solid #111;
|
||||
}
|
||||
|
||||
.data-item-info {
|
||||
position: relative;
|
||||
padding: 40px 20px 10px;
|
||||
margin: 0 20px;
|
||||
color: #111;
|
||||
}
|
||||
.data-item-info:before {
|
||||
content: '';
|
||||
position: absolute;
|
||||
left: 0;
|
||||
top: 0;
|
||||
width: 1px;
|
||||
height: 100px;
|
||||
background-color: #b3b3b3;
|
||||
}
|
||||
.data-item-info h4 {
|
||||
font-weight: bold;
|
||||
}
|
||||
.data-item-info p span {
|
||||
color: #d86a0a;
|
||||
}
|
||||
@media (min-width: 640px) {
|
||||
.data-wrap {
|
||||
padding-top: 60px;
|
||||
padding-bottom: 20px;
|
||||
}
|
||||
.data-item-info {
|
||||
padding: 40px;
|
||||
}
|
||||
}
|
||||
@media (min-width: 992px) {
|
||||
.data-wrap {
|
||||
background: #fbf9f4 url("../img/index/data-bg.jpg") no-repeat center bottom;
|
||||
background-size: 100% auto;
|
||||
padding-top: 100px;
|
||||
padding-bottom: 20px;
|
||||
}
|
||||
.data-item-info {
|
||||
padding: 40px;
|
||||
margin: 0 20px;
|
||||
}
|
||||
}
|
||||
@media (min-width: 1200px) {
|
||||
.data-wrap {
|
||||
padding-top: 120px;
|
||||
padding-bottom: 60px;
|
||||
}
|
||||
.data-item-info {
|
||||
padding: 40px;
|
||||
margin: 0 40px;
|
||||
}
|
||||
}
|
||||
|
||||
@media (min-width: 1600px) {
|
||||
.data-wrap {
|
||||
padding-top: 160px;
|
||||
padding-bottom: 100px;
|
||||
}
|
||||
.data-item-info {
|
||||
margin: 0 100px;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
/*========================================================
|
||||
圖片效果
|
||||
=========================================================*/
|
||||
|
||||
a.figure {
|
||||
display: block;
|
||||
position: relative;
|
||||
}
|
||||
a.figure:before,a.figure:after {
|
||||
position: absolute;
|
||||
top: 10px;
|
||||
bottom: 10px;
|
||||
left: 10px;
|
||||
right: 10px;
|
||||
z-index: 10;
|
||||
content: '';
|
||||
display: inline-block;
|
||||
opacity: 0;
|
||||
-webkit-transform: scale(0.5);
|
||||
transform: scale(0.5);
|
||||
transition: .3s;
|
||||
}
|
||||
a.figure:before {
|
||||
background: #fff;
|
||||
}
|
||||
a.figure:after {
|
||||
background: url(../images/magnifier.png) no-repeat center center;
|
||||
}
|
||||
a.figure:hover:before, a.figure:hover:after {
|
||||
-webkit-transform: scale(1);
|
||||
transform: scale(1);
|
||||
}
|
||||
a.figure:hover:before {
|
||||
opacity: 0.15;
|
||||
}
|
||||
a.figure:hover:after {
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
|
||||
.picture-effect {
|
||||
position: relative;
|
||||
overflow: hidden;
|
||||
z-index: 1;
|
||||
}
|
||||
.picture-effect img {
|
||||
transform: scale(1);
|
||||
transition: .3s ease-out all;
|
||||
}
|
||||
.picture-effect a {
|
||||
display: block;
|
||||
position: relative;
|
||||
}
|
||||
.picture-effect a:before {
|
||||
content: '';
|
||||
position: absolute;
|
||||
top: 0;
|
||||
bottom: 0;
|
||||
left: 0;
|
||||
right: 0;
|
||||
background-color: rgba(12, 56, 98, 0.4);
|
||||
pointer-events: none;
|
||||
z-index: 1;
|
||||
opacity: 0;
|
||||
transition: .3s ease-out all;
|
||||
}
|
||||
.picture-effect a:hover:before {
|
||||
opacity: 1;
|
||||
}
|
||||
.picture-effect a:hover img {
|
||||
transform: scale(1.1);
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
946
public/assets/css/index1.css
Normal file
@ -0,0 +1,946 @@
|
||||
|
||||
@import url("../fonts/flaticon/flaticon.css");
|
||||
@import url("../fonts/thin/thin.css");
|
||||
@import url("../css/all.min.css");
|
||||
@import url("revise.css");
|
||||
@import url("header.css");
|
||||
@import url("footer.css");
|
||||
@import url("banner.css");
|
||||
|
||||
|
||||
/*========================================================
|
||||
標題設定
|
||||
=========================================================*/
|
||||
|
||||
|
||||
|
||||
.h2-title {
|
||||
font-size: 1.8rem;
|
||||
text-align: center;
|
||||
margin-bottom: 40px;
|
||||
position: relative;
|
||||
color: #000;
|
||||
font-weight: bold;
|
||||
}
|
||||
.h2-title span {
|
||||
padding: 0 20px;
|
||||
}
|
||||
.h2-title:before,
|
||||
.h2-title:after {
|
||||
content: '';
|
||||
display: inline-block;
|
||||
vertical-align: middle;
|
||||
height: 6px;
|
||||
background-color: #0d4180;
|
||||
position: relative;
|
||||
top: -3px;
|
||||
}
|
||||
.h2-title:before {
|
||||
width: 70px;
|
||||
margin-left: -70px;
|
||||
}
|
||||
.h2-title:after {
|
||||
width: 70px;
|
||||
margin-right: -70px;
|
||||
}
|
||||
@media (min-width: 992px) {
|
||||
.h2-title {
|
||||
font-size: 2rem;
|
||||
}
|
||||
.h2-title span {
|
||||
padding: 0 30px;
|
||||
}
|
||||
.h2-title:before {
|
||||
width: 100px;
|
||||
margin-left: -100px;
|
||||
}
|
||||
.h2-title:after {
|
||||
width: 100px;
|
||||
margin-right: -100px;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
/*========================================================
|
||||
按鈕設定
|
||||
=========================================================*/
|
||||
|
||||
.btn-more {
|
||||
margin-bottom: 30px;
|
||||
}
|
||||
.btn-more a {
|
||||
display: inline-block;
|
||||
background: #da632e url("../img/index/arrow-icon1.png") no-repeat calc(100% - 30px) center;
|
||||
padding: 5px 70px 5px 30px;
|
||||
border-radius: 20px;
|
||||
color: #fff;
|
||||
}
|
||||
.btn-more a:hover {
|
||||
background-color: #1475a8;
|
||||
padding: 5px 80px 5px 40px;
|
||||
}
|
||||
|
||||
@media (min-width: 992px) {
|
||||
.btn-more {
|
||||
margin-bottom: 0px;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
/*========================================================
|
||||
產品系列
|
||||
=========================================================*/
|
||||
|
||||
.service-wrap {
|
||||
background: url("../img/index/service-bg.jpg") no-repeat center top;
|
||||
background-size: cover;
|
||||
padding-top: 80px;
|
||||
padding-bottom: 80px;
|
||||
padding-left: 5%;
|
||||
padding-right: 5%;
|
||||
}
|
||||
.service-wrap img {
|
||||
width: 100%;
|
||||
vertical-align: bottom;
|
||||
}
|
||||
.service-item {
|
||||
position: relative;
|
||||
}
|
||||
.service-item h3 {
|
||||
background: #2e88cb; /* Old browsers */
|
||||
background: -moz-linear-gradient(top, #2e88cb 0%, #14569f 100%); /* FF3.6-15 */
|
||||
background: -webkit-linear-gradient(top, #2e88cb 0%,#14569f 100%); /* Chrome10-25,Safari5.1-6 */
|
||||
background: linear-gradient(to bottom, #2e88cb 0%,#14569f 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
|
||||
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#2e88cb', endColorstr='#14569f',GradientType=0 ); /* IE6-9 */
|
||||
color: #fff;
|
||||
font-weight: bold;
|
||||
text-align: center;
|
||||
font-size: 1.2rem;
|
||||
padding: 15px 5px;
|
||||
margin: 0;
|
||||
}
|
||||
.service-item p {
|
||||
padding: 20px;
|
||||
}
|
||||
|
||||
.service-item-img {
|
||||
position: relative;
|
||||
margin: 0;
|
||||
display: block;
|
||||
width: 100%;
|
||||
text-decoration: none;
|
||||
color: #fff;
|
||||
overflow: hidden;
|
||||
border: 10px solid #e9e9e9;
|
||||
}
|
||||
.service-item-img:hover {
|
||||
color: #fff
|
||||
}
|
||||
.service-item-img:hover .service-item-mask {
|
||||
opacity: 1;
|
||||
visibility: visible
|
||||
}
|
||||
.service-item-img:hover .service-item-mask::after {
|
||||
height: 100%
|
||||
}
|
||||
.service-item-img img {
|
||||
display: block;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
-o-object-fit: cover;
|
||||
object-fit: cover
|
||||
}
|
||||
.service-item-mask {
|
||||
position: absolute;
|
||||
left: 0;
|
||||
top: 0;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
padding: .625rem 1rem;
|
||||
text-align: center;
|
||||
color: #fff;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
opacity: 0;
|
||||
visibility: hidden;
|
||||
font-size: 1rem;
|
||||
font-weight: 700;
|
||||
transition: all .3s
|
||||
}
|
||||
.service-item-mask::after {
|
||||
content: "";
|
||||
position: absolute;
|
||||
left: 0;
|
||||
top: 50%;
|
||||
height: 50px;
|
||||
width: 100%;
|
||||
background-color: rgba(0, 0, 0, .3);
|
||||
transform: translateY(-50%);
|
||||
transition: all .3s
|
||||
}
|
||||
.service-item-mask span {
|
||||
position: relative;
|
||||
display: block;
|
||||
z-index: 2;
|
||||
padding: 6px 30px 4px;
|
||||
border: 1px solid #fff;
|
||||
}
|
||||
|
||||
|
||||
@media (min-width: 1600px) {
|
||||
.service-wrap {
|
||||
padding-left: 10%;
|
||||
padding-right: 10%;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
/*========================================================
|
||||
關於我們
|
||||
=========================================================*/
|
||||
|
||||
.about-wrap {
|
||||
background: url("../img/index/about-bg.jpg") no-repeat center top;
|
||||
background-size: cover;
|
||||
padding-top: 80px;
|
||||
padding-bottom: 80px;
|
||||
color: #fff;
|
||||
}
|
||||
.about-wrap h2 {
|
||||
color: #fff;
|
||||
}
|
||||
.about-wrap h2:before,
|
||||
.about-wrap h2:after {
|
||||
background-color: #FFFFFF;
|
||||
}
|
||||
|
||||
.about-info {
|
||||
text-align: center;
|
||||
margin-bottom: 3rem;
|
||||
}
|
||||
.about-info p:first-child {
|
||||
font-size: 1.2rem;
|
||||
}
|
||||
|
||||
.about-wrap ul {
|
||||
list-style: none;
|
||||
margin: 0 0 20px 0;
|
||||
padding: 0;
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
justify-content: flex-start;
|
||||
}
|
||||
.about-wrap ul li {
|
||||
background: url("../img/index/about-icon.png") no-repeat left 2px;
|
||||
padding-left: 30px;
|
||||
margin: 0 20px 10px 20px;
|
||||
}
|
||||
|
||||
.about-logo {
|
||||
background-color: #fff;
|
||||
max-width: 1200px;
|
||||
margin: 0 auto 3rem;
|
||||
}
|
||||
.about-item {
|
||||
margin: 20px 30px;
|
||||
}
|
||||
.about-item img {
|
||||
width: 100%;
|
||||
vertical-align: bottom;
|
||||
}
|
||||
|
||||
.about-btn {
|
||||
text-align: center;
|
||||
}
|
||||
.about-btn a {
|
||||
color: #fff;
|
||||
display: inline-block;
|
||||
font-weight: bold;
|
||||
padding: 3px 15px;
|
||||
border-bottom: 1px solid #fff;
|
||||
}
|
||||
.about-btn a:hover {
|
||||
color: #d21916;
|
||||
border-bottom: 1px solid #d21916;
|
||||
}
|
||||
|
||||
@media (min-width: 1200px) {
|
||||
.about-wrap {
|
||||
background: url("../img/index/about-bg.jpg") no-repeat center bottom;
|
||||
background-size: cover;
|
||||
padding-top: 60px;
|
||||
padding-bottom: 60px;
|
||||
color: #fff;
|
||||
}
|
||||
.about-info p:first-child {
|
||||
font-size: 1.4rem;
|
||||
}
|
||||
.about-wrap ul {
|
||||
font-size: 1.2rem;
|
||||
justify-content: center;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
/*========================================================
|
||||
訊息中心
|
||||
=========================================================*/
|
||||
|
||||
.news-wrap {
|
||||
background: url("../img/index/news-bg.jpg") no-repeat center center;
|
||||
padding-top: 80px;
|
||||
padding-bottom: 80px;
|
||||
padding-left: 5%;
|
||||
padding-right: 5%;
|
||||
}
|
||||
|
||||
.news-wrap img {
|
||||
width: 100%;
|
||||
vertical-align: bottom;
|
||||
}
|
||||
.news-item {
|
||||
position: relative;
|
||||
padding: 20px;
|
||||
}
|
||||
.news-item-img {
|
||||
position: relative;
|
||||
margin: 0;
|
||||
display: block;
|
||||
width: 100%;
|
||||
text-decoration: none;
|
||||
color: #fff;
|
||||
background-color: #f0f4f8;
|
||||
overflow: hidden;
|
||||
border: 6px solid #fff;
|
||||
transition: all .3s
|
||||
}
|
||||
.news-item-img:hover {
|
||||
color: #fff;
|
||||
border-color: #d21916;
|
||||
}
|
||||
.news-item-img:hover .news-item-mask {
|
||||
opacity: 1;
|
||||
visibility: visible
|
||||
}
|
||||
.news-item-img:hover .news-item-mask::after {
|
||||
height: 100%
|
||||
}
|
||||
.news-item-img img {
|
||||
display: block;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
-o-object-fit: cover;
|
||||
object-fit: cover
|
||||
}
|
||||
.news-item-mask {
|
||||
position: absolute;
|
||||
left: 0;
|
||||
top: 0;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
padding: .625rem 1rem;
|
||||
text-align: center;
|
||||
color: #fff;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
opacity: 0;
|
||||
visibility: hidden;
|
||||
font-size: 1rem;
|
||||
font-weight: 700;
|
||||
transition: all .3s
|
||||
}
|
||||
.news-item-mask::after {
|
||||
content: "";
|
||||
position: absolute;
|
||||
left: 0;
|
||||
top: 50%;
|
||||
height: 50px;
|
||||
width: 100%;
|
||||
background-color: rgba(0, 0, 0, .3);
|
||||
transform: translateY(-50%);
|
||||
transition: all .3s
|
||||
}
|
||||
.news-item-mask span {
|
||||
position: relative;
|
||||
display: block;
|
||||
z-index: 2;
|
||||
padding: 5px 30px;
|
||||
}
|
||||
.news-item-info {
|
||||
position: relative;
|
||||
top: -50px;
|
||||
z-index: 4;
|
||||
background-color: #fff;
|
||||
width: 86%;
|
||||
text-align: left;
|
||||
padding: 20px 30px;
|
||||
}
|
||||
.news-item-info h3 {
|
||||
color: #0d375e;
|
||||
font-weight: bold;
|
||||
font-size: 1.3rem;
|
||||
}
|
||||
.news-item-info p {
|
||||
color: #4e4e4e;
|
||||
font-size: 0.8rem;
|
||||
line-height: 24px;
|
||||
}
|
||||
.news-item-btn {
|
||||
margin-top: 10px;
|
||||
}
|
||||
.news-item-btn a {
|
||||
display: inline-block;
|
||||
color: #111;
|
||||
border: 1px solid #111;
|
||||
padding: 1px 20px 0px 20px;
|
||||
font-size: 0.9rem;
|
||||
}
|
||||
.news-item-btn a:hover {
|
||||
color: #fff;
|
||||
background-color: #d21916;
|
||||
border-color: #d21916;
|
||||
}
|
||||
|
||||
.news-btn {
|
||||
text-align: center;
|
||||
}
|
||||
.news-btn a {
|
||||
display: inline-block;
|
||||
color: #fff;
|
||||
background-color: #247ac1;
|
||||
padding: 3px 30px;
|
||||
font-weight: bold;
|
||||
}
|
||||
.news-btn a:hover {
|
||||
background-color: #d21916;
|
||||
}
|
||||
|
||||
|
||||
|
||||
@media (min-width: 992px) {
|
||||
.news {
|
||||
padding-bottom: 0;
|
||||
position: relative;
|
||||
top: -140px;
|
||||
z-index: 10;
|
||||
}
|
||||
.news > div {
|
||||
padding: 50px 50px 0 50px;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
/*========================================================
|
||||
圖片效果
|
||||
=========================================================*/
|
||||
|
||||
a.figure {
|
||||
display: block;
|
||||
position: relative;
|
||||
}
|
||||
a.figure:before,a.figure:after {
|
||||
position: absolute;
|
||||
top: 10px;
|
||||
bottom: 10px;
|
||||
left: 10px;
|
||||
right: 10px;
|
||||
z-index: 10;
|
||||
content: '';
|
||||
display: inline-block;
|
||||
opacity: 0;
|
||||
-webkit-transform: scale(0.5);
|
||||
transform: scale(0.5);
|
||||
transition: .3s;
|
||||
}
|
||||
a.figure:before {
|
||||
background: #fff;
|
||||
}
|
||||
a.figure:after {
|
||||
background: url(../images/magnifier.png) no-repeat center center;
|
||||
}
|
||||
a.figure:hover:before, a.figure:hover:after {
|
||||
-webkit-transform: scale(1);
|
||||
transform: scale(1);
|
||||
}
|
||||
a.figure:hover:before {
|
||||
opacity: 0.15;
|
||||
}
|
||||
a.figure:hover:after {
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
|
||||
.picture-effect {
|
||||
position: relative;
|
||||
overflow: hidden;
|
||||
z-index: 1;
|
||||
}
|
||||
.picture-effect img {
|
||||
transform: scale(1);
|
||||
transition: .3s ease-out all;
|
||||
}
|
||||
.picture-effect a {
|
||||
display: block;
|
||||
position: relative;
|
||||
}
|
||||
.picture-effect a:before {
|
||||
content: '';
|
||||
position: absolute;
|
||||
top: 0;
|
||||
bottom: 0;
|
||||
left: 0;
|
||||
right: 0;
|
||||
background-color: rgba(12, 56, 98, 0.4);
|
||||
pointer-events: none;
|
||||
z-index: 1;
|
||||
opacity: 0;
|
||||
transition: .3s ease-out all;
|
||||
}
|
||||
.picture-effect a:hover:before {
|
||||
opacity: 1;
|
||||
}
|
||||
.picture-effect a:hover img {
|
||||
transform: scale(1.1);
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
.facArea {
|
||||
padding: 0px;
|
||||
position: relative;
|
||||
overflow: hidden;
|
||||
width: 100%;
|
||||
height: 960px;
|
||||
background-image: url("../images/home_fac_bg.jpg");
|
||||
background-attachment: fixed;
|
||||
background-size: cover;
|
||||
background-position: center;
|
||||
background-repeat: no-repeat;
|
||||
}
|
||||
@media (max-width: 1180px) {
|
||||
.facArea {
|
||||
background-attachment: unset;
|
||||
background-size: cover;
|
||||
display: -webkit-box;
|
||||
display: -ms-flexbox;
|
||||
display: flex;
|
||||
-webkit-box-align: start;
|
||||
-ms-flex-align: start;
|
||||
align-items: flex-start;
|
||||
-webkit-box-pack: justify;
|
||||
-ms-flex-pack: justify;
|
||||
justify-content: space-between;
|
||||
height: auto;
|
||||
padding: 0 0 85px;
|
||||
}
|
||||
}
|
||||
@media (max-width: 1023px) {
|
||||
.facArea {
|
||||
-webkit-box-orient: vertical;
|
||||
-webkit-box-direction: normal;
|
||||
-ms-flex-direction: column;
|
||||
flex-direction: column;
|
||||
}
|
||||
}
|
||||
.facArea .abtBox {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 85px;
|
||||
max-width: 570px;
|
||||
height: 490px;
|
||||
width: 100%;
|
||||
}
|
||||
@media (max-width: 1536px) {
|
||||
.facArea .abtBox {
|
||||
max-width: unset;
|
||||
width: 461px;
|
||||
}
|
||||
}
|
||||
@media (max-width: 1180px) {
|
||||
.facArea .abtBox {
|
||||
position: unset;
|
||||
width: 50%;
|
||||
max-width: unset;
|
||||
height: auto;
|
||||
}
|
||||
}
|
||||
@media (max-width: 1023px) {
|
||||
.facArea .abtBox {
|
||||
width: 100%;
|
||||
}
|
||||
}
|
||||
.facArea .abtBox .Txt {
|
||||
display: -webkit-box;
|
||||
display: -ms-flexbox;
|
||||
display: flex;
|
||||
-webkit-box-orient: vertical;
|
||||
-webkit-box-direction: normal;
|
||||
-ms-flex-direction: column;
|
||||
flex-direction: column;
|
||||
-webkit-box-pack: center;
|
||||
-ms-flex-pack: center;
|
||||
justify-content: center;
|
||||
padding: 100px;
|
||||
z-index: 2;
|
||||
background-color: #fff;
|
||||
}
|
||||
@media (max-width: 767px) {
|
||||
.facArea .abtBox .Txt {
|
||||
padding: 40px;
|
||||
}
|
||||
}
|
||||
.facArea .abtBox .Txt .textBox {
|
||||
display: -webkit-box;
|
||||
display: -ms-flexbox;
|
||||
display: flex;
|
||||
-webkit-box-orient: vertical;
|
||||
-webkit-box-direction: normal;
|
||||
-ms-flex-direction: column;
|
||||
flex-direction: column;
|
||||
}
|
||||
.facArea .abtBox .Txt .title {
|
||||
color: #000;
|
||||
font-size: 42px;
|
||||
font-weight: 400;
|
||||
line-height: 1.2;
|
||||
letter-spacing: 0.5px;
|
||||
font-family: "Tenor Sans";
|
||||
text-align: center;
|
||||
}
|
||||
.facArea .abtBox .Txt .title em {
|
||||
color: #da9c2d;
|
||||
}
|
||||
.facArea .abtBox .Txt .subtitle {
|
||||
color: #000;
|
||||
display: block;
|
||||
font-size: 25px;
|
||||
line-height: 1.2;
|
||||
letter-spacing: 0.5px;
|
||||
margin-top: 10px;
|
||||
font-weight: 400;
|
||||
text-align: center;
|
||||
}
|
||||
.facArea .abtBox .Txt .subtitle em {
|
||||
font-family: "Tenor Sans";
|
||||
margin: 0 5px;
|
||||
}
|
||||
.facArea .abtBox .Txt .text {
|
||||
color: #444;
|
||||
display: block;
|
||||
line-height: 1.5;
|
||||
letter-spacing: 0.5px;
|
||||
margin-top: 20px;
|
||||
font-size: 15px;
|
||||
text-align: center;
|
||||
font-weight: 400;
|
||||
}
|
||||
.facArea .abtBox .Txt .moreBtn {
|
||||
width: 100%;
|
||||
}
|
||||
.facArea .abtBox .Txt .moreBtn a {
|
||||
text-align: center;
|
||||
color: #000;
|
||||
text-transform: uppercase;
|
||||
position: relative;
|
||||
font-family: "Tenor Sans";
|
||||
padding: 50px;
|
||||
display: block;
|
||||
}
|
||||
.facArea .abtBox .Txt .moreBtn a::before {
|
||||
content: "+";
|
||||
font-family: FontAwesome;
|
||||
position: absolute;
|
||||
width: 28px;
|
||||
height: 28px;
|
||||
border-radius: 50%;
|
||||
border: 2px solid #da9c2d;
|
||||
color: #da9c2d;
|
||||
bottom: 25px;
|
||||
left: 49.5%;
|
||||
-webkit-transform: translate(-50%, 100%);
|
||||
transform: translate(-50%, 100%);
|
||||
display: -webkit-box;
|
||||
display: -ms-flexbox;
|
||||
display: flex;
|
||||
-webkit-box-pack: center;
|
||||
-ms-flex-pack: center;
|
||||
justify-content: center;
|
||||
-webkit-box-align: center;
|
||||
-ms-flex-align: center;
|
||||
align-items: center;
|
||||
font-weight: 600;
|
||||
font-size: 20px;
|
||||
}
|
||||
.facArea .abtBox .Txt .moreBtn a:hover {
|
||||
color: #da9c2d;
|
||||
-webkit-animation: upDown 1.2s ease-in-out infinite;
|
||||
animation: upDown 1.2s ease-in-out infinite;
|
||||
}
|
||||
.facArea .abtBox .Txt .moreBtn a:hover::before {
|
||||
background-color: #da9c2d;
|
||||
color: #fff;
|
||||
}
|
||||
.facArea .facList {
|
||||
width: 100%;
|
||||
position: relative;
|
||||
-webkit-transform: translateX(35%);
|
||||
transform: translateX(35%);
|
||||
margin: 0 -40px;
|
||||
}
|
||||
@media (max-width: 1536px) {
|
||||
.facArea .facList {
|
||||
margin: 0;
|
||||
}
|
||||
}
|
||||
@media (max-width: 1440px) {
|
||||
.facArea .facList {
|
||||
-webkit-transform: translateX(37.3%);
|
||||
transform: translateX(37.3%);
|
||||
}
|
||||
}
|
||||
@media (max-width: 1366px) {
|
||||
.facArea .facList {
|
||||
-webkit-transform: translateX(39.5%);
|
||||
transform: translateX(39.5%);
|
||||
}
|
||||
}
|
||||
@media (max-width: 1280px) {
|
||||
.facArea .facList {
|
||||
-webkit-transform: translateX(42.1%);
|
||||
transform: translateX(42.1%);
|
||||
}
|
||||
}
|
||||
@media (max-width: 1180px) {
|
||||
.facArea .facList {
|
||||
-webkit-transform: translate(0%, 0);
|
||||
transform: translate(0%, 0);
|
||||
width: 50%;
|
||||
margin: 0;
|
||||
}
|
||||
}
|
||||
@media (max-width: 1023px) {
|
||||
.facArea .facList {
|
||||
width: 100%;
|
||||
}
|
||||
}
|
||||
.facArea .facItem {
|
||||
padding: 0 30px;
|
||||
}
|
||||
@media (max-width: 1180px) {
|
||||
.facArea .facItem {
|
||||
padding: 0;
|
||||
}
|
||||
}
|
||||
.facArea .item {
|
||||
position: relative;
|
||||
overflow: hidden;
|
||||
}
|
||||
.facArea .item::before {
|
||||
content: "";
|
||||
position: absolute;
|
||||
width: 1px;
|
||||
height: 280px;
|
||||
background-color: rgba(0, 0, 0, 0.2);
|
||||
bottom: 0;
|
||||
left: 20px;
|
||||
z-index: 2;
|
||||
}
|
||||
@media (max-width: 1180px) {
|
||||
.facArea .item::before {
|
||||
left: 30px;
|
||||
}
|
||||
}
|
||||
.facArea .Img img {
|
||||
width: 100%;
|
||||
display: block;
|
||||
-webkit-backface-visibility: hidden;
|
||||
backface-visibility: hidden;
|
||||
}
|
||||
.facArea .Txt {
|
||||
width: 100%;
|
||||
padding: 50px 40px 0;
|
||||
color: #888888;
|
||||
font-size: 15px;
|
||||
}
|
||||
@media (max-width: 1180px) {
|
||||
.facArea .Txt {
|
||||
padding: 50px 60px 0;
|
||||
}
|
||||
}
|
||||
.facArea .Txt .title {
|
||||
padding-bottom: 2px;
|
||||
}
|
||||
.facArea .Txt .title a {
|
||||
color: #000;
|
||||
font-size: 20px;
|
||||
}
|
||||
.facArea .Txt .text {
|
||||
margin: 0 0 15px 0;
|
||||
display: -webkit-box;
|
||||
display: -ms-flexbox;
|
||||
display: flex;
|
||||
}
|
||||
@media (max-width: 640px) {
|
||||
.facArea .Txt .text {
|
||||
-webkit-box-orient: vertical;
|
||||
-webkit-box-direction: normal;
|
||||
-ms-flex-direction: column;
|
||||
flex-direction: column;
|
||||
}
|
||||
}
|
||||
.facArea .Txt .text .tit {
|
||||
color: #da9c2d;
|
||||
}
|
||||
@media (max-width: 640px) {
|
||||
.facArea .Txt .text .tit {
|
||||
margin: 0px 0 10px 0;
|
||||
}
|
||||
}
|
||||
.facArea .Txt .btnBox {
|
||||
display: -webkit-box;
|
||||
display: -ms-flexbox;
|
||||
display: flex;
|
||||
}
|
||||
.facArea .Txt .btnBox svg {
|
||||
width: 21px;
|
||||
height: 15px;
|
||||
color: #888888;
|
||||
margin: 0 0px 0 10px;
|
||||
}
|
||||
.facArea .Txt .btnBox .btn {
|
||||
margin: 0px 20px 0 0;
|
||||
}
|
||||
.facArea .Txt .btnBox .btn a {
|
||||
color: #888888;
|
||||
padding: 2px 0;
|
||||
border-bottom: 1px solid rgba(255, 255, 255, 0);
|
||||
font-family: "Tenor Sans";
|
||||
font-size: 15px;
|
||||
display: inline-block;
|
||||
letter-spacing: 0.5px;
|
||||
}
|
||||
.facArea .Txt .btnBox .btn:hover a {
|
||||
color: #da9c2d;
|
||||
border-bottom: 1px solid #da9c2d;
|
||||
letter-spacing: 2px;
|
||||
}
|
||||
.facArea .Txt .btnBox .btn:hover svg {
|
||||
color: #da9c2d;
|
||||
}
|
||||
.facArea .slick-arrow {
|
||||
position: absolute;
|
||||
-webkit-transform: translate(100%, 100%);
|
||||
transform: translate(100%, 100%);
|
||||
top: 394px;
|
||||
width: 100px;
|
||||
height: 100px;
|
||||
cursor: pointer;
|
||||
background-color: #2f2f2f;
|
||||
z-index: 2;
|
||||
}
|
||||
@media (max-width: 1536px) {
|
||||
.facArea .slick-arrow {
|
||||
top: 465px;
|
||||
}
|
||||
}
|
||||
@media (max-width: 1180px) {
|
||||
.facArea .slick-arrow {
|
||||
top: 65%;
|
||||
}
|
||||
}
|
||||
@media (max-width: 1023px) {
|
||||
.facArea .slick-arrow {
|
||||
top: 52%;
|
||||
width: 60px;
|
||||
height: 60px;
|
||||
}
|
||||
}
|
||||
@media (max-width: 650px) {
|
||||
.facArea .slick-arrow {
|
||||
top: 45%;
|
||||
}
|
||||
}
|
||||
@media (max-width: 540px) {
|
||||
.facArea .slick-arrow {
|
||||
top: 40%;
|
||||
}
|
||||
}
|
||||
@media (max-width: 480px) {
|
||||
.facArea .slick-arrow {
|
||||
top: 35%;
|
||||
}
|
||||
}
|
||||
@media (max-width: 375px) {
|
||||
.facArea .slick-arrow {
|
||||
top: 130px;
|
||||
}
|
||||
}
|
||||
.facArea .slick-arrow:hover {
|
||||
background-color: #da9c2d;
|
||||
}
|
||||
.facArea .slick-arrow::before {
|
||||
content: "";
|
||||
position: absolute;
|
||||
top: 50%;
|
||||
width: 15px;
|
||||
height: 15px;
|
||||
border-left: 1px solid #fff;
|
||||
border-bottom: 1px solid #fff;
|
||||
}
|
||||
.facArea .slick-arrow:focus {
|
||||
background-color: #da9c2d;
|
||||
}
|
||||
.facArea .slick-arrow.slick-prev {
|
||||
left: -269px;
|
||||
}
|
||||
@media (max-width: 1180px) {
|
||||
.facArea .slick-arrow.slick-prev {
|
||||
left: -300px;
|
||||
}
|
||||
}
|
||||
@media (max-width: 1023px) {
|
||||
.facArea .slick-arrow.slick-prev {
|
||||
left: -60px;
|
||||
}
|
||||
}
|
||||
@media (max-width: 768px) {
|
||||
.facArea .slick-arrow.slick-prev {
|
||||
left: -60px;
|
||||
}
|
||||
}
|
||||
.facArea .slick-arrow.slick-prev::before {
|
||||
left: 45%;
|
||||
-webkit-transform: translateY(-50%) rotate(45deg);
|
||||
transform: translateY(-50%) rotate(45deg);
|
||||
}
|
||||
.facArea .slick-arrow.slick-next {
|
||||
left: -170px;
|
||||
}
|
||||
@media (max-width: 1180px) {
|
||||
.facArea .slick-arrow.slick-next {
|
||||
left: -200px;
|
||||
}
|
||||
}
|
||||
@media (max-width: 1023px) {
|
||||
.facArea .slick-arrow.slick-next {
|
||||
left: 0px;
|
||||
}
|
||||
}
|
||||
@media (max-width: 640px) {
|
||||
.facArea .slick-arrow.slick-next {
|
||||
left: 0px;
|
||||
}
|
||||
}
|
||||
.facArea .slick-arrow.slick-next::before {
|
||||
right: 45%;
|
||||
-webkit-transform: translateY(-50%) rotate(-135deg);
|
||||
transform: translateY(-50%) rotate(-135deg);
|
||||
}
|
||||
|
||||
|
||||
|
1513
public/assets/css/page.css
Normal file
1892
public/assets/css/page1.css
Normal file
722
public/assets/css/revise.css
Normal file
@ -0,0 +1,722 @@
|
||||
|
||||
/*========================================================
|
||||
共同設定設定
|
||||
=========================================================*/
|
||||
|
||||
html {
|
||||
image-rendering: -webkit-optimize-contrast;
|
||||
}
|
||||
a {
|
||||
transition: all 0.2s;
|
||||
word-wrap: break-word;
|
||||
word-break: break-all;
|
||||
}
|
||||
.img-style img {
|
||||
display: inline-block;
|
||||
max-width: 100%;
|
||||
height: auto !important;
|
||||
}
|
||||
.font-300 {
|
||||
text-align: center;
|
||||
font-size: 2rem;
|
||||
line-height: 300px;
|
||||
}
|
||||
|
||||
|
||||
/* 標題 */
|
||||
.title-wrap {
|
||||
color: #000;
|
||||
text-align: center;
|
||||
margin-bottom: 60px;
|
||||
}
|
||||
.title-wrap h2 {
|
||||
font-size: 1rem;
|
||||
width: 100%;
|
||||
overflow: hidden;
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
.title-wrap h2 span {
|
||||
padding: 0 10px;
|
||||
}
|
||||
.title-wrap h2:before,
|
||||
.title-wrap h2:after {
|
||||
content: '';
|
||||
display: inline-block;
|
||||
vertical-align: middle;
|
||||
height: 1px;
|
||||
background-color: #246b24;
|
||||
}
|
||||
.title-wrap h2:before {
|
||||
width: 100px;
|
||||
margin-left: -100px;
|
||||
}
|
||||
.title-wrap h2:after {
|
||||
width: 100px;
|
||||
margin-right: -100px;
|
||||
}
|
||||
.title-wrap h2+p {
|
||||
font-size: 2rem;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
/*========================================================
|
||||
Grid 設定
|
||||
=========================================================*/
|
||||
|
||||
@media (min-width: 1600px) {
|
||||
.container {
|
||||
max-width: 1480px;
|
||||
}
|
||||
}
|
||||
|
||||
.col-bg-1, .col-bg-2, .col-bg-3, .col-bg-4, .col-bg-5, .col-bg-6, .col-bg-7, .col-bg-8, .col-bg-9, .col-bg-10, .col-bg-11, .col-bg-12, .col-bg,
|
||||
.col-bg-auto {
|
||||
position: relative;
|
||||
width: 100%;
|
||||
padding-right: 15px;
|
||||
padding-left: 15px;
|
||||
}
|
||||
|
||||
@media (min-width: 1600px) {
|
||||
.col-bg {
|
||||
-ms-flex-preferred-size: 0;
|
||||
flex-basis: 0;
|
||||
-ms-flex-positive: 1;
|
||||
flex-grow: 1;
|
||||
max-width: 100%;
|
||||
}
|
||||
.col-bg-auto {
|
||||
-ms-flex: 0 0 auto;
|
||||
flex: 0 0 auto;
|
||||
width: auto;
|
||||
max-width: 100%;
|
||||
}
|
||||
.col-bg-1 {
|
||||
-ms-flex: 0 0 8.333333%;
|
||||
flex: 0 0 8.333333%;
|
||||
max-width: 8.333333%;
|
||||
}
|
||||
.col-bg-2 {
|
||||
-ms-flex: 0 0 16.666667%;
|
||||
flex: 0 0 16.666667%;
|
||||
max-width: 16.666667%;
|
||||
}
|
||||
.col-bg-3 {
|
||||
-ms-flex: 0 0 25%;
|
||||
flex: 0 0 25%;
|
||||
max-width: 25%;
|
||||
}
|
||||
.col-bg-4 {
|
||||
-ms-flex: 0 0 33.333333%;
|
||||
flex: 0 0 33.333333%;
|
||||
max-width: 33.333333%;
|
||||
}
|
||||
.col-bg-5 {
|
||||
-ms-flex: 0 0 41.666667%;
|
||||
flex: 0 0 41.666667%;
|
||||
max-width: 41.666667%;
|
||||
}
|
||||
.col-bg-6 {
|
||||
-ms-flex: 0 0 50%;
|
||||
flex: 0 0 50%;
|
||||
max-width: 50%;
|
||||
}
|
||||
.col-bg-7 {
|
||||
-ms-flex: 0 0 58.333333%;
|
||||
flex: 0 0 58.333333%;
|
||||
max-width: 58.333333%;
|
||||
}
|
||||
.col-bg-8 {
|
||||
-ms-flex: 0 0 66.666667%;
|
||||
flex: 0 0 66.666667%;
|
||||
max-width: 66.666667%;
|
||||
}
|
||||
.col-bg-9 {
|
||||
-ms-flex: 0 0 75%;
|
||||
flex: 0 0 75%;
|
||||
max-width: 75%;
|
||||
}
|
||||
.col-bg-10 {
|
||||
-ms-flex: 0 0 83.333333%;
|
||||
flex: 0 0 83.333333%;
|
||||
max-width: 83.333333%;
|
||||
}
|
||||
.col-bg-11 {
|
||||
-ms-flex: 0 0 91.666667%;
|
||||
flex: 0 0 91.666667%;
|
||||
max-width: 91.666667%;
|
||||
}
|
||||
.col-bg-12 {
|
||||
-ms-flex: 0 0 100%;
|
||||
flex: 0 0 100%;
|
||||
max-width: 100%;
|
||||
}
|
||||
.order-bg-first {
|
||||
-ms-flex-order: -1;
|
||||
order: -1;
|
||||
}
|
||||
.order-bg-last {
|
||||
-ms-flex-order: 13;
|
||||
order: 13;
|
||||
}
|
||||
.order-bg-0 {
|
||||
-ms-flex-order: 0;
|
||||
order: 0;
|
||||
}
|
||||
.order-bg-1 {
|
||||
-ms-flex-order: 1;
|
||||
order: 1;
|
||||
}
|
||||
.order-bg-2 {
|
||||
-ms-flex-order: 2;
|
||||
order: 2;
|
||||
}
|
||||
.order-bg-3 {
|
||||
-ms-flex-order: 3;
|
||||
order: 3;
|
||||
}
|
||||
.order-bg-4 {
|
||||
-ms-flex-order: 4;
|
||||
order: 4;
|
||||
}
|
||||
.order-bg-5 {
|
||||
-ms-flex-order: 5;
|
||||
order: 5;
|
||||
}
|
||||
.order-bg-6 {
|
||||
-ms-flex-order: 6;
|
||||
order: 6;
|
||||
}
|
||||
.order-bg-7 {
|
||||
-ms-flex-order: 7;
|
||||
order: 7;
|
||||
}
|
||||
.order-bg-8 {
|
||||
-ms-flex-order: 8;
|
||||
order: 8;
|
||||
}
|
||||
.order-bg-9 {
|
||||
-ms-flex-order: 9;
|
||||
order: 9;
|
||||
}
|
||||
.order-bg-10 {
|
||||
-ms-flex-order: 10;
|
||||
order: 10;
|
||||
}
|
||||
.order-bg-11 {
|
||||
-ms-flex-order: 11;
|
||||
order: 11;
|
||||
}
|
||||
.order-bg-12 {
|
||||
-ms-flex-order: 12;
|
||||
order: 12;
|
||||
}
|
||||
.offset-bg-0 {
|
||||
margin-left: 0;
|
||||
}
|
||||
.offset-bg-1 {
|
||||
margin-left: 8.333333%;
|
||||
}
|
||||
.offset-bg-2 {
|
||||
margin-left: 16.666667%;
|
||||
}
|
||||
.offset-bg-3 {
|
||||
margin-left: 25%;
|
||||
}
|
||||
.offset-bg-4 {
|
||||
margin-left: 33.333333%;
|
||||
}
|
||||
.offset-bg-5 {
|
||||
margin-left: 41.666667%;
|
||||
}
|
||||
.offset-bg-6 {
|
||||
margin-left: 50%;
|
||||
}
|
||||
.offset-bg-7 {
|
||||
margin-left: 58.333333%;
|
||||
}
|
||||
.offset-bg-8 {
|
||||
margin-left: 66.666667%;
|
||||
}
|
||||
.offset-bg-9 {
|
||||
margin-left: 75%;
|
||||
}
|
||||
.offset-bg-10 {
|
||||
margin-left: 83.333333%;
|
||||
}
|
||||
.offset-bg-11 {
|
||||
margin-left: 91.666667%;
|
||||
}
|
||||
.d-bg-flex {
|
||||
display: -ms-flexbox !important;
|
||||
display: flex !important;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
/*========================================================
|
||||
影片大小設定
|
||||
=========================================================*/
|
||||
|
||||
.video-iframe iframe, .video-iframe embed {
|
||||
width: 100% !important;
|
||||
height: 300px !important;
|
||||
margin-top: 20px;
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
|
||||
.video-embed {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
@media (min-width: 768px) {
|
||||
.video-iframe iframe, .video-iframe embed {
|
||||
height: 420px !important;
|
||||
}
|
||||
}
|
||||
@media (min-width: 992px) {
|
||||
.video-iframe iframe, .video-iframe embed {
|
||||
height: 520px !important;
|
||||
}
|
||||
}
|
||||
@media (min-width: 1200px) {
|
||||
.video-iframe iframe, .video-iframe embed {
|
||||
height: 460px !important;
|
||||
}
|
||||
}
|
||||
@media (min-width: 1600px) {
|
||||
.video-iframe iframe, .video-iframe embed {
|
||||
width: 70% !important;
|
||||
margin: 0 auto;
|
||||
height: 640px !important;
|
||||
}
|
||||
}
|
||||
@media (min-width: 1800px) {
|
||||
.video-iframe iframe, .video-iframe embed {
|
||||
width: 65% !important;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
/*========================================================
|
||||
其他設定
|
||||
=========================================================*/
|
||||
|
||||
|
||||
/* 寬度設定 */
|
||||
@media (min-width: 576px) {
|
||||
.w-sm-25 {
|
||||
width: 25% !important;
|
||||
}
|
||||
.w-sm-50 {
|
||||
width: 50% !important;
|
||||
}
|
||||
.w-sm-75 {
|
||||
width: 75% !important;
|
||||
}
|
||||
.w-sm-100 {
|
||||
width: 100% !important;
|
||||
}
|
||||
}
|
||||
@media (min-width: 768px) {
|
||||
.w-md-25 {
|
||||
width: 25% !important;
|
||||
}
|
||||
.w-md-50 {
|
||||
width: 50% !important;
|
||||
}
|
||||
.w-md-75 {
|
||||
width: 75% !important;
|
||||
}
|
||||
.w-md-100 {
|
||||
width: 100% !important;
|
||||
}
|
||||
}
|
||||
@media (min-width: 992px) {
|
||||
.w-lg-25 {
|
||||
width: 25% !important;
|
||||
}
|
||||
.w-lg-50 {
|
||||
width: 50% !important;
|
||||
}
|
||||
.w-lg-75 {
|
||||
width: 75% !important;
|
||||
}
|
||||
.w-lg-100 {
|
||||
width: 100% !important;
|
||||
}
|
||||
}
|
||||
@media (min-width: 1200px) {
|
||||
.w-xl-25 {
|
||||
width: 25% !important;
|
||||
}
|
||||
.w-xl-50 {
|
||||
width: 50% !important;
|
||||
}
|
||||
.w-xl-75 {
|
||||
width: 75% !important;
|
||||
}
|
||||
.w-xl-100 {
|
||||
width: 100% !important;
|
||||
}
|
||||
}
|
||||
@media (min-width: 1600px) {
|
||||
.w-bg-25 {
|
||||
width: 25% !important;
|
||||
}
|
||||
.w-bg-50 {
|
||||
width: 50% !important;
|
||||
}
|
||||
.w-bg-75 {
|
||||
width: 75% !important;
|
||||
}
|
||||
.w-bg-100 {
|
||||
width: 100% !important;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
/* 字體大小 */
|
||||
.fs-1x {
|
||||
font-size: 1rem;
|
||||
}
|
||||
.fs-2x {
|
||||
font-size: 1.5rem;
|
||||
}
|
||||
.fs-3x {
|
||||
font-size: 2rem;
|
||||
}
|
||||
.fs-4x {
|
||||
font-size: 2.5rem;
|
||||
}
|
||||
.fs-5x {
|
||||
font-size: 3rem;
|
||||
}
|
||||
|
||||
/* 按鈕顏色 */
|
||||
.btn-warning {
|
||||
color: #fff;
|
||||
background-color: #bb4c15;
|
||||
border-color: #bb4c15;
|
||||
}
|
||||
.btn-warning:hover {
|
||||
color: #fff;
|
||||
background-color: #e5b35c;
|
||||
border-color: #e5b35c;
|
||||
}
|
||||
|
||||
|
||||
|
||||
/* 頁碼 */
|
||||
.page-ex2 .page-link {
|
||||
padding: 0.1rem 0.5rem;
|
||||
border-radius: 50%;
|
||||
margin-left: 5px;
|
||||
margin-right: 5px;
|
||||
color: #333;
|
||||
}
|
||||
.page-ex2 .prev, .page-ex2 .next {
|
||||
border: none;
|
||||
}
|
||||
.page-ex2 .page-item.active .page-link, .page-ex2 .page-item .page-link:hover {
|
||||
color: #fff;
|
||||
background-color: #333;
|
||||
border-color: #333;
|
||||
}
|
||||
|
||||
/*========================================================
|
||||
頁面置頂 scrollUp
|
||||
=========================================================*/
|
||||
|
||||
#scrollUp {
|
||||
position: fixed;
|
||||
bottom: 80px;
|
||||
right: 20px;
|
||||
width: 50px;
|
||||
height: 50px;
|
||||
background-color: #137eb6;
|
||||
border-radius: 50%;
|
||||
}
|
||||
#scrollUp:after {
|
||||
font-family: 'Font Awesome 5 free';
|
||||
content: "\f077";
|
||||
font-weight: 900;
|
||||
display: block;
|
||||
position: absolute;
|
||||
top: 50%;
|
||||
left: 50%;
|
||||
transform: translate(-50%,-50%);
|
||||
z-index: 9;
|
||||
color: #fff;
|
||||
font-size: 1.2rem;
|
||||
}
|
||||
@media (max-width: 991.98px){
|
||||
#scrollUp {
|
||||
bottom: 100px;
|
||||
right: 10px;
|
||||
width: 30px;
|
||||
height: 30px;
|
||||
}
|
||||
}
|
||||
|
||||
/*========================================================
|
||||
footer-icon (右側)
|
||||
=========================================================*/
|
||||
|
||||
.icon_Community a.js-btn-icon_Community {
|
||||
text-align: center;
|
||||
width: 50px;
|
||||
line-height: 47px;
|
||||
border-radius: 100px;
|
||||
position: absolute;
|
||||
bottom: 0;
|
||||
left: 0;
|
||||
padding: 0;
|
||||
cursor: pointer;
|
||||
color: #fff;
|
||||
background: #000;
|
||||
font-size: 22px;
|
||||
box-shadow: 0 3px 5px rgba(0, 0, 0, 0.5);
|
||||
height: 50px;
|
||||
pointer-events: auto;
|
||||
}
|
||||
|
||||
.js-btn-icon_Community:hover,
|
||||
.js-btn-icon_Community:focus {
|
||||
color: #fff;
|
||||
background-color: #d0a57f;
|
||||
border-color: #d0a57f;
|
||||
}
|
||||
|
||||
.js-icon_Community .icon_li {
|
||||
position: relative;
|
||||
left: -100px;
|
||||
|
||||
}
|
||||
.icon_li_img {
|
||||
max-width: 50px;
|
||||
width: 100%;
|
||||
height: auto;
|
||||
display: block;
|
||||
position: absolute;
|
||||
left: 0;
|
||||
z-index: 1;
|
||||
}
|
||||
|
||||
|
||||
.js-icon_Community.active .icon_li {
|
||||
left: 0;
|
||||
pointer-events: auto;
|
||||
}
|
||||
|
||||
.js-icon_Community .icon_li:nth-child(1) {
|
||||
transition: all 0.1s ease-out;
|
||||
-moz-transition: all 0.1s ease-out;
|
||||
-o-transition: all 0.1s ease-out;
|
||||
-webkit-transition: all 0.1s ease-out;
|
||||
}
|
||||
|
||||
.js-icon_Community .icon_li:nth-child(2) {
|
||||
transition: all 0.3s ease-out;
|
||||
-moz-transition: all 0.3s ease-out;
|
||||
-o-transition: all 0.3s ease-out;
|
||||
-webkit-transition: all 0.3s ease-out;
|
||||
}
|
||||
|
||||
.js-icon_Community .icon_li:nth-child(3) {
|
||||
transition: all 0.5s ease-out;
|
||||
-moz-transition: all 0.5s ease-out;
|
||||
-o-transition: all 0.5s ease-out;
|
||||
-webkit-transition: all 0.5s ease-out;
|
||||
}
|
||||
|
||||
|
||||
.icon_li a:hover .icon{
|
||||
animation: go 3s linear infinite;
|
||||
}
|
||||
@keyframes go {
|
||||
10% {
|
||||
transform: rotate(15deg);
|
||||
}
|
||||
20% {
|
||||
transform: rotate(-10deg);
|
||||
}
|
||||
30% {
|
||||
transform: rotate(5deg);
|
||||
}
|
||||
40% {
|
||||
transform: rotate(-5deg);
|
||||
}
|
||||
50%,100% {
|
||||
transform: rotate(0deg);
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width: 539px){
|
||||
.icon_Community_ul .icon_li:nth-of-type(1),
|
||||
.icon_Community_ul .icon_li:nth-of-type(2) {
|
||||
width: 17%;
|
||||
}
|
||||
.icon_Community_ul .icon_li:nth-of-type(3),
|
||||
.icon_Community_ul .icon_li:nth-of-type(5) {
|
||||
width: 21%;
|
||||
}
|
||||
.icon_Community_ul .icon_li:nth-of-type(4){
|
||||
width: 24%;
|
||||
}
|
||||
}
|
||||
@media (max-width: 991.98px){
|
||||
.icon_Community {
|
||||
width: 100%;
|
||||
position: fixed;
|
||||
left: auto;
|
||||
bottom: 0;
|
||||
right: 0;
|
||||
z-index: 999998;
|
||||
pointer-events: none;
|
||||
}
|
||||
.icon_Community_ul {
|
||||
list-style: none;
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
display: flex;
|
||||
}
|
||||
.icon_Community_ul .icon_li {
|
||||
width: 33.33%;
|
||||
border-right: 1px solid #fff;
|
||||
}
|
||||
.icon_Community_ul .icon_li:last-child {
|
||||
border-right: none;
|
||||
}
|
||||
.icon_Community_ul .icon_name {
|
||||
font-size: 0.9rem;
|
||||
padding-top: 5px;
|
||||
}
|
||||
.icon_img {
|
||||
display: block;
|
||||
background: #d0a57f;
|
||||
overflow: hidden;
|
||||
text-align: center;
|
||||
color: #fff;
|
||||
position: relative;
|
||||
padding: 10px 5px;
|
||||
text-decoration: none;
|
||||
}
|
||||
.icon_img_add {
|
||||
background: #bb4c15;
|
||||
}
|
||||
.icon_img_buy {
|
||||
background: #b22b30;
|
||||
}
|
||||
.icon_Community a{
|
||||
color: #fff;
|
||||
text-decoration:none;
|
||||
}
|
||||
.icon_Community a img{
|
||||
display: block;
|
||||
margin: 0 auto;
|
||||
width: 22px;
|
||||
}
|
||||
.icon_Community a:hover{
|
||||
background-color: #e5b35c;
|
||||
}
|
||||
.icon_Community a:hover img{
|
||||
animation: go 3s linear infinite;
|
||||
}
|
||||
}
|
||||
|
||||
@media (min-width: 992px){
|
||||
.icon_Community {
|
||||
position: fixed;
|
||||
right: 20px;
|
||||
bottom: 80px;
|
||||
z-index: 9998;
|
||||
pointer-events: none;
|
||||
}
|
||||
.icon_Community_ul {
|
||||
list-style: none;
|
||||
padding: 0;
|
||||
flex-direction: column;
|
||||
align-items: flex-end;
|
||||
display: flex;
|
||||
margin-bottom: 50px;
|
||||
}
|
||||
.icon_img {
|
||||
background: #d0a57f;
|
||||
border: none;
|
||||
overflow: hidden;
|
||||
text-align: center;
|
||||
margin-bottom: 6px;
|
||||
width: 50px;
|
||||
text-decoration: none;
|
||||
border-radius: 100px;
|
||||
color: #fff;
|
||||
transition: all 0.3s ease;
|
||||
position: relative;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
}
|
||||
.icon_img_add {
|
||||
background: #bb4c15;
|
||||
}
|
||||
.icon_img_buy {
|
||||
background: #b22b30;
|
||||
}
|
||||
.icon_img.active {
|
||||
width: 142px;
|
||||
}
|
||||
.icon_img.active .icon_name {
|
||||
text-indent: 0;
|
||||
opacity: 1;
|
||||
}
|
||||
.icon_img:hover {
|
||||
text-decoration: none;
|
||||
width: 142px;
|
||||
}
|
||||
.icon_img:before {
|
||||
opacity: 0;
|
||||
|
||||
}
|
||||
.icon_img .icon {
|
||||
color: #fff;
|
||||
font-size: 22px;
|
||||
width: 50px;
|
||||
line-height: 50px;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
position: absolute;
|
||||
right: 0;
|
||||
z-index: 1;
|
||||
}
|
||||
.icon_img:hover .icon {
|
||||
text-decoration: none;
|
||||
}
|
||||
.icon_img:hover .icon_name {
|
||||
opacity: 1;
|
||||
text-indent: 0;
|
||||
}
|
||||
.icon_name {
|
||||
position: relative;
|
||||
line-height: 50px;
|
||||
padding-left: 15px;
|
||||
padding-right: 50px;
|
||||
transition: all 0.3s ease;
|
||||
opacity: 0;
|
||||
text-decoration: none;
|
||||
color: #fff;
|
||||
white-space: nowrap;
|
||||
border-radius: 100px;
|
||||
overflow: hidden;
|
||||
font-family: Arial, "Microsoft JhengHei", sans-serif;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
.modal {
|
||||
z-index: 9999;
|
||||
}
|
BIN
public/assets/file/products-documents-a01.pdf
Normal file
BIN
public/assets/file/products-mechanics-a01.pdf
Normal file
23651
public/assets/file/products-mechanics-a02.stp
Normal file
BIN
public/assets/fonts/flaticon/Flaticon.eot
Normal file
415
public/assets/fonts/flaticon/Flaticon.svg
Normal file
@ -0,0 +1,415 @@
|
||||
<?xml version="1.0" standalone="no"?>
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
|
||||
<!--
|
||||
2016-12-20: Created.
|
||||
-->
|
||||
<svg xmlns="http://www.w3.org/2000/svg">
|
||||
<metadata>
|
||||
Created by FontForge 20120731 at Tue Dec 20 09:38:08 2016
|
||||
By Apache
|
||||
Created by Apache with FontForge 2.0 (http://fontforge.sf.net)
|
||||
</metadata>
|
||||
<defs>
|
||||
<font id="Flaticon" horiz-adv-x="512" >
|
||||
<font-face
|
||||
font-family="Flaticon"
|
||||
font-weight="500"
|
||||
font-stretch="normal"
|
||||
units-per-em="512"
|
||||
panose-1="2 0 6 3 0 0 0 0 0 0"
|
||||
ascent="448"
|
||||
descent="-64"
|
||||
bbox="-0.000632763 -64.0012 512.001 448.001"
|
||||
underline-thickness="25.6"
|
||||
underline-position="-51.2"
|
||||
unicode-range="U+0020-F138"
|
||||
/>
|
||||
<missing-glyph />
|
||||
<glyph glyph-name="space" unicode=" " horiz-adv-x="200"
|
||||
/>
|
||||
<glyph glyph-name="uniF112" unicode=""
|
||||
d="M426.667 448c26.8184 0 48.7617 -21.9434 48.7617 -48.7617v-341.334c0 -26.8184 -21.9434 -48.7617 -48.7617 -48.7617h-97.5244l-73.1426 -73.1426l-73.1426 73.1426h-97.5244c-26.8184 0 -48.7617 21.9434 -48.7617 48.7617v341.334
|
||||
c0 26.8184 21.9434 48.7617 48.7617 48.7617h341.334zM280.381 57.9043v48.7627h-48.7617v-48.7627h48.7617zM331.581 245.638c12.1904 14.6289 21.9424 34.1338 21.9434 56.0762c0 53.6387 -43.8857 97.5244 -97.5234 97.5244s-97.5234 -43.8857 -97.5234 -97.5244h48.7617
|
||||
c0 26.8193 21.9424 48.7627 48.7617 48.7627s48.7617 -21.9434 48.7617 -48.7627c0 -14.6279 -4.87598 -26.8184 -14.6279 -34.1328l-29.2588 -31.6953c-19.5049 -17.0664 -29.2568 -41.4473 -29.2568 -68.2666v-12.1904h48.7617c0 36.5713 9.75391 51.2002 29.2568 68.2666
|
||||
z" />
|
||||
<glyph glyph-name="uniF117" unicode=""
|
||||
d="M122.648 324.003c-8.54883 0 -15.5205 5.45898 -15.5205 12.2979v99.4346c0 6.77344 6.97168 12.2646 15.5205 12.2646h23.2803c8.61523 0 15.4873 -5.45801 15.4873 -12.2646v-99.4346c0 -6.83887 -6.93848 -12.2979 -15.4873 -12.2979h-23.2803zM366.038 324.003
|
||||
c-8.54883 0 -15.4541 5.45898 -15.4873 12.2979v99.4346c0 6.77344 6.93848 12.2646 15.4873 12.2646h23.248c8.64746 0 15.4873 -5.45801 15.4873 -12.2646v-99.4346c0 -6.83887 -6.83984 -12.2979 -15.4873 -12.2979h-23.248zM485.037 400.552
|
||||
c10.292 0 18.71 -8.38477 18.7422 -18.6113v-427.329c0 -10.292 -8.41699 -18.6113 -25.8447 -18.6113h-458.305c-3.05762 0 -11.4092 8.31934 -11.4092 18.6113v427.264c0 10.292 8.35156 18.6768 18.6104 18.6768h61.7188v-76.1543
|
||||
c0 -16.999 15.3564 -30.8428 34.0986 -30.8428h23.1816c18.8408 0 34.1309 13.8438 34.1309 30.8428v76.1543h151.913v-76.1543c0 -16.999 15.3232 -30.8428 34.1318 -30.8428h23.2471c18.8086 0 34.0986 13.8438 34.0986 30.8428v76.1543h61.6855zM475.041 -21.7803
|
||||
v106.964c-80.8887 -72.7012 -183.052 -123.897 -183.052 -123.897h167.071s15.9805 -1.61133 15.9805 16.9336zM478.56 136.479v0l0.0322266 89.043c0 3.25586 -2.66309 5.85352 -5.85254 5.85352h-433.512c-3.22168 0 -5.81934 -2.59766 -5.81934 -5.85352v-263.382
|
||||
c0 -3.22168 2.56445 -5.81934 5.81934 -5.81934h181.112c20.7812 14.665 116.204 84.8672 120.511 136.491c5.22852 61.291 45.8047 35.4141 86.9727 4.93262c28.2451 -20.9463 43.7324 11.0811 50.7363 38.7344zM107.128 113.561v72.373h72.4062v-72.373h-72.4062z
|
||||
M226.226 113.561v72.373h72.3398v-72.373h-72.3398zM107.128 3.76953v72.3721h72.4062v-72.3721h-72.4062zM226.226 3.76953v72.3721h72.3398v-18.0518c-12.9883 -16.2764 -36.1045 -39.9844 -51.3945 -54.3203h-20.9453zM341.509 151.802v34.1318h72.3398v-44.4238
|
||||
c-17.0654 11.2793 -33.4736 19.5977 -48.3691 19.5977c-7.8916 0 -16.6709 -2.16992 -23.9707 -9.30566z" />
|
||||
<glyph glyph-name="uniF12A" unicode=""
|
||||
d="M0 448h512v-512h-512v512zM432.306 123.369c38.751 98.873 -10.6885 209.167 -110.646 246.287c-99.6738 37.0137 -210.372 -15.3438 -244.592 -115.322c-34.5928 -101.068 19.8018 -200.581 103.363 -235.502c0 2.65723 -0.119141 4.6748 0.0195312 6.6748
|
||||
c0.730469 10.4346 0.323242 21.126 2.51562 31.249c7.51465 34.6914 16.002 69.1719 23.9365 103.774c0.62207 2.70703 0.491211 5.9502 -0.389648 8.57617c-4.38379 13.0635 -5.74609 26.3418 -2.93164 39.8145c2.73145 13.0771 8.62207 24.3799 20.8555 31.1416
|
||||
c17.4658 9.6543 36.1494 0.432617 38.123 -19.3418c0.724609 -7.25977 -0.202148 -15 -1.96582 -22.1279c-4.17285 -16.8516 -9.67676 -33.3721 -13.9307 -50.208c-4.10352 -16.2412 5.10742 -31.0449 21.334 -35.2842c11.7773 -3.07715 22.6309 -0.385742 32.5566 6.29297
|
||||
c10.5664 7.11133 17.666 17.1562 23.0449 28.4521c10.8643 22.8184 14.7695 47.0928 13.1914 72.0811c-1.96582 31.1592 -21.5869 54.6611 -51.9756 62.0752c-10.2168 2.49316 -21.0762 3.39746 -31.626 3.2998c-39.3818 -0.364258 -72.9629 -25.4424 -84.3906 -63.0283
|
||||
c-6.02637 -19.8203 -8.25391 -40.5068 4.23633 -58.377c6.85352 -9.80371 7.75195 -18.1533 3.90137 -28.3096c-0.198242 -0.525391 -0.379883 -1.05762 -0.529297 -1.59766c-2.01074 -7.25879 -4.96094 -8.60254 -11.9111 -5.30762
|
||||
c-13.7139 6.50293 -22.7783 17.3252 -28.5137 31.1143c-16.5479 39.7822 -4.98242 90.8828 29.4199 121.025c44.7324 39.1924 96.374 46.3906 150.848 25.0068c36.1543 -14.1924 59.2158 -42.3779 64.7676 -81.3271c5.36914 -37.666 -2.46973 -73.459 -24.6846 -105.096
|
||||
c-13.1348 -18.7061 -30.8711 -31.4316 -53.3145 -36.8271c-21.1211 -5.07812 -41.2803 -3.71094 -59.0996 10.3721c-3.42871 2.70898 -6.70312 5.61621 -9.96094 8.35742c-3.78516 -14.7842 -7.00293 -30.7441 -12.0488 -46.1045
|
||||
c-5.02441 -15.293 -11.8857 -29.9854 -17.9141 -44.874c80.6406 -25.5381 188.193 10.6787 228.312 113.04z" />
|
||||
<glyph glyph-name="uniF110" unicode=""
|
||||
d="M392.93 213.831v0l0.000976562 -0.000976562v-61.123c-18.2051 -89.6729 -101.42 -157.172 -196.466 -157.172c-108.505 0 -196.465 87.9619 -196.465 196.466s87.96 196.464 196.464 196.463c53.5303 0 102.049 -21.417 137.482 -56.1377l-44.3672 -48.2246
|
||||
c-23.7412 24.001 -56.6885 38.875 -93.1152 38.875c-72.3359 0 -130.976 -58.6377 -130.976 -130.976c0 -72.335 58.6377 -130.977 130.976 -130.977c58.6484 0 108.283 38.5449 124.972 91.6836h-111.872v61.123h183.366zM512 213.935v-32.1475h-37.5068v-37.5078h-32.1504
|
||||
v37.5078h-37.5068v32.1475h37.5068v37.5068h32.1504v-37.5068h37.5068z" />
|
||||
<glyph glyph-name="uniF121" unicode=""
|
||||
d="M256 197.599c-56.9287 0 -103.08 56.0537 -103.08 125.2c0 69.1475 15.1553 125.201 103.08 125.201s103.077 -56.0537 103.077 -125.201c0 -69.1465 -46.1514 -125.2 -103.077 -125.2zM61.3066 6.43262v0c-0.0351562 1.1875 -0.0175781 4.21582 0 0zM450.685 3.13965v0
|
||||
c0.0185547 8.00684 0.0556641 1.1543 0 0zM450.465 11.4883c0.121094 -7.70508 0.185547 -9.03809 0.217773 -8.35059l-0.00683594 -9.36035c0 0 -28.6631 -57.7773 -194.678 -57.7773c-166.017 0 -194.677 57.7773 -194.677 57.7773
|
||||
c0 6.71875 -0.00878906 10.5713 -0.015625 12.6553c0.0322266 -1.1123 0.115234 -0.609375 0.294922 8.96875c2.19434 117.287 18.8828 151.101 137.952 172.591c0 0 16.9482 -21.5938 56.4453 -21.5938c39.498 0 56.4434 21.5938 56.4434 21.5938
|
||||
c120.383 -21.7266 136.114 -56.0498 138.023 -176.504z" />
|
||||
<glyph glyph-name="uniF10B" unicode=""
|
||||
d="M257.867 448c137.854 0 250.004 -112.151 250.002 -250.004c0 -137.852 -112.149 -250.003 -250.003 -250.003c-42.2324 0 -83.7275 10.6729 -120.501 30.9277l-112.035 -41.9238c-1.79199 -0.671875 -3.65332 -0.99707 -5.5 -0.99707
|
||||
c-4.09277 0 -8.10547 1.60156 -11.1045 4.59863c-4.35059 4.35059 -5.75684 10.8408 -3.60156 16.6035l40.5947 108.479c-24.7939 39.6592 -37.8564 85.2266 -37.8564 132.314c0 137.853 112.151 250.004 250.005 250.004zM378.335 119.489
|
||||
c2.03809 7.25098 -0.544922 15.918 -7.47266 25.0576c-11.4307 15.0859 -34.7871 31.2373 -51.3379 31.2373c-6.27637 0 -10.002 -2.45312 -12.0225 -4.5127c-13.3359 -13.6074 -21.4463 -18.9092 -28.9268 -18.9102c-8.99609 0 -19.0088 7.9248 -34.3428 22.5469
|
||||
c-2.08496 1.99414 -4.44336 4.25391 -6.90332 6.7041c-2.63379 2.64551 -4.97949 5.09473 -6.73145 6.93457c-13.7363 14.3994 -21.8213 24.4365 -22.5059 33.123c-0.610352 7.79492 4.67676 16.2471 18.8633 30.1514c5.65332 5.54297 6.02832 14.8721 1.08301 26.9814
|
||||
c-7.59375 18.5928 -29.4551 44.5283 -47.8086 44.5283c-1.74707 0 -3.44922 -0.229492 -5.05762 -0.681641c-31.3311 -8.81055 -47.1514 -35.1768 -42.3154 -70.5322c4.77734 -34.9326 28.9385 -76.1406 64.6348 -110.232
|
||||
c33.8975 -35.4912 75.1123 -59.6523 110.327 -64.7158c2.76855 -0.34375 5.63086 -0.519531 8.46387 -0.519531c28.9736 -0.000976562 55.0713 18.0137 62.0527 42.8398z" />
|
||||
<glyph glyph-name="uniF10F" unicode=""
|
||||
d="M0 -30.2549v384h134.981v-384h-134.981zM479.418 295.563h32.582v-325.818h-344.437v325.818h30.2549v42.9756l76.8906 75.7158h204.709v-118.691zM244.363 318.312v-129.804h186.957h1.55273v179.2h-1.55273h-135.555h-1.84766l-49.5547 -48.5186v-0.87793z
|
||||
M272.291 9.30957v48.8721h-53.5273v-48.8721h53.5273zM272.291 97.7451v48.873h-53.5273v-48.873h53.5273zM365.382 9.30957v48.8721h-53.5273v-48.8721h53.5273zM365.382 97.7451v48.873h-53.5273v-48.873h53.5273zM458.473 9.30957v48.8721h-53.5273v-48.8721h53.5273z
|
||||
M458.473 97.7451v48.873h-53.5273v-48.873h53.5273z" />
|
||||
<glyph glyph-name="uniF128" unicode=""
|
||||
d="M153.6 38.4004c28.1602 0 51.2002 -23.04 51.2002 -51.2002s-23.04 -51.2002 -51.2002 -51.2002c-28.1592 0 -51.1992 23.04 -51.1992 51.2002s23.04 51.2002 51.1992 51.2002zM0 448h84.4805l23.0391 -51.2002h378.881c15.3594 0 25.5996 -10.2402 25.5996 -25.5996
|
||||
c0 -5.12012 0 -7.68066 -5.12012 -12.7998l-92.1602 -166.399c-7.67969 -15.3604 -23.04 -25.5996 -43.5195 -25.5996h-189.44l-23.04 -43.5205v-2.56055c0 -2.56055 2.56055 -5.12012 5.12012 -5.12012h296.96v-51.2002h-307.2c-28.1592 0 -51.1992 23.04 -51.1992 51.2002
|
||||
c0 7.67969 2.55957 17.9199 5.11914 25.5996l35.8408 61.4404l-92.1602 194.56h-51.2002v51.2002zM409.6 38.4004c28.1602 0 51.2002 -23.04 51.2002 -51.2002s-23.04 -51.2002 -51.2002 -51.2002c-28.1592 0 -51.1992 23.04 -51.1992 51.2002
|
||||
s23.04 51.2002 51.1992 51.2002z" />
|
||||
<glyph glyph-name="uniF137" unicode=""
|
||||
d="M225.143 69.2734v75.1377l18.335 0.0449219v-52.2969v-48.5674h-18.3242v11.0996c-0.663086 -0.708008 -1.0332 -1.08984 -1.38184 -1.4834c-3.94336 -4.44824 -8.41504 -8.15625 -14.1221 -10.1221c-2.78613 -0.955078 -5.65137 -1.28125 -8.58301 -0.775391
|
||||
c-4 0.663086 -6.68457 2.96582 -8.30273 6.60645c-1.50488 3.3584 -1.8877 6.9541 -1.89844 10.5713c-0.0449219 13.3691 -0.0224609 84.126 -0.0224609 84.8105h18.2783c0.0341797 -0.617188 0.101562 -51.4092 0.112305 -76.1816
|
||||
c0 -1.34863 0.0117188 -2.73047 0.28125 -4.04492c0.673828 -3.3252 3.22461 -4.75195 6.42676 -3.58398c3.68457 1.34863 6.49316 3.8877 8.85254 6.93164c0.348633 0.438477 0.348633 1.22461 0.348633 1.85352zM311.773 136.424
|
||||
c2.28027 -4.86621 2.9209 -10.0557 2.9209 -15.3359c0.0332031 -19.0869 0.0332031 -38.1748 0.0107422 -57.2627c-0.0107422 -3.57324 -0.381836 -7.10059 -1.5166 -10.5273c-2.44922 -7.37012 -7.8418 -11.1221 -15.5938 -11.0439
|
||||
c-6.30273 0.0566406 -11.4141 2.5625 -15.627 7.13477c-0.472656 0.504883 -1.77539 1.88672 -1.77539 1.88672v-7.66211h-18.3574v136.559h18.3574v-44.9502s1.0332 2.06738 1.97754 3.13477c2.8418 3.17871 6.30273 5.63965 10.5713 6.71777
|
||||
c7.04395 1.76367 15.167 -0.416016 19.0322 -8.65039zM295.797 66.1045c0.0224609 18.0557 0.0566406 36.0986 -0.0332031 54.1396c-0.0117188 1.91016 -0.573242 3.89844 -1.28125 5.68555c-0.943359 2.34766 -2.96582 3.5166 -5.50488 3.76367
|
||||
c-2.97656 0.291992 -5.3584 -0.910156 -7.51562 -2.82031c-0.865234 -0.75293 -1.25879 -1.87598 -1.25879 -1.87598l0.0449219 -60.6338v-1.49414s0.517578 -0.696289 0.595703 -0.786133c1.75293 -1.89941 3.79785 -3.4043 6.41504 -3.94336
|
||||
c4.31445 -0.887695 7.3584 0.90918 8.20117 4.90918c0.213867 1 0.336914 2.0332 0.336914 3.05566zM245.763 255.448c-4.28027 0 -7.76367 3.4834 -7.7627 7.7627v54.7695c0 4.2793 3.4834 7.7627 7.7627 7.7627s7.76172 -3.48145 7.76172 -7.7627v-54.7695
|
||||
c0 -4.28125 -3.48145 -7.7627 -7.76172 -7.7627zM190.888 180.159v-19.5244h-21.4697v-117.033h-20.6943v116.988h-21.4248v19.5693h63.5889zM364.217 79.4072h18.8848s0.28125 -15.29 -2.11133 -22.2666c-3.17969 -9.31348 -9.75195 -14.4814 -19.3916 -15.8975
|
||||
c-5.97656 -0.875977 -11.8975 -0.75293 -17.5039 1.78613c-7.67285 3.46094 -12.0205 9.71875 -13.8857 17.6836c-0.865234 3.70801 -1.29199 7.59473 -1.33691 11.4033c-0.145508 14.9531 -0.078125 29.918 -0.0449219 44.8711
|
||||
c0.0117188 7.81934 1.87598 15.0322 7.23535 21.0205c6.11133 6.8418 13.9307 9.39258 22.8623 8.81934c2.68555 -0.168945 5.42676 -0.606445 7.97656 -1.44922c8.68457 -2.85352 13.3242 -9.3584 15.1445 -17.9873c0.696289 -3.3252 0.955078 -6.77441 1.01074 -10.1787
|
||||
c0.146484 -7.97656 -0.0556641 -25.5586 -0.0556641 -25.5586h-35.1533v-25.1992c0 -4.52734 3.66211 -8.19043 8.19043 -8.19043c4.51562 0 8.17871 3.66309 8.17871 8.19043v12.9531zM347.848 121.424v-14.1445h16.3691v14.1445
|
||||
c0 4.5166 -3.66309 8.19043 -8.17871 8.19043c-4.52832 0 -8.19043 -3.67383 -8.19043 -8.19043zM0 448h512v-512h-512v512zM288.434 341.281v-86.6855c0.0195312 -2.53027 0.469727 -5.1416 1.21582 -7.56543c2.24023 -7.27539 8.22363 -9.49512 15.249 -8.12305
|
||||
c4.57617 0.895508 8.48828 3.16406 11.9414 6.20605c1.94824 1.7168 3.7207 3.62793 5.79785 5.67383l-0.0224609 -10.8916h18.7861l0.00488281 101.386h-18.7803v-75.1807c0 -0.639648 0.0625 -1.45312 -0.28125 -1.88867
|
||||
c-2.41992 -3.05176 -5.27441 -5.6416 -9.01465 -6.93555c-3.06836 -1.06348 -5.42383 0.435547 -5.98926 3.62207c-0.179688 1.00488 -0.261719 2.04004 -0.261719 3.06445v77.3184h-18.6455zM245.763 343.819c-14.8584 0 -26.9014 -12.043 -26.9004 -26.9004v-52.6445
|
||||
c0 -14.8564 12.043 -26.9004 26.9004 -26.9004v0c14.8564 0 26.9004 12.0439 26.9004 26.9004v52.6445c0 14.8574 -12.0439 26.9004 -26.9004 26.9004v0zM173.399 377.143h-21.3779s16.4248 -54.4736 23.7705 -78.7676
|
||||
c0.263672 -0.87793 0.384766 -1.83203 0.384766 -2.75195l-0.0078125 -55.7061h19.7139l-0.00878906 55.7061c0 0.919922 0.120117 1.875 0.384766 2.75195c7.3457 24.2939 23.7705 78.7676 23.7705 78.7676h-21.3789s-8.54395 -36.2891 -12.6221 -53.4795h-0.00683594
|
||||
c-4.07812 17.1904 -12.6221 53.4795 -12.6221 53.4795zM408.47 53.8135v112.078c0 24.9072 -19.9072 45.2637 -44.8154 45.792c-71.7559 1.53906 -143.545 1.53906 -215.312 0c-24.8965 -0.52832 -44.8037 -20.8848 -44.8037 -45.792v-112.078
|
||||
c0 -24.918 19.9072 -45.2754 44.8037 -45.8037c71.7676 -1.53906 143.557 -1.53906 215.312 0c24.9082 0.52832 44.8154 20.8857 44.8154 45.8037z" />
|
||||
<glyph glyph-name="uniF10E" unicode=""
|
||||
d="M492.308 113.23c11.8154 0 19.6924 -7.87695 19.6924 -19.6924v-118.153c0 -11.8154 -7.87695 -19.6924 -19.6924 -19.6924h-472.615c-11.8154 0 -19.6924 7.87695 -19.6924 19.6924v118.153c0 11.8154 7.87695 19.6924 19.6924 19.6924h39.3848
|
||||
c11.8154 0 19.6924 -7.87695 19.6924 -19.6924v-49.2305c0 -5.90723 3.93848 -9.8457 9.8457 -9.8457h334.77c5.90723 0 9.8457 3.93848 9.8457 9.8457v49.2305c0 11.8154 7.87695 19.6924 19.6924 19.6924h39.3848zM242.216 119.139l-118.154 116.185
|
||||
c-3.93848 3.93848 -5.90723 7.87695 -5.90723 13.7842c0 5.9082 1.96875 9.84668 5.90723 13.7852l27.5693 27.5693c3.93848 3.93848 7.87695 5.90723 13.7842 5.90723c5.9082 0 9.84668 -1.96875 13.7852 -5.90723l19.6924 -19.6924
|
||||
c7.87695 -5.9082 17.7227 0 17.7227 7.87695v129.969c0 11.8154 7.87695 19.6924 19.6924 19.6924h39.3848c11.8154 0 19.6924 -7.87695 19.6924 -19.6924v-128c0 -9.8457 11.8154 -13.7842 17.7227 -7.87695l19.6924 19.6924
|
||||
c3.93848 3.93848 7.87695 5.9082 13.7852 5.9082c5.90723 0 9.8457 -1.96973 13.7842 -5.9082l27.5693 -27.5693c3.93848 -3.93848 5.90723 -7.87695 5.90723 -13.7842c0 -5.9082 -1.96875 -9.84668 -5.90723 -13.7852l-118.154 -118.153
|
||||
c-3.93848 -3.93848 -9.8457 -5.9082 -13.7842 -5.9082s-9.8457 1.96973 -13.7842 5.9082z" />
|
||||
<glyph glyph-name="uniF12C" unicode=""
|
||||
d="M363.355 448c4.875 0 8.82812 -3.95312 8.82422 -8.82715v-70.6211c0 -4.875 -3.95312 -8.82715 -8.82715 -8.82715h-27.708c-28.335 0 -51.3896 -23.0547 -51.3896 -51.3916v-58.9434h70.2432c4.875 0 8.82812 -3.95312 8.82812 -8.82715v-70.6211
|
||||
c0 -4.87402 -3.95312 -8.82715 -8.82812 -8.82715h-70.2432v-216.287c0 -4.87402 -3.95215 -8.82715 -8.82715 -8.82715h-70.6211c-4.87402 0 -8.82715 3.95312 -8.82715 8.82715v216.287h-47.335c-4.875 0 -8.82812 3.95312 -8.82812 8.82715v70.6211
|
||||
c0 4.87402 3.95312 8.82715 8.82812 8.82715h47.3389v58.9434c0 77.0127 62.6523 139.667 139.664 139.667h27.708z" />
|
||||
<glyph glyph-name="uniF130" unicode=""
|
||||
d="M0 448h512v-512h-512v512zM405.877 263.813c4.40332 3.46582 31.6338 25.291 38.3066 39.3193c0 0 -22.1133 -9.18945 -43.7568 -11.3545c-0.0419922 0 -0.0947266 -0.0107422 -0.137695 -0.0107422c0 0 0.0429688 0.0214844 0.117188 0.0742188
|
||||
c1.99414 1.33301 29.875 20.3105 33.6484 42.9248c0 0 -15.6406 -8.34863 -37.541 -15.6523c-3.625 -1.2041 -7.41992 -2.38867 -11.333 -3.48633c-14.1162 15.0664 -34.1816 24.4697 -56.4541 24.4697c-42.7227 0 -77.3408 -34.6084 -77.3408 -77.2979
|
||||
c0 -6.02441 0.692383 -11.8877 2.00391 -17.5176c-5.96973 0.246094 -96.8848 5.3418 -158.734 80.2412c0 0 -36.9639 -50.4629 22.0283 -102.354c0 0 -17.9336 0.714844 -33.4043 9.95898c0 0 -5.68262 -61.1357 61.125 -76.7656c0 0 -13.1455 -4.97949 -34.1182 -1.42969
|
||||
c0 0 11.7285 -49.3965 71.083 -54.0127c0 0 -46.9238 -42.3896 -113.537 -32.4551v0l-0.0224609 0.00390625c0.00683594 -0.000976562 0.0146484 -0.00292969 0.0224609 -0.00390625c34.0742 -21.6104 74.4932 -34.1172 117.823 -34.1172
|
||||
c121.728 0 220.402 98.6865 220.402 220.402c0 3.03906 -0.0634766 6.05664 -0.180664 9.0625z" />
|
||||
<glyph glyph-name="uniF113" unicode=""
|
||||
d="M504.123 266.831c3.93848 -1.96973 7.87695 -9.84668 7.87695 -15.7539c0 -11.8154 -7.87695 -19.6924 -19.6924 -19.6924h-29.5381c-5.9082 0 -9.84668 -3.93848 -9.84668 -9.84668v-246.153c0 -11.8154 -7.87695 -19.6924 -19.6924 -19.6924h-354.461
|
||||
c-11.8154 0 -19.6924 7.87695 -19.6924 19.6924v246.153c0 5.9082 -3.93848 9.84668 -9.84668 9.84668h-29.5381c-11.8154 0 -19.6924 7.87695 -19.6924 19.6924c0 5.90723 1.96875 11.8154 7.87695 15.7539l236.308 157.538
|
||||
c3.93848 1.96973 5.9082 3.93848 11.8154 3.93848c5.9082 0 7.87695 -1.96875 11.8154 -3.93848zM374.154 44.3076v208.738c0 3.93848 -1.96973 5.9082 -3.93848 7.87695l-108.308 72.8613c-3.93945 1.96973 -7.87695 1.96973 -11.8154 0l-108.309 -72.8613
|
||||
c-1.96875 -1.96875 -3.93848 -3.93848 -3.93848 -7.87695v-208.738c0 -5.90723 3.93848 -9.8457 9.84668 -9.8457h59.0771c5.90723 0 9.8457 3.93848 9.8457 9.8457v88.6152c0 11.8154 7.87695 19.6924 19.6924 19.6924h39.3848
|
||||
c11.8154 0 19.6924 -7.87695 19.6924 -19.6924v-88.6152c0 -5.90723 3.93848 -9.8457 9.8457 -9.8457h59.0771c5.9082 0 9.84668 3.93848 9.84668 9.8457z" />
|
||||
<glyph glyph-name="uniF104" unicode=""
|
||||
d="M256 448c141.784 0 256 -114.216 256 -256s-114.216 -256 -256 -256s-256 114.216 -256 256s114.216 256 256 256zM256 14.7695c98.4619 0 177.23 78.7686 177.23 177.23s-78.7686 177.23 -177.23 177.23s-177.23 -78.7686 -177.23 -177.23
|
||||
s78.7686 -177.23 177.23 -177.23zM348.554 229.415l-29.5381 -29.5381c-3.93848 -3.93848 -3.93848 -9.84668 0 -13.7852l29.5381 -29.5381c3.93848 -3.93848 5.9082 -9.8457 5.9082 -13.7842s-1.96973 -9.84668 -5.9082 -13.7852l-27.5693 -27.5693
|
||||
c-3.93848 -3.93848 -7.87695 -5.90723 -13.7842 -5.90723c-3.93848 0 -9.84668 1.96875 -13.7852 5.90723l-29.5381 29.5391c-3.93848 3.93848 -9.8457 3.93848 -13.7842 0l-29.5391 -29.5391c-3.93848 -3.93848 -7.87695 -5.90723 -13.7842 -5.90723
|
||||
c-3.93848 0 -9.84668 1.96875 -13.7852 5.90723l-27.5693 27.5693c-3.93848 3.93848 -5.90723 9.84668 -5.90723 13.7852s1.96875 9.8457 5.90723 13.7842l29.5391 29.5381c3.93848 3.93945 3.93848 9.84668 0 13.7852l-29.5391 29.5381
|
||||
c-3.93848 3.93848 -5.90723 9.84668 -5.90723 13.7852s1.96875 9.8457 5.90723 13.7842l27.5693 27.5693c3.93848 3.93848 9.84668 5.9082 13.7852 5.9082s9.8457 -1.96973 13.7842 -5.9082l29.5391 -29.5381c3.93848 -3.93848 9.8457 -3.93848 13.7842 0l29.5381 29.5381
|
||||
c3.93848 3.93848 9.84668 5.9082 13.7852 5.9082s9.8457 -1.96973 13.7842 -5.9082l27.5693 -27.5693c3.93848 -3.93848 5.9082 -9.8457 5.9082 -13.7842s-1.96973 -9.84668 -5.9082 -13.7852z" />
|
||||
<glyph glyph-name="uniF114" unicode=""
|
||||
d="M505.586 197.996l-6.50391 -7.15039c-9.28125 -10.2178 -21.54 -14.3301 -27.376 -9.20117c-5.84668 5.13867 -10.5869 9.29102 -10.5869 9.29102v-221.788c0 -13.8018 -11.1836 -24.9756 -24.9766 -24.9756h-94.8447c-13.793 0 -23.6611 11.1738 -23.4629 24.9658
|
||||
v157.386h-114.155v-157.386c0 -13.8027 -11.1836 -24.9766 -24.9766 -24.9766h-89.4971c-13.793 0 -24.9766 11.1738 -24.9766 24.9766v224.966l-17.1592 -15.3662c-9.46973 -8.48535 -24.9062 -7.2998 -34.4561 2.63867l-5.75684 5.99512
|
||||
c-9.56152 9.93848 -9.0625 25.5635 1.10547 34.8848l229.598 210.465c10.167 9.32129 26.8184 9.51172 37.2051 0.428711l228.819 -200.219c10.3857 -9.08203 11.2822 -24.7275 2.00098 -34.9346z" />
|
||||
<glyph glyph-name="uniF103" unicode=""
|
||||
d="M186.543 165.532v0v-40.5488c0 -6.42188 -5.20215 -11.6201 -11.6211 -11.6201h-40.5547c-6.41113 0 -11.6143 5.19824 -11.6143 11.6201v40.5488c0 6.41406 5.20312 11.6094 11.6143 11.6094h40.5547c6.41895 0 11.6211 -5.19531 11.6211 -11.6094zM287.893 165.532
|
||||
v-40.5488c0 -6.42188 -5.20312 -11.6201 -11.6094 -11.6201h-40.5596c-6.41211 0 -11.6152 5.19824 -11.6152 11.6201v40.5488c0 6.41406 5.20312 11.6094 11.6152 11.6094h40.5596c6.40625 0 11.6094 -5.19531 11.6094 -11.6094zM389.247 165.532v-40.5488
|
||||
c0 -6.42188 -5.20312 -11.6201 -11.6143 -11.6201h-40.5547c-6.41895 0 -11.6211 5.19824 -11.6211 11.6201v40.5488c0 6.41406 5.20215 11.6094 11.6211 11.6094h40.5547c6.41113 0 11.6143 -5.19531 11.6143 -11.6094zM186.543 64.1719v0v-40.541
|
||||
c0 -6.41699 -5.20215 -11.6152 -11.6211 -11.6152h-40.5547c-6.41113 0 -11.6143 5.19727 -11.6143 11.6152v40.541c0 6.4248 5.20312 11.6162 11.6143 11.6162h40.5547c6.41895 0 11.6211 -5.19141 11.6211 -11.6162zM287.893 64.1719v-40.541
|
||||
c0 -6.41699 -5.20312 -11.6152 -11.6094 -11.6152h-40.5596c-6.41211 0 -11.6152 5.19727 -11.6152 11.6152v40.541c0 6.4248 5.20312 11.6162 11.6152 11.6162h40.5596c6.40625 0 11.6094 -5.19141 11.6094 -11.6162zM389.247 64.1719v0v-40.541
|
||||
c0 -6.41699 -5.20312 -11.6152 -11.6094 -11.6152h-40.5596c-6.41895 0 -11.6211 5.19727 -11.6211 11.6152v40.541c0 6.4248 5.20215 11.6162 11.6211 11.6162h40.5596c6.40625 0 11.6094 -5.19141 11.6094 -11.6162zM461.762 390.99
|
||||
c24.4629 -0.737305 44.5625 -20.9785 44.5625 -45.8584v-362.968c0 -25.3047 -20.582 -46.165 -45.8926 -46.165h-408.863c-25.3477 0 -45.8926 20.8174 -45.8926 46.165v362.968c0 24.8799 20.1006 45.1211 44.5635 45.8584v-61.9346
|
||||
c0 -27.9941 22.709 -50.5527 50.6973 -50.5527h31.9893c27.9873 0 50.9971 22.5586 50.9971 50.5527v62.1572h144.154v-62.1572c0 -27.9941 23.0107 -50.5527 51.0029 -50.5527h31.9824c27.9893 0 50.6992 22.5586 50.6992 50.5527v61.9346zM446.907 4.7666v0
|
||||
l-0.000976562 187.486c0 10.958 -8.88184 19.8447 -19.8398 19.8447h-343.007c-10.96 0 -19.8408 -8.88672 -19.8408 -19.8447v-187.486c0 -10.9541 8.88184 -19.8408 19.8408 -19.8408h343.008c10.958 0 19.8398 8.88672 19.8398 19.8408zM100.824 311.707
|
||||
c-9.60352 0 -17.3877 7.77344 -17.3877 17.376v101.534c0 9.60352 7.78418 17.3828 17.3877 17.3828h31.6357c9.60156 0 17.3877 -7.7793 17.3877 -17.3828v-101.534c0 -9.60254 -7.78613 -17.376 -17.3877 -17.376h-31.6357zM378.673 311.707
|
||||
c-9.60156 0 -17.3867 7.77344 -17.3867 17.376v101.534c0 9.60352 7.78516 17.3828 17.3867 17.3828h31.6357c9.59668 0 17.3828 -7.7793 17.3818 -17.3828v-101.534c0 -9.60254 -7.78613 -17.376 -17.3818 -17.376h-31.6357z" />
|
||||
<glyph glyph-name="uniF10C" unicode=""
|
||||
d="M256.009 448c123.506 0 223.612 -100.106 223.612 -223.612c0 -123.505 -100.106 -223.611 -223.612 -223.611c-1.62793 0 -3.21973 0.213867 -4.81152 0.25l-105.51 -65.0264l2.62988 92.4141c-69.0869 38.0498 -115.921 111.484 -115.921 195.974
|
||||
c0 123.506 100.107 223.612 223.612 223.612zM245.974 89.8984c20.4111 0 33.9707 14.7588 33.9531 34.3115c-0.358398 20.0176 -13.5605 34.3467 -33.9531 34.3467c-19.625 0 -33.5605 -14.3291 -33.5605 -34.3467c0 -19.6064 13.5957 -34.3115 33.5605 -34.3115z
|
||||
M291.608 230.237c14.3643 15.8496 32.0742 34.7051 32.0566 63.3271c0 31.3242 -22.5938 58.8369 -72.415 58.8369c-26.7969 0 -49.3906 -7.49512 -62.9688 -15.4023l12.8447 -41.1621c9.74902 6.81543 24.8828 11.3057 37.2803 11.3057
|
||||
c18.873 -0.733398 27.585 -9.41016 27.585 -22.5938c0 -12.8262 -9.83887 -24.8838 -21.8789 -39.249c-17.0117 -20.3398 -23.416 -39.999 -22.2891 -59.2119l0.393555 -9.78516h50.1787v6.74414c-0.393555 17.0303 5.27734 31.7168 19.2129 47.1904z" />
|
||||
<glyph glyph-name="uniF105" unicode=""
|
||||
d="M256 448c70.8926 0 133.907 -29.5381 181.169 -74.8311c45.293 -47.2617 74.8311 -110.276 74.8311 -181.169s-27.5693 -133.908 -74.8311 -181.169c-47.2617 -45.293 -110.276 -74.8311 -181.169 -74.8311s-133.907 27.5693 -181.169 74.8311
|
||||
c-45.293 47.2617 -74.8311 110.276 -74.8311 181.169s27.5693 133.907 74.8311 181.169c47.2617 45.293 110.276 74.8311 181.169 74.8311zM340.677 52.1846l-112.246 112.246l-112.246 112.246c-3.93848 3.93848 -9.8457 3.93848 -13.7842 0l-1.96973 -1.96875
|
||||
c-13.7842 -25.6006 -21.6611 -53.1699 -21.6611 -82.708c0 -49.2305 19.6924 -94.5234 51.1992 -126.031c33.4775 -31.5068 76.8008 -51.1992 126.031 -51.1992c29.5381 0 57.1074 7.87695 82.708 21.6611l1.96875 1.96973c3.93848 3.93848 3.93848 9.8457 0 13.7842z
|
||||
M433.23 192c0 49.2305 -19.6924 92.5537 -51.1992 126.031c-33.4775 31.5068 -76.8008 51.1992 -126.031 51.1992c-29.5381 0 -57.1074 -7.87695 -82.708 -21.6611l-1.96875 -1.96973c-3.93848 -3.93848 -3.93848 -9.8457 0 -13.7842l112.246 -112.246l112.246 -112.246
|
||||
c3.93848 -3.93848 9.8457 -3.93848 13.7842 0l1.96973 1.96875c13.7842 25.6006 21.6611 53.1699 21.6611 82.708z" />
|
||||
<glyph glyph-name="uniF11D" unicode=""
|
||||
d="M472.21 216.02l-96.1143 -96.082c-53.0469 -53.0791 -139.104 -53.0791 -192.16 0c-8.35645 8.33301 -14.8945 17.7236 -20.6367 27.4072l44.6592 44.6553c2.12305 2.14062 4.74414 3.36719 7.24902 4.8125c3.08789 -10.5488 8.47754 -20.5342 16.7734 -28.8311
|
||||
c26.4922 -26.5137 69.6006 -26.4766 96.0771 0l96.084 96.0801c26.5117 26.5107 26.5117 69.6084 0 96.0986c-26.4785 26.4902 -69.5752 26.4902 -96.084 0l-34.168 -34.2041c-27.7266 10.7959 -57.5986 13.6982 -86.6787 9.4375l72.8076 72.8057
|
||||
c53.0791 53.0684 139.112 53.0684 192.191 0c53.0527 -53.0664 53.0527 -139.114 0 -192.18zM218.127 58.0273c27.7031 -10.7764 57.583 -13.7031 86.6787 -9.41699l-72.8262 -72.8213c-53.0684 -53.0518 -139.112 -53.0518 -192.181 0
|
||||
c-53.0625 53.0801 -53.0625 139.103 0 192.187l96.0811 96.084c53.0684 53.0684 139.133 53.0684 192.175 0c8.36133 -8.34277 14.9326 -17.6992 20.6367 -27.4209l-44.6553 -44.6377c-2.12207 -2.125 -4.71094 -3.31445 -7.23047 -4.7793
|
||||
c-3.11621 10.5352 -8.51172 20.5195 -16.7881 28.7979c-26.4902 26.5078 -69.5713 26.5078 -96.083 0l-96.0947 -96.082c-26.4922 -26.5029 -26.4922 -69.6006 0 -96.1143c26.4941 -26.4766 69.6045 -26.4766 96.0947 0z" />
|
||||
<glyph glyph-name="uniF106" unicode=""
|
||||
d="M329.644 183.817l175.343 -175.343c4.67578 -4.67578 7.01367 -11.6895 7.01367 -16.3652s-2.33789 -11.6895 -7.01367 -16.3652l-32.7305 -32.7305c-4.67578 -4.67578 -11.6895 -7.01367 -16.3652 -7.01367s-11.6895 2.33789 -16.3652 7.01367l-175.343 175.343
|
||||
c-4.67578 4.67578 -11.6895 4.67578 -16.3652 0l-175.343 -175.343c-4.67578 -4.67578 -11.6895 -7.01367 -16.3652 -7.01367s-11.6895 2.33789 -16.3652 7.01367l-32.7305 32.7305c-4.67578 4.67578 -7.01367 11.6895 -7.01367 16.3652s2.33789 11.6895 7.01367 16.3652
|
||||
l175.343 175.343c4.67578 4.67578 4.67578 11.6895 0 16.3652l-175.343 175.343c-4.67578 4.67578 -7.01367 11.6895 -7.01367 16.3652s2.33789 11.6895 7.01367 16.3652l32.7305 32.7305c4.67578 4.67578 11.6895 7.01367 16.3652 7.01367
|
||||
s11.6895 -2.33789 16.3652 -7.01367l175.343 -175.343c4.67578 -4.67578 11.6895 -4.67578 16.3652 0l175.343 175.343c4.67578 4.67578 9.35156 7.01367 16.3652 7.01367c4.67578 0 11.6895 -2.33789 16.3652 -7.01367l32.7305 -32.7305
|
||||
c4.67578 -4.67578 7.01367 -11.6895 7.01367 -16.3652s-2.33789 -11.6895 -7.01367 -16.3652l-175.343 -175.343c-4.67578 -4.67578 -4.67578 -11.6895 0 -16.3652z" />
|
||||
<glyph glyph-name="uniF108" unicode=""
|
||||
d="M256 448c141.784 0 256 -114.216 256 -256s-114.216 -256 -256 -256s-256 114.216 -256 256s114.216 256 256 256zM256 14.7695c98.4619 0 177.23 78.7686 177.23 177.23s-78.7686 177.23 -177.23 177.23s-177.23 -78.7686 -177.23 -177.23
|
||||
s78.7686 -177.23 177.23 -177.23zM340.677 264.861l27.5693 -27.5693c3.93848 -3.93848 5.9082 -9.8457 5.9082 -13.7842s-1.96973 -9.84668 -5.9082 -13.7852l-118.153 -110.276c-3.93848 -3.93848 -7.87695 -5.9082 -13.7852 -5.9082
|
||||
c-5.90723 0 -9.8457 1.96973 -13.7842 5.9082l-78.7695 70.8926c-3.93848 3.93848 -5.9082 9.8457 -5.9082 13.7842s1.96973 9.8457 5.9082 13.7842l27.5693 27.5693c7.87695 7.87695 19.6924 7.87695 27.5693 0l29.5381 -25.5996
|
||||
c3.93848 -3.93848 9.84668 -3.93848 13.7852 0l70.8916 64.9844c3.93848 3.93848 9.84668 5.9082 13.7852 5.9082s9.8457 -1.96973 13.7842 -5.9082z" />
|
||||
<glyph glyph-name="uniF135" unicode=""
|
||||
d="M408.543 448c19.1885 0 34.7617 -15.5586 34.7314 -34.7773v-442.461c0 -19.1729 -15.5586 -34.7617 -34.7314 -34.7617h-305.116c-19.2334 0 -34.7158 15.6035 -34.7158 34.7617v442.461c0 19.2188 15.4824 34.7773 34.7158 34.7773h305.116zM256 -50.9717
|
||||
c11.3867 0 20.6494 9.23242 20.6494 20.6338c0 11.417 -9.2627 20.665 -20.6494 20.665c-11.417 0 -20.6494 -9.24805 -20.6494 -20.665c0 -11.4014 9.23242 -20.6338 20.6494 -20.6338zM408.136 8.41602v397.804h-304.271v-397.804h304.271z" />
|
||||
<glyph glyph-name="uniF10A" unicode=""
|
||||
d="M256 448c141.158 0 256 -114.842 256 -256s-114.842 -256 -256 -256s-256 114.842 -256 256s114.842 256 256 256zM256 -9.52734c111.121 0 201.533 90.4004 201.533 201.527s-90.4121 201.527 -201.533 201.527s-201.533 -90.4004 -201.533 -201.527
|
||||
s90.4121 -201.527 201.533 -201.527zM389.417 199.904c11.6406 0 21.0791 -9.4375 21.0791 -21.0781s-9.43848 -21.0791 -21.0791 -21.0791h-136.126c-11.6406 0 -21.0781 9.43848 -21.0781 21.0791v159.407c0 11.6406 9.4375 21.0781 21.0781 21.0781
|
||||
s21.0791 -9.4375 21.0791 -21.0781v-138.329h115.047z" />
|
||||
<glyph glyph-name="uniF100" unicode=""
|
||||
d="M256 448c141.784 0 256 -114.216 256 -256s-114.216 -256 -256 -256s-256 114.216 -256 256s114.216 256 256 256zM256 14.7695c98.4619 0 177.23 78.7686 177.23 177.23s-78.7686 177.23 -177.23 177.23s-177.23 -78.7686 -177.23 -177.23
|
||||
s78.7686 -177.23 177.23 -177.23zM334.77 231.385c11.8154 0 19.6924 -7.87695 19.6924 -19.6924v-39.3848c0 -11.8154 -7.87695 -19.6924 -19.6924 -19.6924h-29.5391c-5.90723 0 -9.8457 -3.93848 -9.8457 -9.8457v-29.5391
|
||||
c0 -11.8154 -7.87695 -19.6924 -19.6924 -19.6924h-39.3848c-11.8154 0 -19.6924 7.87695 -19.6924 19.6924v29.5391c0 5.90723 -3.93848 9.8457 -9.8457 9.8457h-29.5391c-11.8154 0 -19.6924 7.87695 -19.6924 19.6924v39.3848c0 11.8154 7.87695 19.6924 19.6924 19.6924
|
||||
h29.5391c5.90723 0 9.8457 3.93848 9.8457 9.8457v29.5391c0 11.8154 7.87695 19.6924 19.6924 19.6924h39.3848c11.8154 0 19.6924 -7.87695 19.6924 -19.6924v-29.5391c0 -5.90723 3.93848 -9.8457 9.8457 -9.8457h29.5391z" />
|
||||
<glyph glyph-name="uniF107" unicode=""
|
||||
d="M437.01 10.9902c-99.8818 -99.9863 -262.033 -99.9863 -362.02 0c-99.9873 99.9863 -99.9873 262.033 0 362.02c99.9863 99.9873 262.033 99.9873 362.02 0c99.9863 -99.9863 99.9863 -262.033 0 -362.02zM164.215 231.127l-44.6123 -44.6123l57.5684 -57.5674
|
||||
l44.6123 -44.6133l44.7168 44.6133l126.002 126.001l-44.6123 44.6133l-126.106 -126.002z" />
|
||||
<glyph glyph-name="uniF11E" unicode=""
|
||||
d="M424.023 320.568c0.444336 -1.37207 8.33398 -23.6729 8.33301 -30.0381v-24.1191c0 -58.7119 -52.0117 -118.33 -84.3242 -177.491c-3.17773 -5.92285 -10.1318 -12.2891 -13.7715 -18.6553c-5.46191 -9.56152 -11.7949 -19.5723 -17.25 -29.5898
|
||||
c-20.0176 -34.1328 -40.4277 -69.6338 -60.9121 -104.674c-33.2197 53.6943 -66.751 107.412 -99.0645 162.019c-30.0361 50.9668 -70.2529 105.135 -76.6309 156.102c-0.446289 4.09766 -0.760742 12.2881 -0.760742 13.2002v21.8496
|
||||
c11.3779 106.945 96.5986 158.829 173.975 158.829c57.7998 0 129.384 -28.2168 162.146 -106.951c2.7373 -6.37207 6.43848 -13.6504 8.26074 -20.4805zM255.033 210.884c36.4121 0 66.5342 29.1221 66.5342 65.5322c0 36.4111 -28.1611 65.542 -64.5723 65.542
|
||||
c-29.5762 0 -63.5732 -18.208 -63.5732 -58.2471v-14.1084c0 -0.917969 -0.147461 -10.9375 1.68262 -15.9375c12.2891 -31.4082 37.1846 -42.7812 59.9287 -42.7812z" />
|
||||
<glyph glyph-name="uniF11B" unicode=""
|
||||
d="M439.67 383.451c46.793 -43.0312 70.084 -95.1504 70.084 -156.148c0 -48.1494 -14.3086 -89.3018 -42.8232 -123.352c-28.5137 -34.1543 -62.3545 -51.1797 -101.522 -51.1797c-26.6338 0 -46.792 10.2363 -60.4746 30.8125
|
||||
c-18.1738 -21.4121 -40.0029 -32.1699 -65.5928 -32.1699c-28.6191 0 -53.0596 12.0117 -73.4268 36.2432c-20.3672 24.1279 -30.498 55.9834 -30.498 95.3604c0 40.3164 11.3848 73.3223 34.3633 98.9111c22.873 25.5898 50.4473 38.4365 82.6172 38.4365
|
||||
c20.2627 0 38.959 -6.99805 55.9834 -20.8887l4.28223 15.5625h66.8467l-19.4268 -158.864c-1.14941 -10.8623 -1.77637 -20.2627 -1.77637 -28.3057c0 -9.92188 4.5957 -14.8311 13.7871 -14.8311c17.0254 0 33.4229 10.6533 49.1953 32.1699
|
||||
c15.7715 21.4111 23.709 48.3584 23.709 80.6328c0 47.21 -17.2334 86.3779 -51.7012 117.503s-76.7686 46.6885 -126.799 46.6885c-54.3125 0 -100.165 -19.0098 -137.348 -56.8193c-37.2881 -37.915 -55.9844 -85.125 -55.9844 -141.735
|
||||
c0 -52.1191 17.4434 -97.5537 52.2236 -136.199c34.8857 -38.749 84.0801 -58.0723 147.584 -58.0723c39.8984 0 80.8418 8.98242 122.621 26.9473c16.1895 6.89355 34.7812 -0.626953 41.3613 -16.9199v0c6.37109 -15.7715 -1.25391 -33.7373 -16.9209 -40.4219
|
||||
c-48.0459 -20.5752 -97.0312 -30.8115 -146.957 -30.8115c-82.8262 0 -148.628 25.1719 -197.614 75.5156c-48.7764 50.3428 -73.2168 110.4 -73.2168 180.275c0 72.9043 25.6934 133.797 76.9775 182.782c51.2832 48.9863 113.429 73.4268 186.333 73.4268
|
||||
c69.3535 0 127.426 -21.5156 174.113 -64.5488zM285.715 143.119c11.8027 15.9805 17.7568 34.1543 17.8604 54.7295c0 16.5029 -4.80371 29.6631 -14.4131 39.5859s-20.5762 14.8311 -32.9014 14.8311c-14.2041 0 -26.1113 -6.68457 -35.7207 -19.8447
|
||||
s-14.4131 -30.498 -14.4131 -52.0146c0 -17.4424 3.44629 -31.9609 10.3398 -43.6592c6.78906 -11.6973 15.7715 -17.5469 26.9473 -17.5469c16.3984 0 30.499 8.04297 42.3008 23.9189z" />
|
||||
<glyph glyph-name="uniF102" unicode=""
|
||||
d="M120.338 254.694l31.4805 73.458l33.5811 -73.458h-65.0615zM470.203 448c23.0469 0 41.7959 -18.75 41.7959 -41.7959v-292.57c0 -23.0469 -18.75 -41.7959 -41.7959 -41.7959h-42.4434l-122.287 -132.476c-2.01758 -2.18555 -4.81934 -3.3623 -7.68066 -3.3623
|
||||
c-1.27637 0 -2.56543 0.234375 -3.80176 0.717773c-4.00684 1.56738 -6.64355 5.42969 -6.64355 9.73242v125.388h-245.551c-23.0459 0 -41.7959 18.749 -41.7959 41.7959v292.57c0 23.0459 18.75 41.7959 41.7959 41.7959h428.407zM365.714 327.837v-20.8975h62.6934
|
||||
v20.8975h-62.6934zM266.449 327.837v-20.8975h83.5918v20.8975h-83.5918zM225.601 166.758l19.0039 8.68848l-83.5908 182.856c-1.71973 3.76074 -5.46875 6.13281 -9.62793 6.10449c-4.13477 -0.0488281 -7.85059 -2.53125 -9.47949 -6.33203l-78.3672 -182.856
|
||||
l19.208 -8.23242l28.6328 66.8096h83.5723zM344.815 202.449v20.8984h-78.3672v-20.8984h78.3672zM454.529 254.694v20.8975h-188.081v-20.8975h188.081z" />
|
||||
<glyph glyph-name="uniF109" unicode=""
|
||||
d="M5.90723 172.308c-3.93848 3.93848 -5.90723 9.84668 -5.90723 13.7842c0 3.93945 1.96875 9.84668 5.90723 13.7852l27.5693 27.5693c7.87695 7.87695 19.6924 7.87695 27.5693 0l1.96973 -1.96973l108.308 -116.185c3.93848 -3.93848 9.8457 -3.93848 13.7842 0
|
||||
l263.877 273.724h1.96973v0c7.87695 7.87695 19.6924 7.87695 27.5693 0l27.5693 -27.5693c7.87598 -7.87695 7.87598 -19.6924 0 -27.5693v0l-315.077 -326.893c-3.93848 -3.93848 -7.87695 -5.90723 -13.7852 -5.90723c-5.90723 0 -9.8457 1.96875 -13.7842 5.90723
|
||||
l-153.601 165.416z" />
|
||||
<glyph glyph-name="uniF138" unicode=""
|
||||
d="M503.152 313.027c8.92188 -38.7773 8.84766 -81.1055 8.84766 -121.03c0 -39.9189 -0.03125 -82.2422 -8.95801 -121.02c-6.26855 -27.2285 -28.5459 -47.3174 -55.3408 -50.3145c-63.4805 -7.09277 -127.732 -7.12988 -191.72 -7.09277
|
||||
c-63.9766 -0.0371094 -128.244 0 -191.729 7.09277c-26.8115 3.00195 -49.0732 23.0908 -55.3311 50.3145c-8.9209 38.7725 -8.9209 81.0957 -8.9209 121.02c0 39.9248 0.100586 82.2529 9.02148 121.03c6.26855 27.2295 28.5244 47.3184 55.3203 50.3145
|
||||
c63.4902 7.08789 127.764 7.125 191.74 7.08789c63.9658 0.0371094 128.229 0 191.719 -7.08789c26.8115 -2.99609 49.084 -23.085 55.3516 -50.3145zM189.928 112.529c54.4053 28.2129 108.335 56.166 162.772 84.3994c-54.6064 28.4863 -108.51 56.6094 -162.772 84.9219
|
||||
v-169.321z" />
|
||||
<glyph glyph-name="uniF120" unicode=""
|
||||
d="M190.283 100.781l-25.502 23.541c-7.84668 7.84668 -7.84668 19.6162 0 27.4629l180.476 180.476c17.6553 19.6162 43.1572 29.4248 68.6592 29.4248c54.9268 0 98.084 -43.1572 98.084 -98.084c0 -25.502 -11.7705 -51.0039 -29.4258 -68.6592l-213.823 -213.823
|
||||
c-31.3867 -29.4258 -68.6592 -45.1191 -111.816 -45.1191s-82.3906 15.6934 -111.815 45.1191c-29.4258 31.3867 -45.1191 68.6582 -45.1191 111.815s15.6934 82.3916 45.1191 111.816l237.363 237.364c3.92383 3.92285 7.84668 5.88477 13.7324 5.88477
|
||||
c5.88477 0 9.80859 -1.96191 13.7314 -5.88477l27.4639 -27.4639c7.84668 -7.84668 7.84668 -19.6172 0 -27.4639l-237.364 -237.363c-15.6934 -13.7324 -23.54 -35.3105 -23.54 -54.9277s7.84668 -39.2334 23.54 -54.9268c31.3867 -29.4258 82.3906 -29.4258 111.816 0
|
||||
l213.823 213.823c3.92383 3.92383 5.88574 7.84668 5.88574 13.7324c0 11.7695 -7.84668 19.6162 -19.6172 19.6162c-7.84668 0 -11.7705 -3.92285 -13.7314 -5.88477l-180.476 -180.476c-3.92285 -3.92285 -7.84668 -5.88477 -13.7314 -5.88477
|
||||
c-3.92383 0 -9.80859 1.96191 -13.7324 5.88477z" />
|
||||
<glyph glyph-name="uniF122" unicode=""
|
||||
d="M442.484 448c38.3311 0 69.5156 -31.1846 69.5156 -69.5156v-372.969c0 -38.333 -31.1846 -69.5156 -69.5156 -69.5156h-372.969c-38.3311 0 -69.5156 31.1826 -69.5156 69.5156v372.969c0 38.3311 31.1846 69.5156 69.5156 69.5156h372.969zM256 66.9199
|
||||
c63.1387 0 114.504 51.3662 114.504 114.505c0 63.1367 -51.3672 114.504 -114.504 114.504s-114.504 -51.3672 -114.504 -114.504c0 -63.1387 51.3652 -114.505 114.504 -114.505zM468.651 265.948l0.00195312 99.4189c0 25.2695 -20.5596 45.8271 -45.8301 45.8271
|
||||
h-333.646c-25.2695 0 -45.8291 -20.5576 -45.8291 -45.8271v-99.4189h103.454c26.1152 31.2627 65.3721 51.1885 109.197 51.1885s83.082 -19.9238 109.197 -51.1885h103.454zM256 255.036c40.5879 0 73.6113 -33.0225 73.6113 -73.6094
|
||||
c0 -40.5898 -33.0225 -73.6104 -73.6113 -73.6104s-73.6113 33.0205 -73.6113 73.6104c0 40.5869 33.0234 73.6094 73.6113 73.6094zM412.228 381.809c10.125 0 18.3623 -8.2373 18.3623 -18.3643v-44.3027c0 -10.127 -8.2373 -18.3623 -18.3623 -18.3623h-44.3027
|
||||
c-10.127 0 -18.3633 8.2373 -18.3633 18.3623v44.3027c0 10.125 8.23828 18.3643 18.3633 18.3643h44.3027z" />
|
||||
<glyph glyph-name="uniF10D" unicode=""
|
||||
d="M496.858 213.989c10.0957 -25.5205 15.1406 -57.2383 15.1426 -95.1387c0 -31.6211 -12.0967 -74.5713 -36.2842 -128.849c-0.568359 -1.33594 -1.56836 -3.61328 -3 -6.85352c-1.4248 -3.23926 -2.71289 -6.09473 -3.85742 -8.56738
|
||||
c-1.14941 -2.47949 -2.38281 -4.5752 -3.71191 -6.28809c-2.28809 -3.24023 -4.95215 -4.85645 -8 -4.85645c-2.85645 0 -5.0957 0.950195 -6.71875 2.85352c-1.61621 1.90527 -2.4248 4.28809 -2.4248 7.14062c0 1.71191 0.239258 4.23242 0.712891 7.56738
|
||||
c0.478516 3.33594 0.714844 5.5752 0.714844 6.71289c0.950195 12.9512 1.42969 24.6699 1.42969 35.1436c0 19.2334 -1.67285 36.4727 -5.00098 51.7119c-3.33496 15.2393 -7.95605 28.4238 -13.8564 39.5684c-5.9082 11.1465 -13.5273 20.7598 -22.8633 28.8594
|
||||
c-9.33398 8.0918 -19.3828 14.709 -30.1436 19.8564c-10.7627 5.14746 -23.4316 9.19141 -38.0059 12.1436c-14.5664 2.95605 -29.2402 5.00391 -44 6.14746c-14.7607 1.14062 -31.4727 1.70898 -50.1357 1.70898h-63.999v-73.1465
|
||||
c0 -4.95312 -1.80859 -9.24023 -5.42773 -12.8574c-3.62012 -3.61621 -7.90527 -5.43164 -12.8564 -5.43164s-9.2373 1.81641 -12.8594 5.43164l-146.285 146.288c-3.61719 3.62012 -5.42773 7.9043 -5.42773 12.8555c0 4.95312 1.81055 9.2373 5.42773 12.8594
|
||||
l146.284 146.283c3.61816 3.62012 7.9043 5.43066 12.8594 5.43066s9.2373 -1.81055 12.8564 -5.43066c3.61816 -3.61719 5.42773 -7.90332 5.42773 -12.8584v-73.1416h63.999c135.81 0 219.141 -38.3818 250.004 -115.144z" />
|
||||
<glyph glyph-name="uniF116" unicode=""
|
||||
d="M320.48 391.14h-94.8408v56.8604h94.8408v-56.8604zM320.48 220.456h-94.8408v37.9629h94.8408v-37.9629zM320.48 -64h-94.8408v151.702h94.8408v-151.702zM475.268 324.754l-53.4395 -47.4033h-328.909l44.96 47.4033l-44.96 47.3867h328.909zM387.557 154.07
|
||||
l46.7129 -47.4033h-341.536l-56.001 47.4033l56.001 47.4033h341.536z" />
|
||||
<glyph glyph-name="uniF136" unicode=""
|
||||
d="M303.547 71.1748c15.8555 -15.8555 31.7119 -31.6055 47.6738 -47.5674c13.1953 -13.3018 13.0889 -29.584 -0.212891 -42.9922c-9.04492 -9.04492 -18.5166 -17.665 -27.0293 -27.1357c-12.3438 -13.834 -27.8809 -18.3027 -45.6523 -17.3457
|
||||
c-25.8584 1.38379 -49.6953 9.89648 -72.5752 21.0703c-50.9727 24.7949 -94.6025 59.0605 -130.996 102.478c-26.9238 32.1377 -49.1641 67.042 -63.8496 106.415c-7.12988 19.0488 -12.1309 38.6289 -10.6416 59.2734c0.958008 12.7695 5.74707 23.624 15.1113 32.5635
|
||||
c10.0029 9.57715 19.6865 19.6865 29.583 29.4766c13.0889 12.876 29.2646 12.7695 42.3535 0c8.08789 -7.98145 15.9619 -15.9619 23.9434 -23.9434c7.76855 -7.66211 15.5361 -15.4307 23.1982 -23.1982c13.6211 -13.7275 13.6211 -29.6904 0.106445 -43.3115
|
||||
c-9.68359 -9.79004 -19.3672 -19.5801 -29.2637 -29.1572c-2.66113 -2.55371 -2.76758 -4.57617 -1.49023 -7.76855c6.49121 -15.6426 15.9619 -29.4766 26.4971 -42.46c21.2832 -26.1777 45.333 -49.376 73.959 -67.3604
|
||||
c6.17188 -3.83105 12.9824 -6.59766 19.3672 -10.1094c3.29883 -1.80859 5.53418 -1.27734 8.19434 1.49023c9.68359 10.0029 19.5801 19.793 29.4766 29.583c12.9824 12.876 29.2646 12.876 42.2471 0zM464.766 400.742c62.998 -62.998 62.998 -165.05 -0.106445 -228.048
|
||||
c-53.1016 -53.1006 -133.87 -61.5078 -195.697 -25.1133l-0.319336 0.319336c-24.2627 -18.4102 -50.334 -21.6025 -68.5312 -18.7295c-6.06543 0.958008 -7.34277 9.15137 -1.80859 11.8125c16.6006 8.19336 27.1357 24.3682 33.2012 37.5645l-1.59668 1.38281
|
||||
c-56.0801 63.3174 -53.8457 160.155 6.81055 220.812c62.998 62.998 165.05 62.998 228.048 0zM357.605 386.27c-14.5791 0.106445 -26.3906 -11.5986 -26.4971 -26.1777s11.7061 -26.6035 26.3906 -26.71c14.1533 -0.106445 25.9658 11.7051 26.0723 26.2842
|
||||
c0.106445 14.6855 -11.4932 26.4971 -25.9658 26.6035zM394.957 209.089c0.958008 3.9375 -2.23438 6.59766 -5.74609 5.21387c-2.66016 -0.957031 -4.89551 -2.7666 -7.44922 -3.72461c-3.19238 -1.16992 -6.49121 -2.34082 -9.79004 -2.7666
|
||||
c-3.9375 -0.425781 -6.91699 1.70312 -7.875 5.64062c-0.744141 2.87305 -1.16992 6.06543 -0.850586 9.04492c0.637695 6.17188 1.91504 12.4502 3.08594 18.6221c3.40527 18.8359 6.91699 37.5645 10.2158 56.2939c0.957031 5.1084 1.80859 10.2158 1.70215 15.3242
|
||||
c-0.212891 6.17188 -3.83105 9.04492 -10.0029 9.04492h-25.6455h-24.1562c-2.02246 0 -4.04395 0 -5.95996 -0.425781c-3.72461 -0.745117 -5.5332 -2.55371 -5.85254 -5.42676c-0.319336 -2.76758 1.1709 -5.42773 4.57617 -6.59766
|
||||
c2.66016 -0.958008 5.74609 -1.1709 8.61914 -1.59668c6.81055 -0.958008 8.93945 -3.29883 8.93945 -10.2158c0 -1.06445 0 -2.12793 -0.212891 -3.19238c-2.87402 -16.3877 -5.85352 -32.8818 -8.62012 -49.2705c-1.5957 -9.4707 -3.08594 -18.9414 -4.36328 -28.4121
|
||||
c-1.91504 -13.9404 11.3867 -26.9238 21.9219 -28.4131c6.27832 -0.958008 12.7695 -1.1709 19.1543 -1.06445c13.7275 0.212891 25.1143 5.95898 34.6914 15.6436c1.59668 1.70215 3.08594 4.04297 3.61816 6.27832z" />
|
||||
<glyph glyph-name="uniF133" unicode=""
|
||||
d="M510.809 248.836c5.80469 -51.335 -9.7832 -104.286 -42.874 -145.492c-32.8623 -40.9131 -76.6943 -72.5391 -115.366 -100.439c-17.6729 -12.75 -41.1553 -29.2617 -66.0811 -43.9004l-1.39453 -0.820312c-10.4482 -6.15723 -26.2383 -15.4639 -40.1123 -15.4639
|
||||
h-0.00390625c-12.8975 0.00195312 -21.709 8.09473 -24.1748 22.2051c-2.14355 12.2744 0.585938 23.4082 3.22559 34.1738c0.332031 1.35352 0.663086 2.70605 0.984375 4.06152c0.348633 1.46875 0.802734 4.13672 -0.0654297 5.49023
|
||||
c-0.469727 0.728516 -2.29004 2.56934 -9.05957 3.90918l-2.87891 0.570312c-24.5869 4.86035 -47.8086 9.45117 -71.2949 19.1934c-38.1973 15.8447 -71.3359 40.1221 -95.834 70.2051c-26.0273 31.9619 -41.6611 69.9463 -45.2109 109.852
|
||||
c-6.8584 77.1152 39.5439 153.955 118.223 195.759c40.8008 21.6797 88.123 33.1396 136.849 33.1396c36.0918 0 71.1445 -6.14551 104.181 -18.2627c38.5576 -14.1436 72.918 -36.7588 99.3652 -65.4023c26.5713 -28.7812 43.7275 -62.4893 49.9727 -98.0078
|
||||
l0.253906 0.03125l0.124023 -1.02637c0.15625 -1.28809 0.291992 -2.41699 0.411133 -3.4082l0.59375 -4.93457c0.00390625 -0.0185547 0.00585938 -0.0361328 0.0078125 -0.0556641l0.00683594 -0.0615234l0.158203 -1.3125zM159.444 170.768
|
||||
c6.6748 0 12.0859 5.41113 12.085 12.0859c0 6.67578 -5.41211 12.0869 -12.0869 12.0869h-32.083v80.6279c0 6.6748 -5.41113 12.0859 -12.0869 12.0859c-6.6748 0 -12.0859 -5.41113 -12.0859 -12.0859v-92.7148c0 -6.6748 5.41113 -12.0859 12.0859 -12.0859h44.1719z
|
||||
M205.523 183.182v92.7148c0 6.6748 -5.41211 12.0859 -12.0869 12.0859s-12.0869 -5.41113 -12.0869 -12.0859v-92.7148c0 -6.6748 5.41211 -12.0859 12.0869 -12.0859s12.0869 5.41113 12.0869 12.0859zM314.775 183.182v92.7148
|
||||
c0 6.6748 -5.41113 12.0859 -12.0869 12.0859c-6.6748 0 -12.0869 -5.41113 -12.0869 -12.0859v-55.4961l-43.5234 59.9434c-3.07617 4.23926 -8.53125 6.01074 -13.5146 4.39453c-4.98047 -1.61816 -8.35352 -6.25879 -8.35352 -11.4961v-90.0615
|
||||
c0 -6.67578 5.41211 -12.0869 12.0869 -12.0869c6.67578 0 12.0869 5.41113 12.0869 12.0869v52.8438l43.5234 -59.9443c2.31836 -3.19238 5.98633 -4.98633 9.7832 -4.98633c1.24316 0 2.50195 0.193359 3.73145 0.591797c4.98145 1.61816 8.35352 6.25977 8.35352 11.4961
|
||||
zM402.847 172.998c6.6748 0 12.0859 5.41113 12.0859 12.0869c0 6.6748 -5.41113 12.0859 -12.0859 12.0859h-47.7334v22.1826h37.2295c6.67578 0 12.0869 5.41113 12.0869 12.0869c0 6.6748 -5.41113 12.0859 -12.0869 12.0859h-37.2295v22.1865h45.877
|
||||
c6.6748 0 12.0869 5.41113 12.0869 12.0859c0 6.67578 -5.41211 12.0869 -12.0869 12.0869h-57.9639c-6.6748 0 -12.0859 -5.41113 -12.0859 -12.0869v-46.3584v-46.3555c0 -6.67578 5.41113 -12.0869 12.0859 -12.0869h59.8203z" />
|
||||
<glyph glyph-name="uniF118" unicode=""
|
||||
d="M430.715 321.062c11.6836 -9.61035 20.4951 -28.7061 20.4951 -44.418v-306.41c0 -18.876 -14.9502 -34.2344 -33.3281 -34.2344c0 0 -317.356 0.165039 -328.096 0.165039c-16.9297 0 -28.7539 11.8057 -28.7539 28.708c0 2.32031 -0.238281 444.814 -0.241211 449.283
|
||||
c0 18.6631 15.417 33.8438 34.3682 33.8438h155.356c14.6914 0 34.1514 -6.89746 45.2676 -16.0439zM95.1387 446.568h0.0205078v0h-0.0205078zM343.059 110.202c2.41016 3.43945 2.8291 7.28516 1.12402 10.5615c-1.70508 3.27539 -5.23047 5.06738 -9.42969 5.06738
|
||||
h-45.3447v109.874c0 7.10645 -6.2627 13.2656 -13.3691 13.2656h-39.5508c-7.10645 0 -12.9453 -6.15918 -12.9453 -13.2656v-109.874h-45.7783c-4.20117 0 -7.72656 -1.79395 -9.43164 -5.07227c-1.70605 -3.27539 -1.28418 -7.125 1.12695 -10.5645l77.6455 -110.829
|
||||
c2.2207 -3.16699 5.55566 -4.98535 9.14941 -4.98535c3.5957 0 6.93066 1.81738 9.15137 4.98535zM294.977 286.199h125.42l-148.171 117.466v-93.9355c0 -5.52051 1.6416 -23.5303 22.751 -23.5303z" />
|
||||
<glyph glyph-name="uniF11C" unicode=""
|
||||
d="M212.031 262.431c4.13477 0 7.49316 -3.35938 7.49316 -7.49316v-76.5537c0 -4.13379 -3.3584 -7.49316 -7.49316 -7.49316h-4.19043c-4.13477 0 -7.48242 3.35938 -7.48242 7.49316v76.5537c0 4.13379 3.34766 7.49316 7.48242 7.49316h4.19043zM299.078 262.431
|
||||
c5.29102 0 9.58301 -4.29004 9.58301 -9.58301v-71.9697c0 -5.3252 -4.34766 -10.0322 -9.67285 -9.9873c-2.50586 0.0224609 -4.78613 1.02246 -6.48242 2.62891c-0.573242 0.539062 -39.4346 50.9043 -39.4346 50.9043v-43.9502
|
||||
c0 -2.63965 -1.06738 -5.04395 -2.80859 -6.77441c-1.72949 -1.73047 -4.12305 -2.80859 -6.77441 -2.80859c-5.29102 0 -9.58301 4.29199 -9.58301 9.58301v71.9805c0 5.21289 4 9.77441 9.21289 9.96582c2.98828 0.112305 5.68457 -1.14648 7.51562 -3.20215
|
||||
c0.583984 -0.651367 38.8604 -50.5791 38.8604 -50.5791v44.209c0 2.64062 1.06738 5.04492 2.80957 6.77441c1.72949 1.73047 4.12305 2.80859 6.77441 2.80859zM181.664 190.069c2.63965 0 5.04395 -1.06738 6.77441 -2.80859s2.80859 -4.13477 2.80859 -6.78613
|
||||
c0 -5.29102 -4.29199 -9.58301 -9.58301 -9.58301h-38.3438c-5.29199 0 -9.58398 4.29199 -9.58398 9.58301v72.374c0 2.64062 1.06738 5.04492 2.80859 6.77441c1.73047 1.73047 4.12402 2.80859 6.77539 2.80859c5.29102 0 9.58301 -4.29102 9.58301 -9.58301v-62.7793
|
||||
h28.7607zM370.969 243.265h-28.7607v-17.0205h28.7607c2.63965 0 5.04395 -1.06738 6.77441 -2.80859c1.73047 -1.73047 2.80859 -4.12305 2.80859 -6.77441c0 -5.29199 -4.29199 -9.58398 -9.58301 -9.58398h-28.7607v-17.0088h28.7607
|
||||
c2.63965 0 5.04395 -1.06738 6.77441 -2.80859s2.80859 -4.13477 2.80859 -6.78613c0 -5.29102 -4.29199 -9.58301 -9.58301 -9.58301h-38.3438c-5.29199 0 -9.58398 4.29199 -9.58398 9.58301v72.374c0 5.29199 4.29199 9.58301 9.58398 9.58301h38.3438
|
||||
c5.29102 0 9.58301 -4.29102 9.58301 -9.58301c0 -5.29102 -4.29199 -9.58301 -9.58301 -9.58301zM0 448h512v-512h-512v512zM443.309 212.617c0.326172 4.94238 -0.0449219 12.2686 -0.167969 14.5605c-4.55078 79.1035 -86.6201 142.13 -187.193 142.13
|
||||
c-103.493 0 -187.383 -66.7344 -187.383 -149.051c0 -75.6543 70.8682 -138.153 162.7 -147.759c5.60645 -0.595703 9.66211 -5.66211 9.0332 -11.2686l-3.91016 -35.1865c-0.886719 -7.98828 7.37012 -13.8076 14.6172 -10.3135
|
||||
c77.5752 37.4453 123.963 75.958 151.668 109.336c5.04395 6.06641 21.4805 29.0977 24.8291 35.1533c7.12207 12.8408 12.0205 26.626 14.3242 41.0625c0.864258 4.52832 1.29199 8.34766 1.48242 11.3359z" />
|
||||
<glyph glyph-name="uniF119" unicode=""
|
||||
d="M448.608 96.209c18.4434 0 33.3965 -14.9521 33.3965 -33.3955v-85.4512c0 -18.4434 -14.9531 -33.4004 -33.3955 -33.4004h-385.218c-18.4434 0 -33.3955 14.957 -33.3955 33.4004v85.4512c0 18.4434 14.9521 33.3955 33.3955 33.3955
|
||||
c18.4443 0 33.3965 -14.9531 33.3965 -33.3955v-52.0557h318.42v52.0557c0 18.4434 14.9561 33.3955 33.4004 33.3955zM245.918 60.6748l-117.039 117.038c-3.40527 3.41016 -4.41895 8.53223 -2.5752 13c1.84473 4.45117 6.18066 7.35156 11.0068 7.35156h54.9736v215.911
|
||||
c0 14.4033 11.6621 26.0635 26.0596 26.0635h75.3232c14.3994 0 26.0596 -11.6611 26.0596 -26.0635v-215.911h54.9541c4.83203 0 9.16797 -2.90137 11.0127 -7.35156c1.84375 -4.46777 0.831055 -9.58984 -2.5791 -13l-117.039 -117.038
|
||||
c-5.55762 -5.55859 -14.5938 -5.55859 -20.1572 0z" />
|
||||
<glyph glyph-name="uniF134" unicode=""
|
||||
d="M510.173 335.883c1.8877 -1.71289 2.37109 -4.48828 1.1748 -6.73926c-17.1123 -32.1895 -38.6436 -44.5342 -48.3975 -48.71c14.6006 -63.9609 -2.69531 -133.51 -47.8477 -191.615c-50.7002 -65.2451 -128.268 -104.198 -207.49 -104.198h-0.0371094
|
||||
c-71.9609 0.0117188 -143.137 31.3574 -205.832 90.6504c-1.74609 1.65039 -2.23633 4.23535 -1.2168 6.41113c1.02051 2.17773 3.32227 3.44922 5.70703 3.16699c14.4365 -1.72852 28.3066 -2.60352 41.2295 -2.60352h0.0146484
|
||||
c47.5576 0.000976562 85.3701 12.041 109.351 34.8174c11.2236 10.6611 17.0352 21.4258 19.8252 28.0547c-21.9941 1.80566 -71.5938 12.8711 -92.2881 41.3281c-4.31641 5.93359 -2.94922 10.7695 -1.75098 13.125c3.15234 6.18652 12.873 9.90527 25.0459 12.0713
|
||||
c-15.5381 5.46777 -33.1729 14.4736 -48.1729 29.2959c-10.2178 10.0957 -9.62891 18.8711 -7.33496 24.4551c4.51855 10.998 18.9482 17.9795 32.4521 21.5576c-24.6133 10.6172 -62.4209 32.0576 -79.9961 68.5586c-0.813477 1.68555 -0.724609 3.66699 0.235352 5.27344
|
||||
c0.959961 1.60547 2.66113 2.62305 4.53027 2.70898c8.21484 0.374023 16.4385 0.563477 24.4453 0.563477c82.3486 0 138.852 -20.0527 171.749 -36.875c21.5342 -11.0098 36.001 -22.0117 44.2959 -29.2412c1.46582 10.0303 4.81152 25.2188 12.4297 40.9053
|
||||
c12.0488 24.8115 37.3926 55.3965 89.6943 60.2061c2.38281 0.21875 4.78516 0.330078 7.13867 0.330078c42.0869 0 66.4365 -34.2129 73.5166 -45.8799c10.0117 2.33496 37.3555 9.64746 56.4326 23.5684c1.69043 1.23242 3.92969 1.41504 5.79688 0.47168
|
||||
c1.86719 -0.944336 3.04785 -2.85645 3.05762 -4.94727c0.0976562 -20.7939 -14.583 -36.9307 -27.1689 -47.1973c10.5264 1.60742 23.1914 4.77148 32.5869 11.0049c2.125 1.4082 4.93457 1.19531 6.82422 -0.517578z" />
|
||||
<glyph glyph-name="uniF11A" unicode=""
|
||||
d="M451.247 93.4414c-68.7188 -68.7197 -170.924 -79.126 -250.729 -31.251c0 0 -5.76953 3.43945 -10.6357 -1.42773c-26.4424 -26.4414 -105.771 -105.771 -105.771 -105.771c-21.0967 -21.0977 -50.5977 -26.1182 -69.3066 -7.40625l-3.2207 3.21777
|
||||
c-18.7109 18.7129 -13.6855 48.2119 7.41016 69.3076l105.994 105.994c4.64453 4.64453 1.2041 10.4102 1.2041 10.4102c-47.8779 79.8105 -37.4688 182.014 31.249 250.733c81.001 81.0029 212.805 81.0029 293.806 0c81.001 -81.002 81.002 -212.804 0 -293.807z
|
||||
M195.8 131.798c59.8525 -59.8516 157.238 -59.8516 217.089 0c59.8545 59.8525 59.8545 157.24 0 217.091c-59.8496 59.8525 -157.236 59.8516 -217.088 0c-59.8525 -59.8525 -59.8545 -157.238 -0.000976562 -217.091zM315.01 177.65
|
||||
c7.25684 0 13.1953 -5.9375 13.1953 -13.1953v-19.9756c0 -7.25488 -5.93945 -13.1943 -13.1953 -13.1943h-19.9785c-7.25586 0 -13.1953 5.93945 -13.1953 13.1943v19.9756c0 7.25781 5.93945 13.1953 13.1953 13.1953h19.9785zM306.38 355.115
|
||||
c35.4951 0 64.3711 -28.877 64.3691 -64.3701c0 -25.5791 -14.7686 -42.3838 -26.6309 -55.8857c-9.16602 -10.4307 -12.9199 -17.0957 -14.7832 -24.4824c-3.28418 -13.0234 -10.8877 -17.1133 -24.3203 -17.1133c-13.4297 0 -24.3184 3.68164 -24.3184 17.1133
|
||||
c0 25.9912 14.9033 42.9551 26.8848 56.5869c9.00879 10.251 14.5273 16.8838 14.5273 23.7812c0 8.67383 -7.05273 15.7314 -15.7285 15.7314h-2.7207c-8.67285 0 -15.7275 -7.05762 -15.7275 -15.7314c0 -13.4307 -10.8867 -17.1143 -24.3213 -17.1143
|
||||
c-13.4307 0 -24.3184 3.68359 -24.3184 17.1143c0 35.4941 28.8721 64.3701 64.3672 64.3701h2.7207z" />
|
||||
<glyph glyph-name="uniF127" unicode=""
|
||||
d="M512 170.667c0 -12.8008 -8.5332 -21.334 -21.333 -21.334h-38.4004c-6.39941 0 -8.5332 -4.2666 -10.667 -8.5332c-4.2666 -17.0664 -10.666 -32 -19.1992 -44.7998c-2.13379 -4.2666 -2.13379 -8.5332 2.13281 -12.7998l27.7334 -27.7334
|
||||
c8.5332 -8.5332 8.5332 -21.333 0 -29.8672l-29.8662 -29.8662c-8.5332 -8.5332 -21.334 -8.5332 -29.8672 0l-27.7334 27.7334c-4.2666 4.2666 -8.5332 4.2666 -12.7998 2.13281c-14.9336 -8.5332 -29.8662 -14.9326 -44.7998 -19.1992
|
||||
c-4.2666 -2.13379 -8.5332 -6.40039 -8.5332 -10.667v-38.4004c0 -12.7998 -8.5332 -21.333 -21.334 -21.333h-42.666c-12.7998 0 -21.334 8.5332 -21.334 21.333v38.4004c0 6.40039 -4.2666 8.5332 -8.5332 10.667c-17.0664 4.2666 -32 10.666 -44.7998 19.1992
|
||||
c-4.2666 2.13379 -8.5332 2.13379 -12.7998 -2.13281l-27.7334 -27.7334c-8.5332 -8.5332 -21.333 -8.5332 -29.8672 0l-29.8662 29.8662c-8.5332 8.53418 -8.5332 21.334 0 29.8672l27.7334 27.7334c4.2666 4.2666 4.2666 8.5332 2.13281 12.7998
|
||||
c-8.5332 14.9336 -14.9326 29.8662 -19.1992 44.7998c-2.13379 4.2666 -6.40039 8.5332 -10.667 8.5332h-38.4004c-12.7998 0 -21.333 8.5332 -21.333 21.334v42.666c0 12.8008 8.5332 21.334 21.333 21.334h38.4004c6.40039 0 8.5332 4.2666 10.667 8.5332
|
||||
c4.2666 17.0664 10.666 32 19.1992 44.7998c2.13379 4.2666 2.13379 8.5332 -2.13281 12.7998l-27.7334 27.7334c-8.5332 8.5332 -8.5332 21.333 0 29.8672l29.8662 29.8662c8.53418 8.5332 21.334 8.5332 29.8672 0l27.7334 -27.7334
|
||||
c4.2666 -4.2666 8.5332 -4.2666 12.7998 -2.13281c14.9336 8.5332 29.8672 14.9326 44.7998 19.1992c4.2666 2.13379 8.5332 6.40039 8.5332 10.667v38.4004c0 12.7998 8.53418 21.333 21.334 21.333h42.666c12.8008 0 21.334 -8.5332 21.334 -21.333v-38.4004
|
||||
c0 -6.40039 4.2666 -8.5332 8.5332 -10.667c17.0664 -4.2666 32 -10.666 44.7998 -19.1992c4.2666 -2.13379 8.5332 -2.13379 12.7998 2.13281l27.7334 27.7334c8.5332 8.5332 21.334 8.5332 29.8672 0l29.8662 -29.8662c8.5332 -8.53418 8.5332 -21.334 0 -29.8672
|
||||
l-27.7334 -27.7334c-4.2666 -4.2666 -4.2666 -8.5332 -2.13281 -12.7998c8.5332 -14.9336 14.9326 -29.8672 19.1992 -44.7998c2.13379 -4.2666 6.40039 -8.5332 10.667 -8.5332h38.4004c12.7998 0 21.333 -8.5332 21.333 -21.334v-42.666zM256 85.333
|
||||
c59.7334 0 106.667 46.9336 106.667 106.667s-46.9336 106.667 -106.667 106.667s-106.667 -46.9336 -106.667 -106.667s46.9336 -106.667 106.667 -106.667z" />
|
||||
<glyph glyph-name="uniF12E" unicode=""
|
||||
d="M255.994 242.91c28.0762 0 50.916 -22.8398 50.916 -50.9043c0 -28.0762 -22.8398 -50.9277 -50.916 -50.9277c-28.0645 0 -50.916 22.8516 -50.916 50.9277c0 28.0645 22.8516 50.9043 50.916 50.9043zM255.994 242.91c28.0762 0 50.916 -22.8398 50.916 -50.9043
|
||||
c0 -28.0762 -22.8398 -50.9277 -50.916 -50.9277c-28.0645 0 -50.916 22.8516 -50.916 50.9277c0 28.0645 22.8516 50.9043 50.916 50.9043zM340.816 325.924c27.0762 0 49.1074 -22.0312 49.1074 -49.1074v-169.633c0 -27.0762 -22.0312 -49.1074 -49.1074 -49.1074
|
||||
h-169.633c-27.0762 0 -49.1074 22.0312 -49.1074 49.1074v169.633c0 27.0762 22.0312 49.1074 49.1074 49.1074h169.633zM255.994 103.824c48.624 0 88.1816 39.5576 88.1816 88.1816c0 48.6123 -39.5576 88.1699 -88.1816 88.1699
|
||||
c-48.6123 0 -88.1699 -39.5576 -88.1699 -88.1699c0 -48.624 39.5576 -88.1816 88.1699 -88.1816zM347.007 261.941c11.5039 0 20.8633 9.35938 20.8633 20.8633s-9.3584 20.8633 -20.8633 20.8633c-11.5039 0 -20.8633 -9.35938 -20.8633 -20.8633
|
||||
s9.35938 -20.8633 20.8633 -20.8633zM255.994 242.91c-28.0645 0 -50.916 -22.8398 -50.916 -50.9043c0 -28.0762 22.8516 -50.9277 50.916 -50.9277c28.0762 0 50.916 22.8516 50.916 50.9277c0 28.0645 -22.8398 50.9043 -50.916 50.9043zM340.816 325.924
|
||||
c27.0762 0 49.1074 -22.0312 49.1074 -49.1074v-169.633c0 -27.0762 -22.0312 -49.1074 -49.1074 -49.1074h-169.633c-27.0762 0 -49.1074 22.0312 -49.1074 49.1074v169.633c0 27.0762 22.0312 49.1074 49.1074 49.1074h169.633zM255.994 103.824
|
||||
c48.624 0 88.1816 39.5576 88.1816 88.1816c0 48.6123 -39.5576 88.1699 -88.1816 88.1699c-48.6123 0 -88.1699 -39.5576 -88.1699 -88.1699c0 -48.624 39.5576 -88.1816 88.1699 -88.1816zM347.007 261.941c11.5039 0 20.8633 9.35938 20.8633 20.8633
|
||||
s-9.3584 20.8633 -20.8633 20.8633c-11.5039 0 -20.8633 -9.35938 -20.8633 -20.8633s9.35938 -20.8633 20.8633 -20.8633zM255.994 242.91c28.0762 0 50.916 -22.8398 50.916 -50.9043c0 -28.0762 -22.8398 -50.9277 -50.916 -50.9277
|
||||
c-28.0645 0 -50.916 22.8516 -50.916 50.9277c0 28.0645 22.8516 50.9043 50.916 50.9043zM0 448h512v-512h-512v512zM427.178 107.184v169.633c0 47.624 -38.7373 86.3613 -86.3613 86.3613h-169.633c-47.624 0 -86.3613 -38.7373 -86.3613 -86.3613v-169.633
|
||||
c0 -47.624 38.7373 -86.3613 86.3613 -86.3613h169.633c47.624 0 86.3613 38.7373 86.3613 86.3613zM340.816 325.924h-169.633c-27.0762 0 -49.1074 -22.0312 -49.1074 -49.1074v-169.633c0 -27.0762 22.0312 -49.1074 49.1074 -49.1074h169.633
|
||||
c27.0762 0 49.1074 22.0312 49.1074 49.1074v169.633c0 27.0762 -22.0312 49.1074 -49.1074 49.1074zM255.994 103.824c-48.6123 0 -88.1699 39.5576 -88.1699 88.1816c0 48.6123 39.5576 88.1699 88.1699 88.1699c48.624 0 88.1816 -39.5576 88.1816 -88.1699
|
||||
c0 -48.624 -39.5576 -88.1816 -88.1816 -88.1816zM347.007 261.941c-11.5039 0 -20.8633 9.35938 -20.8633 20.8633s9.35938 20.8633 20.8633 20.8633c11.5049 0 20.8633 -9.35938 20.8633 -20.8633s-9.35938 -20.8633 -20.8633 -20.8633zM255.994 242.91
|
||||
c-28.0645 0 -50.916 -22.8398 -50.916 -50.9043c0 -28.0762 22.8516 -50.9277 50.916 -50.9277c28.0762 0 50.916 22.8516 50.916 50.9277c0 28.0645 -22.8398 50.9043 -50.916 50.9043zM255.994 242.91c28.0762 0 50.916 -22.8398 50.916 -50.9043
|
||||
c0 -28.0762 -22.8398 -50.9277 -50.916 -50.9277c-28.0645 0 -50.916 22.8516 -50.916 50.9277c0 28.0645 22.8516 50.9043 50.916 50.9043zM255.994 242.91c-28.0645 0 -50.916 -22.8398 -50.916 -50.9043c0 -28.0762 22.8516 -50.9277 50.916 -50.9277
|
||||
c28.0762 0 50.916 22.8516 50.916 50.9277c0 28.0645 -22.8398 50.9043 -50.916 50.9043zM340.816 325.924c27.0762 0 49.1074 -22.0312 49.1074 -49.1074v-169.633c0 -27.0762 -22.0312 -49.1074 -49.1074 -49.1074h-169.633c-27.0762 0 -49.1074 22.0312 -49.1074 49.1074
|
||||
v169.633c0 27.0762 22.0312 49.1074 49.1074 49.1074h169.633zM255.994 103.824c48.624 0 88.1816 39.5576 88.1816 88.1816c0 48.6123 -39.5576 88.1699 -88.1816 88.1699c-48.6123 0 -88.1699 -39.5576 -88.1699 -88.1699c0 -48.624 39.5576 -88.1816 88.1699 -88.1816z
|
||||
M347.007 261.941c11.5039 0 20.8633 9.35938 20.8633 20.8633s-9.3584 20.8633 -20.8633 20.8633c-11.5039 0 -20.8633 -9.35938 -20.8633 -20.8633s9.35938 -20.8633 20.8633 -20.8633zM255.994 242.91c28.0762 0 50.916 -22.8398 50.916 -50.9043
|
||||
c0 -28.0762 -22.8398 -50.9277 -50.916 -50.9277c-28.0645 0 -50.916 22.8516 -50.916 50.9277c0 28.0645 22.8516 50.9043 50.916 50.9043zM255.994 242.91c-28.0645 0 -50.916 -22.8398 -50.916 -50.9043c0 -28.0762 22.8516 -50.9277 50.916 -50.9277
|
||||
c28.0762 0 50.916 22.8516 50.916 50.9277c0 28.0645 -22.8398 50.9043 -50.916 50.9043zM255.994 242.91c28.0762 0 50.916 -22.8398 50.916 -50.9043c0 -28.0762 -22.8398 -50.9277 -50.916 -50.9277c-28.0645 0 -50.916 22.8516 -50.916 50.9277
|
||||
c0 28.0645 22.8516 50.9043 50.916 50.9043zM340.816 325.924h-169.633c-27.0762 0 -49.1074 -22.0312 -49.1074 -49.1074v-169.633c0 -27.0762 22.0312 -49.1074 49.1074 -49.1074h169.633c27.0762 0 49.1074 22.0312 49.1074 49.1074v169.633
|
||||
c0 27.0762 -22.0312 49.1074 -49.1074 49.1074zM255.994 103.824c-48.6123 0 -88.1699 39.5576 -88.1699 88.1816c0 48.6123 39.5576 88.1699 88.1699 88.1699c48.624 0 88.1816 -39.5576 88.1816 -88.1699c0 -48.624 -39.5576 -88.1816 -88.1816 -88.1816zM347.007 261.941
|
||||
c-11.5039 0 -20.8633 9.35938 -20.8633 20.8633s9.35938 20.8633 20.8633 20.8633c11.5049 0 20.8633 -9.35938 20.8633 -20.8633s-9.35938 -20.8633 -20.8633 -20.8633zM255.994 242.91c-28.0645 0 -50.916 -22.8398 -50.916 -50.9043
|
||||
c0 -28.0762 22.8516 -50.9277 50.916 -50.9277c28.0762 0 50.916 22.8516 50.916 50.9277c0 28.0645 -22.8398 50.9043 -50.916 50.9043z" />
|
||||
<glyph glyph-name="uniF12D" unicode=""
|
||||
d="M256.23 340.91c81.875 0 148.484 -66.6113 148.484 -148.486s-66.6094 -148.485 -148.484 -148.485c-27.334 0 -54.0479 7.48828 -77.252 21.6533l-5.47363 3.34277l-53.0703 -13.6611l14.4424 51.2949l-3.68555 5.74023
|
||||
c-15.3379 23.8838 -23.4463 51.5869 -23.4463 80.1152c0 81.875 66.6104 148.486 148.485 148.486zM347.283 146.788c0.588867 2.75 -0.807617 5.54004 -3.36328 6.71875l-39.2148 18.0762c-2.5459 1.17383 -5.56445 0.432617 -7.27637 -1.78809l-15.3955 -19.957
|
||||
c-1.16309 -1.50879 -3.1543 -2.10547 -4.95117 -1.47363c-10.542 3.70508 -45.8574 18.4951 -65.2354 55.8213c-0.839844 1.61914 -0.631836 3.58496 0.561523 4.96484l14.7129 17.0205c1.50195 1.73828 1.88281 4.18066 0.979492 6.29395l-16.9033 39.5469
|
||||
c-0.899414 2.10449 -2.91504 3.51562 -5.2002 3.64062l-11.6035 0.631836c-3.64258 0.199219 -7.21777 -1.01855 -9.97363 -3.41211c-5.625 -4.88574 -14.6201 -14.3281 -17.3828 -26.6348c-4.11816 -18.3496 2.24707 -40.8193 18.7256 -63.2881
|
||||
c16.4766 -22.4697 47.1855 -58.4209 101.486 -73.7754c17.4971 -4.94727 31.2627 -1.6123 41.8828 5.18164c8.41113 5.37988 14.21 14.0166 16.2988 23.7793zM0 448h512v-512h-512v512zM256.23 13.6045c98.6016 0 178.818 80.2188 178.818 178.819
|
||||
c0 98.6016 -80.2168 178.819 -178.818 178.819c-98.6006 0 -178.819 -80.2178 -178.819 -178.819c0 -32.0234 8.49121 -63.1963 24.6191 -90.5938l-25.0791 -89.0732l91.8584 23.6455c26.6133 -14.9336 56.6982 -22.7979 87.4209 -22.7979z" />
|
||||
<glyph glyph-name="uniF12B" unicode=""
|
||||
d="M0 448h512v-512h-512v512zM344.689 16.2539c52.4102 0 94.8965 42.4863 94.8975 94.8965c0 17.4541 -4.7334 33.7949 -12.9561 47.8457c1.98828 10.2207 3.04199 20.7754 3.04199 31.5781c0 90.7988 -73.6074 164.406 -164.406 164.406
|
||||
c-10.8018 0 -21.3564 -1.05469 -31.5771 -3.04297c-14.0508 8.22168 -30.3916 12.9561 -47.8477 12.9561c-52.4092 0 -94.8955 -42.4863 -94.8955 -94.8965c0 -17.4541 4.73242 -33.7949 12.9561 -47.8457c-1.98926 -10.2207 -3.04297 -20.7754 -3.04297 -31.5771
|
||||
c0 -90.7988 73.6074 -164.406 164.406 -164.406c10.8027 0 21.3574 1.05371 31.5771 3.04199c14.0508 -8.22266 30.3916 -12.9561 47.8467 -12.9561zM277.938 215.852c60.667 -11.7959 83.1367 -33.7041 83.1367 -67.9697s-34.2656 -70.2168 -92.6865 -70.2168
|
||||
c-58.4199 0 -87.6309 21.9072 -96.6182 49.4326s10.6729 35.3896 16.8516 35.9512c6.17969 0.561523 19.2871 -0.935547 23.0312 -12.3584c3.89355 -11.8711 16.8525 -35.3887 44.9395 -38.1982c28.0859 -2.80859 46.624 10.1113 52.2412 23.5938
|
||||
c5.61719 13.4814 -4.49414 32.0186 -47.748 38.1973c-43.2529 6.17969 -88.1924 25.2783 -88.1924 68.5322c0 43.2529 49.4326 60.667 96.6191 60.667c47.1855 0 71.1074 -26.6494 76.3955 -37.0742c6.55371 -12.9199 4.30664 -34.4473 -11.2344 -38.1982
|
||||
c-16.29 -3.93164 -24.7168 5.05566 -36.5127 26.9629c-12.1992 22.6553 -55.6123 16.8525 -70.2168 3.93262c-14.6055 -12.9199 -10.6729 -31.457 49.9941 -43.2539z" />
|
||||
<glyph glyph-name="uniF132" unicode=""
|
||||
d="M0 448h512v-512h-158.592v197.773h66.3428l10.6387 80.7373h-76.9814v56.1211c0 15.6689 12.7031 28.3721 28.3721 28.3721h49.8623v72.6016h-69.6836c-49.3125 0 -89.2881 -39.9756 -89.2881 -89.2881v-67.8057h-66.6553v-80.7363h66.6553v-197.775h-272.671v512z" />
|
||||
<glyph glyph-name="uniF131" unicode=""
|
||||
d="M0 448h512v-512h-512v512zM298.473 170.461c1.08789 7.13086 1.65625 14.6182 1.65723 22.4805c0 7.92578 -0.649414 15.5762 -1.93262 22.8848h-106.877v-45.3652h60.8125c-6.72363 -29.7891 -30.0322 -44.667 -60.8125 -44.667
|
||||
c-36.7236 0 -66.4971 30.4062 -66.4971 67.1475c0 36.708 29.7734 68.0244 66.4971 68.0244c17.4443 0 32.4697 -5.89648 43.4492 -16.958l32.4199 32.4199c-19.2471 18.6943 -45.6904 29.4639 -75.8691 29.4639c-62.3877 0 -112.967 -50.5791 -112.967 -112.951
|
||||
c0 -62.3877 50.5791 -112.968 112.967 -112.968c55.5166 0 98.3975 32.9727 107.152 90.4883zM434.131 184.526v28.1328h-39.583v39.584h-28.1162v-39.584h-39.583v-28.1328h39.583v-39.5664h28.1162v39.5664h39.583z" />
|
||||
<glyph glyph-name="uniF115" unicode=""
|
||||
d="M69.6182 -23.373v198.262l189.016 158.376l178.044 -158.376v-194.965s0.644531 -14.25 -13.5479 -14.25h-126.333l0.227539 105.413s1.23145 17.4326 -18.7783 17.4326h-53.5498c-16.9209 0 -15.1025 -17.4326 -15.1025 -17.4326l-0.189453 -105.754
|
||||
s-115.152 -0.151367 -129.061 -0.151367c-11.1797 0 -10.7256 11.4453 -10.7256 11.4453zM0 189.632l260.207 229.187l251.793 -228.088s-15.1777 -29.2197 -55.6904 0l-196.103 175.846l-209.158 -176.944c-34.999 -29.5801 -51.0488 0 -51.0488 0zM451.553 366.993
|
||||
v-103.783l-50.2334 42.6162l-0.208008 61.167h50.4414z" />
|
||||
<glyph glyph-name="uniF12F" unicode=""
|
||||
d="M270.642 299.606c22.1553 0 42.209 -8.97656 56.7236 -23.4912c14.5264 -14.5273 23.5029 -34.5811 23.5029 -56.7354c0 -44.3096 -35.917 -80.2275 -80.2266 -80.2275h-45.085v-21.6719c0 -8.89746 -3.60645 -16.9414 -9.4375 -22.7725
|
||||
c-5.83008 -5.81934 -13.8857 -9.42578 -22.7725 -9.42578c-17.7842 0 -32.21 14.4141 -32.21 32.1982v93.9902c0 48.6797 39.457 88.1357 88.125 88.1357h21.3799zM259.52 190.102c15.9756 0 29.0078 12.8643 29.2773 28.7832
|
||||
c0.269531 16.3691 -13.6836 29.7725 -30.0527 29.7725h-2.12305c-18.459 0 -33.4121 -14.9531 -33.4121 -33.4121v-25.1436h36.3105zM0 448h512v-512h-512v512zM408.413 208.47c6.31348 80.7002 -59.084 145.592 -140.041 145.59h-18.5479
|
||||
c-80.9912 0 -146.658 -62.1504 -146.658 -143.152v-93.4277c0 -49.7246 40.4561 -87.541 90.1807 -87.541c36.8613 0 76.7109 21.9639 83.7324 59.4316c70.1045 2.66309 125.975 50.4668 131.334 119.1z" />
|
||||
<glyph glyph-name="uniF125" unicode=""
|
||||
d="M490.667 234.667c12.7998 0 21.333 -8.5332 21.333 -21.334v-42.666c0 -12.8008 -8.5332 -21.334 -21.333 -21.334h-181.334c-6.39941 0 -10.666 -4.2666 -10.666 -10.666v-181.334c0 -12.7998 -8.5332 -21.333 -21.334 -21.333h-42.666
|
||||
c-12.8008 0 -21.334 8.5332 -21.334 21.333v181.334c0 6.39941 -4.2666 10.666 -10.666 10.666h-181.334c-12.7998 0 -21.333 8.5332 -21.333 21.334v42.666c0 12.8008 8.5332 21.334 21.333 21.334h181.334c6.39941 0 10.666 4.2666 10.666 10.666v181.334
|
||||
c0 12.7998 8.5332 21.333 21.334 21.333h42.666c12.8008 0 21.334 -8.5332 21.334 -21.333v-181.334c0 -6.39941 4.2666 -10.666 10.666 -10.666h181.334z" />
|
||||
<glyph glyph-name="uniF129" unicode=""
|
||||
d="M164.579 228.181v182.857h182.856v-182.857h-182.856zM192.004 -27.0381v128.008h127.992v-128.008h-127.992zM0 -27.0381v128.008h128.007v-128.008h-128.007zM68.5693 160.017v-41.1592h-9.14648v50.291h192.004v41.1592h9.14648v-41.1592h191.989v-50.291h-9.11719
|
||||
v41.1592h-182.872v-41.1592h-9.14648v41.1592h-182.857zM383.993 -27.0381v128.008h128.007v-128.008h-128.007z" />
|
||||
<glyph glyph-name="uniF101" unicode=""
|
||||
d="M5.64453 383.271v30.7344c0 6.96387 5.76367 12.1953 12.7275 12.1953h97.9453v9.19141c0 6.96387 5.64453 12.6084 12.6084 12.6084s12.6084 -5.64453 12.6084 -12.6084v-9.19141h196.129v9.19141c0 6.96387 5.64453 12.6084 12.6084 12.6084
|
||||
s12.6084 -5.64453 12.6084 -12.6084v-9.19141h98.4434c6.96387 0 12.2295 -5.23145 12.2295 -12.1953v-30.7344c0 -6.96387 -5.64355 -12.6084 -12.6084 -12.6084c-6.96387 0 -12.6084 5.64453 -12.6084 12.6084v17.7129h-85.4561v-8.35938
|
||||
c0 -6.96387 -5.64453 -12.6084 -12.6084 -12.6084s-12.6084 5.64453 -12.6084 12.6084v8.35938h-196.129v-8.35938c0 -6.96387 -5.64453 -12.6084 -12.6084 -12.6084s-12.6084 5.64453 -12.6084 12.6084v8.35938h-85.4561v-17.7129
|
||||
c0 -6.96387 -5.64453 -12.6084 -12.6084 -12.6084s-12.6084 5.64453 -12.6084 12.6084zM506.355 49.7891c0 -62.7461 -51.0479 -113.789 -113.794 -113.789c-62.7471 0 -113.794 51.0566 -113.794 113.803c0 48.7451 30.8115 90.4502 73.9785 106.627
|
||||
c-1.63672 2.12793 -2.61133 4.83008 -2.61133 7.72168c0 6.96387 5.64355 12.6846 12.6084 12.6846h59.6367c6.96387 0 12.6084 -5.71973 12.6084 -12.6846c0 -2.8916 -0.973633 -5.63184 -2.61133 -7.75977c10.4863 -3.92871 20.2451 -9.36328 29.0088 -16.04
|
||||
l6.22754 6.22656c4.92383 4.9248 12.9082 4.92188 17.8311 0c4.92383 -4.92383 4.92285 -12.9062 0 -17.8301l-5.79395 -5.79297c16.6592 -19.7979 26.7051 -45.3271 26.7051 -73.166zM481.139 49.7842c0 48.8418 -39.7354 88.5791 -88.5771 88.5791
|
||||
s-88.5781 -39.7354 -88.5781 -88.5791c0 -48.8418 39.7363 -88.5771 88.5781 -88.5771c48.8418 0.000976562 88.5771 39.7354 88.5771 88.5771zM409.622 80.9336c4.92383 4.9248 12.9727 4.96484 17.8994 0.0410156c4.92285 -4.92383 4.99023 -12.8672 0.0664062 -17.792
|
||||
l-26.1084 -26.0293c-1.22266 -1.22266 -2.63477 -1.98438 -4.14258 -2.59961c-1.34766 -0.551758 -2.8125 -0.612305 -4.34766 -0.612305h-0.0273438c-0.132812 0 -0.264648 -0.00585938 -0.399414 -0.00585938c-0.133789 0 -0.267578 0.00585938 -0.400391 0.00585938
|
||||
h-0.0263672c-1.50879 0 -2.95898 0.0488281 -4.28809 0.583984c-0.00683594 0.00292969 -0.0214844 -0.310547 -0.0273438 -0.307617c-0.00195312 0.000976562 -0.0205078 0.000976562 -0.0234375 0.00195312c-1.52246 0.614258 -2.98242 1.54004 -4.2168 2.77441
|
||||
c-1.20508 1.20508 -2.17969 2.5918 -2.79492 4.07422c-0.620117 1.49023 -1.09375 3.125 -1.09375 4.84082v49.9434c0 6.96387 5.64453 12.6084 12.6084 12.6084s12.6084 -5.64453 12.6084 -12.6084v-19.502zM275.329 123.601
|
||||
c0 -6.96387 -5.64453 -12.6084 -12.6084 -12.6084h-10.5137v-92.6543c0 -6.96387 -5.52148 -12.5605 -12.4854 -12.5605c-0.423828 0 -0.719727 0.0703125 -1.13281 0.109375c-0.413086 -0.0410156 -0.833984 0.0351562 -1.25684 0.0351562h-218.96
|
||||
c-6.96387 0 -12.7275 5.45215 -12.7275 12.415v317.072v0.00292969c0 6.96387 5.76367 12.3359 12.7275 12.3359h442.951c6.96387 0 12.2295 -5.37207 12.2295 -12.3359v-136.714c0 -6.96387 -5.64355 -12.6084 -12.6084 -12.6084
|
||||
c-6.96387 0 -12.6074 5.64453 -12.6074 12.6084v18.7646h-85.457v-1.07812c0 -6.96387 -5.64453 -12.6074 -12.6084 -12.6074s-12.6084 5.64355 -12.6084 12.6074v1.07812h-85.4561v-81.2539h10.5137c6.96387 0 12.6084 -5.64453 12.6084 -12.6084zM116.317 110.992
|
||||
h-85.4561v-79.8525h85.4561v79.8525zM116.317 217.463h-85.4561v-81.2539h85.4561v81.2539zM226.99 110.992h-85.4561v-79.8525h85.4561v79.8525zM226.99 217.463h-85.4561v-81.2539h85.4561v81.2539zM252.207 294.979v-52.3008h85.4561v52.3008
|
||||
c0 6.96387 5.64453 12.6084 12.6084 12.6084s12.6084 -5.64453 12.6084 -12.6084v-52.3008h85.4561v79.8535h-417.475v-79.8535h85.4561v52.3008c0 6.96387 5.64453 12.6084 12.6084 12.6084s12.6084 -5.64453 12.6084 -12.6084v-52.3008h85.4561v52.3008
|
||||
c0 6.96387 5.64453 12.6084 12.6084 12.6084s12.6084 -5.64453 12.6084 -12.6084z" />
|
||||
<glyph glyph-name="uniF123" unicode=""
|
||||
d="M256 448c141.784 0 256 -114.216 256 -256s-114.216 -256 -256 -256s-256 114.216 -256 256s114.216 256 256 256zM256 14.7695c98.4619 0 177.23 78.7686 177.23 177.23s-78.7686 177.23 -177.23 177.23s-177.23 -78.7686 -177.23 -177.23
|
||||
s78.7686 -177.23 177.23 -177.23zM346.585 207.754c3.93848 -1.96973 7.87695 -9.84668 7.87695 -15.7539s-1.96973 -11.8154 -7.87695 -15.7539l-118.154 -78.7695c-3.93848 -1.96875 -7.87695 -3.93848 -11.8154 -3.93848c-11.8154 0 -19.6924 7.87695 -19.6924 19.6924
|
||||
v157.539c0 11.8154 7.87695 19.6924 19.6924 19.6924c5.9082 0 7.87695 -1.96973 11.8154 -3.93848z" />
|
||||
<glyph glyph-name="uniF11F" unicode=""
|
||||
d="M497.933 17.9326c18.7539 -18.748 18.7539 -49.1533 -0.000976562 -67.8721c-18.7129 -18.749 -49.1182 -18.749 -67.8721 0l-117.47 117.47c27.2197 17.5029 50.3809 40.6533 67.8828 67.8721zM383.999 256c0 -106.029 -85.9668 -191.996 -191.998 -191.996
|
||||
c-106.029 0 -192 85.9668 -192 191.996s85.9707 192 192 192c106.031 0 191.998 -85.9707 191.998 -192zM192.001 112.005c79.4043 0 144.002 64.5879 144.002 143.994s-64.5977 143.999 -144.002 143.999c-79.4062 0 -143.999 -64.5928 -143.999 -143.999
|
||||
s64.5928 -143.994 143.999 -143.994zM80.0029 256c0 61.748 50.25 111.998 111.997 111.998v-31.999c-44.1094 0 -80.001 -35.8887 -80.001 -79.999h-31.9961z" />
|
||||
<glyph glyph-name="uniF124" unicode=""
|
||||
d="M347.978 448h102.81h27.0791v-241.556v-107.355v-21.4863h-313.855v-141.603h-129.877v512h64.9385h64.9385h183.967zM347.978 206.444v112.708h-183.967v-112.708h183.967z" />
|
||||
<glyph glyph-name="uniF126" unicode=""
|
||||
d="M252.583 447.978c141.356 1.88672 257.503 -111.204 259.395 -252.532c1.88086 -141.368 -111.204 -257.52 -252.55 -259.423c-141.367 -1.88086 -257.508 111.215 -259.4 252.532c-1.88086 141.379 111.183 257.531 252.556 259.423zM251.826 36.1738
|
||||
c21.5537 0 37.0312 14.7705 37.6543 35.9121c0.628906 22.0664 -14.5479 37.9443 -36.9258 38.6064l-1.2627 0.0224609c-21.0537 0 -36.7754 -15.3047 -37.3818 -36.3857c-0.617188 -21.4482 14.7314 -37.4873 36.502 -38.1328zM343.401 217.929
|
||||
c9.83984 13.4785 14.8262 28.3096 14.8262 44.0986c0 28.2266 -10.1621 49.8643 -30.1973 64.3115c-19.7725 14.2578 -44.8887 21.4873 -74.6406 21.4873c-22.7285 0 -42.2061 -5.10938 -57.8613 -15.1875c-24.915 -15.8271 -38.3613 -42.9521 -39.9473 -80.623
|
||||
l-0.111328 -2.65527h61.501v2.54395c0 10.2285 3.0332 20.2402 9.0332 29.7734c5.83203 9.27148 15.582 13.791 29.8232 13.791c14.3584 0 24.2871 -3.72852 29.5127 -11.0918c5.4375 -7.62988 8.18652 -16.2002 8.18652 -25.4668
|
||||
c0 -6.67773 -2.77148 -13.4727 -9.03223 -22.1045c-2.67676 -3.90723 -6.27246 -7.56348 -10.5352 -10.7744c-1.26367 -0.8125 -31.0205 -19.9736 -44.5107 -35.8125c-8.59863 -10.084 -9.11035 -22.2881 -9.83887 -43.0352l-0.172852 -5.04785h59.6484l0.0214844 2.50977
|
||||
c0.133789 9.88379 0.884766 11.1699 2.41602 16.0283c1.94238 6.17188 7.11719 12.4434 15.6934 19.1104l15.6221 10.7852c14.1855 11.0527 25.4443 20.085 30.5635 27.3594z" />
|
||||
<glyph glyph-name="uniF111" unicode=""
|
||||
d="M331.102 448c1.17383 0 2.2207 -0.777344 2.5332 -1.90918c0.327148 -1.13086 -0.137695 -2.3418 -1.13184 -2.97168l-34.9043 -21.9434c-0.412109 -0.270508 -0.90918 -0.407227 -1.40625 -0.407227h-40.5205c15.3457 -12.6855 47.2568 -39.0771 47.2568 -90.1455
|
||||
c0 -50.7939 -29.8018 -74.2764 -56.0977 -94.9883l-0.862305 -0.873047c-8.26953 -8.22754 -17.6396 -17.5547 -17.6396 -31.6836c0 -14.3721 9.37012 -22.1299 16.8945 -28.3633l24.3496 -18.9414c28.8662 -24.3076 56.0605 -47.2031 56.0498 -93.582
|
||||
c0 -62.7021 -60.2051 -126.181 -175.267 -126.181c-98.9541 0 -143.244 47.9697 -143.244 95.4961c0 11.9453 3.70117 53.1367 51.3281 81.4521c40.3242 24.7832 95.5273 28.5693 125.187 30.6006l2.06738 0.142578l-1.16309 1.49609
|
||||
c-9.24805 11.8184 -18.8135 24.0488 -18.8135 43.8779c0 10.1836 2.7334 16.709 5.62012 23.625l0.994141 2.41699c-6.74707 -0.629883 -14.3926 -1.33789 -21.2988 -1.33789c-71.8232 0 -110.582 54.0244 -110.582 104.86c0 32.9961 15.9111 66.4248 42.5713 89.4268
|
||||
c33.8994 28.0039 71.5645 39.9326 125.975 39.9326h122.104zM183.029 -36.0117c60.4229 0 97.9658 27.6328 97.9707 72.124c0 34.9258 -23.5938 53.2637 -72.6689 88.1885c-5.30859 0.666992 -8.65039 0.666992 -15.2969 0.666992
|
||||
c-0.391602 0 -39.6318 -0.507812 -70.0312 -10.7393c-37.96 -13.7539 -57.2344 -36.8877 -57.2344 -68.7246c0 -48.7588 47.124 -81.5156 117.261 -81.5156zM182.368 232.493c15.9053 0 34.1113 7.50391 45.3057 18.6768c16.6455 16.7354 16.6455 40.832 16.6455 48.7529
|
||||
c0 50.207 -29.8857 122.85 -83.9316 122.85c-17.6504 0 -35.9678 -8.64551 -46.665 -22.0293c-9.85547 -12.209 -14.6465 -28.3789 -14.6465 -49.4453c0 -41.4287 24.4297 -118.805 83.292 -118.805zM502.239 208.873c1.46387 0 2.64355 -1.17871 2.64355 -2.64355v-28.0361
|
||||
c0 -1.46387 -1.18457 -2.64355 -2.64355 -2.64355h-64.3418v-64.5361c0 -1.45508 -1.18945 -2.64453 -2.64355 -2.64453h-27.6758c-1.45996 0 -2.64355 1.18945 -2.64355 2.64453v64.5254h-64.0186c-1.45996 0 -2.64453 1.19043 -2.64453 2.64453v28.0459
|
||||
c0 1.45898 1.18457 2.64355 2.64453 2.64355h64.0186v64.1133c0 1.45996 1.18359 2.64453 2.64355 2.64453h27.6758c1.4541 0 2.64355 -1.18457 2.64355 -2.64453v-64.1133h64.3418z" />
|
||||
</font>
|
||||
</defs></svg>
|
After Width: | Height: | Size: 73 KiB |
BIN
public/assets/fonts/flaticon/Flaticon.ttf
Normal file
BIN
public/assets/fonts/flaticon/Flaticon.woff
Normal file
153
public/assets/fonts/flaticon/_flaticon.scss
Normal file
@ -0,0 +1,153 @@
|
||||
/*
|
||||
Flaticon icon font: Flaticon
|
||||
Creation date: 20/12/2016 09:38
|
||||
*/
|
||||
|
||||
@font-face {
|
||||
font-family: "Flaticon";
|
||||
src: url("./Flaticon.eot");
|
||||
src: url("./Flaticon.eot?#iefix") format("embedded-opentype"),
|
||||
url("./Flaticon.woff") format("woff"),
|
||||
url("./Flaticon.ttf") format("truetype"),
|
||||
url("./Flaticon.svg#Flaticon") format("svg");
|
||||
font-weight: normal;
|
||||
font-style: normal;
|
||||
}
|
||||
|
||||
@media screen and (-webkit-min-device-pixel-ratio:0) {
|
||||
@font-face {
|
||||
font-family: "Flaticon";
|
||||
src: url("./Flaticon.svg#Flaticon") format("svg");
|
||||
}
|
||||
}
|
||||
|
||||
.fi:before{
|
||||
display: inline-block;
|
||||
font-family: "Flaticon";
|
||||
font-style: normal;
|
||||
font-weight: normal;
|
||||
font-variant: normal;
|
||||
line-height: 1;
|
||||
text-decoration: inherit;
|
||||
text-rendering: optimizeLegibility;
|
||||
text-transform: none;
|
||||
-moz-osx-font-smoothing: grayscale;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
font-smoothing: antialiased;
|
||||
}
|
||||
|
||||
.flaticon-add:before { content: "\f100"; }
|
||||
.flaticon-agenda:before { content: "\f101"; }
|
||||
.flaticon-answer:before { content: "\f102"; }
|
||||
.flaticon-calendar:before { content: "\f103"; }
|
||||
.flaticon-cancel:before { content: "\f104"; }
|
||||
.flaticon-cancel-1:before { content: "\f105"; }
|
||||
.flaticon-cancel-2:before { content: "\f106"; }
|
||||
.flaticon-check-mark:before { content: "\f107"; }
|
||||
.flaticon-checked:before { content: "\f108"; }
|
||||
.flaticon-checked-1:before { content: "\f109"; }
|
||||
.flaticon-clock:before { content: "\f10a"; }
|
||||
.flaticon-communication:before { content: "\f10b"; }
|
||||
.flaticon-conversation-questions:before { content: "\f10c"; }
|
||||
.flaticon-direction:before { content: "\f10d"; }
|
||||
.flaticon-download:before { content: "\f10e"; }
|
||||
.flaticon-fax-machine:before { content: "\f10f"; }
|
||||
.flaticon-google-plus:before { content: "\f110"; }
|
||||
.flaticon-google-plus-logo:before { content: "\f111"; }
|
||||
.flaticon-help-button-speech-bubble-with-question-mark:before { content: "\f112"; }
|
||||
.flaticon-home:before { content: "\f113"; }
|
||||
.flaticon-home-1:before { content: "\f114"; }
|
||||
.flaticon-home-page:before { content: "\f115"; }
|
||||
.flaticon-icon-1:before { content: "\f116"; }
|
||||
.flaticon-icon-1789:before { content: "\f117"; }
|
||||
.flaticon-interface:before { content: "\f118"; }
|
||||
.flaticon-interface-1:before { content: "\f119"; }
|
||||
.flaticon-interface-2:before { content: "\f11a"; }
|
||||
.flaticon-internet:before { content: "\f11b"; }
|
||||
.flaticon-line:before { content: "\f11c"; }
|
||||
.flaticon-link-symbol:before { content: "\f11d"; }
|
||||
.flaticon-location:before { content: "\f11e"; }
|
||||
.flaticon-magnifier:before { content: "\f11f"; }
|
||||
.flaticon-paperclip:before { content: "\f120"; }
|
||||
.flaticon-people:before { content: "\f121"; }
|
||||
.flaticon-picture:before { content: "\f122"; }
|
||||
.flaticon-play-button:before { content: "\f123"; }
|
||||
.flaticon-plurk-logo:before { content: "\f124"; }
|
||||
.flaticon-plus:before { content: "\f125"; }
|
||||
.flaticon-question-mark:before { content: "\f126"; }
|
||||
.flaticon-settings:before { content: "\f127"; }
|
||||
.flaticon-shopping-cart:before { content: "\f128"; }
|
||||
.flaticon-sitemap:before { content: "\f129"; }
|
||||
.flaticon-social-media:before { content: "\f12a"; }
|
||||
.flaticon-social-media-1:before { content: "\f12b"; }
|
||||
.flaticon-social-media-10:before { content: "\f12c"; }
|
||||
.flaticon-social-media-2:before { content: "\f12d"; }
|
||||
.flaticon-social-media-3:before { content: "\f12e"; }
|
||||
.flaticon-social-media-4:before { content: "\f12f"; }
|
||||
.flaticon-social-media-5:before { content: "\f130"; }
|
||||
.flaticon-social-media-6:before { content: "\f131"; }
|
||||
.flaticon-social-media-7:before { content: "\f132"; }
|
||||
.flaticon-social-media-8:before { content: "\f133"; }
|
||||
.flaticon-social-media-9:before { content: "\f134"; }
|
||||
.flaticon-tablet:before { content: "\f135"; }
|
||||
.flaticon-telephone:before { content: "\f136"; }
|
||||
.flaticon-youtube:before { content: "\f137"; }
|
||||
.flaticon-youtube-symbol:before { content: "\f138"; }
|
||||
|
||||
$font-Flaticon-add: "\f100";
|
||||
$font-Flaticon-agenda: "\f101";
|
||||
$font-Flaticon-answer: "\f102";
|
||||
$font-Flaticon-calendar: "\f103";
|
||||
$font-Flaticon-cancel: "\f104";
|
||||
$font-Flaticon-cancel-1: "\f105";
|
||||
$font-Flaticon-cancel-2: "\f106";
|
||||
$font-Flaticon-check-mark: "\f107";
|
||||
$font-Flaticon-checked: "\f108";
|
||||
$font-Flaticon-checked-1: "\f109";
|
||||
$font-Flaticon-clock: "\f10a";
|
||||
$font-Flaticon-communication: "\f10b";
|
||||
$font-Flaticon-conversation-questions: "\f10c";
|
||||
$font-Flaticon-direction: "\f10d";
|
||||
$font-Flaticon-download: "\f10e";
|
||||
$font-Flaticon-fax-machine: "\f10f";
|
||||
$font-Flaticon-google-plus: "\f110";
|
||||
$font-Flaticon-google-plus-logo: "\f111";
|
||||
$font-Flaticon-help-button-speech-bubble-with-question-mark: "\f112";
|
||||
$font-Flaticon-home: "\f113";
|
||||
$font-Flaticon-home-1: "\f114";
|
||||
$font-Flaticon-home-page: "\f115";
|
||||
$font-Flaticon-icon-1: "\f116";
|
||||
$font-Flaticon-icon-1789: "\f117";
|
||||
$font-Flaticon-interface: "\f118";
|
||||
$font-Flaticon-interface-1: "\f119";
|
||||
$font-Flaticon-interface-2: "\f11a";
|
||||
$font-Flaticon-internet: "\f11b";
|
||||
$font-Flaticon-line: "\f11c";
|
||||
$font-Flaticon-link-symbol: "\f11d";
|
||||
$font-Flaticon-location: "\f11e";
|
||||
$font-Flaticon-magnifier: "\f11f";
|
||||
$font-Flaticon-paperclip: "\f120";
|
||||
$font-Flaticon-people: "\f121";
|
||||
$font-Flaticon-picture: "\f122";
|
||||
$font-Flaticon-play-button: "\f123";
|
||||
$font-Flaticon-plurk-logo: "\f124";
|
||||
$font-Flaticon-plus: "\f125";
|
||||
$font-Flaticon-question-mark: "\f126";
|
||||
$font-Flaticon-settings: "\f127";
|
||||
$font-Flaticon-shopping-cart: "\f128";
|
||||
$font-Flaticon-sitemap: "\f129";
|
||||
$font-Flaticon-social-media: "\f12a";
|
||||
$font-Flaticon-social-media-1: "\f12b";
|
||||
$font-Flaticon-social-media-10: "\f12c";
|
||||
$font-Flaticon-social-media-2: "\f12d";
|
||||
$font-Flaticon-social-media-3: "\f12e";
|
||||
$font-Flaticon-social-media-4: "\f12f";
|
||||
$font-Flaticon-social-media-5: "\f130";
|
||||
$font-Flaticon-social-media-6: "\f131";
|
||||
$font-Flaticon-social-media-7: "\f132";
|
||||
$font-Flaticon-social-media-8: "\f133";
|
||||
$font-Flaticon-social-media-9: "\f134";
|
||||
$font-Flaticon-tablet: "\f135";
|
||||
$font-Flaticon-telephone: "\f136";
|
||||
$font-Flaticon-youtube: "\f137";
|
||||
$font-Flaticon-youtube-symbol: "\f138";
|
87
public/assets/fonts/flaticon/flaticon.css
Normal file
@ -0,0 +1,87 @@
|
||||
/*
|
||||
Flaticon icon font: Flaticon
|
||||
Creation date: 20/12/2016 09:38
|
||||
*/
|
||||
|
||||
@font-face {
|
||||
font-family: "Flaticon";
|
||||
src: url("./Flaticon.eot");
|
||||
src: url("./Flaticon.eot?#iefix") format("embedded-opentype"),
|
||||
url("./Flaticon.woff") format("woff"),
|
||||
url("./Flaticon.ttf") format("truetype"),
|
||||
url("./Flaticon.svg#Flaticon") format("svg");
|
||||
font-weight: normal;
|
||||
font-style: normal;
|
||||
}
|
||||
|
||||
@media screen and (-webkit-min-device-pixel-ratio:0) {
|
||||
@font-face {
|
||||
font-family: "Flaticon";
|
||||
src: url("./Flaticon.svg#Flaticon") format("svg");
|
||||
}
|
||||
}
|
||||
|
||||
[class^="flaticon-"]:before, [class*=" flaticon-"]:before,
|
||||
[class^="flaticon-"]:after, [class*=" flaticon-"]:after {
|
||||
font-family: Flaticon;
|
||||
font-style: normal;
|
||||
margin-right: 6px;
|
||||
}
|
||||
|
||||
.flaticon-add:before { content: "\f100"; }
|
||||
.flaticon-agenda:before { content: "\f101"; }
|
||||
.flaticon-answer:before { content: "\f102"; }
|
||||
.flaticon-calendar:before { content: "\f103"; }
|
||||
.flaticon-cancel:before { content: "\f104"; }
|
||||
.flaticon-cancel-1:before { content: "\f105"; }
|
||||
.flaticon-cancel-2:before { content: "\f106"; }
|
||||
.flaticon-check-mark:before { content: "\f107"; }
|
||||
.flaticon-checked:before { content: "\f108"; }
|
||||
.flaticon-checked-1:before { content: "\f109"; }
|
||||
.flaticon-clock:before { content: "\f10a"; }
|
||||
.flaticon-communication:before { content: "\f10b"; }
|
||||
.flaticon-conversation-questions:before { content: "\f10c"; }
|
||||
.flaticon-direction:before { content: "\f10d"; }
|
||||
.flaticon-download:before { content: "\f10e"; }
|
||||
.flaticon-fax-machine:before { content: "\f10f"; }
|
||||
.flaticon-google-plus:before { content: "\f110"; }
|
||||
.flaticon-google-plus-logo:before { content: "\f111"; }
|
||||
.flaticon-help-button-speech-bubble-with-question-mark:before { content: "\f112"; }
|
||||
.flaticon-home:before { content: "\f113"; }
|
||||
.flaticon-home-1:before { content: "\f114"; }
|
||||
.flaticon-home-page:before { content: "\f115"; }
|
||||
.flaticon-icon-1:before { content: "\f116"; }
|
||||
.flaticon-icon-1789:before { content: "\f117"; }
|
||||
.flaticon-interface:before { content: "\f118"; }
|
||||
.flaticon-interface-1:before { content: "\f119"; }
|
||||
.flaticon-interface-2:before { content: "\f11a"; }
|
||||
.flaticon-internet:before { content: "\f11b"; }
|
||||
.flaticon-line:before { content: "\f11c"; }
|
||||
.flaticon-link-symbol:before { content: "\f11d"; }
|
||||
.flaticon-location:before { content: "\f11e"; }
|
||||
.flaticon-magnifier:before { content: "\f11f"; }
|
||||
.flaticon-paperclip:before { content: "\f120"; }
|
||||
.flaticon-people:before { content: "\f121"; }
|
||||
.flaticon-picture:before { content: "\f122"; }
|
||||
.flaticon-play-button:before { content: "\f123"; }
|
||||
.flaticon-plurk-logo:before { content: "\f124"; }
|
||||
.flaticon-plus:before { content: "\f125"; }
|
||||
.flaticon-question-mark:before { content: "\f126"; }
|
||||
.flaticon-settings:before { content: "\f127"; }
|
||||
.flaticon-shopping-cart:before { content: "\f128"; }
|
||||
.flaticon-sitemap:before { content: "\f129"; }
|
||||
.flaticon-social-media:before { content: "\f12a"; }
|
||||
.flaticon-social-media-1:before { content: "\f12b"; }
|
||||
.flaticon-social-media-10:before { content: "\f12c"; }
|
||||
.flaticon-social-media-2:before { content: "\f12d"; }
|
||||
.flaticon-social-media-3:before { content: "\f12e"; }
|
||||
.flaticon-social-media-4:before { content: "\f12f"; }
|
||||
.flaticon-social-media-5:before { content: "\f130"; }
|
||||
.flaticon-social-media-6:before { content: "\f131"; }
|
||||
.flaticon-social-media-7:before { content: "\f132"; }
|
||||
.flaticon-social-media-8:before { content: "\f133"; }
|
||||
.flaticon-social-media-9:before { content: "\f134"; }
|
||||
.flaticon-tablet:before { content: "\f135"; }
|
||||
.flaticon-telephone:before { content: "\f136"; }
|
||||
.flaticon-youtube:before { content: "\f137"; }
|
||||
.flaticon-youtube-symbol:before { content: "\f138"; }
|
740
public/assets/fonts/flaticon/flaticon.html
Normal file
@ -0,0 +1,740 @@
|
||||
<!DOCTYPE html>
|
||||
<!--
|
||||
Flaticon icon font: Flaticon
|
||||
Creation date: 20/12/2016 09:38
|
||||
-->
|
||||
<html>
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
|
||||
<head>
|
||||
<title>Flaticon WebFont</title>
|
||||
<link href="http://fonts.googleapis.com/css?family=Varela+Round" rel="stylesheet" type="text/css" />
|
||||
<link rel="stylesheet" type="text/css" href="flaticon.css">
|
||||
<meta charset="UTF-8">
|
||||
<style>
|
||||
html, body, div, span, applet, object, iframe,
|
||||
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
|
||||
a, abbr, acronym, address, big, cite, code,
|
||||
del, dfn, em, img, ins, kbd, q, s, samp,
|
||||
small, strike, strong, sub, sup, tt, var,
|
||||
b, u, i, center,
|
||||
dl, dt, dd, ol, ul, li,
|
||||
fieldset, form, label, legend,
|
||||
table, caption, tbody, tfoot, thead, tr, th, td,
|
||||
article, aside, canvas, details, embed,
|
||||
figure, figcaption, footer, header, hgroup,
|
||||
menu, nav, output, ruby, section, summary,
|
||||
time, mark, audio, video {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
border: 0;
|
||||
font-size: 100%;
|
||||
font: inherit;
|
||||
vertical-align: baseline;
|
||||
}
|
||||
/* HTML5 display-role reset for older browsers */
|
||||
article, aside, details, figcaption, figure,
|
||||
footer, header, hgroup, menu, nav, section {
|
||||
display: block;
|
||||
}
|
||||
body {
|
||||
line-height: 1;
|
||||
}
|
||||
ol, ul {
|
||||
list-style: none;
|
||||
}
|
||||
blockquote, q {
|
||||
quotes: none;
|
||||
}
|
||||
blockquote:before, blockquote:after,
|
||||
q:before, q:after {
|
||||
content: '';
|
||||
content: none;
|
||||
}
|
||||
table {
|
||||
border-collapse: collapse;
|
||||
border-spacing: 0;
|
||||
}
|
||||
body {
|
||||
font-family: 'Varela Round', Helvetica, Arial, sans-serif;
|
||||
font-size: 16px;
|
||||
color: #222;
|
||||
}
|
||||
a {
|
||||
color: #333;
|
||||
border-bottom: 1px solid #a9fd00;
|
||||
font-weight: bold;
|
||||
text-decoration: none;
|
||||
}
|
||||
* {
|
||||
-moz-box-sizing: border-box;
|
||||
-webkit-box-sizing: border-box;
|
||||
box-sizing: border-box;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
[class^="flaticon-"]:before, [class*=" flaticon-"]:before, [class^="flaticon-"]:after, [class*=" flaticon-"]:after {
|
||||
font-family: Flaticon;
|
||||
font-size: 30px;
|
||||
font-style: normal;
|
||||
margin-left: 20px;
|
||||
color: #333;
|
||||
}
|
||||
.wrapper {
|
||||
max-width: 600px;
|
||||
margin: auto;
|
||||
padding: 0 1em;
|
||||
}
|
||||
.title {
|
||||
font-size: 1.25em;
|
||||
text-align: center;
|
||||
margin-bottom: 1em;
|
||||
text-transform: uppercase;
|
||||
}
|
||||
header {
|
||||
text-align: center;
|
||||
background-color: #222;
|
||||
color: #fff;
|
||||
padding: 1em;
|
||||
}
|
||||
header .logo {
|
||||
width: 210px;
|
||||
height: 38px;
|
||||
display: inline-block;
|
||||
vertical-align: middle;
|
||||
margin-right: 1em;
|
||||
border: none;
|
||||
}
|
||||
header strong {
|
||||
font-size: 1.95em;
|
||||
font-weight: bold;
|
||||
vertical-align: middle;
|
||||
margin-top: 5px;
|
||||
display: inline-block;
|
||||
}
|
||||
.demo {
|
||||
margin: 2em auto;
|
||||
line-height: 1.25em;
|
||||
}
|
||||
.demo ul li {
|
||||
margin-bottom: 1em;
|
||||
}
|
||||
.demo ul li .num {
|
||||
color: #222;
|
||||
border-radius: 20px;
|
||||
display: inline-block;
|
||||
width: 26px;
|
||||
padding: 3px;
|
||||
height: 26px;
|
||||
text-align: center;
|
||||
margin-right: 0.5em;
|
||||
border: 1px solid #222;
|
||||
}
|
||||
.demo ul li code {
|
||||
background-color: #222;
|
||||
border-radius: 4px;
|
||||
padding: 0.25em 0.5em;
|
||||
display: inline-block;
|
||||
color: #fff;
|
||||
font-family: Consolas,Monaco,Lucida Console,Liberation Mono,DejaVu Sans Mono,Bitstream Vera Sans Mono,Courier New, monospace;
|
||||
font-weight: lighter;
|
||||
margin-top: 1em;
|
||||
font-size: 0.8em;
|
||||
word-break: break-all;
|
||||
}
|
||||
.demo ul li code.big {
|
||||
padding: 1em;
|
||||
font-size: 0.9em;
|
||||
}
|
||||
.demo ul li code .red {
|
||||
color: #EF3159;
|
||||
}
|
||||
.demo ul li code .green {
|
||||
color: #ACFF65;
|
||||
}
|
||||
.demo ul li code .yellow {
|
||||
color: #FFFF99;
|
||||
}
|
||||
.demo ul li code .blue {
|
||||
color: #99D3FF;
|
||||
}
|
||||
.demo ul li code .purple {
|
||||
color: #A295FF;
|
||||
}
|
||||
.demo ul li code .dots {
|
||||
margin-top: 0.5em;
|
||||
display: block;
|
||||
}
|
||||
#glyphs {
|
||||
border-bottom: 1px solid #ccc;
|
||||
padding: 2em 0;
|
||||
text-align: center;
|
||||
}
|
||||
.glyph {
|
||||
display: inline-block;
|
||||
width: 9em;
|
||||
margin: 1em;
|
||||
text-align: center;
|
||||
vertical-align: top;
|
||||
background: #FFF;
|
||||
}
|
||||
.glyph .glyph-icon {
|
||||
padding: 10px;
|
||||
display: block;
|
||||
font-family:"Flaticon";
|
||||
font-size: 64px;
|
||||
line-height: 1;
|
||||
}
|
||||
.glyph .glyph-icon:before {
|
||||
font-size: 64px;
|
||||
color: #222;
|
||||
margin-left: 0;
|
||||
}
|
||||
.class-name {
|
||||
font-size: 0.65em;
|
||||
background-color: #222;
|
||||
color: #fff;
|
||||
border-radius: 4px 4px 0 0;
|
||||
padding: 0.5em;
|
||||
color: #FFFF99;
|
||||
font-family: Consolas,Monaco,Lucida Console,Liberation Mono,DejaVu Sans Mono,Bitstream Vera Sans Mono,Courier New, monospace;
|
||||
}
|
||||
.author-name {
|
||||
font-size: 0.6em;
|
||||
background-color: #fcfcfd;
|
||||
border: 1px solid #DEDEE4;
|
||||
border-top: 0;
|
||||
border-radius: 0 0 4px 4px;
|
||||
padding: 0.5em;
|
||||
}
|
||||
.class-name:last-child {
|
||||
font-size: 10px;
|
||||
color:#888;
|
||||
}
|
||||
.class-name:last-child a {
|
||||
font-size: 10px;
|
||||
color:#555;
|
||||
}
|
||||
.class-name:last-child a:hover {
|
||||
color:#a9fd00;
|
||||
}
|
||||
.glyph > input {
|
||||
display: block;
|
||||
width: 100px;
|
||||
margin: 5px auto;
|
||||
text-align: center;
|
||||
font-size: 12px;
|
||||
cursor: text;
|
||||
}
|
||||
.glyph > input.icon-input {
|
||||
font-family:"Flaticon";
|
||||
font-size: 16px;
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
.attribution .title {
|
||||
margin-top: 2em;
|
||||
}
|
||||
.attribution textarea {
|
||||
background-color: #fcfcfd;
|
||||
padding: 1em;
|
||||
border: none;
|
||||
box-shadow: none;
|
||||
border: 1px solid #DEDEE4;
|
||||
border-radius: 4px;
|
||||
resize: none;
|
||||
width: 100%;
|
||||
height: 150px;
|
||||
font-size: 0.8em;
|
||||
font-family: Consolas,Monaco,Lucida Console,Liberation Mono,DejaVu Sans Mono,Bitstream Vera Sans Mono,Courier New, monospace;
|
||||
-webkit-appearance: none;
|
||||
}
|
||||
.iconsuse {
|
||||
margin: 2em auto;
|
||||
text-align: center;
|
||||
max-width: 1200px;
|
||||
}
|
||||
.iconsuse:after {
|
||||
content: '';
|
||||
display: table;
|
||||
clear: both;
|
||||
}
|
||||
.iconsuse .image {
|
||||
float: left;
|
||||
width: 25%;
|
||||
padding: 0 1em;
|
||||
}
|
||||
.iconsuse .image p {
|
||||
margin-bottom: 1em;
|
||||
}
|
||||
.iconsuse .image span {
|
||||
display: block;
|
||||
font-size: 0.65em;
|
||||
background-color: #222;
|
||||
color: #fff;
|
||||
border-radius: 4px;
|
||||
padding: 0.5em;
|
||||
color: #FFFF99;
|
||||
margin-top: 1em;
|
||||
font-family: Consolas,Monaco,Lucida Console,Liberation Mono,DejaVu Sans Mono,Bitstream Vera Sans Mono,Courier New, monospace;
|
||||
}
|
||||
#footer {
|
||||
text-align: center;
|
||||
background-color: #4C5B5C;
|
||||
color: #7c9192;
|
||||
padding: 1em;
|
||||
}
|
||||
#footer a {
|
||||
border: none;
|
||||
color: #a9fd00;
|
||||
font-weight: normal;
|
||||
}
|
||||
@media (max-width: 960px) {
|
||||
.iconsuse .image {
|
||||
width: 50%;
|
||||
}
|
||||
}
|
||||
@media (max-width: 560px) {
|
||||
.iconsuse .image {
|
||||
width: 100%;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
|
||||
<body class="characters-off">
|
||||
|
||||
<header>
|
||||
<a href="http://www.flaticon.com" target="_blank" class="logo">
|
||||
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:a="http://ns.adobe.com/AdobeSVGViewerExtensions/3.0/" viewBox="0 0 560.875 102.036" enable-background="new 0 0 560.875 102.036" xml:space="preserve">
|
||||
<defs>
|
||||
</defs>
|
||||
<g>
|
||||
<g class="letters">
|
||||
<path fill="#ffffff" d="M141.596,29.675c0-3.777,2.985-6.767,6.764-6.767h34.438c3.426,0,6.15,2.728,6.15,6.15
|
||||
c0,3.43-2.724,6.149-6.15,6.149h-27.674v13.091h23.719c3.429,0,6.151,2.724,6.151,6.15c0,3.43-2.723,6.149-6.151,6.149h-23.719
|
||||
v17.574c0,3.773-2.986,6.761-6.764,6.761c-3.779,0-6.764-2.989-6.764-6.761V29.675z"></path>
|
||||
<path fill="#ffffff" d="M193.844,29.149c0-3.781,2.985-6.767,6.764-6.767c3.776,0,6.763,2.985,6.763,6.767v42.957h25.039
|
||||
c3.426,0,6.149,2.726,6.149,6.153c0,3.425-2.723,6.15-6.149,6.15h-31.802c-3.779,0-6.764-2.986-6.764-6.768V29.149z"></path>
|
||||
<path fill="#ffffff" d="M241.891,75.71l21.438-48.407c1.492-3.341,4.215-5.357,7.906-5.357h0.792
|
||||
c3.686,0,6.323,2.017,7.815,5.357l21.439,48.407c0.436,0.967,0.701,1.845,0.701,2.723c0,3.602-2.809,6.501-6.414,6.501
|
||||
c-3.161,0-5.269-1.845-6.499-4.655l-4.132-9.661h-27.059l-4.301,10.102c-1.144,2.631-3.426,4.214-6.237,4.214
|
||||
c-3.517,0-6.24-2.81-6.24-6.325C241.1,77.64,241.451,76.677,241.891,75.71z M279.932,58.666l-8.521-20.297l-8.526,20.297H279.932
|
||||
z"></path>
|
||||
<path fill="#ffffff" d="M314.864,35.387H301.86c-3.429,0-6.239-2.813-6.239-6.238c0-3.429,2.811-6.24,6.239-6.24h39.533
|
||||
c3.426,0,6.237,2.811,6.237,6.24c0,3.425-2.811,6.238-6.237,6.238h-13.001v42.785c0,3.773-2.99,6.761-6.764,6.761
|
||||
c-3.779,0-6.764-2.989-6.764-6.761V35.387z"></path>
|
||||
<path fill="#A9FD00" d="M352.615,29.149c0-3.781,2.985-6.767,6.767-6.767c3.774,0,6.761,2.985,6.761,6.767v49.024
|
||||
c0,3.773-2.987,6.761-6.761,6.761c-3.781,0-6.767-2.989-6.767-6.761V29.149z"></path>
|
||||
<path fill="#A9FD00" d="M374.132,53.836v-0.179c0-17.481,13.178-31.801,32.065-31.801c9.22,0,15.459,2.458,20.557,6.238
|
||||
c1.402,1.054,2.637,2.985,2.637,5.357c0,3.692-2.985,6.59-6.681,6.59c-1.845,0-3.071-0.702-4.044-1.319
|
||||
c-3.776-2.813-7.729-4.393-12.562-4.393c-10.364,0-17.831,8.611-17.831,19.154v0.173c0,10.542,7.291,19.329,17.831,19.329
|
||||
c5.715,0,9.492-1.756,13.359-4.834c1.049-0.874,2.458-1.491,4.039-1.491c3.429,0,6.325,2.813,6.325,6.236
|
||||
c0,2.106-1.056,3.78-2.282,4.834c-5.539,4.834-12.036,7.733-21.878,7.733C387.572,85.464,374.132,71.493,374.132,53.836z"></path>
|
||||
<path fill="#A9FD00" d="M433.009,53.836v-0.179c0-17.481,13.79-31.801,32.766-31.801c18.981,0,32.592,14.143,32.592,31.628v0.173
|
||||
c0,17.483-13.785,31.807-32.769,31.807C446.625,85.464,433.009,71.32,433.009,53.836z M484.224,53.836v-0.179
|
||||
c0-10.539-7.725-19.326-18.626-19.326c-10.893,0-18.449,8.611-18.449,19.154v0.173c0,10.542,7.73,19.329,18.626,19.329
|
||||
C476.676,72.986,484.224,64.378,484.224,53.836z"></path>
|
||||
<path fill="#A9FD00" d="M506.233,29.321c0-3.774,2.99-6.763,6.767-6.763h1.401c3.252,0,5.183,1.583,7.029,3.953l26.093,34.265
|
||||
V29.059c0-3.692,2.99-6.677,6.681-6.677c3.683,0,6.671,2.985,6.671,6.677v48.934c0,3.78-2.987,6.765-6.764,6.765h-0.436
|
||||
c-3.257,0-5.188-1.581-7.034-3.953l-27.056-35.492v32.944c0,3.687-2.985,6.676-6.678,6.676c-3.683,0-6.673-2.989-6.673-6.676
|
||||
V29.321z"></path>
|
||||
</g>
|
||||
<g class="insignia">
|
||||
<path fill="#ffffff" d="M48.372,56.137h12.517l11.156-18.537H37.186L25.688,18.539h57.825L94.668,0H9.271
|
||||
C5.925,0,2.842,1.801,1.198,4.716c-1.644,2.907-1.593,6.482,0.134,9.343l50.38,83.501c1.678,2.781,4.689,4.476,7.938,4.476
|
||||
c3.246,0,6.257-1.695,7.935-4.476l2.898-4.804L48.372,56.137z"></path>
|
||||
<g class="i">
|
||||
<path fill="#A9FD00" d="M93.575,18.539h0.031v0.004l21.652,0.004l2.705-4.488c1.727-2.861,1.778-6.436,0.133-9.343
|
||||
C116.454,1.801,113.371,0,110.026,0h-5.294L93.575,18.539z"></path>
|
||||
<polygon fill="#A9FD00" points="88.291,27.356 64.725,66.486 75.519,84.404 109.942,27.356"></polygon>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
</a>
|
||||
<strong>Font Demo</strong>
|
||||
</header>
|
||||
|
||||
|
||||
<section class="demo wrapper">
|
||||
|
||||
<p class="title">Instructions</p>
|
||||
|
||||
<ul>
|
||||
<li>
|
||||
<span class="num">1</span>Copy the "Fonts" files and CSS files to your website CSS folder.
|
||||
</li>
|
||||
<li>
|
||||
<span class="num">2</span>Add the CSS link to your website source code on header.
|
||||
<code class="big">
|
||||
<<span class="red">head</span>>
|
||||
<br/><span class="dots">...</span>
|
||||
<br/><<span class="red">link</span> <span class="green">rel</span>=<span class="yellow">"stylesheet"</span> <span class="green">type</span>=<span class="yellow">"text/css"</span> <span class="green">href</span>=<span class="yellow">"your_website_domain/css_root/flaticon.css"</span>>
|
||||
<br/><span class="dots">...</span>
|
||||
<br/></<span class="red">head</span>>
|
||||
</code>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<p>
|
||||
<span class="num">3</span>Use the icon class on <code>"<span class="blue">display</span>:<span class="purple"> inline</span>"</code> elements:
|
||||
<br />
|
||||
Use example: <code><<span class="red">i</span> <span class="green">class</span>=<span class="yellow">"flaticon-airplane49"</span>></<span class="red">i</span>></code> or <code><<span class="red">span</span> <span class="green">class</span>=<span class="yellow">"flaticon-airplane49"</span>></<span class="red">span</span>></code>
|
||||
</li>
|
||||
</ul>
|
||||
|
||||
</section>
|
||||
|
||||
|
||||
|
||||
|
||||
<section id="glyphs">
|
||||
|
||||
|
||||
<div class="glyph"><div class="glyph-icon flaticon-add"></div>
|
||||
<div class="class-name">.flaticon-add</div>
|
||||
<div class="author-name">Author: <a data-file="add" href="http://www.flaticon.com/authors/eleonor-wang">Eleonor Wang</a> </div>
|
||||
</div>
|
||||
|
||||
<div class="glyph"><div class="glyph-icon flaticon-agenda"></div>
|
||||
<div class="class-name">.flaticon-agenda</div>
|
||||
<div class="author-name">Author: <a data-file="agenda" href="http://www.freepik.com">Freepik</a> </div>
|
||||
</div>
|
||||
|
||||
<div class="glyph"><div class="glyph-icon flaticon-answer"></div>
|
||||
<div class="class-name">.flaticon-answer</div>
|
||||
<div class="author-name">Author: <a data-file="answer" href="http://www.freepik.com">Freepik</a> </div>
|
||||
</div>
|
||||
|
||||
<div class="glyph"><div class="glyph-icon flaticon-calendar"></div>
|
||||
<div class="class-name">.flaticon-calendar</div>
|
||||
<div class="author-name">Author: <a data-file="calendar" href="http://www.freepik.com">Freepik</a> </div>
|
||||
</div>
|
||||
|
||||
<div class="glyph"><div class="glyph-icon flaticon-cancel"></div>
|
||||
<div class="class-name">.flaticon-cancel</div>
|
||||
<div class="author-name">Author: <a data-file="cancel" href="http://www.flaticon.com/authors/eleonor-wang">Eleonor Wang</a> </div>
|
||||
</div>
|
||||
|
||||
<div class="glyph"><div class="glyph-icon flaticon-cancel-1"></div>
|
||||
<div class="class-name">.flaticon-cancel-1</div>
|
||||
<div class="author-name">Author: <a data-file="cancel-1" href="http://www.flaticon.com/authors/eleonor-wang">Eleonor Wang</a> </div>
|
||||
</div>
|
||||
|
||||
<div class="glyph"><div class="glyph-icon flaticon-cancel-2"></div>
|
||||
<div class="class-name">.flaticon-cancel-2</div>
|
||||
<div class="author-name">Author: <a data-file="cancel-2" href="http://www.flaticon.com/authors/eleonor-wang">Eleonor Wang</a> </div>
|
||||
</div>
|
||||
|
||||
<div class="glyph"><div class="glyph-icon flaticon-check-mark"></div>
|
||||
<div class="class-name">.flaticon-check-mark</div>
|
||||
<div class="author-name">Author: <a data-file="check-mark" href="http://www.flaticon.com/authors/gregor-cresnar">Gregor Cresnar</a> </div>
|
||||
</div>
|
||||
|
||||
<div class="glyph"><div class="glyph-icon flaticon-checked"></div>
|
||||
<div class="class-name">.flaticon-checked</div>
|
||||
<div class="author-name">Author: <a data-file="checked" href="http://www.flaticon.com/authors/eleonor-wang">Eleonor Wang</a> </div>
|
||||
</div>
|
||||
|
||||
<div class="glyph"><div class="glyph-icon flaticon-checked-1"></div>
|
||||
<div class="class-name">.flaticon-checked-1</div>
|
||||
<div class="author-name">Author: <a data-file="checked-1" href="http://www.flaticon.com/authors/eleonor-wang">Eleonor Wang</a> </div>
|
||||
</div>
|
||||
|
||||
<div class="glyph"><div class="glyph-icon flaticon-clock"></div>
|
||||
<div class="class-name">.flaticon-clock</div>
|
||||
<div class="author-name">Author: <a data-file="clock" href="http://www.freepik.com">Freepik</a> </div>
|
||||
</div>
|
||||
|
||||
<div class="glyph"><div class="glyph-icon flaticon-communication"></div>
|
||||
<div class="class-name">.flaticon-communication</div>
|
||||
<div class="author-name">Author: <a data-file="communication" href="http://www.freepik.com">Freepik</a> </div>
|
||||
</div>
|
||||
|
||||
<div class="glyph"><div class="glyph-icon flaticon-conversation-questions"></div>
|
||||
<div class="class-name">.flaticon-conversation-questions</div>
|
||||
<div class="author-name">Author: <a data-file="conversation-questions" href="http://www.freepik.com">Freepik</a> </div>
|
||||
</div>
|
||||
|
||||
<div class="glyph"><div class="glyph-icon flaticon-direction"></div>
|
||||
<div class="class-name">.flaticon-direction</div>
|
||||
<div class="author-name">Author: <a data-file="direction" href="http://www.flaticon.com/authors/dave-gandy">Dave Gandy</a> </div>
|
||||
</div>
|
||||
|
||||
<div class="glyph"><div class="glyph-icon flaticon-download"></div>
|
||||
<div class="class-name">.flaticon-download</div>
|
||||
<div class="author-name">Author: <a data-file="download" href="http://www.flaticon.com/authors/eleonor-wang">Eleonor Wang</a> </div>
|
||||
</div>
|
||||
|
||||
<div class="glyph"><div class="glyph-icon flaticon-fax-machine"></div>
|
||||
<div class="class-name">.flaticon-fax-machine</div>
|
||||
<div class="author-name">Author: <a data-file="fax-machine" href="http://www.freepik.com">Freepik</a> </div>
|
||||
</div>
|
||||
|
||||
<div class="glyph"><div class="glyph-icon flaticon-google-plus"></div>
|
||||
<div class="class-name">.flaticon-google-plus</div>
|
||||
<div class="author-name">Author: <a data-file="google-plus" href="http://www.flaticon.com/authors/hanan">Hanan</a> </div>
|
||||
</div>
|
||||
|
||||
<div class="glyph"><div class="glyph-icon flaticon-google-plus-logo"></div>
|
||||
<div class="class-name">.flaticon-google-plus-logo</div>
|
||||
<div class="author-name">Author: <a data-file="google-plus-logo" href="http://www.freepik.com">Freepik</a> </div>
|
||||
</div>
|
||||
|
||||
<div class="glyph"><div class="glyph-icon flaticon-help-button-speech-bubble-with-question-mark"></div>
|
||||
<div class="class-name">.flaticon-help-button-speech-bubble-with-question-mark</div>
|
||||
<div class="author-name">Author: <a data-file="help-button-speech-bubble-with-question-mark" href="http://www.flaticon.com/authors/google">Google</a> </div>
|
||||
</div>
|
||||
|
||||
<div class="glyph"><div class="glyph-icon flaticon-home"></div>
|
||||
<div class="class-name">.flaticon-home</div>
|
||||
<div class="author-name">Author: <a data-file="home" href="http://www.flaticon.com/authors/eleonor-wang">Eleonor Wang</a> </div>
|
||||
</div>
|
||||
|
||||
<div class="glyph"><div class="glyph-icon flaticon-home-1"></div>
|
||||
<div class="class-name">.flaticon-home-1</div>
|
||||
<div class="author-name">Author: <a data-file="home-1" href="http://www.freepik.com">Freepik</a> </div>
|
||||
</div>
|
||||
|
||||
<div class="glyph"><div class="glyph-icon flaticon-home-page"></div>
|
||||
<div class="class-name">.flaticon-home-page</div>
|
||||
<div class="author-name">Author: <a data-file="home-page" href="http://www.freepik.com">Freepik</a> </div>
|
||||
</div>
|
||||
|
||||
<div class="glyph"><div class="glyph-icon flaticon-icon-1"></div>
|
||||
<div class="class-name">.flaticon-icon-1</div>
|
||||
<div class="author-name">Author: <a data-file="icon-1" href="http://www.freepik.com">Freepik</a> </div>
|
||||
</div>
|
||||
|
||||
<div class="glyph"><div class="glyph-icon flaticon-icon-1789"></div>
|
||||
<div class="class-name">.flaticon-icon-1789</div>
|
||||
<div class="author-name">Author: <a data-file="icon-1789" href="http://www.freepik.com">Freepik</a> </div>
|
||||
</div>
|
||||
|
||||
<div class="glyph"><div class="glyph-icon flaticon-interface"></div>
|
||||
<div class="class-name">.flaticon-interface</div>
|
||||
<div class="author-name">Author: <a data-file="interface" href="http://www.freepik.com">Freepik</a> </div>
|
||||
</div>
|
||||
|
||||
<div class="glyph"><div class="glyph-icon flaticon-interface-1"></div>
|
||||
<div class="class-name">.flaticon-interface-1</div>
|
||||
<div class="author-name">Author: <a data-file="interface-1" href="http://www.freepik.com">Freepik</a> </div>
|
||||
</div>
|
||||
|
||||
<div class="glyph"><div class="glyph-icon flaticon-interface-2"></div>
|
||||
<div class="class-name">.flaticon-interface-2</div>
|
||||
<div class="author-name">Author: <a data-file="interface-2" href="http://www.freepik.com">Freepik</a> </div>
|
||||
</div>
|
||||
|
||||
<div class="glyph"><div class="glyph-icon flaticon-internet"></div>
|
||||
<div class="class-name">.flaticon-internet</div>
|
||||
<div class="author-name">Author: <a data-file="internet" href="http://www.flaticon.com/authors/gregor-cresnar">Gregor Cresnar</a> </div>
|
||||
</div>
|
||||
|
||||
<div class="glyph"><div class="glyph-icon flaticon-line"></div>
|
||||
<div class="class-name">.flaticon-line</div>
|
||||
<div class="author-name">Author: <a data-file="line" href="http://www.freepik.com">Freepik</a> </div>
|
||||
</div>
|
||||
|
||||
<div class="glyph"><div class="glyph-icon flaticon-link-symbol"></div>
|
||||
<div class="class-name">.flaticon-link-symbol</div>
|
||||
<div class="author-name">Author: <a data-file="link-symbol" href="http://www.flaticon.com/authors/simpleicon">SimpleIcon</a> </div>
|
||||
</div>
|
||||
|
||||
<div class="glyph"><div class="glyph-icon flaticon-location"></div>
|
||||
<div class="class-name">.flaticon-location</div>
|
||||
<div class="author-name">Author: <a data-file="location" href="http://www.flaticon.com/authors/simpleicon">SimpleIcon</a> </div>
|
||||
</div>
|
||||
|
||||
<div class="glyph"><div class="glyph-icon flaticon-magnifier"></div>
|
||||
<div class="class-name">.flaticon-magnifier</div>
|
||||
<div class="author-name">Author: <a data-file="magnifier" href="http://www.flaticon.com/authors/simpleicon">SimpleIcon</a> </div>
|
||||
</div>
|
||||
|
||||
<div class="glyph"><div class="glyph-icon flaticon-paperclip"></div>
|
||||
<div class="class-name">.flaticon-paperclip</div>
|
||||
<div class="author-name">Author: <a data-file="paperclip" href="http://www.flaticon.com/authors/eleonor-wang">Eleonor Wang</a> </div>
|
||||
</div>
|
||||
|
||||
<div class="glyph"><div class="glyph-icon flaticon-people"></div>
|
||||
<div class="class-name">.flaticon-people</div>
|
||||
<div class="author-name">Author: <a data-file="people" href="http://www.freepik.com">Freepik</a> </div>
|
||||
</div>
|
||||
|
||||
<div class="glyph"><div class="glyph-icon flaticon-picture"></div>
|
||||
<div class="class-name">.flaticon-picture</div>
|
||||
<div class="author-name">Author: <a data-file="picture" href="http://www.freepik.com">Freepik</a> </div>
|
||||
</div>
|
||||
|
||||
<div class="glyph"><div class="glyph-icon flaticon-play-button"></div>
|
||||
<div class="class-name">.flaticon-play-button</div>
|
||||
<div class="author-name">Author: <a data-file="play-button" href="http://www.flaticon.com/authors/eleonor-wang">Eleonor Wang</a> </div>
|
||||
</div>
|
||||
|
||||
<div class="glyph"><div class="glyph-icon flaticon-plurk-logo"></div>
|
||||
<div class="class-name">.flaticon-plurk-logo</div>
|
||||
<div class="author-name">Author: <a data-file="plurk-logo" href="http://www.flaticon.com/authors/simpleicon">SimpleIcon</a> </div>
|
||||
</div>
|
||||
|
||||
<div class="glyph"><div class="glyph-icon flaticon-plus"></div>
|
||||
<div class="class-name">.flaticon-plus</div>
|
||||
<div class="author-name">Author: <a data-file="plus" href="http://www.flaticon.com/authors/eleonor-wang">Eleonor Wang</a> </div>
|
||||
</div>
|
||||
|
||||
<div class="glyph"><div class="glyph-icon flaticon-question-mark"></div>
|
||||
<div class="class-name">.flaticon-question-mark</div>
|
||||
<div class="author-name">Author: <a data-file="question-mark" href="http://www.flaticon.com/authors/daniel-bruce">Daniel Bruce</a> </div>
|
||||
</div>
|
||||
|
||||
<div class="glyph"><div class="glyph-icon flaticon-settings"></div>
|
||||
<div class="class-name">.flaticon-settings</div>
|
||||
<div class="author-name">Author: <a data-file="settings" href="http://www.flaticon.com/authors/eleonor-wang">Eleonor Wang</a> </div>
|
||||
</div>
|
||||
|
||||
<div class="glyph"><div class="glyph-icon flaticon-shopping-cart"></div>
|
||||
<div class="class-name">.flaticon-shopping-cart</div>
|
||||
<div class="author-name">Author: <a data-file="shopping-cart" href="http://www.flaticon.com/authors/google">Google</a> </div>
|
||||
</div>
|
||||
|
||||
<div class="glyph"><div class="glyph-icon flaticon-sitemap"></div>
|
||||
<div class="class-name">.flaticon-sitemap</div>
|
||||
<div class="author-name">Author: <a data-file="sitemap" href="http://www.freepik.com">Freepik</a> </div>
|
||||
</div>
|
||||
|
||||
<div class="glyph"><div class="glyph-icon flaticon-social-media"></div>
|
||||
<div class="class-name">.flaticon-social-media</div>
|
||||
<div class="author-name">Author: <a data-file="social-media" href="http://www.freepik.com">Freepik</a> </div>
|
||||
</div>
|
||||
|
||||
<div class="glyph"><div class="glyph-icon flaticon-social-media-1"></div>
|
||||
<div class="class-name">.flaticon-social-media-1</div>
|
||||
<div class="author-name">Author: <a data-file="social-media-1" href="http://www.freepik.com">Freepik</a> </div>
|
||||
</div>
|
||||
|
||||
<div class="glyph"><div class="glyph-icon flaticon-social-media-10"></div>
|
||||
<div class="class-name">.flaticon-social-media-10</div>
|
||||
<div class="author-name">Author: <a data-file="social-media-10" href="http://www.freepik.com">Freepik</a> </div>
|
||||
</div>
|
||||
|
||||
<div class="glyph"><div class="glyph-icon flaticon-social-media-2"></div>
|
||||
<div class="class-name">.flaticon-social-media-2</div>
|
||||
<div class="author-name">Author: <a data-file="social-media-2" href="http://www.freepik.com">Freepik</a> </div>
|
||||
</div>
|
||||
|
||||
<div class="glyph"><div class="glyph-icon flaticon-social-media-3"></div>
|
||||
<div class="class-name">.flaticon-social-media-3</div>
|
||||
<div class="author-name">Author: <a data-file="social-media-3" href="http://www.freepik.com">Freepik</a> </div>
|
||||
</div>
|
||||
|
||||
<div class="glyph"><div class="glyph-icon flaticon-social-media-4"></div>
|
||||
<div class="class-name">.flaticon-social-media-4</div>
|
||||
<div class="author-name">Author: <a data-file="social-media-4" href="http://www.freepik.com">Freepik</a> </div>
|
||||
</div>
|
||||
|
||||
<div class="glyph"><div class="glyph-icon flaticon-social-media-5"></div>
|
||||
<div class="class-name">.flaticon-social-media-5</div>
|
||||
<div class="author-name">Author: <a data-file="social-media-5" href="http://www.freepik.com">Freepik</a> </div>
|
||||
</div>
|
||||
|
||||
<div class="glyph"><div class="glyph-icon flaticon-social-media-6"></div>
|
||||
<div class="class-name">.flaticon-social-media-6</div>
|
||||
<div class="author-name">Author: <a data-file="social-media-6" href="http://www.freepik.com">Freepik</a> </div>
|
||||
</div>
|
||||
|
||||
<div class="glyph"><div class="glyph-icon flaticon-social-media-7"></div>
|
||||
<div class="class-name">.flaticon-social-media-7</div>
|
||||
<div class="author-name">Author: <a data-file="social-media-7" href="http://www.freepik.com">Freepik</a> </div>
|
||||
</div>
|
||||
|
||||
<div class="glyph"><div class="glyph-icon flaticon-social-media-8"></div>
|
||||
<div class="class-name">.flaticon-social-media-8</div>
|
||||
<div class="author-name">Author: <a data-file="social-media-8" href="http://www.freepik.com">Freepik</a> </div>
|
||||
</div>
|
||||
|
||||
<div class="glyph"><div class="glyph-icon flaticon-social-media-9"></div>
|
||||
<div class="class-name">.flaticon-social-media-9</div>
|
||||
<div class="author-name">Author: <a data-file="social-media-9" href="http://www.freepik.com">Freepik</a> </div>
|
||||
</div>
|
||||
|
||||
<div class="glyph"><div class="glyph-icon flaticon-tablet"></div>
|
||||
<div class="class-name">.flaticon-tablet</div>
|
||||
<div class="author-name">Author: <a data-file="tablet" href="http://www.freepik.com">Freepik</a> </div>
|
||||
</div>
|
||||
|
||||
<div class="glyph"><div class="glyph-icon flaticon-telephone"></div>
|
||||
<div class="class-name">.flaticon-telephone</div>
|
||||
<div class="author-name">Author: <a data-file="telephone" href="http://www.flaticon.com/authors/gregor-cresnar">Gregor Cresnar</a> </div>
|
||||
</div>
|
||||
|
||||
<div class="glyph"><div class="glyph-icon flaticon-youtube"></div>
|
||||
<div class="class-name">.flaticon-youtube</div>
|
||||
<div class="author-name">Author: <a data-file="youtube" href="http://www.freepik.com">Freepik</a> </div>
|
||||
</div>
|
||||
|
||||
<div class="glyph"><div class="glyph-icon flaticon-youtube-symbol"></div>
|
||||
<div class="class-name">.flaticon-youtube-symbol</div>
|
||||
<div class="author-name">Author: <a data-file="youtube-symbol" href="http://www.freepik.com">Freepik</a> </div>
|
||||
</div>
|
||||
|
||||
|
||||
</section>
|
||||
|
||||
|
||||
|
||||
<section class="attribution wrapper" style="text-align:center;">
|
||||
|
||||
<div class="title">License and attribution:</div><div class="attrDiv">Font generated by <a href="http://www.flaticon.com">flaticon.com</a>. <div><p>Under <a href="http://creativecommons.org/licenses/by/3.0/">CC</a>: <a data-file="icon-1" href="http://www.freepik.com">Freepik</a>, <a data-file="internet" href="http://www.flaticon.com/authors/gregor-cresnar">Gregor Cresnar</a>, <a data-file="google-plus" href="http://www.flaticon.com/authors/hanan">Hanan</a>, <a data-file="settings" href="http://www.flaticon.com/authors/eleonor-wang">Eleonor Wang</a>, <a data-file="plurk-logo" href="http://www.flaticon.com/authors/simpleicon">SimpleIcon</a>, <a data-file="direction" href="http://www.flaticon.com/authors/dave-gandy">Dave Gandy</a>, <a data-file="question-mark" href="http://www.flaticon.com/authors/daniel-bruce">Daniel Bruce</a>, <a data-file="shopping-cart" href="http://www.flaticon.com/authors/google">Google</a></p> </div>
|
||||
</div>
|
||||
<div class="title">Copy the Attribution License:</div>
|
||||
|
||||
<textarea onclick="this.focus();this.select();">Font generated by <a href="http://www.flaticon.com">flaticon.com</a>. <p>Under <a href="http://creativecommons.org/licenses/by/3.0/">CC</a>: <a data-file="icon-1" href="http://www.freepik.com">Freepik</a>, <a data-file="internet" href="http://www.flaticon.com/authors/gregor-cresnar">Gregor Cresnar</a>, <a data-file="google-plus" href="http://www.flaticon.com/authors/hanan">Hanan</a>, <a data-file="settings" href="http://www.flaticon.com/authors/eleonor-wang">Eleonor Wang</a>, <a data-file="plurk-logo" href="http://www.flaticon.com/authors/simpleicon">SimpleIcon</a>, <a data-file="direction" href="http://www.flaticon.com/authors/dave-gandy">Dave Gandy</a>, <a data-file="question-mark" href="http://www.flaticon.com/authors/daniel-bruce">Daniel Bruce</a>, <a data-file="shopping-cart" href="http://www.flaticon.com/authors/google">Google</a></p>
|
||||
</textarea>
|
||||
|
||||
</section>
|
||||
|
||||
<section class="iconsuse">
|
||||
|
||||
<div class="title">Examples:</div>
|
||||
|
||||
<div class="image">
|
||||
<p>
|
||||
<i class="glyph-icon flaticon-add"></i>
|
||||
<span><i class="flaticon-add"></i></span>
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<div class="image">
|
||||
<p>
|
||||
<i class="glyph-icon flaticon-agenda"></i>
|
||||
<span><i class="flaticon-agenda"></i></span>
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<div class="image">
|
||||
<p>
|
||||
<i class="glyph-icon flaticon-answer"></i>
|
||||
<span><i class="flaticon-answer"></i></span>
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<div class="image">
|
||||
<p>
|
||||
<i class="glyph-icon flaticon-calendar"></i>
|
||||
<span><i class="flaticon-calendar"></i></span>
|
||||
</p>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
</section>
|
||||
|
||||
<div id="footer">
|
||||
<div>Generated by <a href="http://www.flaticon.com">flaticon.com</a>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
BIN
public/assets/fonts/thin/Thin-Regular.ttf
Normal file
BIN
public/assets/fonts/thin/Thin-Regular.woff
Normal file
129
public/assets/fonts/thin/thin-style.html
Normal file
@ -0,0 +1,129 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="zh-Hant">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<title>thin</title>
|
||||
<link href="thin.css" rel="stylesheet"/>
|
||||
<style>
|
||||
.wrap {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
}
|
||||
.wrap i {
|
||||
font-size: 100px;
|
||||
line-height: 100px;
|
||||
color: #686157;
|
||||
display: block;
|
||||
border: 1px solid #ededed;
|
||||
margin: 20px;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<div class="wrap">
|
||||
<i class="thin thin-icon-volume-on"></i>
|
||||
<i class="thin thin-icon-gift"></i>
|
||||
<i class="thin thin-icon-cup"></i>
|
||||
<i class="thin thin-icon-folder"></i>
|
||||
<i class="thin thin-icon-dublicate"></i>
|
||||
<i class="thin thin-icon-tag"></i>
|
||||
<i class="thin thin-icon-chat"></i>
|
||||
<i class="thin thin-icon-clock"></i>
|
||||
<i class="thin thin-icon-microphone"></i>
|
||||
<i class="thin thin-icon-map-marker"></i>
|
||||
<i class="thin thin-icon-mobile"></i>
|
||||
<i class="thin thin-icon-cloud-charge"></i>
|
||||
<i class="thin thin-icon-resize"></i>
|
||||
<i class="thin thin-icon-cake"></i>
|
||||
<i class="thin thin-icon-case"></i>
|
||||
<i class="thin thin-icon-address"></i>
|
||||
<i class="thin thin-icon-phone-support"></i>
|
||||
<i class="thin thin-icon-fullscreen"></i>
|
||||
<i class="thin thin-icon-db"></i>
|
||||
<i class="thin thin-icon-music"></i>
|
||||
<i class="thin thin-icon-network"></i>
|
||||
<i class="thin thin-icon-db-network"></i>
|
||||
<i class="thin thin-icon-dropbox-upload"></i>
|
||||
<i class="thin thin-icon-phone-call"></i>
|
||||
<i class="thin thin-icon-briefcase-2"></i>
|
||||
<i class="thin thin-icon-card"></i>
|
||||
<i class="thin thin-icon-support"></i>
|
||||
<i class="thin thin-icon-pull"></i>
|
||||
<i class="thin thin-icon-desktop"></i>
|
||||
<i class="thin thin-icon-pass"></i>
|
||||
<i class="thin thin-icon-picture"></i>
|
||||
<i class="thin thin-icon-email"></i>
|
||||
<i class="thin thin-icon-push"></i>
|
||||
<i class="thin thin-icon-house"></i>
|
||||
<i class="thin thin-icon-download"></i>
|
||||
<i class="thin thin-icon-storage"></i>
|
||||
<i class="thin thin-icon-milk"></i>
|
||||
<i class="thin thin-icon-external-right"></i>
|
||||
<i class="thin thin-icon-email-open"></i>
|
||||
<i class="thin thin-icon-planet"></i>
|
||||
<i class="thin thin-icon-pointer"></i>
|
||||
<i class="thin thin-icon-email-search"></i>
|
||||
<i class="thin thin-icon-external-left"></i>
|
||||
<i class="thin thin-icon-shirt"></i>
|
||||
<i class="thin thin-icon-document-edit"></i>
|
||||
<i class="thin thin-icon-document-delete"></i>
|
||||
<i class="thin thin-icon-money"></i>
|
||||
<i class="thin thin-icon-eye"></i>
|
||||
<i class="thin thin-icon-settings"></i>
|
||||
<i class="thin thin-icon-arrow-bottom-right"></i>
|
||||
<i class="thin thin-icon-arrow-right"></i>
|
||||
<i class="thin thin-icon-flag"></i>
|
||||
<i class="thin thin-icon-star"></i>
|
||||
<i class="thin thin-icon-calculator"></i>
|
||||
<i class="thin thin-icon-safe"></i>
|
||||
<i class="thin thin-icon-cart"></i>
|
||||
<i class="thin thin-icon-bullhorn"></i>
|
||||
<i class="thin thin-icon-anchor"></i>
|
||||
<i class="thin thin-icon-globe"></i>
|
||||
<i class="thin thin-icon-statistics"></i>
|
||||
<i class="thin thin-icon-thumb-up"></i>
|
||||
<i class="thin thin-icon-headphones"></i>
|
||||
<i class="thin thin-icon-bell"></i>
|
||||
<i class="thin thin-icon-study"></i>
|
||||
<i class="thin thin-icon-cart-add"></i>
|
||||
<i class="thin thin-icon-cart-delete"></i>
|
||||
<i class="thin thin-icon-satelite"></i>
|
||||
<i class="thin thin-icon-home"></i>
|
||||
<i class="thin thin-icon-time"></i>
|
||||
<i class="thin thin-icon-book"></i>
|
||||
<i class="thin thin-icon-bookmark"></i>
|
||||
<i class="thin thin-icon-key"></i>
|
||||
<i class="thin thin-icon-timer"></i>
|
||||
<i class="thin thin-icon-saturn"></i>
|
||||
<i class="thin thin-icon-notes"></i>
|
||||
<i class="thin thin-icon-ambulance"></i>
|
||||
<i class="thin thin-icon-briefcase"></i>
|
||||
<i class="thin thin-icon-layers"></i>
|
||||
<i class="thin thin-icon-delivery"></i>
|
||||
<i class="thin thin-icon-tint"></i>
|
||||
<i class="thin thin-icon-trash"></i>
|
||||
<i class="thin thin-icon-lightbulb"></i>
|
||||
<i class="thin thin-icon-calendar"></i>
|
||||
<i class="thin thin-icon-chart"></i>
|
||||
<i class="thin thin-icon-documents"></i>
|
||||
<i class="thin thin-icon-checklist"></i>
|
||||
<i class="thin thin-icon-camera-web"></i>
|
||||
<i class="thin thin-icon-camera"></i>
|
||||
<i class="thin thin-icon-lock"></i>
|
||||
<i class="thin thin-icon-umbrella"></i>
|
||||
<i class="thin thin-icon-user"></i>
|
||||
<i class="thin thin-icon-love"></i>
|
||||
<i class="thin thin-icon-hanger"></i>
|
||||
<i class="thin thin-icon-car"></i>
|
||||
<i class="thin thin-icon-cloth"></i>
|
||||
<i class="thin thin-icon-box"></i>
|
||||
<i class="thin thin-icon-attachment"></i>
|
||||
<i class="thin thin-icon-cd"></i>
|
||||
<i class="thin thin-icon-love-broken"></i>
|
||||
<i class="thin thin-icon-volume-off"></i>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
102
public/assets/fonts/thin/thin.css
Normal file
@ -0,0 +1,102 @@
|
||||
@font-face { font-family: "thin regular"; src: url("Thin-Regular.woff?66413286") format("woff"), url("Thin-Regular.ttf?66413286") format("truetype"); font-weight: 400; font-style: normal; }
|
||||
[class^="thin-icon-"]::before, [class*=" thin-icon-"]::before, .thin-ico { font-family: "thin regular"; font-weight: 400; font-style: normal; font-size: inherit; text-transform: none; -webkit-font-smoothing: antialiased; }
|
||||
.thin-icon-volume-on::before { content: ""; }
|
||||
.thin-icon-gift::before { content: ""; }
|
||||
.thin-icon-cup::before { content: ""; }
|
||||
.thin-icon-folder::before { content: ""; }
|
||||
.thin-icon-dublicate::before { content: ""; }
|
||||
.thin-icon-tag::before { content: ""; }
|
||||
.thin-icon-chat::before { content: ""; }
|
||||
.thin-icon-clock::before { content: ""; }
|
||||
.thin-icon-microphone::before { content: ""; }
|
||||
.thin-icon-map-marker::before { content: ""; }
|
||||
.thin-icon-mobile::before { content: ""; }
|
||||
.thin-icon-cloud-charge::before { content: ""; }
|
||||
.thin-icon-resize::before { content: ""; }
|
||||
.thin-icon-cake::before { content: ""; }
|
||||
.thin-icon-case::before { content: ""; }
|
||||
.thin-icon-address::before { content: ""; }
|
||||
.thin-icon-phone-support::before { content: ""; }
|
||||
.thin-icon-fullscreen::before { content: ""; }
|
||||
.thin-icon-db::before { content: ""; }
|
||||
.thin-icon-music::before { content: ""; }
|
||||
.thin-icon-network::before { content: ""; }
|
||||
.thin-icon-db-network::before { content: ""; }
|
||||
.thin-icon-dropbox-upload::before { content: ""; }
|
||||
.thin-icon-phone-call::before { content: ""; }
|
||||
.thin-icon-briefcase-2::before { content: ""; }
|
||||
.thin-icon-card::before { content: ""; }
|
||||
.thin-icon-support::before { content: ""; }
|
||||
.thin-icon-pull::before { content: ""; }
|
||||
.thin-icon-desktop::before { content: ""; }
|
||||
.thin-icon-pass::before { content: ""; }
|
||||
.thin-icon-picture::before { content: ""; }
|
||||
.thin-icon-email::before { content: ""; }
|
||||
.thin-icon-push::before { content: ""; }
|
||||
.thin-icon-house::before { content: ""; }
|
||||
.thin-icon-download::before { content: ""; }
|
||||
.thin-icon-storage::before { content: ""; }
|
||||
.thin-icon-milk::before { content: ""; }
|
||||
.thin-icon-external-right::before { content: ""; }
|
||||
.thin-icon-email-open::before { content: ""; }
|
||||
.thin-icon-planet::before { content: ""; }
|
||||
.thin-icon-pointer::before { content: ""; }
|
||||
.thin-icon-email-search::before { content: ""; }
|
||||
.thin-icon-external-left::before { content: ""; }
|
||||
.thin-icon-shirt::before { content: ""; }
|
||||
.thin-icon-document-edit::before { content: ""; }
|
||||
.thin-icon-document-delete::before { content: ""; }
|
||||
.thin-icon-money::before { content: ""; }
|
||||
.thin-icon-eye::before { content: ""; }
|
||||
.thin-icon-settings::before { content: ""; }
|
||||
.thin-icon-arrow-bottom-right::before { content: ""; }
|
||||
.thin-icon-arrow-right::before { content: ""; }
|
||||
.thin-icon-flag::before { content: ""; }
|
||||
.thin-icon-star::before { content: ""; }
|
||||
.thin-icon-calculator::before { content: ""; }
|
||||
.thin-icon-safe::before { content: ""; }
|
||||
.thin-icon-cart::before { content: ""; }
|
||||
.thin-icon-bullhorn::before { content: ""; }
|
||||
.thin-icon-anchor::before { content: ""; }
|
||||
.thin-icon-globe::before { content: ""; }
|
||||
.thin-icon-statistics::before { content: ""; }
|
||||
.thin-icon-thumb-up::before { content: ""; }
|
||||
.thin-icon-headphones::before { content: ""; }
|
||||
.thin-icon-bell::before { content: ""; }
|
||||
.thin-icon-study::before { content: ""; }
|
||||
.thin-icon-cart-add::before { content: ""; }
|
||||
.thin-icon-cart-delete::before { content: ""; }
|
||||
.thin-icon-satelite::before { content: ""; }
|
||||
.thin-icon-home::before { content: ""; }
|
||||
.thin-icon-time::before { content: ""; }
|
||||
.thin-icon-book::before { content: ""; }
|
||||
.thin-icon-bookmark::before { content: ""; }
|
||||
.thin-icon-key::before { content: ""; }
|
||||
.thin-icon-timer::before { content: ""; }
|
||||
.thin-icon-saturn::before { content: ""; }
|
||||
.thin-icon-notes::before { content: ""; }
|
||||
.thin-icon-ambulance::before { content: ""; }
|
||||
.thin-icon-briefcase::before { content: ""; }
|
||||
.thin-icon-layers::before { content: ""; }
|
||||
.thin-icon-delivery::before { content: ""; }
|
||||
.thin-icon-tint::before { content: ""; }
|
||||
.thin-icon-trash::before { content: ""; }
|
||||
.thin-icon-lightbulb::before { content: ""; }
|
||||
.thin-icon-calendar::before { content: ""; }
|
||||
.thin-icon-chart::before { content: ""; }
|
||||
.thin-icon-documents::before { content: ""; }
|
||||
.thin-icon-checklist::before { content: ""; }
|
||||
.thin-icon-camera-web::before { content: ""; }
|
||||
.thin-icon-camera::before { content: ""; }
|
||||
.thin-icon-lock::before { content: ""; }
|
||||
.thin-icon-umbrella::before { content: ""; }
|
||||
.thin-icon-user::before { content: ""; }
|
||||
.thin-icon-love::before { content: ""; }
|
||||
.thin-icon-hanger::before { content: ""; }
|
||||
.thin-icon-car::before { content: ""; }
|
||||
.thin-icon-cloth::before { content: ""; }
|
||||
.thin-icon-box::before { content: ""; }
|
||||
.thin-icon-attachment::before { content: ""; }
|
||||
.thin-icon-cd::before { content: ""; }
|
||||
.thin-icon-love-broken::before { content: ""; }
|
||||
.thin-icon-volume-off::before { content: ""; }
|
BIN
public/assets/fonts/webfonts.zip
Normal file
BIN
public/assets/fonts/webfonts/fa-brands-400.ttf
Normal file
BIN
public/assets/fonts/webfonts/fa-brands-400.woff2
Normal file
BIN
public/assets/fonts/webfonts/fa-regular-400.ttf
Normal file
BIN
public/assets/fonts/webfonts/fa-regular-400.woff2
Normal file
BIN
public/assets/fonts/webfonts/fa-solid-900.ttf
Normal file
BIN
public/assets/fonts/webfonts/fa-solid-900.woff2
Normal file
BIN
public/assets/fonts/webfonts/fa-v4compatibility.ttf
Normal file
BIN
public/assets/fonts/webfonts/fa-v4compatibility.woff2
Normal file
BIN
public/assets/img/about-a01.jpg
Normal file
After Width: | Height: | Size: 69 KiB |
BIN
public/assets/img/about-a02.jpg
Normal file
After Width: | Height: | Size: 87 KiB |
BIN
public/assets/img/about-bg.jpg
Normal file
After Width: | Height: | Size: 145 KiB |
BIN
public/assets/img/code.jpg
Normal file
After Width: | Height: | Size: 25 KiB |
BIN
public/assets/img/content-bg.jpg
Normal file
After Width: | Height: | Size: 44 KiB |
BIN
public/assets/img/download-icon.png
Normal file
After Width: | Height: | Size: 2.8 KiB |
BIN
public/assets/img/event-item-a01.jpg
Normal file
After Width: | Height: | Size: 98 KiB |
BIN
public/assets/img/event-item-a02.jpg
Normal file
After Width: | Height: | Size: 34 KiB |
BIN
public/assets/img/event-item-a03.jpg
Normal file
After Width: | Height: | Size: 83 KiB |
BIN
public/assets/img/icon-fb.png
Normal file
After Width: | Height: | Size: 1.4 KiB |
BIN
public/assets/img/icon-line.png
Normal file
After Width: | Height: | Size: 1.5 KiB |
BIN
public/assets/img/index/about-bg.jpg
Normal file
After Width: | Height: | Size: 117 KiB |
BIN
public/assets/img/index/about-img.png
Normal file
After Width: | Height: | Size: 280 KiB |
BIN
public/assets/img/index/about-item-a01.jpg
Normal file
After Width: | Height: | Size: 185 KiB |
BIN
public/assets/img/index/about-item-a02.jpg
Normal file
After Width: | Height: | Size: 164 KiB |
BIN
public/assets/img/index/about-item-a03.jpg
Normal file
After Width: | Height: | Size: 164 KiB |
BIN
public/assets/img/index/about-item-a04.jpg
Normal file
After Width: | Height: | Size: 202 KiB |
BIN
public/assets/img/index/carousel-item-text.png
Normal file
After Width: | Height: | Size: 15 KiB |
BIN
public/assets/img/index/carousel-item01.jpg
Normal file
After Width: | Height: | Size: 256 KiB |
BIN
public/assets/img/index/carousel-item02.jpg
Normal file
After Width: | Height: | Size: 501 KiB |
BIN
public/assets/img/index/carousel-item03.jpg
Normal file
After Width: | Height: | Size: 327 KiB |
BIN
public/assets/img/index/carousel-item04.jpg
Normal file
After Width: | Height: | Size: 420 KiB |
BIN
public/assets/img/index/contact-bg.jpg
Normal file
After Width: | Height: | Size: 67 KiB |
BIN
public/assets/img/index/data-bg.jpg
Normal file
After Width: | Height: | Size: 9.3 KiB |
BIN
public/assets/img/index/data-item-a01.jpg
Normal file
After Width: | Height: | Size: 90 KiB |
BIN
public/assets/img/index/data-item-a02.jpg
Normal file
After Width: | Height: | Size: 58 KiB |
BIN
public/assets/img/index/news-a01.jpg
Normal file
After Width: | Height: | Size: 86 KiB |
BIN
public/assets/img/index/news-a02.jpg
Normal file
After Width: | Height: | Size: 99 KiB |
BIN
public/assets/img/index/news-bg.jpg
Normal file
After Width: | Height: | Size: 53 KiB |
BIN
public/assets/img/index/news-item-a01.jpg
Normal file
After Width: | Height: | Size: 30 KiB |
BIN
public/assets/img/index/news-item-a02.jpg
Normal file
After Width: | Height: | Size: 30 KiB |
BIN
public/assets/img/index/news-item-a03.jpg
Normal file
After Width: | Height: | Size: 40 KiB |
BIN
public/assets/img/index/products-item-a01.jpg
Normal file
After Width: | Height: | Size: 124 KiB |
BIN
public/assets/img/index/products-item-a02.jpg
Normal file
After Width: | Height: | Size: 134 KiB |
BIN
public/assets/img/index/products-item-a03.jpg
Normal file
After Width: | Height: | Size: 103 KiB |
BIN
public/assets/img/index/products-item-a04.jpg
Normal file
After Width: | Height: | Size: 121 KiB |
BIN
public/assets/img/index/products_bg.jpg
Normal file
After Width: | Height: | Size: 65 KiB |
BIN
public/assets/img/index/rd-navbar-bg.jpg
Normal file
After Width: | Height: | Size: 185 KiB |
BIN
public/assets/img/index/service-img.jpg
Normal file
After Width: | Height: | Size: 159 KiB |
BIN
public/assets/img/line-pic.jpg
Normal file
After Width: | Height: | Size: 90 KiB |
BIN
public/assets/img/loading.gif
Normal file
After Width: | Height: | Size: 14 KiB |
BIN
public/assets/img/logo.png
Normal file
After Width: | Height: | Size: 6.9 KiB |
BIN
public/assets/img/logo2.png
Normal file
After Width: | Height: | Size: 7.8 KiB |
BIN
public/assets/img/magnifier.png
Normal file
After Width: | Height: | Size: 4.0 KiB |
BIN
public/assets/img/news-item-a01.jpg
Normal file
After Width: | Height: | Size: 78 KiB |
BIN
public/assets/img/news-item-a02.jpg
Normal file
After Width: | Height: | Size: 93 KiB |
BIN
public/assets/img/news-item-a03.jpg
Normal file
After Width: | Height: | Size: 178 KiB |
BIN
public/assets/img/news-item-a04.jpg
Normal file
After Width: | Height: | Size: 73 KiB |
BIN
public/assets/img/page-banner1.jpg
Normal file
After Width: | Height: | Size: 195 KiB |
BIN
public/assets/img/page-banner2.jpg
Normal file
After Width: | Height: | Size: 207 KiB |
BIN
public/assets/img/page-banner3.jpg
Normal file
After Width: | Height: | Size: 252 KiB |
BIN
public/assets/img/page-banner4.jpg
Normal file
After Width: | Height: | Size: 227 KiB |
BIN
public/assets/img/page-banner5.jpg
Normal file
After Width: | Height: | Size: 307 KiB |
BIN
public/assets/img/page-banner6.jpg
Normal file
After Width: | Height: | Size: 162 KiB |
BIN
public/assets/img/page-banner7.jpg
Normal file
After Width: | Height: | Size: 211 KiB |
BIN
public/assets/img/page-banner8.jpg
Normal file
After Width: | Height: | Size: 178 KiB |
BIN
public/assets/img/page-banner9.jpg
Normal file
After Width: | Height: | Size: 235 KiB |
BIN
public/assets/img/products-item-a01.jpg
Normal file
After Width: | Height: | Size: 72 KiB |
BIN
public/assets/img/products-item-a02.jpg
Normal file
After Width: | Height: | Size: 134 KiB |
BIN
public/assets/img/products-item-a03.jpg
Normal file
After Width: | Height: | Size: 24 KiB |
BIN
public/assets/img/sidebar/sidebar_buy.png
Normal file
After Width: | Height: | Size: 1.6 KiB |
BIN
public/assets/img/sidebar/sidebar_cart.png
Normal file
After Width: | Height: | Size: 1.4 KiB |