body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, 'Noto Sans', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
    overflow-x: hidden;
    /* position: relative;  Optional: if child elements need to be positioned relative to body */
    background: linear-gradient(90deg, #F9F9F9 57.26%, rgba(249, 249, 249, 0) 100%);
}

a {
    transition: all 0.3s ease;
}

.uk-breadcrumb li i {
    margin-right: 10px;
}

/* --- 顶部导航栏的外部包裹容器 --- */
header {

    box-shadow: 0px 2px 16px rgba(15, 42, 54, 0.04), 0px 4px 50px rgba(15, 42, 54, 0.05);
}

.main-header-overlay {
    position: absolute;
    /* 使其脱离文档流，浮动在页面顶部 */
    z-index: 999;
    /* 确保在 Hero Section 和其他大部分内容之上 */
    top: 0;
    left: 0;

    width: 100%;
    /* 这个包裹容器本身不需要背景色，背景色由内部的 .main-nav-bar 控制 */
}

/* --- 导航栏本身 (nav.main-nav-bar) --- */
nav.uk-navbar-container.main-nav-bar {
    min-height: 60px;
    transition: background-color .3s ease-in-out, box-shadow .3s ease-in-out;
    border: none;
    background-color: rgba(76, 179, 214, .95);
    box-shadow: none;
}


/* 当导航栏处于 sticky 激活状态时 (由 uk-sticky 添加 .uk-navbar-sticky-active 类) */
nav.uk-navbar-container.main-nav-bar.uk-navbar-sticky-active {
    background-color: #4cb3d6;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .15);
}

/* 导航栏Logo样式 */
.uk-logo img {
    height: 20px;
}

/* 导航链接样式 */
.main-nav-bar .uk-navbar-nav>li>a {
    font-size: 1em;
    font-weight: 500;
    text-transform: none;
    color: #fff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, .3);

}

.uk-navbar-nav>li>a,
.uk-navbar-item {
    min-height: 65px;
}

/* 导航链接激活/悬停状态 */
.main-nav-bar .uk-navbar-nav>li.uk-active>a,
.main-nav-bar .uk-navbar-nav>li>a:hover,
.main-nav-bar .uk-navbar-nav>li>a:focus {
    color: #fff;
    /* 激活/悬停时纯白色 */
}

@media (min-width: 960px) {
    .uk-navbar-nav {
        gap: 50px;
    }
}

/* 菜单图标 (移动端) */
.main-nav-bar .uk-navbar-toggle {
    color: #fff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, .3);
}

.main-nav-bar .uk-navbar-toggle:hover {
    color: #f0f0f0;
}

/* 下拉菜单样式 */
.main-nav-bar .uk-navbar-dropdown {
    margin-top: 0;
    padding: 6px 0;
    border-radius: 8px;
    background-color: rgba(0, 0, 0, .9);
    box-shadow: 0 5px 15px rgba(0, 0, 0, .1);
}


.main-nav-bar .uk-navbar-dropdown * {
    list-style: none;
    margin: 0;
    padding: 0;
    color: #fff;
}

.main-nav-bar .uk-navbar-dropdown>ul>li>a {
    padding: 5px 20px;
    display: block;
    font-size: 15px;
    font-weight: bold;
}

.main-nav-bar .uk-navbar-dropdown a:hover {
    color: #fff;
    background-color: rgba(76, 179, 214, .95);
}

.main-nav-bar .uk-navbar-dropdown .uk-nav-sub {
    margin-bottom: 20px;
}

.main-nav-bar .uk-navbar-dropdown .uk-nav-sub li {
    padding: 0 10px;
}

.main-nav-bar .uk-navbar-dropdown .uk-nav-sub li a {
    font-size: 14px;
    font-weight: normal;
    display: block;
    padding: 3px 20px;
    border-radius: 8px;
}


/* Sticky 状态下的下拉菜单 */
nav.uk-navbar-sticky-active .uk-navbar-dropdown {
    margin-top: 0;
    padding: 6px 0;
    border-radius: 8px;
    background-color: rgba(0, 0, 0, .9);
    box-shadow: 0 5px 15px rgba(0, 0, 0, .1);
}

nav.uk-navbar-sticky-active .uk-navbar-dropdown .uk-nav-sub>li>a:hover {
    color: #fff;
    background-color: rgba(76, 179, 214, .95);
}


