@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;800&family=Open+Sans:wght@400;600&family=Playfair+Display:wght@400;700&display=swap');

body {
    font-family: 'Open Sans', sans-serif; /* 保留 Open Sans 作为正文字体，保持可读性和信任感 */
    font-weight: 400;
    color: #333333;
    line-height: 1.7;
    font-size: 16px;
    margin: 0;
    padding: 0;
}

.container {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

a {
    transition: 0.3s;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: #008938;
    text-decoration: none;
}

a:hover {
    color: #f2b700;
    text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif; /* 更改标题字体为 Playfair Display */
    font-weight: 700; /* 可以根据需要调整字重，以增加视觉冲击力 */
    color: #2C3E50;
    line-height: 1.3;
    margin-bottom: 20px;
}

h1 { font-size: 48px; } /* 根据需要调整不同标题大小 */
h2 { font-size: 36px; }
h3 { font-size: 28px; }
h4 { font-size: 22px; }
h5 { font-size: 18px; }
h6 { font-size: 16px; }

/* Section Headers (e.g., Product, News) */
.product_head h2, .news_head h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 36px;
    text-align: center;
    color: #2C3E50;
    margin-top: 50px;
    letter-spacing: 0.5px;
}
.product_head p {
    text-align: center;
    color: #666;
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}

/* Highlight and Accent Text */
.highlight, .about_h3, .case_title a {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: #008938;
}

/* Body Text */
.product_title a, .news_title a, .about_p, .case_title a {
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    line-height: 1.7;
    color: #333333;
}
.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}
.product-card:hover .view-detail-btn {
    opacity: 1;
}
.view-detail-btn:hover {
    background: #2e7d32;
}
.product-title a:hover {
    color: #2e7d32;
}
.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
}
.product-card:hover .hover-overlay {
    opacity: 1;
}
.product-title a:hover {
    color: #2e7d32;
}
.page {
    text-align: center;
    margin-top: 30px;
}
.page a, .page span {
    display: inline-block;
    padding: 6px 12px;
    margin: 2px;
    border: 1px solid #ccc;
    color: #333;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    border-radius: 4px;
}
.page a:hover, .page .current {
    background: #2e7d32;
    color: #fff;
    border-color: #2e7d32;
}

/* 标签列表容器 */
.tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

/* 每个标签占据一半宽度，确保每行显示 2 个标签 */
.tag-list li {
    width: calc(50% - 7.5px);
}

/* 小屏幕下，调整为一行显示 1 个标签 */
@media (max-width: 768px) {
    .tag-list li {
        width: 100%;
    }
}

/* Footer 主体 */
.footer {
    background-color: #f5f5f5;
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    padding: 35px 0 0px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* 三列布局 */
.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

/* 品牌介绍 */
.footer-brand .footer-logo {
    height: 40px;
    margin-bottom: 20px;
}

.footer-brand .footer-desc {
    color: #6c757d;
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-brand .footer-learn-more {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: #008938;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-brand .footer-learn-more:hover {
    color: #f2b700;
}

/* 快速链接 */
.footer-links h4,
.footer-contact h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: #2C3E50;
    margin-bottom: 20px;
}

.footer-links ul,
.footer-contact ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li,
.footer-contact li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #363f4d;
}

.footer-links a,
.footer-contact a {
    color: #363f4d;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover,
.footer-contact a:hover {
    color: #008938;
}

/* 社交图标 */
.footer-social {
    margin-top: 20px;
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    background-color: #e6eee6;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color 0.3s ease;
}

.footer-social a:hover {
    background-color: #008938;
    color: white;
}

.footer-social i {
    font-size: 14px;
}

/* 热门标签区域 */
.footer-tags {
    background-color: #f3f7f3;
    padding: 20px 0;
}

.tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.tag-list a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 32px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: #008938;
    background-color: #e9f5ec;
    border: 1px solid #cde8dc;
    border-radius: 20px;
    padding: 0 12px;
    transition: all 0.3s ease;
    white-space: nowrap;
    flex: 1 1 calc(50% - 5px);
    box-sizing: border-box;
    text-align: center;
}

.tag-list a:hover {
    background-color: #008938;
    color: white;
    border-color: #008938;
}

/* 版权区域 */
.footer-bottom {
    background-color: #e6eee6;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #666;
    flex-direction: row;
    flex-wrap: wrap;
    padding: 0 15px;
}
.footer-bottom a.footer-sitemap {
    color: #008938;
    margin-left: 10px;
    text-decoration: none;
}

