@charset 'utf-8';

/* Custom Font Import */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    font-family: 'Inter', "Source Han Sans CN", "Microsoft YaHei", sans-serif;
}

body {
    margin: 0px;
    padding: 0px;
    font-size: 16px;
    color: #333333;
    background-color: #ffffff;
    line-height: 1.6;
}

ol, ul, li, dl, dt, dd, form, p, h1, h2, h3, h4, h5, img {
    margin: 0px;
    padding: 0px;
}

h1, h2, h3, h4, h5 {
    line-height: 1.2;
    color: #111111;
}

ol, ul, li {
    list-style: none;
}

img {
    border: none;
    max-width: 100%;
    vertical-align: middle;
    object-fit: cover;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

i {
    font-style: normal;
}

.clearfix:after {
    content: "";
    height: 0;
    visibility: hidden;
    display: block;
    clear: both;
}

.clearfix {
    zoom: 1;
}

.clear {
    clear: both;
}

.fl {
    float: left;
}

.fr {
    float: right;
}

.flex {
    display: flex;
    display: -webkit-flex;
    flex-wrap: wrap;
}

/* Base layouts */
.container {
    padding: 0 10%;
    width: 100%;
    max-width: 100%;
}

.banner {
    position: relative;
    z-index: 1;
    width: 100%;
    text-align: center;
    overflow: hidden;
    height: 32rem;
}

.banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.45);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    text-align: center;
    padding: 0 2rem;
}

.banner-overlay h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    letter-spacing: 2px;
}

.banner-overlay p {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.wrap {
    width: 100%;
    position: relative;
    overflow: hidden;
    background-color: #f7f7f7;
    padding: 5rem 0;
}

/* Header Styling */
header {
    position: relative;
    z-index: 100;
}

.head_pc {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    transition: all 0.3s ease;
}

header .head_pc .container {
    width: 100%;
    padding: 0 5% 0 5%;
}

.top_pc {
    justify-content: space-between;
    align-items: center;
    height: 5rem;
}

.top_pc_l {
    width: 15%;
    display: flex;
    align-items: center;
}

.top_pc_l a {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111111;
    letter-spacing: 0.5px;
}

.logo-text span {
    color: #2ea9a0;
}

.top_pc_r {
    align-items: center;
}

.top_pc_r_ul {
    height: 100%;
}

.top_pc_r_ul > li {
    position: relative;
    height: 5rem;
    line-height: 5rem;
}

.top_pc_r_ul > li > a {
    font-size: 1.05rem;
    font-weight: 500;
    color: #222222;
    padding: 0 2.2rem;
    display: inline-block;
    height: 100%;
    position: relative;
}

.top_pc_r_ul > li.cur > a,
.top_pc_r_ul > li:hover > a {
    color: #fff;
    background-color: #2ea9a0;
}

/* Full Width Submenu Dropdown */
.top_pc_r_ul2 {
    position: fixed;
    width: 100%;
    left: 0;
    right: 0;
    top: 5rem;
    z-index: 999;
    background: #2ea9a0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: scaleY(0);
    transform-origin: top center;
    opacity: 0;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.25s ease;
    justify-content: center;
    padding: 1.5rem 0;
}

.top_pc_r_ul2 > li {
    padding: 0.5rem 2rem;
}

.top_pc_r_ul2 > li > a {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    padding: 0.5rem 0;
    display: block;
    font-weight: 500;
    border-bottom: 2px solid transparent;
}

.top_pc_r_ul2 > li > a:hover {
    color: #ffffff;
    border-bottom: 2px solid #ffffff;
}

.top_pc_r_ul > li:hover .top_pc_r_ul2 {
    transform: scaleY(1);
    opacity: 1;
}

.top_pc_r_lang {
    margin-left: 2rem;
}

.top_pc_r_lang > a {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 6px 12px;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    font-size: 0.9rem;
    color: #4a5568;
    background: #ffffff;
}

.top_pc_r_lang > a:hover {
    border-color: #2ea9a0;
    color: #2ea9a0;
}

.top_pc_r_lang svg {
    width: 16px;
    height: 16px;
}

/* Counter margin for fixed header */
.conter {
    margin-top: 5rem;
}

/* Mobile Header & Nav (Responsive) */
.phone {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 999;
    display: none;
    padding: 15px 0;
    width: 100%;
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.phone_logo {
    display: flex;
    align-items: center;
}

.sp_nav {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 4px;
    background: #f7f7f7;
}

.sp_nav svg {
    width: 24px;
    height: 24px;
    fill: #222222;
}

/* Mobile Drawer Nav */
.sjj_nav {
    position: fixed;
    z-index: 9999;
    background: #ffffff;
    width: 100%;
    height: 100%;
    font-size: 16px;
    top: -100%;
    left: 0;
    overflow-y: auto;
    transition: top ease 0.4s;
    padding: 0 1.5rem;
}

.nav_show {
    top: 0;
}

.sjj_nav .top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
    border-bottom: 1px solid #eeeeee;
    margin-bottom: 20px;
}

.sjj_nav .top .icon-close {
    cursor: pointer;
    font-size: 24px;
    color: #333333;
}

.sjj_nav .bot > li {
    border-bottom: 1px solid #f7f7f7;
    position: relative;
    padding: 1rem 0;
}

.sjj_nav .bot > li > a {
    font-weight: 600;
    color: #1a1a1a;
    display: block;
    font-size: 1.15rem;
}

.sjj_nav .bot > li .sp_nav_xjb {
    position: absolute;
    right: 0;
    top: 1.25rem;
    cursor: pointer;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e2e8f0;
    border-radius: 50%;
    transition: all 0.3s;
}

.sjj_nav .bot > li .sp_nav_xjb::after {
    content: "+";
    font-size: 1.2rem;
    color: #4a5568;
}

.sjj_nav .bot > li.active .sp_nav_xjb {
    transform: rotate(45deg);
    background-color: #2ea9a0;
    border-color: #2ea9a0;
}

.sjj_nav .bot > li.active .sp_nav_xjb::after {
    color: #ffffff;
}

.sjj_nav .bot > li ul {
    display: none;
    margin-top: 1rem;
    background: #f8fafc;
    border-radius: 8px;
    padding: 0.5rem 1rem;
}

.sjj_nav .bot > li ul li {
    padding: 0.6rem 0;
    border-bottom: 1px solid #f1f5f9;
}

.sjj_nav .bot > li ul li:last-child {
    border-bottom: none;
}

.sjj_nav .bot > li ul li a {
    color: #4a5568;
    font-size: 0.95rem;
    display: block;
}

.sjj_nav .bot > li ul li a:hover {
    color: #2ea9a0;
}

.sjj_nav .language {
    display: flex;
    gap: 10px;
    margin: 2rem 0;
}

.sjj_nav .language a {
    flex: 1;
    text-align: center;
    padding: 10px 0;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    color: #4a5568;
    font-weight: 500;
}

.sjj_nav .language a.active {
    background: #2ea9a0;
    color: #ffffff;
    border-color: #2ea9a0;
}

/* Footer Section */
footer {
    background: #0a0a0a;
    position: relative;
    color: #ffffff;
    padding: 5rem 0 2rem;
}

.footer_zong {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer_zong_l {
    width: 22%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.footer-logo-desc {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin-top: 1.5rem;
    line-height: 1.7;
}

.footer_zong_z {
    width: 1px;
    align-self: stretch;
    background-image: linear-gradient(175deg, 
        #a381b8 0%, 
        #5d7bb8 36%, 
        #73bacb 74%, 
        #2ea9a0 100%);
}

.footer_zong_r {
    width: 70%;
}

.footer_zong_r_ul1 {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
}

.footer_zong_r_ul1 > li {
    flex: 1;
}

.footer_zong_r_ul1 > li > a, 
.footer_zong_r_ul1 > li > span {
    font-size: 1.15rem;
    color: #ffffff;
    font-weight: 600;
    display: block;
    margin-bottom: 1.5rem;
    position: relative;
}

.footer_zong_r_ul1 > li > a::after,
.footer_zong_r_ul1 > li > span::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 30px;
    height: 2px;
    background: #2ea9a0;
}

.footer_zong_r_ul2 {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer_zong_r_ul2 > li > a {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.65);
    transition: color 0.3s;
}

.footer_zong_r_ul2 > li > a:hover {
    color: #2ea9a0;
}

.footer_zong_r_con {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer_zong_r_con > p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.65);
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer_zong_r_con svg {
    width: 16px;
    height: 16px;
    fill: #2ea9a0;
    flex-shrink: 0;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.45);
}

.footer-links {
    display: flex;
    gap: 1.5rem;
}

.footer-links a {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.45);
}

.footer-links a:hover {
    color: #2ea9a0;
}

/* Underline Animation (HealthSwiftech Index1 Accent Title) */
.index1_l_tit, .index1_r_tit {
    margin-bottom: 1.5rem;
}

.index1_l_tit span, .index1_r_tit span, .index1_r_tit h6 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #111111;
    position: relative;
    display: inline-block;
    padding-bottom: 0.5rem;
}