/*下拉一级菜单后面的倒三角*/
nav ul li a.dropdown-toggle:after {
    display: inline-block;

    width: 0;
    height: 0;
    margin-right: 0;
    margin-left: .286rem;
    margin-left: .3em;

    content: '';
    -webkit-transition: .5s;
    -moz-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
    vertical-align: middle;

    border-top: .286rem solid;
    border-right: .286rem solid transparent;
    border-left: .286rem solid transparent;
}

nav ul li:hover a.dropdown-toggle:after {
    -webkit-transform: rotateZ(180deg);
    -moz-transform: rotateZ(180deg);
    -o-transform: rotateZ(180deg);
    transform: rotateZ(180deg);
}

/*下拉一级菜单后面的倒三角*/












.js-slideshow-animation .uk-slideshow-items>li>img[data-src] {
    /* 图片加载前的样式，例如背景色 */
    /* background-color: #f0f0f0;  可选：给未加载的图片区域一个背景色 */
    /* transition: opacity 0.3s ease-in-out; 可选：为图片加载添加淡入效果 */
}

.js-slideshow-animation .uk-slideshow-items>li>img.uk-img-loaded {
    /* 图片加载完成后的样式 */
    /* opacity: 1; */
}

/* 调整叠加层样式以匹配图片中的效果 */
.js-slideshow-animation .uk-slideshow-items .uk-overlay-primary {
    background: rgba(0, 0, 0, .45);
    /* 调整透明度和颜色 */
}

.js-slideshow-animation .uk-slideshow-items .uk-position-cover>div {
    /* 用于包裹 h1 和 p 的 div */
    max-width: 800px;
    /* 限制文本区域的最大宽度 */
    padding: 20px;
}

.js-slideshow-animation .uk-slideshow-items h1.uk-heading-large {
    margin-bottom: 15px;
    /* 与之前的样式保持一致 */
    /* 使用 .uk-heading-large 更符合UIKit语义 */

    color: #fff;
    /* uk-slideshow-parallax 属性会处理字体大小和动画 */
}

.js-slideshow-animation .uk-slideshow-items p.uk-text-lead {
    line-height: 1.6;
    /* 使用 .uk-text-lead 更符合UIKit语义 */

    color: #f0f0f0;
    /* uk-slideshow-parallax 属性会处理动画 */
}

/* 确保 uk-cover 对于懒加载图片仍然有效 */
.js-slideshow-animation .uk-slideshow-items>li>img[uk-cover] {
    font-family: 'object-fit: cover;';
    /* IE fallback */

    width: 100%;
    height: 100%;

    object-fit: cover;
}

/* 例如，将点变成横条：*/
.js-slideshow-animation .uk-dotnav>li>a {
    display: block;

    width: 30px;
    height: 6px;
    margin: 0 4px;
    padding: 0;

    text-indent: -9999px;

    border-radius: 3px;
    background-color: rgba(255, 255, 255, 1);
}

.js-slideshow-animation .uk-dotnav>li.uk-active>a {
    background-color: #4cb3d6;
}

.js-slideshow-animation li>div.uk-position-medium {
    width: 30%;
    margin-left: 20%;
}




#fp-nav ul li a span, .fp-slidesNav ul li a span{
    background-color: #4cb3d6!important;
}





/* --- 移动端 Off-canvas 导航样式 --- */
#offcanvas-nav .uk-offcanvas-bar {
    background: #1c2938;
    /* 深色背景 */
}

#offcanvas-nav .uk-nav-default>li>a,
#offcanvas-nav .uk-nav-sub>li>a {
    color: #b0bec5;
    /* 浅灰色文字 */
}

#offcanvas-nav .uk-nav-default>li.uk-active>a,
#offcanvas-nav .uk-nav-default>li>a:hover,
#offcanvas-nav .uk-nav-sub>li>a:hover {
    color: #fff;
    /* 激活/悬停时白色文字 */
}

#offcanvas-nav .uk-close {
    color: #b0bec5;
}

#offcanvas-nav .uk-close:hover {
    color: #fff;
}



@media (max-width: 639px) {
    /* UIKit的 @s 断点是 640px */


    .js-slideshow-animation li>div.uk-position-medium {
        width: auto;
        margin: auto;
    }

    nav.uk-navbar-container.main-nav-bar {
        min-height: 50px;
        /* 小屏幕导航栏可以矮一些 */
    }

    .main-nav-bar .uk-navbar-item.uk-logo {
        font-size: 1.2em;
    }
}