.footer-bottom a.footer-sitemap:hover {
    color: #f2b700;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .tag-list a {
        flex: 1 1 100%;
    }
}

/* Buttons */
#search_submit, .about_btn, .page-btn, .download_btn {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: #ffffff;
    background-color: #008938;
    border-radius: 4px;
    padding: 10px 20px;
    transition: background-color 0.3s;
}

#search_submit:hover, .about_btn:hover, .page-btn:hover, .download_btn:hover {
    background-color: #f2b700;
}

/* Price Tag */
.price-tag {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 24px;
    color: #E74C3C;
}

/* 左侧分类导航 */
.left_column ul.left_nav_ul > li > a {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: #333333;
    background-color: #f2f2f2;
}

.left_column ul.left_nav_ul > li > a:hover,
.left_column ul.left_nav_ul li a.left_active {
    color: #ffffff;
    background-color: #008938;
}

/* Left Column Header */
.left_column h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 24px;
    color: #008938;
    text-transform: uppercase;
    padding: 15px 20px;
    background: linear-gradient(to right, #008938, #00a84a);
    color: #ffffff;
    position: relative;
    border-radius: 6px 6px 0 0;
    transition: transform 0.3s ease, background 0.3s ease;
}

.left_column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 20px;
    width: calc(100% - 40px);
    height: 2px;
    background-color: #f2b700;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.left_column h3:hover {
    transform: scale(1.02);
    background: linear-gradient(to right, #f2b700, #ffcc00);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.left_column h3:hover::after {
    transform: scaleX(1);
}

/* Responsive adjustments for .left_column h3 */
@media screen and (max-width: 768px) {
    .left_column h3 {
        font-size: 20px;
        padding: 12px 15px;
    }
    .left_column h3::after {
        left: 15px;
        width: calc(100% - 30px);
    }
}

/* Responsive Typography */
@media screen and (max-width: 768px) {
    body { font-size: 15px; }
    h1 { font-size: 32px; }
    h2 { font-size: 28px; }
    h3 { font-size: 22px; }
    h4 { font-size: 18px; }
    h5 { font-size: 16px; }
    h6 { font-size: 14px; }
    .product_head h2, .news_head h2 { font-size: 30px; }
    .product_title a, .news_title a, .case_title a { font-size: 15px; }
    .navbar-default .navbar-nav > li > a { font-size: 15px; }
}

/* Tables */
.table tr.firstRow th {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 15px;
    background-color: #f7f7f7;
}

/* Top Bar */
.top_email, .top_email a {
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #565656;
}

.top_email a:hover {
    color: #008938;
}

/* Product Card */
.product-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 18px;
    color: #333333;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-title a {
    color: #333333;
}

.product-title a:hover {
    color: #008938;
}

/* News */
.news_title a {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 18px;
    color: #444444;
}

.news_title a:hover {
    color: #008938;
}

.news_desc {
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    font-size: 15px;
    color: #7b7b7b;
}

/* Footer */
footer, .footer_menu a, .footer_sitemap {
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #363f4d;
}

.footer_menu_first {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 18px;
}

.footer_sitemap:hover {
    color: #008938;
}

/* Links and Tags */
.link_box a, .tags_box a {
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #363f4d;
}

.link_box a:hover, .tags_box a:hover {
    color: #008938;
}

/* General Styles (Non-Typography) */
ul {
    list-style: none;
}

.clear {
    clear: both;
}

.img-thumbnail {
    transition: opacity 0.7s;
}

.img-thumbnail:hover,
.opacity_img:hover {
    opacity: 0.75;
}

/* Top Bar */
.top_bg {
    color: #777777;
    width: 100%;
    height: 30px;
    border-bottom: 1px solid #e4e4e4;
}

.top_email {
    padding-top: 6px;
}

/* Slideshow */
.flash img {
    width: 100%;
}

.flash ul.bxslider {
    list-style: none;
}

.flash div.bx-pager {
    bottom: 4%;
}

.flash div.bx-controls-direction {
    display: none;
}

/* Search */
.search_group {
    float: right;
    height: 40px;
    background-color: #f2f2f2;
    margin: 32px 0px 0px 0px;
}

.search_group input.form-control {
    border-radius: 0px;
    box-shadow: none;
    color: #585A5A;
    padding: 0px 0px 0px 15px;
    height: 40px;
    background: transparent;
    border: none;
}