.index1_l_xian, .index1_r_xian {
    width: 60px;
    height: 4px;
    background: #e2e8f0;
    position: relative;
    border-radius: 2px;
    margin-bottom: 1.8rem;
}

.index1_l_xian i, .index1_r_xian i {
    position: absolute;
    left: 0;
    top: 0;
    width: 25px;
    height: 100%;
    background: #2ea9a0;
    border-radius: 2px;
    transition: width 0.4s ease;
}

.index1:hover .index1_l_xian i,
.index1:hover .index1_r_xian i {
    width: 60px;
}

/* Animations */
.animated {
    animation-duration: 1s;
    animation-fill-mode: both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 30px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.fadeInUp {
    animation-name: fadeInUp;
}

/* Media Queries for Responsiveness */
@media (max-width: 1200px) {
    body {
        font-size: 15px;
    }
    
    .container {
        padding: 0 6%;
    }
    
    .top_pc_r_ul > li > a {
        padding: 0 1.5rem;
        font-size: 0.95rem;
    }
    
    .banner-overlay h1 {
        font-size: 2.8rem;
    }
    
    .banner-overlay p {
        font-size: 1.25rem;
    }
}

@media (max-width: 991px) {
    .head_pc {
        display: none;
    }
    
    .phone {
        display: block;
    }
    
    .conter {
        margin-top: 70px;
    }
    
    .banner {
        height: 24rem;
    }
    
    .banner-overlay h1 {
        font-size: 2.2rem;
    }
    
    .banner-overlay p {
        font-size: 1.1rem;
    }
    
    .footer_zong {
        flex-direction: column;
        gap: 2.5rem;
    }
    
    .footer_zong_l {
        width: 100%;
    }
    
    .footer_zong_z {
        width: 100%;
        height: 1px;
    }
    
    .footer_zong_r {
        width: 100%;
    }
    
    .footer_zong_r_ul1 {
        flex-direction: column;
        gap: 2rem;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 4%;
    }
    
    .banner {
        height: 20rem;
    }
    
    .banner-overlay h1 {
        font-size: 1.8rem;
    }
    
    .banner-overlay p {
        font-size: 0.95rem;
    }
    
    .index1_l_tit span, .index1_r_tit span {
        font-size: 1.8rem;
    }
    
    .wrap {
        padding: 3rem 0;
    }
}