/* --- 专注领域与统计数据区块 --- */
.focus-stats-section {
    padding-top: 60px;
    padding-bottom: 60px;
    background-color: #fff;
    /* 根据需要设置背景色，图片中是白色 */
}

.section-main-title {
    font-size: 2.5em;
    /* 根据视觉调整 */
    font-weight: bold;
    color: #222;
    /* 标题文字颜色 */
    line-height: 1.2;
    display: flex;
    /* 使用flex让 "20" 和文字对齐 */
    align-items: center;
    /* 垂直居中对齐 */
    justify-content: center;
    /* 水平居中 */
}

.big-20-graphic {
    font-family: 'Arial Black', Gadget, sans-serif;
    /* 选择一个粗壮的字体 */
    font-size: 2.8em;
    /* "20" 的大小，相对于父标题 */
    font-weight: 900;
    color: #4cb3d6;
    /* 图片中的蓝色，或您的品牌色 */
    margin-right: 10px;
    /* 与后面文字的间距 */
    line-height: 1;
    /* 调整行高以更好地对齐 */
    text-shadow: 3px 5px 2px rgba(0, 0, 0, 0.1);
}

.section-main-title .title-text {
    font-size: 0.8em;
    /* 调整文字部分相对于 "20" 的大小 */
    display: inline-block;
    vertical-align: middle;
    margin-top: 40px;
}

.section-main-title span.title-text i {
    color: #4cb3d6;
    margin-right: 5px;
    text-shadow: 1px 3px 2px rgba(0, 0, 0, 0.1);
}


/* 统计数据样式 */
.stats-grid>div {
    position: relative;
    /* 用于分隔线的定位 */
    padding: 10px 15px;
    /* 给一些内边距 */
}

/* 统计数据之间的分隔线 */
.stats-grid>div:nth-child(5)::after {
    display: none;
}

.stats-grid>div:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    height: 50px;
    /* 分隔线高度 */
    width: 1px;
    background-color: #e0e0e0;
    /* 分隔线颜色 */
    transform: translateY(-50%);
}

/* 在小屏幕上，当它们堆叠时，可能不需要分隔线 */
@media (max-width: 639px) {

    /* UIKit @s 断点 */
    .stats-grid>div:not(:last-child)::after {
        display: none;
        /* 在垂直堆叠时隐藏分隔线 */
    }

    .stats-grid>div {
        margin-bottom: 20px;
        /* 垂直堆叠时间隔 */
    }
}


.stat-number span.counter {
    font-size: 2.6em;
    /* 数字大小 */
    font-weight: bold;
    color: #4cb3d6;
    /* 图片中的数字蓝色 */
    display: inline-block;
    margin-bottom: 5px;
}

.stat-unit {
    font-size: 0.5em;
    /* "年" 单位的大小 */
    font-weight: normal;
    margin-left: 2px;
}

.stat-label {
    font-size: 0.95em;
    color: #555;
    /* 标签文字颜色 */
}

/* 图片展示区样式 */
.image-gallery-grid .uk-card {
    border: 1px solid #e5e5e5;
    /* 给图片卡片一个轻微的边框 */
    overflow: hidden;
    /* 确保图片圆角生效（如果图片本身有） */
}

.image-gallery-grid img {
    display: block;
    width: 100%;
    height: auto;
    /* 保持图片宽高比 */
    /* 如果图片尺寸不一，但希望卡片高度一致，可以使用 uk-height-match="target: > .uk-card"
       然后在卡片内部对图片做 uk-cover 或 object-fit 处理，但会裁剪图片。
       当前代码假设图片本身是统一尺寸或可以接受不同高度。
    */
}


/* 图片展示区样式 */
.case-gallery-grid .uk-card {
    overflow: hidden;
    /* 确保图片圆角生效（如果图片本身有） */
}

.case-gallery-grid img {
    border-radius: 6px;
    display: block;
    width: 100%;
    height: auto;
    /* 保持图片宽高比 */
    /* 如果图片尺寸不一，但希望卡片高度一致，可以使用 uk-height-match="target: > .uk-card"
       然后在卡片内部对图片做 uk-cover 或 object-fit 处理，但会裁剪图片。
       当前代码假设图片本身是统一尺寸或可以接受不同高度。
    */
}