.search_group input.form-control:focus {
    box-shadow: none;
}

#search_submit {
    border-radius: 0px;
    border: none;
}

/* Solutions */
.product_head span {
    display: block;
    margin-top: 16px;
    height: 24px;
    background: url(../images/divider.png) center center no-repeat;
}

.product_list {
    clear: both;
    padding: 25px 0px 0px 0px;
    margin-right: -15px;
    margin-left: -15px;
}

.product_list2 {
    padding-top: 10px;
}

.product_img {
    padding-left: 15px;
    padding-right: 15px;
    min-height: 370px;
}

.product_img img {
    margin-right: auto;
    margin-left: auto;
    display: block;
    max-height: 300px;
    max-width: 100%;
    height: auto;
    margin-bottom: 10px;
}

.product_list2 div.product_img {
    min-height: 350px;
    margin-bottom: 10px;
}

.product-item {
    padding: 15px;
}

.product-card {
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    padding: 15px;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.product-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.product-image:hover {
    transform: scale(1.05);
}

.stats_bg {
    background: #f8f8f8;
    padding: 60px 0;
}
.stats_section .stat_number {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 38px;
    color: #2a8f3c;
}
.stats_section .stat_label {
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #333;
    margin-top: 10px;
}

/* About Section */
.about_bg {
    background-color: #f5f5f5;
}

.about_img {
    max-width: 414px;
    margin: 50px 0px 30px 15px;
}

.about_h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 20px;
    margin-top: 60px;
}

.about_p {
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    font-size: 16px;
    font-style: italic;
    margin-top: 20px;
}

.about_content {
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 26px;
    color: #555555;
    margin-top: 20px;
}

.about_btn {
    display: block;
    text-align: center;
    width: 150px;
    margin: 20px 0px 50px 0px;
}

/* News Section */
.news_head {
    margin-bottom: 20px;
}

.news_head span {
    display: block;
    margin-top: 16px;
    height: 24px;
    background: url(../images/divider.png) center center no-repeat;
}

.news_list {
    clear: both;
    padding: 5px 0px 0px 0px;
    margin-right: -15px;
    margin-left: -15px;
}

.news_img {
    padding-left: 15px;
    padding-right: 15px;
    min-height: 340px;
}

.news_img img {
    margin-right: auto;
    margin-left: auto;
    display: block;
    max-height: 300px;
    max-width: 100%;
    height: auto;
    margin-bottom: 10px;
}

.news_time {
    float: right;
}

/* Shadow Box */
.shadow-box {
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
    margin-top: 15px;
    transition: box-shadow 0.3s ease;
}

.shadow-box:hover {
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.07);
}

/* Left Navigation */
.left_column ul.left_nav_ul {
    padding: 0;
    margin-top: 20px;
}

.left_column ul.left_nav_ul > li {
    margin-bottom: 10px;
    border-radius: 5px;
    overflow: hidden;
}

