1102 lines
22 KiB
CSS
1102 lines
22 KiB
CSS
|
|
@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;
|
||
|
|
height: 5px;
|
||
|
|
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: 14px;
|
||
|
|
}
|
||
|
|
|
||
|
|
html {
|
||
|
|
font-size: 100%;
|
||
|
|
font-family: "shopee";
|
||
|
|
}
|
||
|
|
|
||
|
|
body.active {
|
||
|
|
overflow: hidden;
|
||
|
|
}
|
||
|
|
|
||
|
|
img {
|
||
|
|
max-width: 100%;
|
||
|
|
height: auto;
|
||
|
|
}
|
||
|
|
|
||
|
|
a {
|
||
|
|
text-decoration: none;
|
||
|
|
color: var(--text-black);
|
||
|
|
}
|
||
|
|
|
||
|
|
.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;
|
||
|
|
}
|
||
|
|
|
||
|
|
.container {
|
||
|
|
padding: 0 10px;
|
||
|
|
max-width: 100%;
|
||
|
|
margin: 0 auto;
|
||
|
|
}
|
||
|
|
|
||
|
|
.container-mb {
|
||
|
|
max-width: 414px;
|
||
|
|
margin: 0 auto;
|
||
|
|
padding: 0;
|
||
|
|
}
|
||
|
|
|
||
|
|
.header {
|
||
|
|
padding: 10px 0;
|
||
|
|
box-shadow: 0px 0px 6.7px 0px rgba(135, 135, 135, 0.25);
|
||
|
|
}
|
||
|
|
.header .logo {
|
||
|
|
width: 112px;
|
||
|
|
}
|
||
|
|
.header .icon-menu i {
|
||
|
|
font-size: 20px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.homepage .banner {
|
||
|
|
display: block;
|
||
|
|
}
|
||
|
|
.homepage .featured-clients {
|
||
|
|
margin: 20px 0;
|
||
|
|
}
|
||
|
|
.homepage .featured-clients .title {
|
||
|
|
font-size: 24px;
|
||
|
|
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: 100%;
|
||
|
|
margin-bottom: 15px;
|
||
|
|
}
|
||
|
|
.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: 10px;
|
||
|
|
height: 20px;
|
||
|
|
display: block;
|
||
|
|
}
|
||
|
|
.homepage .featured-clients .content-right .item img {
|
||
|
|
width: 100%;
|
||
|
|
height: 100%;
|
||
|
|
display: block;
|
||
|
|
}
|
||
|
|
.homepage .box-product {
|
||
|
|
margin: 50px 0;
|
||
|
|
background: rgb(245, 254, 255);
|
||
|
|
padding: 20px 10px 40px 10px;
|
||
|
|
border-radius: 20px;
|
||
|
|
}
|
||
|
|
.homepage .box-product .main-title {
|
||
|
|
margin-bottom: 30px;
|
||
|
|
}
|
||
|
|
.homepage .box-product .title {
|
||
|
|
font-size: 24px;
|
||
|
|
font-weight: 700;
|
||
|
|
background: linear-gradient(90deg, #1fa5f1 0%, #2257bb 20%);
|
||
|
|
background-clip: text;
|
||
|
|
-webkit-background-clip: text;
|
||
|
|
-webkit-text-fill-color: transparent;
|
||
|
|
margin-bottom: 10px;
|
||
|
|
}
|
||
|
|
.homepage .box-product .content-left {
|
||
|
|
width: 100%;
|
||
|
|
margin-bottom: 15px;
|
||
|
|
}
|
||
|
|
.homepage .box-product .content-left img {
|
||
|
|
width: 100%;
|
||
|
|
display: block;
|
||
|
|
margin: 0 auto;
|
||
|
|
}
|
||
|
|
.homepage .box-product .content-right {
|
||
|
|
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: 30px;
|
||
|
|
}
|
||
|
|
.homepage .box-service::before {
|
||
|
|
position: absolute;
|
||
|
|
content: "";
|
||
|
|
left: 0;
|
||
|
|
top: -50px;
|
||
|
|
background: url(../images/before-service.png) no-repeat;
|
||
|
|
height: 140px;
|
||
|
|
width: 81px;
|
||
|
|
opacity: 0.05;
|
||
|
|
background-size: contain;
|
||
|
|
}
|
||
|
|
.homepage .box-service::after {
|
||
|
|
position: absolute;
|
||
|
|
content: "";
|
||
|
|
right: -20px;
|
||
|
|
top: 35%;
|
||
|
|
background: url(../images/before-service.png) no-repeat;
|
||
|
|
height: 140px;
|
||
|
|
width: 81px;
|
||
|
|
opacity: 0.3;
|
||
|
|
background-size: contain;
|
||
|
|
transform: rotate(180deg);
|
||
|
|
}
|
||
|
|
.homepage .box-service .title {
|
||
|
|
font-size: 24px;
|
||
|
|
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 .item-service {
|
||
|
|
width: 100%;
|
||
|
|
margin-bottom: 10px;
|
||
|
|
padding: 10px;
|
||
|
|
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: rgb(247, 247, 247);
|
||
|
|
border-radius: 20px 0px 20px 0px;
|
||
|
|
padding: 20px 0;
|
||
|
|
}
|
||
|
|
.homepage .box-article .main-title .title {
|
||
|
|
font-size: 24px;
|
||
|
|
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;
|
||
|
|
margin-bottom: 15px;
|
||
|
|
}
|
||
|
|
.homepage .box-article .view-all {
|
||
|
|
border-radius: 50px;
|
||
|
|
font-weight: bold;
|
||
|
|
font-size: 13px;
|
||
|
|
background: linear-gradient(90deg, #1fa5f1 0%, #2257bb 70%);
|
||
|
|
background-clip: text;
|
||
|
|
-webkit-background-clip: text;
|
||
|
|
-webkit-text-fill-color: transparent;
|
||
|
|
border: 1px solid #1fa5f1;
|
||
|
|
margin: 0 auto;
|
||
|
|
display: block;
|
||
|
|
width: 100px;
|
||
|
|
height: 30px;
|
||
|
|
line-height: 28px;
|
||
|
|
text-align: center;
|
||
|
|
}
|
||
|
|
.homepage .box-article .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 .list-article {
|
||
|
|
overflow: auto;
|
||
|
|
margin-bottom: 25px;
|
||
|
|
}
|
||
|
|
.homepage .item-article {
|
||
|
|
background: #fff;
|
||
|
|
border-radius: 8px;
|
||
|
|
box-shadow: 0px 0px 6.7px 0px rgba(135, 135, 135, 0.25);
|
||
|
|
width: calc(50% - 10px);
|
||
|
|
margin-right: 10px;
|
||
|
|
}
|
||
|
|
.homepage .item-article .image-article {
|
||
|
|
width: 100%;
|
||
|
|
display: block;
|
||
|
|
height: 170px;
|
||
|
|
border-radius: 8px 8px 0px 0px;
|
||
|
|
overflow: hidden;
|
||
|
|
}
|
||
|
|
.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: 10px;
|
||
|
|
width: 250px;
|
||
|
|
}
|
||
|
|
.homepage .item-article .content-article .name {
|
||
|
|
margin-bottom: 10px;
|
||
|
|
}
|
||
|
|
.homepage .item-article .content-article .name span {
|
||
|
|
font-weight: 700;
|
||
|
|
}
|
||
|
|
.homepage .item-article .summary {
|
||
|
|
font-size: 13px;
|
||
|
|
color: #555;
|
||
|
|
font-weight: 400;
|
||
|
|
line-height: 18px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.footer .contact-us {
|
||
|
|
background: #fff;
|
||
|
|
padding: 30px 0;
|
||
|
|
}
|
||
|
|
.footer .contact-us .title {
|
||
|
|
font-size: 24px;
|
||
|
|
text-transform: capitalize;
|
||
|
|
text-align: center;
|
||
|
|
margin-bottom: 20px;
|
||
|
|
font-weight: 400;
|
||
|
|
}
|
||
|
|
.footer .form-contact {
|
||
|
|
width: 100%;
|
||
|
|
padding: 0 10px;
|
||
|
|
}
|
||
|
|
.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: 20px 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 {
|
||
|
|
margin-bottom: 20px;
|
||
|
|
}
|
||
|
|
.footer .item-footer .title {
|
||
|
|
margin-bottom: 10px;
|
||
|
|
display: block;
|
||
|
|
font-size: 16px;
|
||
|
|
}
|
||
|
|
.footer .item-footer p {
|
||
|
|
margin-bottom: 10px;
|
||
|
|
color: #606060;
|
||
|
|
font-size: 13px;
|
||
|
|
}
|
||
|
|
.footer .item-footer a {
|
||
|
|
display: block;
|
||
|
|
margin-bottom: 10px;
|
||
|
|
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 .w-5 {
|
||
|
|
width: 50%;
|
||
|
|
}
|
||
|
|
.footer .footer-bottom {
|
||
|
|
border-top: 1px solid #d9d9d9;
|
||
|
|
padding: 15px 0;
|
||
|
|
background: #f8f8f8;
|
||
|
|
}
|
||
|
|
.footer .footer-bottom p {
|
||
|
|
color: #606060;
|
||
|
|
font-size: 13px;
|
||
|
|
}
|
||
|
|
.footer .show-footer .cnt {
|
||
|
|
display: none;
|
||
|
|
}
|
||
|
|
.footer .show-footer.active .cnt {
|
||
|
|
display: block;
|
||
|
|
}
|
||
|
|
|
||
|
|
.trusted-partner {
|
||
|
|
margin: 30px 0;
|
||
|
|
}
|
||
|
|
.trusted-partner .partler-left {
|
||
|
|
margin-bottom: 20px;
|
||
|
|
}
|
||
|
|
.trusted-partner .title {
|
||
|
|
font-size: 24px;
|
||
|
|
font-weight: 700;
|
||
|
|
background: var(--color-active);
|
||
|
|
background-clip: text;
|
||
|
|
-webkit-background-clip: text;
|
||
|
|
-webkit-text-fill-color: transparent;
|
||
|
|
margin-bottom: 20px;
|
||
|
|
text-align: center;
|
||
|
|
}
|
||
|
|
.trusted-partner .content p {
|
||
|
|
font-size: 13px;
|
||
|
|
color: #555;
|
||
|
|
margin-bottom: 20px;
|
||
|
|
text-align: center;
|
||
|
|
}
|
||
|
|
|
||
|
|
.company-culture {
|
||
|
|
margin-bottom: 30px;
|
||
|
|
}
|
||
|
|
.company-culture .title {
|
||
|
|
background: var(--color-active);
|
||
|
|
background-clip: text;
|
||
|
|
-webkit-background-clip: text;
|
||
|
|
-webkit-text-fill-color: transparent;
|
||
|
|
font-size: 24px;
|
||
|
|
font-weight: 700;
|
||
|
|
text-align: center;
|
||
|
|
margin-bottom: 20px;
|
||
|
|
}
|
||
|
|
.company-culture .note {
|
||
|
|
font-size: 13px;
|
||
|
|
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: 24px;
|
||
|
|
font-weight: 700;
|
||
|
|
text-align: center;
|
||
|
|
margin: 40px 0 20px 0;
|
||
|
|
}
|
||
|
|
.page-product .note-product {
|
||
|
|
font-size: 14px;
|
||
|
|
color: #555;
|
||
|
|
text-align: center;
|
||
|
|
margin-bottom: 40px;
|
||
|
|
}
|
||
|
|
.page-product .item-product {
|
||
|
|
width: 100%;
|
||
|
|
margin-bottom: 20px;
|
||
|
|
padding: 20px;
|
||
|
|
border-radius: 20px;
|
||
|
|
background: rgb(235, 253, 255);
|
||
|
|
}
|
||
|
|
.page-product .item-product .left {
|
||
|
|
width: calc(100% - 150px);
|
||
|
|
}
|
||
|
|
.page-product .item-product .right {
|
||
|
|
width: 150px;
|
||
|
|
}
|
||
|
|
.page-product .item-product.blue {
|
||
|
|
background: rgb(57, 104, 218);
|
||
|
|
}
|
||
|
|
.page-product .item-product.blue .desc {
|
||
|
|
color: #fff;
|
||
|
|
}
|
||
|
|
.page-product .item-product.blue .logo img {
|
||
|
|
filter: brightness(0) invert(1);
|
||
|
|
}
|
||
|
|
.page-product .item-product.blue .link {
|
||
|
|
background: #fff;
|
||
|
|
}
|
||
|
|
.page-product .item-product.blue .link span {
|
||
|
|
background-image: linear-gradient(90deg, #1fa5f1 0%, #2257bb 100%);
|
||
|
|
background-clip: text;
|
||
|
|
-webkit-background-clip: text;
|
||
|
|
-webkit-text-fill-color: transparent;
|
||
|
|
}
|
||
|
|
.page-product .item-product .desc {
|
||
|
|
font-size: 13px;
|
||
|
|
margin: 15px 0;
|
||
|
|
}
|
||
|
|
.page-product .item-product .link {
|
||
|
|
background: linear-gradient(90deg, #1fa5f1 0%, #2257bb 100%);
|
||
|
|
border-radius: 50px;
|
||
|
|
width: 135px;
|
||
|
|
height: 40px;
|
||
|
|
display: block;
|
||
|
|
text-align: center;
|
||
|
|
font-size: 16px;
|
||
|
|
color: #fff;
|
||
|
|
font-weight: 700;
|
||
|
|
line-height: 40px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.page-service .title {
|
||
|
|
background: linear-gradient(90deg, #1fa5f1 0%, #2257bb 100%);
|
||
|
|
background-clip: text;
|
||
|
|
-webkit-background-clip: text;
|
||
|
|
-webkit-text-fill-color: transparent;
|
||
|
|
font-size: 24px;
|
||
|
|
font-weight: 700;
|
||
|
|
text-align: center;
|
||
|
|
margin: 40px 0;
|
||
|
|
}
|
||
|
|
.page-service .list-service {
|
||
|
|
overflow: auto;
|
||
|
|
}
|
||
|
|
.page-service .item-service {
|
||
|
|
padding: 60px 0;
|
||
|
|
margin-right: 10px;
|
||
|
|
background: rgb(217, 241, 255);
|
||
|
|
border-radius: 200px;
|
||
|
|
}
|
||
|
|
.page-service .item-service .image {
|
||
|
|
display: block;
|
||
|
|
margin: 0 auto;
|
||
|
|
height: 270px;
|
||
|
|
}
|
||
|
|
.page-service .item-service .image img {
|
||
|
|
display: block;
|
||
|
|
margin: 0 auto;
|
||
|
|
height: auto;
|
||
|
|
}
|
||
|
|
.page-service .item-service .content {
|
||
|
|
padding: 0 10px;
|
||
|
|
width: 260px;
|
||
|
|
}
|
||
|
|
.page-service .item-service .name {
|
||
|
|
padding: 10px 0;
|
||
|
|
text-align: center;
|
||
|
|
font-size: 16px;
|
||
|
|
font-weight: 700;
|
||
|
|
color: rgb(12, 88, 139);
|
||
|
|
display: block;
|
||
|
|
}
|
||
|
|
.page-service .item-service .note {
|
||
|
|
color: rgb(85, 85, 85);
|
||
|
|
font-size: 13px;
|
||
|
|
text-align: center;
|
||
|
|
padding: 0 15px;
|
||
|
|
}
|
||
|
|
.page-service .item-service:nth-child(2) {
|
||
|
|
background: rgb(247, 234, 255);
|
||
|
|
}
|
||
|
|
.page-service .item-service:nth-child(3) {
|
||
|
|
background: rgb(234, 255, 249);
|
||
|
|
}
|
||
|
|
|
||
|
|
.item-article .image-article {
|
||
|
|
margin-bottom: 10px;
|
||
|
|
overflow: hidden;
|
||
|
|
display: block;
|
||
|
|
border-radius: 10px;
|
||
|
|
}
|
||
|
|
.item-article .image-article img {
|
||
|
|
width: 100%;
|
||
|
|
height: 100%;
|
||
|
|
display: block;
|
||
|
|
border-radius: 10px;
|
||
|
|
transition: 0.5s all;
|
||
|
|
transform: scale(1);
|
||
|
|
}
|
||
|
|
.item-article .image-article:hover img {
|
||
|
|
transform: scale(1.02);
|
||
|
|
transition: 0.5s all;
|
||
|
|
}
|
||
|
|
.item-article .name-article {
|
||
|
|
font-size: 16px;
|
||
|
|
font-weight: 700;
|
||
|
|
display: block;
|
||
|
|
margin-bottom: 10px;
|
||
|
|
}
|
||
|
|
.item-article .tab-category {
|
||
|
|
padding: 5px 15px;
|
||
|
|
background: rgb(211, 211, 211);
|
||
|
|
margin-right: 10px;
|
||
|
|
border-radius: 50px;
|
||
|
|
font-size: 15px;
|
||
|
|
}
|
||
|
|
.item-article .time {
|
||
|
|
color: rgb(85, 85, 85);
|
||
|
|
}
|
||
|
|
|
||
|
|
.page-article {
|
||
|
|
margin: 30px 0;
|
||
|
|
}
|
||
|
|
.page-article .title {
|
||
|
|
font-size: 24px;
|
||
|
|
font-weight: 700;
|
||
|
|
background: var(--color-active);
|
||
|
|
background-clip: text;
|
||
|
|
-webkit-background-clip: text;
|
||
|
|
-webkit-text-fill-color: transparent;
|
||
|
|
margin-bottom: 20px;
|
||
|
|
text-align: center;
|
||
|
|
}
|
||
|
|
.page-article .tab-list {
|
||
|
|
padding: 10px 0;
|
||
|
|
border-bottom: 1px solid rgb(217, 217, 217);
|
||
|
|
}
|
||
|
|
.page-article .tab-list .item {
|
||
|
|
margin-right: 15px;
|
||
|
|
padding: 5px 15px;
|
||
|
|
border: 1px solid rgb(217, 217, 217);
|
||
|
|
border-radius: 50px;
|
||
|
|
color: rgb(85, 85, 85);
|
||
|
|
text-transform: uppercase;
|
||
|
|
font-size: 15px;
|
||
|
|
margin-bottom: 15px;
|
||
|
|
}
|
||
|
|
.page-article .tab-list .item.active {
|
||
|
|
background: linear-gradient(90deg, #1fa5f1 0%, #2257bb 100%);
|
||
|
|
color: #fff;
|
||
|
|
font-weight: 700;
|
||
|
|
padding: 5px 30px;
|
||
|
|
}
|
||
|
|
.page-article .list-article .item-article {
|
||
|
|
width: 100%;
|
||
|
|
margin-bottom: 20px;
|
||
|
|
}
|
||
|
|
.page-article .list-article .image-article {
|
||
|
|
width: 100%;
|
||
|
|
height: 250px;
|
||
|
|
display: block;
|
||
|
|
margin-bottom: 10px;
|
||
|
|
}
|
||
|
|
.page-article .list-article .name-article:hover {
|
||
|
|
background: var(--color-active);
|
||
|
|
background-clip: text;
|
||
|
|
-webkit-background-clip: text;
|
||
|
|
-webkit-text-fill-color: transparent;
|
||
|
|
}
|
||
|
|
|
||
|
|
.paging {
|
||
|
|
margin-top: 20px;
|
||
|
|
}
|
||
|
|
.paging .item {
|
||
|
|
width: 35px;
|
||
|
|
height: 35px;
|
||
|
|
margin-right: 10px;
|
||
|
|
line-height: 36px;
|
||
|
|
background: rgb(234, 234, 234);
|
||
|
|
text-align: center;
|
||
|
|
border-radius: 50%;
|
||
|
|
}
|
||
|
|
.paging .item.active, .paging .item:hover {
|
||
|
|
background: linear-gradient(180deg, #1d8bca 0%, #0c588b 100%);
|
||
|
|
color: #fff;
|
||
|
|
}
|
||
|
|
|
||
|
|
.breadcrumb-global {
|
||
|
|
margin: 20px 0;
|
||
|
|
color: rgb(85, 85, 85);
|
||
|
|
}
|
||
|
|
.breadcrumb-global i {
|
||
|
|
margin: 0 10px;
|
||
|
|
display: block;
|
||
|
|
}
|
||
|
|
.breadcrumb-global li {
|
||
|
|
display: flex;
|
||
|
|
align-items: center;
|
||
|
|
}
|
||
|
|
|
||
|
|
.page-article-detail .content-left {
|
||
|
|
margin-bottom: 20px;
|
||
|
|
}
|
||
|
|
.page-article-detail .content-right {
|
||
|
|
width: 100%;
|
||
|
|
}
|
||
|
|
.page-article-detail .main-title {
|
||
|
|
padding: 15px 0;
|
||
|
|
border-bottom: 1px solid rgb(217, 217, 217);
|
||
|
|
margin-bottom: 15px;
|
||
|
|
}
|
||
|
|
.page-article-detail .main-title .name {
|
||
|
|
font-size: 24px;
|
||
|
|
margin-bottom: 10px;
|
||
|
|
}
|
||
|
|
.page-article-detail .main-title .tag-category {
|
||
|
|
padding: 5px 15px;
|
||
|
|
background: rgb(211, 211, 211);
|
||
|
|
margin-right: 10px;
|
||
|
|
border-radius: 50px;
|
||
|
|
font-size: 15px;
|
||
|
|
}
|
||
|
|
.page-article-detail .main-title .time {
|
||
|
|
color: rgb(85, 85, 85);
|
||
|
|
}
|
||
|
|
.page-article-detail .icon-share {
|
||
|
|
padding-top: 15px;
|
||
|
|
margin-top: 15px;
|
||
|
|
border-top: 1px solid #d9d9d9;
|
||
|
|
}
|
||
|
|
.page-article-detail .icon-share a {
|
||
|
|
margin-left: 10px;
|
||
|
|
}
|
||
|
|
.page-article-detail .box-featured-news .title {
|
||
|
|
height: 40px;
|
||
|
|
width: 100%;
|
||
|
|
background: linear-gradient(90deg, #1fa5f1 0%, #2257bb 100%);
|
||
|
|
padding: 0 20px;
|
||
|
|
line-height: 40px;
|
||
|
|
color: #fff;
|
||
|
|
font-size: 18px;
|
||
|
|
font-weight: 700;
|
||
|
|
border-radius: 10px 10px 0 0;
|
||
|
|
}
|
||
|
|
.page-article-detail .box-featured-news .list {
|
||
|
|
padding: 15px;
|
||
|
|
border: 1px solid #d9d9d9;
|
||
|
|
border-top: 0;
|
||
|
|
}
|
||
|
|
.page-article-detail .box-featured-news .image-article {
|
||
|
|
width: 140px;
|
||
|
|
height: 85px;
|
||
|
|
margin-right: 10px;
|
||
|
|
}
|
||
|
|
.page-article-detail .box-featured-news .content-article {
|
||
|
|
width: calc(100% - 155px);
|
||
|
|
}
|
||
|
|
|
||
|
|
.nd p {
|
||
|
|
line-height: 23px;
|
||
|
|
font-size: 15px;
|
||
|
|
color: rgb(85, 85, 85);
|
||
|
|
}
|
||
|
|
|
||
|
|
.page-contact .content-contact {
|
||
|
|
padding: 20px 0;
|
||
|
|
}
|
||
|
|
.page-contact .contact-left {
|
||
|
|
margin-bottom: 20px;
|
||
|
|
}
|
||
|
|
.page-contact .contact-left .title {
|
||
|
|
background: linear-gradient(90deg, #1fa5f1 0%, #2257bb 20%);
|
||
|
|
background-clip: text;
|
||
|
|
-webkit-background-clip: text;
|
||
|
|
-webkit-text-fill-color: transparent;
|
||
|
|
font-size: 20px;
|
||
|
|
font-weight: 700;
|
||
|
|
text-transform: uppercase;
|
||
|
|
margin-bottom: 15px;
|
||
|
|
}
|
||
|
|
.page-contact .contact-left .item {
|
||
|
|
margin-bottom: 20px;
|
||
|
|
}
|
||
|
|
.page-contact .contact-left .item b {
|
||
|
|
margin-right: 7px;
|
||
|
|
}
|
||
|
|
.page-contact .contact-right {
|
||
|
|
width: 100%;
|
||
|
|
}
|
||
|
|
.page-contact .form-control {
|
||
|
|
width: 100%;
|
||
|
|
margin-bottom: 15px;
|
||
|
|
}
|
||
|
|
.page-contact .form-control input {
|
||
|
|
width: 100%;
|
||
|
|
height: 45px;
|
||
|
|
padding: 0 20px;
|
||
|
|
border-radius: 40px;
|
||
|
|
background: rgb(246, 246, 246);
|
||
|
|
border: 0;
|
||
|
|
outline: 0;
|
||
|
|
}
|
||
|
|
.page-contact .form-control input::-moz-placeholder {
|
||
|
|
color: rgb(167, 166, 166);
|
||
|
|
}
|
||
|
|
.page-contact .form-control input::placeholder {
|
||
|
|
color: rgb(167, 166, 166);
|
||
|
|
}
|
||
|
|
.page-contact .form-control input:focus {
|
||
|
|
border: 2px solid #1fa5f1;
|
||
|
|
}
|
||
|
|
.page-contact .group-form {
|
||
|
|
margin-right: -15px;
|
||
|
|
width: auto;
|
||
|
|
}
|
||
|
|
.page-contact .form-2 {
|
||
|
|
width: calc(50% - 15px);
|
||
|
|
margin-right: 15px;
|
||
|
|
}
|
||
|
|
.page-contact .btn-send {
|
||
|
|
display: block;
|
||
|
|
width: 150px;
|
||
|
|
height: 45px;
|
||
|
|
line-height: 45px;
|
||
|
|
text-align: center;
|
||
|
|
background: linear-gradient(90deg, #1fa5f1 0%, #2257bb 100%);
|
||
|
|
border-radius: 50px;
|
||
|
|
text-align: center;
|
||
|
|
color: #fff;
|
||
|
|
text-transform: uppercase;
|
||
|
|
font-weight: 700;
|
||
|
|
}
|
||
|
|
.page-contact .btn-send:hover {
|
||
|
|
background: #fff;
|
||
|
|
border: 2px solid #1fa5f1;
|
||
|
|
background: linear-gradient(90deg, #1fa5f1 0%, #2257bb 70%);
|
||
|
|
background-clip: text;
|
||
|
|
-webkit-background-clip: text;
|
||
|
|
-webkit-text-fill-color: transparent;
|
||
|
|
}
|
||
|
|
|
||
|
|
.page-job .banner-job {
|
||
|
|
background: url(../images/background_job-mb.png) no-repeat;
|
||
|
|
background-size: cover;
|
||
|
|
height: 230px;
|
||
|
|
position: relative;
|
||
|
|
}
|
||
|
|
.page-job .banner-job .content-search {
|
||
|
|
position: absolute;
|
||
|
|
left: 50%;
|
||
|
|
top: 50%;
|
||
|
|
transform: translate(-50%, -50%);
|
||
|
|
width: 95%;
|
||
|
|
}
|
||
|
|
.page-job .banner-job .title {
|
||
|
|
background: linear-gradient(90deg, #1fa5f1 0%, #2257bb 100%);
|
||
|
|
background-clip: text;
|
||
|
|
-webkit-background-clip: text;
|
||
|
|
-webkit-text-fill-color: transparent;
|
||
|
|
font-weight: 700;
|
||
|
|
text-transform: capitalize;
|
||
|
|
font-size: 20px;
|
||
|
|
margin-bottom: 5px;
|
||
|
|
text-align: center;
|
||
|
|
}
|
||
|
|
.page-job .banner-job .note {
|
||
|
|
font-size: 14px;
|
||
|
|
text-align: center;
|
||
|
|
color: rgb(85, 85, 85);
|
||
|
|
margin-bottom: 10px;
|
||
|
|
}
|
||
|
|
.page-job .form-search-job {
|
||
|
|
display: flex;
|
||
|
|
padding: 35px 20px;
|
||
|
|
background: rgba(39, 39, 39, 0.2);
|
||
|
|
border-radius: 42px;
|
||
|
|
width: 100%;
|
||
|
|
}
|
||
|
|
.page-job .form-search-job .input {
|
||
|
|
width: calc(100% - 66px);
|
||
|
|
height: 40px;
|
||
|
|
background: #fff;
|
||
|
|
margin-right: 10px;
|
||
|
|
border-radius: 60px;
|
||
|
|
padding: 0 20px;
|
||
|
|
}
|
||
|
|
.page-job .form-search-job .input input {
|
||
|
|
background: transparent;
|
||
|
|
outline: none;
|
||
|
|
border: 0;
|
||
|
|
width: calc(100% - 40px);
|
||
|
|
}
|
||
|
|
.page-job .form-search-job .input input::-moz-placeholder {
|
||
|
|
color: rgb(167, 166, 166);
|
||
|
|
}
|
||
|
|
.page-job .form-search-job .input input::placeholder {
|
||
|
|
color: rgb(167, 166, 166);
|
||
|
|
}
|
||
|
|
.page-job .form-search-job .input i {
|
||
|
|
width: 40px;
|
||
|
|
background: linear-gradient(90deg, #1fa5f1 0%, #2257bb 100%);
|
||
|
|
background-clip: text;
|
||
|
|
-webkit-background-clip: text;
|
||
|
|
-webkit-text-fill-color: transparent;
|
||
|
|
font-weight: 700;
|
||
|
|
font-size: 23px;
|
||
|
|
}
|
||
|
|
.page-job .form-search-job .btn-search {
|
||
|
|
width: 76px;
|
||
|
|
height: 40px;
|
||
|
|
line-height: 40px;
|
||
|
|
text-align: center;
|
||
|
|
color: #fff;
|
||
|
|
font-size: 14px;
|
||
|
|
background: linear-gradient(90deg, #1fa5f1 0%, #2257bb 100%);
|
||
|
|
border-radius: 60px;
|
||
|
|
}
|
||
|
|
.page-job .content-list-job {
|
||
|
|
padding: 20px 0;
|
||
|
|
}
|
||
|
|
.page-job .filter-job {
|
||
|
|
margin-bottom: 15px;
|
||
|
|
}
|
||
|
|
.page-job .title-filter {
|
||
|
|
width: 100%;
|
||
|
|
height: 35px;
|
||
|
|
line-height: 35px;
|
||
|
|
background: rgb(233, 233, 233);
|
||
|
|
padding: 0 15px;
|
||
|
|
color: #000;
|
||
|
|
border-radius: 50px;
|
||
|
|
cursor: pointer;
|
||
|
|
}
|
||
|
|
.page-job .title-filter span {
|
||
|
|
font-weight: 700;
|
||
|
|
}
|
||
|
|
.page-job .item-filter {
|
||
|
|
background: rgb(248, 248, 248);
|
||
|
|
border-radius: 20px;
|
||
|
|
margin-bottom: 15px;
|
||
|
|
}
|
||
|
|
.page-job .item-filter.hidden .content-filter {
|
||
|
|
height: 0;
|
||
|
|
padding: 0;
|
||
|
|
overflow: hidden;
|
||
|
|
}
|
||
|
|
.page-job .item-filter.hidden .title-filter i::before {
|
||
|
|
content: "\f107";
|
||
|
|
}
|
||
|
|
.page-job .icon-check {
|
||
|
|
width: 20px;
|
||
|
|
height: 20px;
|
||
|
|
margin-right: 10px;
|
||
|
|
border: 1px solid rgb(176, 176, 176);
|
||
|
|
position: relative;
|
||
|
|
z-index: 9;
|
||
|
|
border-radius: 4px;
|
||
|
|
overflow: hidden;
|
||
|
|
}
|
||
|
|
.page-job .icon-check.checkered {
|
||
|
|
border: 0;
|
||
|
|
}
|
||
|
|
.page-job .icon-check.checkered::before {
|
||
|
|
position: absolute;
|
||
|
|
content: "\f00c";
|
||
|
|
left: 50%;
|
||
|
|
top: 50%;
|
||
|
|
font-family: "Font Awesome 6 Free";
|
||
|
|
font-weight: 900;
|
||
|
|
font-size: 12px;
|
||
|
|
transform: translate(-50%, -50%);
|
||
|
|
background: var(--color-active);
|
||
|
|
width: 100%;
|
||
|
|
height: 100%;
|
||
|
|
color: #fff;
|
||
|
|
text-align: center;
|
||
|
|
line-height: 20px;
|
||
|
|
}
|
||
|
|
.page-job .content-filter {
|
||
|
|
padding: 10px;
|
||
|
|
height: 100%;
|
||
|
|
}
|
||
|
|
.page-job .item-attr {
|
||
|
|
padding-bottom: 10px;
|
||
|
|
}
|
||
|
|
.page-job .filter-right {
|
||
|
|
color: rgb(85, 85, 85);
|
||
|
|
}
|
||
|
|
.page-job .item-job {
|
||
|
|
padding-bottom: 20px;
|
||
|
|
margin-bottom: 20px;
|
||
|
|
border-bottom: 1px solid #d9d9d9;
|
||
|
|
}
|
||
|
|
.page-job .item-job .name-job {
|
||
|
|
font-size: 20px;
|
||
|
|
font-weight: 700;
|
||
|
|
margin-bottom: 10px;
|
||
|
|
}
|
||
|
|
.page-job .item-job .desc-job {
|
||
|
|
color: rgb(85, 85, 85);
|
||
|
|
font-size: 15px;
|
||
|
|
margin-bottom: 25px;
|
||
|
|
}
|
||
|
|
.page-job .item-job .info-job {
|
||
|
|
margin-bottom: 15px;
|
||
|
|
}
|
||
|
|
.page-job .item-job .info-job .salary {
|
||
|
|
padding-right: 20px;
|
||
|
|
border-right: 2px solid rgb(170, 170, 170);
|
||
|
|
}
|
||
|
|
.page-job .item-job .info-job .salary b {
|
||
|
|
margin-left: 5px;
|
||
|
|
}
|
||
|
|
.page-job .item-job .info-job .time {
|
||
|
|
padding-left: 20px;
|
||
|
|
}
|
||
|
|
.page-job .item-job .info-job .time b {
|
||
|
|
margin-left: 5px;
|
||
|
|
}
|
||
|
|
.page-job .item-job .btn-apply {
|
||
|
|
display: block;
|
||
|
|
width: 125px;
|
||
|
|
height: 35px;
|
||
|
|
line-height: 35px;
|
||
|
|
background: linear-gradient(90deg, #1fa5f1 0%, #2257bb 100%);
|
||
|
|
text-align: center;
|
||
|
|
font-size: 14px;
|
||
|
|
color: #fff;
|
||
|
|
text-transform: uppercase;
|
||
|
|
font-weight: 700;
|
||
|
|
border-radius: 50px;
|
||
|
|
}/*# sourceMappingURL=style-mb.css.map */
|