.uk-case-modal {
    padding: 0;
    border-radius: 8px;
    overflow: hidden;
}

.uk-case-modal .uk-height-medium {}





















/* --- 页脚样式 --- */
.site-footer.uk-section-secondary {
    padding-top: 0px;
    padding-bottom: 0px;

    color: #fff;
    /* 浅色文字，用于非链接文本 */
    background-color: #333;
    /* 图片中的深蓝色背景 */
}

.footer-logo img {
    max-height: 25px;
    /* 限制Logo高度 */

    vertical-align: middle;
}

.footer-logo .logo-tagline {
    font-size: 1em;
    font-weight: bold;

    margin-left: 15px;

    vertical-align: middle;

    color: #fff;
    /* Logo旁边的标语文字颜色 */
}

.footer-divider {
    margin-top: 20px;
    margin-bottom: 30px;
    border-top-color: #666;
}

.footer-divider-bottom::after,
.footer-divider::after {
    width: 100%;
}

.footer-divider-bottom {
    margin-top: 0;
    margin-bottom: 20px;

    border-top-color: #666;
}


.footer-links-title {
    font-size: 1.1em;
    font-weight: bold;

    margin-bottom: 15px;

    color: #fff;
    /* 链接列标题颜色 */
}

.footer-links-grid .uk-list>li>a {
    font-size: .9em;
    transition: all 0.36s;
    padding-left: 11px;
    color: #fff;
    /* 链接文字颜色 */
}

.footer-links-grid .uk-list>li {
    position: relative;
    display: block;
    margin-bottom: 8px;
}

.footer-links-grid .uk-list>li::before {
    content: '';
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #0999bd;
    position: absolute;
    left: 0;
    top: 14px;
}

.footer-links-grid .uk-list>li>a:hover {
    text-decoration: underline;

    color: #0999bd;
}

.footer-links-grid .uk-list>li {
    padding: 3px 0;
    /* 调整链接行间距 */
}

/* 右侧联系方式 */
.footer-contact-info {
    border-left: 1px solid #666;
}

@media (max-width: 959px) {

    /* 小于 UIKit @m 断点 */
    .footer-contact-info {
        margin-top: 40px;
        padding-top: 30px;

        border-top: 1px solid rgba(255, 255, 255, .1);
    }
}


.contact-phone-large {
    font-size: 2em;
    /* 大号电话号码 */
    font-weight: bold;

    margin-bottom: 15px;

    color: #fff;
}

.contact-details-list>li {
    font-size: .85em;
    line-height: 1.6;

    padding: 2px 0;

    color: #fff;
}

.qr-codes-grid {
    margin-top: 20px;
}

.qr-code-img {
    max-width: 120px;
    /* 二维码图片大小 */
    height: auto;
    padding: 5px;
    /* 可选：给二维码加点内边距 */

    border-radius: 3px;
    /* 可选：圆角 */
    background-color: #fff;
    /* 如果二维码本身没有白色背景，可以加一个 */
}

.qr-code-label {
    font-size: .8em;

    margin-top: 8px;

    color: #c0c9db;
}

/* 版权信息 */
.footer-copyright {
    /* margin-top 已在 HTML 中通过 uk-margin-medium-top 设置 */
}

.copyright-text,
.copyright-text a,
.copyright-text p,
.icp-text,
.icp-text a,
.icp-text p {
    font-size: 13px;

    margin: 0 !important;
    /* 移除p标签默认的下边距 */

    color: #636363 !important;
    /* 版权和ICP文字颜色，比普通链接文字稍暗 */
}



@media (max-width: 639px) {

    /* 小于 UIKit @s 断点 */
    .footer-copyright .uk-grid-small>div {
        width: 100%;

        text-align: center;
        /* 在非常小的屏幕上，版权信息居中显示 */
    }

    .copyright-text {
        margin-bottom: 5px;
    }

    .contact-phone-large {
        font-size: 1.6em;
        margin-top: 0 !important;
    }
}


/*分页*/
.diypage {
    text-align: center;
    padding: 5px;
    padding: 50px 0;
}

.diypage ul.pagination {
    width: auto !important;
}

.diypage ul.pagination li {
    display: inline
}