.left_column ul.left_nav_ul > li > a {
    display: block;
    padding: 12px 20px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.left_column ul.left_snav_ul {
    padding: 0;
    margin-top: 10px;
}

.left_column ul.left_snav_ul > li {
    margin-bottom: 8px;
}

.left_column ul.left_snav_ul > li > a {
    display: block;
    padding: 8px 20px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #555555;
    background-color: #f9f9f9;
    border-radius: 5px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.left_column ul.left_snav_ul > li > a:hover {
    background-color: #008938;
    color: #ffffff;
}

/* Left News */
.left_news {
    clear: both;
    margin: 0;
    padding: 0;
}

.left_news li {
    color: #545455;
    border-bottom: 1px dotted #dddddd;
    background: url(../images/li.png) no-repeat left 15px;
    line-height: 21px;
    padding: 10px 0px;
    padding-left: 14px;
}

.left_news li a {
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #2F2F2F;
}

.left_news li a:hover {
    color: #008938;
}

/* Left Contact */
.left_contact {
    margin: 30px 0px 35px 0px;
}

.left_contact p {
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
}

/* Page Banner */
.page_bg {
    height: 229px;
    margin-bottom: 0px;
}

/* Breadcrumbs */
.bread_bg {
    background-color: #f3f3f3;
}

.bread_nav {
    padding: 10px 0px;
}

.bread_nav span {
    color: #008938;
    padding-right: 6px;
}

.bread_nav a {
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #2F2F2F;
}

.bread_nav a:hover {
    color: #008938;
}

/* Right Column */
.right_head h2 {
    font-weight: 700;
    font-size: 30px;
    color: #2C3E50;
    line-height: 1.4;
    padding: 20px 0 18px;
    position: relative;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    border-bottom: none;
}

.right_head h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #e0e0e0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.right_head h2:hover::after {
    background-color: #008938;
}

.right_contents {
    clear: both;
    padding: 15px 0px;
    line-height: 28px;
    overflow: auto;
}

.right_contents_h1 {
    font-weight: 700;
    font-size: 26px;
    color: #434343;
    text-align: center;
    padding: 10px 0px;
}

.right_contents img {
    max-width: 840px;
}

/* Right News */
.right_new {
    clear: both;
    margin: 0;
    padding: 0px 0px 20px 0px;
}

.right_new li {
    color: #898989;
    background: url(../images/li.png) no-repeat left 18px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    padding: 12px 0px;
    padding-left: 13px;
    border-bottom: 1px dashed #e3e2e2;
}

.right_new li a {
    color: #2F2F2F;
}

.right_new li a:hover {
    color: #008938;
}

.right_new_time {
    float: right;
}

.relevant_new ul.right_new li {
    font-size: 14px;
}

/* Case Studies */
.case_list {
    clear: both;
    padding: 25px 0px 0px 0px;
    margin-right: -15px;
    margin-left: -15px;
}

.case_list2 {
    padding-top: 20px;
}

.case_img {
    padding-left: 15px;
    padding-right: 15px;
    min-height: 270px;
}

.case_img img {
    margin-right: auto;
    margin-left: auto;
    display: block;
    max-height: 270px;
    max-width: 100%;
    height: auto;
    margin-bottom: 10px;
    border-radius: 20px; /* 添加圆角效果 */
    box-shadow: 0 15px 25px -12px rgba(86, 86, 86, 0.67); /* 添加阴影效果 */
}

.case_list2 div.case_img {
    min-height: 220px;
}

.case_title {
    text-align: center;
    height: 40px;
}

/* 添加图片动画效果 */
@-webkit-keyframes FadeIn {
    0% {
        opacity: 0;
        -webkit-transform: scale(.1);
    }
    85% {
        opacity: 1;
        -webkit-transform: scale(1.05);
    }
    100% {
        -webkit-transform: scale(1);
    }
}

.case_img {
    -webkit-animation: FadeIn .7s linear;
    -webkit-animation-fill-mode: both;
}

.case_list .case_img:nth-child(1) {
    -webkit-animation-delay: .5s
}

.case_list .case_img:nth-child(2) {
    -webkit-animation-delay: 1s
}

.case_list .case_img:nth-child(3) {
    -webkit-animation-delay: 1.5s
}

.case_list .case_img:nth-child(4) {
    -webkit-animation-delay: 2s
}

/* Pagination */
.page {
    clear: both;
    margin: 20px 0px;
    text-align: center;
}

.page a {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 14px;
    border: #dbdbdb 1px solid;
    padding: 4px 9px;
    margin: 2px;
    margin-bottom: 5px;
    color: #31363c;
}

.page a:hover {
    border: #008938 1px solid;
    color: #ffffff;
    background-color: #008938;
}

.page .current {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 14px;
    border: #008938 1px solid;
    padding: 5px 9px;
    color: #ffffff;
    margin: 2px;
    background-color: #008938;
}

/* Product Detail */
.showpic_box, .proinfo_box {
    margin: 30px 0px 20px 0px;
}

.product_h1 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: #000000;
    line-height: 22px;
    padding-bottom: 10px;
    border-bottom: 1px dotted #cccccc;
}

.product_info {
    list-style: none;
    padding: 0;
    margin-top: 10px;
}

.product_info p {
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 28px;
}

.product_btn {
    margin-top: 25px;
}

#pic-page {
    text-align: center;
    margin-top: 10px;
}

#pic-page a {
    margin: 0 2px;
}

#pic-page a img {
    width: 40px;
    padding: 2px;
    border: solid #ccc 1px;
    margin-bottom: 5px;
}

#pic-page a:hover img,
#pic-page a.active img {
    border: solid #008938 1px;
}

.product_con, .photo_con {
    clear: both;
    border-top: 1px dotted #a9a9a9;
    margin: 10px 0px 20px 0px;
    padding: 20px 0px 0px 0px;
    line-height: 26px;
    overflow: auto;
}

