11;50
702
assets/css/style.css
Normal file
@@ -0,0 +1,702 @@
|
||||
@font-face {
|
||||
font-family: "shopee";
|
||||
src: url(../font/shopee2021-regular.ttf);
|
||||
}
|
||||
:root {
|
||||
--color-active: linear-gradient(90deg, #1fa5f1 0%, #2257bb 100%);
|
||||
}
|
||||
|
||||
::-webkit-scrollbar-track {
|
||||
background-color: #f5f5f5;
|
||||
border-radius: 10px;
|
||||
}
|
||||
|
||||
::-webkit-scrollbar {
|
||||
width: 7px;
|
||||
background-color: #f5f5f5;
|
||||
}
|
||||
|
||||
::-webkit-scrollbar-thumb {
|
||||
background: #2257bb;
|
||||
border-radius: 20px;
|
||||
background-image: linear-gradient(90deg, #1fa5f1 0%, #2257bb 100%);
|
||||
}
|
||||
|
||||
* {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
box-sizing: border-box;
|
||||
font-family: "shopee";
|
||||
}
|
||||
|
||||
body {
|
||||
color: #000;
|
||||
font-family: "shopee";
|
||||
margin: 0 auto;
|
||||
background: #fff;
|
||||
font-weight: normal;
|
||||
font-size: 15px;
|
||||
min-width: 1220px;
|
||||
}
|
||||
|
||||
html {
|
||||
font-size: 100%;
|
||||
font-family: "shopee";
|
||||
}
|
||||
|
||||
img {
|
||||
max-width: 100%;
|
||||
height: auto;
|
||||
}
|
||||
|
||||
a {
|
||||
text-decoration: none;
|
||||
color: var(--text-black);
|
||||
}
|
||||
a:hover {
|
||||
color: #041f3a;
|
||||
}
|
||||
|
||||
.clearfix {
|
||||
content: "";
|
||||
clear: both;
|
||||
}
|
||||
|
||||
ul,
|
||||
li {
|
||||
list-style: none;
|
||||
}
|
||||
|
||||
table {
|
||||
border-collapse: collapse;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.ul,
|
||||
.ol {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
list-style: none;
|
||||
}
|
||||
|
||||
.d-flex {
|
||||
display: flex !important;
|
||||
}
|
||||
|
||||
.d-block {
|
||||
display: block;
|
||||
}
|
||||
|
||||
.flex-wrap {
|
||||
flex-wrap: wrap !important;
|
||||
}
|
||||
|
||||
.text-center {
|
||||
text-align: center !important;
|
||||
}
|
||||
|
||||
.align-items {
|
||||
align-items: center !important;
|
||||
}
|
||||
|
||||
.space-between {
|
||||
justify-content: space-between !important;
|
||||
}
|
||||
|
||||
.space-center {
|
||||
justify-content: center !important;
|
||||
}
|
||||
|
||||
.d-block {
|
||||
display: block !important;
|
||||
}
|
||||
|
||||
.flex-direction {
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.line-clamp-1 {
|
||||
display: -webkit-box;
|
||||
-webkit-line-clamp: 1;
|
||||
-webkit-box-orient: vertical;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.line-clamp-2 {
|
||||
display: -webkit-box;
|
||||
-webkit-line-clamp: 2;
|
||||
-webkit-box-orient: vertical;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.line-clamp-3 {
|
||||
display: -webkit-box;
|
||||
-webkit-line-clamp: 3;
|
||||
-webkit-box-orient: vertical;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.line-clamp-4 {
|
||||
display: -webkit-box;
|
||||
-webkit-line-clamp: 4;
|
||||
-webkit-box-orient: vertical;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.line-clamp-5 {
|
||||
display: -webkit-box;
|
||||
-webkit-line-clamp: 5;
|
||||
-webkit-box-orient: vertical;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.container {
|
||||
width: 1220px;
|
||||
padding: 0 10px;
|
||||
margin: 0 auto;
|
||||
}
|
||||
|
||||
.swiper-button-next,
|
||||
.swiper-button-prev {
|
||||
width: 50px;
|
||||
height: 50px;
|
||||
box-shadow: 0 0 6px 0px rgb(200, 200, 200);
|
||||
border-radius: 50%;
|
||||
background: #f5f5f5;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
.swiper-button-next::after,
|
||||
.swiper-button-prev::after {
|
||||
font-size: 18px;
|
||||
color: #000;
|
||||
}
|
||||
|
||||
.header {
|
||||
background: #fff;
|
||||
}
|
||||
.header .logo {
|
||||
display: block;
|
||||
width: 160px;
|
||||
}
|
||||
.header .logo img {
|
||||
display: block;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
}
|
||||
.header .list-menu .item {
|
||||
padding: 30px 0;
|
||||
margin-right: 45px;
|
||||
position: relative;
|
||||
font-size: 15px;
|
||||
}
|
||||
.header .list-menu .item.active, .header .list-menu .item:hover {
|
||||
background: var(--color-active);
|
||||
background-clip: text;
|
||||
-webkit-background-clip: text;
|
||||
-webkit-text-fill-color: transparent;
|
||||
}
|
||||
.header .list-menu .item.active::before, .header .list-menu .item:hover::before {
|
||||
display: block;
|
||||
}
|
||||
.header .list-menu .item::before {
|
||||
position: absolute;
|
||||
content: "";
|
||||
left: 0;
|
||||
bottom: 0;
|
||||
height: 3px;
|
||||
width: 100%;
|
||||
background: linear-gradient(90deg, #1fa5f1 0%, #2257bb 100%);
|
||||
border-radius: 20px;
|
||||
display: none;
|
||||
}
|
||||
.header .box-translate {
|
||||
border: none;
|
||||
outline: none;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
.homepage .banner {
|
||||
background: url(../images/banner_home.png) no-repeat;
|
||||
width: 100%;
|
||||
background-size: 100%;
|
||||
min-height: 654px;
|
||||
position: relative;
|
||||
}
|
||||
.homepage .banner .text {
|
||||
position: absolute;
|
||||
left: 50%;
|
||||
top: 50%;
|
||||
transform: translate(-50%, -50%);
|
||||
width: 690px;
|
||||
color: #fff;
|
||||
font-size: 40px;
|
||||
font-weight: 700;
|
||||
text-transform: capitalize;
|
||||
text-align: center;
|
||||
}
|
||||
.homepage .featured-clients {
|
||||
margin: 80px 0;
|
||||
}
|
||||
.homepage .featured-clients .title {
|
||||
font-size: 36px;
|
||||
font-weight: 700;
|
||||
text-transform: capitalize;
|
||||
background: var(--color-active);
|
||||
background-clip: text;
|
||||
-webkit-background-clip: text;
|
||||
-webkit-text-fill-color: transparent;
|
||||
margin-bottom: 12px;
|
||||
}
|
||||
.homepage .featured-clients .content-left {
|
||||
width: 450px;
|
||||
}
|
||||
.homepage .featured-clients .content-left .txt {
|
||||
font-size: 16px;
|
||||
font-weight: 400;
|
||||
line-height: 22px;
|
||||
color: #555;
|
||||
}
|
||||
.homepage .featured-clients .content-right .item {
|
||||
margin-left: 50px;
|
||||
height: 35px;
|
||||
display: block;
|
||||
}
|
||||
.homepage .featured-clients .content-right .item img {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
display: block;
|
||||
}
|
||||
.homepage .box-product {
|
||||
background: url(../images/background_product.png) no-repeat;
|
||||
background-size: cover;
|
||||
margin-bottom: 80px;
|
||||
}
|
||||
.homepage .box-product .main-title {
|
||||
margin-bottom: 30px;
|
||||
}
|
||||
.homepage .box-product .title {
|
||||
font-size: 36px;
|
||||
font-weight: 700;
|
||||
background: linear-gradient(90deg, #1fa5f1 0%, #2257bb 10%);
|
||||
background-clip: text;
|
||||
-webkit-background-clip: text;
|
||||
-webkit-text-fill-color: transparent;
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
.homepage .box-product .content-left {
|
||||
width: 50%;
|
||||
}
|
||||
.homepage .box-product .content-left img {
|
||||
width: 410px;
|
||||
display: block;
|
||||
margin: 0 auto;
|
||||
}
|
||||
.homepage .box-product .content-right {
|
||||
width: calc(50% + 50px);
|
||||
margin-right: -50px;
|
||||
}
|
||||
.homepage .box-product .item {
|
||||
width: calc(50% - 50px);
|
||||
margin-right: 50px;
|
||||
margin-bottom: 50px;
|
||||
}
|
||||
.homepage .box-product .item .logo {
|
||||
display: block;
|
||||
height: calc(100% - 81px);
|
||||
}
|
||||
.homepage .box-product .item .logo img {
|
||||
display: block;
|
||||
}
|
||||
.homepage .box-product .item .txt {
|
||||
margin-top: 24px;
|
||||
height: 57px;
|
||||
}
|
||||
.homepage .box-product .item.xstore .logo {
|
||||
padding-top: 10px;
|
||||
}
|
||||
.homepage .box-service {
|
||||
position: relative;
|
||||
padding-bottom: 100px;
|
||||
}
|
||||
.homepage .box-service::before {
|
||||
position: absolute;
|
||||
content: "";
|
||||
left: 0;
|
||||
top: 50%;
|
||||
background: url(../images/before-service.png) no-repeat;
|
||||
transform: translate(0, -50%);
|
||||
height: 260px;
|
||||
width: 200px;
|
||||
opacity: 0.3;
|
||||
}
|
||||
.homepage .box-service .title {
|
||||
font-size: 36px;
|
||||
font-weight: 700;
|
||||
background: linear-gradient(90deg, #1fa5f1 0%, #2257bb 10%);
|
||||
background-clip: text;
|
||||
-webkit-background-clip: text;
|
||||
-webkit-text-fill-color: transparent;
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
.homepage .box-service .content-service {
|
||||
margin-right: -20px;
|
||||
}
|
||||
.homepage .box-service .item-service {
|
||||
width: calc(33.3333333333% - 20px);
|
||||
margin-right: 20px;
|
||||
padding: 20px;
|
||||
background: linear-gradient(0deg, rgba(224, 236, 255, 0.6) 0%, rgba(182, 211, 255, 0) 150.42%);
|
||||
border-radius: 12px;
|
||||
border: 1px solid #1fa5f1;
|
||||
}
|
||||
.homepage .box-service .item-service .box-image {
|
||||
width: 80px;
|
||||
height: 80px;
|
||||
margin-bottom: 15px;
|
||||
background: linear-gradient(0deg, rgba(94, 120, 255, 0.1) 0%, rgba(255, 255, 255, 0.2) 150.42%);
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
border-radius: 50%;
|
||||
}
|
||||
.homepage .box-service .item-service .box-image img {
|
||||
display: block;
|
||||
width: 50px;
|
||||
height: 50px;
|
||||
opacity: 1;
|
||||
-o-object-fit: contain;
|
||||
object-fit: contain;
|
||||
}
|
||||
.homepage .box-service .item-service .cnt b {
|
||||
font-size: 16px;
|
||||
margin-bottom: 12px;
|
||||
display: block;
|
||||
}
|
||||
.homepage .box-service .item-service .cnt p {
|
||||
color: #555;
|
||||
font-size: 14px;
|
||||
display: block;
|
||||
margin-bottom: 10px;
|
||||
height: 55px;
|
||||
}
|
||||
.homepage .box-service .item-service .link {
|
||||
background: var(--Linear, linear-gradient(180deg, #1d8bca 0%, #0c588b 100%));
|
||||
background-clip: text;
|
||||
-webkit-background-clip: text;
|
||||
-webkit-text-fill-color: transparent;
|
||||
}
|
||||
.homepage .box-article {
|
||||
background: url(../images/background_article.png) no-repeat;
|
||||
background-size: 100%;
|
||||
border-radius: 50px 0px;
|
||||
min-height: 647px;
|
||||
}
|
||||
.homepage .box-article .main-title {
|
||||
padding: 75px 0 30px 0;
|
||||
}
|
||||
.homepage .box-article .main-title .title {
|
||||
font-size: 36px;
|
||||
font-weight: 700;
|
||||
background: var(--Linear, linear-gradient(90deg, #1fa5f1 0%, #2257bb 100%));
|
||||
background-clip: text;
|
||||
-webkit-background-clip: text;
|
||||
-webkit-text-fill-color: transparent;
|
||||
}
|
||||
.homepage .box-article .main-title .view-all {
|
||||
border-radius: 50px;
|
||||
padding: 10px 40px;
|
||||
font-weight: bold;
|
||||
font-size: 16px;
|
||||
background: linear-gradient(90deg, #1fa5f1 0%, #2257bb 150%);
|
||||
background-clip: text;
|
||||
-webkit-background-clip: text;
|
||||
-webkit-text-fill-color: transparent;
|
||||
border: 1px solid #1fa5f1;
|
||||
}
|
||||
.homepage .box-article .main-title .view-all:hover {
|
||||
background: linear-gradient(90deg, #1fa5f1 0%, #2257bb 150%);
|
||||
-webkit-text-fill-color: #fff;
|
||||
}
|
||||
.homepage .box-article .item-article {
|
||||
width: 100%;
|
||||
}
|
||||
.homepage .box-article .content-article {
|
||||
margin-bottom: 100px;
|
||||
}
|
||||
.homepage .box-article .swiper-button-next {
|
||||
left: 60px;
|
||||
top: 90%;
|
||||
}
|
||||
.homepage .box-article .swiper-button-prev {
|
||||
left: 2px;
|
||||
top: 90%;
|
||||
}
|
||||
.homepage .box-article .swiper-button-next:hover,
|
||||
.homepage .box-article .swiper-button-prev:hover {
|
||||
border: 1px solid #1fa5f1;
|
||||
}
|
||||
.homepage .box-article .swiper-button-next:hover::after,
|
||||
.homepage .box-article .swiper-button-prev:hover::after {
|
||||
background: linear-gradient(90deg, #1fa5f1 0%, #2257bb 100%);
|
||||
background-clip: text;
|
||||
-webkit-background-clip: text;
|
||||
-webkit-text-fill-color: transparent;
|
||||
}
|
||||
.homepage .item-article {
|
||||
background: #fff;
|
||||
border-radius: 8px;
|
||||
box-shadow: 0px 0px 6.7px 0px rgba(135, 135, 135, 0.25);
|
||||
width: calc(33.3333333333% - 16px);
|
||||
}
|
||||
.homepage .item-article .image-article {
|
||||
width: 100%;
|
||||
display: block;
|
||||
height: 240px;
|
||||
border-radius: 8px 8px 0px 0px;
|
||||
overflow: hidden;
|
||||
margin-bottom: 12px;
|
||||
}
|
||||
.homepage .item-article .image-article img {
|
||||
display: block;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
-o-object-fit: cover;
|
||||
object-fit: cover;
|
||||
}
|
||||
.homepage .item-article .content-article {
|
||||
padding: 12px;
|
||||
}
|
||||
.homepage .item-article .content-article .name {
|
||||
margin-bottom: 12px;
|
||||
}
|
||||
.homepage .item-article .content-article .name span {
|
||||
font-weight: 700;
|
||||
}
|
||||
.homepage .item-article .content-article .icon-link {
|
||||
width: 24px;
|
||||
height: 24px;
|
||||
border-radius: 50%;
|
||||
background: #d9d9d9;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
}
|
||||
.homepage .item-article .content-article .icon-link i {
|
||||
font-size: 13px;
|
||||
transform: rotate(-45deg);
|
||||
}
|
||||
.homepage .item-article .summary {
|
||||
font-size: 13px;
|
||||
color: #555;
|
||||
font-weight: 400;
|
||||
line-height: 18px;
|
||||
}
|
||||
|
||||
.footer .contact-us {
|
||||
background: #fff;
|
||||
padding: 60px 0;
|
||||
}
|
||||
.footer .contact-us .title {
|
||||
font-size: 28px;
|
||||
text-transform: capitalize;
|
||||
text-align: center;
|
||||
margin-bottom: 20px;
|
||||
font-weight: 400;
|
||||
}
|
||||
.footer .form-contact {
|
||||
margin: 0 auto;
|
||||
width: 795px;
|
||||
}
|
||||
.footer .input-contact {
|
||||
width: 100%;
|
||||
height: 52px;
|
||||
border: 2px solid #1fa5f1;
|
||||
border-radius: 50px;
|
||||
padding: 0 25px;
|
||||
opacity: 0.4;
|
||||
outline: 0;
|
||||
}
|
||||
.footer .input-contact::-moz-placeholder {
|
||||
font-size: 16px;
|
||||
}
|
||||
.footer .input-contact::placeholder {
|
||||
font-size: 16px;
|
||||
}
|
||||
.footer .input-contact:focus {
|
||||
opacity: 1;
|
||||
}
|
||||
.footer .content-contact {
|
||||
width: 100%;
|
||||
position: relative;
|
||||
}
|
||||
.footer .btn-submit {
|
||||
position: absolute;
|
||||
width: 38px;
|
||||
height: 38px;
|
||||
border-radius: 50%;
|
||||
background: linear-gradient(90deg, #1fa5f1 0%, #2257bb 100%);
|
||||
text-align: center;
|
||||
line-height: 38px;
|
||||
right: 10px;
|
||||
top: 7px;
|
||||
}
|
||||
.footer .btn-submit i {
|
||||
color: #fff;
|
||||
}
|
||||
.footer .main-footer {
|
||||
background: #f8f8f8;
|
||||
padding: 35px 0;
|
||||
position: relative;
|
||||
}
|
||||
.footer .main-footer::before {
|
||||
position: absolute;
|
||||
content: "";
|
||||
left: 0;
|
||||
top: 0;
|
||||
background: linear-gradient(90deg, #1fa5f1 0%, #2257bb 100%);
|
||||
width: 100%;
|
||||
height: 2px;
|
||||
}
|
||||
.footer .item-footer {
|
||||
width: calc(25% - 30px);
|
||||
margin-right: 30px;
|
||||
}
|
||||
.footer .item-footer .title {
|
||||
margin-bottom: 25px;
|
||||
display: block;
|
||||
font-size: 16px;
|
||||
}
|
||||
.footer .item-footer p {
|
||||
margin-bottom: 15px;
|
||||
color: #606060;
|
||||
font-size: 13px;
|
||||
}
|
||||
.footer .item-footer a {
|
||||
display: block;
|
||||
margin-bottom: 15px;
|
||||
color: #606060;
|
||||
font-size: 13px;
|
||||
}
|
||||
.footer .item-footer a:hover {
|
||||
font-weight: 700;
|
||||
background: var(--color-active);
|
||||
background-clip: text;
|
||||
-webkit-background-clip: text;
|
||||
-webkit-text-fill-color: transparent;
|
||||
}
|
||||
.footer .footer-bottom {
|
||||
border-top: 1px solid #d9d9d9;
|
||||
padding: 15px 0;
|
||||
background: #f8f8f8;
|
||||
}
|
||||
.footer .footer-bottom p {
|
||||
color: #606060;
|
||||
font-size: 13px;
|
||||
}
|
||||
|
||||
.relative {
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.banner-contact-us {
|
||||
background: url(../images/banner_contactus.png) no-repeat;
|
||||
background-size: 100%;
|
||||
width: 100%;
|
||||
height: 570px;
|
||||
}
|
||||
.banner-contact-us .relative {
|
||||
height: 100%;
|
||||
}
|
||||
.banner-contact-us .title-banner {
|
||||
position: absolute;
|
||||
left: 0;
|
||||
top: 50%;
|
||||
transform: translate(0, -50%);
|
||||
width: 630px;
|
||||
}
|
||||
.banner-contact-us .title-banner h1 {
|
||||
font-size: 38px;
|
||||
font-weight: 700;
|
||||
text-transform: capitalize;
|
||||
color: #0c588b;
|
||||
font-weight: 700;
|
||||
margin-bottom: 15px;
|
||||
}
|
||||
.banner-contact-us .title-banner p {
|
||||
font-size: 20px;
|
||||
color: #0c588b;
|
||||
text-transform: capitalize;
|
||||
font-weight: 400;
|
||||
}
|
||||
|
||||
.trusted-partner {
|
||||
margin: 60px 0 80px 0;
|
||||
}
|
||||
.trusted-partner .partler-left {
|
||||
width: 50%;
|
||||
margin-right: 25px;
|
||||
}
|
||||
.trusted-partner .partler-right {
|
||||
width: calc(50% - 23px);
|
||||
}
|
||||
.trusted-partner .title {
|
||||
font-size: 32px;
|
||||
font-weight: 700;
|
||||
background: var(--color-active);
|
||||
background-clip: text;
|
||||
-webkit-background-clip: text;
|
||||
-webkit-text-fill-color: transparent;
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
.trusted-partner .content p {
|
||||
font-size: 15px;
|
||||
color: #555;
|
||||
margin-bottom: 20px;
|
||||
line-height: 27px;
|
||||
}
|
||||
|
||||
.company-culture {
|
||||
margin-bottom: 80px;
|
||||
}
|
||||
.company-culture .title {
|
||||
background: var(--color-active);
|
||||
background-clip: text;
|
||||
-webkit-background-clip: text;
|
||||
-webkit-text-fill-color: transparent;
|
||||
font-size: 32px;
|
||||
font-weight: 700;
|
||||
text-align: center;
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
.company-culture .note {
|
||||
font-size: 16px;
|
||||
margin-bottom: 40px;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.page-product .title {
|
||||
background: var(--Linear, linear-gradient(90deg, #1fa5f1 0%, #2257bb 100%));
|
||||
background-clip: text;
|
||||
-webkit-background-clip: text;
|
||||
-webkit-text-fill-color: transparent;
|
||||
font-size: 36px;
|
||||
font-weight: 700;
|
||||
text-align: center;
|
||||
margin: 60px 0 10px 0;
|
||||
}
|
||||
.page-product .note-product {
|
||||
font-size: 16px;
|
||||
color: #555;
|
||||
text-align: center;
|
||||
margin-bottom: 40px;
|
||||
}
|
||||
.page-product .item-product {
|
||||
width: calc(50% - 20px);
|
||||
margin-bottom: 20px;
|
||||
margin-right: 20px;
|
||||
padding: 20px;
|
||||
border-radius: 20px;
|
||||
}/*# sourceMappingURL=style.css.map */
|
||||
1
assets/css/style.css.map
Normal file
704
assets/css/style.scss
Normal file
@@ -0,0 +1,704 @@
|
||||
@font-face {
|
||||
font-family: "shopee";
|
||||
src: url(../font/shopee2021-regular.ttf);
|
||||
}
|
||||
|
||||
:root {
|
||||
--color-active: linear-gradient(90deg, #1fa5f1 0%, #2257bb 100%);
|
||||
}
|
||||
::-webkit-scrollbar-track {
|
||||
background-color: #f5f5f5;
|
||||
border-radius: 10px;
|
||||
}
|
||||
::-webkit-scrollbar {
|
||||
width: 7px;
|
||||
background-color: #f5f5f5;
|
||||
}
|
||||
::-webkit-scrollbar-thumb {
|
||||
background: #2257bb;
|
||||
border-radius: 20px;
|
||||
background-image: linear-gradient(90deg, #1fa5f1 0%, #2257bb 100%);
|
||||
}
|
||||
* {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
box-sizing: border-box;
|
||||
font-family: "shopee";
|
||||
}
|
||||
|
||||
body {
|
||||
color: #000;
|
||||
font-family: "shopee";
|
||||
margin: 0 auto;
|
||||
background: #fff;
|
||||
font-weight: normal;
|
||||
font-size: 15px;
|
||||
min-width: 1220px;
|
||||
}
|
||||
|
||||
html {
|
||||
font-size: 100%;
|
||||
font-family: "shopee";
|
||||
}
|
||||
|
||||
img {
|
||||
max-width: 100%;
|
||||
height: auto;
|
||||
}
|
||||
|
||||
a {
|
||||
text-decoration: none;
|
||||
color: var(--text-black);
|
||||
&:hover {
|
||||
color: #041f3a;
|
||||
}
|
||||
}
|
||||
|
||||
.clearfix {
|
||||
content: "";
|
||||
clear: both;
|
||||
}
|
||||
|
||||
ul,
|
||||
li {
|
||||
list-style: none;
|
||||
}
|
||||
|
||||
table {
|
||||
border-collapse: collapse;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.ul,
|
||||
.ol {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
list-style: none;
|
||||
}
|
||||
.d-flex {
|
||||
display: flex !important;
|
||||
}
|
||||
|
||||
.d-block {
|
||||
display: block;
|
||||
}
|
||||
|
||||
.flex-wrap {
|
||||
flex-wrap: wrap !important;
|
||||
}
|
||||
|
||||
.text-center {
|
||||
text-align: center !important;
|
||||
}
|
||||
|
||||
.align-items {
|
||||
align-items: center !important;
|
||||
}
|
||||
|
||||
.space-between {
|
||||
justify-content: space-between !important;
|
||||
}
|
||||
|
||||
.space-center {
|
||||
justify-content: center !important;
|
||||
}
|
||||
|
||||
.d-block {
|
||||
display: block !important;
|
||||
}
|
||||
|
||||
.flex-direction {
|
||||
flex-direction: column;
|
||||
}
|
||||
.line-clamp-1 {
|
||||
display: -webkit-box;
|
||||
-webkit-line-clamp: 1;
|
||||
-webkit-box-orient: vertical;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.line-clamp-2 {
|
||||
display: -webkit-box;
|
||||
-webkit-line-clamp: 2;
|
||||
-webkit-box-orient: vertical;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.line-clamp-3 {
|
||||
display: -webkit-box;
|
||||
-webkit-line-clamp: 3;
|
||||
-webkit-box-orient: vertical;
|
||||
overflow: hidden;
|
||||
}
|
||||
.line-clamp-4 {
|
||||
display: -webkit-box;
|
||||
-webkit-line-clamp: 4;
|
||||
-webkit-box-orient: vertical;
|
||||
overflow: hidden;
|
||||
}
|
||||
.line-clamp-5 {
|
||||
display: -webkit-box;
|
||||
-webkit-line-clamp: 5;
|
||||
-webkit-box-orient: vertical;
|
||||
overflow: hidden;
|
||||
}
|
||||
.container {
|
||||
width: 1220px;
|
||||
padding: 0 10px;
|
||||
margin: 0 auto;
|
||||
}
|
||||
.swiper-button-next,
|
||||
.swiper-button-prev {
|
||||
width: 50px;
|
||||
height: 50px;
|
||||
box-shadow: 0 0 6px 0px rgba(200, 200, 200, 1);
|
||||
border-radius: 50%;
|
||||
background: #f5f5f5;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
.swiper-button-next::after,
|
||||
.swiper-button-prev::after {
|
||||
font-size: 18px;
|
||||
color: #000;
|
||||
}
|
||||
|
||||
.header {
|
||||
background: #fff;
|
||||
.logo {
|
||||
display: block;
|
||||
width: 160px;
|
||||
img {
|
||||
display: block;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
}
|
||||
}
|
||||
.list-menu {
|
||||
.item {
|
||||
padding: 30px 0;
|
||||
margin-right: 45px;
|
||||
position: relative;
|
||||
font-size: 15px;
|
||||
&.active,
|
||||
&:hover {
|
||||
background: var(--color-active);
|
||||
background-clip: text;
|
||||
-webkit-background-clip: text;
|
||||
-webkit-text-fill-color: transparent;
|
||||
&::before {
|
||||
display: block;
|
||||
}
|
||||
}
|
||||
&::before {
|
||||
position: absolute;
|
||||
content: "";
|
||||
left: 0;
|
||||
bottom: 0;
|
||||
height: 3px;
|
||||
width: 100%;
|
||||
background: linear-gradient(90deg, #1fa5f1 0%, #2257bb 100%);
|
||||
border-radius: 20px;
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
}
|
||||
.box-translate {
|
||||
border: none;
|
||||
outline: none;
|
||||
font-weight: bold;
|
||||
}
|
||||
}
|
||||
|
||||
.homepage {
|
||||
.banner {
|
||||
background: url(../images/banner_home.png) no-repeat;
|
||||
width: 100%;
|
||||
background-size: 100%;
|
||||
min-height: 654px;
|
||||
position: relative;
|
||||
.text {
|
||||
position: absolute;
|
||||
left: 50%;
|
||||
top: 50%;
|
||||
transform: translate(-50%, -50%);
|
||||
width: 690px;
|
||||
color: #fff;
|
||||
font-size: 40px;
|
||||
font-weight: 700;
|
||||
text-transform: capitalize;
|
||||
text-align: center;
|
||||
}
|
||||
}
|
||||
.featured-clients {
|
||||
margin: 80px 0;
|
||||
.title {
|
||||
font-size: 36px;
|
||||
font-weight: 700;
|
||||
text-transform: capitalize;
|
||||
background: var(--color-active);
|
||||
background-clip: text;
|
||||
-webkit-background-clip: text;
|
||||
-webkit-text-fill-color: transparent;
|
||||
margin-bottom: 12px;
|
||||
}
|
||||
.content-left {
|
||||
width: 450px;
|
||||
.txt {
|
||||
font-size: 16px;
|
||||
font-weight: 400;
|
||||
line-height: 22px;
|
||||
color: #555;
|
||||
}
|
||||
}
|
||||
.content-right {
|
||||
.item {
|
||||
margin-left: 50px;
|
||||
height: 35px;
|
||||
display: block;
|
||||
img {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
display: block;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
.box-product {
|
||||
background: url(../images/background_product.png) no-repeat;
|
||||
background-size: cover;
|
||||
margin-bottom: 80px;
|
||||
.main-title {
|
||||
margin-bottom: 30px;
|
||||
}
|
||||
.title {
|
||||
font-size: 36px;
|
||||
font-weight: 700;
|
||||
background: linear-gradient(90deg, #1fa5f1 0%, #2257bb 10%);
|
||||
background-clip: text;
|
||||
-webkit-background-clip: text;
|
||||
-webkit-text-fill-color: transparent;
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
.content-left {
|
||||
width: 50%;
|
||||
img {
|
||||
width: 410px;
|
||||
display: block;
|
||||
margin: 0 auto;
|
||||
}
|
||||
}
|
||||
.content-right {
|
||||
width: calc(50% + 50px);
|
||||
margin-right: -50px;
|
||||
}
|
||||
.item {
|
||||
width: calc(100% / 2 - 50px);
|
||||
margin-right: 50px;
|
||||
margin-bottom: 50px;
|
||||
.logo {
|
||||
display: block;
|
||||
height: calc(100% - 81px);
|
||||
img {
|
||||
display: block;
|
||||
}
|
||||
}
|
||||
.txt {
|
||||
margin-top: 24px;
|
||||
height: 57px;
|
||||
}
|
||||
&.xstore {
|
||||
.logo {
|
||||
padding-top: 10px;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
.box-service {
|
||||
position: relative;
|
||||
padding-bottom: 100px;
|
||||
&::before {
|
||||
position: absolute;
|
||||
content: "";
|
||||
left: 0;
|
||||
top: 50%;
|
||||
background: url(../images/before-service.png) no-repeat;
|
||||
transform: translate(0, -50%);
|
||||
height: 260px;
|
||||
width: 200px;
|
||||
opacity: 0.3;
|
||||
}
|
||||
.title {
|
||||
font-size: 36px;
|
||||
font-weight: 700;
|
||||
background: linear-gradient(90deg, #1fa5f1 0%, #2257bb 10%);
|
||||
background-clip: text;
|
||||
-webkit-background-clip: text;
|
||||
-webkit-text-fill-color: transparent;
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
.content-service {
|
||||
margin-right: -20px;
|
||||
}
|
||||
.item-service {
|
||||
width: calc(100% / 3 - 20px);
|
||||
margin-right: 20px;
|
||||
padding: 20px;
|
||||
background: linear-gradient(0deg, rgba(224, 236, 255, 0.6) 0%, rgba(182, 211, 255, 0) 150.42%);
|
||||
border-radius: 12px;
|
||||
border: 1px solid #1fa5f1;
|
||||
.box-image {
|
||||
width: 80px;
|
||||
height: 80px;
|
||||
margin-bottom: 15px;
|
||||
background: linear-gradient(0deg, rgba(94, 120, 255, 0.1) 0%, rgba(255, 255, 255, 0.2) 150.42%);
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
border-radius: 50%;
|
||||
img {
|
||||
display: block;
|
||||
width: 50px;
|
||||
height: 50px;
|
||||
opacity: 1;
|
||||
object-fit: contain;
|
||||
}
|
||||
}
|
||||
.cnt {
|
||||
b {
|
||||
font-size: 16px;
|
||||
margin-bottom: 12px;
|
||||
display: block;
|
||||
}
|
||||
p {
|
||||
color: #555;
|
||||
font-size: 14px;
|
||||
display: block;
|
||||
margin-bottom: 10px;
|
||||
height: 55px;
|
||||
}
|
||||
}
|
||||
.link {
|
||||
background: var(--Linear, linear-gradient(180deg, #1d8bca 0%, #0c588b 100%));
|
||||
background-clip: text;
|
||||
-webkit-background-clip: text;
|
||||
-webkit-text-fill-color: transparent;
|
||||
}
|
||||
}
|
||||
}
|
||||
.box-article {
|
||||
background: url(../images/background_article.png) no-repeat;
|
||||
background-size: 100%;
|
||||
border-radius: 50px 0px;
|
||||
min-height: 647px;
|
||||
.main-title {
|
||||
padding: 75px 0 30px 0;
|
||||
.title {
|
||||
font-size: 36px;
|
||||
font-weight: 700;
|
||||
background: var(--Linear, linear-gradient(90deg, #1fa5f1 0%, #2257bb 100%));
|
||||
background-clip: text;
|
||||
-webkit-background-clip: text;
|
||||
-webkit-text-fill-color: transparent;
|
||||
}
|
||||
.view-all {
|
||||
border-radius: 50px;
|
||||
padding: 10px 40px;
|
||||
font-weight: bold;
|
||||
font-size: 16px;
|
||||
background: linear-gradient(90deg, #1fa5f1 0%, #2257bb 150%);
|
||||
background-clip: text;
|
||||
-webkit-background-clip: text;
|
||||
-webkit-text-fill-color: transparent;
|
||||
border: 1px solid #1fa5f1;
|
||||
&:hover {
|
||||
background: linear-gradient(90deg, #1fa5f1 0%, #2257bb 150%);
|
||||
-webkit-text-fill-color: #fff;
|
||||
}
|
||||
}
|
||||
}
|
||||
.item-article {
|
||||
width: 100%;
|
||||
}
|
||||
.content-article {
|
||||
margin-bottom: 100px;
|
||||
}
|
||||
.swiper-button-next {
|
||||
left: 60px;
|
||||
top: 90%;
|
||||
}
|
||||
.swiper-button-prev {
|
||||
left: 2px;
|
||||
top: 90%;
|
||||
}
|
||||
.swiper-button-next:hover,
|
||||
.swiper-button-prev:hover {
|
||||
border: 1px solid #1fa5f1;
|
||||
&::after {
|
||||
background: linear-gradient(90deg, #1fa5f1 0%, #2257bb 100%);
|
||||
background-clip: text;
|
||||
-webkit-background-clip: text;
|
||||
-webkit-text-fill-color: transparent;
|
||||
}
|
||||
}
|
||||
}
|
||||
.item-article {
|
||||
background: #fff;
|
||||
border-radius: 8px;
|
||||
box-shadow: 0px 0px 6.7px 0px rgba(135, 135, 135, 0.25);
|
||||
width: calc(100% / 3 - 16px);
|
||||
.image-article {
|
||||
width: 100%;
|
||||
display: block;
|
||||
height: 240px;
|
||||
border-radius: 8px 8px 0px 0px;
|
||||
overflow: hidden;
|
||||
margin-bottom: 12px;
|
||||
img {
|
||||
display: block;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
object-fit: cover;
|
||||
}
|
||||
}
|
||||
.content-article {
|
||||
padding: 12px;
|
||||
.name {
|
||||
margin-bottom: 12px;
|
||||
span {
|
||||
font-weight: 700;
|
||||
}
|
||||
}
|
||||
.icon-link {
|
||||
width: 24px;
|
||||
height: 24px;
|
||||
border-radius: 50%;
|
||||
background: #d9d9d9;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
i {
|
||||
font-size: 13px;
|
||||
transform: rotate(-45deg);
|
||||
}
|
||||
}
|
||||
}
|
||||
.summary {
|
||||
font-size: 13px;
|
||||
color: #555;
|
||||
font-weight: 400;
|
||||
line-height: 18px;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.footer {
|
||||
.contact-us {
|
||||
background: #fff;
|
||||
padding: 60px 0;
|
||||
.title {
|
||||
font-size: 28px;
|
||||
text-transform: capitalize;
|
||||
text-align: center;
|
||||
margin-bottom: 20px;
|
||||
font-weight: 400;
|
||||
}
|
||||
}
|
||||
.form-contact {
|
||||
margin: 0 auto;
|
||||
width: 795px;
|
||||
}
|
||||
.input-contact {
|
||||
width: 100%;
|
||||
height: 52px;
|
||||
border: 2px solid #1fa5f1;
|
||||
border-radius: 50px;
|
||||
padding: 0 25px;
|
||||
opacity: 0.4;
|
||||
outline: 0;
|
||||
&::placeholder {
|
||||
font-size: 16px;
|
||||
}
|
||||
&:focus {
|
||||
opacity: 1;
|
||||
}
|
||||
}
|
||||
.content-contact {
|
||||
width: 100%;
|
||||
position: relative;
|
||||
}
|
||||
.btn-submit {
|
||||
position: absolute;
|
||||
width: 38px;
|
||||
height: 38px;
|
||||
border-radius: 50%;
|
||||
background: linear-gradient(90deg, #1fa5f1 0%, #2257bb 100%);
|
||||
text-align: center;
|
||||
line-height: 38px;
|
||||
right: 10px;
|
||||
top: 7px;
|
||||
i {
|
||||
color: #fff;
|
||||
}
|
||||
}
|
||||
.main-footer {
|
||||
background: #f8f8f8;
|
||||
padding: 35px 0;
|
||||
position: relative;
|
||||
&::before {
|
||||
position: absolute;
|
||||
content: "";
|
||||
left: 0;
|
||||
top: 0;
|
||||
background: linear-gradient(90deg, #1fa5f1 0%, #2257bb 100%);
|
||||
width: 100%;
|
||||
height: 2px;
|
||||
}
|
||||
}
|
||||
.item-footer {
|
||||
width: calc(100% / 4 - 30px);
|
||||
margin-right: 30px;
|
||||
.title {
|
||||
margin-bottom: 25px;
|
||||
display: block;
|
||||
font-size: 16px;
|
||||
}
|
||||
p {
|
||||
margin-bottom: 15px;
|
||||
color: #606060;
|
||||
font-size: 13px;
|
||||
}
|
||||
a {
|
||||
display: block;
|
||||
margin-bottom: 15px;
|
||||
color: #606060;
|
||||
font-size: 13px;
|
||||
&:hover {
|
||||
font-weight: 700;
|
||||
background: var(--color-active);
|
||||
background-clip: text;
|
||||
-webkit-background-clip: text;
|
||||
-webkit-text-fill-color: transparent;
|
||||
}
|
||||
}
|
||||
}
|
||||
.footer-bottom {
|
||||
border-top: 1px solid #d9d9d9;
|
||||
padding: 15px 0;
|
||||
background: #f8f8f8;
|
||||
p {
|
||||
color: #606060;
|
||||
font-size: 13px;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// contact us
|
||||
.relative {
|
||||
position: relative;
|
||||
}
|
||||
.banner-contact-us {
|
||||
background: url(../images/banner_contactus.png) no-repeat;
|
||||
background-size: 100%;
|
||||
width: 100%;
|
||||
height: 570px;
|
||||
.relative {
|
||||
height: 100%;
|
||||
}
|
||||
.title-banner {
|
||||
position: absolute;
|
||||
left: 0;
|
||||
top: 50%;
|
||||
transform: translate(0, -50%);
|
||||
width: 630px;
|
||||
h1 {
|
||||
font-size: 38px;
|
||||
font-weight: 700;
|
||||
text-transform: capitalize;
|
||||
color: #0c588b;
|
||||
font-weight: 700;
|
||||
margin-bottom: 15px;
|
||||
}
|
||||
p {
|
||||
font-size: 20px;
|
||||
color: #0c588b;
|
||||
text-transform: capitalize;
|
||||
font-weight: 400;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.trusted-partner {
|
||||
margin: 60px 0 80px 0;
|
||||
.partler-left {
|
||||
width: 50%;
|
||||
margin-right: 25px;
|
||||
}
|
||||
.partler-right {
|
||||
width: calc(50% - 23px);
|
||||
}
|
||||
.title {
|
||||
font-size: 32px;
|
||||
font-weight: 700;
|
||||
background: var(--color-active);
|
||||
background-clip: text;
|
||||
-webkit-background-clip: text;
|
||||
-webkit-text-fill-color: transparent;
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
.content {
|
||||
p {
|
||||
font-size: 15px;
|
||||
color: #555;
|
||||
margin-bottom: 20px;
|
||||
line-height: 27px;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.company-culture {
|
||||
margin-bottom: 80px;
|
||||
.title {
|
||||
background: var(--color-active);
|
||||
background-clip: text;
|
||||
-webkit-background-clip: text;
|
||||
-webkit-text-fill-color: transparent;
|
||||
font-size: 32px;
|
||||
font-weight: 700;
|
||||
text-align: center;
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
.note {
|
||||
font-size: 16px;
|
||||
margin-bottom: 40px;
|
||||
text-align: center;
|
||||
}
|
||||
}
|
||||
|
||||
.page-product {
|
||||
.title {
|
||||
background: var(--Linear, linear-gradient(90deg, #1fa5f1 0%, #2257bb 100%));
|
||||
background-clip: text;
|
||||
-webkit-background-clip: text;
|
||||
-webkit-text-fill-color: transparent;
|
||||
font-size: 36px;
|
||||
font-weight: 700;
|
||||
text-align: center;
|
||||
margin: 60px 0 10px 0;
|
||||
}
|
||||
.note-product {
|
||||
font-size: 16px;
|
||||
color: #555;
|
||||
text-align: center;
|
||||
margin-bottom: 40px;
|
||||
}
|
||||
.item-product {
|
||||
width: calc(100% / 2 - 20px);
|
||||
margin-bottom: 20px;
|
||||
margin-right: 20px;
|
||||
padding: 20px;
|
||||
border-radius: 20px;
|
||||
}
|
||||
}
|
||||
BIN
assets/font/FVHShopeeText-Bold.otf
Normal file
BIN
assets/font/shopee2021-black.ttf
Normal file
BIN
assets/font/shopee2021-bold.ttf
Normal file
BIN
assets/font/shopee2021-extrabold.ttf
Normal file
BIN
assets/font/shopee2021-light.ttf
Normal file
BIN
assets/font/shopee2021-regular.ttf
Normal file
BIN
assets/images/background_article.png
Normal file
|
After Width: | Height: | Size: 16 KiB |
BIN
assets/images/background_product.png
Normal file
|
After Width: | Height: | Size: 13 KiB |
BIN
assets/images/banner-company-culture.png
Normal file
|
After Width: | Height: | Size: 238 KiB |
BIN
assets/images/banner-partler.png
Normal file
|
After Width: | Height: | Size: 190 KiB |
BIN
assets/images/banner_contactus.png
Normal file
|
After Width: | Height: | Size: 4.5 MiB |
BIN
assets/images/banner_home.png
Normal file
|
After Width: | Height: | Size: 301 KiB |
BIN
assets/images/before-service.png
Normal file
|
After Width: | Height: | Size: 23 KiB |
BIN
assets/images/icon-cloud.png
Normal file
|
After Width: | Height: | Size: 2.0 KiB |
BIN
assets/images/icon-ecommerce.png
Normal file
|
After Width: | Height: | Size: 1.7 KiB |
BIN
assets/images/icon-facebook.png
Normal file
|
After Width: | Height: | Size: 1.3 KiB |
BIN
assets/images/icon-software.png
Normal file
|
After Width: | Height: | Size: 1.8 KiB |
BIN
assets/images/icon-zalo.png
Normal file
|
After Width: | Height: | Size: 2.2 KiB |
BIN
assets/images/image-article.png
Normal file
|
After Width: | Height: | Size: 84 KiB |
BIN
assets/images/image-product.png
Normal file
|
After Width: | Height: | Size: 89 KiB |
BIN
assets/images/logo-chatngay.png
Normal file
|
After Width: | Height: | Size: 11 KiB |
BIN
assets/images/logo-hacom.png
Normal file
|
After Width: | Height: | Size: 6.9 KiB |
BIN
assets/images/logo-traphaco.png
Normal file
|
After Width: | Height: | Size: 9.5 KiB |
BIN
assets/images/logo-xuanvu.png
Normal file
|
After Width: | Height: | Size: 14 KiB |
BIN
assets/images/logo.png
Normal file
|
After Width: | Height: | Size: 8.1 KiB |
BIN
assets/images/logo_adman.png
Normal file
|
After Width: | Height: | Size: 2.0 KiB |
BIN
assets/images/logo_anphat.png
Normal file
|
After Width: | Height: | Size: 9.6 KiB |
BIN
assets/images/logo_hura8.png
Normal file
|
After Width: | Height: | Size: 2.7 KiB |
BIN
assets/images/logo_xstore.png
Normal file
|
After Width: | Height: | Size: 2.2 KiB |
BIN
assets/images/main-product.png
Normal file
|
After Width: | Height: | Size: 124 KiB |
20
assets/js/main.js
Normal file
@@ -0,0 +1,20 @@
|
||||
$(document).ready(function () {
|
||||
var swiper = new Swiper('#js-slider-article', {
|
||||
slidesPerView: 3,
|
||||
spaceBetween: 16,
|
||||
loop: false,
|
||||
rewind: true,
|
||||
lazy: true,
|
||||
autoplay: {
|
||||
delay: 2000,
|
||||
},
|
||||
navigation: {
|
||||
nextEl: "#js-slider-article .swiper-button-next",
|
||||
prevEl: "#js-slider-article .swiper-button-prev",
|
||||
},
|
||||
pagination: {
|
||||
el: "#js-slider-article .swiper-pagination",
|
||||
clickable: true,
|
||||
},
|
||||
});
|
||||
});
|
||||
164
contact_us.html
Normal file
@@ -0,0 +1,164 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Hurasoft</title>
|
||||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" />
|
||||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/swiper@10/swiper-bundle.min.css" />
|
||||
<link rel="stylesheet" href="./assets/css/style.css">
|
||||
</head>
|
||||
|
||||
<body>
|
||||
|
||||
<div class="header">
|
||||
<div class="container">
|
||||
<div class="content-main-header d-flex align-items space-between">
|
||||
<a href="/" class="logo">
|
||||
<img src="./assets/images/logo.png" width="100%" height="100%" alt="logo">
|
||||
</a>
|
||||
<div class="list-menu d-flex align-items">
|
||||
<a href="/lien-he" class="item active">About</a>
|
||||
<div class="item">
|
||||
<a href="" class="item-cate">Product <i class="fa-solid fa-angle-down"></i></a>
|
||||
<div class="box box_list_cate">
|
||||
|
||||
</div>
|
||||
</div>
|
||||
<div class="item">
|
||||
<a href="" class="item-cate">Service <i class="fa-solid fa-angle-down"></i></a>
|
||||
<div class="box box_list_cate">
|
||||
|
||||
</div>
|
||||
</div>
|
||||
<a href="" class="item">What's new</a>
|
||||
<a href="" class="item">Job</a>
|
||||
<a href="" class="item">Contact</a>
|
||||
</div>
|
||||
|
||||
<select class="box-translate">
|
||||
<option value="">VN</option>
|
||||
<option value="">EN</option>
|
||||
</select>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="page-contact-us">
|
||||
<div class="banner-contact-us">
|
||||
<div class="container relative">
|
||||
<div class="title-banner">
|
||||
<h1>We are always side by side with your development</h1>
|
||||
<p>with a team of technically qualified and experienced staff providing services to large/small
|
||||
Vietnamese businesses</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="trusted-partner">
|
||||
<div class="container">
|
||||
<div class="content-partner d-flex align-items">
|
||||
<div class="partler-left">
|
||||
<h2 class="title">Trusted partner of <br> businesses</h2>
|
||||
<div class="content">
|
||||
<p>Hurasoft specializes in consulting and implementing comprehensive e-commerce solutions
|
||||
for businesses from business
|
||||
startups to large scale.</p>
|
||||
<p>UX/UI design, mobile app website development, marketing services, software applications &
|
||||
quality infrastructure
|
||||
services. The solutions we design aim to accelerate efficiency & promote sustainable
|
||||
growth for businesses.</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="partler-right">
|
||||
<img src="./assets/images/banner-partler.png" alt="">
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="company-culture">
|
||||
<div class="container">
|
||||
<h2 class="title">Company Culture</h2>
|
||||
<p class="note">We always stand side by side with your development with a team of technically competent
|
||||
and experienced staff
|
||||
</p>
|
||||
<div class="banner-company-culture">
|
||||
<img src="./assets/images/banner-company-culture.png" alt="">
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="footer">
|
||||
<div class="contact-us">
|
||||
<h2 class="title">Contact us for cousultation</h2>
|
||||
<div class="form-contact">
|
||||
<div class="content-contact">
|
||||
<input type="text" class="input-contact" placeholder="Enter email or number phone">
|
||||
<a href="javascript:void(0)" class="btn-submit">
|
||||
<i class="fa-solid fa-paper-plane"></i>
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="main-footer">
|
||||
<div class="container">
|
||||
<div class="content-main-footer d-flex">
|
||||
<div class="item-footer">
|
||||
<b class="title">Hurasoft Company Limited</b>
|
||||
<div class="cnt">
|
||||
<p>ADDRESS: Floor 5 - No. 3, Lane 18 Yen Lang, Dong Da District, Hanoi City</p>
|
||||
<p>Hotline: 02422.138.068 - 0904.580.181</p>
|
||||
<p>Email: hotro@hurasoft.com</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="item-footer">
|
||||
<b class="title">Introduce</b>
|
||||
<div class="cnt">
|
||||
<a href="">About us</a>
|
||||
<a href="">Client</a>
|
||||
<a href="">Blog</a>
|
||||
<a href="">Contact</a>
|
||||
<a href="">Information security</a>
|
||||
</div>
|
||||
</div>
|
||||
<div class="item-footer">
|
||||
<b class="title">Product</b>
|
||||
<div class="cnt">
|
||||
<a href="">Hura8</a>
|
||||
<a href="">Xstore</a>
|
||||
<a href="">adMan</a>
|
||||
<a href="">Chatngay</a>
|
||||
</div>
|
||||
</div>
|
||||
<div class="item-footer">
|
||||
<b class="title">Service</b>
|
||||
<div class="cnt">
|
||||
<a href="">eCommerce Management</a>
|
||||
<a href="">Cloud Service</a>
|
||||
<a href="">The infrastructure</a>
|
||||
</div>
|
||||
<div class="d-flex">
|
||||
<a href="">
|
||||
<img src="./assets/images/icon-zalo.png" width="27px" height="27px" alt="zalo">
|
||||
</a>
|
||||
<a href="" style="margin-left: 10px;">
|
||||
<img src="./assets/images/icon-facebook.png" width="27px" height="27px" alt="facebook">
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="footer-bottom">
|
||||
<div class="container">
|
||||
<p>Copyright @2024 Hurasoft. GPKD số: 0106897291 do Sở Kế hoạch và Đầu tư Thành phố Hà Nội cấp</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<script src=" https://cdnjs.cloudflare.com/ajax/libs/jquery/3.7.1/jquery.min.js"></script>
|
||||
<script src="https://cdn.jsdelivr.net/npm/swiper@10/swiper-bundle.min.js"></script>
|
||||
<script src="./assets/js/main.js"></script>
|
||||
</body>
|
||||
|
||||
</html>
|
||||
388
index.html
Normal file
@@ -0,0 +1,388 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Hurasoft</title>
|
||||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" />
|
||||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/swiper@10/swiper-bundle.min.css" />
|
||||
<link rel="stylesheet" href="./assets/css/style.css">
|
||||
</head>
|
||||
|
||||
<body>
|
||||
|
||||
<div class="header">
|
||||
<div class="container">
|
||||
<div class="content-main-header d-flex align-items space-between">
|
||||
<a href="/" class="logo">
|
||||
<img src="./assets/images/logo.png" width="100%" height="100%" alt="logo">
|
||||
</a>
|
||||
<div class="list-menu d-flex align-items">
|
||||
<a href="/lien-he" class="item active">About</a>
|
||||
<div class="item">
|
||||
<a href="" class="item-cate">Product <i class="fa-solid fa-angle-down"></i></a>
|
||||
<div class="box box_list_cate">
|
||||
|
||||
</div>
|
||||
</div>
|
||||
<div class="item">
|
||||
<a href="" class="item-cate">Service <i class="fa-solid fa-angle-down"></i></a>
|
||||
<div class="box box_list_cate">
|
||||
|
||||
</div>
|
||||
</div>
|
||||
<a href="" class="item">What's new</a>
|
||||
<a href="" class="item">Job</a>
|
||||
<a href="" class="item">Contact</a>
|
||||
</div>
|
||||
|
||||
<select class="box-translate">
|
||||
<option value="">VN</option>
|
||||
<option value="">EN</option>
|
||||
</select>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="homepage">
|
||||
<div class="banner">
|
||||
<div class="text">
|
||||
Committed to delivering gleefulness with customer-first mindset
|
||||
</div>
|
||||
</div>
|
||||
<div class="featured-clients">
|
||||
<div class="container">
|
||||
<div class="content-clients d-flex align-items space-between">
|
||||
<div class="content-left">
|
||||
<h2 class="title">Featured Clients</h2>
|
||||
<p class="txt">From simple to complex requirements, Hurasoft always have the right and simple
|
||||
answer to help clients accomplish their
|
||||
goals.</p>
|
||||
</div>
|
||||
<div class="content-right d-flex align-items">
|
||||
<a href="" class="item">
|
||||
<img src="./assets/images/logo_anphat.png" width="100%" height="100%" alt="anphat">
|
||||
</a>
|
||||
<a href="" class="item">
|
||||
<img src="./assets/images/logo-hacom.png" width="100%" height="100%" alt="hacom">
|
||||
</a>
|
||||
<a href="" class="item">
|
||||
<img src="./assets/images//logo-traphaco.png" width="100%" height="100%" alt="traphaco">
|
||||
</a>
|
||||
<a href="" class="item">
|
||||
<img src="./assets/images/logo-xuanvu.png" width="100%" height="100%" alt="xuanvu">
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="box-product">
|
||||
<div class="container">
|
||||
<div class="main-title">
|
||||
<h2 class="title">Product</h2>
|
||||
<p>We have been accompanying Vietnamese businesses in the field of e-commerce.</p>
|
||||
</div>
|
||||
<div class="content-box-product d-flex align-items">
|
||||
<div class="content-left">
|
||||
<a href="">
|
||||
<img src="./assets/images/main-product.png" width="100%" height="100%" alt="product">
|
||||
</a>
|
||||
</div>
|
||||
<div class="content-right d-flex flex-wrap">
|
||||
<div class="item">
|
||||
<a href="" class="logo">
|
||||
<img src="./assets/images/logo_hura8.png" width="106px" height="20px" alt="logohura8">
|
||||
</a>
|
||||
<p class="txt">
|
||||
Best in class for enterprise's ecommerce operation
|
||||
</p>
|
||||
</div>
|
||||
<div class="item">
|
||||
<a href="" class="logo">
|
||||
<img src="./assets/images/logo_adman.png" width="91px" height="25px" alt="logo_adman">
|
||||
</a>
|
||||
<p class="txt">
|
||||
Well-rounded marketing platform for professionals
|
||||
</p>
|
||||
</div>
|
||||
<div class="item xstore">
|
||||
<a href="" class="logo">
|
||||
<img src="./assets/images/logo_xstore.png" width="80p" height="24px" alt="logo_xstore">
|
||||
</a>
|
||||
<p class="txt">
|
||||
A complete suite of orders, inventory and customers management for SMEs. Complemented
|
||||
with a smart POS.
|
||||
</p>
|
||||
</div>
|
||||
<div class="item">
|
||||
<a href="" class="logo">
|
||||
<img src="./assets/images/logo-chatngay.png" width="129px" height="38px"
|
||||
alt="logo-chatngay">
|
||||
</a>
|
||||
<p class="txt">
|
||||
Customer live support redefined
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="box-service">
|
||||
<div class="container">
|
||||
<div class="title">Service</div>
|
||||
<div class="content-service d-flex">
|
||||
<div class="item-service">
|
||||
<div class="box-image">
|
||||
<img src="./assets/images/icon-ecommerce.png" width="100%" height="100%" alt="icon">
|
||||
</div>
|
||||
<div class="cnt">
|
||||
<b>eCommerce Management</b>
|
||||
<p>Outsource ecommerce operation's complexities to us and focus on delivering happiness to
|
||||
your customers.</p>
|
||||
</div>
|
||||
<a href="" class="link d-flex align-items space-between">
|
||||
<span>Detail</span>
|
||||
<i class="fa-solid fa-arrow-right-long"></i>
|
||||
</a>
|
||||
</div>
|
||||
<div class="item-service">
|
||||
<div class="box-image">
|
||||
<img src="./assets/images/icon-cloud.png" width="100%" height="100%" alt="icon">
|
||||
</div>
|
||||
<div class="cnt">
|
||||
<b>Cloud Service</b>
|
||||
<p>Rest assured of unin terrupted service with cloud infrastructure, backup, DNS and domain
|
||||
provided by HuraCloud</p>
|
||||
</div>
|
||||
<a href="" class="link d-flex align-items space-between">
|
||||
<span>Detail</span>
|
||||
<i class="fa-solid fa-arrow-right-long"></i>
|
||||
</a>
|
||||
</div>
|
||||
<div class="item-service">
|
||||
<div class="box-image">
|
||||
<img src="./assets/images/icon-software.png" width="100%" height="100%" alt="icon">
|
||||
</div>
|
||||
<div class="cnt">
|
||||
<b>Software development</b>
|
||||
<p>Having ideas for app/web development? Contact us if you need an extra hand</p>
|
||||
</div>
|
||||
<a href="" class="link d-flex align-items space-between">
|
||||
<span>Detail</span>
|
||||
<i class="fa-solid fa-arrow-right-long"></i>
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="box-article">
|
||||
<div class="container">
|
||||
<div class="main-title d-flex align-items space-between">
|
||||
<h2 class="title">What's new</h2>
|
||||
<a href="/tin-tuc" class="view-all">View all</a>
|
||||
</div>
|
||||
<div class="content-article swiper" id="js-slider-article">
|
||||
<div class="swiper-wrapper">
|
||||
<div class="swiper-slide">
|
||||
<div class="item-article">
|
||||
<a href="" class="image-article">
|
||||
<img src="./assets/images/image-article.png" alt="">
|
||||
</a>
|
||||
<div class="content-article">
|
||||
<a href="" class="name d-flex align-items space-between">
|
||||
<span>7 Xu hướng thiết kế web cho năm 2024</span>
|
||||
<div class="icon-link">
|
||||
<i class="fa-solid fa-arrow-right-long"></i>
|
||||
</div>
|
||||
</a>
|
||||
<div class="summary line-clamp-4">
|
||||
Thế giới của thiết kế web không chỉ là về việc thích ứng với các thay đổi — nó
|
||||
là về việc dẫn đầu cuộc đua vào một tương
|
||||
lai số hóa ngày càng sâu sắc, tương tác và thông minh hơn...
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="swiper-slide">
|
||||
<div class="item-article">
|
||||
<a href="" class="image-article">
|
||||
<img src="./assets/images/image-article.png" alt="">
|
||||
</a>
|
||||
<div class="content-article">
|
||||
<a href="" class="name d-flex align-items space-between">
|
||||
<span>7 Xu hướng thiết kế web cho năm 2024</span>
|
||||
<div class="icon-link">
|
||||
<i class="fa-solid fa-arrow-right-long"></i>
|
||||
</div>
|
||||
</a>
|
||||
<div class="summary line-clamp-4">
|
||||
Thế giới của thiết kế web không chỉ là về việc thích ứng với các thay đổi — nó
|
||||
là về việc dẫn đầu cuộc đua vào một tương
|
||||
lai số hóa ngày càng sâu sắc, tương tác và thông minh hơn...
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="swiper-slide">
|
||||
<div class="item-article">
|
||||
<a href="" class="image-article">
|
||||
<img src="./assets/images/image-article.png" alt="">
|
||||
</a>
|
||||
<div class="content-article">
|
||||
<a href="" class="name d-flex align-items space-between">
|
||||
<span>7 Xu hướng thiết kế web cho năm 2024</span>
|
||||
<div class="icon-link">
|
||||
<i class="fa-solid fa-arrow-right-long"></i>
|
||||
</div>
|
||||
</a>
|
||||
<div class="summary line-clamp-4">
|
||||
Thế giới của thiết kế web không chỉ là về việc thích ứng với các thay đổi — nó
|
||||
là về việc dẫn đầu cuộc đua vào một tương
|
||||
lai số hóa ngày càng sâu sắc, tương tác và thông minh hơn...
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="swiper-slide">
|
||||
<div class="item-article">
|
||||
<a href="" class="image-article">
|
||||
<img src="./assets/images/image-article.png" alt="">
|
||||
</a>
|
||||
<div class="content-article">
|
||||
<a href="" class="name d-flex align-items space-between">
|
||||
<span>7 Xu hướng thiết kế web cho năm 2024</span>
|
||||
<div class="icon-link">
|
||||
<i class="fa-solid fa-arrow-right-long"></i>
|
||||
</div>
|
||||
</a>
|
||||
<div class="summary line-clamp-4">
|
||||
Thế giới của thiết kế web không chỉ là về việc thích ứng với các thay đổi — nó
|
||||
là về việc dẫn đầu cuộc đua vào một tương
|
||||
lai số hóa ngày càng sâu sắc, tương tác và thông minh hơn...
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="swiper-slide">
|
||||
<div class="item-article">
|
||||
<a href="" class="image-article">
|
||||
<img src="./assets/images/image-article.png" alt="">
|
||||
</a>
|
||||
<div class="content-article">
|
||||
<a href="" class="name d-flex align-items space-between">
|
||||
<span>7 Xu hướng thiết kế web cho năm 2024</span>
|
||||
<div class="icon-link">
|
||||
<i class="fa-solid fa-arrow-right-long"></i>
|
||||
</div>
|
||||
</a>
|
||||
<div class="summary line-clamp-4">
|
||||
Thế giới của thiết kế web không chỉ là về việc thích ứng với các thay đổi — nó
|
||||
là về việc dẫn đầu cuộc đua vào một tương
|
||||
lai số hóa ngày càng sâu sắc, tương tác và thông minh hơn...
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="swiper-slide">
|
||||
<div class="item-article">
|
||||
<a href="" class="image-article">
|
||||
<img src="./assets/images/image-article.png" alt="">
|
||||
</a>
|
||||
<div class="content-article">
|
||||
<a href="" class="name d-flex align-items space-between">
|
||||
<span>7 Xu hướng thiết kế web cho năm 2024</span>
|
||||
<div class="icon-link">
|
||||
<i class="fa-solid fa-arrow-right-long"></i>
|
||||
</div>
|
||||
</a>
|
||||
<div class="summary line-clamp-4">
|
||||
Thế giới của thiết kế web không chỉ là về việc thích ứng với các thay đổi — nó
|
||||
là về việc dẫn đầu cuộc đua vào một tương
|
||||
lai số hóa ngày càng sâu sắc, tương tác và thông minh hơn...
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="swiper-button-next"></div>
|
||||
<div class="swiper-button-prev"></div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="footer">
|
||||
<div class="contact-us">
|
||||
<h2 class="title">Contact us for cousultation</h2>
|
||||
<div class="form-contact">
|
||||
<div class="content-contact">
|
||||
<input type="text" class="input-contact" placeholder="Enter email or number phone">
|
||||
<a href="javascript:void(0)" class="btn-submit">
|
||||
<i class="fa-solid fa-paper-plane"></i>
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="main-footer">
|
||||
<div class="container">
|
||||
<div class="content-main-footer d-flex">
|
||||
<div class="item-footer">
|
||||
<b class="title">Hurasoft Company Limited</b>
|
||||
<div class="cnt">
|
||||
<p>ADDRESS: Floor 5 - No. 3, Lane 18 Yen Lang, Dong Da District, Hanoi City</p>
|
||||
<p>Hotline: 02422.138.068 - 0904.580.181</p>
|
||||
<p>Email: hotro@hurasoft.com</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="item-footer">
|
||||
<b class="title">Introduce</b>
|
||||
<div class="cnt">
|
||||
<a href="">About us</a>
|
||||
<a href="">Client</a>
|
||||
<a href="">Blog</a>
|
||||
<a href="">Contact</a>
|
||||
<a href="">Information security</a>
|
||||
</div>
|
||||
</div>
|
||||
<div class="item-footer">
|
||||
<b class="title">Product</b>
|
||||
<div class="cnt">
|
||||
<a href="">Hura8</a>
|
||||
<a href="">Xstore</a>
|
||||
<a href="">adMan</a>
|
||||
<a href="">Chatngay</a>
|
||||
</div>
|
||||
</div>
|
||||
<div class="item-footer">
|
||||
<b class="title">Service</b>
|
||||
<div class="cnt">
|
||||
<a href="">eCommerce Management</a>
|
||||
<a href="">Cloud Service</a>
|
||||
<a href="">The infrastructure</a>
|
||||
</div>
|
||||
<div class="d-flex">
|
||||
<a href="">
|
||||
<img src="./assets/images/icon-zalo.png" width="27px" height="27px" alt="zalo">
|
||||
</a>
|
||||
<a href="" style="margin-left: 10px;">
|
||||
<img src="./assets/images/icon-facebook.png" width="27px" height="27px" alt="facebook">
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="footer-bottom">
|
||||
<div class="container">
|
||||
<p>Copyright @2024 Hurasoft. GPKD số: 0106897291 do Sở Kế hoạch và Đầu tư Thành phố Hà Nội cấp</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
<script src=" https://cdnjs.cloudflare.com/ajax/libs/jquery/3.7.1/jquery.min.js"></script>
|
||||
<script src="https://cdn.jsdelivr.net/npm/swiper@10/swiper-bundle.min.js"></script>
|
||||
<script src="./assets/js/main.js"></script>
|
||||
</body>
|
||||
|
||||
</html>
|
||||
184
product.html
Normal file
@@ -0,0 +1,184 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Hurasoft</title>
|
||||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" />
|
||||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/swiper@10/swiper-bundle.min.css" />
|
||||
<link rel="stylesheet" href="./assets/css/style.css">
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<div class="header">
|
||||
<div class="container">
|
||||
<div class="content-main-header d-flex align-items space-between">
|
||||
<a href="/" class="logo">
|
||||
<img src="./assets/images/logo.png" width="100%" height="100%" alt="logo">
|
||||
</a>
|
||||
<div class="list-menu d-flex align-items">
|
||||
<a href="/lien-he" class="item active">About</a>
|
||||
<div class="item">
|
||||
<a href="" class="item-cate">Product <i class="fa-solid fa-angle-down"></i></a>
|
||||
<div class="box box_list_cate">
|
||||
|
||||
</div>
|
||||
</div>
|
||||
<div class="item">
|
||||
<a href="" class="item-cate">Service <i class="fa-solid fa-angle-down"></i></a>
|
||||
<div class="box box_list_cate">
|
||||
|
||||
</div>
|
||||
</div>
|
||||
<a href="" class="item">What's new</a>
|
||||
<a href="" class="item">Job</a>
|
||||
<a href="" class="item">Contact</a>
|
||||
</div>
|
||||
|
||||
<select class="box-translate">
|
||||
<option value="">VN</option>
|
||||
<option value="">EN</option>
|
||||
</select>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="page-product">
|
||||
<div class="container">
|
||||
<h1 class="title">Product</h1>
|
||||
<p class="note-product">We have been accompanying Vietnamese businesses in the field of e-commerce.</p>
|
||||
|
||||
|
||||
<div class="list-product d-flex flex-wrap">
|
||||
<div class="item-product d-flex">
|
||||
<div class="left">
|
||||
<div class="logo">
|
||||
<img src="./assets/images/logo-chatngay.png" width="129px" height="38px">
|
||||
</div>
|
||||
<p class="desc">Customer live support redefined</p>
|
||||
<a href="" class="link">Click here</a>
|
||||
</div>
|
||||
<div class="right">
|
||||
<img src="./assets/images/image-product.png" alt="">
|
||||
</div>
|
||||
</div>
|
||||
<div class="item-product d-flex">
|
||||
<div class="left">
|
||||
<div class="logo">
|
||||
<img src="./assets/images/logo_hura8.png" width="106px" height="20px" alt="logohura8">
|
||||
</div>
|
||||
<p class="desc">Best in class for enterprise's ecommerce operation</p>
|
||||
<a href="" class="link">Click here</a>
|
||||
</div>
|
||||
<div class="right">
|
||||
<img src="./assets/images/image-product.png" alt="">
|
||||
|
||||
</div>
|
||||
</div>
|
||||
<div class="item-product d-flex">
|
||||
<div class="left">
|
||||
<div class="logo">
|
||||
<img src="./assets/images/logo_xstore.png" width="80p" height="24px" alt="logo_xstore">
|
||||
|
||||
</div>
|
||||
<p class="desc">A complete suite of orders, inventory and customers management for SMEs.
|
||||
Complemented
|
||||
with a smart POS.</p>
|
||||
<a href="" class="link">Click here</a>
|
||||
</div>
|
||||
<div class="right">
|
||||
<img src="./assets/images/image-product.png" alt="">
|
||||
</div>
|
||||
</div>
|
||||
<div class="item-product d-flex">
|
||||
<div class="left">
|
||||
<div class="logo">
|
||||
<img src="./assets/images/logo_adman.png" width="91px" height="25px" alt="logo_adman">
|
||||
</div>
|
||||
<p class="desc">Well-rounded marketing platform for professionals</p>
|
||||
<a href="" class="link">Click here</a>
|
||||
</div>
|
||||
<div class="right">
|
||||
<img src="./assets/images/image-product.png" alt="">
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="footer">
|
||||
<div class="contact-us">
|
||||
<h2 class="title">Contact us for cousultation</h2>
|
||||
<div class="form-contact">
|
||||
<div class="content-contact">
|
||||
<input type="text" class="input-contact" placeholder="Enter email or number phone">
|
||||
<a href="javascript:void(0)" class="btn-submit">
|
||||
<i class="fa-solid fa-paper-plane"></i>
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="main-footer">
|
||||
<div class="container">
|
||||
<div class="content-main-footer d-flex">
|
||||
<div class="item-footer">
|
||||
<b class="title">Hurasoft Company Limited</b>
|
||||
<div class="cnt">
|
||||
<p>ADDRESS: Floor 5 - No. 3, Lane 18 Yen Lang, Dong Da District, Hanoi City</p>
|
||||
<p>Hotline: 02422.138.068 - 0904.580.181</p>
|
||||
<p>Email: hotro@hurasoft.com</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="item-footer">
|
||||
<b class="title">Introduce</b>
|
||||
<div class="cnt">
|
||||
<a href="">About us</a>
|
||||
<a href="">Client</a>
|
||||
<a href="">Blog</a>
|
||||
<a href="">Contact</a>
|
||||
<a href="">Information security</a>
|
||||
</div>
|
||||
</div>
|
||||
<div class="item-footer">
|
||||
<b class="title">Product</b>
|
||||
<div class="cnt">
|
||||
<a href="">Hura8</a>
|
||||
<a href="">Xstore</a>
|
||||
<a href="">adMan</a>
|
||||
<a href="">Chatngay</a>
|
||||
</div>
|
||||
</div>
|
||||
<div class="item-footer">
|
||||
<b class="title">Service</b>
|
||||
<div class="cnt">
|
||||
<a href="">eCommerce Management</a>
|
||||
<a href="">Cloud Service</a>
|
||||
<a href="">The infrastructure</a>
|
||||
</div>
|
||||
<div class="d-flex">
|
||||
<a href="">
|
||||
<img src="./assets/images/icon-zalo.png" width="27px" height="27px" alt="zalo">
|
||||
</a>
|
||||
<a href="" style="margin-left: 10px;">
|
||||
<img src="./assets/images/icon-facebook.png" width="27px" height="27px" alt="facebook">
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="footer-bottom">
|
||||
<div class="container">
|
||||
<p>Copyright @2024 Hurasoft. GPKD số: 0106897291 do Sở Kế hoạch và Đầu tư Thành phố Hà Nội cấp</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<script src=" https://cdnjs.cloudflare.com/ajax/libs/jquery/3.7.1/jquery.min.js"></script>
|
||||
<script src="https://cdn.jsdelivr.net/npm/swiper@10/swiper-bundle.min.js"></script>
|
||||
<script src="./assets/js/main.js"></script>
|
||||
</body>
|
||||
|
||||
</html>
|
||||