:root {
--primary-color: #106EB8;  
--secondary-color: #2e7dcb;
--light-blue: #e6f0fa;
--dark-blue: #106EB8;
--text-color: #333;
--light-gray: #f8f9fa;
--accent: #106EB8;
--gold: #D4AF37;
--gray-bg: #F8FAFD;
--text-dark: #106EB8;
--text-light: #5A6E7F;
--white: #FFFFFF;
--transition-smooth: all 0.4s cubic-bezier(0.2, 0.95, 0.4, 1);
} * {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: "Microsoft YaHei","微软雅黑","MicrosoftJhengHei","华文细黑",STHeiti,MingLiu,Helvetica Neue, Helvetica, PingFang SC, Tahoma, Arial, sans-serif; color: var(--text-color);
font-size:15px;
overflow-x: hidden;
}
::-webkit-scrollbar {
width: 8px;
}
::-webkit-scrollbar-track {
background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
background: #1a5ba0;
border-radius: 10px;
}
a {
text-decoration: none;
}
ul {
list-style: none;
padding-left: 0;
} .intro {
position: fixed;
inset: 0;
z-index: 9999;
display: flex;
align-items: center;
justify-content: center;
background: #106EB8; overflow: hidden; opacity: 1;
visibility: visible;
transition: opacity 0.8s ease-in, visibility 0.8s;
}
.intro.intro-out {
opacity: 0;
visibility: hidden;
}
.intro-bg {
position: absolute;
top: 0; width: 50%;
height: 100%;
z-index: 1;
opacity: 0;
transform-origin: center center;
will-change: transform, opacity,right,left; animation: bg-move 4s 0.1s cubic-bezier(0.25, 0.40, 0.45, 0.94) forwards;
}
@keyframes bg-move {
0% {
opacity: 0;
left: 0;
transform: scale(0.1) translateX(-50%); }
50% {
opacity: 1;
left: 50%;
transform: scale(1) translateX(-50%); }
55% {
opacity: 1;
left: 50%;
transform: scale(1) translateX(-50%); }
100% {
opacity: 1;
right: 0;
transform: scale(1); }
}
.intro-bg img {
width: 100%;
height: 100%;
max-width: 100%;
object-fit: contain;
display: block;
} .intro-title {
position: absolute;
z-index: 3;
text-align: center;
opacity: 0;
animation: title-up 0.8s 0.8s ease-out forwards; bottom: 15%;
}
@keyframes title-up {
from {
opacity: 0;
transform: translateY(20px);
}
to {
opacity: 1;
transform: translateY(0);
}
} .intro.intro-out .intro-title {
animation: title-fade-out 0.1s 0s ease-in forwards;
}
.intro-title h1 {
font-size: clamp(28px, 5vw, 64px);
color: #fff;
letter-spacing: 0.15em;
text-shadow: 0 0 20px rgba(0, 229, 255, 0.5), 0 2px 10px rgba(0, 0, 0, 0.8);
font-weight: 700;
}
@keyframes title-fade-out {
from {
opacity: 1;
transform: translateY(0);
}
to {
opacity: 0;
transform: translateY(-20px);
}
}
.intro-title h1 {
margin: 0;
margin-bottom: 10px; min-height: 1.5em;
} .typing-cursor {
display: inline-block;
width: 2px;
margin-left: 2px;
background-color: #000;
animation: blink 1s step-end infinite;
}
@keyframes blink {
0%, 100% { opacity: 1; }
50% { opacity: 0; }
} @media (prefers-reduced-motion: reduce) {
.intro,
.intro *,
.carousel-slides {
animation-duration: 0.01ms !important;
animation-iteration-count: 1 !important;
transition-duration: 0.01ms !important;
}
.intro {
display: none !important;
}
.main-content {
opacity: 1 !important;
visibility: visible !important;
}
}  .navbar {
position: fixed;
top: 0;
width: 100%;
padding: 0.7rem 0;
background-color: transparent;
transition: var(--transition-smooth);
z-index: 1050;
backdrop-filter: blur(0px);
}
.navbar.scrolled {
background-color: var(--primary-color);
backdrop-filter: blur(12px);
padding: 0.7rem 0;
box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.navbar.scrolled .nav-link,
.navbar.scrolled .navbar-brand img { }
.footer-logo img,
.navbar-brand img {
height: 35px;
transition: filter 0.3s ease;  }
.navbar.scrolled .navbar-brand img { }
.nav-link {
font-weight: 500;
font-size: 14px;
color: white !important;
margin: 0 1rem;
padding: 3px 0 !important;
position: relative;
transition: color 0.2s;
opacity: 0.9;
}
.navbar.scrolled .nav-link {
color: rgba(255, 255, 255, 0.95) !important;
}
.nav-link.active,
.nav-link:hover {
opacity: 1; color: var(--white);
}
.nav-link::after {
content: '';
position: absolute;
bottom: -6px;
left: 0;
width: 0%;
height: 2px;
background: var(--white);
transition: width 0.3s ease;
}
.nav-link.active::after,
.nav-link:hover::after {
width: 100%;
} .get-in-touch-btn {
background:#ffffff;
color: #106EB8;
border: none;
padding: 3px 10px;
border-radius: 4px;
font-weight: 500;
transition: all 0.3s ease;
display: inline-block;
}  .get-in-touch-btn:hover {
transform: translateY(-0.5px);
background: #106EB8;
color: #ffffff;
box-shadow: 0 5px 12px rgba(0, 163, 255, 0.4);
}
.navbar-toggler {
border: 1px solid rgba(255, 255, 255, 0.5);
background: transparent;
}
.navbar-toggler-icon {
filter: brightness(0) invert(1);
}
.navbar.scrolled .navbar-toggler-icon {
filter: brightness(0) invert(1);
} .lang-switcher {
position: relative;
margin-left: 15px;
}
.lang-switcher .dropdown-toggle {
background: transparent;
border: 2px solid rgba(255, 255, 255, 1);
border-radius: 30px;
padding: 3px 10px;
font-size: 14px;
font-weight: 500;
color: #fff;
display: flex;
align-items: center;
gap: 8px;
transition: all 0.3s ease;
cursor: pointer;
} .navbar-scrolled .lang-switcher .dropdown-toggle {
border-color: white;
color: white;
}
.lang-switcher .dropdown-toggle:hover {
background: white;
border-color: white;
color: #000;
}
.navbar-scrolled .lang-switcher .dropdown-toggle:hover {
background: rgba(255, 255, 255, 1);
border-color: rgba(255, 255, 255, 1);
color: #000;
}
.lang-switcher .dropdown-toggle .lang-flag {
width: 20px;
height: 15px;
object-fit: cover;
border-radius: 2px;
}
.lang-switcher .dropdown-toggle .chevron-down {
font-size: 12px;
transition: transform 0.3s ease;
} .lang-dropdown-menu {
position: absolute;
top: 100%;
right: 0;
left: auto;
min-width: 100px;
padding: 8px 0;
margin-top: 5px;
background: #fff;
border: none;
border-radius: 12px;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
list-style: none;
z-index: 1000; display: none;
opacity: 0;
visibility: hidden;
transform: translateY(-5px);
transition: all 0.2s ease;
} .lang-dropdown-menu.show {
display: block !important;
opacity: 1 !important;
visibility: visible !important;
transform: translateY(0) !important;
pointer-events: auto !important;
}
.lang-dropdown-menu li {
list-style: none;
margin: 0;
padding: 0;
}
.lang-dropdown-item {
display: flex;
align-items: center;
gap: 10px;
padding: 10px;
font-size: 14px;
font-weight: 500;
color: #333;
text-decoration: none;
transition: all 0.2s ease;
cursor: pointer;
}
.lang-dropdown-item:hover {
background-color: #f5f5f5;
color: #1a3a6f;
}
.lang-dropdown-item img {
width: 20px;
height: 15px;
object-fit: cover;
border-radius: 2px;
}
.navbar .nav-item.lang-small-icon a{
color: var(--white);
transition: opacity 0.3s ease;
font-size: 1.2rem;
margin-left: 12px;
opacity: 1;
}
.navbar .nav-item.lang-small-icon a:hover{
opacity: 0.7;
color: var(--white);
}
.wechat-icon {
position: relative;
display: inline-block;
} .wechat-hover-img {
position: absolute;
right: 0;
top: 100%;
margin-top: 12px; width: 100px;
height: 0;
border-radius: 8px;
box-shadow: 0 4px 12px rgba(0,0,0,0.15);
opacity: 0;
visibility: hidden;
transition: opacity 0.2s;
z-index: 10;
} .wechat-icon::after {
content: '';
position: absolute;
left: 50%;
transform: translateX(-50%);
top: 100%;
margin-top: 4px; border-width: 6px;
border-style: solid;
border-color: transparent transparent #fff transparent; opacity: 0;
visibility: hidden;
transition: opacity 0.2s;
z-index: 11;
pointer-events: none;
} .wechat-icon:hover .wechat-hover-img,
.wechat-icon:hover::after {
opacity: 1;
visibility: visible;
height: auto;
}     .hero-swiper {
width: 100%;
overflow: hidden;
}
.hero-slide {
position: relative;
display: flex;
align-items: center;
justify-content: center;
}
.hero-slide::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 1; }
.hero-slide .slide-bg {
position: relative;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-size: cover;
background-position: center;
transition: transform 8s ease-out;
z-index: 0;
}
.hero-slide:not(.hero-slide-1) .slide-bg{
background-color: #106EB8;
background-repeat: no-repeat;
background-size: contain;
}
.hero-slide.hero-slide-1::before {
background: #106EB8;
z-index: 1;
}
.swiper-slide-active .slide-bg {
transform: scale(1.01);
}
.hero-content.hero-content-left {
text-align: left;
}
.hero-content {
position: relative;
z-index: 10;
text-align: center;
color: white;
max-width: 86%;
padding: 0 20px;
}
.hero-content h3 {
font-size: 2.5rem;
font-weight: 800;
margin-bottom: 20px;
text-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}
.hero-content p {
font-size: 1.2rem;
margin-bottom: 30px;
opacity: 0.9;
text-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}
.hero-content.hero-content-left h3,
.hero-content.hero-content-left p {
max-width: 70%;
} .learn-more-btn {
background-color: var(--light-blue);
color: var(--primary-color);
border: none;
padding: 12px 30px;
border-radius: 30px;
font-weight: 500;
font-size: 1.1rem;
transition: all 0.3s ease;
}
.learn-more-btn:hover {
background-color: #1a5ba0;
transform: translateY(-3px);
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
color: white;
}
.hero-swiper .swiper-button-next,
.hero-swiper .swiper-button-prev {
width: 50px;
height: 50px;
background: rgba(0, 0, 0, 0.4);
backdrop-filter: blur(4px);
border-radius: 50%;
}
.hero-swiper .swiper-button-next:after,
.hero-swiper .swiper-button-prev:after {
font-size: 20px;
color: white;
}
.hero-swiper .swiper-pagination-bullet {
width: 10px;
height: 10px;
background: rgba(255, 255, 255, 0.6);
}
.hero-swiper .swiper-pagination-bullet-active {
background: #1a5ba0;
transform: scale(1.2);
}    .banner0-css{width: 400px;} .section-label {
font-size: 14px; font-weight: 700;
text-transform: uppercase;
color: var(--accent);
letter-spacing: 2px;
margin-bottom: 8px;
display: inline-flex; align-items: center; gap: 8px;
}
.section-label .label-line {
display: inline-block; width: 40px; height: 2px;
background: var(--accent);
}
.section-title {
font-size: 1.6rem;
font-weight: 700;
margin-bottom: 16px; line-height: 1.2;
}
.section-desc {
font-size: 1.05rem; color: var(--text-light);
} .features-section {
padding: 80px 0 0; }
.feature-card {
text-align: center;
padding: 30px;
border-radius: 10px;
transition: all 0.3s ease;
background: var(--light-gray);
height: 100%;
cursor: pointer;
}
.feature-card:hover {
transform: translateY(-10px);
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
background: white;
}
.feature-icon {
font-size: 2.5rem;
color: var(--primary-color);
margin-bottom: 20px;
transition: transform 0.3s ease;
}
.feature-card:hover .feature-icon {
transform: scale(1.1);
}
.feature-title {
font-size: 1.3rem;
font-weight: 600;
margin-bottom: 15px;
color: var(--primary-color);
}
.feature-desc {
font-size: 0.95rem;
color: #666;
line-height: 1.5;
} .about-section {
padding: 80px 0;
background-color: var(--light-gray);
overflow: hidden;
}
.about-content {
display: flex;
align-items: center;
gap: 50px;
}
.about-text {
flex: 1;
}
.why-top,
.product-top,
.news-top,
.about-top {
font-size: 15px;
font-weight: 700;
text-transform: uppercase;
color: var(--primary-color);
margin-bottom: 5px;
display: inline-block;
}
.why-top {
color: white !important
}
.why-top i {
background-color: white !important
}
.product-top i,
.why-top i,
.news-top i,
.about-top i {
display: inline-block;
width: 80px;
height: 1px;
position: relative;
top: -5px;
margin-left: 8px;
background-color: var(--primary-color);
}
.about-title {
font-size: 2rem;
font-weight: 700;
margin-bottom: 20px;
color: #1e2a3a;
}
.about-desc {
font-size: 1.1rem;
line-height: 1.8;
color: #555;
margin-bottom: 30px;
}
.read-more-btn {
background-color: var(--primary-color);
color: white;
border: none;
padding: 12px 30px;
border-radius: 30px;
font-weight: 500;
transition: all 0.3s ease;
}
.read-more-btn:hover {
background-color: var(--dark-blue);
transform: translateY(-3px);
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.about-image {
flex: 1;
border-radius: 10px;
overflow: hidden;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.about-image img {
width: 100%;
height: auto;
transition: transform 0.5s ease;
}
.about-image:hover img {
transform: scale(1.05);
} .products-section {
padding: 80px 0;
background: rgb(238, 237, 237);
margin-bottom: 80px;
}
.products-section .product_swi1{padding-bottom: 50px;}
.products-section  .swiper-button-next,
.products-section  .swiper-button-prev{
width: 20px;
height: 20px;
top: auto;
bottom: 10px;
transform: none;
}
.products-section  .swiper-button-next:after, 
.products-section  .swiper-button-prev:after{
font-size: 20px;
font-weight: bold;
}
.products-section  .swiper-button-next{
left: 60px;
right: auto;
}
.products-section  .swiper-button-next:hover,
.products-section  .swiper-button-prev:hover{
opacity: 0.8;
}
.section-title {
font-size: 1.6rem;
font-weight: 700;
}
.view-all-btn a {
color: var(--primary-color);
transition: all 0.3s ease;
font-size: 16px;
font-weight: 500;
position: relative;
padding: 8px 15px;
background-color: #d6e5f1;
border-radius:6px;
}
.view-all-btn a:hover {
background-color: #106EB8;
color:var(--white);
} .product-card {
background: #106EB8;
border-radius: 10px;
overflow: hidden;
transition: all 0.3s ease;
cursor: pointer;
height: 100%;
}
.product-card:hover {
transform: translateY(-10px);
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.product-image {
height: 200px;
padding:15px;
overflow: hidden;
}
.product-image img {
width: 100%;
height: 100%;
object-fit: contain;
transition: transform 0.5s ease;
}
.product-card:hover .product-image img {
transform: scale(1.1);
}
.product-info {
padding: 10px;
display: flex;
display: -ms-flexbox;
display: -webkit-flex;
justify-content: space-between;
align-items: center;
}
.product-title {
margin: 0;
font-size: 1rem;
font-weight: 500;
color: white;
min-height:40px;
}
.product-arrow {
color: white;
transition: transform 0.3s ease;
} .why-choose-us {
padding: 40px 0;
background-color: var(--primary-color);
color: white;
overflow: hidden;
}
.why-choose-title {
font-size: 1.6rem;
font-weight: 700;
margin-bottom: 30px;
}
.stat-card {
text-align: center;
transition: all 0.3s ease;
backdrop-filter: blur(2px);
border-radius: 10px;
}
.stat-number {
font-size: 2.5rem;
font-weight: 700;
margin-bottom: 6px;
font-family: monospace;
letter-spacing: 2px;
}
.stat-label {
font-size: 1rem;
opacity: 0.9;
}
.stat-icon {
font-size: 30px;
opacity: 0.8;
} .news-section {
padding: 80px 0;
background: var(--light-gray);
}
.news-card {
background: #F6F8FB;
border-radius: 10px;
overflow: hidden;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
transition: all 0.3s ease;
height: 100%;
display: flex;
display: -ms-flexbox;
display: -webkit-flex;
align-items: center;
}
.news-card:hover {
transform: translateY(-10px);
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
cursor: pointer;
}
.news-image {
width: 70%;;
height: 150px;
overflow: hidden;
}
.news-image img {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.5s ease;
}
.news-card:hover .news-image img {
transform: scale(1.1);
}
.news-content {
padding: 10px;
width: 80%;
}
.news-date {
font-size: 0.9rem;
color: var(--primary-color);
margin-bottom: 10px;
}
.news-title {
font-size: 1rem;
font-weight: 500;
margin-bottom: 10px;
color: black;
display: -webkit-box;
-webkit-line-clamp: 2;
line-clamp: 2; -webkit-box-orient: vertical;
overflow: hidden;
text-overflow: ellipsis;
word-break: break-word; white-space: normal;
margin-bottom: 10px;
}
.news-content .text-right {
font-size: 0.95rem;
color: var(--primary-color);
line-height: 1.5;
text-align: right;
} .footer {
background-color: var(--dark-blue);
color: white;
padding: 30px 0 10px;
}
.footer-desc {
font-size: 0.95rem;
line-height: 1.6;
margin-bottom: 10px;
opacity: 0.7;
}
.footer-center ul li {
margin-top: 8px;
}
.footer-center a,
.footer-right a {
color: rgba(255, 255, 255, 0.7);
transition: color 0.3s ease;
}
.footer-center a:hover,
.footer-right a:hover {
color: white;
text-decoration: underline;
}
.contact-info p {
margin-bottom: 10px;
opacity: 0.8;
}
.social-icons a {
color: white;
font-size: 1.5rem;
margin-right: 15px;
opacity: 0.7;
transition: opacity 0.3s ease;
}
.social-icons a:hover {
opacity: 1;
}
.copyright {
text-align: center;
padding-top: 20px;
margin-top: 10px;
border-top: 1px solid rgba(255, 255, 255, 0.1);
font-size: 0.9rem;
color: rgba(255, 255, 255, 0.7);
}
.copyright a {
color: rgba(255, 255, 255, 0.7);
transition: all 0.3s ease;
}
.copyright a:hover {
color: white;
text-decoration: underline;
}  .scroll-reveal {
opacity: 0; transform: translateY(40px);
transition: opacity 0.9s cubic-bezier(0.2,0.9,0.4,1.1),
transform 0.9s cubic-bezier(0.2,0.9,0.4,1.1);
}
.scroll-reveal.active { opacity: 1; transform: translateY(0); }
.scroll-reveal-left {
opacity: 0; transform: translateX(-40px);
transition: opacity 0.9s cubic-bezier(0.2,0.9,0.4,1.1),
transform 0.9s cubic-bezier(0.2,0.9,0.4,1.1);
}
.scroll-reveal-left.active { opacity: 1; transform: translateX(0); }
.scroll-reveal-right {
opacity: 0; transform: translateX(40px);
transition: opacity 0.9s cubic-bezier(0.2,0.9,0.4,1.1),
transform 0.9s cubic-bezier(0.2,0.9,0.4,1.1);
}
.scroll-reveal-right.active { opacity: 1; transform: translateX(0); } .about-text .scroll-child {
opacity: 0;
transform: translateY(25px);
transition: opacity 0.7s ease, transform 0.7s ease;
}
.about-text.scroll-reveal.active .scroll-child {
opacity: 1;
transform: translateY(0);
} .about-text .scroll-child:nth-child(1) {
transition-delay: 0.1s;
}
.about-text .scroll-child:nth-child(2) {
transition-delay: 0.2s;
}
.about-text .scroll-child:nth-child(3) {
transition-delay: 0.3s;
}
.about-text .scroll-child:nth-child(4) {
transition-delay: 0.4s;
} @keyframes subtlePop {
0% {
transform: scale(0.95);
opacity: 0.6;
}
100% {
transform: scale(1);
opacity: 1;
}
}
.count-up-active .stat-number {
animation: subtlePop 0.4s ease-out;
}
.hse {
padding: 0 0 80px;
}
.hse .box {
position: relative;
margin-top: 0.68rem;
}
.hse .box .swiper {
margin-bottom:15px;
}
.hse .box .swiper .swiper-wrapper { transition-timing-function: linear;
-webkit-transition-timing-function: linear;
padding: 10px 0;
}
.hse .box .swiper-slide .public-img {
border-radius:10px;
background: #ffffff;
box-shadow:0 5px 10px rgba(0, 0, 0, 0.1) ;
height: 88px;
padding: 5px 30px;
display: flex;
align-items: center;
text-align: center;
justify-content: center;
}
.hse .box .swiper-slide .public-img:before {
padding-top: 39.51219512%;
}
.hse .box .swiper-slide .public-img img{max-width: 100%;max-height: 100%;}
.hse .box .i1 {
position: absolute;
left: 0;
width: 1rem;
height: 100%;
top: 0.1rem;
z-index: 10;
pointer-events: none;
background: -webkit-linear-gradient(to right, #fff, rgba(255, 255, 255, 0));
background: linear-gradient(to right, #fff, rgba(255, 255, 255, 0));
}
.hse .box .i2 {
transform: rotate(180deg);
position: absolute;
right: 0;
width: 1rem;
height: 100%;
top: 0.1rem;
z-index: 10;
pointer-events: none;
background: -webkit-linear-gradient(to right, #fff, rgba(255, 255, 255, 0));
background: linear-gradient(to right, #fff, rgba(255, 255, 255, 0));
}
.hsi {
position: relative;
z-index: 100; background: -webkit-linear-gradient(to bottom, #fff, #eceff4);
background: linear-gradient(to bottom, #fff, #eceff4);
}
@media screen and (min-width: 1940px) {
.hsi {
height: auto;
}
}
.hsi.hsi2 {
background: #f8f9fb;
padding: 0.6rem 0 0;
}
@media (max-width: 991px) {
.hsi {
height: auto;
}
}
.hsi .container2,
.hsi .container { height: 100%;
}
.hsi .box {
overflow: hidden;
height: 100%;
display: flex;
flex-direction: column;
justify-content: space-between;
padding: 0.84rem 0 0;
}
@media (max-width: 991px) {
.hsi .box {
padding: 1rem 0;
}
}
.hsi .box .g_title_box {
align-items: flex-start;
padding-bottom: 0.3rem;
}
.hsi .box .g_title_box .hsi_nav {
flex-shrink: 0;
display: flex;
justify-content: center;
position: relative;
margin-top: 20px;
margin-bottom: 20px;
}
@media (max-width: 991px) {
.hsi .box .g_title_box .hsi_nav {
display: none;
}
}
.hsi .box .g_title_box .hsi_nav::after {
content: '';
position: absolute;
width: 100%;
height: 1px;
border-bottom: 1px dashed #eeeeee;
top: 50%;
left: 0;
}
.hsi .box .g_title_box .hsi_nav p {
position: relative;
z-index: 10;
border-radius: 30px;
display: flex;
align-items: center;
justify-content: center;
min-width: 0.8rem;
color: #747373;
background: #e9e8e8;
margin: 0 10px;
transition: all 0.4s;
cursor: pointer;
padding: 5px 15px;
}
.hsi .box .g_title_box .hsi_nav p.on {
background: var(--primary-color);
color: #fff;
}
.hsi .box .g_title_box .hsi_nav p:first-child {
margin-left: 0;
}
.hsi .box .g_title_box .hsi_nav p:last-child::after {
display: none;
}
.hsi .box .g_title_box .hsi_nav p::after {
content: '';
position: absolute;
width: 6px;
height: 6px;
border-radius: 50%;
background: #dddddd;
right: calc(-0.2rem - 9px);
top: 53%;
transform: translateY(-50%);
}
.hsi .box .hsi_con { height: 730px;
display: flex;
flex-direction: column; position: relative;
}
@media (max-width: 1580px) {
.hsi .box .hsi_con {
height: 630px;
}
}
@media (max-width: 991px) {
.hsi .box .hsi_con {
height: auto;
margin-top: 0;
}
}
.hsi .box .hsi_con .item {
transition: all 0.4s;
position: relative;
z-index: 1;
height: 80px;
color: #fff;
margin-bottom: -20px;
overflow: hidden;
width: 100%;
border-radius: 16px 16px 0 0;
flex: 0 0 auto; }
@media (max-width: 991px) {
.hsi .box .hsi_con .item {
height: auto !important;
margin-bottom: 12px;
border-radius: 10px;
position: initial;
top: 0 !important;
transform: translateY(0rem) !important;
}
}
@media (max-width: 767px) {
.hsi .box .hsi_con .item {
padding: 10px;
min-height: auto;
}
}
.hsi .box .hsi_con .item .hsi_hz {
padding: 28px 15px;
}
@media (max-width: 767px) {
.hsi .box .hsi_con .item .hsi_hz {
padding: 0;
}
}
.hsi .box .hsi_con .item:last-child {
margin-bottom: 0;
}
.hsi .box .hsi_con .item.on {
flex-shrink: 0; height: 490px;
flex: 1 1 auto;
}
.hsi .box .hsi_con .item.on .g_tit h3 {
opacity: 1;
}
.hsi .box .hsi_con .item.on .g_tit .g_tit_r span {
opacity: 1;
}
.hsi .box .hsi_con .item.on2 .g_tit {
opacity: 0;
}
.hsi .box .hsi_con .item.on3 .g_tit {
opacity: 1;
}
.hsi .box .hsi_con .item:nth-child(1) {
background: #fc5757;
}
.hsi .box .hsi_con .item:nth-child(2) {
background: #8ff3df;
}
.hsi .box .hsi_con .item:nth-child(3) {
background: #85cdff;
}
.hsi .box .hsi_con .item:nth-child(4) {
background: #686868;
}
.hsi .box .hsi_con .item:nth-child(5) {
background: #ff7d7d;
}
.hsi .box .hsi_con .item.active .g_tit .g_tit_r .g_gb .i2 {
transform: translate(-50%, -50%) rotate(0deg);
}
.hsi .box .hsi_con .item .img {
position: absolute;
width: 100%;
height: 100%;
top: 0;
left: 0;
}
.hsi .box .hsi_con .item .img img {
width: 100%;
height: 100%;
object-fit: cover;
}
.hsi .box .hsi_con .item .g_tit {
transition: all 0.4s;
margin-bottom: 0.55rem;
position: relative;
z-index: 10;
display: flex;
justify-content: space-between;
}
@media (max-width: 767px) {
.hsi .box .hsi_con .item .g_tit {
margin-bottom: 0;
align-items: center;
}
}
.hsi .box .hsi_con .item .g_tit h3 {
line-height: 1;
opacity: 0;
transition: all 0.4s;
font-size: 30px;
padding-bottom:15px
}
@media (max-width: 767px) {
.hsi .box .hsi_con .item .g_tit h3 {
opacity: 1;
}
}
.hsi .box .hsi_con .item .g_tit .g_tit_r span {
opacity: 0.5;
line-height: 0.8;
font-size: 40px;
}
@media (max-width: 767px) {
.hsi .box .hsi_con .item .g_tit .g_tit_r span {
display: none;
}
}
.hsi .box .hsi_con .item .g_tit .g_tit_r .g_gb {
position: relative;
transition: 0.4s all;
align-items: center;
justify-content: center;
margin-left: 0.2rem;
width: 0.2rem;
flex-shrink: 0;
display: none;
}
@media (max-width: 767px) {
.hsi .box .hsi_con .item .g_tit .g_tit_r .g_gb {
display: flex;
width: 16px;
}
}
.hsi .box .hsi_con .item .g_tit .g_tit_r .g_gb i {
width: 0.24rem;
height: 2px;
background: #fff;
display: block;
position: absolute;
transition: all 0.4s;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
@media (max-width: 767px) {
.hsi .box .hsi_con .item .g_tit .g_tit_r .g_gb i {
width: 16px;
height: 2px;
}
}
.hsi .box .hsi_con .item .g_tit .g_tit_r .g_gb .i2 {
transform: translate(-50%, -50%) rotate(90deg);
}
.hsi .box .hsi_con .item .hsi_nr {
position: relative;
z-index: 10;
}
@media (max-width: 767px) {
.hsi .box .hsi_con .item .hsi_nr {
display: none;
}
}
.hsi .box .hsi_con .item .hsi_nr .hsi_nr_box {
display: flex;
flex-wrap: wrap;
}
@media (max-width: 767px) {
.hsi .box .hsi_con .item .hsi_nr .hsi_nr_box {
margin-top: 0.4rem;
}
}
.hsi .box .hsi_con .item .hsi_nr .g_it {
margin: 0 0 0.5rem 0;
border-bottom: 1px solid rgba(255, 255, 255, 0.2);
padding-right: 1.5rem;
padding-bottom: 0.56rem;
display: flex;
align-items: flex-start;
width: 50%;
}
.hsi .box .hsi_con .item .hsi_nr .g_it  svg{margin-right: 15px;font-size: 20px;}
.hsi .box .hsi_con .item .hsi_nr .g_it:nth-last-child(1),
.hsi .box .hsi_con .item .hsi_nr .g_it:nth-last-child(2) {
border: none;
margin-bottom: 0;
}
@media screen and (max-width: 1380px) {
.hsi .box .hsi_con .item .hsi_nr .g_it {
width: 45%;
margin: 0 5% 0.5rem 0;
}
}
@media (max-width: 991px) {
.hsi .box .hsi_con .item .hsi_nr .g_it {
padding-right: 0;
}
}
@media (max-width: 767px) {
.hsi .box .hsi_con .item .hsi_nr .g_it {
width: 100%;
border: none;
margin: 0 0 0.3rem 0 !important;
padding: 0;
}
}
@media (max-width: 767px) {
.hsi .box .hsi_con .item .hsi_nr .g_it:nth-last-child(1) {
margin-bottom: 0 !important;
}
}
.hsi .box .hsi_con .item .hsi_nr .g_it i {
flex-shrink: 0;
display: flex;
align-items: center;
justify-content: center;
margin-right: 0.66rem;
width: 0.48rem;
height: auto;
color: #fff;
}
@media (max-width: 767px) {
.hsi .box .hsi_con .item .hsi_nr .g_it i {
width: 0.7rem;
}
}
.hsi .box .hsi_con .item .hsi_nr .g_it i svg,
.hsi .box .hsi_con .item .hsi_nr .g_it i img {
width: 100%;
height: auto;
}
.hsi .box .hsi_con .item .hsi_nr .g_it i svg path,
.hsi .box .hsi_con .item .hsi_nr .g_it i img path {
fill: var(--primary-color);
}
.hsi .box .hsi_con .item .hsi_nr .g_it .txt .p1 {
margin-bottom: 0.1rem;
font-weight: bold;
}
.hsi .box .hsi_con .item .hsi_nr .g_it .txt .p2 {
color: rgba(255, 255, 255, 0.7);
}
.hth_ht {
position: relative;
margin-top: 80px;
}
.hth_ht .hth {
display: flex;
align-items: center;  top: 0;  z-index: 10;
}
@media (max-width: 767px) {
.hth_ht .hth {
padding: 1rem 0;
height: auto;
position: initial;
}
}
.hth_ht .hth .box {
margin-top: 20px;
display: flex;
border-radius: 10px;
overflow: hidden;
border: 1px solid #eeeeee;
background: url(//honbase.com.hk/wp-content/themes/honbase/assets/images/home-bg-express.jpg) no-repeat;
background-size: cover;
}
@media (max-width: 767px) {
.hth_ht .hth .box {
border: none;
flex-direction: column;
background: none;
border-radius: 0;
}
}
.hth_ht .hth .box .swiper {
width: 100%;
}
.hth_ht .hth .box .swiper .swip2_pag {
display: none;
}
@media (max-width: 767px) {
.hth_ht .hth .box .swiper .swip2_pag {
display: flex;
justify-content: center;
margin-top: 0.3rem;
position: initial;
}
}
.hth_ht .hth .box .swiper .swip2_pag .swiper-pagination-bullet {
background: var(--primary-color);
}
.hth_ht .hth .box .swiper .swiper-slide {
flex-shrink: initial;
width: 50%;
transition: all 0.4s;
}
@media (max-width: 767px) {
.hth_ht .hth .box .swiper .swiper-slide {
width: 100% !important;
border-radius: 0.2rem;
flex-shrink: 0;
}
}
.hth_ht .hth .box .swiper .swiper-slide:last-child {
margin-right: 0;
}
.hth_ht .hth .box .swiper .swiper-slide.on {
width: 34.375%;
flex-shrink: 0;
}
@media (max-width: 991px) {
.hth_ht .hth .box .swiper .swiper-slide.on {
width: 45%;
}
}
.hth_ht .hth .box .swiper .swiper-slide.on .item .txt .gxs {
opacity: 0;
}
.hth_ht .hth .box .swiper .swiper-slide.on .item .txt .gyr {
opacity: 1;
}
.hth_ht .hth .box .swiper .swiper-slide .item {
width: 100%;
height:80vh;
position: relative;
border-right: 1px solid #eeeeee;
overflow: hidden;
}
@media (max-width: 767px) {
.hth_ht .hth .box .swiper .swiper-slide .item {
border-radius: 0.2rem;
height:66vh;
}
}
.hth_ht .hth .box .swiper .swiper-slide .item .txt {
color: #fff;
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
display: flex;
align-items: flex-end;
}
.hth_ht .hth .box .swiper .swiper-slide .item .txt .gxs {
transition: all 0.4s;
width: 100%;
height: 100%;
padding:50px 15px 30px;
display: flex;
flex-direction: column;
justify-content: flex-start;
align-items: center; }
@media (max-width: 767px) {
.hth_ht .hth .box .swiper .swiper-slide .item .txt .gxs {
opacity: 0;
}
}
.hth_ht .hth .box .swiper .swiper-slide .item .txt .gxs i {
background: -webkit-linear-gradient(to bottom, #e9f3fb, rgba(255, 255, 255, 0));
background: linear-gradient(to bottom, #e9f3fb, rgba(255, 255, 255, 0));
flex-shrink: 0;
display: flex;
align-items: center;
justify-content: center;
width: 80px;
height: 80px;
border-radius: 10px;
color: var(--primary-color);
}
.hth_ht .hth .box .swiper .swiper-slide .item .txt .gxs i svg,
.hth_ht .hth .box .swiper .swiper-slide .item .txt .gxs i img {
width: 40px;
height: auto;
}
.hth_ht .hth .box .swiper .swiper-slide .item .txt .gxs i svg path,
.hth_ht .hth .box .swiper .swiper-slide .item .txt .gxs i img path {
fill: var(--primary-color);
}
.hth_ht .hth .box .swiper .swiper-slide .item .txt .gxs i svg .cls-22,
.hth_ht .hth .box .swiper .swiper-slide .item .txt .gxs i img .cls-22 {
fill: #fff !important;
}
.hth_ht .hth .box .swiper .swiper-slide .item .txt .gxs h3 {
margin-top: 10px;
color: #333;
text-align: center;
font-size:22px;
}
.hth_ht .hth .box .swiper .swiper-slide .item .txt .gyr {
background: -webkit-linear-gradient(to right, #106EB8, #58aae9);
background: linear-gradient(to right, #106EB8, #58aae9);
transition: all 0.4s;
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
opacity: 0;
padding:20px;
display: flex;
flex-direction: column;
justify-content: flex-start;
align-items: flex-start;
}
@media (max-width: 767px) {
.hth_ht .hth .box .swiper .swiper-slide .item .txt .gyr {
opacity: 1;
}
}
.hth_ht .hth .box .swiper .swiper-slide .item .txt .gyr .g_tit {
margin-bottom:30px;
display: flex;
align-items: center;
}
.hth_ht .hth .box .swiper .swiper-slide .item .txt .gyr .g_tit i {
margin-right: 6px;
flex-shrink: 0;
display: flex;
width: 23px;
height: auto;
}
@media (max-width: 767px) {
.hth_ht .hth .box .swiper .swiper-slide .item .txt .gyr .g_tit i {
width: 20px;
}
}
.hth_ht .hth .box .swiper .swiper-slide .item .txt .gyr .g_tit i svg,
.hth_ht .hth .box .swiper .swiper-slide .item .txt .gyr .g_tit i img {
width: 100%;
height: auto;
}
.hth_ht .hth .box .swiper .swiper-slide .item .txt .gyr .g_tit i svg path,
.hth_ht .hth .box .swiper .swiper-slide .item .txt .gyr .g_tit i img path {
fill: #fff;
}
.hth_ht .hth .box .swiper .swiper-slide .item .txt .gyr .g_tit h3 {
font-weight: bold;
font-size: 20px;
}
.hth_ht .hth .box .swiper .swiper-slide .item .txt .gyr .gtxt {
margin-bottom:30px;
}
.hth_ht .hth .box .swiper .swiper-slide .item .txt .gyr .gtxt p {
margin-bottom: 5px;
font-weight: bold;
}
.hth_ht .hth .box .swiper .swiper-slide .item .txt .gyr .gyr_box {
width: 100%;
}
.hth_ht .hth .box .swiper .swiper-slide .item .txt .gyr .gyr_box .g_p {
margin-bottom:5px;
font-weight: bold;
}
.hth_ht .hth .box .swiper .swiper-slide .item .txt .gyr .gyr_box .gyr_con {
width: 100%;
}
.hth_ht .hth .box .swiper .swiper-slide .item .txt .gyr .gyr_box .gyr_con .gyr_it {
display: flex;
align-items: center;
justify-content: space-between;
margin-bottom:10px;
background: rgba(255, 255, 255, 0.2);
border-radius: 5px;
width: 100%;
transition: all 0.4s;
padding: 6px 10px;
color: var(--white);
}
.hth_ht .hth .box .swiper .swiper-slide .item .txt .gyr .gyr_box .gyr_con .gyr_it:hover {
background: #fff;
}
.hth_ht .hth .box .swiper .swiper-slide .item .txt .gyr .gyr_box .gyr_con .gyr_it:hover .left span {
color: var(--primary-color);
border-color: #e5e5e5;
}
.hth_ht .hth .box .swiper .swiper-slide .item .txt .gyr .gyr_box .gyr_con .gyr_it:hover .left p {
color: #666;
}
.hth_ht .hth .box .swiper .swiper-slide .item .txt .gyr .gyr_box .gyr_con .gyr_it:hover i {
opacity: 1;
color: var(--primary-color);
}
.hth_ht .hth .box .swiper .swiper-slide .item .txt .gyr .gyr_box .gyr_con .gyr_it .left {
width: 90%;
display: flex;
align-items: center;
}
.hth_ht .hth .box .swiper .swiper-slide .item .txt .gyr .gyr_box .gyr_con .gyr_it .left span {
flex-shrink: 0;
min-width: 50px;
position: relative;
border-right: 1px solid rgba(255, 255, 255, 0.4);
line-height: 1;
margin-right: 12px;
transition: all 0.4s;
padding-right: 12px;
}
.hth_ht .hth .box .swiper .swiper-slide .item .txt .gyr .gyr_box .gyr_con .gyr_it .left p {
transition: all 0.4s;
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
margin: 0;
}
.hth_ht .hth .box .swiper .swiper-slide .item .txt .gyr .gyr_box .gyr_con .gyr_it i {
transition: all 0.4s;
margin-left: 30px;
flex-shrink: 0;
display: flex;
align-items: center;
justify-content: center;
width: 8px;
height: auto;
color: #fff;
opacity: 0;
}
.hth_ht .hth .box .swiper .swiper-slide .item .txt .gyr .gyr_box .gyr_con .gyr_it i svg,
.hth_ht .hth .box .swiper .swiper-slide .item .txt .gyr .gyr_box .gyr_con .gyr_it i img {
width: 100%;
height: auto;
}
.hth_ht .hth .box .swiper .swiper-slide .item .txt .gyr .gyr_box .gyr_con .gyr_it i svg path,
.hth_ht .hth .box .swiper .swiper-slide .item .txt .gyr .gyr_box .gyr_con .gyr_it i img path {
fill: var(--primary-color);
}
.hth_ht .hth .box .swiper .swiper-slide .item .txt .gyr .g_a {
width: 100%;
display: flex;
justify-content: space-between;
margin-top: 20px;
}
.hth_ht .hth .box .swiper .swiper-slide .item .txt .gyr .g_a a {
display: flex;
align-items: center;
justify-content: center;
border-radius: 10px;
width: calc(50% - 7px);
padding: 8px;
color: var(--white);
background: rgba(255, 255, 255, 0.2);
transition: all 0.4s;
}
.hth_ht .hth .box .swiper .swiper-slide .item .txt .gyr .g_a a:hover {
background: #fff;
color: var(--primary-color);
}
.font28{font-size: 22px;}
.hth_ht .g_newvid {
width: 100%;
height: 100vh;
}
.hth_ht .g_newvid img,
.hth_ht .g_newvid video {
width: 100%;
height: 100%;
object-fit: cover;
}
.hth_ht .hfo .box {
display: flex;
flex-direction: column;
justify-content: flex-end;
align-items: center;
padding: 1px 0;
width: 100%;
height: 100%;
}
.hth_ht .hfo .box .gtit {
opacity: 0;
position: relative;
margin: 28vh auto 0;
width: 617px;
transform: scale(1.3);
}
@media (max-width: 767px) {
.hth_ht .hfo .box .gtit {
transform: scale(1);
width: 80%;
margin: 11vh auto 0;
display: none;
}
}
.hth_ht .hfo .box .gtit .img1 {
width: 100%;
}
.hth_ht .hfo .box .gtit .img2 {
position: absolute;
left: -5px;
top: 90%;
opacity: 1;
width: 100%;
}
.hth_ht .hfo .box .gtit .maskLayer {
overflow: hidden;
position: absolute;
left: 0;
top: 0px;
width: 100%;
height: 100%;
clip-path: inset(0.5% 0.5% 0.5% 1.2%);
}
@media screen and (min-width: 1940px) {
.hth_ht .hfo .box .gtit .maskLayer {
clip-path: inset(0.5% -0.5% 0.5% -0.8%);
}
}
@media (max-width: 767px) {
.hth_ht .hfo .box .gtit .maskLayer {
display: none;
}
}
.hth_ht .hfo .box .gtit .maskLayer video {
position: absolute;
left: 0px;
top: 0px;
width: 100%;
height: 100%;
object-fit: cover;
-webkit-mask-image: url(//honbase.com.hk/wp-content/themes/honbase/assets/images/home15.jpg);
mask-image: url(//honbase.com.hk/wp-content/themes/honbase/assets/images/home15.jpg);
-webkit-mask-repeat: no-repeat;
mask-repeat: no-repeat;
-webkit-mask-size: cover;
mask-size: cover;
}
.hth_ht .hfo .box .txt {
transform: translateY(1rem);
opacity: 0;
margin-top: 0.6rem;
text-align: center;
}
@media screen and (min-width: 1940px) {
.hth_ht .hfo .box .txt {
margin-top: 2.6rem;
}
}
@media (max-width: 767px) {
.hth_ht .hfo .box .txt {
opacity: 1;
transform: translateY(0);
}
}
.hth_ht .hfo .box .txt .p1 {
margin-bottom: 0.08rem;
font-weight: 900;
}
@media (max-width: 767px) {
.hth_ht .hfo .box .txt .p1 {
font-size: 24px;
}
}
.hth_ht .hfo .box .txt .p1 span {
color: var(--primary-color);
}
.hth_ht .hfo .box .txt .p2 {
color: #666;
}
.hth_ht .hfo .box .g_num {
transform: translateY(1rem);
opacity: 0; width: 100%; display: flex;
justify-content: space-between;
margin: 0.9rem auto;
}
@media (max-width: 767px) {
.hth_ht .hfo .box .g_num {
opacity: 1;
transform: translateY(0);
margin: 0.9rem auto 0;
}
}
@media (max-width: 767px) {
.hth_ht .hfo .box .g_num {
margin-top: 0.9rem;
position: initial;
flex-wrap: wrap;
}
}
.hth_ht .hfo .box .g_num .item {
flex-direction: column;
align-items: center;
display: flex;
}
@media (max-width: 767px) {
.hth_ht .hfo .box .g_num .item {
width: 50%;
margin-bottom: 0.3rem;
}
}
.hth_ht .hfo .box .g_num .item .item_t {
align-items: flex-start;
display: flex;
color: var(--primary-color);
}
.hth_ht .hfo .box .g_num .item .item_t p {
line-height: 1;
font-weight: bold;
}
.hth_ht .hfo .box .g_num .item .item_t span {
margin: 0.06rem 0 0 0.07rem;
font-weight: bold;
line-height: 1;
}
.hth_ht .hfo .box .g_num .item .item_b {
margin-top: 0.1rem;
}
.hth_ht .hfo .box .g_num .item .item_b p {
font-weight: bold;
}
.hfi {
padding: 80px 0 0;
}
.hfi .g_video {
position: absolute;
top: 0;
left: 0;
overflow: hidden;
width: 100%;
height: 100%;
}
.hfi .g_video img,
.hfi .g_video video {
margin: -1% 0 0 -1%;
width: 102%;
height: 102%;
object-fit: cover;
}
@media (max-width: 767px) {
.hfi {
padding: 40px 0;
}
}
.hfi .container .hfi_box {
display: flex;
justify-content: space-between;
}
@media (max-width: 991px) {
.hfi .container .hfi_box {
flex-direction: column;
align-items: center;
height: 100%;
}
}
@media (max-width: 991px) {
.hfi .container .hfi_box .g_title {
width: 100%;
}
}
@media (max-width: 767px) {
.hfi .container .hfi_box .g_title h2 {
font-size: 24px;
}
}
.hfi .container .hfi_box .hfi_r {
width:400px;
}
@media (max-width: 991px) {
.hfi .container .hfi_box .hfi_r {
width: 100%;
margin-top: 0.5rem;
display: flex;
justify-content: space-between;
}
}
.hfi .container .hfi_box .hfi_r .item {
border-bottom: 1px solid #dcdde1;
justify-content: space-between;
align-items: flex-start;
display: flex;
position: relative;
padding: 20px 0;
margin: 20px 15px;
}
@media (max-width: 991px) {
.hfi .container .hfi_box .hfi_r .item {
margin-bottom: 0;
padding-bottom: 0;
border: none;
align-items: center;
flex-direction: column;
}
}
.hfi .container .hfi_box .hfi_r .item:last-child {
border: none;
}
.hfi .container .hfi_box .hfi_r .item:hover::after {
width: 100%;
}
.hfi .container .hfi_box .hfi_r .item:hover .item_b p {
right: 0;
color: var(--primary-color);
}
.hfi .container .hfi_box .hfi_r .item:hover .item_b i {
left: 0;
opacity: 1;
}
.hfi .container .hfi_box .hfi_r .item::after {
content: '';
position: absolute;
width: 0;
height: 2px;
background: var(--primary-color);
left: 0;
bottom: 0;
transition: all 0.4s;
}
.hfi .container .hfi_box .hfi_r .item .item_t {
align-items: flex-start;
display: flex;
color: var(--primary-color);
}
.hfi .container .hfi_box .hfi_r .item .item_t p {
line-height: 0.8;
font-size:30px;
}
.hfi .container .hfi_box .hfi_r .item .item_t span {
margin: 0.06rem 0 0 0.15rem;
font-weight: bold;
line-height: 1;
}
.hfi .container .hfi_box .hfi_r .item .item_b {
display: flex;
align-items: center;
}
@media (max-width: 991px) {
.hfi .container .hfi_box .hfi_r .item .item_b {
margin-top: 0.2rem;
}
}
.hfi .container .hfi_box .hfi_r .item .item_b p {
transition: all 0.4s;
position: relative;
right: -0.2rem;
color: #333;
font-weight: bold;
font-size: 20px;
}
.hfi .container .hfi_box .hfi_r .item .item_b i {
transition: all 0.4s;
position: relative;
left: -0.2rem;
opacity: 0;
margin-left: 10px;
flex-shrink: 0;
display: flex;
align-items: center;
justify-content: center;
width: 16px;
height: auto;
color: var(--primary-color);
font-size: 12px;
}
.hfi .container .hfi_box .hfi_r .item .item_b i svg,
.hfi .container .hfi_box .hfi_r .item .item_b i img {
width: 100%;
height: auto;
}
.hfi .container .hfi_box .hfi_r .item .item_b i svg path,
.hfi .container .hfi_box .hfi_r .item .item_b i img path {
fill: var(--primary-color);
}
.hen {
border-top: 1px solid #ddd;
padding:  80px 0;
}
.hen .box {
margin-top: 0.58rem;
display: flex;
justify-content: space-between;
}
@media (max-width: 991px) {
.hen .box {
flex-direction: column;
}
}
.hen .box .gl {
position: relative;
width: 58.125%;
}
.hen .box .gl img{
max-width: 100%;
overflow: hidden;
border-radius: 10px;
max-height: 400px;
width: 100%;
object-fit: cover;
cursor: pointer;
}
@media (max-width: 991px) {
.hen .box .gl {
width: 100%;
margin-bottom: 20px;
}
}
.hen .box .gl .public-img {
position: absolute;
opacity: 0;
top: 0;
transition: all 0.4s;
border-radius: 10px;
}
.hen .box .gl .public-img.on {
opacity: 1;
position: relative;
}
.hen .box .gl .public-img:before {
padding-top: 53.87096774%;
}
.hen .box .gr {
width: 39.1875%;
}
@media (max-width: 991px) {
.hen .box .gr {
width: 100%;
}
}
.hen .box .gr .gr_box {
padding: 0 10px 10px;
overflow: auto;
height:500px;
}
@media (max-width: 1260px) {
.hen .box .gr .gr_box {
height: 400px;
}
}
@media (max-width: 767px) {
.hen .box .gr .gr_box {
height: auto;
}
}
.hen .box .gr .gr_box::-webkit-scrollbar {
width: 3px;
height: 3px;
}
.hen .box .gr .gr_box::-webkit-scrollbar-track {
background: #fff;
border-radius: 2px;
}
.hen .box .gr .gr_box::-webkit-scrollbar-thumb {
background: #106EB8;
border-radius: 2px;
}
.hen .box .gr .gr_box::-webkit-scrollbar-corner {
background: #106EB8;
}
.hen .box .gr .gr_box .item {
display: block;
cursor: pointer;
margin-bottom: 15px;
border-radius: 10px;
position: relative;
transition: all 0.4s;
}
.hen .box .gr .gr_box .item:first-child .g_p {
display: block;
}
.hen .box .gr .gr_box .item.on {
box-shadow: 0 0 10px rgba(0, 0, 0, 0.06);
}
.hen .box .gr .gr_box .item.on .gico {
opacity: 1;
}
.hen .box .gr .gr_box .item.on .itembox {
padding: 20px;
}
.hen .box .gr .gr_box .item .itembox .g_tit h3 {
font-size: 16px;
}
.hen .box .gr .gr_box .item.on .itembox .g_tit h3 {
color: var(--primary-color);
font-size: 22px;
}
@media (max-width: 1580px) {
.hen .box .gr .gr_box .item.on .itembox .g_tit h3 {
font-size: 18px;
}
}
@media (max-width: 767px) {
.hen .box .gr .gr_box .item.on .itembox .g_tit h3 {
font-size: 16px;
}
}
.hen .box .gr .gr_box .item .gico {
transition: all 0.4s;
opacity: 0;
z-index: 1;
position: absolute;
left: -12px;
top: 50%;
transform: translateY(-50%);
flex-shrink: 0;
display: flex;
align-items: center;
justify-content: center;
width: 20px;
height: 20px;
font-size: 14px;
color: var(--primary-color);
}
.hen .box .gr .gr_box .item .gico svg,
.hen .box .gr .gr_box .item .gico img {
width: 100%;
height: auto;
}
.hen .box .gr .gr_box .item .gico svg path,
.hen .box .gr .gr_box .item .gico img path {
fill: var(--primary-color);
}
.hen .box .gr .gr_box .item .itembox {
transition: all 0.4s;
border-radius: 15px;
position: relative;
z-index: 10;
background: #fff;
padding: 20px;
}
.hen .box .gr .gr_box .item .g_tit span {
color: #666;
opacity: 0.6;
}
.hen .box .gr .gr_box .item .g_p {
display: none;
margin-top: 20px;
color: #999; }
@media (max-width: 767px) {
.hen .box .gr .gr_box .item .g_p {
display: none !important;
}
}
.banner-next-part{
background-color: var(--primary-color);
border-top: 1px solid #eeeeee4f;
padding: 20px 0;
color: #ffffff;
text-align: left;
}
.banner-next-part .stat-card{display: flex;display: -webkit-flex;display: -ms-flexbox;
align-items: center;}
.banner-next-part .stat-number{display: inline-block;padding-right: 10px;}
.banner-next-part .stat-label{display: inline-block;text-align: left;}
.banner-next-part .row .col:nth-child(2){
border-left: 1px solid #eeeeee4f;
border-right: 1px solid #eeeeee4f;
} .global-all{
position: relative;
height: 100%;
width: 100%;
}
.map-radial{
background-image: url(//honbase.com.hk/wp-content/themes/honbase/assets/images/gmap_03.jpg); border-radius: 20px; padding: 1.8rem 1rem 1.5rem;
margin-bottom: 3rem;
border: 1px solid rgba(255,255,230,0.8);
transition: all 0.2s;
background-position: center;
background-repeat: no-repeat;
background-size: contain;
}
.global-all .svg-wrap {
width: 100%;
overflow-x: auto;
display: flex;
justify-content: center;
}
.global-all .global-all svg {
max-width: 1150px;
width: 100%;
height: auto;
font-family: 'Inter', sans-serif;
} .global-all .moving-dash {
stroke-dasharray: 8 8;
animation: flowForward 1.2s linear infinite;
stroke-linecap: round;
filter: drop-shadow(0 0 3px rgba(44,125,160,0.6));
}
@keyframes flowForward {
0% { stroke-dashoffset: 0; }
100% { stroke-dashoffset: -16; }
} .global-all .radial-line {
stroke: #f4a261;
stroke-width: 2.4;
stroke-dasharray: 9 9;
animation: flowRadial 1s linear infinite;
}
@keyframes flowRadial {
0% { stroke-dashoffset: 0; }
100% { stroke-dashoffset: -18; }
} .global-all .dash-slow {
stroke-dasharray: 6 8;
animation: flowForward 1.8s linear infinite;
stroke-width: 1.8;
} .global-all .hub-pulse {
animation: pulseRing 2.2s infinite ease-out;
transform-origin: center;
}
@keyframes pulseRing {
0% { r: 8; opacity: 0.9; stroke-width: 2; }
50% { r: 16; opacity: 0.3; stroke-width: 1; }
100% { r: 8; opacity: 0.9; stroke-width: 2; }
}
.global-all .glow-hk {
animation: softGlow 1.8s infinite alternate;
}
@keyframes softGlow {
0% { filter: drop-shadow(0 0 2px #ff9f4a); }
100% { filter: drop-shadow(0 0 12px #ff7020); }
} .qua{margin: 80px 0;}
.qua-swi {
padding: 50px 0;
position: relative;
overflow: hidden;
}
.qua-swi .swiper-wrapper {
display: flex;
transition-timing-function: ease-in-out;
}
.qua-swi .swiper-slide {
flex-shrink: 0; background: white;
border-radius: 12px;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
overflow: hidden;
transition: transform 0.3s;
}
.qua-swi .swiper-slide img {
width: 100%;
height: 100%;
object-fit: contain; background-color: #f0f0f0;
}
.qua-swi .swiper-slide-active {
transform: scale(1.2);
z-index: 10;
}
.qua-swi .swiper-button-next,
.qua-swi .swiper-button-prev {
position: absolute;
top: 50%;
transform: translateY(-50%);
width: 50px;
height: 50px;
background-color: rgba(255, 255, 255, 0.9);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
z-index: 20;
cursor: pointer;
transition: all 0.3s ease-in-out;
}
.qua-swi .swiper-button-next {
right: 5px;
}
.qua-swi .swiper-button-prev {
left: 5px;
}
.qua-swi .swiper-button-next:hover,
.qua-swi .swiper-button-prev:hover {
cursor: pointer;
background-color: #106EB8;
}
.qua-swi .swiper-button-next:after,
.qua-swi .swiper-button-prev:after {
font-size: 24px;
color: #000;
}
.qua-swi .swiper-button-next:hover:after,
.qua-swi .swiper-button-prev:hover:after {
color: #fff;
}
.qua-swi .online-consult {
position: fixed;
right: 20px;
top: 50%;
transform: translateY(-50%);
background-color: #1890ff;
color: white;
padding: 10px 15px;
border-radius: 4px;
font-size: 14px;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
z-index: 1000;
cursor: pointer;
}
.qua-swi .online-consult:after {
content: "";
position: absolute;
left: -8px;
top: 50%;
transform: translateY(-50%);
border-width: 8px 8px 8px 0;
border-style: solid;
border-color: transparent #1890ff transparent transparent;
}
@media (max-width: 768px) {
.qua-swi .swiper-slide-active {
transform: scale(1);
}
.qua-swi .swiper-button-next,
.qua-swi .swiper-button-prev {
width: 40px;
height: 40px;
}
}
.certificate-title{
padding: 10px;
font-size: 14px;
min-height: 130px;
transform: none;
}  .about-hero {
position: relative;
min-height: 480px;
display: flex; align-items: center; justify-content: center;
background: linear-gradient(135deg, #106EB8 0%, #26629b 40%, #1a5ba0 100%);
overflow: hidden;
padding-top: 80px;
}
.about-hero::before {
content: '';
position: absolute; inset: 0;
background:
radial-gradient(circle at 20% 80%, rgba(0,163,255,0.15) 0%, transparent 50%),
radial-gradient(circle at 80% 20%, rgba(46,125,203,0.12) 0%, transparent 50%);
z-index: 1;
}
.about-hero::after {
content: '';
position: absolute; inset: 0;
background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
z-index: 1;
}
.about-hero-content {
position: relative; z-index: 5;
text-align: center; color: white;
padding: 60px 20px;
}
.about-hero-content .breadcrumb-text {
font-size: 14px; letter-spacing: 3px;
text-transform: uppercase; opacity: 0.7;
margin-bottom: 16px; font-weight: 500;
}
.about-hero-content h1 {
font-size: clamp(26px, 4vw, 36px);
font-weight: 800; letter-spacing: -0.02em;
margin-bottom: 16px;
text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.about-hero-content p {
font-size: 1.15rem; opacity: 0.85;
max-width: 640px; margin: 0 auto;
line-height: 1.7;
}
.about-hero-decoration {
position: absolute; z-index: 2;
border-radius: 50%;
opacity: 0.08;
background: white;
}
.about-hero-decoration.d1 {
width: 500px; height: 500px;
top: -150px; right: -100px;
}
.about-hero-decoration.d2 {
width: 300px; height: 300px;
bottom: -80px; left: -60px;
}
.about-hero-decoration.d3 {
width: 120px; height: 120px;
top: 40%; left: 10%; opacity: 0.05;
} .overview-section {
padding: 100px 0;
background: var(--white);
}
.overview-grid {
display: flex; align-items: center; gap: 60px;
}
.overview-text { flex: 1; }
.overview-image { flex: 1; position: relative; }
.overview-image .main-img {
width: 100%; border-radius: 16px;
box-shadow: 0 20px 60px rgba(13,59,102,0.15);
display: block;
}
.overview-image .float-card {
position: absolute; bottom: -30px; right: -20px;
background: white; border-radius: 12px;
padding: 20px 28px;
box-shadow: 0 15px 40px rgba(0,0,0,0.1);
display: flex; align-items: center; gap: 16px;
}
.overview-image .float-card .fc-number {
font-size: 2.5rem; font-weight: 800;
color: var(--accent); line-height: 1;
}
.overview-image .float-card .fc-text {
font-size: 0.85rem; color: var(--text-light);
line-height: 1.4; font-weight: 500;
}
.overview-highlights {
display: flex; gap: 32px; margin-top: 32px;
}
.overview-highlights .oh-item {
display: flex; align-items: flex-start; gap: 12px;
}
.overview-highlights .oh-icon {
width: 42px; height: 42px; border-radius: 10px;
background: var(--light-blue);
display: flex; align-items: center; justify-content: center;
flex-shrink: 0; color: var(--primary-color); font-size: 20px;
}
.overview-highlights .oh-label {
font-size: 0.95rem; font-weight: 600;
color: var(--text-dark); line-height: 1.4;
}
.overview-highlights .oh-sub {
font-size: 0.82rem; color: var(--text-light);
margin-top: 2px;
} .mv-section {
padding: 100px 0;
background: var(--gray-bg);
}
.mv-cards {
display: grid; grid-template-columns: 1fr 1fr;
gap: 40px; margin-top: 50px;
}
.mv-card {
background: white; border-radius: 16px;
padding: 48px 40px;
box-shadow: 0 4px 20px rgba(0,0,0,0.04);
transition: all 0.4s cubic-bezier(0.2,0.95,0.4,1);
position: relative; overflow: hidden;
}
.mv-card::before {
content: ''; position: absolute;
top: 0; left: 0; width: 4px; height: 100%;
background: var(--accent);
transform: scaleY(0); transform-origin: top;
transition: transform 0.4s ease;
}
.mv-card:hover::before { transform: scaleY(1); }
.mv-card:hover {
transform: translateY(-6px);
box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}
.mv-card .mv-icon {
width: 64px; height: 64px; border-radius: 14px;
background: var(--light-blue);
display: flex; align-items: center; justify-content: center;
margin-bottom: 24px; color: var(--primary-color);
font-size: 28px; transition: all 0.3s ease;
}
.mv-card:hover .mv-icon {
background: var(--accent); color: white;
}
.mv-card h3 {
font-size: 1.5rem; font-weight: 700;
color: var(--text-dark); margin-bottom: 16px;
}
.mv-card p {
font-size: 1rem; color: var(--text-light);
line-height: 1.8;
} .values-section {
padding: 100px 0;
background: var(--white);
}
.values-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 30px; margin-top: 50px;
}
.value-card {
text-align: center; padding: 40px 24px;
border-radius: 16px;
background: var(--gray-bg);
transition: all 0.4s cubic-bezier(0.2,0.95,0.4,1);
cursor: default;
}
.value-card:hover {
transform: translateY(-10px);
box-shadow: 0 20px 50px rgba(13,59,102,0.1);
background: white;
}
.value-card .value-icon {
width: 72px; height: 72px; border-radius: 50%;
background: linear-gradient(135deg, var(--light-blue), #d0e4f7);
display: flex; align-items: center; justify-content: center;
margin: 0 auto 24px; font-size: 32px; color: var(--primary-color);
transition: all 0.3s ease;
}
.value-card:hover .value-icon {
background: linear-gradient(135deg, var(--accent), var(--secondary-color));
color: white; transform: scale(1.1);
}
.value-card h4 {
font-size: 1.15rem; font-weight: 700;
color: var(--text-dark); margin-bottom: 12px;
}
.value-card p {
font-size: 0.9rem; color: var(--text-light);
line-height: 1.6;
} .timeline-section {
padding: 100px 0;
background: linear-gradient(180deg, #106EB8 0%, #0d3b66 100%);
color: white; position: relative; overflow: hidden;
}
.timeline-section::before {
content: '';
position: absolute; inset: 0;
background:
radial-gradient(circle at 30% 50%, rgba(0,163,255,0.08) 0%, transparent 60%),
radial-gradient(circle at 70% 30%, rgba(46,125,203,0.06) 0%, transparent 50%);
}
.timeline-section .section-label { color: var(--accent); }
.timeline-section .section-title { color: white; }
.timeline-section .section-desc { color: rgba(255,255,255,0.7); }
.timeline-track {
position: relative; margin-top: 60px;
padding: 0 40px;
}
.timeline-line {
position: absolute;
left: 50%; top: 0; bottom: 0;
width: 2px;
background: linear-gradient(to bottom, transparent, rgba(0,163,255,0.4), rgba(0,163,255,0.4), transparent);
transform: translateX(-50%);
}
.timeline-item {
display: flex; align-items: flex-start;
margin-bottom: 60px; position: relative;
}
.timeline-item:last-child { margin-bottom: 0; }
.timeline-item:nth-child(odd) { flex-direction: row; }
.timeline-item:nth-child(even) { flex-direction: row-reverse; }
.timeline-item .ti-content {
width: 44%; padding: 28px 32px;
background: rgba(255,255,255,0.06);
border: 1px solid rgba(255,255,255,0.1);
border-radius: 14px;
backdrop-filter: blur(8px);
transition: all 0.3s ease;
}
.timeline-item .ti-content:hover {
background: rgba(255,255,255,0.1);
border-color: rgba(0,163,255,0.3);
transform: translateY(-4px);
}
.timeline-item .ti-dot {
position: absolute; left: 50%;
transform: translateX(-50%);
width: 16px; height: 16px;
border-radius: 50%;
background: var(--accent);
border: 3px solid #0d3b66;
box-shadow: 0 0 20px rgba(0,163,255,0.4);
z-index: 2; top: 32px;
}
.timeline-item .ti-year {
font-size: 1.4rem; font-weight: 700;
color: var(--white); margin-bottom: 8px;
letter-spacing: 1px;
}
.timeline-item .ti-title {
font-size: 1.1rem; font-weight: 600;
margin-bottom: 8px; color: white;
}
.timeline-item .ti-desc {
font-size: 0.9rem; color: rgba(255,255,255,0.65);
line-height: 1.6;
} .global-section {
padding: 100px 0;
background: var(--gray-bg);
}
.global-stats {
display: grid; grid-template-columns: repeat(4, 1fr);
gap: 30px; margin-top: 50px;
}
.global-stat-card {
text-align: center; padding: 36px 20px;
background: white; border-radius: 14px;
box-shadow: 0 4px 20px rgba(0,0,0,0.04);
transition: all 0.4s cubic-bezier(0.2,0.95,0.4,1);
}
.global-stat-card:hover {
transform: translateY(-8px);
box-shadow: 0 20px 50px rgba(13,59,102,0.1);
}
.global-stat-card .gs-icon {
font-size: 36px; color: var(--accent);
margin-bottom: 16px;
}
.global-stat-card .gs-number {
font-size: 2.4rem; font-weight: 800;
color: var(--text-dark); line-height: 1;
margin-bottom: 8px;
font-family: 'Inter', monospace;
}
.global-stat-card .gs-label {
font-size: 0.9rem; color: var(--text-light);
font-weight: 500;
}
.global-map-wrap {
margin-top: 50px;
background: white; border-radius: 16px;
padding: 40px; box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}
.global-map-wrap img {
width: 100%; border-radius: 10px;
}
.map-markers {
display: flex; flex-wrap: wrap; gap: 16px;
justify-content: center; margin-top: 24px;
}
.map-marker {
display: flex; align-items: center; gap: 8px;
padding: 8px 18px; border-radius: 30px;
background: var(--light-blue);
font-size: 0.85rem; font-weight: 500;
color: var(--text-dark);
transition: all 0.3s ease;
}
.map-marker:hover {
background: var(--accent); color: white;
}
.map-marker .dot {
width: 8px; height: 8px; border-radius: 50%;
background: var(--accent);
}
.map-marker:hover .dot { background: white; } .team-section {
padding: 100px 0;
background: var(--white);
}
.team-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 36px; margin-top: 50px;
}
.team-card {
background: white; border-radius: 16px;
overflow: hidden;
box-shadow: 0 4px 20px rgba(0,0,0,0.05);
transition: all 0.4s cubic-bezier(0.2,0.95,0.4,1);
}
.team-card:hover {
transform: translateY(-10px);
box-shadow: 0 20px 50px rgba(13,59,102,0.12);
}
.team-card .tc-img {
width: 100%; height: 300px;
object-fit: cover;
filter: grayscale(20%);
transition: filter 0.5s ease;
}
.team-card:hover .tc-img { filter: grayscale(0%); }
.team-card .tc-info {
padding: 24px; text-align: center;
}
.team-card .tc-name {
font-size: 1.15rem; font-weight: 700;
color: var(--text-dark); margin-bottom: 4px;
}
.team-card .tc-role {
font-size: 0.9rem; color: var(--accent);
font-weight: 500; margin-bottom: 12px;
}
.team-card .tc-desc {
font-size: 0.85rem; color: var(--text-light);
line-height: 1.6;
}
.team-card .tc-socials {
display: flex; justify-content: center; gap: 12px;
margin-top: 16px;
}
.team-card .tc-socials a {
width: 36px; height: 36px; border-radius: 50%;
background: var(--light-blue);
display: flex; align-items: center; justify-content: center;
color: var(--text-dark); font-size: 16px;
transition: all 0.3s ease;
}
.team-card .tc-socials a:hover {
background: var(--accent); color: white;
} .cta-section {
padding: 80px 0;
background: linear-gradient(135deg, var(--primary-color) 0%, #1a5ba0 100%);
color: white; text-align: center;
}
.cta-section h2 {
font-size: clamp(24px, 3.5vw, 40px);
font-weight: 700; margin-bottom: 16px;
}
.cta-section p {
font-size: 1.1rem; opacity: 0.85;
max-width: 560px; margin: 0 auto 32px;
line-height: 1.7;
}
.cta-btn {
display: inline-flex; align-items: center; gap: 10px;
padding: 14px 36px; border-radius: 50px;
background: white; color: var(--primary-color);
font-weight: 700; font-size: 1rem;
transition: all 0.3s ease;
border: none; cursor: pointer;
}
.cta-btn:hover {
transform: translateY(-3px);
box-shadow: 0 15px 35px rgba(0,0,0,0.2);
background: var(--accent); color: white;
} .stagger-children > * {
opacity: 0; transform: translateY(25px);
transition: opacity 0.7s ease, transform 0.7s ease;
}
.stagger-children.active > *:nth-child(1) { transition-delay: 0.05s; }
.stagger-children.active > *:nth-child(2) { transition-delay: 0.12s; }
.stagger-children.active > *:nth-child(3) { transition-delay: 0.19s; }
.stagger-children.active > *:nth-child(4) { transition-delay: 0.26s; }
.stagger-children.active > * {
opacity: 1; transform: translateY(0);
}  .product-service-hero {
position: relative;
min-height: 520px;
display: flex; align-items: center; justify-content: center;
background: linear-gradient(135deg, #106EB8 0%, #26629b 40%, #1a5ba0 100%);
overflow: hidden;
padding-top: 80px;
}
.product-service-hero::before {
content: '';
position: absolute; inset: 0;
background:
radial-gradient(circle at 70% 25%, rgba(0,163,255,0.12) 0%, transparent 50%),
radial-gradient(circle at 20% 70%, rgba(46,125,203,0.1) 0%, transparent 50%);
z-index: 1;
}
.product-service-hero::after {
content: '';
position: absolute; inset: 0;
background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.025'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
z-index: 1;
}
.product-service-hero-content {
position: relative; z-index: 5;
text-align: center; color: white;
padding: 60px 20px;
}
.product-service-hero-content .breadcrumb-text {
font-size: 14px; letter-spacing: 3px;
text-transform: uppercase; opacity: 0.7;
margin-bottom: 16px; font-weight: 500;
}
.product-service-hero-content h1 {
font-size: clamp(26px, 4vw, 36px);
font-weight: 800; letter-spacing: -0.02em;
margin-bottom: 16px;
text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.product-service-hero-content p {
font-size: 1.15rem; opacity: 0.85;
max-width: 660px; margin: 0 auto;
line-height: 1.7;
}
.hero-decoration {
position: absolute; z-index: 2;
border-radius: 50%; opacity: 0.06; background: white;
}
.hero-decoration.d1 { width: 500px; height: 500px; top: -150px; right: -100px; }
.hero-decoration.d2 { width: 300px; height: 300px; bottom: -80px; left: -60px; }
.hero-float-icons {
position: absolute; inset: 0; z-index: 2; pointer-events: none;
}
.hero-float-icons .hfi {
position: absolute; color: rgba(255,255,255,0.05); font-size: 80px;
}
.hero-float-icons .hfi-1 { top: 20%; left: 5%; transform: rotate(-15deg); }
.hero-float-icons .hfi-2 { top: 15%; right: 8%; transform: rotate(20deg); font-size: 60px; }
.hero-float-icons .hfi-3 { bottom: 18%; left: 10%; transform: rotate(10deg); font-size: 50px; }
.hero-float-icons .hfi-4 { bottom: 12%; right: 6%; transform: rotate(-25deg); font-size: 70px; } .overview-section {
padding: 80px 0;
background: var(--white);
}
.overview-grid {
display: flex; align-items: center; gap: 60px;
}
.overview-text { flex: 1; }
.overview-text h2 { margin-bottom: 20px; }
.overview-text p {
font-size: 1.05rem; line-height: 1.8;
color: #555; margin-bottom: 20px;
}
.overview-tags {
display: flex; flex-wrap: wrap; gap: 10px;
margin-top: 16px;
}
.overview-tag {
padding: 6px 16px; border-radius: 20px;
background: var(--light-blue);
font-size: 0.82rem; font-weight: 600;
color: var(--text-dark);
display: inline-flex; align-items: center; gap: 6px;
}
.overview-tag i { color: var(--accent); font-size: 12px; }
.overview-image { flex: 1; position: relative; }
.overview-image .main-img {
width: 100%; border-radius: 16px;
box-shadow: 0 20px 60px rgba(16,110,184,0.15);
display: block;
} .services-section {
padding: 80px 0;
background: var(--gray-bg);
}
.services-grid {
display: grid; grid-template-columns: repeat(3, 1fr);
gap: 24px; margin-top: 40px;
}
.service-card {
background: white; border-radius: 16px;
padding: 32px;
box-shadow: 0 4px 20px rgba(0,0,0,0.04);
transition: all 0.4s cubic-bezier(0.2,0.95,0.4,1);
border: 1px solid #eef2f7;
position: relative; overflow: hidden;
}
.service-card::before {
content: ''; position: absolute;
top: 0; left: 0; width: 100%; height: 3px;
background: linear-gradient(to right, var(--accent), var(--secondary-color));
transform: scaleX(0); transform-origin: left;
transition: transform 0.4s ease;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover {
transform: translateY(-8px);
box-shadow: 0 20px 50px rgba(16,110,184,0.12);
border-color: transparent;
}
.service-card .sc-icon {
width: 64px; height: 64px; border-radius: 14px;
background: var(--light-blue);
display: flex; align-items: center; justify-content: center;
margin-bottom: 22px; font-size: 28px; color: var(--primary-color);
transition: all 0.3s ease;
}
.service-card:hover .sc-icon {
background: var(--accent); color: white;
}
.service-card h3 {
font-size: 1.25rem; font-weight: 700;
color: var(--text-dark); margin-bottom: 12px;
}
.service-card p {
font-size: 0.95rem; color: var(--text-light);
line-height: 1.7; margin-bottom: 20px;
}
.service-card .sc-tags {
display: flex; flex-wrap: wrap; gap: 8px;
}
.sc-tag {
padding: 4px 12px; border-radius: 20px;
background: var(--gray-bg);
font-size: 0.75rem; font-weight: 600;
color: var(--text-light);
} .channels-section {
padding: 80px 0;
background: var(--white);
}
.channel-group {
margin-top: 50px;
}
.channel-group-title {
font-size: 1.4rem; font-weight: 700;
color: var(--text-dark);
margin-bottom: 20px;
display: flex; align-items: center; gap: 10px;
}
.channel-group-title i { color: var(--accent); font-size: 24px; }
.channels-grid {
display: grid; grid-template-columns: repeat(3, 1fr);
gap: 20px;
}
.channel-card {
background: var(--gray-bg); border-radius: 12px;
padding: 24px;
transition: all 0.3s ease;
border: 1px solid transparent;
}
.channel-card:hover {
transform: translateY(-4px);
box-shadow: 0 12px 30px rgba(16,110,184,0.08);
background: white;
border-color: var(--light-blue);
}
.channel-card h4 {
font-size: 1.05rem; font-weight: 700;
color: var(--text-dark); margin-bottom: 8px;
}
.channel-card .cc-route {
font-size: 0.82rem; color: var(--text-light);
margin-bottom: 8px;
}
.channel-card .cc-feature {
font-size: 0.88rem; color: var(--text-color);
line-height: 1.5; margin-bottom: 12px;
}
.channel-card .cc-meta {
display: flex; align-items: center; gap: 12px;
flex-wrap: wrap; margin-top: 12px;
}
.channel-card .cc-meta-item {
font-size: 0.78rem; color: var(--text-light);
display: flex; align-items: center; gap: 5px;
}
.channel-card .cc-meta-item i { color: var(--accent); font-size: 12px; }
.channel-card .cc-btn {
display: inline-flex; align-items: center; gap: 6px;
font-size: 0.82rem; font-weight: 600;
color: var(--accent);
padding: 6px 16px; border-radius: 6px;
background: var(--light-blue);
transition: all 0.3s ease;
}
.channel-card .cc-btn:hover {
background: var(--accent); color: white;
} .advantages-section {
padding: 80px 0;
background: var(--gray-bg);
}
.advantages-grid {
display: grid; grid-template-columns: repeat(4, 1fr);
gap: 24px; margin-top: 40px;
}
.advantage-card {
text-align: center; padding: 40px 24px;
border-radius: 16px;
background: white;
transition: all 0.4s cubic-bezier(0.2,0.95,0.4,1);
border: 1px solid #eef2f7;
}
.advantage-card:hover {
transform: translateY(-10px);
box-shadow: 0 20px 50px rgba(16,110,184,0.1);
border-color: transparent;
}
.advantage-card .adv-icon {
width: 72px; height: 72px; border-radius: 50%;
background: var(--light-blue);
display: flex; align-items: center; justify-content: center;
margin: 0 auto 22px; font-size: 32px; color: var(--primary-color);
transition: all 0.3s ease;
}
.advantage-card:hover .adv-icon {
background: linear-gradient(135deg, var(--accent), var(--secondary-color));
color: white; transform: scale(1.1);
}
.advantage-card h4 {
font-size: 1.05rem; font-weight: 700;
color: var(--text-dark); margin-bottom: 10px;
}
.advantage-card p {
font-size: 0.88rem; color: var(--text-light);
line-height: 1.6;
} .stats-section {
padding: 80px 0;
background: var(--primary-color);
color: white;
}
.stats-grid {
display: grid; grid-template-columns: repeat(3, 1fr);
gap: 30px; margin-top: 40px;
}
.stat-icon {
font-size: 36px; margin-bottom: 16px;
opacity: 0.8;
}
.stat-number {
font-size: 2.4rem; font-weight: 700;
margin-bottom: 8px;
font-family: 'Inter', monospace;
letter-spacing: 1px;
}
.stat-label {
font-size: 0.95rem; opacity: 0.9;
} .faq-section {
padding: 80px 0;
background: var(--white);
}
.faq-list {
max-width: 800px; margin: 40px auto 0;
}
.faq-item {
background: white; border-radius: 12px;
margin-bottom: 12px; overflow: hidden;
border: 1px solid #eef2f7;
transition: all 0.3s ease;
}
.faq-item:hover { border-color: var(--light-blue); }
.faq-item.active { border-color: var(--accent); box-shadow: 0 6px 20px rgba(0,163,255,0.08); }
.faq-question {
padding: 18px 22px; cursor: pointer;
display: flex; justify-content: space-between;
align-items: center; gap: 14px;
font-size: 0.98rem; font-weight: 600;
color: var(--text-dark); transition: color 0.3s ease;
}
.faq-question:hover { color: var(--accent); }
.faq-item.active .faq-question { color: var(--accent); }
.faq-question i {
font-size: 14px; color: var(--accent);
transition: transform 0.3s ease; flex-shrink: 0;
}
.faq-item.active .faq-question i { transform: rotate(180deg); }
.faq-answer {
max-height: 0; overflow: hidden;
transition: max-height 0.4s ease, padding 0.4s ease;
}
.faq-item.active .faq-answer { max-height: 220px; }
.faq-answer-inner {
padding: 0 22px 18px;
font-size: 0.92rem; color: var(--text-light);
line-height: 1.7;
} @media (max-width: 992px) {
.overview-grid { flex-direction: column; }
.services-grid { grid-template-columns: repeat(2, 1fr); }
.channels-grid { grid-template-columns: repeat(2, 1fr); }
.advantages-grid { grid-template-columns: repeat(2, 1fr); }
.stats-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
.product-service-hero { min-height: 380px; }
.services-grid { grid-template-columns: 1fr; }
.channels-grid { grid-template-columns: 1fr; }
.advantages-grid { grid-template-columns: 1fr; }
.stats-grid { grid-template-columns: 1fr; }
.hero-float-icons { display: none; }
}  .products-hero {
position: relative;
min-height: 460px;
display: flex; align-items: center; justify-content: center;
background: linear-gradient(135deg, #106EB8 0%, #26629b 45%, #1a5ba0 100%);
overflow: hidden;
padding-top: 80px;
}
.products-hero::before {
content: '';
position: absolute; inset: 0;
background:
radial-gradient(circle at 75% 30%, rgba(0,163,255,0.12) 0%, transparent 50%),
radial-gradient(circle at 20% 70%, rgba(46,125,203,0.1) 0%, transparent 50%);
z-index: 1;
}
.products-hero::after {
content: '';
position: absolute; inset: 0;
background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.03' fill-rule='evenodd'%3E%3Cpath d='M0 40L40 0H20L0 20M40 40V20L20 40'/%3E%3C/g%3E%3C/svg%3E");
z-index: 1;
}
.products-hero-content {
position: relative; z-index: 5;
text-align: center; color: white;
padding: 60px 20px;
}
.products-hero-content .breadcrumb-text {
font-size: 14px; letter-spacing: 3px;
text-transform: uppercase; opacity: 0.7;
margin-bottom: 16px; font-weight: 500;
}
.products-hero-content h1 {
font-size: clamp(26px, 4vw,30px);
font-weight: 800; letter-spacing: -0.02em;
margin-bottom: 16px;
text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.products-hero-content p {
font-size: 1.15rem; opacity: 0.85;
max-width: 640px; margin: 0 auto;
line-height: 1.7;
}
.hero-decoration {
position: absolute; z-index: 2;
border-radius: 50%; opacity: 0.06; background: white;
}
.hero-decoration.d1 { width: 500px; height: 500px; top: -150px; right: -100px; }
.hero-decoration.d2 { width: 300px; height: 300px; bottom: -80px; left: -60px; }
.hero-decoration.d3 { width: 140px; height: 140px; top: 35%; left: 8%; opacity: 0.04; } .category-section {
padding: 80px 0 0;
background: var(--white);
}
.category-tabs {
display: flex; flex-wrap: wrap;
justify-content: center; gap: 12px;
margin-top: 40px;
}
.category-tab {
padding: 12px 28px; border-radius: 50px;
font-size: 0.95rem; font-weight: 500;
color: var(--text-dark);
background: var(--gray-bg);
border: 2px solid transparent;
cursor: pointer;
transition: all 0.3s ease;
display: inline-flex; align-items: center; gap: 8px;
}
.category-tab i { font-size: 16px; }
.category-tab:hover {
border-color: var(--accent);
color: var(--accent);
background: white;
}
.category-tab.active {
background: var(--accent);
color: white;
border-color: var(--accent);
box-shadow: 0 6px 20px rgba(0,163,255,0.25);
}
.category-tab.active i { color: white; } .products-grid-section {
padding: 50px 0 100px;
background: var(--white);
}
.products-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 30px;
margin-top: 10px;
}
.product-card {
background: white;
border-radius: 14px;
overflow: hidden;
border: 1px solid #eef2f7;
transition: all 0.4s cubic-bezier(0.2,0.95,0.4,1);
cursor: pointer;
position: relative;
}
.product-card:hover {
transform: translateY(-10px);
box-shadow: 0 20px 50px rgba(13,59,102,0.12);
border-color: transparent;
}
.product-card .pc-image {
height: 240px; overflow: hidden;
position: relative; background:#ffffff;padding:15px;
}
.product-card .pc-image img {
width: 100%; height: 100%;
object-fit: contain;
transition: transform 0.6s ease;
}
.product-card:hover .pc-image img {
transform: scale(1.08);
}
.product-card .pc-badge {
position: absolute; top: 14px; left: 14px;
background: var(--accent);
color: white; padding: 4px 14px;
border-radius: 20px; font-size: 0.75rem;
font-weight: 600; letter-spacing: 0.5px;
z-index: 2;
}
.product-card .pc-badge.hot {
background: #e74c3c;
}
.product-card .pc-badge.new {
background: #27ae60;
}
.product-card .pc-body {
padding: 24px;
}
.product-card .pc-category {
font-size: 0.78rem; font-weight: 600;
color: var(--accent);
text-transform: uppercase;
letter-spacing: 1px;
margin-bottom: 8px;
}
.product-card .pc-title {
font-size: 1.15rem; font-weight: 700;
color: var(--text-dark);
margin-bottom: 10px;
line-height: 1.4;
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
overflow: hidden;
}
.product-card .pc-desc {
font-size: 0.9rem; color: var(--text-light);
line-height: 1.6;
display: -webkit-box;
-webkit-line-clamp: 3;
-webkit-box-orient: vertical;
overflow: hidden;
margin-bottom: 16px;
}
.product-card .pc-footer {
display: flex; justify-content: space-between;
align-items: center;
padding-top: 16px;
border-top: 1px solid #eef2f7;
}
.product-card .pc-specs {
display: flex; gap: 14px;
}
.product-card .pc-spec {
font-size: 0.78rem; color: var(--text-light);
display: flex; align-items: center; gap: 4px;
}
.product-card .pc-spec i { color: var(--accent); font-size: 12px; }
.product-card .pc-arrow {
width: 36px; height: 36px;
border-radius: 50%;
background: var(--light-blue);
display: flex; align-items: center; justify-content: center;
color: var(--primary-color);
transition: all 0.3s ease;
font-size: 14px;
}
.product-card:hover .pc-arrow {
background: var(--accent); color: white;
transform: translateX(4px);
} .request-section {
padding: 100px 0;
background: linear-gradient(135deg, var(--primary-color) 0%, #1a5ba0 100%);
color: white; position: relative; overflow: hidden;
}
.request-section::before {
content: '';
position: absolute; inset: 0;
background:
radial-gradient(circle at 80% 40%, rgba(0,163,255,0.1) 0%, transparent 50%);
}
.request-content {
position: relative; z-index: 2;
display: flex; align-items: center; gap: 60px;
}
.request-text { flex: 1; }
.request-text h2 {
font-size: clamp(24px, 3.5vw, 40px);
font-weight: 700; margin-bottom: 16px;
}
.request-text p {
font-size: 1.05rem; opacity: 0.85;
line-height: 1.7; margin-bottom: 24px;
}
.request-contacts {
display: flex; gap: 28px; flex-wrap: wrap;
}
.request-contact {
display: flex; align-items: center; gap: 12px;
font-size: 0.95rem; opacity: 0.9;
}
.request-contact i {
width: 40px; height: 40px; border-radius: 50%;
background: rgba(255,255,255,0.15);
display: flex; align-items: center; justify-content: center;
font-size: 16px;
}
.request-form-wrap {
flex: 0 0 420px;
background: rgba(255,255,255,0.08);
backdrop-filter: blur(12px);
border: 1px solid rgba(255,255,255,0.15);
border-radius: 16px;
padding: 36px;
}
.request-form-wrap h4 {
font-size: 1.2rem; font-weight: 600;
margin-bottom: 24px;
}
.rf-grid {
display: grid; grid-template-columns: 1fr 1fr;
gap: 14px;
}
.rf-grid .full-width { grid-column: 1 / -1; }
.rf-input {
width: 100%; padding: 12px 16px;
background: rgba(255,255,255,0.1);
border: 1px solid rgba(255,255,255,0.2);
border-radius: 8px; color: white;
font-size: 0.9rem; font-family: inherit;
transition: all 0.3s ease;
outline: none;
}
.rf-input::placeholder { color: rgba(255,255,255,0.5); }
.rf-input:focus {
border-color: var(--accent);
background: rgba(255,255,255,0.15);
}
textarea.rf-input { resize: vertical; min-height: 90px; }
select.rf-input {
appearance: none;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
background-repeat: no-repeat;
background-position: right 14px center;
padding-right: 36px;
}
select.rf-input option { color: #333; background: white; }
.rf-submit {
width: 100%; padding: 14px;
background: var(--accent); color: white;
border: none; border-radius: 8px;
font-size: 1rem; font-weight: 600;
font-family: inherit; cursor: pointer;
transition: all 0.3s ease;
display: flex; align-items: center;
justify-content: center; gap: 8px;
}
.rf-submit:hover {
background: white; color: var(--primary-color);
transform: translateY(-2px);
box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}
@media (max-width: 992px) {
.products-grid { grid-template-columns: repeat(2, 1fr); }
.showcase-row, .showcase-row.reverse { flex-direction: column; gap: 30px; }
.advantages-grid { grid-template-columns: repeat(2, 1fr); }
.request-content { flex-direction: column; }
.request-form-wrap { flex: none; width: 100%; }
.showcase-features { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
.products-hero { min-height: 360px; }
.products-grid { grid-template-columns: 1fr; }
.advantages-grid { grid-template-columns: 1fr; }
.rf-grid { grid-template-columns: 1fr; }
.rf-grid .full-width { grid-column: 1; }
.category-tabs { gap: 8px; }
.category-tab { padding: 10px 18px; font-size: 0.85rem; }
}  .solutions-hero {
position: relative;
min-height: 520px;
display: flex; align-items: center; justify-content: center;
background: linear-gradient(135deg, #106EB8 0%, #26629b 45%, #1a5ba0 100%);
overflow: hidden;
padding-top: 80px;
}
.solutions-hero::before {
content: '';
position: absolute; inset: 0;
background:
radial-gradient(circle at 80% 20%, rgba(0,163,255,0.14) 0%, transparent 50%),
radial-gradient(circle at 15% 75%, rgba(46,125,203,0.1) 0%, transparent 50%);
z-index: 1;
}
.solutions-hero::after {
content: '';
position: absolute; inset: 0;
background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.025'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
z-index: 1;
}
.solutions-hero-content {
position: relative; z-index: 5;
text-align: center; color: white;
padding: 60px 20px;
}
.solutions-hero-content .breadcrumb-text {
font-size: 14px; letter-spacing: 3px;
text-transform: uppercase; opacity: 0.7;
margin-bottom: 16px; font-weight: 500;
}
.solutions-hero-content h1 {
font-size: clamp(32px, 5vw, 36px);
font-weight: 800; letter-spacing: -0.02em;
margin-bottom: 18px;
text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.solutions-hero-content p {
font-size: 1.15rem; opacity: 0.85;
max-width: 660px; margin: 0 auto 32px;
line-height: 1.7;
}
.hero-cta-group {
display: flex; justify-content: center; gap: 16px; flex-wrap: wrap;
}
.hero-btn-primary {
display: inline-flex; align-items: center; gap: 10px;
padding: 14px 32px; border-radius: 50px;
background: var(--accent); color: white;
font-weight: 600; font-size: 0.95rem;
border: none; cursor: pointer;
transition: all 0.3s ease;
}
.hero-btn-primary:hover {
transform: translateY(-3px);
box-shadow: 0 12px 35px rgba(0,163,255,0.35);
background: #fff; color: var(--primary-color);
}
.hero-btn-outline {
display: inline-flex; align-items: center; gap: 10px;
padding: 14px 32px; border-radius: 50px;
background: transparent; color: white;
font-weight: 600; font-size: 0.95rem;
border: 2px solid rgba(255,255,255,0.5);
cursor: pointer;
transition: all 0.3s ease;
}
.hero-btn-outline:hover {
border-color: white; background: rgba(255,255,255,0.1);
transform: translateY(-3px);
}
.hero-decoration {
position: absolute; z-index: 2;
border-radius: 50%; opacity: 0.06; background: white;
}
.hero-decoration.d1 { width: 500px; height: 500px; top: -150px; right: -100px; }
.hero-decoration.d2 { width: 300px; height: 300px; bottom: -80px; left: -60px; }
.hero-decoration.d3 { width: 140px; height: 140px; top: 35%; left: 8%; opacity: 0.04; }
.hero-float-icons {
position: absolute; inset: 0; z-index: 2; pointer-events: none;
}
.hero-float-icons .hfi {
position: absolute; color: rgba(255,255,255,0.06);
font-size: 80px;
}
.hero-float-icons .hfi-1 { top: 18%; left: 6%; transform: rotate(-15deg); }
.hero-float-icons .hfi-2 { top: 12%; right: 10%; transform: rotate(20deg); font-size: 60px; }
.hero-float-icons .hfi-3 { bottom: 20%; left: 12%; transform: rotate(10deg); font-size: 50px; }
.hero-float-icons .hfi-4 { bottom: 15%; right: 8%; transform: rotate(-25deg); font-size: 70px; } .section-label {
font-size: 14px; font-weight: 700;
text-transform: uppercase;
color: var(--accent);
letter-spacing: 2px;
margin-bottom: 8px;
display: inline-flex; align-items: center; gap: 8px;
}
.section-label .label-line {
display: inline-block; width: 40px; height: 2px;
background: var(--accent);
}
.section-title {
font-size: 2rem;
font-weight: 700; color: var(--text-dark);
margin-bottom: 16px; line-height: 1.2;
}
.section-desc {
font-size: 1.05rem; color: var(--text-light);
line-height: 1.8; max-width: 680px;
} .overview-section {
padding: 100px 0;
background: var(--white);
}
.overview-grid {
display: flex; align-items: center; gap: 60px;
}
.overview-text { flex: 1; }
.overview-image { flex: 1; position: relative; }
.overview-image .main-img {
width: 100%; border-radius: 16px;
box-shadow: 0 20px 60px rgba(13,59,102,0.15);
display: block;
}
.overview-image .float-stats {
position: absolute; bottom: -24px; right: -16px;
display: flex; gap: 12px;
}
.overview-image .float-stat {
background: white; border-radius: 12px;
padding: 16px 22px;
box-shadow: 0 12px 36px rgba(0,0,0,0.1);
text-align: center;
}
.overview-image .float-stat .fs-num {
font-size: 1.6rem; font-weight: 800;
color: var(--accent); line-height: 1;
}
.overview-image .float-stat .fs-label {
font-size: 0.72rem; color: var(--text-light);
margin-top: 4px; font-weight: 500;
text-transform: uppercase; letter-spacing: 0.5px;
}
.overview-list {
margin-top: 28px; display: flex; flex-direction: column; gap: 14px;
}
.overview-list .ol-item {
display: flex; align-items: flex-start; gap: 14px;
}
.overview-list .ol-icon {
width: 36px; height: 36px; border-radius: 8px;
background: var(--light-blue);
display: flex; align-items: center; justify-content: center;
flex-shrink: 0; color: var(--accent); font-size: 16px;
}
.overview-list .ol-text {
font-size: 0.95rem; color: var(--text-dark); font-weight: 500;
line-height: 1.5;
}
.overview-list .ol-sub {
font-size: 0.82rem; color: var(--text-light); margin-top: 2px; font-weight: 400;
} .process-section {
padding: 100px 0;
background: var(--white);
}
.process-steps {
display: grid; grid-template-columns: repeat(4, 1fr);
gap: 0; margin-top: 60px; position: relative;
}
.process-step {
text-align: center; padding: 0 24px;
position: relative;
}
.process-step::after {
content: '';
position: absolute; top: 40px;
left: calc(50% + 40px);
width: calc(100% - 80px);
height: 2px;
background: linear-gradient(to right, var(--accent), var(--light-blue));
}
.process-step:last-child::after { display: none; }
.process-step .ps-number {
width: 80px; height: 80px; border-radius: 50%;
background: var(--light-blue);
display: flex; align-items: center; justify-content: center;
margin: 0 auto 24px;
font-size: 1.5rem; font-weight: 800;
color: var(--accent);
position: relative; z-index: 2;
transition: all 0.4s ease;
border: 3px solid transparent;
}
.process-step:hover .ps-number {
background: var(--accent); color: white;
border-color: var(--accent);
box-shadow: 0 10px 30px rgba(0,163,255,0.3);
transform: scale(1.1);
}
.process-step .ps-icon {
font-size: 22px; margin-bottom: 4px;
display: block; color: var(--accent);
}
.process-step:hover .ps-icon { color: white; }
.process-step h4 {
font-size: 1.1rem; font-weight: 700;
color: var(--text-dark); margin-bottom: 10px;
}
.process-step p {
font-size: 0.88rem; color: var(--text-light);
line-height: 1.6;
} .industry-section {
padding: 100px 0;
background: linear-gradient(180deg, #106EB8 0%, #26629b 100%);
color: white; position: relative; overflow: hidden;
}
.industry-section::before {
content: '';
position: absolute; inset: 0;
background:
radial-gradient(circle at 25% 40%, rgba(0,163,255,0.08) 0%, transparent 50%),
radial-gradient(circle at 75% 60%, rgba(46,125,203,0.06) 0%, transparent 50%);
}
.industry-section .section-label { color: var(--accent); }
.industry-section .section-label .label-line { background: var(--accent); }
.industry-section .section-title { color: white; }
.industry-section .section-desc { color: rgba(255,255,255,0.65); }
.industry-grid {
display: grid; grid-template-columns: repeat(4, 1fr);
gap: 24px; margin-top: 50px;
position: relative; z-index: 2;
}
.industry-card {
background: rgba(255,255,255,0.05);
border: 1px solid rgba(255,255,255,0.1);
border-radius: 14px;
padding: 32px 24px;
text-align: center;
backdrop-filter: blur(6px);
transition: all 0.4s ease;
}
.industry-card:hover {
background: rgba(255,255,255,0.1);
border-color: rgba(0,163,255,0.3);
transform: translateY(-8px);
}
.industry-card .ic-icon {
width: 64px; height: 64px; border-radius: 50%;
background: rgba(0,163,255,0.15);
display: flex; align-items: center; justify-content: center;
margin: 0 auto 18px; font-size: 26px; color: var(--accent);
transition: all 0.3s ease;
}
.industry-card:hover .ic-icon {
background: var(--accent); color: white;
transform: scale(1.1);
}
.industry-card h4 {
font-size: 1.05rem; font-weight: 600;
margin-bottom: 8px; color: white;
}
.industry-card p {
font-size: 0.82rem; color: rgba(255,255,255,0.6);
line-height: 1.5;
} .why-section {
padding: 100px 0;
background: var(--white);
}
.why-grid {
display: grid; grid-template-columns: repeat(3, 1fr);
gap: 30px; margin-top: 50px;
}
.why-card {
padding: 40px 30px;
border-radius: 16px;
border: 1px solid #eef2f7;
transition: all 0.4s cubic-bezier(0.2,0.95,0.4,1);
position: relative; overflow: hidden;
}
.why-card::before {
content: ''; position: absolute;
top: 0; left: 0; width: 100%; height: 3px;
background: linear-gradient(to right, var(--accent), var(--secondary-color));
transform: scaleX(0); transform-origin: left;
transition: transform 0.4s ease;
}
.why-card:hover::before { transform: scaleX(1); }
.why-card:hover {
transform: translateY(-8px);
box-shadow: 0 20px 50px rgba(13,59,102,0.1);
border-color: transparent;
}
.why-card .wc-icon {
width: 56px; height: 56px; border-radius: 12px;
background: var(--light-blue);
display: flex; align-items: center; justify-content: center;
margin-bottom: 20px; font-size: 24px; color: var(--primary-color);
transition: all 0.3s ease;
}
.why-card:hover .wc-icon {
background: var(--accent); color: white;
}
.why-card h4 {
font-size: 1.1rem; font-weight: 700;
color: var(--text-dark); margin-bottom: 12px;
}
.why-card p {
font-size: 0.9rem; color: var(--text-light);
line-height: 1.6;
}
@media (max-width: 992px) {
.overview-grid { flex-direction: column; gap: 40px; }
.overview-image .float-stats {
position: relative; bottom: auto; right: auto;
justify-content: center; margin-top: 16px;
}
.solutions-grid { grid-template-columns: repeat(2, 1fr); }
.process-steps { grid-template-columns: repeat(2, 1fr); gap: 40px; }
.process-step::after { display: none; }
.industry-grid { grid-template-columns: repeat(2, 1fr); }
.cases-grid { grid-template-columns: 1fr; }
.why-grid { grid-template-columns: repeat(2, 1fr); }
.cta-inner { flex-direction: column; }
.cta-stats { flex: none; width: 100%; flex-direction: row; flex-wrap: wrap; }
.cta-stat-item { flex: 1; min-width: 200px; }
}
@media (max-width: 768px) {
.solutions-hero { min-height: 400px; }
.solutions-grid { grid-template-columns: 1fr; }
.process-steps { grid-template-columns: 1fr; }
.industry-grid { grid-template-columns: 1fr; }
.why-grid { grid-template-columns: 1fr; }
.cta-stats { flex-direction: column; }
.hero-float-icons { display: none; }
}  .news-hero {
position: relative;
min-height: 480px;
display: flex; align-items: center; justify-content: center;
background: linear-gradient(135deg, #106EB8 0%, #26629b 45%, #1a5ba0 100%);
overflow: hidden;
padding-top: 80px;
}
.news-hero::before {
content: '';
position: absolute; inset: 0;
background:
radial-gradient(circle at 70% 25%, rgba(0,163,255,0.12) 0%, transparent 50%),
radial-gradient(circle at 20% 70%, rgba(46,125,203,0.1) 0%, transparent 50%);
z-index: 1;
}
.news-hero::after {
content: '';
position: absolute; inset: 0;
background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.025'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
z-index: 1;
}
.news-hero-content {
position: relative; z-index: 5;
text-align: center; color: white;
padding: 60px 20px;
}
.news-hero-content .breadcrumb-text {
font-size: 14px; letter-spacing: 3px;
text-transform: uppercase; opacity: 0.7;
margin-bottom: 16px; font-weight: 500;
}
.news-hero-content h1 {
font-size: clamp(26px, 4vw, 36px);
font-weight: 800; letter-spacing: -0.02em;
margin-bottom: 16px;
text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.news-hero-content p {
font-size: 1.15rem; opacity: 0.85;
max-width: 640px; margin: 0 auto;
line-height: 1.7;
}
.hero-decoration {
position: absolute; z-index: 2;
border-radius: 50%; opacity: 0.06; background: white;
}
.hero-decoration.d1 { width: 500px; height: 500px; top: -150px; right: -100px; }
.hero-decoration.d2 { width: 300px; height: 300px; bottom: -80px; left: -60px; }
.hero-decoration.d3 { width: 140px; height: 140px; top: 35%; left: 8%; opacity: 0.04; }
.hero-float-icons {
position: absolute; inset: 0; z-index: 2; pointer-events: none;
}
.hero-float-icons .hfi {
position: absolute; color: rgba(255,255,255,0.05); font-size: 80px;
}
.hero-float-icons .hfi-1 { top: 20%; left: 5%; transform: rotate(-15deg); }
.hero-float-icons .hfi-2 { top: 15%; right: 8%; transform: rotate(20deg); font-size: 60px; }
.hero-float-icons .hfi-3 { bottom: 18%; left: 10%; transform: rotate(10deg); font-size: 50px; }
.hero-float-icons .hfi-4 { bottom: 12%; right: 6%; transform: rotate(-25deg); font-size: 70px; } .section-label {
font-size: 14px; font-weight: 700;
text-transform: uppercase;
color: var(--accent);
letter-spacing: 2px;
margin-bottom: 8px;
display: inline-flex; align-items: center; gap: 8px;
}
.section-label .label-line {
display: inline-block; width: 40px; height: 2px;
background: var(--accent);
}
.section-title {
font-size: 2rem;
font-weight: 700; color: var(--text-dark);
margin-bottom: 16px; line-height: 1.2;
}
.section-desc {
font-size: 1.05rem; color: var(--text-light);
line-height: 1.8; max-width: 680px;
} .filter-section {
padding: 80px 0 10px;
background: var(--white);
}
.filter-bar {
display: flex; justify-content: space-between;
align-items: center; flex-wrap: wrap; gap: 16px;
}
.filter-tabs {
display: flex; flex-wrap: wrap; gap: 10px;
}
.filter-tab {
padding: 10px 24px; border-radius: 50px;
font-size: 0.9rem; font-weight: 500;
color: var(--text-dark);
background: var(--gray-bg);
border: 2px solid transparent;
cursor: pointer;
transition: all 0.3s ease;
display: inline-flex; align-items: center; gap: 6px;
}
.filter-tab i { font-size: 14px; }
.filter-tab:hover {
border-color: var(--accent); color: var(--accent);
}
.filter-tab.active {
background: var(--accent); color: white;
border-color: var(--accent);
box-shadow: 0 6px 20px rgba(0,163,255,0.25);
}
.filter-tab.active i { color: white; }
.filter-search {
position: relative;
}
.filter-search input {
padding: 10px 16px 10px 42px;
border: 2px solid #eef2f7;
border-radius: 50px;
font-size: 0.9rem; font-family: inherit;
width: 260px; outline: none;
transition: all 0.3s ease;
background: var(--gray-bg);
}
.filter-search input:focus {
border-color: var(--accent);
background: white;
box-shadow: 0 4px 16px rgba(0,163,255,0.1);
}
.filter-search i {
position: absolute; left: 16px; top: 50%;
transform: translateY(-50%);
color: var(--text-light); font-size: 14px;
} .news-grid-section {
padding: 50px 0 100px;
background: var(--white);
}
.news-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 30px; margin-top: 20px;
}
.news-card {
background: white;
border-radius: 14px;
overflow: hidden;
border: 1px solid #eef2f7;
transition: all 0.4s cubic-bezier(0.2,0.95,0.4,1);
cursor: pointer;
display: flex; flex-direction: column;
}
.news-card:hover {
transform: translateY(-8px);
box-shadow: 0 20px 50px rgba(13,59,102,0.12);
border-color: transparent;
}
.news-card .nc-image {
height: 220px; overflow: hidden; position: relative;
}
.news-card .nc-image img {
width: 100%; height: 100%; object-fit: cover;
transition: transform 0.6s ease;
}
.news-card:hover .nc-image img { transform: scale(1.08); }
.news-card .nc-image .nc-category-badge {
position: absolute; top: 14px; left: 14px;
padding: 4px 14px; border-radius: 20px;
font-size: 0.72rem; font-weight: 600;
letter-spacing: 0.5px; z-index: 2;
color: white;
}
.nc-category-badge.cat-company { background: var(--accent); }
.nc-category-badge.cat-industry { background: var(--secondary-color); }
.nc-category-badge.cat-quality { background: #27ae60; }
.nc-category-badge.cat-partnership { background: var(--gold); }
.nc-category-badge.cat-markets { background: #8e44ad; }
.nc-category-badge.cat-innovation { background: #e74c3c; }
.news-card .nc-body {
padding: 24px; flex: 1;
display: flex; flex-direction: column;
}
.news-card .nc-meta {
display: flex; align-items: center; gap: 14px;
margin-bottom: 12px; flex-wrap: wrap;
}
.news-card .nc-meta-item {
display: flex; align-items: center; gap: 5px;
font-size: 0.78rem; color: var(--text-light); font-weight: 500;
}
.news-card .nc-meta-item i { color: var(--accent); font-size: 11px; }
.news-card .nc-title {
font-size: 1.1rem; font-weight: 700;
color: var(--text-dark); margin-bottom: 12px;
line-height: 1.5;
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
overflow: hidden;
transition: color 0.3s ease;
}
.news-card:hover .nc-title { color: var(--accent); }
.news-card .nc-desc {
font-size: 0.9rem; color: var(--text-light);
line-height: 1.7; margin-bottom: 20px; flex: 1;
display: -webkit-box;
-webkit-line-clamp: 3;
-webkit-box-orient: vertical;
overflow: hidden;
}
.news-card .nc-footer {
display: flex; justify-content: space-between; align-items: center;
padding-top: 16px;
border-top: 1px solid #eef2f7;
}
.news-card .nc-author {
display: flex; align-items: center; gap: 10px;
}
.news-card .nc-author-avatar {
width: 32px; height: 32px; border-radius: 50%;
object-fit: cover; background: var(--light-blue);
}
.news-card .nc-author-name {
font-size: 0.82rem; font-weight: 600; color: var(--text-dark);
}
.news-card .nc-read-more {
display: flex; align-items: center; gap: 6px;
font-size: 0.85rem; font-weight: 600;
color: var(--accent);
transition: all 0.3s ease;
}
.news-card .nc-read-more:hover { gap: 10px; } .no-results {
grid-column: 1 / -1;
text-align: center; padding: 60px 20px;
color: var(--text-light);
}
.no-results i { font-size: 48px; margin-bottom: 16px; display: block; opacity: 0.4; }
.no-results h4 { font-size: 1.2rem; font-weight: 600; margin-bottom: 8px; color: var(--text-dark); }
.no-results p { font-size: 0.95rem; } .pagination-wrap {
display: flex; justify-content: center;
gap: 8px; margin-top: 50px;
}
.page-btn {
width: 44px; height: 44px;
border-radius: 10px;
display: flex; align-items: center; justify-content: center;
font-size: 0.9rem; font-weight: 600;
color: var(--text-dark);
background: var(--gray-bg);
border: 2px solid transparent;
cursor: pointer;
transition: all 0.3s ease;
}
.page-btn:hover {
border-color: var(--accent); color: var(--accent);
}
.page-btn.active {
background: var(--accent); color: white;
border-color: var(--accent);
box-shadow: 0 4px 12px rgba(0,163,255,0.25);
}
.page-btn.disabled {
opacity: 0.4; cursor: default;
} .newsletter-section {
padding: 80px 0;
background: linear-gradient(135deg, var(--primary-color) 0%, #1a5ba0 100%);
color: white; position: relative; overflow: hidden;
}
.newsletter-section::before {
content: '';
position: absolute; inset: 0;
background:
radial-gradient(circle at 80% 30%, rgba(0,163,255,0.1) 0%, transparent 50%),
radial-gradient(circle at 15% 70%, rgba(46,125,203,0.08) 0%, transparent 50%);
}
.newsletter-inner {
position: relative; z-index: 2;
display: flex; align-items: center; gap: 60px;
}
.newsletter-text { flex: 1; }
.newsletter-text h2 {
font-size: clamp(24px, 3.5vw, 36px);
font-weight: 700; margin-bottom: 14px;
}
.newsletter-text p {
font-size: 1rem; opacity: 0.85;
line-height: 1.7; max-width: 500px;
}
.newsletter-perks {
display: flex; gap: 24px; margin-top: 20px; flex-wrap: wrap;
}
.newsletter-perk {
display: flex; align-items: center; gap: 8px;
font-size: 0.88rem; font-weight: 500; opacity: 0.9;
}
.newsletter-perk i { color: var(--accent); }
.newsletter-form-wrap {
flex: 0 0 440px;
background: rgba(255,255,255,0.08);
backdrop-filter: blur(12px);
border: 1px solid rgba(255,255,255,0.15);
border-radius: 16px;
padding: 36px;
}
.newsletter-form-wrap h4 {
font-size: 1.15rem; font-weight: 600;
margin-bottom: 20px;
display: flex; align-items: center; gap: 10px;
}
.newsletter-form-wrap h4 i { color: var(--accent); }
.nl-form-group {
margin-bottom: 14px;
}
.nl-input {
width: 100%; padding: 12px 16px;
background: rgba(255,255,255,0.1);
border: 1px solid rgba(255,255,255,0.2);
border-radius: 8px; color: white;
font-size: 0.9rem; font-family: inherit;
transition: all 0.3s ease; outline: none;
}
.nl-input::placeholder { color: rgba(255,255,255,0.5); }
.nl-input:focus {
border-color: var(--accent);
background: rgba(255,255,255,0.15);
}
.nl-submit {
width: 100%; padding: 14px;
background: var(--accent); color: white;
border: none; border-radius: 8px;
font-size: 1rem; font-weight: 600;
font-family: inherit; cursor: pointer;
transition: all 0.3s ease;
display: flex; align-items: center;
justify-content: center; gap: 8px;
margin-top: 4px;
}
.nl-submit:hover {
background: white; color: var(--primary-color);
transform: translateY(-2px);
box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}
.nl-privacy {
font-size: 0.78rem; opacity: 0.6;
margin-top: 12px; text-align: center;
}
.nl-privacy i { margin-right: 4px; } @media (max-width: 992px) {
.featured-card { flex-direction: column; }
.featured-card .fc-image { flex: none; min-height: 260px; }
.featured-card .fc-body { padding: 28px; }
.news-grid { grid-template-columns: repeat(2, 1fr); }
.newsletter-inner { flex-direction: column; }
.newsletter-form-wrap { flex: none; width: 100%; }
}
@media (max-width: 768px) {
.news-hero { min-height: 380px; }
.news-grid { grid-template-columns: 1fr; }
.filter-bar { flex-direction: column; align-items: stretch; }
.filter-search input { width: 100%; }
.featured-card .fc-title { font-size: 1.3rem; }
.hero-float-icons { display: none; }
}  .investor-hero {
position: relative;
min-height: 520px;
display: flex; align-items: center; justify-content: center;
background: linear-gradient(135deg, #106EB8 0%, #26629b 40%, #1a5ba0 100%);
overflow: hidden;
padding-top: 80px;
}
.investor-hero::before {
content: '';
position: absolute; inset: 0;
background:
radial-gradient(circle at 70% 25%, rgba(0,163,255,0.12) 0%, transparent 50%),
radial-gradient(circle at 20% 70%, rgba(46,125,203,0.1) 0%, transparent 50%);
z-index: 1;
}
.investor-hero::after {
content: '';
position: absolute; inset: 0;
background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.025'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
z-index: 1;
}
.investor-hero-content {
position: relative; z-index: 5;
text-align: center; color: white;
padding: 60px 20px;
}
.investor-hero-content .breadcrumb-text {
font-size: 14px; letter-spacing: 3px;
text-transform: uppercase; opacity: 0.7;
margin-bottom: 16px; font-weight: 500;
}
.investor-hero-content h1 {
font-size: clamp(32px, 5vw, 36px);
font-weight: 800; letter-spacing: -0.02em;
margin-bottom: 16px;
text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.investor-hero-content p {
font-size: 1.15rem; opacity: 0.85;
max-width: 660px; margin: 0 auto;
line-height: 1.7;
}
.hero-decoration {
position: absolute; z-index: 2;
border-radius: 50%; opacity: 0.06; background: white;
}
.hero-decoration.d1 { width: 500px; height: 500px; top: -150px; right: -100px; }
.hero-decoration.d2 { width: 300px; height: 300px; bottom: -80px; left: -60px; }
.hero-float-icons {
position: absolute; inset: 0; z-index: 2; pointer-events: none;
}
.hero-float-icons .hfi {
position: absolute; color: rgba(255,255,255,0.05); font-size: 80px;
}
.hero-float-icons .hfi-1 { top: 20%; left: 5%; transform: rotate(-15deg); }
.hero-float-icons .hfi-2 { top: 15%; right: 8%; transform: rotate(20deg); font-size: 60px; }
.hero-float-icons .hfi-3 { bottom: 18%; left: 10%; transform: rotate(10deg); font-size: 50px; }
.hero-float-icons .hfi-4 { bottom: 12%; right: 6%; transform: rotate(-25deg); font-size: 70px; } .section-label {
font-size: 14px; font-weight: 700;
text-transform: uppercase;
color: var(--accent);
letter-spacing: 2px;
margin-bottom: 8px;
display: inline-flex; align-items: center; gap: 8px;
}
.section-label .label-line {
display: inline-block; width: 40px; height: 2px;
background: var(--accent);
}
.section-title {
font-size: 2rem;
font-weight: 700; color: var(--text-dark);
margin-bottom: 16px; line-height: 1.2;
}
.section-desc {
font-size: 1.05rem; color: var(--text-light);
line-height: 1.8; max-width: 680px;
} .highlights-section {
padding: 100px 0;
background: var(--white);
}
.highlights-grid {
display: grid; grid-template-columns: repeat(4, 1fr);
gap: 24px; margin-top: 50px;
}
.highlight-card {
text-align: center; padding: 40px 24px;
border-radius: 16px;
background: var(--gray-bg);
transition: all 0.4s cubic-bezier(0.2,0.95,0.4,1);
border: 1px solid transparent;
}
.highlight-card:hover {
transform: translateY(-10px);
box-shadow: 0 20px 50px rgba(16,110,184,0.1);
background: white;
border-color: var(--light-blue);
}
.highlight-card .hl-icon {
width: 72px; height: 72px; border-radius: 50%;
background: var(--light-blue);
display: flex; align-items: center; justify-content: center;
margin: 0 auto 22px; font-size: 28px; color: var(--primary-color);
transition: all 0.3s ease;
}
.highlight-card:hover .hl-icon {
background: linear-gradient(135deg, var(--accent), var(--secondary-color));
color: white; transform: scale(1.1);
}
.highlight-card .hl-number {
font-size: 2.4rem; font-weight: 800;
color: var(--accent); line-height: 1;
margin-bottom: 8px; font-family: 'Inter', monospace;
}
.highlight-card h4 {
font-size: 1.05rem; font-weight: 700;
color: var(--text-dark); margin-bottom: 10px;
}
.highlight-card p {
font-size: 0.88rem; color: var(--text-light);
line-height: 1.6;
} .financial-section {
padding: 100px 0;
background: var(--gray-bg);
}
.financial-grid {
display: grid; grid-template-columns: 1fr 1fr;
gap: 40px; margin-top: 50px;
}
.financial-card {
background: white; border-radius: 16px;
padding: 36px;
box-shadow: 0 4px 20px rgba(0,0,0,0.04);
transition: all 0.4s cubic-bezier(0.2,0.95,0.4,1);
}
.financial-card:hover {
transform: translateY(-6px);
box-shadow: 0 20px 50px rgba(16,110,184,0.1);
}
.financial-card h3 {
font-size: 1.25rem; font-weight: 700;
color: var(--text-dark); margin-bottom: 24px;
display: flex; align-items: center; gap: 10px;
}
.financial-card h3 i { color: var(--accent); }
.fin-table {
width: 100%; border-collapse: collapse;
}
.fin-table th {
text-align: left; padding: 12px 16px;
font-size: 0.82rem; font-weight: 600;
color: var(--text-light); text-transform: uppercase;
letter-spacing: 0.5px;
border-bottom: 2px solid var(--light-blue);
}
.fin-table td {
padding: 14px 16px; font-size: 0.92rem;
color: var(--text-color); border-bottom: 1px solid #eef2f7;
}
.fin-table tr:last-child td { border-bottom: none; }
.fin-table .fin-label { font-weight: 600; color: var(--text-dark); }
.fin-table .fin-value { font-family: 'Inter', monospace; font-weight: 600; }
.fin-table .fin-positive { color: #27ae60; }
.fin-table .fin-growth {
font-size: 0.78rem; font-weight: 600;
padding: 3px 10px; border-radius: 20px;
display: inline-block;
}
.fin-growth.up { background: #e8f8ef; color: #27ae60; }
.fin-growth.down { background: #fde8e8; color: #e74c3c; } .fin-chart {
margin-top: 20px;
}
.fin-bar-row {
display: flex; align-items: center; gap: 12px;
margin-bottom: 14px;
}
.fin-bar-row:last-child { margin-bottom: 0; }
.fin-bar-label {
width: 60px; font-size: 0.82rem; font-weight: 600;
color: var(--text-light); text-align: right; flex-shrink: 0;
}
.fin-bar-track {
flex: 1; height: 28px; background: var(--light-blue);
border-radius: 6px; overflow: hidden; position: relative;
}
.fin-bar-fill {
height: 100%; border-radius: 6px;
background: linear-gradient(to right, var(--accent), var(--secondary-color));
transition: width 1.2s cubic-bezier(0.2,0.9,0.4,1.1);
display: flex; align-items: center; justify-content: flex-end;
padding-right: 10px; font-size: 0.78rem; font-weight: 700; color: white;
width: 0;
}
.fin-bar-fill.animated { } .governance-section {
padding: 100px 0;
background: var(--white);
}
.gov-grid {
display: grid; grid-template-columns: repeat(3, 1fr);
gap: 30px; margin-top: 50px;
}
.gov-card {
padding: 36px 28px;
border-radius: 16px;
border: 1px solid #eef2f7;
transition: all 0.4s cubic-bezier(0.2,0.95,0.4,1);
position: relative; overflow: hidden;
}
.gov-card::before {
content: ''; position: absolute;
top: 0; left: 0; width: 100%; height: 3px;
background: linear-gradient(to right, var(--accent), var(--secondary-color));
transform: scaleX(0); transform-origin: left;
transition: transform 0.4s ease;
}
.gov-card:hover::before { transform: scaleX(1); }
.gov-card:hover {
transform: translateY(-8px);
box-shadow: 0 20px 50px rgba(16,110,184,0.1);
border-color: transparent;
}
.gov-card .gov-icon {
width: 56px; height: 56px; border-radius: 12px;
background: var(--light-blue);
display: flex; align-items: center; justify-content: center;
margin-bottom: 20px; font-size: 24px; color: var(--primary-color);
transition: all 0.3s ease;
}
.gov-card:hover .gov-icon {
background: var(--accent); color: white;
}
.gov-card h4 {
font-size: 1.1rem; font-weight: 700;
color: var(--text-dark); margin-bottom: 12px;
}
.gov-card p {
font-size: 0.9rem; color: var(--text-light);
line-height: 1.6;
}
.gov-card ul {
margin-top: 12px;
}
.gov-card ul li {
font-size: 0.88rem; color: var(--text-light);
line-height: 1.5; padding: 4px 0;
display: flex; align-items: flex-start; gap: 8px;
}
.gov-card ul li i {
color: var(--accent); font-size: 12px;
margin-top: 4px; flex-shrink: 0;
}
@media (max-width: 992px) {
.highlights-grid { grid-template-columns: repeat(2, 1fr); }
.financial-grid { grid-template-columns: 1fr; }
.gov-grid { grid-template-columns: repeat(2, 1fr); }
.board-grid { grid-template-columns: repeat(2, 1fr); }
.reports-grid { grid-template-columns: 1fr; }
.stock-ticker { flex-direction: column; align-items: flex-start; gap: 20px; }
.stock-details { margin-left: 0; }
.investor-cta-inner { flex-direction: column; }
.investor-cta-form-wrap { flex: none; width: 100%; }
}
@media (max-width: 768px) {
.investor-hero { min-height: 380px; }
.highlights-grid { grid-template-columns: 1fr; }
.gov-grid { grid-template-columns: 1fr; }
.board-grid { grid-template-columns: 1fr; }
.hero-float-icons { display: none; }
.report-card { flex-direction: column; }
} .hero-slide.hero-slide-1 .slide-bg { display: flex;
align-items: end;
z-index: 3;
}
.hero-swiper .swiper-wrapper{align-items: center;background-color: #106EB8;}
.hero-slide .slide-bg img{max-width: 100%;width: 100%;object-fit: contain;}
.hero-slide.hero-slide-1 .slide-bg img{max-width: 100%;}
.hero-content.hero-content-left h3, .hero-content.hero-content-left p {
max-width: 100%;
}
.hero-slide-1 .row{align-items: center;}
.hero-content-left {width: 100%;}
.hero-content{max-width: 100%;padding-left: 20%;}