.product_con img, .photo_con img {
    max-width: 840px;
}

.list_related {
    margin-top: 50px;
}

.list_related div.product_img {
    min-height: 280px;
}

/* Buttons */
.grey-btn {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 16px;
    border-radius: 0px;
    border: none;
    background-color: #E8E8E8;
}

.grey-btn:hover {
    background-color: #cccccc;
}

/* Feedback Form */
.feedback {
    margin-top: 50px;
}

.form-horizontal .form-group {
    margin-right: -10px;
    margin-left: -10px;
}

.codeimg {
    margin: 0px 0px -10px -18px;
}

/* Previous/Next */
.point {
    clear: both;
    margin: 20px 0px 40px 0px;
    padding-bottom: 40px;
    line-height: 22px;
}

.point span.to_prev, .point span.to_next {
    text-align: center;
}

.point span.to_prev a, .point span.to_next a {
    color: #008938;
}

.point span.to_prev a:hover, .point span.to_next a:hover {
    color: #ea042b;
}

/* Tags */
.tags {
    margin: 18px 0px 10px 0px;
}

.tags a {
    margin: 0px 5px 8px 0px;
}

.tags_list {
    padding: 5px 10px 100px 10px;
}

.tags_ul {
    margin-top: 0px;
}

.tags_ul li {
    line-height: 28px;
    margin-bottom: 8px;
    padding-bottom: 10px;
}

.tags_ul h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 15px;
    padding: 0;
    margin: 0;
    line-height: 20px;
}

.tags_ul p {
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    font-size: 14px;
    padding: 0;
    margin: 0;
    color: #777777;
    line-height: 20px;
    padding-top: 8px;
}

/* Sitemap */
ul.ul_sitemap {
    margin: 30px 0px 40px 30px;
}

ul.ul_sitemap li {
    line-height: 26px;
    clear: both;
}

ul.ul_sitemap li a {
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #7d7d7d;
}

li.small_li_sitemap {
    clear: both;
    padding-left: 12px;
}

li.small_li2_sitemap {
    float: left;
    padding-left: 20px;
}

/* Footer Links */
.link_box {
    background-color: #ebebeb;
    padding: 20px 0px 10px 0px;
    text-align: center;
}

.link_box a {
    padding: 0px 0px 0px 10px;
}

.link_box a:last-child {
    border-right: 0px;
}

.link_box button {
    display: none;
}

.link_title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 14px;
    margin-right: -6px;
}

.link_title:after {
    content: "：";
}

/* Footer Tags */
.footer-tags-box {
    background-color: transparent;
    border-top: 1px solid #ddd;
    padding: 15px 0 10px;
    margin-top: 10px;
}

.tags_box button {
    display: none !important;
    visibility: hidden;
}

.tags_box {
    text-align: center;
    padding: 0;
    background: none;
}

.footer-tags-line {
    text-align: center;
    padding: 12px 0;
    border-top: 1px solid #ddd;
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #555;
}

.footer-tags-line a {
    margin: 0 8px;
    color: #555;
    text-decoration: none;
}

.footer-tags-line a:hover {
    color: #008938;
    text-decoration: underline;
}

/* Footer */
footer {
    margin-top: 20px;
    padding: 50px 0px 40px 0px;
    background-color: #f5f5f5;
}

.footer_contact {
    line-height: 28px;
}

.footer_icon {
    padding-top: 10px;
}

.footer_icon a:hover {
    text-decoration: none;
}

.footer_icon img {
    width: 40px;
    height: 40px;
    margin: 0px 8px 8px 0px;
}

/* Translate */
.translate {
    background-color: #005188;
}

.translate_btn {
    width: 130px;
    margin: 0 auto;
    padding-top: 20px;
}

/* Tables */
table {
    margin-bottom: 10px;
    border-collapse: collapse;
    display: table;
}

td, th {
    padding: 5px 10px;
    border: 1px solid #DDD;
}

caption {
    border: 1px dashed #DDD;
    border-bottom: 0;
    padding: 3px;
    text-align: center;
}

th {
    border-top: 1px solid #BBB;
    background-color: #F7F7F7;
}

table tr.firstRow th {
    border-top-width: 2px;
}

.ue-table-interlace-color-single {
    background-color: #fcfcfc;
}

.ue-table-interlace-color-double {
    background-color: #f7faff;
}

td p {
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    font-size: 14px;
    margin: 0;
    padding: 0;
}