.diypage ul.pagination li a {
    display: inline-block;
    background-color: #F9F9F9;
    border: 0 none;
    border-radius: 6px;
    font-size: 14px;
    margin-left: 5px;
    text-decoration: none;
    display: inline-block;
    height: 32px;
    line-height: 32px;
    border: 1px solid #F9F9F9;
    padding: 0 8px;
    color: #333
}

.diypage ul.pagination li a:hover {
    background-color: #333;
    color: #FFF
}

.diypage ul.pagination li a:active {
    background-color: #333;
    color: #FFF
}

.diypage ul.pagination li.active a {
    background-color: #333;
    border: 0 none;
    border-radius: 3px;
    color: white;
    font-size: 14px;
    font-weight: normal;
    display: inline-block;
    border: 1px solid #333
}

.diypage ul.pagination li.disabled a {
    border: #eee 1px solid;
    margin: 2px;
    color: #ddd
}

/*分页*/




.prodetail_main h4 {
    color: #0999bd;
    margin-bottom: 5px
}

.prodetail_main h1 {
    margin: 0 0 30px 0;
    font-size: 36px;
}

.detail_info {

    font-size: 16px;
    color: #676B77;
    line-height: 1.75;

}
.detail_info h5{ margin:0; font-weight:bold; display:inline-block;}



.pro_canshu {
    padding: 10px
}

.pro_canshu:after,
.pro_canshu:before,
.pro_canshu ul:after,
.pro_canshu ul:before {
    content: '.';
    clear: both;
    display: block;
    height: 0;
    visibility: hidden;
    line-height: 0px;
    overflow: hidden;
}

.pro_canshu dl {
    border-bottom: 1px solid #f1f1f1;
    margin: 10px 0;
}

.pro_canshu dl:first-child {
    min-width: 20% !important;
}

.pro_canshu dl dd:first-child {
    background: #00b3d5 !important;
    color: #fff !important;
    padding: 8px 0
}

.pro_canshu dl:first-child dd:first-child,
.pro_canshu dl:nth-child(6) dd:first-child,
.pro_canshu dl:nth-child(11) dd:first-child {
    background: #636363 !important;
    color: #ffffff !important;
}

.pro_canshu dl {
    width: 20%;
    float: left;
}

.hg_cs dl {
    width: 30% !important;
    float: left;
}

.pro_canshu dl dd {
    height: 28px;
    line-height: 28px;
    overflow: hidden;
    text-align: center;
}

.pro_canshu dl dd:nth-child(odd) {
    background: #ffffff;
}

.pro_canshu dl dd:nth-child(even) {
    background: transparent;
}

.pro_canshu ul li {
    float: left;
    margin-bottom: 1px;
    margin-left: 10px;
    width: 470px;
    height: 30px;
    border-bottom: 1px solid #eee;
    font-family: Microsoft Yahei;
    line-height: 30px
}

.pro_canshu em {
    display: inline-block;
    margin-right: 10px;
    padding-left: 10px;
    width: 90pt;
    height: 30px;
    background: #f1f1f1;
    color: #333;
    font-weight: inherit;
    font-style: normal;
    line-height: 30px
}

.pro_canshu em {
    word-break: break-all;
    min-height: 30px;
}

.pro_canshu ul li {
    min-height: 30px;
}



.prodetail_service_bg {
    position: absolute;
    width: 61.7%;
    left: 100px;
}

.prodetail_service_bg img {
    width: 100%;
}

.prodetail_service_bg svg {
    width: 100%;
    height: 100%;
    position: absolute;
    top: -38px;
    left: 0;
}

.prodetail_service_bg_span {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #fff;
    position: absolute;
    top: -57px;
    left: -19px;
}


.img-cnt {
    position: relative;
    z-index: 4;
}

.img-box {
    width: 100%;
    position: relative;
}

.img-box img {
    width: 100%;
    position: relative;
    z-index: 10;
}

.img-box::before,
.img-box::after,
.img-cnt::before,
.img-cnt::after {
    content: '';
    width: 0;
    height: 0;
    border: 1px solid #52ADC8;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: img-ani 6s linear infinite;
}

.img-box::after {
    animation-delay: 1.5s;
}

.img-cnt::before {
    animation-delay: 3s;
}

.img-cnt::after {
    animation-delay: 4.5s;
}

@keyframes img-ani {
    0% {
        width: 0;
        height: 0;
        opacity: 1;
    }

    100% {
        width: 42vw;
        height: 42vw;
        opacity: 0;
    }
}