/* Large Screens */
@media screen and (min-width: 769px) {
    .logo {
        margin-top: 20px;
        margin-bottom: 5px;
        max-width: 700px;
    }

/* --- Base Navbar Styles --- */
.navbar,
.navbar-default {
    /* Simplified background with a subtle gradient */
    background: linear-gradient(to bottom, #007a33, #005f2a); /* Adjusted green shades */
    /* Softer shadow for a lighter feel */
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border: none;
    border-radius: 0;
    padding: 8px 0; /* Slightly reduced padding */
    min-height: 55px; /* Slightly reduced height */
    margin: 0;
    position: relative;
    z-index: 1000;
    transition: all 0.2s ease-in-out; /* Faster, smoother transition */
}

/* --- Navigation Links --- */
.navbar-nav > li,
.navbar-default .navbar-nav > li {
    margin: 0 8px; /* Reduced horizontal margin */
}

.navbar-nav > li > a,
.navbar-default .navbar-nav > li > a {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400; /* *** Changed: Lighter font weight (from 500/600 to 400) *** */
    font-size: 15px;
    letter-spacing: 0.2px; /* *** Added: Reduced letter spacing for a tighter look *** */
    color: #ffffff !important;
    padding: 12px 18px;
    text-align: center;
    background: transparent !important;
    position: relative;
    overflow: hidden;
    transition: all 0.2s ease-in-out; /* Faster transition */
    border-radius: 4px;
}

/* --- Navigation Link Hover & Focus States (Optimized) --- */
.navbar-nav > li > a:hover,
.navbar-nav > li > a:focus {
    color: #ffffff !important;
    /* Softer, more subtle highlight using a very light transparency */
    background: rgba(255, 255, 255, 0.08) !important; /* Slightly lighter than active */
    transform: none;
    text-shadow: none; /* Ensure no text shadow */
}

/* --- Active Navigation Link State (Optimized) --- */
.navbar-default .navbar-nav > li > a.active,
.navbar-default .navbar-nav > .active > a,
.navbar-default .navbar-nav > .active > a:hover {
    color: #ffffff !important;
    /* Soft, very subtle background for active state */
    background: rgba(255, 255, 255, 0.12) !important; /* Slightly more visible than hover */
    box-shadow: none; /* No box-shadow on the link itself */
    transform: none;
    text-shadow: none; /* No text shadow */
}

/* --- Underline Effect (Simplified & Unified) --- */
.navbar-nav > li > a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%; /* Start from center */
    width: 0; /* Initially no width */
    height: 2px; /* Thinner underline */
    background-color: #f2b700; /* Vibrant gold for the underline */
    transform: scaleX(0) translateX(-50%); /* Scale from center, then move to center */
    transform-origin: center; /* Ensure scaling is from the center */
    transition: transform 0.2s ease-in-out; /* Smoother transition */
    box-shadow: none; /* *** IMPORTANT: No shadow on the underline itself *** */
}

.navbar-nav > li > a:hover::after,
.navbar-default .navbar-nav > li > a.active::after {
    width: calc(100% - 24px); /* Underline spans most of the link width, adjust as desired */
    transform: scaleX(1) translateX(-50%); /* Expand and stay centered */
    box-shadow: none; /* *** Confirm: No shadow on the underline when active/hover *** */
}

---

/* --- Dropdown Menus (Main) --- */
.navbar-nav .dropdown-menu,
.navbar-default .navbar-nav > .dropdown > .dropdown-menu {
    min-width: 200px;
    background: #ffffff !important;
    backdrop-filter: blur(5px);
    border-radius: 5px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 6px 0;
    border: none;
    animation: fadeInDown 0.2s ease-out;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dropdown-menu > li > a {
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #333333 !important;
    padding: 8px 20px !important;
    transition: all 0.15s ease-out;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.dropdown-menu > li > a:hover {
    background: rgba(0, 122, 51, 0.08) !important;
    color: #007a33 !important;
    transform: translateX(2px);
}

/* --- Second Level Dropdown Menus --- */
.dropdown-menu2 {
    position: absolute;
    left: 100%;
    top: -4px;
    z-index: 22;
    display: none;
    min-width: 200px;
    background: #ffffff;
    border-radius: 5px;
    padding: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    animation: fadeInRight 0.2s ease-out;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(-5px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.dropdown-menu2 li {
    height: auto;
    line-height: normal;
    padding: 0;
    display: block;
}

.dropdown-menu2 li a {
    color: #333333;
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    font-size: 14px;
    display: block;
    width: 100%;
    padding: 8px 20px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.dropdown-menu2 li:hover {
    background: rgba(0, 122, 51, 0.08);
}
.dropdown-menu2 li:hover a {
    color: #007a33;
}

.dropdown-menu li.dropdown:hover .dropdown-menu2 {
    display: block !important;
}

/* --- Mobile/Responsive Navigation (Simplified) --- */
.nav_small {
    background: #ffffff;
    padding: 8px 0;
    border: none;
}

.nav_small > li > a {
    line-height: normal;
    color: #007a33;
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.2s ease;
    padding: 10px 20px;
}

.nav_small > li > a:hover,
.nav_small > li > a.active {
    color: #ffffff;
    background: #f2b700;
    border-radius: 4px;
}

.snav_small {
    top: 0;
    left: 100%;
    position: absolute;
    background: #007a33;
    padding: 6px 0;
    border: none;
}

.snav_small > li > a {
    line-height: normal;
    color: #ffffff;
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    font-size: 13px;
    transition: all 0.2s ease;
    padding: 8px 18px;
}

.snav_small > li > a:hover {
    color: #ffffff;
    background: #e0a800;
}

.nav_small > li:hover > ul {
    z-index: 999;
    display: block;
}

/* --- Hide Brand (as requested) --- */
.navbar-brand {
    display: none;
}

/* --- Fix: Prevent empty dropdowns --- */
.navbar-nav > .dropdown:hover > .dropdown-menu:empty {
    display: none !important;
}

    #app_menudown, #search_btn {
        display: none;
    }

    .mfoot_box {
        display: none;
    }
}

/* Small Screens */
@media screen and (max-width: 768px) {
    .logo {
        display: block;
        margin: 0 auto;
        margin-top: 15px;
        margin-bottom: 20px;
        max-width: 550px;
    }

    #searchform {
        display: none;
    }

    .search_group {
        margin: 15px 0px;
    }

    #search_btn {
        float: right;
        margin-top: 7px;
        padding: 6px 10px;
        font-size: 16px;
        border-radius: 4px;
        color: #ffffff;
        background-color: #008938;
    }

    .search_group input.form-control {
        border-radius: 0px;
        box-shadow: none;
        color: #585A5A;
        padding: 0px 0px 0px 15px;
        height: 40px;
        background: transparent;
        border: none;
    }

    .search_group input.form-control:focus {
        box-shadow: none;
    }

    #search_submit {
        border-radius: 0px;
        border: none;
    }

    #search_btn:hover {
        background-color: #f2b700;
    }

    .navbar {
        margin: 0px;
        border: 0px;
        min-height: 40px;
        background-color: #008938;
    }

    .navbar-default .navbar-brand {
        color: #ffffff;
        font-family: 'Montserrat', sans-serif;
        font-weight: 600;
        font-size: 18px;
    }

    .navbar-default .navbar-brand:hover {
        color: #ffffff;
    }

    .navbar-toggle {
        border: none;
        margin: 8px 15px;
        padding: 6px 10px;
    }

    .navbar-default .navbar-collapse,
    .navbar-default .navbar-form {
        border: none;
    }

    .navbar-default .navbar-toggle:hover,
    .navbar-default .navbar-toggle:focus {
        background-color: #f2b700;
    }

    .navbar-default .navbar-toggle .icon-bar {
        background-color: #ffffff;
    }

    .navbar-default .navbar-nav {
        margin-top: 0px;
        margin-bottom: 0px;
    }

    .navbar-default .navbar-nav > li {
        margin: 0 3px;
    }

    .navbar-default .navbar-nav > li:last-child {
        border: none;
    }

    .product_head h2 {
        margin-top: 30px;
        font-size: 28px;
    }

    .product_img,
    .product_list2 div.product_img,
    .related_list div.product_img {
        min-height: 250px;
    }

    .case_list2 div.case_img {
        min-height: 200px;
    }

    .about_img {
        display: block;
        width: 100%;
        margin: 0 auto;
        margin-top: 40px;
    }

    .about_h3 {
        text-align: center;
        line-height: 28px;
        margin-top: 20px;
    }

    .about_p, .about_content {
        text-align: center;
    }

    .about_btn {
        margin: 0 auto;
        margin-top: 20px;
        margin-bottom: 45px;
    }

    .news_head h2 {
        font-size: 28px;
        margin-top: 30px;
    }

    .news_img {
        min-height: 250px;
        margin-bottom: 20px;
    }

    .news_title, .news_desc {
        text-align: center;
    }

    .right_new_time, .news_time {
        display: none;
    }

    .page_bg {
        display: none;
    }

    .right_contents img,
    .product_con img,
    .photo_con img {
        max-width: 100%;
    }

    .right_contents_h1 {
        font-size: 20px;
        line-height: 24px;
    }

    .feedback {
        margin-top: 20px;
    }

    .proinfo_box {
        margin-bottom: 80px;
    }

    .footer {
        padding-top: 40px;
        padding-bottom: 25px;
    }

    .footer_contact {
        margin-bottom: 30px;
    }

    .footer_menu {
        margin-bottom: 20px;
    }

    .footer_menu_first {
        margin-bottom: 8px;
    }

    .link_box {
        padding-left: 7px;
    }

    .link_box a {
        display: block;
        border-right: 0px;
        padding: 4px 0px;
    }

    .link_title {
        display: block;
    }

    .link_title:after {
        content: "";
    }

    .link_box button {
        display: inline-block;
        background-color: transparent;
        border: none;
        float: right;
        margin-top: -20px;
    }

    .link_box button:hover {
        color: #008938;
    }

    .link_list {
        display: none;
        padding-top: 7px;
    }

    .tags_box {
        padding-left: 7px;
        margin-bottom: 50px;
    }

    .tags_box a {
        display: inline-block;
        margin: 0 10px 5px 0;
        font-size: 14px;
        color: #555;
        text-decoration: none;
    }

    .tags_box a:hover {
        color: #008938;
        text-decoration: underline;
    }

    .tags_title {
        display: block;
    }

    .tags_title:after {
        content: "";
    }

    .tags_box button {
        display: inline-block;
        background-color: transparent;
        border: none;
        float: right;
        margin-top: -20px;
    }

    .tags_box button:hover {
        color: #008938;
    }

    .tags_rows {
        display: none;
        padding-top: 7px;
    }

    .mfoot_box {
        background-color: #fafafa;
    }

    .mfoot_nav {
        width: 25%;
        float: left;
        background-color: #fafafa;
        text-align: center;
        color: #898989;
    }

    .mfoot_nav:hover {
        background-color: #e4e4e4;
        cursor: pointer;
    }

    .mfoot_nav a {
        color: #898989;
        display: block;
        font-family: 'Open Sans', sans-serif;
        font-weight: 400;
        font-size: 13px;
    }

    .mfoot_nav a:hover {
        text-decoration: none;
    }

    .mfoot_nav span {
        display: block;
        padding: 3px 0px 0px 0px;
    }

    .mfoot_share {
        width: 200px;
        padding: 5px;
    }
}