@media screen and (min-width: 1921px) {
    @keyframes img-ani {
        0% {
            width: 0;
            height: 0;
            opacity: 1;
        }

        100% {
            width: 800px;
            height: 800px;
            opacity: 0;
        }
    }
}




.custom-top-nav-container {
    padding-top: 25px;
    /* Space above the menu */
    padding-bottom: 35px;
    /* Space between menu and main title */
}

.custom-top-nav {
    font-size: 18px;
    /* Adjusted font size to match image */
}


.custom-top-nav li a {
    color: #666666 !important;
    /* Gray for inactive items */
    font-weight: bold;
    /* Normal weight for inactive items */
    padding-top: 8px;
    padding-bottom: 8px;
    /* Base padding */
    text-decoration: none;
    font-size: 18px !important;
    transition: color 0.3s ease, font-weight 0.3s ease;
    /* Add transition effect */
    position: relative;
    /* Position for hover effect */
}

.custom-top-nav li a:hover {
    color: #000000 !important;
    text-decoration: none;
    animation: hoverEffect 0.3s ease-out;
    /* Add hover animation */
}

/* For the selected/active state */
.custom-top-nav .uk-active a {
    color: #000000 !important;
    /* Black indicates active */
    text-decoration: none;
    font-weight: bolder;
    /* Make the active item bolder */
    animation: activeEffect 0.5s ease-out;
    /* Animation when item is selected */
}

/* Keyframes for hover animation */
@keyframes hoverEffect {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-2px);
    }

    100% {
        transform: translateY(0);
    }
}

/* Keyframes for active/selected state animation */
@keyframes activeEffect {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

/* Optional: Underline animation for hover effect */
.custom-top-nav li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #000000;
    transition: width 0.3s ease;
}

.custom-top-nav li a:hover::after {
    width: 100%;
}

/* Optional: Underline animation for active/selected state */
.custom-top-nav .uk-active a::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #000000;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.custom-top-nav .uk-active a:hover::after {
    opacity: 1;
    /* Keep underline visible when active item is hovered */
}

/* Optional: Style for UIKit dividers if needed */
.uk-subnav-divider> :not(.uk-first-column)::before {
    /* Default UIKit divider is usually fine, this is if you want to customize */
    /* background-color: #e0e0e0; */
}

/* Main content area */
.main-content-section {
    /* padding-top: 40px; */
    /* Spacing now handled by .custom-top-nav-container for area above */
    padding-bottom: 40px;
}

.product-title {
    font-size: 36px;
    font-weight: bold;
    color: #222;
    margin-bottom: 10px;
}

.title-underline {
    width: 60px;
    height: 3px;
    background-color: #52ADC8;
    /* Blue line */
    margin-bottom: 25px;
}

.learn-more-link {
    display: inline-flex;
    align-items: center;
    font-size: 16px;
    color: #52ADC8;
    text-decoration: none;
}

.learn-more-link i {
    background-color: #52ADC8;
    color: white;
    border-radius: 50%;
    padding: 5px;
    width: 24px;
    height: 24px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin-right: 8px;
    font-size: 12px;
}

.learn-more-link:hover {
    color: #333;
}

.learn-more-link:hover i {
    background-color: #333;
}

.product-image {
    width: auto !important;
    max-width: 80%;
    height: auto;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* Bottom navigation bar */
.bottom-navigation-bar {
    display: flex;
    width: 100%;
}

.bottom-nav-item {
    flex: 1;
    padding: 20px 15px;
    text-align: center;
    color: white;
    font-size: 16px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bottom-nav-item:hover {
    opacity: 0.9;
    text-decoration: none;
    color: white;
}

.bottom-nav-item-1 {
    background-color: #52ADC8;
}

.bottom-nav-item-2 {
    background-color: #3A3A3A;
}

.bottom-nav-item-3 {
    background-color: #2E2E2E;
}

.bottom-nav-item i {
    margin-left: 8px;
}

.uk-cat-info {
    line-height: 2
}

.mod_title1_sub {
    font-size: 18px;
    line-height: 1.5;
    padding-left: 42px;
    position: relative;
    margin-bottom: 12px;
    color: #B3B5BB;
    font-family: 'poppins_regular' !important;
}

.mod_title1_sub::before {
    content: '';
    height: 2px;
    width: 34px;
    position: absolute;
    left: 0;
    background: linear-gradient(to right, #0999bd, #4cb3d6);
    top: 10px;
}

.uk-about2 {
    height: 550px
}

.uk-about2-wrap {
    width: 55%
}

.tel-gradient {
    background: linear-gradient(90deg, #0999bd 0%, #4cb3d6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    font-weight: bold;
    line-height: 1.4;
    pointer-events: none;
}

.contact-icon {
    width: 15px;
    margin-right: 10px;
}

.section-title {
    color: #333;
    font-weight: bold;
    font-size: 16px;
    line-height: 1.5;
    display: inline-block;
}

.contact-detail {
    color: #676B77;
    line-height: 1.8;
}

/* 添加响应式调整 */
.hotline-container {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    /* 小屏幕时内容靠下 */
    padding: 20px 200px;
    box-sizing: border-box;
}


.hotline-info .uk-text-muted,
.hotline-info .uk-text-meta {
    margin-bottom: 10px;
}

.hotline-info .tel-gradient {
    font-size: 46px;
    margin: 0;
}

        .page-title {
            margin-bottom: 30px;
        }
        .filter-section { /* 现在是静态分类导航 */
            background-color: #f0f0f0;
            padding: 20px;
            margin-bottom: 30px;
            border-radius: 5px;
            box-shadow: 0 2px 4px rgba(0,0,0,0.05);
        }
        .filter-section .uk-divider-icon{ margin:0; }
        .filter-group {
            margin-bottom: 0px;
        }
        .filter-group:last-child {
            margin-bottom: 0;
        }
        .filter-group label {
            margin-right: 15px;
            cursor: pointer; /* 保持指针样式，暗示可点击 */
            display: inline-block; /* 确保label可以设置margin */
        }

        .filter-group label.uk-active a{ /* 用于模拟当前激活的分类 */

            color: #ffffff; /* UIKit primary color */
            background-color: #4cb3d6;
            border-radius: 12px;
        }

        .uk-radio { /* 如果用 radio 的话 */
            margin-right: 5px;
        }
        .filter-group a { /* 如果用链接替代 radio */
            text-decoration: none;
            color: #333;
            font-size: 14px;
            padding: 3px 10px;
        }
        .filter-group a:hover {
            color: #4cb3d6;
        }


        .product-item-container {
            opacity: 0;
        }

        @keyframes fadeInUpItem {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .product-item-container.animate-in {
            animation-name: fadeInUpItem;
            animation-duration: 0.6s;
            animation-fill-mode: forwards;
            animation-timing-function: ease-out;
        }

        .product-card {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .product-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 24px rgba(0,0,0,0.12);
        }
        .product-card .uk-card-media-top {
            overflow: hidden;
        }
        .product-card .uk-card-media-top img {
            height: 350px;
            object-fit: contain;
            padding: 10px;
            transition: transform 0.35s ease-in-out;
        }
        .product-card:hover .uk-card-media-top img {
            transform: scale(1.08);
        }
        .product-card .uk-card-body {
            padding: 15px;
        }
        .product-card .uk-card-title {
            font-size: 1rem;
            margin-bottom: 0;
            transition: color 0.3s ease;
        }
        .product-card:hover .uk-card-title {
            color: #0999bd;
        }

        .pagination-container { /* 静态分页导航 */
            margin-top: 40px;
            margin-bottom: 20px;
        }

.uk-news-list .uk-card-body{ padding:20px; }
.uk-news-list .uk-card-media-top{ height: 200px; }

        .uk-news-list .uk-card a:hover{
            color: #0999bd;
        }



@media (min-width: 768px) {
    .hotline-container {
        flex-direction: row;
        justify-content: space-between;
    }

}


@media (max-width: 768px) {
    .custom-top-nav-container {
        padding-top: 15px;
        padding-bottom: 20px;
    }

    .custom-top-nav {
        font-size: 12px;
        /* Slightly smaller on mobile */
    }

    .product-title {
        font-size: 28px;
    }

    .product-image-container {
        margin-top: 30px;
    }

    .bottom-navigation-bar {
        flex-direction: column;
    }

    .uk-about2-wrap {
        width: auto;
    }

    .uk-about2-wrap p {
        background-color: rgba(255, 255, 255, 0.65);
        padding: 20px;
    }


    .hotline-container {
        padding: 20px;
    }
}