@media screen and (max-width: 767px) {
    .copyright_p {
        display: none;
    }
}

@media screen and (min-width: 320px) and (max-width: 768px) {
    .col-mm-1, .col-mm-2, .col-mm-3, .col-mm-4, .col-mm-5, .col-mm-6,
    .col-mm-7, .col-mm-8, .col-mm-9, .col-mm-10, .col-mm-11, .col-mm-12 {
        float: left;
    }

    .col-mm-12 { width: 100%; }
    .col-mm-11 { width: 91.66666667%; }
    .col-mm-10 { width: 83.33333333%; }
    .col-mm-9 { width: 75%; }
    .col-mm-8 { width: 66.66666667%; }
    .col-mm-7 { width: 58.33333333%; }
    .col-mm-6 { width: 50%; }
    .col-mm-5 { width: 41.66666667%; }
    .col-mm-4 { width: 33.33333333%; }
    .col-mm-3 { width: 25%; }
    .col-mm-2 { width: 16.66666667%; }
    .col-mm-1 { width: 8.33333333%; }
}

/* Footer Social Icons */
.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #008938;
    color: #fff;
    margin-right: 10px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.footer-social a:hover {
    background-color: #f2b700;
    transform: translateY(-2px);
}
.custom-umbrella-desc {
  max-width: 1080px;
  margin: 45px auto 40px auto;
  text-align: center;
  padding: 0 15px;
}

.custom-umbrella-desc h3 {
  font-size: 24px;
  font-weight: 600;
  color: #222;
  margin-bottom: 15px;
}

.custom-umbrella-desc p {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
}
